create-auto-app 0.1.5 → 0.1.6

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 (72) hide show
  1. package/dist/index.js +125 -105
  2. package/dist/index.js.map +1 -1
  3. package/package.json +2 -2
  4. package/templates/shopping-app/.context/auto-ia-scheme.json +8 -29
  5. package/templates/shopping-app/.context/design-system.md +59 -35
  6. package/templates/shopping-app/.context/figma-variables.json +335 -1024
  7. package/templates/shopping-app/.context/schema.json +3 -7
  8. package/templates/shopping-app/.context/shadcn-filter.ts +2 -4
  9. package/templates/shopping-app/auto.config.ts +2 -2
  10. package/templates/shopping-app/client/src/gql/fragment-masking.ts +22 -22
  11. package/templates/shopping-app/client/src/gql/gql.ts +12 -5
  12. package/templates/shopping-app/client/src/gql/graphql.ts +125 -11
  13. package/templates/shopping-app/client/src/gql/index.ts +2 -2
  14. package/templates/shopping-app/client/src/graphql/mutations.ts +9 -9
  15. package/templates/shopping-app/client/src/graphql/queries.ts +10 -10
  16. package/templates/shopping-app/flows/shopping-assistant.flow.ts +2 -2
  17. package/templates/shopping-app/package.json +1 -1
  18. package/templates/shopping-app/pnpm-workspace.yaml +2 -2
  19. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/commands.ts +2 -2
  20. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/decide.specs.ts +20 -20
  21. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/decide.ts +8 -11
  22. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/events.ts +2 -2
  23. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/evolve.ts +3 -3
  24. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/handle.ts +8 -15
  25. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/mutation.resolver.ts +5 -9
  26. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/accepts-items-and-adds-to-their-cart/register.ts +4 -7
  27. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/creates-a-chat-session-/react.specs.ts +19 -31
  28. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/creates-a-chat-session-/react.ts +6 -12
  29. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/creates-a-chat-session-/register.ts +4 -11
  30. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/commands.ts +2 -2
  31. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/decide.specs.ts +14 -14
  32. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/decide.ts +8 -11
  33. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/events.ts +2 -2
  34. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/evolve.ts +3 -3
  35. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/handle.ts +8 -15
  36. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/mutation.resolver.ts +5 -9
  37. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/enters-shopping-criteria-into-assistant/register.ts +4 -7
  38. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/commands.ts +2 -2
  39. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/decide.specs.ts +23 -23
  40. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/decide.ts +9 -13
  41. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/events.ts +2 -2
  42. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/evolve.ts +3 -3
  43. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/handle.ts +11 -18
  44. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/mutation.resolver.ts +5 -9
  45. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/selects-items-relevant-to-the-shopping-criteria-/register.ts +4 -7
  46. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/views-suggested-items/projection.specs.ts +35 -35
  47. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/views-suggested-items/projection.ts +8 -11
  48. package/templates/shopping-app/server/src/domain/flows/seasonal-assistant/views-suggested-items/query.resolver.ts +4 -7
  49. package/templates/shopping-app/server/src/domain/shared/ReadModel.d.ts +7 -7
  50. package/templates/shopping-app/server/src/domain/shared/ReadModel.js +17 -17
  51. package/templates/shopping-app/server/src/domain/shared/index.d.ts +1 -1
  52. package/templates/shopping-app/server/src/domain/shared/index.js +1 -1
  53. package/templates/shopping-app/server/src/domain/shared/reactorSpecification.d.ts +42 -21
  54. package/templates/shopping-app/server/src/domain/shared/reactorSpecification.js +148 -140
  55. package/templates/shopping-app/server/src/domain/shared/sendCommand.d.ts +5 -2
  56. package/templates/shopping-app/server/src/domain/shared/sendCommand.js +14 -15
  57. package/templates/shopping-app/server/src/domain/shared/types.d.ts +10 -10
  58. package/templates/shopping-app/server/src/domain/shared/types.js +37 -36
  59. package/templates/shopping-app/server/src/integrations/ai-integration.ts +1 -1
  60. package/templates/shopping-app/server/src/integrations/cart-integration.ts +1 -1
  61. package/templates/shopping-app/server/src/integrations/index.ts +1 -1
  62. package/templates/shopping-app/server/src/integrations/product-catalogue-integration.ts +1 -1
  63. package/templates/shopping-app/server/src/utils/index.d.ts +1 -1
  64. package/templates/shopping-app/server/src/utils/index.js +1 -1
  65. package/templates/shopping-app/server/src/utils/loadProjections.d.ts +1 -1
  66. package/templates/shopping-app/server/src/utils/loadProjections.js +18 -16
  67. package/templates/shopping-app/server/src/utils/loadRegisterFiles.d.ts +2 -2
  68. package/templates/shopping-app/server/src/utils/loadRegisterFiles.js +19 -21
  69. package/templates/shopping-app/server/src/utils/loadResolvers.d.ts +2 -2
  70. package/templates/shopping-app/server/src/utils/loadResolvers.js +22 -22
  71. package/templates/shopping-app/server/tsconfig.json +2 -8
  72. package/templates/shopping-app/tsconfig.json +2 -8
@@ -17,9 +17,7 @@
17
17
  "valuesByMode": {
18
18
  "1:0": 0
19
19
  },
20
- "scopes": [
21
- "GAP"
22
- ],
20
+ "scopes": ["GAP"],
23
21
  "description": "",
24
22
  "hiddenFromPublishing": false
25
23
  },
@@ -30,9 +28,7 @@
30
28
  "valuesByMode": {
31
29
  "1:0": 0
32
30
  },
33
- "scopes": [
34
- "WIDTH_HEIGHT"
35
- ],
31
+ "scopes": ["WIDTH_HEIGHT"],
36
32
  "description": "",
37
33
  "hiddenFromPublishing": false
38
34
  },
@@ -43,9 +39,7 @@
43
39
  "valuesByMode": {
44
40
  "1:0": 1
45
41
  },
46
- "scopes": [
47
- "GAP"
48
- ],
42
+ "scopes": ["GAP"],
49
43
  "description": "",
50
44
  "hiddenFromPublishing": false
51
45
  },
@@ -56,9 +50,7 @@
56
50
  "valuesByMode": {
57
51
  "1:0": 0
58
52
  },
59
- "scopes": [
60
- "WIDTH_HEIGHT"
61
- ],
53
+ "scopes": ["WIDTH_HEIGHT"],
62
54
  "description": "",
63
55
  "hiddenFromPublishing": false
64
56
  },
@@ -69,9 +61,7 @@
69
61
  "valuesByMode": {
70
62
  "1:0": 1
71
63
  },
72
- "scopes": [
73
- "WIDTH_HEIGHT"
74
- ],
64
+ "scopes": ["WIDTH_HEIGHT"],
75
65
  "description": "",
76
66
  "hiddenFromPublishing": false
77
67
  },
@@ -82,9 +72,7 @@
82
72
  "valuesByMode": {
83
73
  "1:0": 2
84
74
  },
85
- "scopes": [
86
- "WIDTH_HEIGHT"
87
- ],
75
+ "scopes": ["WIDTH_HEIGHT"],
88
76
  "description": "",
89
77
  "hiddenFromPublishing": false
90
78
  },
@@ -95,9 +83,7 @@
95
83
  "valuesByMode": {
96
84
  "1:0": 4
97
85
  },
98
- "scopes": [
99
- "WIDTH_HEIGHT"
100
- ],
86
+ "scopes": ["WIDTH_HEIGHT"],
101
87
  "description": "",
102
88
  "hiddenFromPublishing": false
103
89
  },
@@ -108,9 +94,7 @@
108
94
  "valuesByMode": {
109
95
  "1:0": 6
110
96
  },
111
- "scopes": [
112
- "WIDTH_HEIGHT"
113
- ],
97
+ "scopes": ["WIDTH_HEIGHT"],
114
98
  "description": "",
115
99
  "hiddenFromPublishing": false
116
100
  },
@@ -121,9 +105,7 @@
121
105
  "valuesByMode": {
122
106
  "1:0": 8
123
107
  },
124
- "scopes": [
125
- "WIDTH_HEIGHT"
126
- ],
108
+ "scopes": ["WIDTH_HEIGHT"],
127
109
  "description": "",
128
110
  "hiddenFromPublishing": false
129
111
  },
@@ -134,9 +116,7 @@
134
116
  "valuesByMode": {
135
117
  "1:0": 10
136
118
  },
137
- "scopes": [
138
- "WIDTH_HEIGHT"
139
- ],
119
+ "scopes": ["WIDTH_HEIGHT"],
140
120
  "description": "",
141
121
  "hiddenFromPublishing": false
142
122
  },
@@ -147,9 +127,7 @@
147
127
  "valuesByMode": {
148
128
  "1:0": 12
149
129
  },
150
- "scopes": [
151
- "WIDTH_HEIGHT"
152
- ],
130
+ "scopes": ["WIDTH_HEIGHT"],
153
131
  "description": "",
154
132
  "hiddenFromPublishing": false
155
133
  },
@@ -160,9 +138,7 @@
160
138
  "valuesByMode": {
161
139
  "1:0": 14
162
140
  },
163
- "scopes": [
164
- "WIDTH_HEIGHT"
165
- ],
141
+ "scopes": ["WIDTH_HEIGHT"],
166
142
  "description": "",
167
143
  "hiddenFromPublishing": false
168
144
  },
@@ -173,9 +149,7 @@
173
149
  "valuesByMode": {
174
150
  "1:0": 16
175
151
  },
176
- "scopes": [
177
- "WIDTH_HEIGHT"
178
- ],
152
+ "scopes": ["WIDTH_HEIGHT"],
179
153
  "description": "",
180
154
  "hiddenFromPublishing": false
181
155
  },
@@ -186,9 +160,7 @@
186
160
  "valuesByMode": {
187
161
  "1:0": 20
188
162
  },
189
- "scopes": [
190
- "WIDTH_HEIGHT"
191
- ],
163
+ "scopes": ["WIDTH_HEIGHT"],
192
164
  "description": "",
193
165
  "hiddenFromPublishing": false
194
166
  },
@@ -199,9 +171,7 @@
199
171
  "valuesByMode": {
200
172
  "1:0": 24
201
173
  },
202
- "scopes": [
203
- "WIDTH_HEIGHT"
204
- ],
174
+ "scopes": ["WIDTH_HEIGHT"],
205
175
  "description": "",
206
176
  "hiddenFromPublishing": false
207
177
  },
@@ -212,9 +182,7 @@
212
182
  "valuesByMode": {
213
183
  "1:0": 28
214
184
  },
215
- "scopes": [
216
- "WIDTH_HEIGHT"
217
- ],
185
+ "scopes": ["WIDTH_HEIGHT"],
218
186
  "description": "",
219
187
  "hiddenFromPublishing": false
220
188
  },
@@ -225,9 +193,7 @@
225
193
  "valuesByMode": {
226
194
  "1:0": 32
227
195
  },
228
- "scopes": [
229
- "WIDTH_HEIGHT"
230
- ],
196
+ "scopes": ["WIDTH_HEIGHT"],
231
197
  "description": "",
232
198
  "hiddenFromPublishing": false
233
199
  },
@@ -238,9 +204,7 @@
238
204
  "valuesByMode": {
239
205
  "1:0": 36
240
206
  },
241
- "scopes": [
242
- "WIDTH_HEIGHT"
243
- ],
207
+ "scopes": ["WIDTH_HEIGHT"],
244
208
  "description": "",
245
209
  "hiddenFromPublishing": false
246
210
  },
@@ -251,9 +215,7 @@
251
215
  "valuesByMode": {
252
216
  "1:0": 40
253
217
  },
254
- "scopes": [
255
- "WIDTH_HEIGHT"
256
- ],
218
+ "scopes": ["WIDTH_HEIGHT"],
257
219
  "description": "",
258
220
  "hiddenFromPublishing": false
259
221
  },
@@ -264,9 +226,7 @@
264
226
  "valuesByMode": {
265
227
  "1:0": 44
266
228
  },
267
- "scopes": [
268
- "WIDTH_HEIGHT"
269
- ],
229
+ "scopes": ["WIDTH_HEIGHT"],
270
230
  "description": "",
271
231
  "hiddenFromPublishing": false
272
232
  },
@@ -277,9 +237,7 @@
277
237
  "valuesByMode": {
278
238
  "1:0": 48
279
239
  },
280
- "scopes": [
281
- "WIDTH_HEIGHT"
282
- ],
240
+ "scopes": ["WIDTH_HEIGHT"],
283
241
  "description": "",
284
242
  "hiddenFromPublishing": false
285
243
  },
@@ -290,9 +248,7 @@
290
248
  "valuesByMode": {
291
249
  "1:0": 56
292
250
  },
293
- "scopes": [
294
- "WIDTH_HEIGHT"
295
- ],
251
+ "scopes": ["WIDTH_HEIGHT"],
296
252
  "description": "",
297
253
  "hiddenFromPublishing": false
298
254
  },
@@ -303,9 +259,7 @@
303
259
  "valuesByMode": {
304
260
  "1:0": 64
305
261
  },
306
- "scopes": [
307
- "WIDTH_HEIGHT"
308
- ],
262
+ "scopes": ["WIDTH_HEIGHT"],
309
263
  "description": "",
310
264
  "hiddenFromPublishing": false
311
265
  },
@@ -316,9 +270,7 @@
316
270
  "valuesByMode": {
317
271
  "1:0": 80
318
272
  },
319
- "scopes": [
320
- "WIDTH_HEIGHT"
321
- ],
273
+ "scopes": ["WIDTH_HEIGHT"],
322
274
  "description": "",
323
275
  "hiddenFromPublishing": false
324
276
  },
@@ -329,9 +281,7 @@
329
281
  "valuesByMode": {
330
282
  "1:0": 96
331
283
  },
332
- "scopes": [
333
- "WIDTH_HEIGHT"
334
- ],
284
+ "scopes": ["WIDTH_HEIGHT"],
335
285
  "description": "",
336
286
  "hiddenFromPublishing": false
337
287
  },
@@ -342,9 +292,7 @@
342
292
  "valuesByMode": {
343
293
  "1:0": 112
344
294
  },
345
- "scopes": [
346
- "WIDTH_HEIGHT"
347
- ],
295
+ "scopes": ["WIDTH_HEIGHT"],
348
296
  "description": "",
349
297
  "hiddenFromPublishing": false
350
298
  },
@@ -355,9 +303,7 @@
355
303
  "valuesByMode": {
356
304
  "1:0": 128
357
305
  },
358
- "scopes": [
359
- "WIDTH_HEIGHT"
360
- ],
306
+ "scopes": ["WIDTH_HEIGHT"],
361
307
  "description": "",
362
308
  "hiddenFromPublishing": false
363
309
  },
@@ -368,9 +314,7 @@
368
314
  "valuesByMode": {
369
315
  "1:0": 144
370
316
  },
371
- "scopes": [
372
- "WIDTH_HEIGHT"
373
- ],
317
+ "scopes": ["WIDTH_HEIGHT"],
374
318
  "description": "",
375
319
  "hiddenFromPublishing": false
376
320
  },
@@ -381,9 +325,7 @@
381
325
  "valuesByMode": {
382
326
  "1:0": 176
383
327
  },
384
- "scopes": [
385
- "WIDTH_HEIGHT"
386
- ],
328
+ "scopes": ["WIDTH_HEIGHT"],
387
329
  "description": "",
388
330
  "hiddenFromPublishing": false
389
331
  },
@@ -394,9 +336,7 @@
394
336
  "valuesByMode": {
395
337
  "1:0": 192
396
338
  },
397
- "scopes": [
398
- "WIDTH_HEIGHT"
399
- ],
339
+ "scopes": ["WIDTH_HEIGHT"],
400
340
  "description": "",
401
341
  "hiddenFromPublishing": false
402
342
  },
@@ -407,9 +347,7 @@
407
347
  "valuesByMode": {
408
348
  "1:0": 208
409
349
  },
410
- "scopes": [
411
- "WIDTH_HEIGHT"
412
- ],
350
+ "scopes": ["WIDTH_HEIGHT"],
413
351
  "description": "",
414
352
  "hiddenFromPublishing": false
415
353
  },
@@ -420,9 +358,7 @@
420
358
  "valuesByMode": {
421
359
  "1:0": 224
422
360
  },
423
- "scopes": [
424
- "WIDTH_HEIGHT"
425
- ],
361
+ "scopes": ["WIDTH_HEIGHT"],
426
362
  "description": "",
427
363
  "hiddenFromPublishing": false
