@warp-drive/legacy 5.6.0-alpha.11

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 (211) hide show
  1. package/CHANGELOG.md +1 -0
  2. package/LICENSE.md +23 -0
  3. package/README.md +54 -0
  4. package/addon-main.cjs +5 -0
  5. package/declarations/adapter/-private/build-url-mixin.d.ts +34 -0
  6. package/declarations/adapter/-private/build-url-mixin.d.ts.map +1 -0
  7. package/declarations/adapter/-private/fastboot-interface.d.ts +9 -0
  8. package/declarations/adapter/-private/fastboot-interface.d.ts.map +1 -0
  9. package/declarations/adapter/-private/utils/continue-on-reject.d.ts +8 -0
  10. package/declarations/adapter/-private/utils/continue-on-reject.d.ts.map +1 -0
  11. package/declarations/adapter/-private/utils/determine-body-promise.d.ts +5 -0
  12. package/declarations/adapter/-private/utils/determine-body-promise.d.ts.map +1 -0
  13. package/declarations/adapter/-private/utils/fetch.d.ts +9 -0
  14. package/declarations/adapter/-private/utils/fetch.d.ts.map +1 -0
  15. package/declarations/adapter/-private/utils/parse-response-headers.d.ts +2 -0
  16. package/declarations/adapter/-private/utils/parse-response-headers.d.ts.map +1 -0
  17. package/declarations/adapter/-private/utils/serialize-into-hash.d.ts +7 -0
  18. package/declarations/adapter/-private/utils/serialize-into-hash.d.ts.map +1 -0
  19. package/declarations/adapter/-private/utils/serialize-query-params.d.ts +6 -0
  20. package/declarations/adapter/-private/utils/serialize-query-params.d.ts.map +1 -0
  21. package/declarations/adapter/-private.d.ts +6 -0
  22. package/declarations/adapter/-private.d.ts.map +1 -0
  23. package/declarations/adapter/error.d.ts +188 -0
  24. package/declarations/adapter/error.d.ts.map +1 -0
  25. package/declarations/adapter/json-api.d.ts +234 -0
  26. package/declarations/adapter/json-api.d.ts.map +1 -0
  27. package/declarations/adapter/rest.d.ts +823 -0
  28. package/declarations/adapter/rest.d.ts.map +1 -0
  29. package/declarations/adapter.d.ts +801 -0
  30. package/declarations/adapter.d.ts.map +1 -0
  31. package/declarations/compat/-private.d.ts +14 -0
  32. package/declarations/compat/-private.d.ts.map +1 -0
  33. package/declarations/compat/builders/find-all.d.ts +33 -0
  34. package/declarations/compat/builders/find-all.d.ts.map +1 -0
  35. package/declarations/compat/builders/find-record.d.ts +54 -0
  36. package/declarations/compat/builders/find-record.d.ts.map +1 -0
  37. package/declarations/compat/builders/query.d.ts +61 -0
  38. package/declarations/compat/builders/query.d.ts.map +1 -0
  39. package/declarations/compat/builders/save-record.d.ts +32 -0
  40. package/declarations/compat/builders/save-record.d.ts.map +1 -0
  41. package/declarations/compat/builders/utils.d.ts +4 -0
  42. package/declarations/compat/builders/utils.d.ts.map +1 -0
  43. package/declarations/compat/builders.d.ts +15 -0
  44. package/declarations/compat/builders.d.ts.map +1 -0
  45. package/declarations/compat/legacy-network-handler/fetch-manager.d.ts +47 -0
  46. package/declarations/compat/legacy-network-handler/fetch-manager.d.ts.map +1 -0
  47. package/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +3 -0
  48. package/declarations/compat/legacy-network-handler/identifier-has-id.d.ts.map +1 -0
  49. package/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +12 -0
  50. package/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts.map +1 -0
  51. package/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +6 -0
  52. package/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts.map +1 -0
  53. package/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +3 -0
  54. package/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts.map +1 -0
  55. package/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +527 -0
  56. package/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts.map +1 -0
  57. package/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +224 -0
  58. package/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts.map +1 -0
  59. package/declarations/compat/legacy-network-handler/serializer-response.d.ts +7 -0
  60. package/declarations/compat/legacy-network-handler/serializer-response.d.ts.map +1 -0
  61. package/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +89 -0
  62. package/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts.map +1 -0
  63. package/declarations/compat/legacy-network-handler/snapshot.d.ts +237 -0
  64. package/declarations/compat/legacy-network-handler/snapshot.d.ts.map +1 -0
  65. package/declarations/compat/utils.d.ts +138 -0
  66. package/declarations/compat/utils.d.ts.map +1 -0
  67. package/declarations/compat.d.ts +134 -0
  68. package/declarations/compat.d.ts.map +1 -0
  69. package/declarations/model/-private/attr.d.ts +165 -0
  70. package/declarations/model/-private/attr.d.ts.map +1 -0
  71. package/declarations/model/-private/attr.type-test.d.ts +2 -0
  72. package/declarations/model/-private/attr.type-test.d.ts.map +1 -0
  73. package/declarations/model/-private/belongs-to.d.ts +173 -0
  74. package/declarations/model/-private/belongs-to.d.ts.map +1 -0
  75. package/declarations/model/-private/belongs-to.type-test.d.ts +2 -0
  76. package/declarations/model/-private/belongs-to.type-test.d.ts.map +1 -0
  77. package/declarations/model/-private/debug/assert-polymorphic-type.d.ts +6 -0
  78. package/declarations/model/-private/debug/assert-polymorphic-type.d.ts.map +1 -0
  79. package/declarations/model/-private/errors.d.ts +290 -0
  80. package/declarations/model/-private/errors.d.ts.map +1 -0
  81. package/declarations/model/-private/has-many.d.ts +164 -0
  82. package/declarations/model/-private/has-many.d.ts.map +1 -0
  83. package/declarations/model/-private/has-many.type-test.d.ts +2 -0
  84. package/declarations/model/-private/has-many.type-test.d.ts.map +1 -0
  85. package/declarations/model/-private/hooks.d.ts +11 -0
  86. package/declarations/model/-private/hooks.d.ts.map +1 -0
  87. package/declarations/model/-private/legacy-relationships-support.d.ts +57 -0
  88. package/declarations/model/-private/legacy-relationships-support.d.ts.map +1 -0
  89. package/declarations/model/-private/model-for-mixin.d.ts +4 -0
  90. package/declarations/model/-private/model-for-mixin.d.ts.map +1 -0
  91. package/declarations/model/-private/model-methods.d.ts +35 -0
  92. package/declarations/model/-private/model-methods.d.ts.map +1 -0
  93. package/declarations/model/-private/model.d.ts +1270 -0
  94. package/declarations/model/-private/model.d.ts.map +1 -0
  95. package/declarations/model/-private/model.type-test.d.ts +2 -0
  96. package/declarations/model/-private/model.type-test.d.ts.map +1 -0
  97. package/declarations/model/-private/notify-changes.d.ts +5 -0
  98. package/declarations/model/-private/notify-changes.d.ts.map +1 -0
  99. package/declarations/model/-private/promise-belongs-to.d.ts +40 -0
  100. package/declarations/model/-private/promise-belongs-to.d.ts.map +1 -0
  101. package/declarations/model/-private/promise-many-array.d.ts +126 -0
  102. package/declarations/model/-private/promise-many-array.d.ts.map +1 -0
  103. package/declarations/model/-private/promise-proxy-base.d.ts +3 -0
  104. package/declarations/model/-private/promise-proxy-base.d.ts.map +1 -0
  105. package/declarations/model/-private/record-state.d.ts +78 -0
  106. package/declarations/model/-private/record-state.d.ts.map +1 -0
  107. package/declarations/model/-private/references/belongs-to.d.ts +495 -0
  108. package/declarations/model/-private/references/belongs-to.d.ts.map +1 -0
  109. package/declarations/model/-private/references/has-many.d.ts +504 -0
  110. package/declarations/model/-private/references/has-many.d.ts.map +1 -0
  111. package/declarations/model/-private/schema-provider.d.ts +63 -0
  112. package/declarations/model/-private/schema-provider.d.ts.map +1 -0
  113. package/declarations/model/-private/type-utils.d.ts +57 -0
  114. package/declarations/model/-private/type-utils.d.ts.map +1 -0
  115. package/declarations/model/-private/util.d.ts +6 -0
  116. package/declarations/model/-private/util.d.ts.map +1 -0
  117. package/declarations/model/-private.d.ts +8 -0
  118. package/declarations/model/-private.d.ts.map +1 -0
  119. package/declarations/model/migration-support.d.ts +287 -0
  120. package/declarations/model/migration-support.d.ts.map +1 -0
  121. package/declarations/model/migration-support.type-test.d.ts +2 -0
  122. package/declarations/model/migration-support.type-test.d.ts.map +1 -0
  123. package/declarations/model.d.ts +50 -0
  124. package/declarations/model.d.ts.map +1 -0
  125. package/declarations/serializer/-private/embedded-records-mixin.d.ts +97 -0
  126. package/declarations/serializer/-private/embedded-records-mixin.d.ts.map +1 -0
  127. package/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
  128. package/declarations/serializer/-private/transforms/boolean.d.ts.map +1 -0
  129. package/declarations/serializer/-private/transforms/boolean.type-test.d.ts +2 -0
  130. package/declarations/serializer/-private/transforms/boolean.type-test.d.ts.map +1 -0
  131. package/declarations/serializer/-private/transforms/date.d.ts +28 -0
  132. package/declarations/serializer/-private/transforms/date.d.ts.map +1 -0
  133. package/declarations/serializer/-private/transforms/number.d.ts +29 -0
  134. package/declarations/serializer/-private/transforms/number.d.ts.map +1 -0
  135. package/declarations/serializer/-private/transforms/string.d.ts +29 -0
  136. package/declarations/serializer/-private/transforms/string.d.ts.map +1 -0
  137. package/declarations/serializer/-private/transforms/transform.d.ts +119 -0
  138. package/declarations/serializer/-private/transforms/transform.d.ts.map +1 -0
  139. package/declarations/serializer/-private/utils.d.ts +4 -0
  140. package/declarations/serializer/-private/utils.d.ts.map +1 -0
  141. package/declarations/serializer/json-api.d.ts +496 -0
  142. package/declarations/serializer/json-api.d.ts.map +1 -0
  143. package/declarations/serializer/json.d.ts +1047 -0
  144. package/declarations/serializer/json.d.ts.map +1 -0
  145. package/declarations/serializer/rest.d.ts +554 -0
  146. package/declarations/serializer/rest.d.ts.map +1 -0
  147. package/declarations/serializer/transform.d.ts +6 -0
  148. package/declarations/serializer/transform.d.ts.map +1 -0
  149. package/declarations/serializer.d.ts +258 -0
  150. package/declarations/serializer.d.ts.map +1 -0
  151. package/dist/-private-DFfBszo5.js +1182 -0
  152. package/dist/-private-DFfBszo5.js.map +1 -0
  153. package/dist/adapter/-private.js +1 -0
  154. package/dist/adapter/-private.js.map +1 -0
  155. package/dist/adapter/error.js +254 -0
  156. package/dist/adapter/error.js.map +1 -0
  157. package/dist/adapter/json-api.js +129 -0
  158. package/dist/adapter/json-api.js.map +1 -0
  159. package/dist/adapter/rest.js +1262 -0
  160. package/dist/adapter/rest.js.map +1 -0
  161. package/dist/adapter.js +1284 -0
  162. package/dist/adapter.js.map +1 -0
  163. package/dist/compat/-private.js +1 -0
  164. package/dist/compat/-private.js.map +1 -0
  165. package/dist/compat/builders.js +292 -0
  166. package/dist/compat/builders.js.map +1 -0
  167. package/dist/compat/utils.js +225 -0
  168. package/dist/compat/utils.js.map +1 -0
  169. package/dist/compat.js +999 -0
  170. package/dist/compat.js.map +1 -0
  171. package/dist/errors-D74uk36r.js +2541 -0
  172. package/dist/errors-D74uk36r.js.map +1 -0
  173. package/dist/json-BCH3fil7.js +1349 -0
  174. package/dist/json-BCH3fil7.js.map +1 -0
  175. package/dist/model/-private.js +2 -0
  176. package/dist/model/-private.js.map +1 -0
  177. package/dist/model/migration-support.js +453 -0
  178. package/dist/model/migration-support.js.map +1 -0
  179. package/dist/model.js +736 -0
  180. package/dist/model.js.map +1 -0
  181. package/dist/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  182. package/dist/runtime-BPCpkOf1-BKOwiRJp.js.map +1 -0
  183. package/dist/schema-provider-CXFLTMjg.js +2228 -0
  184. package/dist/schema-provider-CXFLTMjg.js.map +1 -0
  185. package/dist/serialize-into-hash-BxfqWC8u.js +260 -0
  186. package/dist/serialize-into-hash-BxfqWC8u.js.map +1 -0
  187. package/dist/serializer/json-api.js +514 -0
  188. package/dist/serializer/json-api.js.map +1 -0
  189. package/dist/serializer/json.js +6 -0
  190. package/dist/serializer/json.js.map +1 -0
  191. package/dist/serializer/rest.js +1245 -0
  192. package/dist/serializer/rest.js.map +1 -0
  193. package/dist/serializer/transform.js +313 -0
  194. package/dist/serializer/transform.js.map +1 -0
  195. package/dist/serializer.js +252 -0
  196. package/dist/serializer.js.map +1 -0
  197. package/logos/NCC-1701-a-blue.svg +4 -0
  198. package/logos/NCC-1701-a-gold.svg +4 -0
  199. package/logos/NCC-1701-a-gold_100.svg +1 -0
  200. package/logos/NCC-1701-a-gold_base-64.txt +1 -0
  201. package/logos/NCC-1701-a.svg +4 -0
  202. package/logos/README.md +4 -0
  203. package/logos/docs-badge.svg +2 -0
  204. package/logos/ember-data-logo-dark.svg +12 -0
  205. package/logos/ember-data-logo-light.svg +12 -0
  206. package/logos/github-header.svg +444 -0
  207. package/logos/social1.png +0 -0
  208. package/logos/social2.png +0 -0
  209. package/logos/warp-drive-logo-dark.svg +4 -0
  210. package/logos/warp-drive-logo-gold.svg +4 -0
  211. package/package.json +72 -0
