@difizen/libro-common 0.0.2-alpha.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 (71) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +0 -0
  3. package/es/array.d.ts +368 -0
  4. package/es/array.d.ts.map +1 -0
  5. package/es/array.js +577 -0
  6. package/es/display-wrapper.d.ts +6 -0
  7. package/es/display-wrapper.d.ts.map +1 -0
  8. package/es/display-wrapper.js +12 -0
  9. package/es/index.d.ts +11 -0
  10. package/es/index.d.ts.map +1 -0
  11. package/es/index.js +10 -0
  12. package/es/iter.d.ts +147 -0
  13. package/es/iter.d.ts.map +1 -0
  14. package/es/iter.js +162 -0
  15. package/es/json.d.ts +126 -0
  16. package/es/json.d.ts.map +1 -0
  17. package/es/json.js +274 -0
  18. package/es/path.d.ts +97 -0
  19. package/es/path.d.ts.map +1 -0
  20. package/es/path.js +60 -0
  21. package/es/polling/index.d.ts +3 -0
  22. package/es/polling/index.d.ts.map +1 -0
  23. package/es/polling/index.js +2 -0
  24. package/es/polling/poll.d.ts +193 -0
  25. package/es/polling/poll.d.ts.map +1 -0
  26. package/es/polling/poll.js +501 -0
  27. package/es/polling/protocol.d.ts +120 -0
  28. package/es/polling/protocol.d.ts.map +1 -0
  29. package/es/polling/protocol.js +13 -0
  30. package/es/posix.d.ts +2 -0
  31. package/es/posix.d.ts.map +1 -0
  32. package/es/posix.js +71 -0
  33. package/es/protocol/cell-protocol.d.ts +181 -0
  34. package/es/protocol/cell-protocol.d.ts.map +1 -0
  35. package/es/protocol/cell-protocol.js +1 -0
  36. package/es/protocol/index.d.ts +4 -0
  37. package/es/protocol/index.d.ts.map +1 -0
  38. package/es/protocol/index.js +3 -0
  39. package/es/protocol/notebook-protocol.d.ts +63 -0
  40. package/es/protocol/notebook-protocol.d.ts.map +1 -0
  41. package/es/protocol/notebook-protocol.js +41 -0
  42. package/es/protocol/output-protocol.d.ts +125 -0
  43. package/es/protocol/output-protocol.d.ts.map +1 -0
  44. package/es/protocol/output-protocol.js +1 -0
  45. package/es/sanitizer.d.ts +44 -0
  46. package/es/sanitizer.d.ts.map +1 -0
  47. package/es/sanitizer.js +659 -0
  48. package/es/url.d.ts +98 -0
  49. package/es/url.d.ts.map +1 -0
  50. package/es/url.js +134 -0
  51. package/es/utils.d.ts +57 -0
  52. package/es/utils.d.ts.map +1 -0
  53. package/es/utils.js +124 -0
  54. package/package.json +62 -0
  55. package/src/array.ts +608 -0
  56. package/src/display-wrapper.tsx +11 -0
  57. package/src/index.ts +10 -0
  58. package/src/iter.ts +199 -0
  59. package/src/json.ts +321 -0
  60. package/src/path.ts +138 -0
  61. package/src/polling/index.ts +2 -0
  62. package/src/polling/poll.ts +508 -0
  63. package/src/polling/protocol.ts +145 -0
  64. package/src/posix.ts +75 -0
  65. package/src/protocol/cell-protocol.ts +215 -0
  66. package/src/protocol/index.ts +3 -0
  67. package/src/protocol/notebook-protocol.ts +73 -0
  68. package/src/protocol/output-protocol.ts +162 -0
  69. package/src/sanitizer.ts +944 -0
  70. package/src/url.ts +157 -0
  71. package/src/utils.ts +145 -0