428
364
  },
@@ -433,9 +369,7 @@
433
369
  "valuesByMode": {
434
370
  "1:0": 256
435
371
  },
436
- "scopes": [
437
- "WIDTH_HEIGHT"
438
- ],
372
+ "scopes": ["WIDTH_HEIGHT"],
439
373
  "description": "",
440
374
  "hiddenFromPublishing": false
441
375
  },
@@ -446,9 +380,7 @@
446
380
  "valuesByMode": {
447
381
  "1:0": 288
448
382
  },
449
- "scopes": [
450
- "WIDTH_HEIGHT"
451
- ],
383
+ "scopes": ["WIDTH_HEIGHT"],
452
384
  "description": "",
453
385
  "hiddenFromPublishing": false
454
386
  },
@@ -459,9 +391,7 @@
459
391
  "valuesByMode": {
460
392
  "1:0": 320
461
393
  },
462
- "scopes": [
463
- "WIDTH_HEIGHT"
464
- ],
394
+ "scopes": ["WIDTH_HEIGHT"],
465
395
  "description": "",
466
396
  "hiddenFromPublishing": false
467
397
  },
@@ -472,9 +402,7 @@
472
402
  "valuesByMode": {
473
403
  "1:0": 384
474
404
  },
475
- "scopes": [
476
- "WIDTH_HEIGHT"
477
- ],
405
+ "scopes": ["WIDTH_HEIGHT"],
478
406
  "description": "",
479
407
  "hiddenFromPublishing": false
480
408
  },
@@ -485,9 +413,7 @@
485
413
  "valuesByMode": {
486
414
  "1:0": 2
487
415
  },
488
- "scopes": [
489
- "GAP"
490
- ],
416
+ "scopes": ["GAP"],
491
417
  "description": "",
492
418
  "hiddenFromPublishing": false
493
419
  },
@@ -498,9 +424,7 @@
498
424
  "valuesByMode": {
499
425
  "1:0": 1
500
426
  },
501
- "scopes": [
502
- "WIDTH_HEIGHT"
503
- ],
427
+ "scopes": ["WIDTH_HEIGHT"],
504
428
  "description": "",
505
429
  "hiddenFromPublishing": false
506
430
  },
@@ -511,9 +435,7 @@
511
435
  "valuesByMode": {
512
436
  "1:0": 2
513
437
  },
514
- "scopes": [
515
- "WIDTH_HEIGHT"
516
- ],
438
+ "scopes": ["WIDTH_HEIGHT"],
517
439
  "description": "",
518
440
  "hiddenFromPublishing": false
519
441
  },
@@ -524,9 +446,7 @@
524
446
  "valuesByMode": {
525
447
  "1:0": 4
526
448
  },
527
- "scopes": [
528
- "WIDTH_HEIGHT"
529
- ],
449
+ "scopes": ["WIDTH_HEIGHT"],
530
450
  "description": "",
531
451
  "hiddenFromPublishing": false
532
452
  },
@@ -537,9 +457,7 @@
537
457
  "valuesByMode": {
538
458
  "1:0": 6
539
459
  },
540
- "scopes": [
541
- "WIDTH_HEIGHT"
542
- ],
460
+ "scopes": ["WIDTH_HEIGHT"],
543
461
  "description": "",
544
462
  "hiddenFromPublishing": false
545
463
  },
@@ -550,9 +468,7 @@
550
468
  "valuesByMode": {
551
469
  "1:0": 8
552
470
  },
553
- "scopes": [
554
- "WIDTH_HEIGHT"
555
- ],
471
+ "scopes": ["WIDTH_HEIGHT"],
556
472
  "description": "",
557
473
  "hiddenFromPublishing": false
558
474
  },
@@ -563,9 +479,7 @@
563
479
  "valuesByMode": {
564
480
  "1:0": 10
565
481
  },
566
- "scopes": [
567
- "WIDTH_HEIGHT"
568
- ],
482
+ "scopes": ["WIDTH_HEIGHT"],
569
483
  "description": "",
570
484
  "hiddenFromPublishing": false
571
485
  },
@@ -576,9 +490,7 @@
576
490
  "valuesByMode": {
577
491
  "1:0": 12
578
492
  },
579
- "scopes": [
580
- "WIDTH_HEIGHT"
581
- ],
493
+ "scopes": ["WIDTH_HEIGHT"],
582
494
  "description": "",
583
495
  "hiddenFromPublishing": false
584
496
  },
@@ -589,9 +501,7 @@
589
501
  "valuesByMode": {
590
502
  "1:0": 14
591
503
  },
592
- "scopes": [
593
- "WIDTH_HEIGHT"
594
- ],
504
+ "scopes": ["WIDTH_HEIGHT"],
595
505
  "description": "",
596
506
  "hiddenFromPublishing": false
597
507
  },
@@ -602,9 +512,7 @@
602
512
  "valuesByMode": {
603
513
  "1:0": 16
604
514
  },
605
- "scopes": [
606
- "WIDTH_HEIGHT"
607
- ],
515
+ "scopes": ["WIDTH_HEIGHT"],
608
516
  "description": "",
609
517
  "hiddenFromPublishing": false
610
518
  },
@@ -615,9 +523,7 @@
615
523
  "valuesByMode": {
616
524
  "1:0": 20
617
525
  },
618
- "scopes": [
619
- "WIDTH_HEIGHT"
620
- ],
526
+ "scopes": ["WIDTH_HEIGHT"],
621
527
  "description": "",
622
528
  "hiddenFromPublishing": false
623
529
  },
@@ -628,9 +534,7 @@
628
534
  "valuesByMode": {
629
535
  "1:0": 24
630
536
  },
631
- "scopes": [
632
- "WIDTH_HEIGHT"
633
- ],
537
+ "scopes": ["WIDTH_HEIGHT"],
634
538
  "description": "",
635
539
  "hiddenFromPublishing": false
636
540
  },
@@ -641,9 +545,7 @@
641
545
  "valuesByMode": {
642
546
  "1:0": 28
643
547
  },
644
- "scopes": [
645
- "WIDTH_HEIGHT"
646
- ],
548
+ "scopes": ["WIDTH_HEIGHT"],
647
549
  "description": "",
648
550
  "hiddenFromPublishing": false
649
551
  },
@@ -654,9 +556,7 @@
654
556
  "valuesByMode": {
655
557
  "1:0": 32
656
558
  },
657
- "scopes": [
658
- "WIDTH_HEIGHT"
659
- ],
559
+ "scopes": ["WIDTH_HEIGHT"],
660
560
  "description": "",
661
561
  "hiddenFromPublishing": false
662
562
  },
@@ -667,9 +567,7 @@
667
567
  "valuesByMode": {
668
568
  "1:0": 36
669
569
  },
670
- "scopes": [
671
- "WIDTH_HEIGHT"
672
- ],
570
+ "scopes": ["WIDTH_HEIGHT"],
673
571
  "description": "",
674
572
  "hiddenFromPublishing": false
675
573
  },
@@ -680,9 +578,7 @@
680
578
  "valuesByMode": {
681
579
  "1:0": 40
682
580
  },
683
- "scopes": [
684
- "WIDTH_HEIGHT"
685
- ],
581
+ "scopes": ["WIDTH_HEIGHT"],
686
582
  "description": "",
687
583
  "hiddenFromPublishing": false
688
584
  },
@@ -693,9 +589,7 @@
693
589
  "valuesByMode": {
694
590
  "1:0": 44
695
591
  },
696
- "scopes": [
697
- "WIDTH_HEIGHT"
698
- ],
592
+ "scopes": ["WIDTH_HEIGHT"],
699
593
  "description": "",
700
594
  "hiddenFromPublishing": false
701
595
  },
@@ -706,9 +600,7 @@
706
600
  "valuesByMode": {
707
601
  "1:0": 48
708
602
  },
709
- "scopes": [
710
- "WIDTH_HEIGHT"
711
- ],
603
+ "scopes": ["WIDTH_HEIGHT"],
712
604
  "description": "",
713
605
  "hiddenFromPublishing": false
714
606
  },
@@ -719,9 +611,7 @@
719
611
  "valuesByMode": {
720
612
  "1:0": 56
721
613
  },
722
- "scopes": [
723
- "WIDTH_HEIGHT"
724
- ],
614
+ "scopes": ["WIDTH_HEIGHT"],
725
615
  "description": "",
726
616
  "hiddenFromPublishing": false
727
617
  },
@@ -732,9 +622,7 @@
732
622
  "valuesByMode": {
733
623
  "1:0": 64
734
624
  },
735
- "scopes": [
736
- "WIDTH_HEIGHT"
737
- ],
625
+ "scopes": ["WIDTH_HEIGHT"],
738
626
  "description": "",
739
627
  "hiddenFromPublishing": false
740
628
  },
@@ -745,9 +633,7 @@
745
633
  "valuesByMode": {
746
634
  "1:0": 80
747
635
  },
748
- "scopes": [
749
- "WIDTH_HEIGHT"
750
- ],
636
+ "scopes": ["WIDTH_HEIGHT"],
751
637
  "description": "",
752
638
  "hiddenFromPublishing": false
753
639
  },
@@ -758,9 +644,7 @@
758
644
  "valuesByMode": {
759
645
  "1:0": 96
760
646
  },
761
- "scopes": [
762
- "WIDTH_HEIGHT"
763
- ],
647
+ "scopes": ["WIDTH_HEIGHT"],
764
648
  "description": "",
765
649
  "hiddenFromPublishing": false
766
650
  },
@@ -771,9 +655,7 @@
771
655
  "valuesByMode": {
772
656
  "1:0": 112
773
657
  },
774
- "scopes": [
775
- "WIDTH_HEIGHT"
776
- ],
658
+ "scopes": ["WIDTH_HEIGHT"],
777
659
  "description": "",
778
660
  "hiddenFromPublishing": false
779
661
  },
@@ -784,9 +666,7 @@
784
666
  "valuesByMode": {
785
667
  "1:0": 128
786
668
  },
787
- "scopes": [
788
- "WIDTH_HEIGHT"
789
- ],
669
+ "scopes": ["WIDTH_HEIGHT"],
790
670
  "description": "",
791
671
  "hiddenFromPublishing": false
792
672
  },
@@ -797,9 +677,7 @@
797
677
  "valuesByMode": {
798
678
  "1:0": 144
799
679
  },
800
- "scopes": [
801
- "WIDTH_HEIGHT"
802
- ],
680
+ "scopes": ["WIDTH_HEIGHT"],
803
681
  "description": "",
804
682
  "hiddenFromPublishing": false
805
683
  },
@@ -810,9 +688,7 @@
810
688
  "valuesByMode": {
811
689
  "1:0": 176
812
690
  },
813
- "scopes": [
814
- "WIDTH_HEIGHT"
815
- ],
691
+ "scopes": ["WIDTH_HEIGHT"],
816
692
  "description": "",
817
693
  "hiddenFromPublishing": false
818
694
  },
@@ -823,9 +699,7 @@
823
699
  "valuesByMode": {
824
700
  "1:0": 192
825
701
  },
826
- "scopes": [
827
- "WIDTH_HEIGHT"
828
- ],
702
+ "scopes": ["WIDTH_HEIGHT"],
829
703
  "description": "",
830
704
  "hiddenFromPublishing": false
831
705
  },
@@ -836,9 +710,7 @@
836
710
  "valuesByMode": {
837
711
  "1:0": 208
838
712
  },
839
- "scopes": [
840
- "WIDTH_HEIGHT"
841
- ],
713
+ "scopes": ["WIDTH_HEIGHT"],
842
714
  "description": "",
843
715
  "hiddenFromPublishing": false
844
716
  },
@@ -849,9 +721,7 @@
849
721
  "valuesByMode": {
850
722
  "1:0": 224
851
723
  },
852
- "scopes": [
853
- "WIDTH_HEIGHT"
854
- ],
724
+ "scopes": ["WIDTH_HEIGHT"],
855
725
  "description": "",
856
726
  "hiddenFromPublishing": false
857
727
  },
@@ -862,9 +732,7 @@
862
732
  "valuesByMode": {
863
733
  "1:0": 256
864
734
  },
865
- "scopes": [
866
- "WIDTH_HEIGHT"
867
- ],
735
+ "scopes": ["WIDTH_HEIGHT"],
868
736
  "description": "",
869
737
  "hiddenFromPublishing": false
870
738
  },
@@ -875,9 +743,7 @@
875
743
  "valuesByMode": {
876
744
  "1:0": 288
877
745
  },
878
- "scopes": [
879
- "WIDTH_HEIGHT"
880
- ],
746
+ "scopes": ["WIDTH_HEIGHT"],
881
747
  "description": "",
882
748
  "hiddenFromPublishing": false
883
749
  },
@@ -888,9 +754,7 @@
888
754
  "valuesByMode": {
889
755
  "1:0": 320
890
756
  },
891
- "scopes": [
892
- "WIDTH_HEIGHT"
893
- ],
757
+ "scopes": ["WIDTH_HEIGHT"],
894
758
  "description": "",
895
759
  "hiddenFromPublishing": false
896
760
  },
@@ -901,9 +765,7 @@
901
765
  "valuesByMode": {
902
766
  "1:0": 384
903
767
  },
904
- "scopes": [
905
- "WIDTH_HEIGHT"
906
- ],
768
+ "scopes": ["WIDTH_HEIGHT"],
907
769
  "description": "",
908
770
  "hiddenFromPublishing": false
909
771
  },
@@ -914,9 +776,7 @@
914
776
  "valuesByMode": {
915
777
  "1:0": 4
916
778
  },
917
- "scopes": [
918
- "GAP"
919
- ],
779
+ "scopes": ["GAP"],
920
780
  "description": "",
921
781
  "hiddenFromPublishing": false
922
782
  },
@@ -927,9 +787,7 @@
927
787
  "valuesByMode": {
928
788
  "1:0": 6
929
789
  },
930
- "scopes": [
931
- "GAP"
932
- ],
790
+ "scopes": ["GAP"],
933
791
  "description": "",
934
792
  "hiddenFromPublishing": false
935
793
  },
@@ -940,9 +798,7 @@
940
798
  "valuesByMode": {
941
799
  "1:0": 8
942
800
  },
943
- "scopes": [
944
- "GAP"
945
- ],
801
+ "scopes": ["GAP"],
946
802
  "description": "",
947
803
  "hiddenFromPublishing": false
948
804
  },
@@ -953,9 +809,7 @@
953
809
  "valuesByMode": {
954
810
  "1:0": 10
955
811
  },
956
- "scopes": [
957
- "GAP"
958
- ],
812
+ "scopes": ["GAP"],
959
813
  "description": "",
960
814
  "hiddenFromPublishing": false
961
815
  },
@@ -966,9 +820,7 @@
966
820
  "valuesByMode": {
967
821
  "1:0": 12
968
822
  },
969
- "scopes": [
970
- "GAP"
971
- ],
823
+ "scopes": ["GAP"],
972
824
  "description": "",
973
825
  "hiddenFromPublishing": false
974
826
  },
@@ -979,9 +831,7 @@
979
831
  "valuesByMode": {
980
832
  "1:0": 14
981
833
  },
982
- "scopes": [
983
- "GAP"
984
- ],
834
+ "scopes": ["GAP"],
985
835
  "description": "",
986
836
  "hiddenFromPublishing": false
987
837
  },
@@ -992,9 +842,7 @@
992
842
  "valuesByMode": {
993
843
  "1:0": 16
994
844
  },
995
- "scopes": [
996
- "GAP"
997
- ],
845
+ "scopes": ["GAP"],
998
846
  "description": "",
999
847
  "hiddenFromPublishing": false
1000
848
  },
@@ -1005,9 +853,7 @@
1005
853
  "valuesByMode": {
1006
854
  "1:0": 20
1007
855
  },
1008
- "scopes": [
1009
- "GAP"
1010
- ],
856
+ "scopes": ["GAP"],
1011
857
  "description": "",
1012
858
  "hiddenFromPublishing": false
1013
859
  },
@@ -1018,9 +864,7 @@
1018
864
  "valuesByMode": {
1019
865
  "1:0": 24
1020
866
  },
1021
- "scopes": [
1022
- "GAP"
1023
- ],
867
+ "scopes": ["GAP"],
1024
868
  "description": "",
1025
869
  "hiddenFromPublishing": false
1026
870
  },
@@ -1031,9 +875,7 @@
1031
875
  "valuesByMode": {
1032
876
  "1:0": 28
1033
877
  },
1034
- "scopes": [
1035
- "GAP"
1036
- ],
878
+ "scopes": ["GAP"],
1037
879
  "description": "",
