@warp-drive-mirror/ember 5.8.0-alpha.3 → 5.8.0-alpha.32

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 (46) hide show
  1. package/README.md +37 -16
  2. package/declarations/-private/await.d.ts +7 -7
  3. package/declarations/-private/request.d.ts +5 -5
  4. package/declarations/index.d.ts +3 -210
  5. package/dist/index.js +15 -13
  6. package/dist/unpkg/dev/declarations/-private/await.d.ts +81 -0
  7. package/dist/unpkg/dev/declarations/-private/request.d.ts +289 -0
  8. package/dist/unpkg/dev/declarations/index.d.ts +8 -0
  9. package/dist/unpkg/dev/declarations/install.d.ts +6 -0
  10. package/dist/unpkg/dev/index.js +476 -0
  11. package/dist/unpkg/dev/install.js +77 -0
  12. package/dist/unpkg/dev-deprecated/declarations/-private/await.d.ts +81 -0
  13. package/dist/unpkg/dev-deprecated/declarations/-private/request.d.ts +289 -0
  14. package/dist/unpkg/dev-deprecated/declarations/index.d.ts +8 -0
  15. package/dist/unpkg/dev-deprecated/declarations/install.d.ts +6 -0
  16. package/dist/unpkg/dev-deprecated/index.js +476 -0
  17. package/dist/unpkg/dev-deprecated/install.js +77 -0
  18. package/dist/unpkg/prod/declarations/-private/await.d.ts +81 -0
  19. package/dist/unpkg/prod/declarations/-private/request.d.ts +289 -0
  20. package/dist/unpkg/prod/declarations/index.d.ts +8 -0
  21. package/dist/unpkg/prod/declarations/install.d.ts +6 -0
  22. package/dist/unpkg/prod/index.js +476 -0
  23. package/dist/unpkg/prod/install.js +77 -0
  24. package/dist/unpkg/prod-deprecated/declarations/-private/await.d.ts +81 -0
  25. package/dist/unpkg/prod-deprecated/declarations/-private/request.d.ts +289 -0
  26. package/dist/unpkg/prod-deprecated/declarations/index.d.ts +8 -0
  27. package/dist/unpkg/prod-deprecated/declarations/install.d.ts +6 -0
  28. package/dist/unpkg/prod-deprecated/index.js +476 -0
  29. package/dist/unpkg/prod-deprecated/install.js +77 -0
  30. package/logos/README.md +2 -2
  31. package/logos/logo-yellow-slab.svg +1 -0
  32. package/logos/word-mark-black.svg +1 -0
  33. package/logos/word-mark-white.svg +1 -0
  34. package/package.json +4 -4
  35. package/logos/NCC-1701-a-blue.svg +0 -4
  36. package/logos/NCC-1701-a-gold.svg +0 -4
  37. package/logos/NCC-1701-a-gold_100.svg +0 -1
  38. package/logos/NCC-1701-a-gold_base-64.txt +0 -1
  39. package/logos/NCC-1701-a.svg +0 -4
  40. package/logos/docs-badge.svg +0 -2
  41. package/logos/ember-data-logo-dark.svg +0 -12
  42. package/logos/ember-data-logo-light.svg +0 -12
  43. package/logos/social1.png +0 -0
  44. package/logos/social2.png +0 -0
  45. package/logos/warp-drive-logo-dark.svg +0 -4
  46. package/logos/warp-drive-logo-gold.svg +0 -4
