@foxglove/schemas 1.1.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/internal/schemas.d.ts +2 -0
  2. package/internal/schemas.d.ts.map +1 -1
  3. package/internal/schemas.js +59 -0
  4. package/internal/schemas.js.map +1 -1
  5. package/internal/schemas.ts +61 -0
  6. package/package.json +1 -1
  7. package/schemas/README.md +130 -0
  8. package/schemas/flatbuffer/FrameTransforms.fbs +13 -0
  9. package/schemas/flatbuffer/ImageAnnotations.fbs +4 -0
  10. package/schemas/flatbuffer/TextAnnotation.fbs +30 -0
  11. package/schemas/jsonschema/FrameTransforms.json +85 -0
  12. package/schemas/jsonschema/ImageAnnotations.json +96 -0
  13. package/schemas/jsonschema/TextAnnotation.json +93 -0
  14. package/schemas/jsonschema/index.d.ts +274 -0
  15. package/schemas/jsonschema/index.d.ts.map +1 -1
  16. package/schemas/jsonschema/index.js +275 -1
  17. package/schemas/jsonschema/index.js.map +1 -1
  18. package/schemas/jsonschema/index.ts +276 -0
  19. package/schemas/proto/foxglove/FrameTransforms.proto +13 -0
  20. package/schemas/proto/foxglove/ImageAnnotations.proto +4 -0
  21. package/schemas/proto/foxglove/TextAnnotation.proto +30 -0
  22. package/schemas/ros1/FrameTransforms.msg +7 -0
  23. package/schemas/ros1/ImageAnnotations.msg +3 -0
  24. package/schemas/ros1/TextAnnotation.msg +22 -0
  25. package/schemas/ros2/FrameTransforms.msg +7 -0
  26. package/schemas/ros2/ImageAnnotations.msg +3 -0
  27. package/schemas/ros2/TextAnnotation.msg +22 -0
  28. package/schemas/typescript/FrameTransforms.d.ts +7 -0
  29. package/schemas/typescript/FrameTransforms.d.ts.map +1 -0
  30. package/schemas/typescript/FrameTransforms.js +4 -0
  31. package/schemas/typescript/FrameTransforms.js.map +1 -0
  32. package/schemas/typescript/FrameTransforms.ts +9 -0
  33. package/schemas/typescript/ImageAnnotations.d.ts +3 -0
  34. package/schemas/typescript/ImageAnnotations.d.ts.map +1 -1
  35. package/schemas/typescript/ImageAnnotations.ts +4 -0
  36. package/schemas/typescript/TextAnnotation.d.ts +19 -0
  37. package/schemas/typescript/TextAnnotation.d.ts.map +1 -0
  38. package/schemas/typescript/TextAnnotation.js +4 -0
  39. package/schemas/typescript/TextAnnotation.js.map +1 -0
  40. package/schemas/typescript/TextAnnotation.ts +26 -0
  41. package/schemas/typescript/index.d.ts +2 -0
  42. package/schemas/typescript/index.d.ts.map +1 -1
  43. package/schemas/typescript/index.js +2 -0
  44. package/schemas/typescript/index.js.map +1 -1
  45. package/schemas/typescript/index.ts +2 -0
@@ -252,6 +252,102 @@
252
252
  }
253
253
  },
254
254
  "description": "Points annotations"