1038
880
  "hiddenFromPublishing": false
1039
881
  },
@@ -1044,9 +886,7 @@
1044
886
  "valuesByMode": {
1045
887
  "1:0": 32
1046
888
  },
1047
- "scopes": [
1048
- "GAP"
1049
- ],
889
+ "scopes": ["GAP"],
1050
890
  "description": "",
1051
891
  "hiddenFromPublishing": false
1052
892
  },
@@ -1057,9 +897,7 @@
1057
897
  "valuesByMode": {
1058
898
  "1:0": 36
1059
899
  },
1060
- "scopes": [
1061
- "GAP"
1062
- ],
900
+ "scopes": ["GAP"],
1063
901
  "description": "",
1064
902
  "hiddenFromPublishing": false
1065
903
  },
@@ -1070,9 +908,7 @@
1070
908
  "valuesByMode": {
1071
909
  "1:0": 40
1072
910
  },
1073
- "scopes": [
1074
- "GAP"
1075
- ],
911
+ "scopes": ["GAP"],
1076
912
  "description": "",
1077
913
  "hiddenFromPublishing": false
1078
914
  },
@@ -1083,9 +919,7 @@
1083
919
  "valuesByMode": {
1084
920
  "1:0": 44
1085
921
  },
1086
- "scopes": [
1087
- "GAP"
1088
- ],
922
+ "scopes": ["GAP"],
1089
923
  "description": "",
1090
924
  "hiddenFromPublishing": false
1091
925
  },
@@ -1096,9 +930,7 @@
1096
930
  "valuesByMode": {
1097
931
  "1:0": 48
1098
932
  },
1099
- "scopes": [
1100
- "GAP"
1101
- ],
933
+ "scopes": ["GAP"],
1102
934
  "description": "",
1103
935
  "hiddenFromPublishing": false
1104
936
  },
@@ -1109,9 +941,7 @@
1109
941
  "valuesByMode": {
1110
942
  "1:0": 56
1111
943
  },
1112
- "scopes": [
1113
- "GAP"
1114
- ],
944
+ "scopes": ["GAP"],
1115
945
  "description": "",
1116
946
  "hiddenFromPublishing": false
1117
947
  },
@@ -1122,9 +952,7 @@
1122
952
  "valuesByMode": {
1123
953
  "1:0": 64
1124
954
  },
1125
- "scopes": [
1126
- "GAP"
1127
- ],
955
+ "scopes": ["GAP"],
1128
956
  "description": "",
1129
957
  "hiddenFromPublishing": false
1130
958
  },
@@ -1135,9 +963,7 @@
1135
963
  "valuesByMode": {
1136
964
  "1:0": 80
1137
965
  },
1138
- "scopes": [
1139
- "GAP"
1140
- ],
966
+ "scopes": ["GAP"],
1141
967
  "description": "",
1142
968
  "hiddenFromPublishing": false
1143
969
  },
@@ -1148,9 +974,7 @@
1148
974
  "valuesByMode": {
1149
975
  "1:0": 96
1150
976
  },
1151
- "scopes": [
1152
- "GAP"
1153
- ],
977
+ "scopes": ["GAP"],
1154
978
  "description": "",
1155
979
  "hiddenFromPublishing": false
1156
980
  },
@@ -1161,9 +985,7 @@
1161
985
  "valuesByMode": {
1162
986
  "1:0": 112
1163
987
  },
1164
- "scopes": [
1165
- "GAP"
1166
- ],
988
+ "scopes": ["GAP"],
1167
989
  "description": "",
1168
990
  "hiddenFromPublishing": false
1169
991
  },
@@ -1174,9 +996,7 @@
1174
996
  "valuesByMode": {
1175
997
  "1:0": 128
1176
998
  },
1177
- "scopes": [
1178
- "GAP"
1179
- ],
999
+ "scopes": ["GAP"],
1180
1000
  "description": "",
1181
1001
  "hiddenFromPublishing": false
1182
1002
  },
@@ -1187,9 +1007,7 @@
1187
1007
  "valuesByMode": {
1188
1008
  "1:0": 144
1189
1009
  },
1190
- "scopes": [
1191
- "GAP"
1192
- ],
1010
+ "scopes": ["GAP"],
1193
1011
  "description": "",
1194
1012
  "hiddenFromPublishing": false
1195
1013
  },
@@ -1200,9 +1018,7 @@
1200
1018
  "valuesByMode": {
1201
1019
  "1:0": 160
1202
1020
  },
1203
- "scopes": [
1204
- "GAP"
1205
- ],
1021
+ "scopes": ["GAP"],
1206
1022
  "description": "",
1207
1023
  "hiddenFromPublishing": false
1208
1024
  },
@@ -1213,9 +1029,7 @@
1213
1029
  "valuesByMode": {
1214
1030
  "1:0": 176
1215
1031
  },
1216
- "scopes": [
1217
- "GAP"
1218
- ],
1032
+ "scopes": ["GAP"],
1219
1033
  "description": "",
1220
1034
  "hiddenFromPublishing": false
1221
1035
  },
@@ -1226,9 +1040,7 @@
1226
1040
  "valuesByMode": {
1227
1041
  "1:0": 192
1228
1042
  },
1229
- "scopes": [
1230
- "GAP"
1231
- ],
1043
+ "scopes": ["GAP"],
1232
1044
  "description": "",
1233
1045
  "hiddenFromPublishing": false
1234
1046
  },
@@ -1239,9 +1051,7 @@
1239
1051
  "valuesByMode": {
1240
1052
  "1:0": 208
1241
1053
  },
1242
- "scopes": [
1243
- "GAP"
1244
- ],
1054
+ "scopes": ["GAP"],
1245
1055
  "description": "",
1246
1056
  "hiddenFromPublishing": false
1247
1057
  },
@@ -1252,9 +1062,7 @@
1252
1062
  "valuesByMode": {
1253
1063
  "1:0": 224
1254
1064
  },
1255
- "scopes": [
1256
- "GAP"
1257
- ],
1065
+ "scopes": ["GAP"],
1258
1066
  "description": "",
1259
1067
  "hiddenFromPublishing": false
1260
1068
  },
@@ -1265,9 +1073,7 @@
1265
1073
  "valuesByMode": {
1266
1074
  "1:0": 240
1267
1075
  },
1268
- "scopes": [
1269
- "GAP"
1270
- ],
1076
+ "scopes": ["GAP"],
1271
1077
  "description": "",
1272
1078
  "hiddenFromPublishing": false
1273
1079
  },
@@ -1278,9 +1084,7 @@
1278
1084
  "valuesByMode": {
1279
1085
  "1:0": 256
1280
1086
  },
1281
- "scopes": [
1282
- "GAP"
1283
- ],
1087
+ "scopes": ["GAP"],
1284
1088
  "description": "",
1285
1089
  "hiddenFromPublishing": false
1286
1090
  },
@@ -1291,9 +1095,7 @@
1291
1095
  "valuesByMode": {
1292
1096
  "1:0": 288
1293
1097
  },
1294
- "scopes": [
1295
- "GAP"
1296
- ],
1098
+ "scopes": ["GAP"],
1297
1099
  "description": "",
1298
1100
  "hiddenFromPublishing": false
1299
1101
  },
@@ -1304,9 +1106,7 @@
1304
1106
  "valuesByMode": {
1305
1107
  "1:0": 320
1306
1108
  },
1307
- "scopes": [
1308
- "GAP"
1309
- ],
1109
+ "scopes": ["GAP"],
1310
1110
  "description": "",
1311
1111
  "hiddenFromPublishing": false
1312
1112
  },
@@ -1317,9 +1117,7 @@
1317
1117
  "valuesByMode": {
1318
1118
  "1:0": 384
1319
1119
  },
1320
- "scopes": [
1321
- "GAP"
1322
- ],
1120
+ "scopes": ["GAP"],
1323
1121
  "description": "",
1324
1122
  "hiddenFromPublishing": false
1325
1123
  },
@@ -1330,9 +1128,7 @@
1330
1128
  "valuesByMode": {
1331
1129
  "1:0": 640
1332
1130
  },
1333
- "scopes": [
1334
- "WIDTH_HEIGHT"
1335
- ],
1131
+ "scopes": ["WIDTH_HEIGHT"],
1336
1132
  "description": "",
1337
1133
  "hiddenFromPublishing": false
1338
1134
  },
@@ -1343,9 +1139,7 @@
1343
1139
  "valuesByMode": {
1344
1140
  "1:0": 768
1345
1141
  },
1346
- "scopes": [
1347
- "WIDTH_HEIGHT"
1348
- ],
1142
+ "scopes": ["WIDTH_HEIGHT"],
1349
1143
  "description": "",
1350
1144
  "hiddenFromPublishing": false
1351
1145
  },
@@ -1356,9 +1150,7 @@
1356
1150
  "valuesByMode": {
1357
1151
  "1:0": 1024
1358
1152
  },
1359
- "scopes": [
1360
- "WIDTH_HEIGHT"
1361
- ],
1153
+ "scopes": ["WIDTH_HEIGHT"],
1362
1154
  "description": "",
1363
1155
  "hiddenFromPublishing": false
1364
1156
  },
@@ -1369,9 +1161,7 @@
1369
1161
  "valuesByMode": {
1370
1162
  "1:0": 1280
1371
1163
  },
1372
- "scopes": [
1373
- "WIDTH_HEIGHT"
1374
- ],
1164
+ "scopes": ["WIDTH_HEIGHT"],
1375
1165
  "description": "",
1376
1166
  "hiddenFromPublishing": false
1377
1167
  },
@@ -1382,9 +1172,7 @@
1382
1172
  "valuesByMode": {
1383
1173
  "1:0": 1536
1384
1174
  },
1385
- "scopes": [
1386
- "WIDTH_HEIGHT"
1387
- ],
1175
+ "scopes": ["WIDTH_HEIGHT"],
1388
1176
  "description": "",
1389
1177
  "hiddenFromPublishing": false
1390
1178
  },
@@ -1505,9 +1293,7 @@
1505
1293
  "valuesByMode": {
1506
1294
  "1:0": 0
1507
1295
  },
1508
- "scopes": [
1509
- "STROKE_FLOAT"
1510
- ],
1296
+ "scopes": ["STROKE_FLOAT"],
1511
1297
  "description": "",
1512
1298
  "hiddenFromPublishing": false
1513
1299
  },
@@ -1518,9 +1304,7 @@
1518
1304
  "valuesByMode": {
1519
1305
  "1:0": 1
1520
1306
  },
1521
- "scopes": [
1522
- "STROKE_FLOAT"
1523
- ],
1307
+ "scopes": ["STROKE_FLOAT"],
1524
1308
  "description": "",
1525
1309
  "hiddenFromPublishing": false
1526
1310
  },
@@ -1531,9 +1315,7 @@
1531
1315
  "valuesByMode": {
1532
1316
  "1:0": 2
1533
1317
  },
1534
- "scopes": [
1535
- "STROKE_FLOAT"
1536
- ],
1318
+ "scopes": ["STROKE_FLOAT"],
1537
1319
  "description": "",
1538
1320
  "hiddenFromPublishing": false
1539
1321
  },
@@ -1544,9 +1326,7 @@
1544
1326
  "valuesByMode": {
1545
1327
  "1:0": 4
1546
1328
  },
1547
- "scopes": [
1548
- "STROKE_FLOAT"
1549
- ],
1329
+ "scopes": ["STROKE_FLOAT"],
1550
1330
  "description": "",
1551
1331
  "hiddenFromPublishing": false
1552
1332
  },
@@ -1557,9 +1337,7 @@
1557
1337
  "valuesByMode": {
1558
1338
  "1:0": 8
1559
1339
  },
1560
- "scopes": [
1561
- "STROKE_FLOAT"
1562
- ],
1340
+ "scopes": ["STROKE_FLOAT"],
1563
1341
  "description": "",
1564
1342
  "hiddenFromPublishing": false
1565
1343
  },
@@ -1570,9 +1348,7 @@
1570
1348
  "valuesByMode": {
1571
1349
  "1:0": 0
1572
1350
  },
1573
- "scopes": [
1574
- "WIDTH_HEIGHT"
1575
- ],
1351
+ "scopes": ["WIDTH_HEIGHT"],
1576
1352
  "description": "",
1577
1353
  "hiddenFromPublishing": false
1578
1354
  },
@@ -1583,9 +1359,7 @@
1583
1359
  "valuesByMode": {
1584
1360
  "1:0": 256
1585
1361
  },
1586
- "scopes": [
1587
- "WIDTH_HEIGHT"
1588
- ],
1362
+ "scopes": ["WIDTH_HEIGHT"],
1589
1363
  "description": "",
1590
1364
  "hiddenFromPublishing": false
1591
1365
  },
@@ -1596,9 +1370,7 @@
1596
1370
  "valuesByMode": {
1597
1371
  "1:0": 288
1598
1372
  },
1599
- "scopes": [
1600
- "WIDTH_HEIGHT"
1601
- ],
1373
+ "scopes": ["WIDTH_HEIGHT"],
1602
1374
  "description": "",
1603
1375
  "hiddenFromPublishing": false
1604
1376
  },
@@ -1609,9 +1381,7 @@
1609
1381
  "valuesByMode": {
1610
1382
  "1:0": 320
1611
1383
  },
1612
- "scopes": [
1613
- "WIDTH_HEIGHT"
1614
- ],
1384
+ "scopes": ["WIDTH_HEIGHT"],
1615
1385
  "description": "",
1616
1386
  "hiddenFromPublishing": false
1617
1387
  },
@@ -1622,9 +1392,7 @@
1622
1392
  "valuesByMode": {
1623
1393
  "1:0": 384
1624
1394
  },
1625
- "scopes": [
1626
- "WIDTH_HEIGHT"
1627
- ],
1395
+ "scopes": ["WIDTH_HEIGHT"],
1628
1396
  "description": "",
1629
1397
  "hiddenFromPublishing": false
1630
1398
  },
@@ -1635,9 +1403,7 @@
1635
1403
  "valuesByMode": {
1636
1404
  "1:0": 448
1637
1405
  },
1638
- "scopes": [
1639
- "WIDTH_HEIGHT"
1640
- ],
1406
+ "scopes": ["WIDTH_HEIGHT"],
1641
1407
  "description": "",
1642
1408
  "hiddenFromPublishing": false
1643
1409
  },
@@ -1648,9 +1414,7 @@
1648
1414
  "valuesByMode": {
1649
1415
  "1:0": 512
1650
1416
  },
1651
- "scopes": [
1652
- "WIDTH_HEIGHT"
1653
- ],
1417
+ "scopes": ["WIDTH_HEIGHT"],
1654
1418
  "description": "",
1655
1419
  "hiddenFromPublishing": false
1656
1420
  },
@@ -1661,9 +1425,7 @@
1661
1425
  "valuesByMode": {
1662
1426
  "1:0": 576
1663
1427
  },
1664
- "scopes": [
1665
- "WIDTH_HEIGHT"
1666
- ],
1428
+ "scopes": ["WIDTH_HEIGHT"],
1667
1429
  "description": "",
1668
1430
  "hiddenFromPublishing": false
1669
1431
  },
@@ -1674,9 +1436,7 @@
1674
1436
  "valuesByMode": {
1675
1437
  "1:0": 672
1676
1438
  },
1677
- "scopes": [
1678
- "WIDTH_HEIGHT"
1679
- ],
1439
+ "scopes": ["WIDTH_HEIGHT"],
1680
1440
  "description": "",
1681
1441
  "hiddenFromPublishing": false
1682
1442
  },
@@ -1687,9 +1447,7 @@
1687
1447
  "valuesByMode": {
1688
1448
  "1:0": 768
1689
1449
  },
1690
- "scopes": [
1691
- "WIDTH_HEIGHT"
1692
- ],
1450
+ "scopes": ["WIDTH_HEIGHT"],
1693
1451
  "description": "",
1694
1452
  "hiddenFromPublishing": false
1695
1453
  },
@@ -1700,9 +1458,7 @@
1700
1458
  "valuesByMode": {
1701
1459
  "1:0": 896
1702
1460
  },
1703
- "scopes": [
1704
- "WIDTH_HEIGHT"
1705
- ],
1461
+ "scopes": ["WIDTH_HEIGHT"],
1706
1462
  "description": "",
1707
1463
  "hiddenFromPublishing": false
1708
1464
  },
@@ -1713,9 +1469,7 @@
1713
1469
  "valuesByMode": {
1714
1470
  "1:0": 1024
1715
1471
  },