@@ -0,0 +1,476 @@
1
+ import { service } from '@ember/service';
2
+ import Component from '@glimmer/component';
3
+ import { macroCondition, getGlobalConfig, moduleExists, importSync } from '@embroider/macros';
4
+ import { DISPOSE, createRequestSubscription, memoized } from '@warp-drive-mirror/core/store/-private';
5
+ export { createRequestSubscription, getRequestState } from '@warp-drive-mirror/core/store/-private';
6
+ import { getPromiseState } from '@warp-drive-mirror/core/reactive';
7
+ export { getPromiseState } from '@warp-drive-mirror/core/reactive';
8
+ import { precompileTemplate } from '@ember/template-compilation';
9
+ import { setComponentTemplate } from '@ember/component';
10
+ import templateOnly from '@ember/component/template-only';
11
+
12
+ const and = (x, y) => Boolean(x && y);
13
+ /**
14
+ * The `<Throw />` component is used to throw an error in a template.
15
+ *
16
+ * That's all it does. So don't use it unless the application should
17
+ * throw an error if it reaches this point in the template.
18
+ *
19
+ * ```gts
20
+ * <Throw @error={{anError}} />
21
+ * ```
22
+ *
23
+ * @category Components
24
+ * @public
25
+ */
26
+ class Throw extends Component {
27
+ constructor(owner, args) {
28
+ super(owner, args);
29
+ // this error is opaque (user supplied) so we don't validate it
30
+ // as an Error instance.
31
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.env.PRODUCTION)) {
32
+ // eslint-disable-next-line no-console
33
+ console.error(this.args.error);
34
+ } else {
35
+ // eslint-disable-next-line @typescript-eslint/only-throw-error
36
+ throw this.args.error;
37
+ }
38
+ }
39
+ static {
40
+ setComponentTemplate(precompileTemplate("", {
41
+ strictMode: true
42
+ }), this);
43
+ }
44
+ }
45
+ /**
46
+ * The `<Await />` component allow you to utilize reactive control flow
47
+ * for asynchronous states in your application.
48
+ *
49
+ * Await is ideal for handling "boundaries", outside which some state is
50
+ * still allowed to be unresolved and within which it MUST be resolved.
51
+ *
52
+ * ```gts
53
+ * import { Await } from '@warp-drive-mirror/ember';
54
+ *
55
+ * <template>
56
+ * <Await @promise={{@request}}>
57
+ * <:pending>
58
+ * <Spinner />
59
+ * </:pending>
60
+ *
61
+ * <:error as |error|>
62
+ * <ErrorForm @error={{error}} />
63
+ * </:error>
64
+ *
65
+ * <:success as |result|>
66
+ * <h1>{{result.title}}</h1>
67
+ * </:success>
68
+ * </Await>
69
+ * </template>
70
+ * ```
71
+ *
72
+ * The `<Await />` component requires that error states are properly handled.
73
+ *
74
+ * If no error block is provided and the promise rejects, the error will
75
+ * be thrown.
76
+ *
77
+ * @category Components
78
+ * @public
79
+ */
80
+ class Await extends Component {
81
+ get state() {
82
+ return getPromiseState(this.args.promise);
83
+ }
84
+ get error() {
85
+ return this.state.error;
86
+ }
87
+ get result() {
88
+ return this.state.result;
89
+ }
90
+ static {
91
+ setComponentTemplate(precompileTemplate("\n {{#if this.state.isPending}}\n {{yield to=\"pending\"}}\n {{else if (and this.state.isError (has-block \"error\"))}}\n {{yield this.error to=\"error\"}}\n {{else if this.state.isSuccess}}\n {{yield this.result to=\"success\"}}\n {{else}}\n <Throw @error={{this.error}} />\n {{/if}}\n ", {
92
+ strictMode: true,
93
+ scope: () => ({
94
+ and,
95
+ Throw
96
+ })
97
+ }), this);
98
+ }
99
+ }
100
+
101
+ const deferred = /* @__PURE__ */new WeakMap();
102
+ function deferDecorator(proto, prop, desc) {
103
+ let map = deferred.get(proto);
104
+ if (!map) {
105
+ map = /* @__PURE__ */new Map();
106
+ deferred.set(proto, map);
107
+ }
108
+ map.set(prop, desc);
109
+ }
110
+ function findDeferredDecorator(target, prop) {
111
+ var _a;
112
+ let cursor = target.prototype;
113
+ while (cursor) {
114
+ let desc = (_a = deferred.get(cursor)) == null ? void 0 : _a.get(prop);
115
+ if (desc) {
116
+ return desc;
117
+ }
118
+ cursor = cursor.prototype;
119
+ }
120
+ }
121
+ function decorateFieldV2(prototype, prop, decorators, initializer) {
122
+ let desc = {
123
+ configurable: true,
124
+ enumerable: true,
125
+ writable: true,
126
+ initializer: null
127
+ };
128
+ if (initializer) {
129
+ desc.initializer = initializer;
130
+ }
131
+ for (let decorator of decorators) {
132
+ desc = decorator(prototype, prop, desc) || desc;
133
+ }
134
+ if (desc.initializer === void 0) {
135
+ Object.defineProperty(prototype, prop, desc);
136
+ } else {
137
+ deferDecorator(prototype, prop, desc);
138
+ }
139
+ }
140
+ function decorateMethodV2(prototype, prop, decorators) {
141
+ const origDesc = Object.getOwnPropertyDescriptor(prototype, prop);
142
+ let desc = {
143
+ ...origDesc
144
+ };
145
+ for (let decorator of decorators) {
146
+ desc = decorator(prototype, prop, desc) || desc;
147
+ }
148
+ if (desc.initializer !== void 0) {
149
+ desc.value = desc.initializer ? desc.initializer.call(prototype) : void 0;
150
+ desc.initializer = void 0;
151
+ }
152
+ Object.defineProperty(prototype, prop, desc);
153
+ }
154
+ function initializeDeferredDecorator(target, prop) {
155
+ let desc = findDeferredDecorator(target.constructor, prop);
156
+ if (desc) {
157
+ Object.defineProperty(target, prop, {
158
+ enumerable: desc.enumerable,
159
+ configurable: desc.configurable,
160
+ writable: desc.writable,
161
+ value: desc.initializer ? desc.initializer.call(target) : void 0
162
+ });
163
+ }
164
+ }
165
+
166
+ function notNull(x) {
167
+ macroCondition(getGlobalConfig().WarpDriveMirror.env.DEBUG) ? (test => {
168
+ if (!test) {
169
+ throw new Error('Expected a non-null value, but got null');
170
+ }
171
+ })(x !== null) : {};
172
+ return x;
173
+ }
174
+ const not = x => !x;
175
+ const IdleBlockMissingError = new Error('No idle block provided for <Request> component, and no query or request was provided.');
176
+ let consume = service;
177
+ if (macroCondition(moduleExists('ember-provide-consume-context'))) {
178
+ const {
179
+ consume: contextConsume
180
+ } = importSync('ember-provide-consume-context');
181
+ consume = contextConsume;
182
+ }
183
+ const DefaultChrome = setComponentTemplate(precompileTemplate("{{yield}}", {
184
+ strictMode: true
185
+ }), templateOnly());
186
+ /**
187
+ * The `<Request />` component is a powerful tool for managing data fetching and
188
+ * state in your Ember application. It provides a declarative approach to reactive
189
+ * control-flow for managing requests and state in your application.
190
+ *
191
+ * The `<Request />` component is ideal for handling "boundaries", outside which some
192
+ * state is still allowed to be unresolved and within which it MUST be resolved.
193
+ *
194
+ * ## Request States
195
+ *
196
+ * `<Request />` has five states, only one of which will be active and rendered at a time.
197
+ *
198
+ * - `idle`: The component is waiting to be given a request to monitor
199
+ * - `loading`: The request is in progress
200
+ * - `error`: The request failed
201
+ * - `content`: The request succeeded
202
+ * - `cancelled`: The request was cancelled
203
+ *
204
+ * Additionally, the `content` state has a `refresh` method that can be used to
205
+ * refresh the request in the background, which is available as a sub-state of
206
+ * the `content` state.
207
+ *
208
+ * As with the `<Await />` component, if no error block is provided and the request
209
+ * rejects, the error will be thrown. Cancellation errors are swallowed instead of
210
+ * rethrown if no error block or cancellation block is present.
211
+ *
212
+ * ```gts
213
+ * import { Request } from '@warp-drive-mirror/ember';
214
+ *
215
+ * <template>
216
+ * <Request @request={{@request}}>
217
+ * <:loading as |state|>
218
+ * <Spinner @percentDone={{state.completedRatio}} />
219
+ * <button {{on "click" state.abort}}>Cancel</button>
220
+ * </:loading>
221
+ *
222
+ * <:error as |error state|>
223
+ * <ErrorForm @error={{error}} />
224
+ * <button {{on "click" state.retry}}>Retry</button>
225
+ * </:error>
226
+ *
227
+ * <:content as |data state|>
228
+ * <h1>{{data.title}}</h1>
229
+ * {{#if state.isBackgroundReloading}}
230
+ * <SmallSpinner />
231
+ * <button {{on "click" state.abort}}>Cancel</button>
232
+ * {{else}}
233
+ * <button {{on "click" state.refresh}}>Refresh</button>
234
+ * {{/if}}
235
+ * </:content>
236
+ *
237
+ * <:cancelled as |error state|>
238
+ * <h2>The Request was cancelled</h2>
239
+ * <button {{on "click" state.retry}}>Retry</button>
240
+ * </:cancelled>
241
+ *
242
+ * <:idle>
243
+ * <button {{on "click" @kickOffRequest}}>Load Preview?</button>
244
+ * </:idle>
245
+ *
246
+ * </Request>
247
+ * </template>
248
+ * ```
249
+ *
250
+ * ## Streaming Data
251
+ *
252
+ * The loading state exposes the download `ReadableStream` instance for consumption
253
+ *
254
+ * ```gts
255
+ * import { Request } from '@warp-drive-mirror/ember';
256
+ *
257
+ * <template>
258
+ * <Request @request={{@request}}>
259
+ * <:loading as |state|>
260
+ * <Video @stream={{state.stream}} />
261
+ * </:loading>
262
+ *
263
+ * <:error as |error|>
264
+ * <ErrorForm @error={{error}} />
265
+ * </:error>
266
+ * </Request>
267
+ * </template>
268
+ * ```
269
+ *
270
+ * ## Retry
271
+ *
272
+ * Cancelled and error'd requests may be retried by calling the `retry` method.
273
+ *
274
+ * Retry will restart the state progression, using the loading, error, cancelled,
275
+ * and content blocks as appropriate.
276
+ *
277
+ * ## Reloading
278
+ *
279
+ * The `reload` method will force the request to be fully re-executed, bypassing
280
+ * cache and restarting the state progression through the loading, error, and
281
+ * content blocks as appropriate.
282
+ *
283
+ * Background reload (refresh) is a special substate of the content state that
284
+ * allows you to refresh the request in the background. This is useful for when
285
+ * you want to update the data in the background without blocking the UI.
286
+ *
287
+ * Reload and refresh are available as methods on the `content` state.
288
+ *
289
+ * ```gts
290
+ * import { Request } from '@warp-drive-mirror/ember';
291
+ *
292
+ * <template>
293
+ * <Request @request={{@request}}>
294
+ * <:content as |data state|>
295
+ * <h1>{{data.title}}</h1>
296
+ * {{#if state.isBackgroundReloading}}
297
+ * <SmallSpinner />
298
+ * <button {{on "click" state.abort}}>Cancel</button>
299
+ * {{/if}}
300
+ *
301
+ * <button {{on "click" state.refresh}}>Refresh</button>
302
+ * <button {{on "click" state.reload}}>Reload</button>
303
+ * </:content>
304
+ * </Request>
305
+ * </template>
306
+ * ```
307
+ *
308
+ * ## Advanced Reloading
309
+ *
310
+ * We can nest our usage of `<Request />` to handle more advanced
311
+ * reloading scenarios.
312
+ *
313
+ * ```gts
314
+ * import { Request } from '@warp-drive-mirror/ember';
315
+ *
316
+ * <template>
317
+ * <Request @request={{@request}}>
318
+ * <:cancelled>
319
+ * <h2>The Request Cancelled</h2>
320
+ * </:cancelled>
321
+ *
322
+ * <:error as |error|>
323
+ * <ErrorForm @error={{error}} />
324
+ * </:error>
325
+ *
326
+ * <:content as |result state|>
327
+ * <Request @request={{state.latestRequest}}>
328
+ * <!-- Handle Background Request -->
329
+ * </Request>
330
+ *
331
+ * <h1>{{result.title}}</h1>
332
+ *
333
+ * <button {{on "click" state.refresh}}>Refresh</button>
334
+ * </:content>
335
+ * </Request>
336
+ * </template>
337
+ * ```
338
+ *
339
+ * ## Autorefresh
340
+ *
341
+ * `<Request />` supports automatic refresh and reload under certain conditions.
342
+ *
343
+ * - `online`: This occurs when a browser window or tab comes back to the foreground
344
+ * after being backgrounded or when the network reports as being online after
345
+ * having been offline.
346
+ * - `interval`: This occurs when a specified amount of time has passed.
347
+ * - `invalid`: This occurs when the store emits a notification that the request
348
+ * has become invalid.
349
+ *
350
+ * You can specify when autorefresh should occur by setting the `autorefresh` arg
351
+ * to `true` or a comma-separated list of the above values.
352
+ *
353
+ * A value of `true` is equivalent to `'online,invalid'`.
354
+ *
355
+ * By default, an autorefresh will only occur if the browser was backgrounded or
356
+ * offline for more than 30s before coming back available. This amount of time can
357
+ * be tweaked by setting the number of milliseconds via `@autorefreshThreshold`.
358
+ *
359
+ * This arg also controls the interval at which the request will be refreshed
360
+ * if the `interval` autorefresh type is enabled.
361
+ *
362
+ * Finally, the behavior of the request initiated by autorefresh can be adjusted
363
+ * by setting the `autorefreshBehavior` arg to `'refresh'`, `'reload'`, or `'policy'`.
364
+ *
365
+ * - `'refresh'`: Refresh the request in the background
366
+ * - `'reload'`: Force a reload of the request
367
+ * - `'policy'` (**default**): Let the store's configured CachePolicy decide whether to
368
+ * reload, refresh, or do nothing.
369
+ *
370
+ * More advanced refresh and reload behaviors can be created by passing the reload and
371
+ * refresh actions into another component. For instance, refresh could be set up on a
372
+ * timer or on a websocket subscription.
373
+ *
374
+ *
375
+ * ```gts
376
+ * import { Request } from '@warp-drive-mirror/ember';
377
+ *
378
+ * <template>
379
+ * <Request @request={{@request}}>
380
+ * <:content as |result state|>
381
+ * <h1>{{result.title}}</h1>
382
+ *
383
+ * <Interval @period={{30_000}} @fn={{state.refresh}} />
384
+ * <Subscribe @channel={{@someValue}} @fn={{state.refresh}} />
385
+ * </:content>
386
+ * </Request>
387
+ * </template>
388
+ * ```
389
+ *
390
+ * If a matching request is refreshed or reloaded by any other component,
391
+ * the `Request` component will react accordingly.
392
+ *
393
+ * ## Deduping
394
+ *
395
+ * The store dedupes requests by identity. If a request is made for the same identity
396
+ * from multiple `<Request />` components, even if the request is not referentially the
397
+ * same, only one actual request will be made.
398
+ *
399
+ * @category Components
400
+ * @public
401
+ */
402
+ class Request extends Component {
403
+ static {
404
+ decorateFieldV2(this.prototype, "_store", [consume('store')]);
405
+ }
406
+ #_store = (initializeDeferredDecorator(this, "_store"), void 0);
407
+ /**
408
+ * The store instance to use for making requests. If contexts are available, this
409
+ * will be the `store` on the context, else it will be the store service.
410
+ *
411
+ * @internal
412
+ */
413
+ get store() {
414
+ const store = this.args.store || this._store;
415
+ macroCondition(getGlobalConfig().WarpDriveMirror.env.DEBUG) ? (test => {
416
+ if (!test) {
417
+ throw new Error(moduleExists('ember-provide-consume-context') ? `No store was provided to the <Request> component. Either provide a store via the @store arg or via the context API provided by ember-provide-consume-context.` : `No store was provided to the <Request> component. Either provide a store via the @store arg or by registering a store service.`);
418
+ }
419
+ })(store) : {};
420
+ return store;
421
+ }
422
+ _state = null;
423
+ get state() {
424
+ let {
425
+ _state
426
+ } = this;
427
+ const {
428
+ store
429
+ } = this;
430
+ const {
431
+ subscription
432
+ } = this.args;
433
+ if (_state && (_state.store !== store || subscription)) {
434
+ _state[DISPOSE]();
435
+ _state = null;
436
+ }
437
+ if (subscription) {
438
+ return subscription;
439
+ }
440
+ if (!_state) {
441
+ this._state = _state = createRequestSubscription(store, this.args);
442
+ }
443
+ return _state;
444
+ }
445
+ /**
446
+ * The chrome component to use for rendering the request.
447
+ *
448
+ * @private
449
+ */
450
+ get Chrome() {
451
+ return this.args.chrome || DefaultChrome;
452
+ }
453
+ static {
454
+ decorateMethodV2(this.prototype, "Chrome", [memoized]);
455
+ }
456
+ willDestroy() {
457
+ if (this._state) {
458
+ this._state[DISPOSE]();
459
+ this._state = null;
460
+ }
461
+ }
462
+ static {
463
+ setComponentTemplate(precompileTemplate("\n <this.Chrome @state={{if this.state.isIdle null this.state.reqState}} @features={{this.state.contentFeatures}}>\n {{#if (and this.state.isIdle (has-block \"idle\"))}}\n {{yield to=\"idle\"}}\n\n {{else if this.state.isIdle}}\n <Throw @error={{IdleBlockMissingError}} />\n\n {{else if this.state.reqState.isLoading}}\n {{yield this.state.reqState.loadingState to=\"loading\"}}\n\n {{else if (and this.state.reqState.isCancelled (has-block \"cancelled\"))}}\n {{yield (notNull this.state.reqState.reason) this.state.errorFeatures to=\"cancelled\"}}\n\n {{else if (and this.state.reqState.isError (has-block \"error\"))}}\n {{yield (notNull this.state.reqState.reason) this.state.errorFeatures to=\"error\"}}\n\n {{else if this.state.reqState.isSuccess}}\n {{yield this.state.result this.state.contentFeatures to=\"content\"}}\n\n {{else if (not this.state.reqState.isCancelled)}}\n <Throw @error={{(notNull this.state.reqState.reason)}} />\n {{/if}}\n\n {{yield this.state.reqState to=\"always\"}}\n </this.Chrome>\n ", {
464
+ strictMode: true,
465
+ scope: () => ({
466
+ and,
467
+ Throw,
468
+ IdleBlockMissingError,
469
+ notNull,
470
+ not
471
+ })
472
+ }), this);
473
+ }
474
+ }
475
+
476
+ export { Await, Request, Throw };
@@ -0,0 +1,77 @@
1
+ import { tagForProperty } from '@ember/-internals/metal';
2
+ import { _backburner } from '@ember/runloop';
3
+ import { createCache, track, updateTag, consumeTag, getValue, dirtyTag } from '@glimmer/validator';
4
+ import { macroCondition, getGlobalConfig, importSync } from '@embroider/macros';
5
+ import { setupSignals } from '@warp-drive-mirror/core/configure';
6
+
7
+ const emberDirtyTag = dirtyTag;
8
+ function buildSignalConfig(options) {
9
+ const ARRAY_SIGNAL = options.wellknown.Array;
10
+ return {
11
+ createSignal(obj, key) {
12
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.deprecations.DEPRECATE_COMPUTED_CHAINS)) {
13
+ if (key === ARRAY_SIGNAL) {
14
+ return [tagForProperty(obj, key), tagForProperty(obj, 'length'), tagForProperty(obj, '[]')];
15
+ }
16
+ }
17
+ return tagForProperty(obj, key);
18
+ },
19
+ consumeSignal(signal) {
20
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.deprecations.DEPRECATE_COMPUTED_CHAINS)) {
21
+ if (Array.isArray(signal)) {
22
+ consumeTag(signal[0]);
23
+ consumeTag(signal[1]);
24
+ consumeTag(signal[2]);
25
+ return;
26
+ }
27
+ }
28
+ consumeTag(signal);
29
+ },
30
+ notifySignal(signal) {
31
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.deprecations.DEPRECATE_COMPUTED_CHAINS)) {
32
+ if (Array.isArray(signal)) {
33
+ emberDirtyTag(signal[0]);
34
+ emberDirtyTag(signal[1]);
35
+ emberDirtyTag(signal[2]);
36
+ return;
37
+ }
38
+ }
39
+ emberDirtyTag(signal);
40
+ },
41
+ createMemo: (object, key, fn) => {
42
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.deprecations.DEPRECATE_COMPUTED_CHAINS)) {
43
+ const propertyTag = tagForProperty(object, key);
44
+ const memo = createCache(fn);
45
+ let ret;
46
+ const wrappedFn = () => {
47
+ ret = getValue(memo);
48
+ };
49
+ return () => {
50
+ const tag = track(wrappedFn);
51
+ updateTag(propertyTag, tag);
52
+ consumeTag(tag);
53
+ return ret;
54
+ };
55
+ } else {
56
+ const memo = createCache(fn);
57
+ return () => getValue(memo);
58
+ }
59
+ },
60
+ willSyncFlushWatchers: () => {
61
+ //@ts-expect-error
62
+ return !!_backburner.currentInstance && _backburner._autorun !== true;
63
+ },
64
+ waitFor: async promise => {
65
+ if (macroCondition(getGlobalConfig().WarpDriveMirror.env.TESTING)) {
66
+ const {
67
+ waitForPromise
68
+ } = importSync('@ember/test-waiters');
69
+ return waitForPromise(promise);
70
+ }
71
+ return promise;
72
+ }
73
+ };
74
+ }
75
+ setupSignals(buildSignalConfig);
76
+
77
+ export { buildSignalConfig };
package/logos/README.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # Autogeneration Notice
2
2
 