@@ -0,0 +1,258 @@
1
+ /**
2
+ ## Overview
3
+
4
+ <blockquote style="margin: 1em; padding: .1em 1em .1em 1em; border-left: solid 1em #E34C32; background: #e0e0e0;">
5
+ <p>
6
+ ⚠️ <strong>This is LEGACY documentation</strong> for a feature that is no longer encouraged to be used.
7
+ If starting a new app or thinking of implementing a new serializer, consider writing a
8
+ <a href="/ember-data/release/classes/%3CInterface%3E%20Handler">Handler</a> instead to be used with the <a href="https://github.com/emberjs/data/tree/main/packages/request#readme">RequestManager</a>
9
+ </p>
10
+ </blockquote>
11
+
12
+ In order to properly manage and present your data, WarpDrive
13
+ needs to understand the structure of data it receives.
14
+
15
+ `Serializers` convert data between the server's API format and
16
+ the format WarpDrive understands.
17
+
18
+ Data received from an API response is **normalized** into
19
+ [JSON:API](https://jsonapi.org/) (the format used internally
20
+ by WarpDrive), while data sent to an API is **serialized**
21
+ into the format the API expects.
22
+
23
+ ### Implementing a Serializer
24
+
25
+ There are only two required serializer methods, one for
26
+ normalizing data from the server API format into JSON:API, and
27
+ another for serializing records via `Snapshots` into the expected
28
+ server API format.
29
+
30
+ To implement a serializer, export a class that conforms to the structure
31
+ described by {@link MinimumSerializerInterface}
32
+ from the `app/serializers/` directory. An example is below.
33
+
34
+ ```ts
35
+ import EmberObject from '@ember/object';
36
+
37
+ export default class ApplicationSerializer extends EmberObject {
38
+ normalizeResponse(store, schema, rawPayload) {
39
+ return rawPayload;
40
+ }
41
+
42
+ serialize(snapshot, options) {
43
+ const serializedResource = {
44
+ id: snapshot.id,
45
+ type: snapshot.modelName,
46
+ attributes: snapshot.attributes()
47
+ };
48
+
49
+ return serializedResource;
50
+ }
51
+ }
52
+ ```
53
+
54
+
55
+ ### Serializer Resolution
56
+
57
+ `store.serializerFor(name)` will lookup serializers defined in
58
+ `app/serializers/` and return an instance. If no serializer is found, an
59
+ error will be thrown.
60
+
61
+ `serializerFor` first attempts to find a serializer with an exact match on `name`,
62
+ then falls back to checking for the presence of a serializer named `application`.
63
+
64
+ ```ts
65
+ store.serializerFor('author');
66
+
67
+ // lookup paths (in order) =>
68
+ // app/serializers/author.js
69
+ // app/serializers/application.js
70
+ ```
71
+
72
+ Most requests in @warp-drive/legacy are made with respect to a particular `type` (or `modelName`)
73
+ (e.g., "get me the full collection of **books**" or "get me the **employee** whose id is 37"). We
74
+ refer to this as the **primary** resource `type`.
75
+
76
+ Typically `serializerFor` will be used to find a serializer with a name matching that of the primary
77
+ resource `type` for the request, falling back to the `application` serializer for those types that
78
+ do not have a defined serializer. This is often described as a `per-model` or `per-type` strategy
79
+ for defining serializers. However, because APIs rarely format payloads per-type but rather
80
+ per-API-version, this may not be a desired strategy.
81
+
82
+ It is recommended that applications define only a single `application` adapter and serializer
83
+ where possible.
84
+
85
+ If you have multiple API formats and the per-type strategy is not viable, one strategy is to
86
+ write an `application` adapter and serializer that make use of `options` to specify the desired
87
+ format when making a request.
88
+
89
+ ### Using a Serializer
90
+
91
+ Any serializer in `app/serializers/` can be looked up by `name` using `store.serializerFor(name)`.
92
+
93
+ ### Default Serializers
94
+
95
+ For applications whose APIs are *very close to* or *exactly* the **REST** format or **JSON:API**
96
+ format the `@ember-data/serializer` package contains implementations these applications can
97
+ extend. It also contains a simple `JSONSerializer` for serializing to/from very basic JSON objects.
98
+
99
+ Many applications will find writing their own serializer to be more performant and less
100
+ complex than extending these classes even when their API format is very close to that expected
101
+ by these serializers.
102
+
103
+ It is recommended that apps write their own serializer to best suit the needs of their API and
104
+ application.
105
+
106
+ @module
107
+ */
108
+ import EmberObject from '@ember/object';
109
+ import type { Store } from '@warp-drive/core';
110
+ import type { ModelSchema } from '@warp-drive/core/types';
111
+ import type { EmptyResourceDocument, SingleResourceDocument } from '@warp-drive/core/types/spec/json-api-raw';
112
+ /**
113
+ > ⚠️ CAUTION you likely want the docs for {@link MinimumSerializerInterface}
114
+ > as extending this abstract class is unnecessary.
115
+
116
+ `Serializer` is an abstract base class that you may override in your
117
+ application to customize it for your backend. The minimum set of methods
118
+ that you should implement is:
119
+
120
+ * `normalizeResponse()`
121
+ * `serialize()`
122
+
123
+ And you can optionally override the following methods:
124
+
125
+ * `normalize()`
126
+
127
+ For an example implementation, see
128
+ [JSONSerializer](JSONSerializer), the included JSON serializer.
129
+
130
+ @class Serializer
131
+ @public
132
+ */
133
+ export declare class Serializer extends EmberObject {
134
+ store: Store;
135
+ /**
136
+ The `store` property is the application's `store` that contains
137
+ all records. It can be used to look up serializers for other model
138
+ types that may be nested inside the payload response.
139
+
140
+ Example:
141
+
142
+ ```js
143
+ Serializer.extend({
144
+ extractRelationship(relationshipModelName, relationshipHash) {
145
+ let modelClass = this.store.modelFor(relationshipModelName);
146
+ let relationshipSerializer = this.store.serializerFor(relationshipModelName);
147
+ return relationshipSerializer.normalize(modelClass, relationshipHash);
148
+ }
149
+ });
150
+ ```
151
+
152
+ @property store
153
+ @type {Store}
154
+ @public
155
+ */
156
+ /**
157
+ The `normalizeResponse` method is used to normalize a payload from the
158
+ server to a JSON-API Document.
159
+
160
+ http://jsonapi.org/format/#document-structure
161
+
162
+ Example:
163
+
164
+ ```js
165
+ Serializer.extend({
166
+ normalizeResponse(store, primaryModelClass, payload, id, requestType) {
167
+ if (requestType === 'findRecord') {
168
+ return this.normalize(primaryModelClass, payload);
169
+ } else {
170
+ return payload.reduce(function(documentHash, item) {
171
+ let { data, included } = this.normalize(primaryModelClass, item);
172
+ documentHash.included.push(...included);
173
+ documentHash.data.push(data);
174
+ return documentHash;
175
+ }, { data: [], included: [] })
176
+ }
177
+ }
178
+ });
179
+ ```
180
+
181
+ @since 1.13.0
182
+ @public
183
+ @param {Store} store
184
+ @param {Model} primaryModelClass
185
+ @param {Object} payload
186
+ @param {String|Number} id
187
+ @param {String} requestType
188
+ @return {Object} JSON-API Document
189
+ */
190
+ /**
191
+ The `serialize` method is used when a record is saved in order to convert
192
+ the record into the form that your external data source expects.
193
+
194
+ `serialize` takes an optional `options` hash with a single option:
195
+
196
+ - `includeId`: If this is `true`, `serialize` should include the ID
197
+ in the serialized object it builds.
198
+
199
+ Example:
200
+
201
+ ```js
202
+ Serializer.extend({
203
+ serialize(snapshot, options) {
204
+ let json = {
205
+ id: snapshot.id
206
+ };
207
+
208
+ snapshot.eachAttribute((key, attribute) => {
209
+ json[key] = snapshot.attr(key);
210
+ });
211
+
212
+ snapshot.eachRelationship((key, relationship) => {
213
+ if (relationship.kind === 'belongsTo') {
214
+ json[key] = snapshot.belongsTo(key, { id: true });
215
+ } else if (relationship.kind === 'hasMany') {
216
+ json[key] = snapshot.hasMany(key, { ids: true });
217
+ }
218
+ });
219
+
220
+ return json;
221
+ },
222
+ });
223
+ ```
224
+
225
+ @public
226
+ @param {Snapshot} snapshot
227
+ @param {Object} [options]
228
+ @return {Object}
229
+ */
230
+ /**
231
+ The `normalize` method is used to convert a payload received from your
232
+ external data source into the normalized form `store.push()` expects. You
233
+ should override this method, munge the hash and return the normalized
234
+ payload.
235
+
236
+ Example:
237
+
238
+ ```js
239
+ Serializer.extend({
240
+ normalize(modelClass, resourceHash) {
241
+ let data = {
242
+ id: resourceHash.id,
243
+ type: modelClass.modelName,
244
+ attributes: resourceHash
245
+ };
246
+ return { data: data };
247
+ }
248
+ })
249
+ ```
250
+
251
+ @public
252
+ @param {Model} typeClass
253
+ @param {Object} hash
254
+ @return {Object}
255
+ */
256
+ normalize(_typeClass: ModelSchema, hash: Record<string, unknown>): SingleResourceDocument | EmptyResourceDocument;
257
+ }
258
+ //# sourceMappingURL=serializer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"serializer.d.ts","sourceRoot":"","sources":["../src/serializer.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0GE;AAEF,OAAO,WAAW,MAAM,eAAe,CAAC;AAGxC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;AAC9C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,wBAAwB,CAAC;AAC1D,OAAO,KAAK,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,0CAA0C,CAAC;AAI9G;;;;;;;;;;;;;;;;;;;;EAoBE;AAEF,qBAAa,UAAW,SAAQ,WAAW;IACxB,KAAK,EAAE,KAAK,CAAC;IAC9B;;;;;;;;;;;;;;;;;;;;MAoBE;IAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAiCE;IAEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAuCE;IAEF;;;;;;;;;;;;;;;;;;;;;;;;;MAyBE;IACF,SAAS,CAAC,UAAU,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,GAAG,sBAAsB,GAAG,qBAAqB;CAGlH"}