1716
- "scopes": [
1717
- "WIDTH_HEIGHT"
1718
- ],
1472
+ "scopes": ["WIDTH_HEIGHT"],
1719
1473
  "description": "",
1720
1474
  "hiddenFromPublishing": false
1721
1475
  },
@@ -1726,9 +1480,7 @@
1726
1480
  "valuesByMode": {
1727
1481
  "1:0": 1152
1728
1482
  },
1729
- "scopes": [
1730
- "WIDTH_HEIGHT"
1731
- ],
1483
+ "scopes": ["WIDTH_HEIGHT"],
1732
1484
  "description": "",
1733
1485
  "hiddenFromPublishing": false
1734
1486
  },
@@ -1739,9 +1491,7 @@
1739
1491
  "valuesByMode": {
1740
1492
  "1:0": 1280
1741
1493
  },
1742
- "scopes": [
1743
- "WIDTH_HEIGHT"
1744
- ],
1494
+ "scopes": ["WIDTH_HEIGHT"],
1745
1495
  "description": "",
1746
1496
  "hiddenFromPublishing": false
1747
1497
  },
@@ -1752,10 +1502,7 @@
1752
1502
  "valuesByMode": {
1753
1503
  "1:0": 0
1754
1504
  },
1755
- "scopes": [
1756
- "EFFECT_FLOAT",
1757
- "OPACITY"
1758
- ],
1505
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1759
1506
  "description": "",
1760
1507
  "hiddenFromPublishing": false
1761
1508
  },
@@ -1766,10 +1513,7 @@
1766
1513
  "valuesByMode": {
1767
1514
  "1:0": 5
1768
1515
  },
1769
- "scopes": [
1770
- "EFFECT_FLOAT",
1771
- "OPACITY"
1772
- ],
1516
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1773
1517
  "description": "",
1774
1518
  "hiddenFromPublishing": false
1775
1519
  },
@@ -1780,10 +1524,7 @@
1780
1524
  "valuesByMode": {
1781
1525
  "1:0": 10
1782
1526
  },
1783
- "scopes": [
1784
- "EFFECT_FLOAT",
1785
- "OPACITY"
1786
- ],
1527
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1787
1528
  "description": "",
1788
1529
  "hiddenFromPublishing": false
1789
1530
  },
@@ -1794,10 +1535,7 @@
1794
1535
  "valuesByMode": {
1795
1536
  "1:0": 15
1796
1537
  },
1797
- "scopes": [
1798
- "EFFECT_FLOAT",
1799
- "OPACITY"
1800
- ],
1538
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1801
1539
  "description": "",
1802
1540
  "hiddenFromPublishing": false
1803
1541
  },
@@ -1808,10 +1546,7 @@
1808
1546
  "valuesByMode": {
1809
1547
  "1:0": 20
1810
1548
  },
1811
- "scopes": [
1812
- "EFFECT_FLOAT",
1813
- "OPACITY"
1814
- ],
1549
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1815
1550
  "description": "",
1816
1551
  "hiddenFromPublishing": false
1817
1552
  },
@@ -1822,10 +1557,7 @@
1822
1557
  "valuesByMode": {
1823
1558
  "1:0": 25
1824
1559
  },
1825
- "scopes": [
1826
- "EFFECT_FLOAT",
1827
- "OPACITY"
1828
- ],
1560
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1829
1561
  "description": "",
1830
1562
  "hiddenFromPublishing": false
1831
1563
  },
@@ -1836,10 +1568,7 @@
1836
1568
  "valuesByMode": {
1837
1569
  "1:0": 30
1838
1570
  },
1839
- "scopes": [
1840
- "EFFECT_FLOAT",
1841
- "OPACITY"
1842
- ],
1571
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1843
1572
  "description": "",
1844
1573
  "hiddenFromPublishing": false
1845
1574
  },
@@ -1850,10 +1579,7 @@
1850
1579
  "valuesByMode": {
1851
1580
  "1:0": 35
1852
1581
  },
1853
- "scopes": [
1854
- "EFFECT_FLOAT",
1855
- "OPACITY"
1856
- ],
1582
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1857
1583
  "description": "",
1858
1584
  "hiddenFromPublishing": false
1859
1585
  },
@@ -1864,10 +1590,7 @@
1864
1590
  "valuesByMode": {
1865
1591
  "1:0": 40
1866
1592
  },
1867
- "scopes": [
1868
- "EFFECT_FLOAT",
1869
- "OPACITY"
1870
- ],
1593
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1871
1594
  "description": "",
1872
1595
  "hiddenFromPublishing": false
1873
1596
  },
@@ -1878,10 +1601,7 @@
1878
1601
  "valuesByMode": {
1879
1602
  "1:0": 45
1880
1603
  },
1881
- "scopes": [
1882
- "EFFECT_FLOAT",
1883
- "OPACITY"
1884
- ],
1604
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1885
1605
  "description": "",
1886
1606
  "hiddenFromPublishing": false
1887
1607
  },
@@ -1892,10 +1612,7 @@
1892
1612
  "valuesByMode": {
1893
1613
  "1:0": 50
1894
1614
  },
1895
- "scopes": [
1896
- "EFFECT_FLOAT",
1897
- "OPACITY"
1898
- ],
1615
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1899
1616
  "description": "",
1900
1617
  "hiddenFromPublishing": false
1901
1618
  },
@@ -1906,10 +1623,7 @@
1906
1623
  "valuesByMode": {
1907
1624
  "1:0": 55
1908
1625
  },
1909
- "scopes": [
1910
- "EFFECT_FLOAT",
1911
- "OPACITY"
1912
- ],
1626
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1913
1627
  "description": "",
1914
1628
  "hiddenFromPublishing": false
1915
1629
  },
@@ -1920,10 +1634,7 @@
1920
1634
  "valuesByMode": {
1921
1635
  "1:0": 60
1922
1636
  },
1923
- "scopes": [
1924
- "EFFECT_FLOAT",
1925
- "OPACITY"
1926
- ],
1637
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1927
1638
  "description": "",
1928
1639
  "hiddenFromPublishing": false
1929
1640
  },
@@ -1934,10 +1645,7 @@
1934
1645
  "valuesByMode": {
1935
1646
  "1:0": 65
1936
1647
  },
1937
- "scopes": [
1938
- "EFFECT_FLOAT",
1939
- "OPACITY"
1940
- ],
1648
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1941
1649
  "description": "",
1942
1650
  "hiddenFromPublishing": false
1943
1651
  },
@@ -1948,10 +1656,7 @@
1948
1656
  "valuesByMode": {
1949
1657
  "1:0": 70
1950
1658
  },
1951
- "scopes": [
1952
- "EFFECT_FLOAT",
1953
- "OPACITY"
1954
- ],
1659
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1955
1660
  "description": "",
1956
1661
  "hiddenFromPublishing": false
1957
1662
  },
@@ -1962,10 +1667,7 @@
1962
1667
  "valuesByMode": {
1963
1668
  "1:0": 75
1964
1669
  },
1965
- "scopes": [
1966
- "EFFECT_FLOAT",
1967
- "OPACITY"
1968
- ],
1670
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1969
1671
  "description": "",
1970
1672
  "hiddenFromPublishing": false
1971
1673
  },
@@ -1976,10 +1678,7 @@
1976
1678
  "valuesByMode": {
1977
1679
  "1:0": 80
1978
1680
  },
1979
- "scopes": [
1980
- "EFFECT_FLOAT",
1981
- "OPACITY"
1982
- ],
1681
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1983
1682
  "description": "",
1984
1683
  "hiddenFromPublishing": false
1985
1684
  },
@@ -1990,10 +1689,7 @@
1990
1689
  "valuesByMode": {
1991
1690
  "1:0": 85
1992
1691
  },
1993
- "scopes": [
1994
- "EFFECT_FLOAT",
1995
- "OPACITY"
1996
- ],
1692
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
1997
1693
  "description": "",
1998
1694
  "hiddenFromPublishing": false
1999
1695
  },
@@ -2004,10 +1700,7 @@
2004
1700
  "valuesByMode": {
2005
1701
  "1:0": 90
2006
1702
  },
2007
- "scopes": [
2008
- "EFFECT_FLOAT",
2009
- "OPACITY"
2010
- ],
1703
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
2011
1704
  "description": "",
2012
1705
  "hiddenFromPublishing": false
2013
1706
  },
@@ -2018,10 +1711,7 @@
2018
1711
  "valuesByMode": {
2019
1712
  "1:0": 95
2020
1713
  },
2021
- "scopes": [
2022
- "EFFECT_FLOAT",
2023
- "OPACITY"
2024
- ],
1714
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
2025
1715
  "description": "",
2026
1716
  "hiddenFromPublishing": false
2027
1717
  },
@@ -2032,10 +1722,7 @@
2032
1722
  "valuesByMode": {
2033
1723
  "1:0": 100
2034
1724
  },
2035
- "scopes": [
2036
- "EFFECT_FLOAT",
2037
- "OPACITY"
2038
- ],
1725
+ "scopes": ["EFFECT_FLOAT", "OPACITY"],
2039
1726
  "description": "",
2040
1727
  "hiddenFromPublishing": false
2041
1728
  },
@@ -2046,9 +1733,7 @@
2046
1733
  "valuesByMode": {
2047
1734
  "1:0": 0
2048
1735
  },
2049
- "scopes": [
2050
- "EFFECT_FLOAT"
2051
- ],
1736
+ "scopes": ["EFFECT_FLOAT"],
2052
1737
  "description": "",
2053
1738
  "hiddenFromPublishing": false
2054
1739
  },
@@ -2059,9 +1744,7 @@
2059
1744
  "valuesByMode": {
2060
1745
  "1:0": 4
2061
1746
  },
2062
- "scopes": [
2063
- "EFFECT_FLOAT"
2064
- ],
1747
+ "scopes": ["EFFECT_FLOAT"],
2065
1748
  "description": "",
2066
1749
  "hiddenFromPublishing": false
2067
1750
  },
@@ -2072,9 +1755,7 @@
2072
1755
  "valuesByMode": {
2073
1756
  "1:0": 8
2074
1757
  },
2075
- "scopes": [
2076
- "EFFECT_FLOAT"
2077
- ],
1758
+ "scopes": ["EFFECT_FLOAT"],
2078
1759
  "description": "",
2079
1760
  "hiddenFromPublishing": false
2080
1761
  },
@@ -2085,9 +1766,7 @@
2085
1766
  "valuesByMode": {
2086
1767
  "1:0": 12
2087
1768
  },
2088
- "scopes": [
2089
- "EFFECT_FLOAT"
2090
- ],
1769
+ "scopes": ["EFFECT_FLOAT"],
2091
1770
  "description": "",
2092
1771
  "hiddenFromPublishing": false
2093
1772
  },
@@ -2098,9 +1777,7 @@
2098
1777
  "valuesByMode": {
2099
1778
  "1:0": 16
2100
1779
  },
2101
- "scopes": [
2102
- "EFFECT_FLOAT"
2103
- ],
1780
+ "scopes": ["EFFECT_FLOAT"],
2104
1781
  "description": "",
2105
1782
  "hiddenFromPublishing": false
2106
1783
  },
@@ -2111,9 +1788,7 @@
2111
1788
  "valuesByMode": {
2112
1789
  "1:0": 24
2113
1790
  },
2114
- "scopes": [
2115
- "EFFECT_FLOAT"
2116
- ],
1791
+ "scopes": ["EFFECT_FLOAT"],
2117
1792
  "description": "",
2118
1793
  "hiddenFromPublishing": false
2119
1794
  },
@@ -2124,9 +1799,7 @@
2124
1799
  "valuesByMode": {
2125
1800
  "1:0": 40
2126
1801
  },
2127
- "scopes": [
2128
- "EFFECT_FLOAT"
2129
- ],
1802
+ "scopes": ["EFFECT_FLOAT"],
2130
1803
  "description": "",
2131
1804
  "hiddenFromPublishing": false
2132
1805
  },
@@ -2137,9 +1810,7 @@
2137
1810
  "valuesByMode": {
2138
1811
  "1:0": 64
2139
1812
  },
2140
- "scopes": [
2141
- "EFFECT_FLOAT"
2142
- ],
1813
+ "scopes": ["EFFECT_FLOAT"],
2143
1814
  "description": "",
2144
1815
  "hiddenFromPublishing": false
2145
1816
  },
@@ -2161,9 +1832,7 @@
2161
1832
  "valuesByMode": {
2162
1833
  "1:0": "normal"
2163
1834
  },
2164
- "scopes": [
2165
- "ALL_SCOPES"
2166
- ],
1835
+ "scopes": ["ALL_SCOPES"],
2167
1836
  "description": "",
2168
1837
  "hiddenFromPublishing": true
2169
1838
  },
@@ -2174,9 +1843,7 @@
2174
1843
  "valuesByMode": {
2175
1844
  "1:0": 100
2176
1845
  },
2177
- "scopes": [
2178
- "FONT_WEIGHT"
2179
- ],
1846
+ "scopes": ["FONT_WEIGHT"],
2180
1847
  "description": "",
2181
1848
  "hiddenFromPublishing": true
2182
1849
  },
@@ -2187,9 +1854,7 @@
2187
1854
  "valuesByMode": {
2188
1855
  "1:0": 200
2189
1856
  },
2190
- "scopes": [
2191
- "FONT_WEIGHT"
2192
- ],
1857
+ "scopes": ["FONT_WEIGHT"],
2193
1858
  "description": "",
2194
1859
  "hiddenFromPublishing": true
2195
1860
  },
@@ -2200,9 +1865,7 @@
2200
1865
  "valuesByMode": {
2201
1866
  "1:0": 300
2202
1867
  },
2203
- "scopes": [
2204
- "FONT_WEIGHT"
2205
- ],
1868
+ "scopes": ["FONT_WEIGHT"],
2206
1869
  "description": "",
2207
1870
  "hiddenFromPublishing": false
2208
1871
  },
@@ -2213,9 +1876,7 @@
2213
1876
  "valuesByMode": {
2214
1877
  "1:0": 400
2215
1878
  },
2216
- "scopes": [
2217
- "FONT_WEIGHT"
2218
- ],
1879
+ "scopes": ["FONT_WEIGHT"],
2219
1880
  "description": "",
2220
1881
  "hiddenFromPublishing": false
2221
1882
  },
@@ -2226,9 +1887,7 @@
2226
1887
  "valuesByMode": {
2227
1888
  "1:0": 500
2228
1889
  },
2229
- "scopes": [
2230
- "FONT_WEIGHT"
2231
- ],
1890
+ "scopes": ["FONT_WEIGHT"],
2232
1891
  "description": "",
2233
1892
  "hiddenFromPublishing": false
2234
1893
  },
@@ -2239,9 +1898,7 @@
2239
1898
  "valuesByMode": {
2240
1899
  "1:0": 600
2241
1900
  },
2242
- "scopes": [
2243
- "FONT_WEIGHT"
2244
- ],
1901
+ "scopes": ["FONT_WEIGHT"],
2245
1902
  "description": "",
2246
1903
  "hiddenFromPublishing": false
2247
1904
  },
@@ -2252,9 +1909,7 @@
2252
1909
  "valuesByMode": {
2253
1910
  "1:0": 700
2254
1911
  },
2255
- "scopes": [
2256
- "FONT_WEIGHT"
2257
- ],
1912
+ "scopes": ["FONT_WEIGHT"],
2258
1913
  "description": "",
2259
1914
  "hiddenFromPublishing": false
2260
1915
  },
@@ -2265,9 +1920,7 @@
2265
1920
  "valuesByMode": {
2266
1921
  "1:0": 800
2267
1922
  },
2268
- "scopes": [
2269
- "FONT_WEIGHT"
2270
- ],
1923
+ "scopes": ["FONT_WEIGHT"],
2271
1924
  "description": "",
2272
1925
  "hiddenFromPublishing": false
2273
1926
  },
@@ -2278,9 +1931,7 @@
2278
1931
  "valuesByMode": {
2279
1932
  "1:0": 900
2280
1933
  },
2281
- "scopes": [
2282
- "FONT_WEIGHT"
2283
- ],
1934
+ "scopes": ["FONT_WEIGHT"],
2284
1935
  "description": "",
2285
1936
  "hiddenFromPublishing": false
2286
1937
  },
@@ -8541,9 +8192,7 @@
8541
8192
  "id": "VariableID:1:44"
8542
8193
  }
8543
8194
  },
8544
- "scopes": [
8545
- "CORNER_RADIUS"
8546
- ],
8195
+ "scopes": ["CORNER_RADIUS"],
8547
8196
  "description": "",