3
- This directory is maintained in the root of the monorepo and sync'd to public
4
- repositories by running `bun sync-logos`
3
+ This directory is maintained in the root of the monorepo in `/logos/synced` and sync'd
4
+ to public repositories by running `bun sync-logos`
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="1498" height="1047" fill="none" viewBox="0 0 1498 1047"><g filter="url(#a)"><path fill="url(#b)" d="M132 175.075C132 149.076 153.138 128 179.213 128H1318.23c26.08 0 47.22 21.076 47.22 47.075v688.85c0 25.999-21.14 47.075-47.22 47.075H179.213C153.138 911 132 889.924 132 863.925z"/><path fill="#201328" d="M1043.4 587.312c0-39.962 30.84-72.357 68.87-72.357h53.09c38.04 0 68.88-32.395 68.88-72.357v-92.651c0-39.962-30.84-72.358-68.88-72.358h-53.09c-38.01 0-68.82 32.351-68.87 72.275v92.734c0 39.962-30.83 72.357-68.869 72.357h-53.089c-38.036 0-68.871-32.395-68.871-72.357v-87.409c0-39.962-30.835-72.358-68.872-72.358h-51.654c-38.037 0-68.872 32.396-68.872 72.358v87.409c0 39.962-30.835 72.357-68.872 72.357h-53.088c-38.037 0-68.872-32.395-68.872-72.357v-92.652c0-39.961-30.835-72.357-68.872-72.357h-53.088c-38.037 0-68.872 32.396-68.872 72.357v92.652c0 39.962 30.835 72.357 68.872 72.357h53.088c38.037 0 68.872 32.395 68.872 72.357v101.741c0 39.962 30.835 72.358 68.872 72.358h53.088c38.037 0 68.872-32.396 68.872-72.358V587.312c0-39.962 30.835-72.357 68.872-72.357h51.654c38.037 0 68.872 32.395 68.872 72.357v101.741c0 39.962 30.835 72.358 68.871 72.358h53.089c38.039 0 68.869-32.396 68.869-72.358z"/></g><defs><linearGradient id="b" x1="748.724" x2="1167.5" y1="128" y2="1070.23" gradientUnits="userSpaceOnUse"><stop stop-color="#ffc474"/><stop offset="1" stop-color="#ff9809"/></linearGradient><filter id="a" width="1497.45" height="1047" x="0" y="0" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4"/><feGaussianBlur stdDeviation="66"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/><feBlend in2="BackgroundImageFix" result="effect1_dropShadow_757_188"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4"/><feGaussianBlur stdDeviation="18"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="effect1_dropShadow_757_188" result="effect2_dropShadow_757_188"/><feColorMatrix in="SourceAlpha" result="hardAlpha" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/><feOffset dy="4"/><feGaussianBlur stdDeviation="2"/><feComposite in2="hardAlpha" operator="out"/><feColorMatrix values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/><feBlend in2="effect2_dropShadow_757_188" result="effect3_dropShadow_757_188"/><feBlend in="SourceGraphic" in2="effect3_dropShadow_757_188" result="shape"/></filter></defs></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2081" height="200" fill="none" viewBox="0 0 2081 200"><path fill="#000" d="M2064.89 185.359c-15.57 5.16-31.15 8.846-46.72 11.058q-23.22 3.456-47.55 3.456c-20.73 0-39.21-2.212-55.43-6.635q-24.18-6.773-40.77-19.49c-11.06-8.478-19.49-18.844-25.3-31.1-5.8-12.256-8.71-26.125-8.71-41.606 0-14.375 2.91-27.69 8.71-39.947 5.9-12.348 14.19-23.037 24.88-32.068 10.78-9.123 23.78-16.218 38.98-21.286C1928.19 2.58 1945.14 0 1963.85 0c17.23 0 32.99 2.35 47.27 7.05 14.38 4.607 26.68 11.472 36.91 20.595q15.48 13.684 23.91 33.727c5.71 13.361 8.57 28.75 8.57 46.167v12.716h-187.16a48.3 48.3 0 0 0 8.16 16.449c3.87 4.976 9.08 9.215 15.62 12.717 6.54 3.501 14.56 6.22 24.05 8.155 9.58 1.935 21.01 2.903 34.28 2.903 9.4 0 18.61-.553 27.64-1.659 9.04-1.198 17.47-2.719 25.3-4.562q11.745-2.902 21.15-6.358c6.36-2.304 11.47-4.607 15.34-6.911zm-35.38-102.7c-.47-4.7-1.89-9.538-4.29-14.514-2.3-5.069-5.99-9.63-11.06-13.685s-11.7-7.371-19.9-9.952q-12.3-4.008-30.69-4.008-17.28 0-29.85 4.285-12.585 4.284-21.15 10.643c-5.62 4.239-10 8.8-13.13 13.684-3.14 4.884-5.16 9.4-6.09 13.546zm-284.63 112.099h-59.71l-96.06-189.92h57.22l69.11 142.924 68.98-142.924h57.22zm-238.29 0V4.838h51.28v189.92zm-32.63-146.932c-1.38-.461-3.4-1.06-6.08-1.797q-3.87-1.245-9.12-2.35-5.25-1.244-11.61-2.073c-4.15-.553-8.43-.83-12.86-.83-9.21 0-17.83 1.152-25.84 3.456q-11.895 3.317-22.26 8.984a125.3 125.3 0 0 0-19.35 12.717c-5.9 4.7-11.33 9.537-16.31 14.514v114.311h-51.28V4.838h51.28v30.824c6.17-4.608 12.49-9.03 18.94-13.27a163 163 0 0 1 20.32-11.472c7.09-3.318 14.56-5.944 22.39-7.88 7.83-2.026 16.12-3.04 24.88-3.04 3.32 0 6.68.184 10.09.553 3.5.276 6.86.645 10.09 1.106 3.32.46 6.4.967 9.26 1.52s5.35 1.106 7.46 1.659zM1263.71 99.66c0 12.164-1.33 22.991-4 32.483-2.68 9.399-6.45 17.6-11.34 24.604-4.79 7.003-10.6 12.947-17.42 17.831q-10.08 7.325-22.53 11.749c-8.29 2.948-17.23 5.114-26.81 6.496q-14.37 1.935-30 1.935h-120.53V4.838h120.26c10.41 0 20.41.691 29.99 2.073 9.59 1.29 18.52 3.41 26.82 6.359 8.38 2.948 15.99 6.865 22.8 11.749 6.82 4.791 12.63 10.735 17.42 17.83 4.89 7.004 8.66 15.205 11.34 24.605 2.67 9.399 4 20.134 4 32.206m-51.69 0q0-13.685-3.6-23.775c-2.3-6.727-6.08-12.256-11.33-16.587-5.16-4.423-11.93-7.694-20.32-9.814-8.38-2.211-18.61-3.317-30.68-3.317h-63.73v107.262h63.73c12.07 0 22.3-1.06 30.68-3.179 8.39-2.212 15.16-5.529 20.32-9.952 5.25-4.515 9.03-10.137 11.33-16.864q3.6-10.09 3.6-23.774M986.574 63.169q0 14.237-4.699 25.157-4.562 10.92-14.514 18.383-9.952 7.464-25.71 11.335-15.62 3.732-37.735 3.732h-85.285v72.982h-17.278V4.838h102.563q22.116 0 37.735 3.87 15.758 3.732 25.71 11.058t14.514 18.246q4.7 10.92 4.699 25.157m-17.831 0q0-13.546-4.561-21.84-4.423-8.294-13.823-12.716-9.26-4.562-23.636-6.082-14.237-1.52-33.865-1.52h-74.227v84.593h74.227q7.602 0 16.172.138 8.709 0 17.14-.83 8.432-.967 16.034-3.179 7.74-2.349 13.546-7.05 5.945-4.699 9.399-12.301 3.594-7.602 3.594-19.213M766.455 19.49q-4.01-1.244-11.197-2.627-7.049-1.52-18.245-1.52-15.481 0-29.166 3.87-13.545 3.732-25.295 10.229a126.3 126.3 0 0 0-21.563 15.205q-9.951 8.57-17.969 18.245v131.866h-17.278V4.838h17.278V43.54a166 166 0 0 1 20.043-17.555q10.92-8.017 22.945-13.684a125.8 125.8 0 0 1 25.157-8.985Q724.435 0 738.533 0q4.839 0 8.708.276 3.87.14 7.05.553 3.317.277 6.22.691 2.902.416 5.944.968zm-220.33 175.268v-21.01q-9.952 5.39-22.669 9.952-12.579 4.562-26.677 7.879-13.96 3.318-28.751 5.114-14.79 1.797-29.027 1.797-18.522 0-33.312-3.317-14.652-3.318-24.881-9.814-10.228-6.635-15.757-16.31-5.529-9.814-5.529-22.669 0-12.717 6.358-22.393 6.497-9.813 18.384-17.001 11.887-7.326 28.612-12.302 16.864-5.115 37.598-8.57 20.733-3.594 44.784-5.806 24.19-2.349 50.867-3.87V61.925q0-8.846-3.318-15.62-3.317-6.772-9.261-11.749-5.943-5.115-13.96-8.431-8.017-3.456-17.416-5.53-9.262-2.074-19.628-2.902a219 219 0 0 0-20.596-.968q-13.96 0-25.433 1.383-11.473 1.381-21.425 3.87-9.952 2.35-19.075 5.529a563 563 0 0 0-18.384 6.773V14.099q19.213-5.114 40.915-8.846 21.839-3.87 46.305-3.87 20.733 0 38.703 3.593 17.969 3.456 31.238 11.196 13.27 7.74 20.872 20.043 7.603 12.164 7.603 29.718v128.825zm0-102.977q-45.2 2.489-77.268 7.05-31.929 4.561-52.248 11.196-20.32 6.634-29.857 15.481-9.399 8.846-9.399 20.042 0 9.123 4.561 16.173 4.7 7.049 13.408 11.887 8.708 4.7 21.148 7.188 12.44 2.349 27.922 2.349 9.123 0 18.798-.967a276 276 0 0 0 19.49-2.903 319 319 0 0 0 19.075-4.423q9.4-2.627 17.693-5.667t15.066-6.497q6.912-3.455 11.611-7.049zM180.245 4.838l67.73 176.098L318.193 4.838h19.213l-76.438 189.92h-25.71L168.634 23.222l-66.486 171.536h-25.71L0 4.838h19.213l70.218 176.098L157.023 4.838z"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="2081" height="200" fill="none" viewBox="0 0 2081 200"><path fill="#fff" d="M2064.89 185.359c-15.57 5.16-31.15 8.846-46.72 11.058q-23.22 3.456-47.55 3.456c-20.73 0-39.21-2.212-55.43-6.635q-24.18-6.773-40.77-19.49c-11.06-8.478-19.49-18.844-25.3-31.1-5.8-12.256-8.71-26.125-8.71-41.606 0-14.375 2.91-27.69 8.71-39.947 5.9-12.348 14.19-23.037 24.88-32.068 10.78-9.123 23.78-16.218 38.98-21.286C1928.19 2.58 1945.14 0 1963.85 0c17.23 0 32.99 2.35 47.27 7.05 14.38 4.607 26.68 11.472 36.91 20.595q15.48 13.684 23.91 33.727c5.71 13.361 8.57 28.75 8.57 46.167v12.716h-187.16a48.3 48.3 0 0 0 8.16 16.449c3.87 4.976 9.08 9.215 15.62 12.717 6.54 3.501 14.56 6.22 24.05 8.155 9.58 1.935 21.01 2.903 34.28 2.903 9.4 0 18.61-.553 27.64-1.659 9.04-1.198 17.47-2.719 25.3-4.562q11.745-2.902 21.15-6.358c6.36-2.304 11.47-4.607 15.34-6.911zm-35.38-102.7c-.47-4.7-1.89-9.538-4.29-14.514-2.3-5.069-5.99-9.63-11.06-13.685s-11.7-7.371-19.9-9.952q-12.3-4.008-30.69-4.008-17.28 0-29.85 4.285-12.585 4.284-21.15 10.643c-5.62 4.239-10 8.8-13.13 13.684-3.14 4.884-5.16 9.4-6.09 13.546zm-284.63 112.099h-59.71l-96.06-189.92h57.22l69.11 142.924 68.98-142.924h57.22zm-238.29 0V4.838h51.28v189.92zm-32.63-146.932c-1.38-.461-3.4-1.06-6.08-1.797q-3.87-1.245-9.12-2.35-5.25-1.244-11.61-2.073c-4.15-.553-8.43-.83-12.86-.83-9.21 0-17.83 1.152-25.84 3.456q-11.895 3.317-22.26 8.984a125.3 125.3 0 0 0-19.35 12.717c-5.9 4.7-11.33 9.537-16.31 14.514v114.311h-51.28V4.838h51.28v30.824c6.17-4.608 12.49-9.03 18.94-13.27a163 163 0 0 1 20.32-11.472c7.09-3.318 14.56-5.944 22.39-7.88 7.83-2.026 16.12-3.04 24.88-3.04 3.32 0 6.68.184 10.09.553 3.5.276 6.86.645 10.09 1.106 3.32.46 6.4.967 9.26 1.52s5.35 1.106 7.46 1.659zM1263.71 99.66c0 12.164-1.33 22.991-4 32.483-2.68 9.399-6.45 17.6-11.34 24.604-4.79 7.003-10.6 12.947-17.42 17.831q-10.08 7.325-22.53 11.749c-8.29 2.948-17.23 5.114-26.81 6.496q-14.37 1.935-30 1.935h-120.53V4.838h120.26c10.41 0 20.41.691 29.99 2.073 9.59 1.29 18.52 3.41 26.82 6.359 8.38 2.948 15.99 6.865 22.8 11.749 6.82 4.791 12.63 10.735 17.42 17.83 4.89 7.004 8.66 15.205 11.34 24.605 2.67 9.399 4 20.134 4 32.206m-51.69 0q0-13.685-3.6-23.775c-2.3-6.727-6.08-12.256-11.33-16.587-5.16-4.423-11.93-7.694-20.32-9.814-8.38-2.211-18.61-3.317-30.68-3.317h-63.73v107.262h63.73c12.07 0 22.3-1.06 30.68-3.179 8.39-2.212 15.16-5.529 20.32-9.952 5.25-4.515 9.03-10.137 11.33-16.864q3.6-10.09 3.6-23.774M986.574 63.169q0 14.237-4.699 25.157-4.562 10.92-14.514 18.383-9.952 7.464-25.71 11.335-15.62 3.732-37.735 3.732h-85.285v72.982h-17.278V4.838h102.563q22.116 0 37.735 3.87 15.758 3.732 25.71 11.058t14.514 18.246q4.7 10.92 4.699 25.157m-17.831 0q0-13.546-4.561-21.84-4.423-8.294-13.823-12.716-9.26-4.562-23.636-6.082-14.237-1.52-33.865-1.52h-74.227v84.593h74.227q7.602 0 16.172.138 8.709 0 17.14-.83 8.432-.967 16.034-3.179 7.74-2.349 13.546-7.05 5.945-4.699 9.399-12.301 3.594-7.602 3.594-19.213M766.455 19.49q-4.01-1.244-11.197-2.627-7.049-1.52-18.245-1.52-15.481 0-29.166 3.87-13.545 3.732-25.295 10.229a126.3 126.3 0 0 0-21.563 15.205q-9.951 8.57-17.969 18.245v131.866h-17.278V4.838h17.278V43.54a166 166 0 0 1 20.043-17.555q10.92-8.017 22.945-13.684a125.8 125.8 0 0 1 25.157-8.985Q724.435 0 738.533 0q4.839 0 8.708.276 3.87.14 7.05.553 3.317.277 6.22.691 2.902.416 5.944.968zm-220.33 175.268v-21.01q-9.952 5.39-22.669 9.952-12.579 4.562-26.677 7.879-13.96 3.318-28.751 5.114-14.79 1.797-29.027 1.797-18.522 0-33.312-3.317-14.652-3.318-24.881-9.814-10.228-6.635-15.757-16.31-5.529-9.814-5.529-22.669 0-12.717 6.358-22.393 6.497-9.813 18.384-17.001 11.887-7.326 28.612-12.302 16.864-5.115 37.598-8.57 20.733-3.594 44.784-5.806 24.19-2.349 50.867-3.87V61.925q0-8.846-3.318-15.62-3.317-6.772-9.261-11.749-5.943-5.115-13.96-8.431-8.017-3.456-17.416-5.53-9.262-2.074-19.628-2.902a219 219 0 0 0-20.596-.968q-13.96 0-25.433 1.383-11.473 1.381-21.425 3.87-9.952 2.35-19.075 5.529a563 563 0 0 0-18.384 6.773V14.099q19.213-5.114 40.915-8.846 21.839-3.87 46.305-3.87 20.733 0 38.703 3.593 17.969 3.456 31.238 11.196 13.27 7.74 20.872 20.043 7.603 12.164 7.603 29.718v128.825zm0-102.977q-45.2 2.489-77.268 7.05-31.929 4.561-52.248 11.196-20.32 6.634-29.857 15.481-9.399 8.846-9.399 20.042 0 9.123 4.561 16.173 4.7 7.049 13.408 11.887 8.708 4.7 21.148 7.188 12.44 2.349 27.922 2.349 9.123 0 18.798-.967a276 276 0 0 0 19.49-2.903 319 319 0 0 0 19.075-4.423q9.4-2.627 17.693-5.667t15.066-6.497q6.912-3.455 11.611-7.049zM180.245 4.838l67.73 176.098L318.193 4.838h19.213l-76.438 189.92h-25.71L168.634 23.222l-66.486 171.536h-25.71L0 4.838h19.213l70.218 176.098L157.023 4.838z"/></svg>
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@warp-drive-mirror/ember",
3
3
  "description": "Data bindings and utilities for Ember applications using WarpDrive",