255
+ },
256
+ "texts": {
257
+ "type": "array",
258
+ "items": {
259
+ "title": "foxglove.TextAnnotation",
260
+ "description": "A text label on a 2D image",
261
+ "type": "object",
262
+ "properties": {
263
+ "timestamp": {
264
+ "type": "object",
265
+ "title": "time",
266
+ "properties": {
267
+ "sec": {
268
+ "type": "integer",
269
+ "minimum": 0
270
+ },
271
+ "nsec": {
272
+ "type": "integer",
273
+ "minimum": 0,
274
+ "maximum": 999999999
275
+ }
276
+ },
277
+ "description": "Timestamp of annotation"
278
+ },
279
+ "position": {
280
+ "title": "foxglove.Point2",
281
+ "description": "Bottom-left origin of the text label in 2D image coordinates (pixels)",
282
+ "type": "object",
283
+ "properties": {
284
+ "x": {
285
+ "type": "number",
286
+ "description": "x coordinate position"
287
+ },
288
+ "y": {
289
+ "type": "number",
290
+ "description": "y coordinate position"
291
+ }
292
+ }
293
+ },
294
+ "text": {
295
+ "type": "string",
296
+ "description": "Text to display"
297
+ },
298
+ "font_size": {
299
+ "type": "number",
300
+ "description": "Font size in pixels"
301
+ },
302
+ "text_color": {
303
+ "title": "foxglove.Color",
304
+ "description": "Text color",
305
+ "type": "object",
306
+ "properties": {
307
+ "r": {
308
+ "type": "number",
309
+ "description": "Red value between 0 and 1"
310
+ },
311
+ "g": {
312
+ "type": "number",
313
+ "description": "Green value between 0 and 1"
314
+ },
315
+ "b": {
316
+ "type": "number",
317
+ "description": "Blue value between 0 and 1"
318
+ },
319
+ "a": {
320
+ "type": "number",
321
+ "description": "Alpha value between 0 and 1"
322
+ }
323
+ }
324
+ },
325
+ "background_color": {
326
+ "title": "foxglove.Color",
327
+ "description": "Background fill color",
328
+ "type": "object",
329
+ "properties": {
330
+ "r": {
331
+ "type": "number",
332
+ "description": "Red value between 0 and 1"
333
+ },
334
+ "g": {
335
+ "type": "number",
336
+ "description": "Green value between 0 and 1"
337
+ },
338
+ "b": {
339
+ "type": "number",
340
+ "description": "Blue value between 0 and 1"
341
+ },
342
+ "a": {
343
+ "type": "number",
344
+ "description": "Alpha value between 0 and 1"
345
+ }
346
+ }
347
+ }
348
+ }
349
+ },
350
+ "description": "Text annotations"
255
351
  }
256
352
  }
257
353
  }
@@ -0,0 +1,93 @@
1
+ {
2
+ "title": "foxglove.TextAnnotation",
3
+ "description": "A text label on a 2D image",
4
+ "$comment": "Generated by https://github.com/foxglove/schemas",
5
+ "type": "object",
6
+ "properties": {
7
+ "timestamp": {
8
+ "type": "object",
9
+ "title": "time",
10
+ "properties": {
11
+ "sec": {
12
+ "type": "integer",
13
+ "minimum": 0
14
+ },
15
+ "nsec": {
16
+ "type": "integer",
17
+ "minimum": 0,
18
+ "maximum": 999999999
19
+ }
20
+ },
21
+ "description": "Timestamp of annotation"
22
+ },
23
+ "position": {
24
+ "title": "foxglove.Point2",
25
+ "description": "Bottom-left origin of the text label in 2D image coordinates (pixels)",
26
+ "type": "object",
27
+ "properties": {
28
+ "x": {
29
+ "type": "number",
30
+ "description": "x coordinate position"
31
+ },
32
+ "y": {
33
+ "type": "number",
34
+ "description": "y coordinate position"
35
+ }
36
+ }
37
+ },
38
+ "text": {
39
+ "type": "string",
40
+ "description": "Text to display"
41
+ },
42
+ "font_size": {
43
+ "type": "number",
44
+ "description": "Font size in pixels"
45
+ },
46
+ "text_color": {
47
+ "title": "foxglove.Color",
48
+ "description": "Text color",
49
+ "type": "object",
50
+ "properties": {
51
+ "r": {
52
+ "type": "number",
53
+ "description": "Red value between 0 and 1"
54
+ },
55
+ "g": {
56
+ "type": "number",
57
+ "description": "Green value between 0 and 1"
58
+ },
59
+ "b": {
60
+ "type": "number",
61
+ "description": "Blue value between 0 and 1"
62
+ },
63
+ "a": {
64
+ "type": "number",
65
+ "description": "Alpha value between 0 and 1"
66
+ }
67
+ }
68
+ },
69
+ "background_color": {
70
+ "title": "foxglove.Color",
71
+ "description": "Background fill color",
72
+ "type": "object",
73
+ "properties": {
74
+ "r": {
75
+ "type": "number",
76
+ "description": "Red value between 0 and 1"
77
+ },
78
+ "g": {
79
+ "type": "number",
80
+ "description": "Green value between 0 and 1"
81
+ },
82
+ "b": {
83
+ "type": "number",
84
+ "description": "Blue value between 0 and 1"
85
+ },
86
+ "a": {
87
+ "type": "number",
88
+ "description": "Alpha value between 0 and 1"
89
+ }
90
+ }
91
+ }
92
+ }
93
+ }
@@ -604,6 +604,91 @@ export declare const FrameTransform: {
604
604
  };