8548
8197
  "hiddenFromPublishing": false
8549
8198
  },
@@ -8557,9 +8206,7 @@
8557
8206
  "id": "VariableID:1:45"
8558
8207
  }
8559
8208
  },
8560
- "scopes": [
8561
- "CORNER_RADIUS"
8562
- ],
8209
+ "scopes": ["CORNER_RADIUS"],
8563
8210
  "description": "",
8564
8211
  "hiddenFromPublishing": false
8565
8212
  },
@@ -8573,9 +8220,7 @@
8573
8220
  "id": "VariableID:1:46"
8574
8221
  }
8575
8222
  },
8576
- "scopes": [
8577
- "CORNER_RADIUS"
8578
- ],
8223
+ "scopes": ["CORNER_RADIUS"],
8579
8224
  "description": "",
8580
8225
  "hiddenFromPublishing": false
8581
8226
  },
@@ -8589,9 +8234,7 @@
8589
8234
  "id": "VariableID:1:47"
8590
8235
  }
8591
8236
  },
8592
- "scopes": [
8593
- "CORNER_RADIUS"
8594
- ],
8237
+ "scopes": ["CORNER_RADIUS"],
8595
8238
  "description": "",
8596
8239
  "hiddenFromPublishing": false
8597
8240
  },
@@ -8605,9 +8248,7 @@
8605
8248
  "id": "VariableID:1:48"
8606
8249
  }
8607
8250
  },
8608
- "scopes": [
8609
- "CORNER_RADIUS"
8610
- ],
8251
+ "scopes": ["CORNER_RADIUS"],
8611
8252
  "description": "",
8612
8253
  "hiddenFromPublishing": false
8613
8254
  },
@@ -8621,9 +8262,7 @@
8621
8262
  "id": "VariableID:1:49"
8622
8263
  }
8623
8264
  },
8624
- "scopes": [
8625
- "CORNER_RADIUS"
8626
- ],
8265
+ "scopes": ["CORNER_RADIUS"],
8627
8266
  "description": "",
8628
8267
  "hiddenFromPublishing": false
8629
8268
  },
@@ -8637,9 +8276,7 @@
8637
8276
  "id": "VariableID:1:50"
8638
8277
  }
8639
8278
  },
8640
- "scopes": [
8641
- "CORNER_RADIUS"
8642
- ],
8279
+ "scopes": ["CORNER_RADIUS"],
8643
8280
  "description": "",
8644
8281
  "hiddenFromPublishing": false
8645
8282
  },
@@ -8653,9 +8290,7 @@
8653
8290
  "id": "VariableID:1:52"
8654
8291
  }
8655
8292
  },
8656
- "scopes": [
8657
- "CORNER_RADIUS"
8658
- ],
8293
+ "scopes": ["CORNER_RADIUS"],
8659
8294
  "description": "",
8660
8295
  "hiddenFromPublishing": false
8661
8296
  },
@@ -8669,9 +8304,7 @@
8669
8304
  "id": "VariableID:9022:141095"
8670
8305
  }
8671
8306
  },
8672
- "scopes": [
8673
- "ALL_SCOPES"
8674
- ],
8307
+ "scopes": ["ALL_SCOPES"],
8675
8308
  "description": "",
8676
8309
  "hiddenFromPublishing": false
8677
8310
  },
@@ -8685,9 +8318,7 @@
8685
8318
  "id": "VariableID:1:127"
8686
8319
  }
8687
8320
  },
8688
- "scopes": [
8689
- "ALL_SCOPES"
8690
- ],
8321
+ "scopes": ["ALL_SCOPES"],
8691
8322
  "description": "",
8692
8323
  "hiddenFromPublishing": false
8693
8324
  },
@@ -8698,9 +8329,7 @@
8698
8329
  "valuesByMode": {
8699
8330
  "1:1": "Inter"
8700
8331
  },
8701
- "scopes": [
8702
- "FONT_FAMILY"
8703
- ],
8332
+ "scopes": ["FONT_FAMILY"],
8704
8333
  "description": "",
8705
8334
  "hiddenFromPublishing": false
8706
8335
  },
@@ -8711,9 +8340,7 @@
8711
8340
  "valuesByMode": {
8712
8341
  "1:1": "Georgia"
8713
8342
  },
8714
- "scopes": [
8715
- "FONT_FAMILY"
8716
- ],
8343
+ "scopes": ["FONT_FAMILY"],
8717
8344
  "description": "",
8718
8345
  "hiddenFromPublishing": false
8719
8346
  },
@@ -8724,9 +8351,7 @@
8724
8351
  "valuesByMode": {
8725
8352
  "1:1": "Menlo"
8726
8353
  },
8727
- "scopes": [
8728
- "FONT_FAMILY"
8729
- ],
8354
+ "scopes": ["FONT_FAMILY"],
8730
8355
  "description": "",
8731
8356
  "hiddenFromPublishing": false
8732
8357
  },
@@ -8740,9 +8365,7 @@
8740
8365
  "id": "VariableID:1:135"
8741
8366
  }
8742
8367
  },
8743
- "scopes": [
8744
- "FONT_SIZE"
8745
- ],
8368
+ "scopes": ["FONT_SIZE"],
8746
8369
  "description": "",
8747
8370
  "hiddenFromPublishing": false
8748
8371
  },
@@ -8756,9 +8379,7 @@
8756
8379
  "id": "VariableID:1:128"
8757
8380
  }
8758
8381
  },
8759
- "scopes": [
8760
- "LINE_HEIGHT"
8761
- ],
8382
+ "scopes": ["LINE_HEIGHT"],
8762
8383
  "description": "",
8763
8384
  "hiddenFromPublishing": false
8764
8385
  },
@@ -8772,9 +8393,7 @@
8772
8393
  "id": "VariableID:1:136"
8773
8394
  }
8774
8395
  },
8775
- "scopes": [
8776
- "FONT_SIZE"
8777
- ],
8396
+ "scopes": ["FONT_SIZE"],
8778
8397
  "description": "",
8779
8398
  "hiddenFromPublishing": false
8780
8399
  },
@@ -8788,9 +8407,7 @@
8788
8407
  "id": "VariableID:1:129"
8789
8408
  }
8790
8409
  },
8791
- "scopes": [
8792
- "LINE_HEIGHT"
8793
- ],
8410
+ "scopes": ["LINE_HEIGHT"],
8794
8411
  "description": "",
8795
8412
  "hiddenFromPublishing": false
8796
8413
  },
@@ -8804,9 +8421,7 @@
8804
8421
  "id": "VariableID:1:137"
8805
8422
  }
8806
8423
  },
8807
- "scopes": [
8808
- "FONT_SIZE"
8809
- ],
8424
+ "scopes": ["FONT_SIZE"],
8810
8425
  "description": "",
8811
8426
  "hiddenFromPublishing": false
8812
8427
  },
@@ -8820,9 +8435,7 @@
8820
8435
  "id": "VariableID:1:130"
8821
8436
  }
8822
8437
  },
8823
- "scopes": [
8824
- "LINE_HEIGHT"
8825
- ],
8438
+ "scopes": ["LINE_HEIGHT"],
8826
8439
  "description": "",
8827
8440
  "hiddenFromPublishing": false
8828
8441
  },
@@ -8836,9 +8449,7 @@
8836
8449
  "id": "VariableID:1:138"
8837
8450
  }
8838
8451
  },
8839
- "scopes": [
8840
- "FONT_SIZE"
8841
- ],
8452
+ "scopes": ["FONT_SIZE"],
8842
8453
  "description": "",
8843
8454
  "hiddenFromPublishing": false
8844
8455
  },
@@ -8852,9 +8463,7 @@
8852
8463
  "id": "VariableID:1:131"
8853
8464
  }
8854
8465
  },
8855
- "scopes": [
8856
- "LINE_HEIGHT"
8857
- ],
8466
+ "scopes": ["LINE_HEIGHT"],
8858
8467
  "description": "",
8859
8468
  "hiddenFromPublishing": false
8860
8469
  },
@@ -8868,9 +8477,7 @@
8868
8477
  "id": "VariableID:1:516"
8869
8478
  }
8870
8479
  },
8871
- "scopes": [
8872
- "ALL_SCOPES"
8873
- ],
8480
+ "scopes": ["ALL_SCOPES"],
8874
8481
  "description": "",
8875
8482
  "hiddenFromPublishing": false
8876
8483
  },
@@ -8954,9 +8561,7 @@
8954
8561
  "id": "VariableID:1:516"
8955
8562
  }
8956
8563
  },
8957
- "scopes": [
8958
- "ALL_SCOPES"
8959
- ],
8564
+ "scopes": ["ALL_SCOPES"],
8960
8565
  "description": "",
8961
8566
  "hiddenFromPublishing": false
8962
8567
  },
@@ -9026,9 +8631,7 @@
9026
8631
  "id": "VariableID:1:516"
9027
8632
  }
9028
8633
  },
9029
- "scopes": [
9030
- "ALL_SCOPES"
9031
- ],
8634
+ "scopes": ["ALL_SCOPES"],
9032
8635
  "description": "",
9033
8636
  "hiddenFromPublishing": false
9034
8637
  },
@@ -9098,9 +8701,7 @@
9098
8701
  "id": "VariableID:1:516"
9099
8702
  }
9100
8703
  },
9101
- "scopes": [
9102
- "ALL_SCOPES"
9103
- ],
8704
+ "scopes": ["ALL_SCOPES"],
9104
8705
  "description": "",
9105
8706
  "hiddenFromPublishing": false
9106
8707
  },
@@ -9170,9 +8771,7 @@
9170
8771
  "id": "VariableID:1:516"
9171
8772
  }
9172
8773
  },
9173
- "scopes": [
9174
- "ALL_SCOPES"
9175
- ],
8774
+ "scopes": ["ALL_SCOPES"],
9176
8775
  "description": "",
9177
8776
  "hiddenFromPublishing": false
9178
8777
  },
@@ -9242,9 +8841,7 @@
9242
8841
  "id": "VariableID:1:516"
9243
8842
  }
9244
8843
  },
9245
- "scopes": [
9246
- "ALL_SCOPES"
9247
- ],
8844
+ "scopes": ["ALL_SCOPES"],
9248
8845
  "description": "",
9249
8846
  "hiddenFromPublishing": false
9250
8847
  },
@@ -9314,9 +8911,7 @@
9314
8911
  "id": "VariableID:1:110"
9315
8912
  }
9316
8913
  },
9317
- "scopes": [
9318
- "ALL_SCOPES"
9319
- ],
8914
+ "scopes": ["ALL_SCOPES"],
9320
8915
  "description": "",
9321
8916
  "hiddenFromPublishing": false
9322
8917
  },
@@ -9330,9 +8925,7 @@
9330
8925
  "id": "VariableID:1:516"
9331
8926
  }
9332
8927
  },
9333
- "scopes": [
9334
- "ALL_SCOPES"
9335
- ],
8928
+ "scopes": ["ALL_SCOPES"],
9336
8929
  "description": "",
9337
8930
  "hiddenFromPublishing": false
9338
8931
  },
@@ -9402,9 +8995,7 @@
9402
8995
  "id": "VariableID:1:518"
9403
8996
  }
9404
8997
  },
9405
- "scopes": [
9406
- "ALL_SCOPES"
9407
- ],
8998
+ "scopes": ["ALL_SCOPES"],
9408
8999
  "description": "",
9409
9000
  "hiddenFromPublishing": false
9410
9001
  },
@@ -9474,9 +9065,7 @@
9474
9065
  "id": "VariableID:1:516"
9475
9066
  }
9476
9067
  },
9477
- "scopes": [
9478
- "ALL_SCOPES"
9479
- ],
9068
+ "scopes": ["ALL_SCOPES"],
9480
9069
  "description": "",
9481
9070
  "hiddenFromPublishing": false
9482
9071
  },
@@ -9546,9 +9135,7 @@
9546
9135
  "id": "VariableID:1:516"
9547
9136
  }
9548
9137
  },
9549
- "scopes": [
9550
- "ALL_SCOPES"
9551
- ],
9138
+ "scopes": ["ALL_SCOPES"],
9552
9139
  "description": "",
9553
9140
  "hiddenFromPublishing": false
9554
9141
  },
@@ -9618,9 +9205,7 @@
9618
9205
  "id": "VariableID:1:516"
9619
9206
  }
9620
9207
  },
9621
- "scopes": [
9622
- "ALL_SCOPES"
9623
- ],
9208
+ "scopes": ["ALL_SCOPES"],
9624
9209
  "description": "",
9625
9210
  "hiddenFromPublishing": false
9626
9211
  },
@@ -9690,9 +9275,7 @@
9690
9275
  "id": "VariableID:1:139"
9691
9276
  }
9692
9277
  },
9693
- "scopes": [
9694
- "FONT_SIZE"
9695
- ],
9278
+ "scopes": ["FONT_SIZE"],
9696
9279
  "description": "",
9697
9280
  "hiddenFromPublishing": false
9698
9281
  },
@@ -9706,9 +9289,7 @@
9706
9289
  "id": "VariableID:1:131"
9707
9290
  }
9708
9291
  },
9709
- "scopes": [
9710
- "LINE_HEIGHT"
9711
- ],
9292
+ "scopes": ["LINE_HEIGHT"],
9712
9293
  "description": "",
9713
9294
  "hiddenFromPublishing": false
9714
9295
  },
@@ -9722,9 +9303,7 @@
9722
9303
  "id": "VariableID:1:140"
9723
9304
  }
9724
9305
  },
9725
- "scopes": [
9726
- "FONT_SIZE"
9727
- ],
9306
+ "scopes": ["FONT_SIZE"],
9728
9307
  "description": "",
9729
9308
  "hiddenFromPublishing": false
9730
9309
  },
@@ -9738,9 +9317,7 @@
9738
9317
  "id": "VariableID:1:132"
9739
9318
  }
9740
9319
  },
9741
- "scopes": [
9742
- "LINE_HEIGHT"
9743
- ],
9320
+ "scopes": ["LINE_HEIGHT"],
9744
9321
  "description": "",
9745
9322
  "hiddenFromPublishing": false
9746
9323
  },
@@ -9754,9 +9331,7 @@
9754
9331
  "id": "VariableID:1:141"
9755
9332
  }
9756
9333
  },
9757
- "scopes": [
9758
- "FONT_SIZE"
9759
- ],
9334
+ "scopes": ["FONT_SIZE"],
9760
9335
  "description": "",
9761
9336
  "hiddenFromPublishing": false
9762
9337
  },
@@ -9770,9 +9345,7 @@
9770
9345
  "id": "VariableID:1:133"
9771
9346
  }
9772
9347
  },
9773
- "scopes": [
9774
- "LINE_HEIGHT"
9775
- ],
9348
+ "scopes": ["LINE_HEIGHT"],
9776
9349
  "description": "",
9777
9350
  "hiddenFromPublishing": false
9778
9351
  },
@@ -9786,9 +9359,7 @@
9786
9359
  "id": "VariableID:1:142"
9787
9360
  }
9788
9361
  },
9789
- "scopes": [
9790
- "FONT_SIZE"
9791
- ],
9362
+ "scopes": ["FONT_SIZE"],
9792
9363
  "description": "",
9793
9364
  "hiddenFromPublishing": false
9794
9365
  },
@@ -9802,9 +9373,7 @@
9802
9373
  "id": "VariableID:1:134"
9803
9374
  }
9804
9375
  },
9805
- "scopes": [
9806
- "LINE_HEIGHT"
9807
- ],
9376
+ "scopes": ["LINE_HEIGHT"],
9808
9377
  "description": "",
9809
9378
  "hiddenFromPublishing": false
9810
9379
  },
@@ -9818,9 +9387,7 @@
9818
9387
  "id": "VariableID:1:516"
9819
9388
  }
9820
9389
  },
9821
- "scopes": [
9822
- "ALL_SCOPES"
9823
- ],
9390
+ "scopes": ["ALL_SCOPES"],
9824
9391
  "description": "",
9825
9392
  "hiddenFromPublishing": false
9826
9393
  },
@@ -9890,9 +9457,7 @@
9890
9457
  "id": "VariableID:1:143"
9891
9458
  }
9892
9459
  },
9893
- "scopes": [
9894
- "FONT_SIZE"
9895
- ],
9460
+ "scopes": ["FONT_SIZE"],
9896
9461
  "description": "",
9897
9462
  "hiddenFromPublishing": false
9898
9463
  },
@@ -9906,9 +9471,7 @@
9906
9471
  "id": "VariableID:1:143"