4
- "version": "5.8.0-alpha.3",
4
+ "version": "5.8.0-alpha.32",
5
5
  "license": "MIT",
6
6
  "author": "Chris Thoburn <runspired@users.noreply.github.com>",
7
7
  "repository": {
@@ -38,7 +38,7 @@
38
38
  },
39
39
  "dependencies": {
40
40
  "@embroider/macros": "^1.18.1",
41
- "@warp-drive-mirror/core": "5.8.0-alpha.3"
41
+ "@warp-drive-mirror/core": "5.8.0-alpha.32"
42
42
  },
43
43
  "peerDependenciesMeta": {
44
44
  "ember-provide-consume-context": {
@@ -60,8 +60,8 @@
60
60
  "@embroider/addon-dev": "^8.1.0",
61
61
  "@ember/test-helpers": "5.2.0",
62
62
  "@ember/test-waiters": "^4.1.1",
63
- "@warp-drive/internal-config": "5.8.0-alpha.3",
64
- "@warp-drive-mirror/core": "5.8.0-alpha.3",
63
+ "@warp-drive/internal-config": "5.8.0-alpha.32",
64
+ "@warp-drive-mirror/core": "5.8.0-alpha.32",
65
65
  "babel-plugin-ember-template-compilation": "^2.4.1",
66
66
  "ember-template-imports": "^4.3.0",
67
67
  "ember-source": "~6.6.0",
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
3
- <path fill="#0969da" d="m1096.3 402.82c-53.148-53.008-117.12-79.516-191.93-79.516-67.488 0-126.55 21.938-177.16 65.805-50.617 43.871-80.988 98.285-91.113 163.25l53.57 4.2188c14.625 0.28125 25.449 6.75 32.48 19.406h18.984c11.809 0 17.715 5.7617 17.715 17.293s-5.9062 17.293-17.715 17.293h-17.297c-6.75 14.344-18.137 21.797-34.168 22.359l-53.57 4.6406c10.125 64.68 40.496 118.95 91.113 162.82 50.617 43.871 109.68 65.805 177.16 65.805 74.805 0 138.78-26.574 191.93-79.723 53.152-53.148 79.727-116.98 79.727-191.51 0-75.086-26.574-139.13-79.727-192.14zm-79.422 185.27c0 2.9531 2.3906 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477 0-2.9492-2.3945-5.3438-5.3477-5.3438-2.9531 0-5.3438 2.3945-5.3438 5.3438zm-104.54-111.07c0 2.9531 2.3945 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477s-2.3945-5.3438-5.3477-5.3438c-2.9492 0-5.3438 2.3906-5.3438 5.3438zm-12.473 0c0 2.9531 2.3906 5.3477 5.3438 5.3477s5.3477-2.3945 5.3477-5.3477-2.3945-5.3438-5.3477-5.3438-5.3438 2.3906-5.3438 5.3438zm117.01 123.55c0 2.9492 2.3906 5.3438 5.3438 5.3438 2.9531 0 5.3477-2.3945 5.3477-5.3438 0-2.9531-2.3945-5.3477-5.3477-5.3477-2.9531 0-5.3438 2.3945-5.3438 5.3477zm-104.54 111.66c0 2.9531 2.3945 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477s-2.3945-5.3438-5.3477-5.3438c-2.9492 0-5.3438 2.3906-5.3438 5.3438zm-12.473 0c0 2.9531 2.3906 5.3477 5.3438 5.3477s5.3477-2.3945 5.3477-5.3477-2.3945-5.3438-5.3477-5.3438-5.3438 2.3906-5.3438 5.3438zm-848-318.48c14.062-2.5312 30.934-4.5 50.621-5.9062l-46.402-0.84375zm499.86 169.15c-8.7188-2.25-18.141-8.7188-28.266-19.402l-101.23-103.35h-111.36l173.79 126.12v4.2188c21.652 6.1836 44.008 3.6562 67.07-7.5938zm47.664-148.48c-0.84375 3.3711-2.8125 6.6055-5.9062 9.6992h-5.0625l-6.3242-5.0625h-79.305v-4.6367zm-5.9062-16.031c3.0938 3.0938 5.0625 6.4688 5.9062 10.125h-96.598v-4.6406h79.305l6.3242-5.4844zm-541.62 397.78 4.2188 6.7461 46.402-0.84375c-22.5-2.2461-39.371-4.2148-50.621-5.9023zm499.86-169.15c-23.062-11.531-45.418-14.062-67.07-7.5938v4.2188l-173.79 126.12h111.36l101.23-103.77c10.406-10.684 19.828-17.012 28.266-18.98zm47.664 148.48h-96.598v-4.6406h79.305l6.3242-5.4805h5.0625c3.0938 3.6523 5.0625 7.0273 5.9062 10.121zm-5.9062 15.609h-5.0625l-6.3242-5.0625h-79.305v-4.6406h96.598c-0.84375 3.0938-2.8125 6.3281-5.9062 9.7031zm-102.5 9.6992c3.6562 1.4062 7.4531 2.1094 11.391 2.1094h64.961c24.746 0 37.121-8.4336 37.121-25.309 0-8.4375-4.6406-14.691-13.922-18.77-9.2773-4.0781-17.012-6.1172-23.199-6.1172h-64.961c-4.7812 0-8.5781 0.5625-11.391 1.6875h-333.66c-5.0625 0-28.543 1.6172-70.445 4.8516-41.902 3.2344-62.852 7.3828-62.852 12.441v11.812c0 4.5 20.949 8.5078 62.852 12.023 41.902 3.5156 65.383 5.2695 70.445 5.2695zm125.28-207.54h-42.602c-3.375 1.125-3.375 2.25 0 3.375h42.602zm-43.445 8.4375h-5.4844v-13.5h5.4844c17.152-6.1875 33.605-9.9844 49.352-11.391l4.6406-25.309 4.6406 0.42188c0.5625-4.2188 1.6875-10.262 3.375-18.137-28.684-0.5625-64.398 1.6875-107.14 6.75 3.6562 4.2148 7.4531 7.8711 11.391 10.965 4.7812 3.375 9.4219 5.625 13.918 6.75l12.656 2.9531-11.812 5.9062c-13.496 6.75-30.23 10.121-50.195 10.121-5.0625 0-8.5781-0.14062-10.547-0.42188-4.2188-0.5625-7.5898-1.1211-10.121-1.6836l-3.375-1.2656v-5.4844l-24.043-17.297c-41.34 5.625-69.32 8.5781-83.945 8.8594-31.496 0.28125-47.242 11.953-47.242 35.012 0 22.215 15.746 33.887 47.242 35.012 18.844 0.28125 46.824 3.2344 83.945 8.8594l24.043-17.297v-5.4844l3.375-1.2656c2.5312-0.84375 5.9023-1.4062 10.121-1.6875 1.9688-0.28125 5.4844-0.42187 10.547-0.42187 19.965 0 36.699 3.375 50.195 10.125l11.812 5.4844-12.656 3.375c-4.4961 0.84375-9.1367 3.0938-13.918 6.75-3.6562 2.2461-7.4531 5.7617-11.391 10.543 40.777 5.0625 76.492 7.4531 107.14 7.1719-1.6875-7.3125-2.8125-13.359-3.375-18.137h-4.6406l-4.6406-24.891c-17.434-2.25-33.887-6.043-49.352-11.387zm48.508-20.25c-12.652 1.6875-23.762 3.9375-33.324 6.75h29.105l3.7969-4.2188zm-4.2188 20.25h-29.105c9.5625 2.5312 20.672 4.7812 33.324 6.7461l-0.42188-2.5273zm136.67-8.4375c0-8.4375-4.2188-12.656-12.652-12.656h-21.516c-6.4688-12.652-16.59-18.98-30.371-18.98l-58.211-5.0625-5.9062 29.527-4.2188 5.0625v7.5938l4.2188 5.0625 5.9062 29.105 58.211-5.0625c15.469 0 26.012-7.3125 31.637-21.934h20.25c8.4336 0 12.652-4.2188 12.652-12.656zm-46.82 1.6875c0-11.531-5.9062-17.297-17.719-17.297-11.527 0-17.293 5.7656-17.293 17.297 0 11.812 5.7656 17.715 17.293 17.715 11.812 0 17.719-5.9023 17.719-17.715zm4.6406 0c0 14.902-7.4531 22.355-22.359 22.355-14.902 0-22.355-7.4531-22.355-22.355 0-14.906 7.4531-22.355 22.355-22.355 14.906 0 22.359 7.4492 22.359 22.355zm-13.922 0c0-5.625-2.8125-8.4375-8.4375-8.4375-5.3438 0-8.0156 2.8125-8.0156 8.4375s2.6719 8.4375 8.0156 8.4375c5.625 0 8.4375-2.8125 8.4375-8.4375zm4.6406 0c0 8.7188-4.3594 13.078-13.078 13.078-8.4375 0-12.652-4.3594-12.652-13.078s4.2148-13.078 12.652-13.078c8.7188 0 13.078 4.3594 13.078 13.078zm-43.871-2.1094v4.2188h-35.012v-4.2188zm258.58 2.1094c-0.5625-8.4375-4.7812-12.656-12.656-12.656-8.4336 0-12.652 4.2188-12.652 12.656s4.2188 12.656 12.652 12.656c8.4375 0 12.656-4.2188 12.656-12.656zm4.6406 0c0 11.531-5.7656 17.293-17.297 17.293-11.527 0-17.293-5.7617-17.293-17.293s5.7656-17.297 17.293-17.297c11.531 0 17.297 5.7656 17.297 17.297zm32.48 0c0-13.781-4.9219-25.59-14.766-35.434-9.5586-9.5625-21.23-14.344-35.012-14.344-15.184 0-31.777 5.7656-49.773 17.297-18.559 11.531-27.84 22.355-27.84 32.48 0 9.8438 9.2812 20.668 27.84 32.48 17.996 11.531 34.59 17.293 49.773 17.293 13.781 0 25.453-4.918 35.012-14.762 9.8438-9.5625 14.766-21.234 14.766-35.012zm5.0625 0c0 14.902-5.3438 27.699-16.031 38.387-10.684 10.684-23.621 16.027-38.809 16.027-15.746 0-33.18-6.0469-52.305-18.137-20.246-12.656-30.371-24.746-30.371-36.277s10.125-23.762 30.371-36.699c19.125-12.094 36.559-18.137 52.305-18.137 14.625 0 27.562 5.3398 38.809 16.027 10.688 10.969 16.031 23.902 16.031 38.809zm-54.418-29.105c-3.9336 0-10.262 1.6875-18.98 5.0625-7.875 3.9375-11.812 6.4648-11.812 7.5898v32.48c0 3.0938 3.9375 5.625 11.812 7.5938 7.875 3.375 14.203 5.0625 18.98 5.0625 19.406 0 29.391-9.2812 29.953-27.84 0-19.688-9.9844-29.668-29.953-29.949zm34.59 29.105v0.84375c0 21.371-11.527 32.34-34.59 32.902-4.4961 0-11.527-1.8281-21.09-5.4844-7.0312-3.9375-10.969-6.3281-11.809-7.1719-1.6875-1.4062-2.5312-3.0938-2.5312-5.0625v-32.48c0-1.4062 0.70312-2.9492 2.1094-4.6367 3.0898-2.8125 7.168-5.2031 12.23-7.1719 9-3.6562 16.031-5.4844 21.09-5.4844 22.5 0.28125 34.027 11.531 34.59 33.746zm-448.4-206.27h-333.66c-5.0625 0-28.543 1.6875-70.445 5.0625-41.902 3.375-62.852 7.5938-62.852 12.656v11.387c0 4.7812 20.949 8.8594 62.852 12.234 41.902 3.375 65.383 5.0625 70.445 5.0625h333.66c3.6562 1.4062 7.4531 2.1094 11.391 2.1094h64.961c5.3438 0 12.867-2.25 22.566-6.75 9.7031-4.5 14.555-10.547 14.555-18.137 0.28125-16.875-12.094-25.312-37.121-25.312h-64.961c-4.7812 0-8.5781 0.5625-11.391 1.6875z" fill-rule="evenodd"/>
4
- </svg>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <svg width="1200pt" height="1200pt" version="1.1" viewBox="0 0 1200 1200" xmlns="http://www.w3.org/2000/svg">
3
- <path fill="#FFC474" d="m1096.3 402.82c-53.148-53.008-117.12-79.516-191.93-79.516-67.488 0-126.55 21.938-177.16 65.805-50.617 43.871-80.988 98.285-91.113 163.25l53.57 4.2188c14.625 0.28125 25.449 6.75 32.48 19.406h18.984c11.809 0 17.715 5.7617 17.715 17.293s-5.9062 17.293-17.715 17.293h-17.297c-6.75 14.344-18.137 21.797-34.168 22.359l-53.57 4.6406c10.125 64.68 40.496 118.95 91.113 162.82 50.617 43.871 109.68 65.805 177.16 65.805 74.805 0 138.78-26.574 191.93-79.723 53.152-53.148 79.727-116.98 79.727-191.51 0-75.086-26.574-139.13-79.727-192.14zm-79.422 185.27c0 2.9531 2.3906 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477 0-2.9492-2.3945-5.3438-5.3477-5.3438-2.9531 0-5.3438 2.3945-5.3438 5.3438zm-104.54-111.07c0 2.9531 2.3945 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477s-2.3945-5.3438-5.3477-5.3438c-2.9492 0-5.3438 2.3906-5.3438 5.3438zm-12.473 0c0 2.9531 2.3906 5.3477 5.3438 5.3477s5.3477-2.3945 5.3477-5.3477-2.3945-5.3438-5.3477-5.3438-5.3438 2.3906-5.3438 5.3438zm117.01 123.55c0 2.9492 2.3906 5.3438 5.3438 5.3438 2.9531 0 5.3477-2.3945 5.3477-5.3438 0-2.9531-2.3945-5.3477-5.3477-5.3477-2.9531 0-5.3438 2.3945-5.3438 5.3477zm-104.54 111.66c0 2.9531 2.3945 5.3477 5.3438 5.3477 2.9531 0 5.3477-2.3945 5.3477-5.3477s-2.3945-5.3438-5.3477-5.3438c-2.9492 0-5.3438 2.3906-5.3438 5.3438zm-12.473 0c0 2.9531 2.3906 5.3477 5.3438 5.3477s5.3477-2.3945 5.3477-5.3477-2.3945-5.3438-5.3477-5.3438-5.3438 2.3906-5.3438 5.3438zm-848-318.48c14.062-2.5312 30.934-4.5 50.621-5.9062l-46.402-0.84375zm499.86 169.15c-8.7188-2.25-18.141-8.7188-28.266-19.402l-101.23-103.35h-111.36l173.79 126.12v4.2188c21.652 6.1836 44.008 3.6562 67.07-7.5938zm47.664-148.48c-0.84375 3.3711-2.8125 6.6055-5.9062 9.6992h-5.0625l-6.3242-5.0625h-79.305v-4.6367zm-5.9062-16.031c3.0938 3.0938 5.0625 6.4688 5.9062 10.125h-96.598v-4.6406h79.305l6.3242-5.4844zm-541.62 397.78 4.2188 6.7461 46.402-0.84375c-22.5-2.2461-39.371-4.2148-50.621-5.9023zm499.86-169.15c-23.062-11.531-45.418-14.062-67.07-7.5938v4.2188l-173.79 126.12h111.36l101.23-103.77c10.406-10.684 19.828-17.012 28.266-18.98zm47.664 148.48h-96.598v-4.6406h79.305l6.3242-5.4805h5.0625c3.0938 3.6523 5.0625 7.0273 5.9062 10.121zm-5.9062 15.609h-5.0625l-6.3242-5.0625h-79.305v-4.6406h96.598c-0.84375 3.0938-2.8125 6.3281-5.9062 9.7031zm-102.5 9.6992c3.6562 1.4062 7.4531 2.1094 11.391 2.1094h64.961c24.746 0 37.121-8.4336 37.121-25.309 0-8.4375-4.6406-14.691-13.922-18.77-9.2773-4.0781-17.012-6.1172-23.199-6.1172h-64.961c-4.7812 0-8.5781 0.5625-11.391 1.6875h-333.66c-5.0625 0-28.543 1.6172-70.445 4.8516-41.902 3.2344-62.852 7.3828-62.852 12.441v11.812c0 4.5 20.949 8.5078 62.852 12.023 41.902 3.5156 65.383 5.2695 70.445 5.2695zm125.28-207.54h-42.602c-3.375 1.125-3.375 2.25 0 3.375h42.602zm-43.445 8.4375h-5.4844v-13.5h5.4844c17.152-6.1875 33.605-9.9844 49.352-11.391l4.6406-25.309 4.6406 0.42188c0.5625-4.2188 1.6875-10.262 3.375-18.137-28.684-0.5625-64.398 1.6875-107.14 6.75 3.6562 4.2148 7.4531 7.8711 11.391 10.965 4.7812 3.375 9.4219 5.625 13.918 6.75l12.656 2.9531-11.812 5.9062c-13.496 6.75-30.23 10.121-50.195 10.121-5.0625 0-8.5781-0.14062-10.547-0.42188-4.2188-0.5625-7.5898-1.1211-10.121-1.6836l-3.375-1.2656v-5.4844l-24.043-17.297c-41.34 5.625-69.32 8.5781-83.945 8.8594-31.496 0.28125-47.242 11.953-47.242 35.012 0 22.215 15.746 33.887 47.242 35.012 18.844 0.28125 46.824 3.2344 83.945 8.8594l24.043-17.297v-5.4844l3.375-1.2656c2.5312-0.84375 5.9023-1.4062 10.121-1.6875 1.9688-0.28125 5.4844-0.42187 10.547-0.42187 19.965 0 36.699 3.375 50.195 10.125l11.812 5.4844-12.656 3.375c-4.4961 0.84375-9.1367 3.0938-13.918 6.75-3.6562 2.2461-7.4531 5.7617-11.391 10.543 40.777 5.0625 76.492 7.4531 107.14 7.1719-1.6875-7.3125-2.8125-13.359-3.375-18.137h-4.6406l-4.6406-24.891c-17.434-2.25-33.887-6.043-49.352-11.387zm48.508-20.25c-12.652 1.6875-23.762 3.9375-33.324 6.75h29.105l3.7969-4.2188zm-4.2188 20.25h-29.105c9.5625 2.5312 20.672 4.7812 33.324 6.7461l-0.42188-2.5273zm136.67-8.4375c0-8.4375-4.2188-12.656-12.652-12.656h-21.516c-6.4688-12.652-16.59-18.98-30.371-18.98l-58.211-5.0625-5.9062 29.527-4.2188 5.0625v7.5938l4.2188 5.0625 5.9062 29.105 58.211-5.0625c15.469 0 26.012-7.3125 31.637-21.934h20.25c8.4336 0 12.652-4.2188 12.652-12.656zm-46.82 1.6875c0-11.531-5.9062-17.297-17.719-17.297-11.527 0-17.293 5.7656-17.293 17.297 0 11.812 5.7656 17.715 17.293 17.715 11.812 0 17.719-5.9023 17.719-17.715zm4.6406 0c0 14.902-7.4531 22.355-22.359 22.355-14.902 0-22.355-7.4531-22.355-22.355 0-14.906 7.4531-22.355 22.355-22.355 14.906 0 22.359 7.4492 22.359 22.355zm-13.922 0c0-5.625-2.8125-8.4375-8.4375-8.4375-5.3438 0-8.0156 2.8125-8.0156 8.4375s2.6719 8.4375 8.0156 8.4375c5.625 0 8.4375-2.8125 8.4375-8.4375zm4.6406 0c0 8.7188-4.3594 13.078-13.078 13.078-8.4375 0-12.652-4.3594-12.652-13.078s4.2148-13.078 12.652-13.078c8.7188 0 13.078 4.3594 13.078 13.078zm-43.871-2.1094v4.2188h-35.012v-4.2188zm258.58 2.1094c-0.5625-8.4375-4.7812-12.656-12.656-12.656-8.4336 0-12.652 4.2188-12.652 12.656s4.2188 12.656 12.652 12.656c8.4375 0 12.656-4.2188 12.656-12.656zm4.6406 0c0 11.531-5.7656 17.293-17.297 17.293-11.527 0-17.293-5.7617-17.293-17.293s5.7656-17.297 17.293-17.297c11.531 0 17.297 5.7656 17.297 17.297zm32.48 0c0-13.781-4.9219-25.59-14.766-35.434-9.5586-9.5625-21.23-14.344-35.012-14.344-15.184 0-31.777 5.7656-49.773 17.297-18.559 11.531-27.84 22.355-27.84 32.48 0 9.8438 9.2812 20.668 27.84 32.48 17.996 11.531 34.59 17.293 49.773 17.293 13.781 0 25.453-4.918 35.012-14.762 9.8438-9.5625 14.766-21.234 14.766-35.012zm5.0625 0c0 14.902-5.3438 27.699-16.031 38.387-10.684 10.684-23.621 16.027-38.809 16.027-15.746 0-33.18-6.0469-52.305-18.137-20.246-12.656-30.371-24.746-30.371-36.277s10.125-23.762 30.371-36.699c19.125-12.094 36.559-18.137 52.305-18.137 14.625 0 27.562 5.3398 38.809 16.027 10.688 10.969 16.031 23.902 16.031 38.809zm-54.418-29.105c-3.9336 0-10.262 1.6875-18.98 5.0625-7.875 3.9375-11.812 6.4648-11.812 7.5898v32.48c0 3.0938 3.9375 5.625 11.812 7.5938 7.875 3.375 14.203 5.0625 18.98 5.0625 19.406 0 29.391-9.2812 29.953-27.84 0-19.688-9.9844-29.668-29.953-29.949zm34.59 29.105v0.84375c0 21.371-11.527 32.34-34.59 32.902-4.4961 0-11.527-1.8281-21.09-5.4844-7.0312-3.9375-10.969-6.3281-11.809-7.1719-1.6875-1.4062-2.5312-3.0938-2.5312-5.0625v-32.48c0-1.4062 0.70312-2.9492 2.1094-4.6367 3.0898-2.8125 7.168-5.2031 12.23-7.1719 9-3.6562 16.031-5.4844 21.09-5.4844 22.5 0.28125 34.027 11.531 34.59 33.746zm-448.4-206.27h-333.66c-5.0625 0-28.543 1.6875-70.445 5.0625-41.902 3.375-62.852 7.5938-62.852 12.656v11.387c0 4.7812 20.949 8.8594 62.852 12.234 41.902 3.375 65.383 5.0625 70.445 5.0625h333.66c3.6562 1.4062 7.4531 2.1094 11.391 2.1094h64.961c5.3438 0 12.867-2.25 22.566-6.75 9.7031-4.5 14.555-10.547 14.555-18.137 0.28125-16.875-12.094-25.312-37.121-25.312h-64.961c-4.7812 0-8.5781 0.5625-11.391 1.6875z" fill-rule="evenodd"/>
4
- </svg>
@@ -1 +0,0 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><path d="M91.36 33.566q-6.645-6.623-15.997-6.625-8.439 0-14.761 5.485-6.329 5.484-7.594 13.605l4.465.352Q59.3 46.418 60.18 48h1.582q1.476 0 1.476 1.441 0 1.44-1.476 1.438H60.32q-.843 1.793-2.847 1.863l-4.465.387q1.266 8.085 7.594 13.57t14.761 5.485q9.352 0 15.996-6.645 6.645-6.646 6.645-15.957 0-9.389-6.645-16.012Zm-6.622 15.442a.445.445 0 1 0 .89 0 .445.445 0 0 0-.89 0m-8.71-9.258c0 .246.199.45.445.45a.45.45 0 0 0 .445-.45.445.445 0 1 0-.89 0m-1.04 0c0 .246.2.45.446.45a.45.45 0 0 0 .445-.45.445.445 0 1 0-.89 0m9.75 10.297a.445.445 0 1 0 .89 0 .445.445 0 0 0-.89 0m-8.71 9.305a.445.445 0 1 0 .89 0 .445.445 0 0 0-.89 0m-1.04 0a.445.445 0 1 0 .89 0 .445.445 0 0 0-.89 0M4.32 32.812q1.757-.315 4.22-.492l-3.868-.07ZM45.977 46.91q-1.09-.28-2.356-1.617l-8.437-8.613h-9.278l14.48 10.508v.351q2.708.774 5.59-.633Zm3.972-12.375q-.105.421-.492.809h-.422l-.527-.422h-6.61v-.387Zm-.492-1.336q.387.388.492.844H41.9v-.387h6.609l.527-.457ZM4.32 66.348l.352.562 3.867-.07q-2.812-.282-4.219-.492M45.977 52.25q-2.883-1.44-5.59-.633v.352L25.907 62.48h9.277l8.437-8.648q1.3-1.335 2.356-1.582m3.972 12.375H41.9v-.387h6.609l.527-.457h.422q.387.457.492.844m-.492 1.3h-.422l-.527-.421h-6.61v-.387h8.051q-.105.387-.492.809m-8.543.81q.457.175.95.175h5.413q3.094 0 3.094-2.11 0-1.052-1.16-1.562t-1.934-.511h-5.414q-.598 0-.949.14H13.11q-.633.001-5.87.406-5.24.404-5.239 1.036v.984q0 .561 5.238 1 5.239.44 5.871.441Zm10.441-17.297h-3.55q-.423.14 0 .28h3.55Zm-3.62.703h-.458v-1.125h.457q2.145-.773 4.114-.95l.386-2.109.387.035c.047-.351.14-.851.281-1.508q-3.585-.07-8.93.563.458.523.95.91.597.422 1.16.563l1.055.246-.985.492q-1.688.843-4.183.844-.633 0-.88-.036a10 10 0 0 1-.843-.14l-.281-.106v-.457l-2.004-1.441q-5.162.704-6.992.738-3.938.035-3.938 2.918 0 2.777 3.938 2.918 2.356.036 6.992.738l2.004-1.441v-.457l.281-.106q.316-.105.844-.14.246-.035.879-.035 2.496 0 4.183.843l.985.457-1.055.282q-.563.106-1.16.562-.457.281-.95.88 5.1.631 8.93.597-.21-.915-.28-1.512h-.388l-.386-2.074a20.7 20.7 0 0 1-4.114-.95m4.042-1.688q-1.581.21-2.777.563h2.426l.316-.352Zm-.351 1.688H49q1.196.316 2.777.562l-.035-.21Zm11.386-.703q0-1.055-1.05-1.055h-1.793q-.81-1.582-2.532-1.582l-4.851-.422-.492 2.46-.352.423v.633l.352.421.492 2.426 4.852-.422q1.933 0 2.636-1.828h1.688q1.05 0 1.05-1.054m-3.898.14q0-1.44-1.477-1.441-1.44 0-1.44 1.441 0 1.476 1.44 1.477 1.477 0 1.477-1.477m.387 0q0 1.863-1.864 1.863-1.863 0-1.863-1.863t1.864-1.863 1.863 1.863m-1.16 0q0-.703-.703-.703-.668 0-.668.703t.667.703q.704 0 .704-.703m.386 0q0 1.09-1.09 1.09-1.054 0-1.054-1.09t1.054-1.09q1.09 0 1.09 1.09m-3.656-.176v.352h-2.918v-.352Zm21.547.176q-.07-1.055-1.055-1.055-1.054 0-1.054 1.055t1.054 1.055 1.055-1.055m.387 0q0 1.442-1.442 1.442-1.44 0-1.441-1.442 0-1.44 1.441-1.441 1.442 0 1.442 1.441m2.707 0q0-1.723-1.23-2.953-1.196-1.195-2.919-1.195-1.898 0-4.148 1.441-2.32 1.441-2.32 2.707 0 1.23 2.32 2.707 2.25 1.442 4.148 1.442 1.723 0 2.918-1.23 1.23-1.196 1.23-2.919m.422 0q0 1.863-1.336 3.2-1.337 1.335-3.235 1.335-1.968 0-4.36-1.511-2.53-1.583-2.53-3.024 0-1.44 2.53-3.058c1.595-1.008 3.048-1.508 4.36-1.508 1.219 0 2.297.441 3.235 1.332q1.335 1.371 1.336 3.234m-4.536-2.426q-.492 0-1.582.422-.984.493-.984.633v2.707q0 .387.984.633.985.422 1.582.422 2.427 0 2.497-2.32 0-2.461-2.497-2.497m2.883 2.426v.07q0 2.673-2.883 2.743-.562 0-1.757-.457-.879-.493-.985-.598a.53.53 0 0 1-.21-.422v-2.707q0-.175.175-.387.387-.351 1.02-.597 1.125-.457 1.757-.457 2.813.034 2.883 2.812M40.914 32.391H13.11q-.633 0-5.87.422-5.24.42-5.239 1.054v.95q0 .597 5.238 1.019t5.871.422h27.805q.457.176.95.176h5.413q.667 0 1.88-.563t1.214-1.512q.035-2.109-3.094-2.109h-5.414q-.598 0-.949.14m0 0" style="stroke:none;fill-rule:evenodd;fill:#ffc474;fill-opacity:1"/></svg>