package/es/iter.d.ts ADDED
@@ -0,0 +1,147 @@
1
+ /**
2
+ * An object which can produce an iterator over its values.
3
+ */
4
+ export interface IIterable<T> {
5
+ /**
6
+ * Get an iterator over the object's values.
7
+ *
8
+ * @returns An iterator which yields the object's values.
9
+ *
10
+ * #### Notes
11
+ * Depending on the iterable, the returned iterator may or may not be
12
+ * a new object. A collection or other container-like object should
13
+ * typically return a new iterator, while an iterator itself should
14
+ * normally return `this`.
15
+ */
16
+ iter: () => IIterator<T>;
17
+ }
18
+ /**
19
+ * An object which traverses a collection of values.
20
+ *
21
+ * #### Notes
22
+ * An `IIterator` is itself an `IIterable`. Most implementations of
23
+ * `IIterator` should simply return `this` from the `iter()` method.
24
+ */
25
+ export interface IIterator<T> extends IIterable<T> {
26
+ /**
27
+ * Create an independent clone of the iterator.
28
+ *
29
+ * @returns A new independent clone of the iterator.
30
+ *
31
+ * #### Notes
32
+ * The cloned iterator can be consumed independently of the current
33
+ * iterator. In essence, it is a copy of the iterator value stream
34
+ * which starts at the current location.
35
+ *
36
+ * This can be useful for lookahead and stream duplication.
37
+ */
38
+ clone: () => IIterator<T>;
39
+ /**
40
+ * Get the next value from the iterator.
41
+ *
42
+ * @returns The next value from the iterator, or `undefined`.
43
+ *
44
+ * #### Notes
45
+ * The `undefined` value is used to signal the end of iteration and
46
+ * should therefore not be used as a value in a collection.
47
+ *
48
+ * The use of the `undefined` sentinel is an explicit design choice
49
+ * which favors performance over purity. The ES6 iterator design of
50
+ * returning a `{ value, done }` pair is suboptimal, as it requires
51
+ * an object allocation on each iteration; and an `isDone()` method
52
+ * would increase implementation and runtime complexity.
53
+ */
54
+ next: () => T | undefined;
55
+ }
56
+ /**
57
+ * A type alias for an iterable or builtin array-like object.
58
+ */
59
+ export type IterableOrArrayLike<T> = IIterable<T> | ArrayLike<T>;
60
+ /**
61
+ * An iterator for an array-like object.
62
+ *
63
+ * #### Notes
64
+ * This iterator can be used for any builtin JS array-like object.
65
+ */
66
+ export declare class ArrayIterator<T> implements IIterator<T> {
67
+ /**
68
+ * Construct a new array iterator.
69
+ *
70
+ * @param source - The array-like object of interest.
71
+ */
72
+ constructor(source: ArrayLike<T>);
73
+ /**
74
+ * Get an iterator over the object's values.
75
+ *
76
+ * @returns An iterator which yields the object's values.
77
+ */
78
+ iter(): IIterator<T>;
79
+ /**
80
+ * Create an independent clone of the iterator.
81
+ *
82
+ * @returns A new independent clone of the iterator.
83
+ */
84
+ clone(): IIterator<T>;
85
+ /**
86
+ * Get the next value from the iterator.
87
+ *
88
+ * @returns The next value from the iterator, or `undefined`.
89
+ */
90
+ next(): T | undefined;
91
+ private _index;
92
+ private _source;
93
+ }
94
+ /**
95
+ * Create an iterator for an iterable object.
96
+ *
97
+ * @param object - The iterable or array-like object of interest.
98
+ *
99
+ * @returns A new iterator for the given object.
100
+ *
101
+ * #### Notes
102
+ * This function allows iteration algorithms to operate on user-defined
103
+ * iterable types and builtin array-like objects in a uniform fashion.
104
+ */
105
+ export declare function iter<T>(object: IterableOrArrayLike<T>): IIterator<T>;
106
+ /**
107
+ * Invoke a function for each value in an iterable.
108
+ *
109
+ * @param object - The iterable or array-like object of interest.
110
+ *
111
+ * @param fn - The callback function to invoke for each value.
112
+ *
113
+ * #### Notes
114
+ * Iteration can be terminated early by returning `false` from the
115
+ * callback function.
116
+ *
117
+ * #### Complexity
118
+ * Linear.
119
+ *
120
+ * #### Example
121
+ * ```typescript
122
+ *
123
+ * let data = [5, 7, 0, -2, 9];
124
+ *
125
+ * each(data, value => { console.log(value); });
126
+ * ```
127
+ */
128
+ export declare function each<T>(object: IterableOrArrayLike<T>, fn: (value: T, index: number) => boolean | void): void;
129
+ /**
130
+ * Create an array from an iterable of values.
131
+ *
132
+ * @param object - The iterable or array-like object of interest.
133
+ *
134
+ * @returns A new array of values from the given object.
135
+ *
136
+ * #### Example
137
+ * ```typescript
138
+ *
139
+ * let data = [1, 2, 3, 4, 5, 6];
140
+ *
141
+ * let stream = iter(data);
142
+ *
143
+ * toArray(stream); // [1, 2, 3, 4, 5, 6];
144
+ * ```
145
+ */
146
+ export declare function toArray<T>(object: IterableOrArrayLike<T>): T[];
147
+ //# sourceMappingURL=iter.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"iter.d.ts","sourceRoot":"","sources":["../src/iter.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,SAAS,CAAC,CAAC;IAC1B;;;;;;;;;;OAUG;IACH,IAAI,EAAE,MAAM,SAAS,CAAC,CAAC,CAAC,CAAC;CAC1B;AAED;;;;;;GAMG;AACH,MAAM,WAAW,SAAS,CAAC,CAAC,CAAE,SAAQ,SAAS,CAAC,CAAC,CAAC;IAChD;;;;;;;;;;;OAWG;IACH,KAAK,EAAE,MAAM,SAAS,CAAC,CAAC,CAAC,CAAC;IAE1B;;;;;;;;;;;;;;OAcG;IACH,IAAI,EAAE,MAAM,CAAC,GAAG,SAAS,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,MAAM,mBAAmB,CAAC,CAAC,IAAI,SAAS,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;AAEjE;;;;;GAKG;AACH,qBAAa,aAAa,CAAC,CAAC,CAAE,YAAW,SAAS,CAAC,CAAC,CAAC;IACnD;;;;OAIG;gBACS,MAAM,EAAE,SAAS,CAAC,CAAC,CAAC;IAIhC;;;;OAIG;IACH,IAAI,IAAI,SAAS,CAAC,CAAC,CAAC;IAIpB;;;;OAIG;IACH,KAAK,IAAI,SAAS,CAAC,CAAC,CAAC;IAMrB;;;;OAIG;IACH,IAAI,IAAI,CAAC,GAAG,SAAS;IAOrB,OAAO,CAAC,MAAM,CAAK;IACnB,OAAO,CAAC,OAAO,CAAe;CAC/B;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,IAAI,CAAC,CAAC,EAAE,MAAM,EAAE,mBAAmB,CAAC,CAAC,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAQpE;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,IAAI,CAAC,CAAC,EACpB,MAAM,EAAE,mBAAmB,CAAC,CAAC,CAAC,EAC9B,EAAE,EAAE,CAAC,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,GAAG,IAAI,GAC9C,IAAI,CASN;AAED;;;;;;;;;;;;;;;;GAgBG;AACH,wBAAgB,OAAO,CAAC,CAAC,EAAE,MAAM,EAAE,mBAAmB,CAAC,CAAC,CAAC,GAAG,CAAC,EAAE,CAS9D"}
package/es/iter.js ADDED
@@ -0,0 +1,162 @@
1
+ function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
4
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
5
+ function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
6
+ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
7
+ /**
8
+ * An object which can produce an iterator over its values.
9
+ */
10
+
11
+ /**
12
+ * An object which traverses a collection of values.
13
+ *
14
+ * #### Notes
15
+ * An `IIterator` is itself an `IIterable`. Most implementations of
16
+ * `IIterator` should simply return `this` from the `iter()` method.
17
+ */
18
+
19
+ /**
20
+ * A type alias for an iterable or builtin array-like object.
21
+ */
22
+
23
+ /**
24
+ * An iterator for an array-like object.
25
+ *
26
+ * #### Notes
27
+ * This iterator can be used for any builtin JS array-like object.
28
+ */
29
+ export var ArrayIterator = /*#__PURE__*/function () {
30
+ /**
31
+ * Construct a new array iterator.
32
+ *
33
+ * @param source - The array-like object of interest.
34
+ */
35
+ function ArrayIterator(source) {
36
+ _classCallCheck(this, ArrayIterator);
37
+ this._index = 0;
38
+ this._source = source;
39
+ }
40
+
41
+ /**
42
+ * Get an iterator over the object's values.
43
+ *
44
+ * @returns An iterator which yields the object's values.
45
+ */
46
+ _createClass(ArrayIterator, [{
47
+ key: "iter",
48
+ value: function iter() {
49
+ return this;
50
+ }
51
+
52
+ /**
53
+ * Create an independent clone of the iterator.
54
+ *
55
+ * @returns A new independent clone of the iterator.
56
+ */
57
+ }, {
58
+ key: "clone",
59
+ value: function clone() {
60
+ var result = new ArrayIterator(this._source);
61
+ result._index = this._index;
62
+ return result;
63
+ }
64
+
65
+ /**
66
+ * Get the next value from the iterator.
67
+ *
68
+ * @returns The next value from the iterator, or `undefined`.
69
+ */
70
+ }, {
71
+ key: "next",
72
+ value: function next() {
73
+ if (this._index >= this._source.length) {
74
+ return undefined;
75
+ }
76
+ return this._source[this._index++];
77
+ }
78
+ }]);
79
+ return ArrayIterator;
80
+ }();
81
+
82
+ /**
83
+ * Create an iterator for an iterable object.
84
+ *
85
+ * @param object - The iterable or array-like object of interest.
86
+ *
87
+ * @returns A new iterator for the given object.
88
+ *
89
+ * #### Notes
90
+ * This function allows iteration algorithms to operate on user-defined
91
+ * iterable types and builtin array-like objects in a uniform fashion.
92
+ */
93
+ export function iter(object) {
94
+ var it;
95
+ if (typeof object.iter === 'function') {
96
+ it = object.iter();
97
+ } else {
98
+ it = new ArrayIterator(object);
99
+ }
100
+ return it;
101
+ }
102
+
103
+ /**
104
+ * Invoke a function for each value in an iterable.
105
+ *
106
+ * @param object - The iterable or array-like object of interest.
107
+ *
108
+ * @param fn - The callback function to invoke for each value.
109
+ *
110
+ * #### Notes
111
+ * Iteration can be terminated early by returning `false` from the
112
+ * callback function.
113
+ *
114
+ * #### Complexity
115
+ * Linear.
116
+ *
117
+ * #### Example
118
+ * ```typescript
119
+ *
120
+ * let data = [5, 7, 0, -2, 9];
121
+ *
122
+ * each(data, value => { console.log(value); });
123
+ * ```
124
+ */
125
+ export function each(object, fn) {
126
+ var index = 0;
127
+ var it = iter(object);
128
+ var value;
129
+ while ((value = it.next()) !== undefined) {
130
+ if (fn(value, index++) === false) {
131
+ return;
132
+ }
133
+ }
134
+ }
135
+
136
+ /**
137
+ * Create an array from an iterable of values.
138
+ *
139
+ * @param object - The iterable or array-like object of interest.
140
+ *
141
+ * @returns A new array of values from the given object.
142
+ *
143
+ * #### Example
144
+ * ```typescript
145
+ *
146
+ * let data = [1, 2, 3, 4, 5, 6];
147
+ *
148
+ * let stream = iter(data);
149
+ *
150
+ * toArray(stream); // [1, 2, 3, 4, 5, 6];
151
+ * ```
152
+ */
153
+ export function toArray(object) {
154
+ var index = 0;
155
+ var result = [];
156
+ var it = iter(object);
157
+ var value;
158
+ while ((value = it.next()) !== undefined) {
159
+ result[index++] = value;
160
+ }
161
+ return result;
162
+ }
package/es/json.d.ts ADDED
@@ -0,0 +1,126 @@
1
+ /**
2
+ * A type alias for a JSON primitive.
3
+ */
4
+ export type JSONPrimitive = boolean | number | string | null;
5
+ /**
6
+ * A type alias for a JSON value.
7
+ */
8
+ export type JSONValue = JSONPrimitive | {
9
+ [key: string]: JSONValue;
10
+ } | JSONValue[];
11
+ /**
12
+ * A type definition for a JSON object.
13
+ */
14
+ export type JSONObject = Record<string, JSONValue>;
15
+ /**
16
+ * A type definition for a JSON array.
17
+ */
18
+ export type JSONArray = JSONValue[];
19
+ /**
20
+ * A type definition for a readonly JSON object.
21
+ */
22
+ export type ReadonlyJSONObject = Readonly<Record<string, ReadonlyJSONValue>>;
23
+ /**
24
+ * A type definition for a readonly JSON array.
25
+ */
26
+ export type ReadonlyJSONArray = readonly ReadonlyJSONValue[];
27
+ /**
28
+ * A type alias for a readonly JSON value.
29
+ */
30
+ export type ReadonlyJSONValue = JSONPrimitive | Readonly<{
31
+ [key: string]: ReadonlyJSONValue;
32
+ }> | readonly ReadonlyJSONValue[];
33
+ /**
34
+ * A type alias for a partial JSON value.
35
+ *
36
+ * Note: Partial here means that JSON object attributes can be `undefined`.
37
+ */
38
+ export type PartialJSONValue = JSONPrimitive | Partial<{
39
+ [key: string]: PartialJSONValue;
40
+ }> | PartialJSONValue[];
41
+ /**
42
+ * A type definition for a partial JSON array.
43
+ *
44
+ * Note: Partial here means that JSON object attributes can be `undefined`.
45
+ */
46
+ export type PartialJSONArray = PartialJSONValue[];
47
+ /**
48
+ * A type definition for a partial JSON object.
49
+ *
50
+ * Note: Partial here means that the JSON object attributes can be `undefined`.
51
+ */
52
+ export type PartialJSONObject = Record<string, PartialJSONValue | undefined>;
53
+ /**
54
+ * A type definition for a readonly partial JSON object.
55
+ *
56
+ * Note: Partial here means that JSON object attributes can be `undefined`.
57
+ */
58
+ export type ReadonlyPartialJSONObject = Readonly<Record<string, ReadonlyPartialJSONValue | undefined>>;
59
+ /**
60
+ * A type definition for a readonly partial JSON array.
61
+ *
62
+ * Note: Partial here means that JSON object attributes can be `undefined`.
63
+ */
64
+ export type ReadonlyPartialJSONArray = readonly ReadonlyPartialJSONValue[];
65
+ /**
66
+ * A type alias for a readonly partial JSON value.
67
+ *
68
+ * Note: Partial here means that JSON object attributes can be `undefined`.
69
+ */
70
+ export type ReadonlyPartialJSONValue = JSONPrimitive | {
71
+ readonly [key: string]: ReadonlyPartialJSONValue | undefined;
72
+ } | readonly ReadonlyPartialJSONValue[];
73
+ /**
74
+ * A shared frozen empty JSONObject
75
+ */
76
+ export declare const emptyObject: Readonly<Record<string, ReadonlyJSONValue>>;
77
+ /**
78
+ * A shared frozen empty JSONArray
79
+ */
80
+ export declare const emptyArray: ReadonlyJSONArray;
81
+ /**
82
+ * Test whether a JSON value is a primitive.
83
+ *
84
+ * @param value - The JSON value of interest.
85
+ *
86
+ * @returns `true` if the value is a primitive,`false` otherwise.
87
+ */
88
+ export declare function isPrimitive(value: ReadonlyPartialJSONValue): value is JSONPrimitive;
89
+ /**
90
+ * Test whether a JSON value is an array.
91
+ *
92
+ * @param value - The JSON value of interest.
93
+ *
94
+ * @returns `true` if the value is a an array, `false` otherwise.
95
+ */
96
+ export declare function isArray(value: JSONValue): value is JSONArray;
97
+ export declare function isArray(value: PartialJSONValue): value is PartialJSONArray;
98
+ export declare function isArray(value: ReadonlyPartialJSONValue): value is ReadonlyPartialJSONArray;
99
+ /**
100
+ * Test whether a JSON value is an object.
101
+ *
102
+ * @param value - The JSON value of interest.
103
+ *
104
+ * @returns `true` if the value is a an object, `false` otherwise.
105
+ */
106
+ export declare function isObject(value: JSONValue): value is JSONObject;
107
+ export declare function isObject(value: PartialJSONValue): value is PartialJSONObject;
108
+ /**
109
+ * Compare two JSON values for deep equality.
110
+ *
111
+ * @param first - The first JSON value of interest.
112
+ *
113
+ * @param second - The second JSON value of interest.
114
+ *
115
+ * @returns `true` if the values are equivalent, `false` otherwise.
116
+ */
117
+ export declare function deepEqual(first: ReadonlyPartialJSONValue, second: ReadonlyPartialJSONValue): boolean;
118
+ /**
119
+ * Create a deep copy of a JSON value.
120
+ *
121
+ * @param value - The JSON value to copy.
122
+ *
123
+ * @returns A deep copy of the given JSON value.
124
+ */
125
+ export declare function deepCopy<T extends ReadonlyPartialJSONValue>(value: T): T;
126
+ //# sourceMappingURL=json.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"json.d.ts","sourceRoot":"","sources":["../src/json.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,MAAM,aAAa,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,aAAa,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,CAAA;CAAE,GAAG,SAAS,EAAE,CAAC;AAEnF;;GAEG;AACH,MAAM,MAAM,UAAU,GAAG,MAAM,CAAC,MAAM,EAAE,SAAS,CAAC,CAAC;AAEnD;;GAEG;AACH,MAAM,MAAM,SAAS,GAAG,SAAS,EAAE,CAAC;AAEpC;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,QAAQ,CAAC,MAAM,CAAC,MAAM,EAAE,iBAAiB,CAAC,CAAC,CAAC;AAE7E;;GAEG;AACH,MAAM,MAAM,iBAAiB,GAAG,SAAS,iBAAiB,EAAE,CAAC;AAE7D;;GAEG;AACH,MAAM,MAAM,iBAAiB,GACzB,aAAa,GACb,QAAQ,CAAC;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,iBAAiB,CAAA;CAAE,CAAC,GAC9C,SAAS,iBAAiB,EAAE,CAAC;AAEjC;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GACxB,aAAa,GACb,OAAO,CAAC;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,gBAAgB,CAAA;CAAE,CAAC,GAC5C,gBAAgB,EAAE,CAAC;AAEvB;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,gBAAgB,EAAE,CAAC;AAElD;;;;GAIG;AACH,MAAM,MAAM,iBAAiB,GAAG,MAAM,CAAC,MAAM,EAAE,gBAAgB,GAAG,SAAS,CAAC,CAAC;AAE7E;;;;GAIG;AACH,MAAM,MAAM,yBAAyB,GAAG,QAAQ,CAC9C,MAAM,CAAC,MAAM,EAAE,wBAAwB,GAAG,SAAS,CAAC,CACrD,CAAC;AAEF;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG,SAAS,wBAAwB,EAAE,CAAC;AAE3E;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAChC,aAAa,GACb;IAAE,QAAQ,EAAE,GAAG,EAAE,MAAM,GAAG,wBAAwB,GAAG,SAAS,CAAA;CAAE,GAChE,SAAS,wBAAwB,EAAE,CAAC;AAExC;;GAEG;AACH,eAAO,MAAM,WAAW,6CAA0C,CAAC;AAEnE;;GAEG;AACH,eAAO,MAAM,UAAU,mBAAyC,CAAC;AAEjE;;;;;;GAMG;AACH,wBAAgB,WAAW,CAAC,KAAK,EAAE,wBAAwB,GAAG,KAAK,IAAI,aAAa,CAOnF;AAED;;;;;;GAMG;AACH,wBAAgB,OAAO,CAAC,KAAK,EAAE,SAAS,GAAG,KAAK,IAAI,SAAS,CAAC;AAE9D,wBAAgB,OAAO,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,IAAI,gBAAgB,CAAC;AAC5E,wBAAgB,OAAO,CACrB,KAAK,EAAE,wBAAwB,GAC9B,KAAK,IAAI,wBAAwB,CAAC;AAKrC;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,KAAK,EAAE,SAAS,GAAG,KAAK,IAAI,UAAU,CAAC;AAEhE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,gBAAgB,GAAG,KAAK,IAAI,iBAAiB,CAAC;AAM9E;;;;;;;;GAQG;AACH,wBAAgB,SAAS,CACvB,KAAK,EAAE,wBAAwB,EAC/B,MAAM,EAAE,wBAAwB,GAC/B,OAAO,CAiCT;AAED;;;;;;GAMG;AACH,wBAAgB,QAAQ,CAAC,CAAC,SAAS,wBAAwB,EAAE,KAAK,EAAE,CAAC,GAAG,CAAC,CAaxE"}