9907
9472
  }
9908
9473
  },
9909
- "scopes": [
9910
- "LINE_HEIGHT"
9911
- ],
9474
+ "scopes": ["LINE_HEIGHT"],
9912
9475
  "description": "",
9913
9476
  "hiddenFromPublishing": false
9914
9477
  },
@@ -11897,9 +11460,7 @@
11897
11460
  "id": "VariableID:4:4975"
11898
11461
  }
11899
11462
  },
11900
- "scopes": [
11901
- "ALL_SCOPES"
11902
- ],
11463
+ "scopes": ["ALL_SCOPES"],
11903
11464
  "description": "",
11904
11465
  "hiddenFromPublishing": false
11905
11466
  },
@@ -11917,9 +11478,7 @@
11917
11478
  "id": "VariableID:4:4968"
11918
11479
  }
11919
11480
  },
11920
- "scopes": [
11921
- "ALL_SCOPES"
11922
- ],
11481
+ "scopes": ["ALL_SCOPES"],
11923
11482
  "description": "",
11924
11483
  "hiddenFromPublishing": false
11925
11484
  },
@@ -11937,9 +11496,7 @@
11937
11496
  "id": "VariableID:4:4963"
11938
11497
  }
11939
11498
  },
11940
- "scopes": [
11941
- "ALL_SCOPES"
11942
- ],
11499
+ "scopes": ["ALL_SCOPES"],
11943
11500
  "description": "",
11944
11501
  "hiddenFromPublishing": false
11945
11502
  },
@@ -11957,9 +11514,7 @@
11957
11514
  "id": "VariableID:9054:137172"
11958
11515
  }
11959
11516
  },
11960
- "scopes": [
11961
- "ALL_SCOPES"
11962
- ],
11517
+ "scopes": ["ALL_SCOPES"],
11963
11518
  "description": "",
11964
11519
  "hiddenFromPublishing": false
11965
11520
  },
@@ -11977,9 +11532,7 @@
11977
11532
  "id": "VariableID:3:89"
11978
11533
  }
11979
11534
  },
11980
- "scopes": [
11981
- "ALL_SCOPES"
11982
- ],
11535
+ "scopes": ["ALL_SCOPES"],
11983
11536
  "description": "",
11984
11537
  "hiddenFromPublishing": false
11985
11538
  },
@@ -11997,9 +11550,7 @@
11997
11550
  "id": "VariableID:3:93"
11998
11551
  }
11999
11552
  },
12000
- "scopes": [
12001
- "ALL_SCOPES"
12002
- ],
11553
+ "scopes": ["ALL_SCOPES"],
12003
11554
  "description": "",
12004
11555
  "hiddenFromPublishing": false
12005
11556
  },
@@ -12017,9 +11568,7 @@
12017
11568
  "id": "VariableID:3:95"
12018
11569
  }
12019
11570
  },
12020
- "scopes": [
12021
- "ALL_SCOPES"
12022
- ],
11571
+ "scopes": ["ALL_SCOPES"],
12023
11572
  "description": "",
12024
11573
  "hiddenFromPublishing": false
12025
11574
  },
@@ -12037,9 +11586,7 @@
12037
11586
  "id": "VariableID:4:4970"
12038
11587
  }
12039
11588
  },
12040
- "scopes": [
12041
- "ALL_SCOPES"
12042
- ],
11589
+ "scopes": ["ALL_SCOPES"],
12043
11590
  "description": "",
12044
11591
  "hiddenFromPublishing": false
12045
11592
  },
@@ -12057,9 +11604,7 @@
12057
11604
  "id": "VariableID:9009:3238"
12058
11605
  }
12059
11606
  },
12060
- "scopes": [
12061
- "ALL_SCOPES"
12062
- ],
11607
+ "scopes": ["ALL_SCOPES"],
12063
11608
  "description": "",
12064
11609
  "hiddenFromPublishing": false
12065
11610
  },
@@ -12077,9 +11622,7 @@
12077
11622
  "id": "VariableID:9034:165877"
12078
11623
  }
12079
11624
  },
12080
- "scopes": [
12081
- "ALL_SCOPES"
12082
- ],
11625
+ "scopes": ["ALL_SCOPES"],
12083
11626
  "description": "",
12084
11627
  "hiddenFromPublishing": false
12085
11628
  },
@@ -12097,9 +11640,7 @@
12097
11640
  "id": "VariableID:9036:177457"
12098
11641
  }
12099
11642
  },
12100
- "scopes": [
12101
- "ALL_SCOPES"
12102
- ],
11643
+ "scopes": ["ALL_SCOPES"],
12103
11644
  "description": "",
12104
11645
  "hiddenFromPublishing": false
12105
11646
  },
@@ -12117,9 +11658,7 @@
12117
11658
  "id": "VariableID:10052:349"
12118
11659
  }
12119
11660
  },
12120
- "scopes": [
12121
- "ALL_SCOPES"
12122
- ],
11661
+ "scopes": ["ALL_SCOPES"],
12123
11662
  "description": "",
12124
11663
  "hiddenFromPublishing": false
12125
11664
  },
@@ -12137,9 +11676,7 @@
12137
11676
  "id": "VariableID:4:4972"
12138
11677
  }
12139
11678
  },
12140
- "scopes": [
12141
- "ALL_SCOPES"
12142
- ],
11679
+ "scopes": ["ALL_SCOPES"],
12143
11680
  "description": "",
12144
11681
  "hiddenFromPublishing": false
12145
11682
  },
@@ -12157,9 +11694,7 @@
12157
11694
  "id": "VariableID:9204:55989"
12158
11695
  }
12159
11696
  },
12160
- "scopes": [
12161
- "ALL_SCOPES"
12162
- ],
11697
+ "scopes": ["ALL_SCOPES"],
12163
11698
  "description": "",
12164
11699
  "hiddenFromPublishing": false
12165
11700
  },
@@ -12177,9 +11712,7 @@
12177
11712
  "id": "VariableID:9202:54610"
12178
11713
  }
12179
11714
  },
12180
- "scopes": [
12181
- "ALL_SCOPES"
12182
- ],
11715
+ "scopes": ["ALL_SCOPES"],
12183
11716
  "description": "",
12184
11717
  "hiddenFromPublishing": false
12185
11718
  },
@@ -12197,9 +11730,7 @@
12197
11730
  "id": "VariableID:4:4974"
12198
11731
  }
12199
11732
  },
12200
- "scopes": [
12201
- "ALL_SCOPES"
12202
- ],
11733
+ "scopes": ["ALL_SCOPES"],
12203
11734
  "description": "",
12204
11735
  "hiddenFromPublishing": false
12205
11736
  },
@@ -12217,9 +11748,7 @@
12217
11748
  "id": "VariableID:4:4977"
12218
11749
  }
12219
11750
  },
12220
- "scopes": [
12221
- "ALL_SCOPES"
12222
- ],
11751
+ "scopes": ["ALL_SCOPES"],
12223
11752
  "description": "",
12224
11753
  "hiddenFromPublishing": false
12225
11754
  },
@@ -12237,9 +11766,7 @@
12237
11766
  "id": "VariableID:9034:165880"
12238
11767
  }
12239
11768
  },
12240
- "scopes": [
12241
- "ALL_SCOPES"
12242
- ],
11769
+ "scopes": ["ALL_SCOPES"],
12243
11770
  "description": "",
12244
11771
  "hiddenFromPublishing": false
12245
11772
  },
@@ -12257,9 +11784,7 @@
12257
11784
  "id": "VariableID:9034:165882"
12258
11785
  }
12259
11786
  },
12260
- "scopes": [
12261
- "ALL_SCOPES"
12262
- ],
11787
+ "scopes": ["ALL_SCOPES"],
12263
11788
  "description": "",
12264
11789
  "hiddenFromPublishing": false
12265
11790
  },
@@ -12277,9 +11802,7 @@
12277
11802
  "id": "VariableID:9034:165884"
12278
11803
  }
12279
11804
  },
12280
- "scopes": [
12281
- "ALL_SCOPES"
12282
- ],
11805
+ "scopes": ["ALL_SCOPES"],
12283
11806
  "description": "",
12284
11807
  "hiddenFromPublishing": false
12285
11808
  },
@@ -12297,9 +11820,7 @@
12297
11820
  "id": "VariableID:9060:190328"
12298
11821
  }
12299
11822
  },
12300
- "scopes": [
12301
- "ALL_SCOPES"
12302
- ],
11823
+ "scopes": ["ALL_SCOPES"],
12303
11824
  "description": "",
12304
11825
  "hiddenFromPublishing": false
12305
11826
  },
@@ -12317,9 +11838,7 @@
12317
11838
  "id": "VariableID:9677:32264"
12318
11839
  }
12319
11840
  },
12320
- "scopes": [
12321
- "ALL_SCOPES"
12322
- ],
11841
+ "scopes": ["ALL_SCOPES"],
12323
11842
  "description": "",
12324
11843
  "hiddenFromPublishing": false
12325
11844
  },
@@ -12337,9 +11856,7 @@
12337
11856
  "id": "VariableID:9035:179124"
12338
11857
  }
12339
11858
  },
12340
- "scopes": [
12341
- "ALL_SCOPES"
12342
- ],
11859
+ "scopes": ["ALL_SCOPES"],
12343
11860
  "description": "",
12344
11861
  "hiddenFromPublishing": false
12345
11862
  },
@@ -12357,9 +11874,7 @@
12357
11874
  "id": "VariableID:9119:191584"
12358
11875
  }
12359
11876
  },
12360
- "scopes": [
12361
- "ALL_SCOPES"
12362
- ],
11877
+ "scopes": ["ALL_SCOPES"],
12363
11878
  "description": "",
12364
11879
  "hiddenFromPublishing": false
12365
11880
  },
@@ -12377,9 +11892,7 @@
12377
11892
  "id": "VariableID:9617:8022"
12378
11893
  }
12379
11894
  },
12380
- "scopes": [
12381
- "ALL_SCOPES"
12382
- ],
11895
+ "scopes": ["ALL_SCOPES"],
12383
11896
  "description": "",
12384
11897
  "hiddenFromPublishing": false
12385
11898
  },
@@ -12397,9 +11910,7 @@
12397
11910
  "id": "VariableID:9035:179114"
12398
11911
  }
12399
11912
  },
12400
- "scopes": [
12401
- "ALL_SCOPES"
12402
- ],
11913
+ "scopes": ["ALL_SCOPES"],
12403
11914
  "description": "",
12404
11915
  "hiddenFromPublishing": false
12405
11916
  },
@@ -12417,9 +11928,7 @@
12417
11928
  "id": "VariableID:9035:179119"
12418
11929
  }
12419
11930
  },
12420
- "scopes": [
12421
- "ALL_SCOPES"
12422
- ],
11931
+ "scopes": ["ALL_SCOPES"],
12423
11932
  "description": "",
12424
11933
  "hiddenFromPublishing": false
12425
11934
  },
@@ -12437,9 +11946,7 @@
12437
11946
  "id": "VariableID:9035:179120"
12438
11947
  }
12439
11948
  },
12440
- "scopes": [
12441
- "ALL_SCOPES"
12442
- ],
11949
+ "scopes": ["ALL_SCOPES"],
12443
11950
  "description": "",
12444
11951
  "hiddenFromPublishing": false
12445
11952
  },
@@ -12457,9 +11964,7 @@
12457
11964
  "id": "VariableID:9035:179116"
12458
11965
  }
12459
11966
  },
12460
- "scopes": [
12461
- "ALL_SCOPES"
12462
- ],
11967
+ "scopes": ["ALL_SCOPES"],
12463
11968
  "description": "",
12464
11969
  "hiddenFromPublishing": false
12465
11970
  },
@@ -12477,9 +11982,7 @@
12477
11982
  "id": "VariableID:9036:156046"
12478
11983
  }
12479
11984
  },
12480
- "scopes": [
12481
- "ALL_SCOPES"
12482
- ],
11985
+ "scopes": ["ALL_SCOPES"],
12483
11986
  "description": "",
12484
11987
  "hiddenFromPublishing": false
12485
11988
  },
@@ -12497,9 +12000,7 @@
12497
12000
  "id": "VariableID:9036:156045"
12498
12001
  }
12499
12002
  },
12500
- "scopes": [
12501
- "ALL_SCOPES"
12502
- ],
12003
+ "scopes": ["ALL_SCOPES"],
12503
12004
  "description": "",
12504
12005
  "hiddenFromPublishing": false
12505
12006
  },
@@ -12517,9 +12018,7 @@
12517
12018
  "id": "VariableID:9620:2293"
12518
12019
  }
12519
12020
  },
12520
- "scopes": [
12521
- "ALL_SCOPES"
12522
- ],
12021
+ "scopes": ["ALL_SCOPES"],
12523
12022
  "description": "",
12524
12023
  "hiddenFromPublishing": false
12525
12024
  },
@@ -12537,9 +12036,7 @@
12537
12036
  "id": "VariableID:4:4979"
12538
12037
  }
12539
12038
  },
12540
- "scopes": [
12541
- "ALL_SCOPES"
12542
- ],
12039
+ "scopes": ["ALL_SCOPES"],
12543
12040
  "description": "",
12544
12041
  "hiddenFromPublishing": false
12545
12042
  },
@@ -12557,9 +12054,7 @@
12557
12054
  "id": "VariableID:4:4981"
12558
12055
  }
12559
12056
  },
12560
- "scopes": [
12561
- "ALL_SCOPES"
12562
- ],
12057
+ "scopes": ["ALL_SCOPES"],
12563
12058
  "description": "",
12564
12059
  "hiddenFromPublishing": false
12565
12060
  },
@@ -12577,9 +12072,7 @@
12577
12072
  "id": "VariableID:9021:135787"
12578
12073
  }
12579
12074
  },
12580
- "scopes": [
12581
- "ALL_SCOPES"
12582
- ],
12075
+ "scopes": ["ALL_SCOPES"],
12583
12076
  "description": "",
12584
12077
  "hiddenFromPublishing": false
12585
12078
  },
@@ -12597,9 +12090,7 @@
12597
12090
  "id": "VariableID:9021:135789"
12598
12091
  }
12599
12092
  },
12600
- "scopes": [
12601
- "ALL_SCOPES"
12602
- ],
12093
+ "scopes": ["ALL_SCOPES"],
12603
12094
  "description": "",
12604
12095
  "hiddenFromPublishing": false
12605
12096
  },
@@ -12617,9 +12108,7 @@
12617
12108
  "id": "VariableID:9021:134535"
12618
12109
  }
12619
12110
  },
12620
- "scopes": [
12621
- "ALL_SCOPES"
12622
- ],
12111
+ "scopes": ["ALL_SCOPES"],
12623
12112
  "description": "",
12624
12113
  "hiddenFromPublishing": false
12625
12114
  },
@@ -12637,9 +12126,7 @@
12637
12126
  "id": "VariableID:9021:135778"
12638
12127
  }
12639
12128
  },
12640
- "scopes": [
12641
- "ALL_SCOPES"
12642
- ],
12129
+ "scopes": ["ALL_SCOPES"],
12643
12130
  "description": "",
12644
12131
  "hiddenFromPublishing": false
12645
12132
  },
@@ -12657,9 +12144,7 @@
12657
12144
  "id": "VariableID:9021:135776"
12658
12145
  }
12659
12146
  },
12660
- "scopes": [
12661
- "ALL_SCOPES"
12662
- ],
12147
+ "scopes": ["ALL_SCOPES"],
12663
12148
  "description": "",
12664
12149
  "hiddenFromPublishing": false
12665
12150
  },
@@ -12677,9 +12162,7 @@
12677
12162
  "id": "VariableID:9021:135780"
12678
12163
  }
12679
12164
  },
12680
- "scopes": [
12681
- "ALL_SCOPES"
12682
- ],
12165
+ "scopes": ["ALL_SCOPES"],
12683
12166
  "description": "",
12684
12167
  "hiddenFromPublishing": false
12685
12168
  },
@@ -12697,9 +12180,7 @@
12697
12180
  "id": "VariableID:3:79"
12698
12181
  }
12699
12182
  },
12700
- "scopes": [
12701
- "ALL_SCOPES"
12702
- ],
12183
+ "scopes": ["ALL_SCOPES"],
12703
12184
  "description": "",
12704
12185
  "hiddenFromPublishing": false
12705
12186
  },
@@ -12717,9 +12198,7 @@
12717
12198
  "id": "VariableID:3:81"
12718
12199
  }
12719
12200
  },