605
605
  };
606
606
  };
607
+ export declare const FrameTransforms: {
608
+ title: string;
609
+ description: string;
610
+ $comment: string;
611
+ type: string;
612
+ properties: {
613
+ transforms: {
614
+ type: string;
615
+ items: {
616
+ title: string;
617
+ description: string;
618
+ type: string;
619
+ properties: {
620
+ timestamp: {
621
+ type: string;
622
+ title: string;
623
+ properties: {
624
+ sec: {
625
+ type: string;
626
+ minimum: number;
627
+ };
628
+ nsec: {
629
+ type: string;
630
+ minimum: number;
631
+ maximum: number;
632
+ };
633
+ };
634
+ description: string;
635
+ };
636
+ parent_frame_id: {
637
+ type: string;
638
+ description: string;
639
+ };
640
+ child_frame_id: {
641
+ type: string;
642
+ description: string;
643
+ };
644
+ translation: {
645
+ title: string;
646
+ description: string;
647
+ type: string;
648
+ properties: {
649
+ x: {
650
+ type: string;
651
+ description: string;
652
+ };
653
+ y: {
654
+ type: string;
655
+ description: string;
656
+ };
657
+ z: {
658
+ type: string;
659
+ description: string;
660
+ };
661
+ };
662
+ };
663
+ rotation: {
664
+ title: string;
665
+ description: string;
666
+ type: string;
667
+ properties: {
668
+ x: {
669
+ type: string;
670
+ description: string;
671
+ };
672
+ y: {
673
+ type: string;
674
+ description: string;
675
+ };
676
+ z: {
677
+ type: string;
678
+ description: string;
679
+ };
680
+ w: {
681
+ type: string;
682
+ description: string;
683
+ };
684
+ };
685
+ };
686
+ };
687
+ };
688
+ description: string;
689
+ };
690
+ };
691
+ };
607
692
  export declare const GeoJSON: {
608
693
  title: string;
609
694
  description: string;
@@ -994,6 +1079,102 @@ export declare const ImageAnnotations: {
994
1079
  };
995
1080
  description: string;
996
1081
  };
1082
+ texts: {
1083
+ type: string;
1084
+ items: {
1085
+ title: string;
1086
+ description: string;
1087
+ type: string;
1088
+ properties: {
1089
+ timestamp: {
1090
+ type: string;
1091
+ title: string;
1092
+ properties: {
1093
+ sec: {
1094
+ type: string;
1095
+ minimum: number;
1096
+ };
1097
+ nsec: {
1098
+ type: string;
1099
+ minimum: number;
1100
+ maximum: number;
1101
+ };
1102
+ };
1103
+ description: string;
1104
+ };
1105
+ position: {
1106
+ title: string;
1107
+ description: string;
1108
+ type: string;
1109
+ properties: {
1110
+ x: {
1111
+ type: string;
1112
+ description: string;
1113
+ };
1114
+ y: {
1115
+ type: string;
1116
+ description: string;
1117
+ };
1118
+ };
1119
+ };
1120
+ text: {
1121
+ type: string;
1122
+ description: string;
1123
+ };
1124
+ font_size: {
1125
+ type: string;
1126
+ description: string;
1127
+ };
1128
+ text_color: {
1129
+ title: string;
1130
+ description: string;
1131
+ type: string;
1132
+ properties: {
1133
+ r: {
1134
+ type: string;
1135
+ description: string;
1136
+ };
1137
+ g: {
1138
+ type: string;
1139
+ description: string;
1140
+ };
1141
+ b: {
1142
+ type: string;
1143
+ description: string;
1144
+ };
1145
+ a: {
1146
+ type: string;
1147
+ description: string;
1148
+ };
1149
+ };
1150
+ };
1151
+ background_color: {
1152
+ title: string;
1153
+ description: string;
1154
+ type: string;
1155
+ properties: {
1156
+ r: {
1157
+ type: string;
1158
+ description: string;
1159
+ };
1160
+ g: {
1161
+ type: string;
1162
+ description: string;
1163
+ };
1164
+ b: {
1165
+ type: string;
1166
+ description: string;
1167
+ };
1168
+ a: {
1169
+ type: string;
1170
+ description: string;
1171
+ };
1172
+ };
1173
+ };
1174
+ };
1175
+ };
1176
+ description: string;
1177
+ };
997
1178
  };
998
1179
  };
999
1180
  export declare const KeyValuePair: {
@@ -4248,6 +4429,99 @@ export declare const SpherePrimitive: {
4248
4429
  };
4249
4430
  };
4250
4431
  };
4432
+ export declare const TextAnnotation: {
4433
+ title: string;
4434
+ description: string;
4435
+ $comment: string;
4436
+ type: string;
4437
+ properties: {
4438
+ timestamp: {
4439
+ type: string;
4440
+ title: string;
4441
+ properties: {
4442
+ sec: {
4443
+ type: string;
4444
+ minimum: number;
4445
+ };
4446
+ nsec: {
4447
+ type: string;
4448
+ minimum: number;
4449
+ maximum: number;
4450
+ };
4451
+ };
4452
+ description: string;
4453
+ };
4454
+ position: {
4455
+ title: string;
4456
+ description: string;
4457
+ type: string;
4458
+ properties: {
4459
+ x: {
4460
+ type: string;
4461
+ description: string;
4462
+ };
4463
+ y: {
4464
+ type: string;
4465
+ description: string;
4466
+ };
4467
+ };
4468
+ };
4469
+ text: {
4470
+ type: string;
4471
+ description: string;
4472
+ };
4473
+ font_size: {
4474
+ type: string;
4475
+ description: string;
4476
+ };
4477
+ text_color: {
4478
+ title: string;
4479
+ description: string;
4480
+ type: string;
4481
+ properties: {
4482
+ r: {
4483
+ type: string;
4484
+ description: string;
4485
+ };
4486
+ g: {
4487
+ type: string;
4488
+ description: string;
4489
+ };
4490
+ b: {
4491
+ type: string;
4492
+ description: string;
4493
+ };
4494
+ a: {
4495
+ type: string;
4496
+ description: string;
4497
+ };
4498
+ };
4499
+ };
4500
+ background_color: {
4501
+ title: string;
4502
+ description: string;
4503
+ type: string;
4504
+ properties: {
4505
+ r: {
4506
+ type: string;
4507
+ description: string;
4508
+ };
4509
+ g: {
4510
+ type: string;
4511
+ description: string;
4512
+ };
4513
+ b: {
4514
+ type: string;
4515
+ description: string;
4516
+ };
4517
+ a: {
4518
+ type: string;
4519
+ description: string;
4520
+ };
4521
+ };
4522
+ };
4523
+ };
4524
+ };
4251
4525
  export declare const TextPrimitive: {
4252
4526
  title: string;
4253
4527
  description: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm/BvB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6iCvB,CAAC;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmH1B,CAAC;AAEF,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;CA0D9B,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;CAelB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;CAmBlB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoJtB,CAAC;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqJ5B,CAAC;AAEF,eAAO,MAAM,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDhB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4EvB,CAAC;AAEF,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgFxB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;CAuBtB,CAAC;AAEF,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmDpB,CAAC;AAEF,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkG3B,CAAC;AAEF,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+FzB,CAAC;AAEF,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyIjC,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;CAenB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;;;;;CAmBnB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAm/BvB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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"}