12720
- "scopes": [
12721
- "ALL_SCOPES"
12722
- ],
12201
+ "scopes": ["ALL_SCOPES"],
12723
12202
  "description": "",
12724
12203
  "hiddenFromPublishing": false
12725
12204
  },
@@ -12737,9 +12216,7 @@
12737
12216
  "id": "VariableID:3:83"
12738
12217
  }
12739
12218
  },
12740
- "scopes": [
12741
- "ALL_SCOPES"
12742
- ],
12219
+ "scopes": ["ALL_SCOPES"],
12743
12220
  "description": "",
12744
12221
  "hiddenFromPublishing": false
12745
12222
  },
@@ -12757,9 +12234,7 @@
12757
12234
  "id": "VariableID:3:97"
12758
12235
  }
12759
12236
  },
12760
- "scopes": [
12761
- "ALL_SCOPES"
12762
- ],
12237
+ "scopes": ["ALL_SCOPES"],
12763
12238
  "description": "",
12764
12239
  "hiddenFromPublishing": false
12765
12240
  },
@@ -12777,9 +12252,7 @@
12777
12252
  "id": "VariableID:3:91"
12778
12253
  }
12779
12254
  },
12780
- "scopes": [
12781
- "ALL_SCOPES"
12782
- ],
12255
+ "scopes": ["ALL_SCOPES"],
12783
12256
  "description": "",
12784
12257
  "hiddenFromPublishing": false
12785
12258
  },
@@ -12797,9 +12270,7 @@
12797
12270
  "id": "VariableID:1:149"
12798
12271
  }
12799
12272
  },
12800
- "scopes": [
12801
- "ALL_SCOPES"
12802
- ],
12273
+ "scopes": ["ALL_SCOPES"],
12803
12274
  "description": "",
12804
12275
  "hiddenFromPublishing": false
12805
12276
  },
@@ -12821,9 +12292,7 @@
12821
12292
  "a": 0.8999999761581421
12822
12293
  }
12823
12294
  },
12824
- "scopes": [
12825
- "ALL_SCOPES"
12826
- ],
12295
+ "scopes": ["ALL_SCOPES"],
12827
12296
  "description": "",
12828
12297
  "hiddenFromPublishing": false
12829
12298
  },
@@ -12845,9 +12314,7 @@
12845
12314
  "a": 0.800000011920929
12846
12315
  }
12847
12316
  },
12848
- "scopes": [
12849
- "ALL_SCOPES"
12850
- ],
12317
+ "scopes": ["ALL_SCOPES"],
12851
12318
  "description": "",
12852
12319
  "hiddenFromPublishing": false
12853
12320
  },
@@ -12869,9 +12336,7 @@
12869
12336
  "a": 0.699999988079071
12870
12337
  }
12871
12338
  },
12872
- "scopes": [
12873
- "ALL_SCOPES"
12874
- ],
12339
+ "scopes": ["ALL_SCOPES"],
12875
12340
  "description": "",
12876
12341
  "hiddenFromPublishing": false
12877
12342
  },
@@ -12893,9 +12358,7 @@
12893
12358
  "a": 0.6000000238418579
12894
12359
  }
12895
12360
  },
12896
- "scopes": [
12897
- "ALL_SCOPES"
12898
- ],
12361
+ "scopes": ["ALL_SCOPES"],
12899
12362
  "description": "",
12900
12363
  "hiddenFromPublishing": false
12901
12364
  },
@@ -12917,9 +12380,7 @@
12917
12380
  "a": 0.5
12918
12381
  }
12919
12382
  },
12920
- "scopes": [
12921
- "ALL_SCOPES"
12922
- ],
12383
+ "scopes": ["ALL_SCOPES"],
12923
12384
  "description": "",
12924
12385
  "hiddenFromPublishing": false
12925
12386
  },
@@ -12941,9 +12402,7 @@
12941
12402
  "a": 0.4000000059604645
12942
12403
  }
12943
12404
  },
12944
- "scopes": [
12945
- "ALL_SCOPES"
12946
- ],
12405
+ "scopes": ["ALL_SCOPES"],
12947
12406
  "description": "",
12948
12407
  "hiddenFromPublishing": false
12949
12408
  },
@@ -12965,9 +12424,7 @@
12965
12424
  "a": 0.30000001192092896
12966
12425
  }
12967
12426
  },
12968
- "scopes": [
12969
- "ALL_SCOPES"
12970
- ],
12427
+ "scopes": ["ALL_SCOPES"],
12971
12428
  "description": "",
12972
12429
  "hiddenFromPublishing": false
12973
12430
  },
@@ -12989,9 +12446,7 @@
12989
12446
  "a": 0.20000000298023224
12990
12447
  }
12991
12448
  },
12992
- "scopes": [
12993
- "ALL_SCOPES"
12994
- ],
12449
+ "scopes": ["ALL_SCOPES"],
12995
12450
  "description": "",
12996
12451
  "hiddenFromPublishing": false
12997
12452
  },
@@ -13013,9 +12468,7 @@
13013
12468
  "a": 0.10000000149011612
13014
12469
  }
13015
12470
  },
13016
- "scopes": [
13017
- "ALL_SCOPES"
13018
- ],
12471
+ "scopes": ["ALL_SCOPES"],
13019
12472
  "description": "",
13020
12473
  "hiddenFromPublishing": false
13021
12474
  },
@@ -13033,9 +12486,7 @@
13033
12486
  "id": "VariableID:3:85"
13034
12487
  }
13035
12488
  },
13036
- "scopes": [
13037
- "ALL_SCOPES"
13038
- ],
12489
+ "scopes": ["ALL_SCOPES"],
13039
12490
  "description": "",
13040
12491
  "hiddenFromPublishing": false
13041
12492
  },
@@ -13053,9 +12504,7 @@
13053
12504
  "id": "VariableID:9417:148852"
13054
12505
  }
13055
12506
  },
13056
- "scopes": [
13057
- "ALL_SCOPES"
13058
- ],
12507
+ "scopes": ["ALL_SCOPES"],
13059
12508
  "description": "",
13060
12509
  "hiddenFromPublishing": false
13061
12510
  },
@@ -13073,9 +12522,7 @@
13073
12522
  "id": "VariableID:9417:148854"
13074
12523
  }
13075
12524
  },
13076
- "scopes": [
13077
- "ALL_SCOPES"
13078
- ],
12525
+ "scopes": ["ALL_SCOPES"],
13079
12526
  "description": "",
13080
12527
  "hiddenFromPublishing": false
13081
12528
  },
@@ -13093,9 +12540,7 @@
13093
12540
  "id": "VariableID:9417:148896"
13094
12541
  }
13095
12542
  },
13096
- "scopes": [
13097
- "ALL_SCOPES"
13098
- ],
12543
+ "scopes": ["ALL_SCOPES"],
13099
12544
  "description": "",
13100
12545
  "hiddenFromPublishing": false
13101
12546
  },
@@ -13113,9 +12558,7 @@
13113
12558
  "id": "VariableID:9417:148856"
13114
12559
  }
13115
12560
  },
13116
- "scopes": [
13117
- "ALL_SCOPES"
13118
- ],
12561
+ "scopes": ["ALL_SCOPES"],
13119
12562
  "description": "",
13120
12563
  "hiddenFromPublishing": false
13121
12564
  },
@@ -13133,9 +12576,7 @@
13133
12576
  "id": "VariableID:9417:148858"
13134
12577
  }
13135
12578
  },
13136
- "scopes": [
13137
- "ALL_SCOPES"
13138
- ],
12579
+ "scopes": ["ALL_SCOPES"],
13139
12580
  "description": "",
13140
12581
  "hiddenFromPublishing": false
13141
12582
  },
@@ -13153,9 +12594,7 @@
13153
12594
  "id": "VariableID:9417:148860"
13154
12595
  }
13155
12596
  },
13156
- "scopes": [
13157
- "ALL_SCOPES"
13158
- ],
12597
+ "scopes": ["ALL_SCOPES"],
13159
12598
  "description": "",
13160
12599
  "hiddenFromPublishing": false
13161
12600
  },
@@ -13173,9 +12612,7 @@
13173
12612
  "id": "VariableID:9417:148862"
13174
12613
  }
13175
12614
  },
13176
- "scopes": [
13177
- "ALL_SCOPES"
13178
- ],
12615
+ "scopes": ["ALL_SCOPES"],
13179
12616
  "description": "",
13180
12617
  "hiddenFromPublishing": false
13181
12618
  },
@@ -13193,9 +12630,7 @@
13193
12630
  "id": "VariableID:9417:148898"
13194
12631
  }
13195
12632
  },
13196
- "scopes": [
13197
- "ALL_SCOPES"
13198
- ],
12633
+ "scopes": ["ALL_SCOPES"],
13199
12634
  "description": "",
13200
12635
  "hiddenFromPublishing": false
13201
12636
  },
@@ -13213,9 +12648,7 @@
13213
12648
  "id": "VariableID:9417:148864"
13214
12649
  }
13215
12650
  },
13216
- "scopes": [
13217
- "ALL_SCOPES"
13218
- ],
12651
+ "scopes": ["ALL_SCOPES"],
13219
12652
  "description": "",
13220
12653
  "hiddenFromPublishing": false
13221
12654
  },
@@ -13233,9 +12666,7 @@
13233
12666
  "id": "VariableID:9417:148888"
13234
12667
  }
13235
12668
  },
13236
- "scopes": [
13237
- "ALL_SCOPES"
13238
- ],
12669
+ "scopes": ["ALL_SCOPES"],
13239
12670
  "description": "",
13240
12671
  "hiddenFromPublishing": false
13241
12672
  },
@@ -13253,9 +12684,7 @@
13253
12684
  "id": "VariableID:9417:148866"
13254
12685
  }
13255
12686
  },
13256
- "scopes": [
13257
- "ALL_SCOPES"
13258
- ],
12687
+ "scopes": ["ALL_SCOPES"],
13259
12688
  "description": "",
13260
12689
  "hiddenFromPublishing": false
13261
12690
  },
@@ -13273,9 +12702,7 @@
13273
12702
  "id": "VariableID:9417:148868"
13274
12703
  }
13275
12704
  },
13276
- "scopes": [
13277
- "ALL_SCOPES"
13278
- ],
12705
+ "scopes": ["ALL_SCOPES"],
13279
12706
  "description": "",
13280
12707
  "hiddenFromPublishing": false
13281
12708
  },
@@ -13293,9 +12720,7 @@
13293
12720
  "id": "VariableID:9417:148870"
13294
12721
  }
13295
12722
  },
13296
- "scopes": [
13297
- "ALL_SCOPES"
13298
- ],
12723
+ "scopes": ["ALL_SCOPES"],
13299
12724
  "description": "",
13300
12725
  "hiddenFromPublishing": false
13301
12726
  },
@@ -13313,9 +12738,7 @@
13313
12738
  "id": "VariableID:9417:148886"
13314
12739
  }
13315
12740
  },
13316
- "scopes": [
13317
- "ALL_SCOPES"
13318
- ],
12741
+ "scopes": ["ALL_SCOPES"],
13319
12742
  "description": "",
13320
12743
  "hiddenFromPublishing": false
13321
12744
  },
@@ -13333,9 +12756,7 @@
13333
12756
  "id": "VariableID:9417:148894"
13334
12757
  }
13335
12758
  },
13336
- "scopes": [
13337
- "ALL_SCOPES"
13338
- ],
12759
+ "scopes": ["ALL_SCOPES"],
13339
12760
  "description": "",
13340
12761
  "hiddenFromPublishing": false
13341
12762
  },
@@ -13353,9 +12774,7 @@
13353
12774
  "id": "VariableID:9417:148872"
13354
12775
  }
13355
12776
  },
13356
- "scopes": [
13357
- "ALL_SCOPES"
13358
- ],
12777
+ "scopes": ["ALL_SCOPES"],
13359
12778
  "description": "",
13360
12779
  "hiddenFromPublishing": false
13361
12780
  },
@@ -13373,9 +12792,7 @@
13373
12792
  "id": "VariableID:9417:148874"
13374
12793
  }
13375
12794
  },
13376
- "scopes": [
13377
- "ALL_SCOPES"
13378
- ],
12795
+ "scopes": ["ALL_SCOPES"],
13379
12796
  "description": "",
13380
12797
  "hiddenFromPublishing": false
13381
12798
  },
@@ -13393,9 +12810,7 @@
13393
12810
  "id": "VariableID:9417:148884"
13394
12811
  }
13395
12812
  },
13396
- "scopes": [
13397
- "ALL_SCOPES"
13398
- ],
12813
+ "scopes": ["ALL_SCOPES"],
13399
12814
  "description": "",
13400
12815
  "hiddenFromPublishing": false
13401
12816
  },
@@ -13413,9 +12828,7 @@
13413
12828
  "id": "VariableID:9417:148876"
13414
12829
  }
13415
12830
  },
13416
- "scopes": [
13417
- "ALL_SCOPES"
13418
- ],
12831
+ "scopes": ["ALL_SCOPES"],
13419
12832
  "description": "",
13420
12833
  "hiddenFromPublishing": false
13421
12834
  },
@@ -13433,9 +12846,7 @@
13433
12846
  "id": "VariableID:9417:148890"
13434
12847
  }
13435
12848
  },
13436
- "scopes": [
13437
- "ALL_SCOPES"
13438
- ],
12849
+ "scopes": ["ALL_SCOPES"],
13439
12850
  "description": "",
13440
12851
  "hiddenFromPublishing": false
13441
12852
  },
@@ -13453,9 +12864,7 @@
13453
12864
  "id": "VariableID:9417:148878"
13454
12865
  }
13455
12866
  },
13456
- "scopes": [
13457
- "ALL_SCOPES"
13458
- ],
12867
+ "scopes": ["ALL_SCOPES"],
13459
12868
  "description": "",
13460
12869
  "hiddenFromPublishing": false
13461
12870
  },
@@ -13473,9 +12882,7 @@
13473
12882
  "id": "VariableID:9417:148880"
13474
12883
  }
13475
12884
  },
13476
- "scopes": [
13477
- "ALL_SCOPES"
13478
- ],
12885
+ "scopes": ["ALL_SCOPES"],
13479
12886
  "description": "",
13480
12887
  "hiddenFromPublishing": false
13481
12888
  },
@@ -13493,9 +12900,7 @@
13493
12900
  "id": "VariableID:9417:148882"
13494
12901
  }
13495
12902
  },
13496
- "scopes": [
13497
- "ALL_SCOPES"
13498
- ],
12903
+ "scopes": ["ALL_SCOPES"],
13499
12904
  "description": "",
13500
12905
  "hiddenFromPublishing": false
13501
12906
  },
@@ -13513,9 +12918,7 @@
13513
12918
  "id": "VariableID:9417:148892"
13514
12919
  }
13515
12920
  },
13516
- "scopes": [
13517
- "ALL_SCOPES"
13518
- ],
12921
+ "scopes": ["ALL_SCOPES"],
13519
12922
  "description": "",
13520
12923
  "hiddenFromPublishing": false
13521
12924
  },
@@ -13537,9 +12940,7 @@
13537
12940
  "a": 0.800000011920929
13538
12941
  }
13539
12942
  },
13540
- "scopes": [
13541
- "ALL_SCOPES"
13542
- ],
12943
+ "scopes": ["ALL_SCOPES"],
13543
12944
  "description": "",
13544
12945
  "hiddenFromPublishing": false
13545
12946
  },
@@ -13557,9 +12958,7 @@
13557
12958
  "id": "VariableID:3:87"
13558
12959
  }
13559
12960
  },
13560
- "scopes": [
13561
- "ALL_SCOPES"
13562
- ],
12961
+ "scopes": ["ALL_SCOPES"],
13563
12962
  "description": "",
13564
12963
  "hiddenFromPublishing": false
13565
12964
  },
@@ -13577,9 +12976,7 @@
13577
12976
  "id": "VariableID:9052:130134"
13578
12977
  }
13579
12978
  },
13580
- "scopes": [
13581
- "ALL_SCOPES"
13582
- ],
12979
+ "scopes": ["ALL_SCOPES"],
13583
12980
  "description": "",
13584
12981
  "hiddenFromPublishing": false
13585
12982
  },
@@ -13597,9 +12994,7 @@
13597
12994
  "id": "VariableID:9052:130136"
13598
12995
  }
13599
12996
  },
13600
- "scopes": [
13601
- "ALL_SCOPES"
13602
- ],
12997
+ "scopes": ["ALL_SCOPES"],
13603
12998
  "description": "",
13604
12999
  "hiddenFromPublishing": false
13605
13000
  },
@@ -13617,9 +13012,7 @@
13617
13012
  "id": "VariableID:9052:130138"
13618
13013
  }
13619
13014
  },
13620
- "scopes": [
13621
- "ALL_SCOPES"
13622
- ],
13015
+ "scopes": ["ALL_SCOPES"],
13623
13016
  "description": "",
13624
13017
  "hiddenFromPublishing": false
13625
13018
  },
@@ -13637,9 +13030,7 @@
13637
13030
  "id": "VariableID:9053:130140"
13638
13031
  }
13639
13032
  },
13640
- "scopes": [
13641
- "ALL_SCOPES"
13642
- ],
13033
+ "scopes": ["ALL_SCOPES"],
13643
13034
  "description": "",
13644
13035
  "hiddenFromPublishing": false
13645
13036
  },
@@ -13657,9 +13048,7 @@
13657
13048
  "id": "VariableID:9053:130142"
13658
13049
  }
13659
13050
  },
13660
- "scopes": [
13661
- "ALL_SCOPES"
13662
- ],
13051
+ "scopes": ["ALL_SCOPES"],
13663
13052
  "description": "",
13664
13053
  "hiddenFromPublishing": false
13665
13054
  },
@@ -13677,9 +13066,7 @@
13677
13066
  "id": "VariableID:9053:130144"
13678
13067
  }
13679
13068
  },
13680
- "scopes": [
13681
- "ALL_SCOPES"
13682
- ],
13069
+ "scopes": ["ALL_SCOPES"],
13683
13070
  "description": "",
13684
13071
  "hiddenFromPublishing": false
13685
13072
  },
@@ -13697,9 +13084,7 @@
13697
13084
  "id": "VariableID:9054:130146"
13698
13085
  }
13699
13086
  },
13700
- "scopes": [
13701
- "ALL_SCOPES"
13702
- ],
13087
+ "scopes": ["ALL_SCOPES"],
13703
13088
  "description": "",
13704
13089
  "hiddenFromPublishing": false
13705
13090
  },
@@ -13717,9 +13102,7 @@
13717
13102
  "id": "VariableID:9054:130148"
13718
13103
  }
13719
13104
  },
13720
- "scopes": [
13721
- "ALL_SCOPES"
13722
- ],
13105
+ "scopes": ["ALL_SCOPES"],
13723
13106
  "description": "",
13724
13107
  "hiddenFromPublishing": false
13725
13108
  },
@@ -13737,9 +13120,7 @@
13737
13120
  "id": "VariableID:9054:130150"
13738
13121
  }
13739
13122
  },
13740
- "scopes": [
13741
- "ALL_SCOPES"
13742
- ],
13123
+ "scopes": ["ALL_SCOPES"],
13743
13124
  "description": "",
13744
13125
  "hiddenFromPublishing": false
13745
13126
  },
@@ -13757,9 +13138,7 @@
13757
13138
  "id": "VariableID:9054:130152"
13758
13139
  }
13759
13140
  },
13760
- "scopes": [
13761
- "ALL_SCOPES"
13762
- ],
13141
+ "scopes": ["ALL_SCOPES"],
13763
13142
  "description": "",
13764
13143
  "hiddenFromPublishing": false
13765
13144
  },
@@ -13777,9 +13156,7 @@
13777
13156
  "id": "VariableID:9054:130154"
13778
13157
  }
13779
13158
  },
13780
- "scopes": [
13781
- "ALL_SCOPES"
13782
- ],
13159
+ "scopes": ["ALL_SCOPES"],
13783
13160
  "description": "",
13784
13161
  "hiddenFromPublishing": false
13785
13162
  },
@@ -13797,9 +13174,7 @@
13797
13174
  "id": "VariableID:9054:130156"
13798
13175
  }
13799
13176
  },
13800
- "scopes": [
13801
- "ALL_SCOPES"
13802
- ],
13177
+ "scopes": ["ALL_SCOPES"],
13803
13178
  "description": "",
13804
13179
  "hiddenFromPublishing": false
13805
13180
  },
@@ -13817,9 +13192,7 @@
13817
13192
  "id": "VariableID:9054:130158"
13818
13193
  }
13819
13194
  },
13820
- "scopes": [
13821
- "ALL_SCOPES"
13822
- ],
13195
+ "scopes": ["ALL_SCOPES"],
13823
13196
  "description": "",
13824
13197
  "hiddenFromPublishing": false
13825
13198
  },
@@ -13837,9 +13210,7 @@
13837
13210
  "id": "VariableID:9054:130160"
13838
13211
  }
13839
13212
  },
13840
- "scopes": [
13841
- "ALL_SCOPES"
13842
- ],
13213
+ "scopes": ["ALL_SCOPES"],
13843
13214
  "description": "",
13844
13215
  "hiddenFromPublishing": false
13845
13216
  },
@@ -13857,9 +13228,7 @@
13857
13228
  "id": "VariableID:9054:130162"
13858
13229
  }
13859
13230
  },
13860
- "scopes": [
13861
- "ALL_SCOPES"
13862
- ],
13231
+ "scopes": ["ALL_SCOPES"],
13863
13232
  "description": "",
13864
13233
  "hiddenFromPublishing": false
13865
13234
  },
@@ -13877,9 +13246,7 @@
13877
13246
  "id": "VariableID:9054:130164"
13878
13247
  }
13879
13248
  },
13880
- "scopes": [
13881
- "ALL_SCOPES"
13882
- ],
13249
+ "scopes": ["ALL_SCOPES"],
13883
13250
  "description": "",
13884
13251
  "hiddenFromPublishing": false
13885
13252
  },
@@ -13897,9 +13264,7 @@
13897
13264
  "id": "VariableID:9054:130166"
13898
13265
  }
13899
13266
  },
13900
- "scopes": [
13901
- "ALL_SCOPES"
13902
- ],
13267
+ "scopes": ["ALL_SCOPES"],
13903
13268
  "description": "",
13904
13269
  "hiddenFromPublishing": false
13905
13270
  },
@@ -13917,9 +13282,7 @@
13917
13282
  "id": "VariableID:9054:130168"
13918
13283
  }
13919
13284
  },
13920
- "scopes": [
13921
- "ALL_SCOPES"
13922
- ],
13285
+ "scopes": ["ALL_SCOPES"],
13923
13286
  "description": "",
13924
13287
  "hiddenFromPublishing": false
13925
13288
  },
@@ -13937,9 +13300,7 @@
13937
13300
  "id": "VariableID:9054:130170"
13938
13301
  }
13939
13302
  },
13940
- "scopes": [
13941
- "ALL_SCOPES"
13942
- ],
13303
+ "scopes": ["ALL_SCOPES"],
13943
13304
  "description": "",
13944
13305
  "hiddenFromPublishing": false
13945
13306
  },
@@ -13957,9 +13318,7 @@
13957
13318
  "id": "VariableID:9054:130172"
13958
13319
  }
13959
13320
  },
13960
- "scopes": [
13961
- "ALL_SCOPES"
13962
- ],
13321
+ "scopes": ["ALL_SCOPES"],
13963
13322
  "description": "",
13964
13323
  "hiddenFromPublishing": false
13965
13324
  },
@@ -13977,9 +13336,7 @@
13977
13336
  "id": "VariableID:9054:130174"
13978
13337
  }
13979
13338
  },
13980
- "scopes": [
13981
- "ALL_SCOPES"
13982
- ],
13339
+ "scopes": ["ALL_SCOPES"],
13983
13340
  "description": "",
13984
13341
  "hiddenFromPublishing": false
13985
13342
  },
@@ -13997,9 +13354,7 @@
13997
13354
  "id": "VariableID:9054:130176"
13998
13355
  }
13999
13356
  },
14000
- "scopes": [
14001
- "ALL_SCOPES"
14002
- ],
13357
+ "scopes": ["ALL_SCOPES"],
14003
13358
  "description": "",
14004
13359
  "hiddenFromPublishing": false
14005
13360
  },
@@ -14017,9 +13372,7 @@
14017
13372
  "id": "VariableID:9054:130179"
14018
13373
  }
14019
13374
  },
14020
- "scopes": [
14021
- "ALL_SCOPES"
14022
- ],
13375
+ "scopes": ["ALL_SCOPES"],
14023
13376
  "description": "",
14024
13377
  "hiddenFromPublishing": false
14025
13378
  },
@@ -14037,9 +13390,7 @@
14037
13390
  "id": "VariableID:9054:130181"
14038
13391
  }
14039
13392
  },
14040
- "scopes": [
14041
- "ALL_SCOPES"
14042
- ],
13393
+ "scopes": ["ALL_SCOPES"],
14043
13394
  "description": "",
14044
13395
  "hiddenFromPublishing": false
14045
13396
  },
@@ -14057,9 +13408,7 @@
14057
13408
  "id": "VariableID:9054:130183"
14058
13409
  }
14059
13410
  },
14060
- "scopes": [
14061
- "ALL_SCOPES"
14062
- ],
13411
+ "scopes": ["ALL_SCOPES"],
14063
13412
  "description": "",
14064
13413
  "hiddenFromPublishing": false
14065
13414
  },
@@ -14077,9 +13426,7 @@
14077
13426
  "id": "VariableID:9639:47214"
14078
13427
  }
14079
13428
  },
14080
- "scopes": [
14081
- "ALL_SCOPES"
14082
- ],
13429
+ "scopes": ["ALL_SCOPES"],
14083
13430
  "description": "",
14084
13431
  "hiddenFromPublishing": false
14085
13432
  },
@@ -14097,9 +13444,7 @@
14097
13444
  "id": "VariableID:9639:47811"
14098
13445
  }
14099
13446
  },
14100
- "scopes": [
14101
- "ALL_SCOPES"
14102
- ],
13447
+ "scopes": ["ALL_SCOPES"],
14103
13448
  "description": "",
14104
13449
  "hiddenFromPublishing": false
14105
13450
  },
@@ -14117,9 +13462,7 @@
14117
13462
  "id": "VariableID:9639:47814"
14118
13463
  }
14119
13464
  },
14120
- "scopes": [
14121
- "ALL_SCOPES"
14122
- ],
13465
+ "scopes": ["ALL_SCOPES"],
14123
13466
  "description": "",
14124
13467
  "hiddenFromPublishing": false
14125
13468
  },
@@ -14137,9 +13480,7 @@
14137
13480
  "id": "VariableID:9639:47817"
14138
13481
  }
14139
13482
  },
14140
- "scopes": [
14141
- "ALL_SCOPES"
14142
- ],
13483
+ "scopes": ["ALL_SCOPES"],
14143
13484
  "description": "",
14144
13485
  "hiddenFromPublishing": false
14145
13486
  },
@@ -14157,9 +13498,7 @@
14157
13498
  "id": "VariableID:9639:47821"
14158
13499
  }
14159
13500
  },
14160
- "scopes": [
14161
- "ALL_SCOPES"
14162
- ],
13501
+ "scopes": ["ALL_SCOPES"],
14163
13502
  "description": "",
14164
13503
  "hiddenFromPublishing": false
14165
13504
  },
@@ -14177,9 +13516,7 @@
14177
13516
  "id": "VariableID:9639:47824"
14178
13517
  }
14179
13518
  },
14180
- "scopes": [
14181
- "ALL_SCOPES"
14182
- ],
13519
+ "scopes": ["ALL_SCOPES"],
14183
13520
  "description": "",
14184
13521
  "hiddenFromPublishing": false
14185
13522
  },
@@ -14197,9 +13534,7 @@
14197
13534
  "id": "VariableID:9639:47827"
14198
13535
  }
14199
13536
  },
14200
- "scopes": [
14201
- "ALL_SCOPES"
14202
- ],
13537
+ "scopes": ["ALL_SCOPES"],
14203
13538
  "description": "",
14204
13539
  "hiddenFromPublishing": false
14205
13540
  },
@@ -14217,9 +13552,7 @@
14217
13552
  "id": "VariableID:9880:2491"
14218
13553
  }
14219
13554
  },
14220
- "scopes": [
14221
- "ALL_SCOPES"
14222
- ],
13555
+ "scopes": ["ALL_SCOPES"],
14223
13556
  "description": "",
14224
13557
  "hiddenFromPublishing": false
14225
13558
  },
@@ -14237,9 +13570,7 @@
14237
13570
  "id": "VariableID:9880:2493"
14238
13571
  }
14239
13572
  },
14240
- "scopes": [
14241
- "ALL_SCOPES"
14242
- ],
13573
+ "scopes": ["ALL_SCOPES"],
14243
13574
  "description": "",
14244
13575
  "hiddenFromPublishing": false
14245
13576
  },
@@ -14257,9 +13588,7 @@
14257
13588
  "id": "VariableID:9880:2495"
14258
13589
  }
14259
13590
  },
14260
- "scopes": [
14261
- "ALL_SCOPES"
14262
- ],
13591
+ "scopes": ["ALL_SCOPES"],
14263
13592
  "description": "",
14264
13593
  "hiddenFromPublishing": false
14265
13594
  },
@@ -14277,9 +13606,7 @@
14277
13606
  "id": "VariableID:9880:2497"
14278
13607
  }
14279
13608
  },
14280
- "scopes": [
14281
- "ALL_SCOPES"
14282
- ],
13609
+ "scopes": ["ALL_SCOPES"],
14283
13610
  "description": "",
14284
13611
  "hiddenFromPublishing": false
14285
13612
  },
@@ -14297,9 +13624,7 @@
14297
13624
  "id": "VariableID:9880:2499"
14298
13625
  }
14299
13626
  },
14300
- "scopes": [
14301
- "ALL_SCOPES"
14302
- ],
13627
+ "scopes": ["ALL_SCOPES"],
14303
13628
  "description": "",
14304
13629
  "hiddenFromPublishing": false
14305
13630
  },
@@ -14317,9 +13642,7 @@
14317
13642
  "id": "VariableID:9880:2501"
14318
13643
  }
14319
13644
  },
14320
- "scopes": [
14321
- "ALL_SCOPES"
14322
- ],
13645
+ "scopes": ["ALL_SCOPES"],
14323
13646
  "description": "",
14324
13647
  "hiddenFromPublishing": false
14325
13648
  },
@@ -14337,9 +13660,7 @@
14337
13660
  "id": "VariableID:9880:2503"
14338
13661
  }
14339
13662
  },
14340
- "scopes": [
14341
- "ALL_SCOPES"
14342
- ],
13663
+ "scopes": ["ALL_SCOPES"],
14343
13664
  "description": "",
14344
13665
  "hiddenFromPublishing": false
14345
13666
  },
@@ -14357,9 +13678,7 @@
14357
13678
  "id": "VariableID:9928:2584"
14358
13679
  }
14359
13680
  },
14360
- "scopes": [
14361
- "ALL_SCOPES"
14362
- ],
13681
+ "scopes": ["ALL_SCOPES"],
14363
13682
  "description": "",
14364
13683
  "hiddenFromPublishing": false
14365
13684
  },
@@ -14377,9 +13696,7 @@
14377
13696
  "id": "VariableID:9675:151410"
14378
13697
  }
14379
13698
  },
14380
- "scopes": [
14381
- "ALL_SCOPES"
14382
- ],
13699
+ "scopes": ["ALL_SCOPES"],
14383
13700
  "description": "",
14384
13701
  "hiddenFromPublishing": false
14385
13702
  },
@@ -14397,9 +13714,7 @@
14397
13714
  "id": "VariableID:9675:151411"
14398
13715
  }
14399
13716
  },
14400
- "scopes": [
14401
- "ALL_SCOPES"
14402
- ],
13717
+ "scopes": ["ALL_SCOPES"],
14403
13718
  "description": "",
14404
13719
  "hiddenFromPublishing": false
14405
13720
  },
@@ -14417,9 +13732,7 @@
14417
13732
  "id": "VariableID:9675:151412"
14418
13733
  }
14419
13734
  },
14420
- "scopes": [
14421
- "ALL_SCOPES"
14422
- ],
13735
+ "scopes": ["ALL_SCOPES"],
14423
13736
  "description": "",
14424
13737
  "hiddenFromPublishing": false
14425
13738
  },
@@ -14437,12 +13750,10 @@
14437
13750
  "id": "VariableID:9675:151413"
14438
13751
  }
14439
13752
  },
14440
- "scopes": [
14441
- "ALL_SCOPES"
14442
- ],
13753
+ "scopes": ["ALL_SCOPES"],
14443
13754
  "description": "",
14444
13755
  "hiddenFromPublishing": false
14445
13756
  }
14446
13757
  ]
14447
13758
  }
14448
- ]
13759
+ ]