@noobsociety/nsds 0.2.0 → 0.2.1

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.
package/dist/index.js CHANGED
@@ -1,587 +1,1984 @@
1
- import { jsx as t, jsxs as i } from "react/jsx-runtime";
2
- const a = (...h) => h.filter(Boolean).join(" ");
3
- function p(h, e) {
4
- return e ? { ...h, ...e } : h;
5
- }
6
- const I = {
7
- gold: "var(--ns-gold)"
8
- }, x = {
9
- done: { className: "ns-quest-card--done", label: "HOLDS", icon: "✓" },
10
- active: { className: "ns-quest-card--active", label: "BUILDING", icon: "▶" },
11
- planned: { className: "ns-quest-card--planned", label: "PLANNED", icon: "◌" },
12
- locked: { className: "ns-quest-card--locked", label: "LATER", icon: "✦" }
13
- }, k = /* @__PURE__ */ new Set(["play", "ghost"]), B = /* @__PURE__ */ new Set(["sm", "md", "lg"]);
14
- function Y({
15
- variant: h = "play",
16
- size: e = "md",
17
- href: c,
18
- onClick: l,
19
- children: d,
20
- disabled: r = !1,
21
- className: f,
22
- type: n = "button",
23
- ...w
24
- }) {
25
- const v = k.has(h) ? h : "play", b = B.has(e) ? e : "md", m = a(
26
- "ns-button",
27
- `ns-button--${v}`,
28
- `ns-button--${b}`,
29
- f
30
- ), g = {
31
- ...w,
32
- className: m,
33
- onClick: r ? void 0 : l
34
- };
35
- return c ? /* @__PURE__ */ t(
36
- "a",
37
- {
38
- ...g,
39
- href: r ? void 0 : c,
40
- "aria-disabled": r || void 0,
41
- tabIndex: r ? -1 : w.tabIndex,
42
- children: d
43
- }
44
- ) : /* @__PURE__ */ t("button", { ...g, type: n, disabled: r, children: d });
45
- }
46
- function Z({
47
- icon: h,
48
- title: e,
49
- body: c,
50
- tag: l,
51
- iconColor: d = I.gold,
52
- className: r,
53
- style: f,
54
- ...n
55
- }) {
56
- return /* @__PURE__ */ i(
57
- "li",
58
- {
59
- ...n,
60
- className: a("ns-card ns-feature-card", r),
61
- style: p({ "--ns-feature-accent": d }, f),
62
- children: [
63
- /* @__PURE__ */ t("span", { className: "ns-icon-slot ns-feature-card__icon", "aria-hidden": "true", children: h }),
64
- /* @__PURE__ */ i("div", { children: [
65
- /* @__PURE__ */ t("h3", { className: "ns-feature-card__title", children: e }),
66
- /* @__PURE__ */ t("p", { className: "ns-feature-card__body", children: c })
67
- ] }),
68
- l && /* @__PURE__ */ t("span", { className: "ns-tag ns-feature-card__tag", children: l })
69
- ]
70
- }
71
- );
72
- }
73
- function X({ gate: h, title: e, body: c, status: l = "locked", className: d, ...r }) {
74
- const f = x[l] || x.locked;
75
- return /* @__PURE__ */ i("li", { ...r, className: a("ns-quest-card", f.className, d), children: [
76
- /* @__PURE__ */ t("span", { className: "ns-quest-card__icon", "aria-hidden": "true", children: f.icon }),
77
- /* @__PURE__ */ i("div", { className: "ns-quest-card__body", children: [
78
- /* @__PURE__ */ t("p", { className: "ns-quest-card__title", children: `Gate ${h} · ${e}` }),
79
- /* @__PURE__ */ t("p", { className: "ns-quest-card__desc", children: c }),
80
- /* @__PURE__ */ t("span", { className: "ns-status-pill", children: f.label })
81
- ] })
82
- ] });
83
- }
84
- const S = 'var(--ns-font-pixel, "Press Start 2P", monospace)';
85
- function tt({
86
- value: h = 40,
87
- max: e = 40,
88
- fillColor: c = "var(--hud-hp-fill, #4caf73)",
89
- trackColor: l = "var(--hud-track, rgba(255, 255, 255, 0.10))",
90
- height: d = 14,
91
- style: r
92
- }) {
93
- const f = e > 0 ? Math.max(0, Math.min(100, h / e * 100)) : 0;
94
- return /* @__PURE__ */ i(
95
- "div",
96
- {
97
- style: {
98
- position: "relative",
99
- background: l,
100
- height: d,
101
- overflow: "hidden",
102
- fontFamily: S,
103
- ...r
104
- },
105
- children: [
106
- /* @__PURE__ */ t(
107
- "div",
108
- {
109
- style: {
110
- position: "absolute",
111
- inset: 0,
112
- width: `${f}%`,
113
- background: c,
114
- transition: "width .35s ease-out"
115
- }
116
- }
117
- ),
118
- /* @__PURE__ */ i(
119
- "span",
120
- {
121
- style: {
122
- position: "absolute",
123
- inset: 0,
124
- display: "flex",
125
- alignItems: "center",
126
- paddingLeft: 4,
127
- fontSize: 4,
128
- color: "#fff",
129
- pointerEvents: "none"
130
- },
131
- children: [
132
- h,
133
- " / ",
134
- e
135
- ]
136
- }
137
- )
138
- ]
139
- }
140
- );
141
- }
142
- function it({
143
- direction: h = "vertical",
144
- color: e = "var(--ns-line)",
145
- style: c
146
- }) {
147
- const l = h === "vertical";
148
- return /* @__PURE__ */ t(
149
- "div",
150
- {
151
- style: {
152
- width: l ? "1px" : "100%",
153
- height: l ? "100%" : "1px",
154
- background: e,
155
- flexShrink: 0,
156
- alignSelf: "stretch",
157
- ...c
158
- }
159
- }
160
- );
161
- }
162
- const N = 'var(--ns-font-pixel, "Press Start 2P", monospace)', s = {
163
- left: "flex-start",
164
- center: "center",
165
- right: "flex-end"
1
+ import { jsx as e, jsxs as t } from "react/jsx-runtime";
2
+ //#region components/shared/styles.js
3
+ var n = (...e) => e.filter(Boolean).join(" ");
4
+ function r(e, t) {
5
+ return t ? {
6
+ ...e,
7
+ ...t
8
+ } : e;
9
+ }
10
+ var i = {
11
+ gold: "var(--ns-gold)",
12
+ pink: "var(--ns-pink)",
13
+ purple: "var(--ns-purple)",
14
+ cyan: "var(--ns-cyan)",
15
+ green: "var(--ns-green)",
16
+ orange: "var(--ns-orange)",
17
+ later: "var(--ns-ink-faint)"
18
+ }, a = {
19
+ done: {
20
+ className: "ns-quest-card--done",
21
+ label: "HOLDS",
22
+ icon: ""
23
+ },
24
+ active: {
25
+ className: "ns-quest-card--active",
26
+ label: "BUILDING",
27
+ icon: "▶"
28
+ },
29
+ planned: {
30
+ className: "ns-quest-card--planned",
31
+ label: "PLANNED",
32
+ icon: "◌"
33
+ },
34
+ locked: {
35
+ className: "ns-quest-card--locked",
36
+ label: "LATER",
37
+ icon: "✦"
38
+ }
39
+ }, o = new Set(["play", "ghost"]), s = new Set([
40
+ "sm",
41
+ "md",
42
+ "lg"
43
+ ]);
44
+ function c({ variant: t = "play", size: r = "md", href: i, onClick: a, children: c, disabled: l = !1, className: u, type: d = "button", ...f }) {
45
+ let p = o.has(t) ? t : "play", m = s.has(r) ? r : "md", h = n("ns-button", `ns-button--${p}`, `ns-button--${m}`, u), g = {
46
+ ...f,
47
+ className: h,
48
+ onClick: l ? void 0 : a
49
+ };
50
+ return i ? /* @__PURE__ */ e("a", {
51
+ ...g,
52
+ href: l ? void 0 : i,
53
+ "aria-disabled": l || void 0,
54
+ tabIndex: l ? -1 : f.tabIndex,
55
+ children: c
56
+ }) : /* @__PURE__ */ e("button", {
57
+ ...g,
58
+ type: d,
59
+ disabled: l,
60
+ children: c
61
+ });
62
+ }
63
+ //#endregion
64
+ //#region components/cards/FeatureCard.jsx
65
+ function l({ icon: a, title: o, body: s, tag: c, iconColor: l = i.gold, className: u, style: d, ...f }) {
66
+ return /* @__PURE__ */ t("li", {
67
+ ...f,
68
+ className: n("ns-card ns-feature-card", u),
69
+ style: r({ "--ns-feature-accent": l }, d),
70
+ children: [
71
+ /* @__PURE__ */ e("span", {
72
+ className: "ns-icon-slot ns-feature-card__icon",
73
+ "aria-hidden": "true",
74
+ children: a
75
+ }),
76
+ /* @__PURE__ */ t("div", { children: [/* @__PURE__ */ e("h3", {
77
+ className: "ns-feature-card__title",
78
+ children: o
79
+ }), /* @__PURE__ */ e("p", {
80
+ className: "ns-feature-card__body",
81
+ children: s
82
+ })] }),
83
+ c && /* @__PURE__ */ e("span", {
84
+ className: "ns-tag ns-feature-card__tag",
85
+ children: c
86
+ })
87
+ ]
88
+ });
89
+ }
90
+ //#endregion
91
+ //#region components/cards/QuestCard.jsx
92
+ function u({ gate: r, title: i, body: o, status: s = "locked", className: c, ...l }) {
93
+ let u = a[s] || a.locked;
94
+ return /* @__PURE__ */ t("li", {
95
+ ...l,
96
+ className: n("ns-quest-card", u.className, c),
97
+ children: [/* @__PURE__ */ e("span", {
98
+ className: "ns-quest-card__icon",
99
+ "aria-hidden": "true",
100
+ children: u.icon
101
+ }), /* @__PURE__ */ t("div", {
102
+ className: "ns-quest-card__body",
103
+ children: [
104
+ /* @__PURE__ */ e("p", {
105
+ className: "ns-quest-card__title",
106
+ children: `Gate ${r} · ${i}`
107
+ }),
108
+ /* @__PURE__ */ e("p", {
109
+ className: "ns-quest-card__desc",
110
+ children: o
111
+ }),
112
+ /* @__PURE__ */ e("span", {
113
+ className: "ns-status-pill",
114
+ children: u.label
115
+ })
116
+ ]
117
+ })]
118
+ });
119
+ }
120
+ //#endregion
121
+ //#region components/hud/HUDBar.jsx
122
+ var d = "var(--ns-font-pixel, \"Press Start 2P\", monospace)";
123
+ function f({ value: n = 40, max: r = 40, fillColor: i = "var(--hud-hp-fill, #4caf73)", trackColor: a = "var(--hud-track, rgba(255, 255, 255, 0.10))", height: o = 14, style: s }) {
124
+ let c = r > 0 ? Math.max(0, Math.min(100, n / r * 100)) : 0;
125
+ return /* @__PURE__ */ t("div", {
126
+ style: {
127
+ position: "relative",
128
+ background: a,
129
+ height: o,
130
+ overflow: "hidden",
131
+ fontFamily: d,
132
+ ...s
133
+ },
134
+ children: [/* @__PURE__ */ e("div", { style: {
135
+ position: "absolute",
136
+ inset: 0,
137
+ width: `${c}%`,
138
+ background: i,
139
+ transition: "width .35s ease-out"
140
+ } }), /* @__PURE__ */ t("span", {
141
+ style: {
142
+ position: "absolute",
143
+ inset: 0,
144
+ display: "flex",
145
+ alignItems: "center",
146
+ paddingLeft: 4,
147
+ fontSize: 4,
148
+ color: "#fff",
149
+ pointerEvents: "none"
150
+ },
151
+ children: [
152
+ n,
153
+ " / ",
154
+ r
155
+ ]
156
+ })]
157
+ });
158
+ }
159
+ //#endregion
160
+ //#region components/hud/HUDDivider.jsx
161
+ function p({ direction: t = "vertical", color: n = "var(--ns-line)", style: r }) {
162
+ let i = t === "vertical";
163
+ return /* @__PURE__ */ e("div", { style: {
164
+ width: i ? "1px" : "100%",
165
+ height: i ? "100%" : "1px",
166
+ background: n,
167
+ flexShrink: 0,
168
+ alignSelf: "stretch",
169
+ ...r
170
+ } });
171
+ }
172
+ //#endregion
173
+ //#region components/hud/HUDLabel.jsx
174
+ var m = "var(--ns-font-pixel, \"Press Start 2P\", monospace)", h = {
175
+ left: "flex-start",
176
+ center: "center",
177
+ right: "flex-end"
166
178
  };
167
- function et({
168
- text: h = "Label",
169
- align: e = "left",
170
- scale: c = 1,
171
- color: l = "var(--ns-ink)",
172
- fontSize: d = 5,
173
- style: r
174
- }) {
175
- return /* @__PURE__ */ t(
176
- "div",
177
- {
178
- style: {
179
- display: "flex",
180
- alignItems: "center",
181
- justifyContent: s[e] || s.left,
182
- paddingLeft: e === "right" ? 0 : 3,
183
- paddingRight: e === "left" ? 0 : 3,
184
- fontFamily: N,
185
- fontSize: d * c,
186
- color: l,
187
- whiteSpace: "nowrap",
188
- overflow: "hidden",
189
- width: "100%",
190
- height: "100%",
191
- ...r
192
- },
193
- children: h
194
- }
195
- );
179
+ function g({ text: t = "Label", align: n = "left", scale: r = 1, color: i = "var(--ns-ink)", fontSize: a = 5, style: o }) {
180
+ return /* @__PURE__ */ e("div", {
181
+ style: {
182
+ display: "flex",
183
+ alignItems: "center",
184
+ justifyContent: h[n] || h.left,
185
+ paddingLeft: n === "right" ? 0 : 3,
186
+ paddingRight: n === "left" ? 0 : 3,
187
+ fontFamily: m,
188
+ fontSize: a * r,
189
+ color: i,
190
+ whiteSpace: "nowrap",
191
+ overflow: "hidden",
192
+ width: "100%",
193
+ height: "100%",
194
+ ...o
195
+ },
196
+ children: t
197
+ });
198
+ }
199
+ //#endregion
200
+ //#region components/icons/RPGIcon.jsx
201
+ function _() {
202
+ return /* @__PURE__ */ t("svg", {
203
+ viewBox: "0 0 16 16",
204
+ xmlns: "http://www.w3.org/2000/svg",
205
+ children: [
206
+ /* @__PURE__ */ e("line", {
207
+ x1: "13",
208
+ y1: "2",
209
+ x2: "4",
210
+ y2: "11",
211
+ stroke: "#cfd8e2",
212
+ strokeWidth: "2",
213
+ strokeLinecap: "square"
214
+ }),
215
+ /* @__PURE__ */ e("line", {
216
+ x1: "6",
217
+ y1: "5",
218
+ x2: "10",
219
+ y2: "9",
220
+ stroke: "#e6db74",
221
+ strokeWidth: "2",
222
+ strokeLinecap: "square"
223
+ }),
224
+ /* @__PURE__ */ e("line", {
225
+ x1: "4",
226
+ y1: "10",
227
+ x2: "2",
228
+ y2: "13",
229
+ stroke: "#b07040",
230
+ strokeWidth: "1.5",
231
+ strokeLinecap: "square"
232
+ })
233
+ ]
234
+ });
235
+ }
236
+ function v() {
237
+ return /* @__PURE__ */ t("svg", {
238
+ viewBox: "0 0 16 16",
239
+ xmlns: "http://www.w3.org/2000/svg",
240
+ children: [
241
+ /* @__PURE__ */ e("rect", {
242
+ x: "3",
243
+ y: "1",
244
+ width: "3",
245
+ height: "2",
246
+ fill: "#8a6540"
247
+ }),
248
+ /* @__PURE__ */ e("rect", {
249
+ x: "2",
250
+ y: "3",
251
+ width: "2",
252
+ height: "10",
253
+ fill: "#8a6540"
254
+ }),
255
+ /* @__PURE__ */ e("rect", {
256
+ x: "3",
257
+ y: "13",
258
+ width: "3",
259
+ height: "2",
260
+ fill: "#8a6540"
261
+ }),
262
+ /* @__PURE__ */ e("rect", {
263
+ x: "6",
264
+ y: "2",
265
+ width: "1",
266
+ height: "1",
267
+ fill: "#cfd8e2"
268
+ }),
269
+ /* @__PURE__ */ e("rect", {
270
+ x: "7",
271
+ y: "3",
272
+ width: "1",
273
+ height: "10",
274
+ fill: "#cfd8e2"
275
+ }),
276
+ /* @__PURE__ */ e("rect", {
277
+ x: "6",
278
+ y: "13",
279
+ width: "1",
280
+ height: "1",
281
+ fill: "#cfd8e2"
282
+ }),
283
+ /* @__PURE__ */ e("rect", {
284
+ x: "7",
285
+ y: "7",
286
+ width: "7",
287
+ height: "2",
288
+ fill: "#c8a878"
289
+ }),
290
+ /* @__PURE__ */ e("rect", {
291
+ x: "13",
292
+ y: "6",
293
+ width: "2",
294
+ height: "1",
295
+ fill: "#cfd8e2"
296
+ }),
297
+ /* @__PURE__ */ e("rect", {
298
+ x: "14",
299
+ y: "7",
300
+ width: "2",
301
+ height: "2",
302
+ fill: "#cfd8e2"
303
+ }),
304
+ /* @__PURE__ */ e("rect", {
305
+ x: "13",
306
+ y: "9",
307
+ width: "2",
308
+ height: "1",
309
+ fill: "#cfd8e2"
310
+ }),
311
+ /* @__PURE__ */ e("rect", {
312
+ x: "7",
313
+ y: "5",
314
+ width: "2",
315
+ height: "2",
316
+ fill: "#ae81ff"
317
+ }),
318
+ /* @__PURE__ */ e("rect", {
319
+ x: "7",
320
+ y: "9",
321
+ width: "2",
322
+ height: "2",
323
+ fill: "#ae81ff"
324
+ })
325
+ ]
326
+ });
196
327
  }
197
328
  function y() {
198
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
199
- /* @__PURE__ */ t("line", { x1: "13", y1: "2", x2: "4", y2: "11", stroke: "#cfd8e2", strokeWidth: "2", strokeLinecap: "square" }),
200
- /* @__PURE__ */ t("line", { x1: "6", y1: "5", x2: "10", y2: "9", stroke: "#e6db74", strokeWidth: "2", strokeLinecap: "square" }),
201
- /* @__PURE__ */ t("line", { x1: "4", y1: "10", x2: "2", y2: "13", stroke: "#b07040", strokeWidth: "1.5", strokeLinecap: "square" })
202
- ] });
329
+ return /* @__PURE__ */ t("svg", {
330
+ viewBox: "0 0 16 16",
331
+ xmlns: "http://www.w3.org/2000/svg",
332
+ children: [
333
+ /* @__PURE__ */ e("rect", {
334
+ x: "5",
335
+ y: "1",
336
+ width: "6",
337
+ height: "1",
338
+ fill: "#c8a8ff"
339
+ }),
340
+ /* @__PURE__ */ e("rect", {
341
+ x: "4",
342
+ y: "2",
343
+ width: "8",
344
+ height: "4",
345
+ fill: "#ae81ff"
346
+ }),
347
+ /* @__PURE__ */ e("rect", {
348
+ x: "5",
349
+ y: "6",
350
+ width: "6",
351
+ height: "1",
352
+ fill: "#c8a8ff"
353
+ }),
354
+ /* @__PURE__ */ e("rect", {
355
+ x: "6",
356
+ y: "3",
357
+ width: "4",
358
+ height: "2",
359
+ fill: "#d4b8ff"
360
+ }),
361
+ /* @__PURE__ */ e("rect", {
362
+ x: "7",
363
+ y: "7",
364
+ width: "2",
365
+ height: "8",
366
+ fill: "#8a6540"
367
+ }),
368
+ /* @__PURE__ */ e("rect", {
369
+ x: "6",
370
+ y: "10",
371
+ width: "4",
372
+ height: "1",
373
+ fill: "#b07040"
374
+ })
375
+ ]
376
+ });
203
377
  }
204
- function _() {
205
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
206
- /* @__PURE__ */ t("rect", { x: "3", y: "1", width: "3", height: "2", fill: "#8a6540" }),
207
- /* @__PURE__ */ t("rect", { x: "2", y: "3", width: "2", height: "10", fill: "#8a6540" }),
208
- /* @__PURE__ */ t("rect", { x: "3", y: "13", width: "3", height: "2", fill: "#8a6540" }),
209
- /* @__PURE__ */ t("rect", { x: "6", y: "2", width: "1", height: "1", fill: "#cfd8e2" }),
210
- /* @__PURE__ */ t("rect", { x: "7", y: "3", width: "1", height: "10", fill: "#cfd8e2" }),
211
- /* @__PURE__ */ t("rect", { x: "6", y: "13", width: "1", height: "1", fill: "#cfd8e2" }),
212
- /* @__PURE__ */ t("rect", { x: "7", y: "7", width: "7", height: "2", fill: "#c8a878" }),
213
- /* @__PURE__ */ t("rect", { x: "13", y: "6", width: "2", height: "1", fill: "#cfd8e2" }),
214
- /* @__PURE__ */ t("rect", { x: "14", y: "7", width: "2", height: "2", fill: "#cfd8e2" }),
215
- /* @__PURE__ */ t("rect", { x: "13", y: "9", width: "2", height: "1", fill: "#cfd8e2" }),
216
- /* @__PURE__ */ t("rect", { x: "7", y: "5", width: "2", height: "2", fill: "#ae81ff" }),
217
- /* @__PURE__ */ t("rect", { x: "7", y: "9", width: "2", height: "2", fill: "#ae81ff" })
218
- ] });
378
+ function b() {
379
+ return /* @__PURE__ */ t("svg", {
380
+ viewBox: "0 0 16 16",
381
+ xmlns: "http://www.w3.org/2000/svg",
382
+ children: [
383
+ /* @__PURE__ */ e("rect", {
384
+ x: "2",
385
+ y: "1",
386
+ width: "2",
387
+ height: "8",
388
+ fill: "#cfd8e2"
389
+ }),
390
+ /* @__PURE__ */ e("rect", {
391
+ x: "2",
392
+ y: "9",
393
+ width: "2",
394
+ height: "3",
395
+ fill: "#a8b0bc"
396
+ }),
397
+ /* @__PURE__ */ e("rect", {
398
+ x: "12",
399
+ y: "1",
400
+ width: "2",
401
+ height: "8",
402
+ fill: "#cfd8e2"
403
+ }),
404
+ /* @__PURE__ */ e("rect", {
405
+ x: "12",
406
+ y: "9",
407
+ width: "2",
408
+ height: "3",
409
+ fill: "#a8b0bc"
410
+ }),
411
+ /* @__PURE__ */ e("rect", {
412
+ x: "2",
413
+ y: "8",
414
+ width: "12",
415
+ height: "2",
416
+ fill: "#e6db74"
417
+ }),
418
+ /* @__PURE__ */ e("rect", {
419
+ x: "6",
420
+ y: "10",
421
+ width: "4",
422
+ height: "5",
423
+ fill: "#8a6540"
424
+ }),
425
+ /* @__PURE__ */ e("rect", {
426
+ x: "3",
427
+ y: "0",
428
+ width: "1",
429
+ height: "1",
430
+ fill: "#eef0f4"
431
+ }),
432
+ /* @__PURE__ */ e("rect", {
433
+ x: "12",
434
+ y: "0",
435
+ width: "1",
436
+ height: "1",
437
+ fill: "#eef0f4"
438
+ })
439
+ ]
440
+ });
219
441
  }
220
- function L() {
221
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
222
- /* @__PURE__ */ t("rect", { x: "5", y: "1", width: "6", height: "1", fill: "#c8a8ff" }),
223
- /* @__PURE__ */ t("rect", { x: "4", y: "2", width: "8", height: "4", fill: "#ae81ff" }),
224
- /* @__PURE__ */ t("rect", { x: "5", y: "6", width: "6", height: "1", fill: "#c8a8ff" }),
225
- /* @__PURE__ */ t("rect", { x: "6", y: "3", width: "4", height: "2", fill: "#d4b8ff" }),
226
- /* @__PURE__ */ t("rect", { x: "7", y: "7", width: "2", height: "8", fill: "#8a6540" }),
227
- /* @__PURE__ */ t("rect", { x: "6", y: "10", width: "4", height: "1", fill: "#b07040" })
228
- ] });
229
- }
230
- function q() {
231
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
232
- /* @__PURE__ */ t("rect", { x: "2", y: "1", width: "2", height: "8", fill: "#cfd8e2" }),
233
- /* @__PURE__ */ t("rect", { x: "2", y: "9", width: "2", height: "3", fill: "#a8b0bc" }),
234
- /* @__PURE__ */ t("rect", { x: "12", y: "1", width: "2", height: "8", fill: "#cfd8e2" }),
235
- /* @__PURE__ */ t("rect", { x: "12", y: "9", width: "2", height: "3", fill: "#a8b0bc" }),
236
- /* @__PURE__ */ t("rect", { x: "2", y: "8", width: "12", height: "2", fill: "#e6db74" }),
237
- /* @__PURE__ */ t("rect", { x: "6", y: "10", width: "4", height: "5", fill: "#8a6540" }),
238
- /* @__PURE__ */ t("rect", { x: "3", y: "0", width: "1", height: "1", fill: "#eef0f4" }),
239
- /* @__PURE__ */ t("rect", { x: "12", y: "0", width: "1", height: "1", fill: "#eef0f4" })
240
- ] });
442
+ function x() {
443
+ return /* @__PURE__ */ t("svg", {
444
+ viewBox: "0 0 16 16",
445
+ xmlns: "http://www.w3.org/2000/svg",
446
+ children: [
447
+ /* @__PURE__ */ e("rect", {
448
+ x: "2",
449
+ y: "2",
450
+ width: "2",
451
+ height: "12",
452
+ fill: "#6a4a6a"
453
+ }),
454
+ /* @__PURE__ */ e("rect", {
455
+ x: "4",
456
+ y: "2",
457
+ width: "10",
458
+ height: "12",
459
+ fill: "#8855aa"
460
+ }),
461
+ /* @__PURE__ */ e("rect", {
462
+ x: "13",
463
+ y: "3",
464
+ width: "1",
465
+ height: "10",
466
+ fill: "#f4f0e8"
467
+ }),
468
+ /* @__PURE__ */ e("rect", {
469
+ x: "7",
470
+ y: "4",
471
+ width: "2",
472
+ height: "1",
473
+ fill: "#c8a8ff"
474
+ }),
475
+ /* @__PURE__ */ e("rect", {
476
+ x: "6",
477
+ y: "5",
478
+ width: "4",
479
+ height: "1",
480
+ fill: "#c8a8ff"
481
+ }),
482
+ /* @__PURE__ */ e("rect", {
483
+ x: "7",
484
+ y: "6",
485
+ width: "2",
486
+ height: "1",
487
+ fill: "#c8a8ff"
488
+ }),
489
+ /* @__PURE__ */ e("rect", {
490
+ x: "6",
491
+ y: "8",
492
+ width: "4",
493
+ height: "1",
494
+ fill: "#e6db74"
495
+ }),
496
+ /* @__PURE__ */ e("rect", {
497
+ x: "7",
498
+ y: "9",
499
+ width: "2",
500
+ height: "2",
501
+ fill: "#e6db74"
502
+ })
503
+ ]
504
+ });
505
+ }
506
+ function S() {
507
+ return /* @__PURE__ */ t("svg", {
508
+ viewBox: "0 0 16 16",
509
+ xmlns: "http://www.w3.org/2000/svg",
510
+ children: [
511
+ /* @__PURE__ */ e("rect", {
512
+ x: "4",
513
+ y: "1",
514
+ width: "8",
515
+ height: "1",
516
+ fill: "#a8b0bc"
517
+ }),
518
+ /* @__PURE__ */ e("rect", {
519
+ x: "3",
520
+ y: "2",
521
+ width: "10",
522
+ height: "5",
523
+ fill: "#a8b0bc"
524
+ }),
525
+ /* @__PURE__ */ e("rect", {
526
+ x: "3",
527
+ y: "2",
528
+ width: "10",
529
+ height: "1",
530
+ fill: "#cfd8e2"
531
+ }),
532
+ /* @__PURE__ */ e("rect", {
533
+ x: "3",
534
+ y: "3",
535
+ width: "1",
536
+ height: "3",
537
+ fill: "#cfd8e2"
538
+ }),
539
+ /* @__PURE__ */ e("rect", {
540
+ x: "3",
541
+ y: "7",
542
+ width: "10",
543
+ height: "1",
544
+ fill: "#5a6570"
545
+ }),
546
+ /* @__PURE__ */ e("rect", {
547
+ x: "7",
548
+ y: "7",
549
+ width: "2",
550
+ height: "8",
551
+ fill: "#8a6540"
552
+ }),
553
+ /* @__PURE__ */ e("rect", {
554
+ x: "6",
555
+ y: "10",
556
+ width: "4",
557
+ height: "1",
558
+ fill: "#b07040"
559
+ })
560
+ ]
561
+ });
562
+ }
563
+ function C() {
564
+ return /* @__PURE__ */ t("svg", {
565
+ viewBox: "0 0 16 16",
566
+ xmlns: "http://www.w3.org/2000/svg",
567
+ children: [
568
+ /* @__PURE__ */ e("rect", {
569
+ x: "2",
570
+ y: "6",
571
+ width: "12",
572
+ height: "4",
573
+ fill: "#7a7a8a"
574
+ }),
575
+ /* @__PURE__ */ e("rect", {
576
+ x: "6",
577
+ y: "2",
578
+ width: "4",
579
+ height: "12",
580
+ fill: "#7a7a8a"
581
+ }),
582
+ /* @__PURE__ */ e("rect", {
583
+ x: "3",
584
+ y: "3",
585
+ width: "2",
586
+ height: "2",
587
+ fill: "#7a7a8a"
588
+ }),
589
+ /* @__PURE__ */ e("rect", {
590
+ x: "11",
591
+ y: "3",
592
+ width: "2",
593
+ height: "2",
594
+ fill: "#7a7a8a"
595
+ }),
596
+ /* @__PURE__ */ e("rect", {
597
+ x: "3",
598
+ y: "11",
599
+ width: "2",
600
+ height: "2",
601
+ fill: "#7a7a8a"
602
+ }),
603
+ /* @__PURE__ */ e("rect", {
604
+ x: "11",
605
+ y: "11",
606
+ width: "2",
607
+ height: "2",
608
+ fill: "#7a7a8a"
609
+ }),
610
+ /* @__PURE__ */ e("rect", {
611
+ x: "7",
612
+ y: "7",
613
+ width: "2",
614
+ height: "2",
615
+ fill: "#b0b0c0"
616
+ }),
617
+ /* @__PURE__ */ e("rect", {
618
+ x: "7",
619
+ y: "4",
620
+ width: "2",
621
+ height: "1",
622
+ fill: "#b0b0c0"
623
+ }),
624
+ /* @__PURE__ */ e("rect", {
625
+ x: "7",
626
+ y: "11",
627
+ width: "2",
628
+ height: "1",
629
+ fill: "#b0b0c0"
630
+ }),
631
+ /* @__PURE__ */ e("rect", {
632
+ x: "4",
633
+ y: "7",
634
+ width: "1",
635
+ height: "2",
636
+ fill: "#b0b0c0"
637
+ }),
638
+ /* @__PURE__ */ e("rect", {
639
+ x: "11",
640
+ y: "7",
641
+ width: "1",
642
+ height: "2",
643
+ fill: "#b0b0c0"
644
+ })
645
+ ]
646
+ });
647
+ }
648
+ function w() {
649
+ return /* @__PURE__ */ t("svg", {
650
+ viewBox: "0 0 16 16",
651
+ xmlns: "http://www.w3.org/2000/svg",
652
+ children: [
653
+ /* @__PURE__ */ e("rect", {
654
+ x: "7",
655
+ y: "2",
656
+ width: "2",
657
+ height: "2",
658
+ fill: "#c8a050"
659
+ }),
660
+ /* @__PURE__ */ e("rect", {
661
+ x: "6",
662
+ y: "4",
663
+ width: "4",
664
+ height: "2",
665
+ fill: "#c8a050"
666
+ }),
667
+ /* @__PURE__ */ e("rect", {
668
+ x: "5",
669
+ y: "6",
670
+ width: "6",
671
+ height: "2",
672
+ fill: "#8b6914"
673
+ }),
674
+ /* @__PURE__ */ e("rect", {
675
+ x: "4",
676
+ y: "8",
677
+ width: "8",
678
+ height: "2",
679
+ fill: "#8b6914"
680
+ }),
681
+ /* @__PURE__ */ e("rect", {
682
+ x: "3",
683
+ y: "10",
684
+ width: "10",
685
+ height: "2",
686
+ fill: "#6a5010"
687
+ }),
688
+ /* @__PURE__ */ e("rect", {
689
+ x: "1",
690
+ y: "12",
691
+ width: "14",
692
+ height: "3",
693
+ fill: "#5a4008"
694
+ }),
695
+ /* @__PURE__ */ e("rect", {
696
+ x: "7",
697
+ y: "2",
698
+ width: "2",
699
+ height: "1",
700
+ fill: "#f0ece0"
701
+ }),
702
+ /* @__PURE__ */ e("rect", {
703
+ x: "6",
704
+ y: "3",
705
+ width: "4",
706
+ height: "1",
707
+ fill: "#f0ece0"
708
+ }),
709
+ /* @__PURE__ */ e("rect", {
710
+ x: "5",
711
+ y: "8",
712
+ width: "1",
713
+ height: "1",
714
+ fill: "#a07820"
715
+ }),
716
+ /* @__PURE__ */ e("rect", {
717
+ x: "10",
718
+ y: "9",
719
+ width: "1",
720
+ height: "1",
721
+ fill: "#a07820"
722
+ })
723
+ ]
724
+ });
725
+ }
726
+ function T() {
727
+ return /* @__PURE__ */ t("svg", {
728
+ viewBox: "0 0 16 16",
729
+ xmlns: "http://www.w3.org/2000/svg",
730
+ children: [
731
+ /* @__PURE__ */ e("rect", {
732
+ x: "2",
733
+ y: "4",
734
+ width: "10",
735
+ height: "1",
736
+ fill: "#5dcaa5"
737
+ }),
738
+ /* @__PURE__ */ e("rect", {
739
+ x: "3",
740
+ y: "5",
741
+ width: "2",
742
+ height: "1",
743
+ fill: "#5dcaa5"
744
+ }),
745
+ /* @__PURE__ */ e("rect", {
746
+ x: "12",
747
+ y: "3",
748
+ width: "2",
749
+ height: "2",
750
+ fill: "#5dcaa5"
751
+ }),
752
+ /* @__PURE__ */ e("rect", {
753
+ x: "13",
754
+ y: "5",
755
+ width: "1",
756
+ height: "1",
757
+ fill: "#5dcaa5"
758
+ }),
759
+ /* @__PURE__ */ e("rect", {
760
+ x: "1",
761
+ y: "7",
762
+ width: "11",
763
+ height: "2",
764
+ fill: "#5dcaa5"
765
+ }),
766
+ /* @__PURE__ */ e("rect", {
767
+ x: "12",
768
+ y: "6",
769
+ width: "2",
770
+ height: "4",
771
+ fill: "#5dcaa5"
772
+ }),
773
+ /* @__PURE__ */ e("rect", {
774
+ x: "11",
775
+ y: "10",
776
+ width: "2",
777
+ height: "1",
778
+ fill: "#5dcaa5"
779
+ }),
780
+ /* @__PURE__ */ e("rect", {
781
+ x: "2",
782
+ y: "12",
783
+ width: "9",
784
+ height: "1",
785
+ fill: "#5dcaa5"
786
+ }),
787
+ /* @__PURE__ */ e("rect", {
788
+ x: "2",
789
+ y: "11",
790
+ width: "2",
791
+ height: "1",
792
+ fill: "#5dcaa5"
793
+ }),
794
+ /* @__PURE__ */ e("rect", {
795
+ x: "11",
796
+ y: "12",
797
+ width: "2",
798
+ height: "2",
799
+ fill: "#5dcaa5"
800
+ }),
801
+ /* @__PURE__ */ e("rect", {
802
+ x: "10",
803
+ y: "14",
804
+ width: "2",
805
+ height: "1",
806
+ fill: "#5dcaa5"
807
+ }),
808
+ /* @__PURE__ */ e("rect", {
809
+ x: "2",
810
+ y: "3",
811
+ width: "8",
812
+ height: "1",
813
+ fill: "#90e8cc"
814
+ }),
815
+ /* @__PURE__ */ e("rect", {
816
+ x: "2",
817
+ y: "8",
818
+ width: "9",
819
+ height: "1",
820
+ fill: "#90e8cc"
821
+ })
822
+ ]
823
+ });
824
+ }
825
+ function E() {
826
+ return /* @__PURE__ */ t("svg", {
827
+ viewBox: "0 0 16 16",
828
+ xmlns: "http://www.w3.org/2000/svg",
829
+ children: [
830
+ /* @__PURE__ */ e("rect", {
831
+ x: "6",
832
+ y: "1",
833
+ width: "4",
834
+ height: "1",
835
+ fill: "#378add"
836
+ }),
837
+ /* @__PURE__ */ e("rect", {
838
+ x: "5",
839
+ y: "2",
840
+ width: "6",
841
+ height: "2",
842
+ fill: "#378add"
843
+ }),
844
+ /* @__PURE__ */ e("rect", {
845
+ x: "4",
846
+ y: "4",
847
+ width: "8",
848
+ height: "6",
849
+ fill: "#378add"
850
+ }),
851
+ /* @__PURE__ */ e("rect", {
852
+ x: "5",
853
+ y: "10",
854
+ width: "6",
855
+ height: "2",
856
+ fill: "#378add"
857
+ }),
858
+ /* @__PURE__ */ e("rect", {
859
+ x: "6",
860
+ y: "12",
861
+ width: "4",
862
+ height: "2",
863
+ fill: "#378add"
864
+ }),
865
+ /* @__PURE__ */ e("rect", {
866
+ x: "7",
867
+ y: "14",
868
+ width: "2",
869
+ height: "1",
870
+ fill: "#378add"
871
+ }),
872
+ /* @__PURE__ */ e("rect", {
873
+ x: "6",
874
+ y: "4",
875
+ width: "3",
876
+ height: "4",
877
+ fill: "#70b8f0"
878
+ }),
879
+ /* @__PURE__ */ e("rect", {
880
+ x: "7",
881
+ y: "3",
882
+ width: "2",
883
+ height: "1",
884
+ fill: "#70b8f0"
885
+ }),
886
+ /* @__PURE__ */ e("rect", {
887
+ x: "5",
888
+ y: "7",
889
+ width: "2",
890
+ height: "1",
891
+ fill: "#1a5a9a"
892
+ }),
893
+ /* @__PURE__ */ e("rect", {
894
+ x: "9",
895
+ y: "8",
896
+ width: "2",
897
+ height: "1",
898
+ fill: "#1a5a9a"
899
+ })
900
+ ]
901
+ });
241
902
  }
242
903
  function D() {
243
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
244
- /* @__PURE__ */ t("rect", { x: "2", y: "2", width: "2", height: "12", fill: "#6a4a6a" }),
245
- /* @__PURE__ */ t("rect", { x: "4", y: "2", width: "10", height: "12", fill: "#8855aa" }),
246
- /* @__PURE__ */ t("rect", { x: "13", y: "3", width: "1", height: "10", fill: "#f4f0e8" }),
247
- /* @__PURE__ */ t("rect", { x: "7", y: "4", width: "2", height: "1", fill: "#c8a8ff" }),
248
- /* @__PURE__ */ t("rect", { x: "6", y: "5", width: "4", height: "1", fill: "#c8a8ff" }),
249
- /* @__PURE__ */ t("rect", { x: "7", y: "6", width: "2", height: "1", fill: "#c8a8ff" }),
250
- /* @__PURE__ */ t("rect", { x: "6", y: "8", width: "4", height: "1", fill: "#e6db74" }),
251
- /* @__PURE__ */ t("rect", { x: "7", y: "9", width: "2", height: "2", fill: "#e6db74" })
252
- ] });
904
+ return /* @__PURE__ */ t("svg", {
905
+ viewBox: "0 0 16 16",
906
+ xmlns: "http://www.w3.org/2000/svg",
907
+ children: [
908
+ /* @__PURE__ */ e("rect", {
909
+ x: "4",
910
+ y: "11",
911
+ width: "8",
912
+ height: "4",
913
+ fill: "#ba7517"
914
+ }),
915
+ /* @__PURE__ */ e("rect", {
916
+ x: "3",
917
+ y: "8",
918
+ width: "10",
919
+ height: "3",
920
+ fill: "#ba7517"
921
+ }),
922
+ /* @__PURE__ */ e("rect", {
923
+ x: "4",
924
+ y: "5",
925
+ width: "8",
926
+ height: "3",
927
+ fill: "#ba7517"
928
+ }),
929
+ /* @__PURE__ */ e("rect", {
930
+ x: "5",
931
+ y: "3",
932
+ width: "6",
933
+ height: "2",
934
+ fill: "#ba7517"
935
+ }),
936
+ /* @__PURE__ */ e("rect", {
937
+ x: "6",
938
+ y: "1",
939
+ width: "4",
940
+ height: "2",
941
+ fill: "#ba7517"
942
+ }),
943
+ /* @__PURE__ */ e("rect", {
944
+ x: "5",
945
+ y: "9",
946
+ width: "6",
947
+ height: "5",
948
+ fill: "#e8882a"
949
+ }),
950
+ /* @__PURE__ */ e("rect", {
951
+ x: "6",
952
+ y: "7",
953
+ width: "4",
954
+ height: "2",
955
+ fill: "#e8882a"
956
+ }),
957
+ /* @__PURE__ */ e("rect", {
958
+ x: "6",
959
+ y: "10",
960
+ width: "4",
961
+ height: "3",
962
+ fill: "#e6db74"
963
+ }),
964
+ /* @__PURE__ */ e("rect", {
965
+ x: "7",
966
+ y: "9",
967
+ width: "2",
968
+ height: "1",
969
+ fill: "#e6db74"
970
+ })
971
+ ]
972
+ });
253
973
  }
254
- function A() {
255
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
256
- /* @__PURE__ */ t("rect", { x: "4", y: "1", width: "8", height: "1", fill: "#a8b0bc" }),
257
- /* @__PURE__ */ t("rect", { x: "3", y: "2", width: "10", height: "5", fill: "#a8b0bc" }),
258
- /* @__PURE__ */ t("rect", { x: "3", y: "2", width: "10", height: "1", fill: "#cfd8e2" }),
259
- /* @__PURE__ */ t("rect", { x: "3", y: "3", width: "1", height: "3", fill: "#cfd8e2" }),
260
- /* @__PURE__ */ t("rect", { x: "3", y: "7", width: "10", height: "1", fill: "#5a6570" }),
261
- /* @__PURE__ */ t("rect", { x: "7", y: "7", width: "2", height: "8", fill: "#8a6540" }),
262
- /* @__PURE__ */ t("rect", { x: "6", y: "10", width: "4", height: "1", fill: "#b07040" })
263
- ] });
974
+ function O() {
975
+ return /* @__PURE__ */ t("svg", {
976
+ viewBox: "0 0 16 16",
977
+ xmlns: "http://www.w3.org/2000/svg",
978
+ children: [
979
+ /* @__PURE__ */ e("rect", {
980
+ x: "5",
981
+ y: "2",
982
+ width: "6",
983
+ height: "2",
984
+ fill: "#888780"
985
+ }),
986
+ /* @__PURE__ */ e("rect", {
987
+ x: "3",
988
+ y: "4",
989
+ width: "8",
990
+ height: "8",
991
+ fill: "#888780"
992
+ }),
993
+ /* @__PURE__ */ e("rect", {
994
+ x: "5",
995
+ y: "12",
996
+ width: "6",
997
+ height: "2",
998
+ fill: "#888780"
999
+ }),
1000
+ /* @__PURE__ */ e("rect", {
1001
+ x: "4",
1002
+ y: "3",
1003
+ width: "1",
1004
+ height: "10",
1005
+ fill: "#888780"
1006
+ }),
1007
+ /* @__PURE__ */ e("rect", {
1008
+ x: "8",
1009
+ y: "4",
1010
+ width: "4",
1011
+ height: "8",
1012
+ fill: "#1a1a20"
1013
+ }),
1014
+ /* @__PURE__ */ e("rect", {
1015
+ x: "7",
1016
+ y: "5",
1017
+ width: "5",
1018
+ height: "6",
1019
+ fill: "#1a1a20"
1020
+ }),
1021
+ /* @__PURE__ */ e("rect", {
1022
+ x: "11",
1023
+ y: "2",
1024
+ width: "1",
1025
+ height: "1",
1026
+ fill: "#c8c8d0"
1027
+ }),
1028
+ /* @__PURE__ */ e("rect", {
1029
+ x: "13",
1030
+ y: "5",
1031
+ width: "1",
1032
+ height: "1",
1033
+ fill: "#c8c8d0"
1034
+ }),
1035
+ /* @__PURE__ */ e("rect", {
1036
+ x: "12",
1037
+ y: "9",
1038
+ width: "1",
1039
+ height: "1",
1040
+ fill: "#c8c8d0"
1041
+ })
1042
+ ]
1043
+ });
264
1044
  }
265
- function C() {
266
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
267
- /* @__PURE__ */ t("rect", { x: "2", y: "6", width: "12", height: "4", fill: "#7a7a8a" }),
268
- /* @__PURE__ */ t("rect", { x: "6", y: "2", width: "4", height: "12", fill: "#7a7a8a" }),
269
- /* @__PURE__ */ t("rect", { x: "3", y: "3", width: "2", height: "2", fill: "#7a7a8a" }),
270
- /* @__PURE__ */ t("rect", { x: "11", y: "3", width: "2", height: "2", fill: "#7a7a8a" }),
271
- /* @__PURE__ */ t("rect", { x: "3", y: "11", width: "2", height: "2", fill: "#7a7a8a" }),
272
- /* @__PURE__ */ t("rect", { x: "11", y: "11", width: "2", height: "2", fill: "#7a7a8a" }),
273
- /* @__PURE__ */ t("rect", { x: "7", y: "7", width: "2", height: "2", fill: "#b0b0c0" }),
274
- /* @__PURE__ */ t("rect", { x: "7", y: "4", width: "2", height: "1", fill: "#b0b0c0" }),
275
- /* @__PURE__ */ t("rect", { x: "7", y: "11", width: "2", height: "1", fill: "#b0b0c0" }),
276
- /* @__PURE__ */ t("rect", { x: "4", y: "7", width: "1", height: "2", fill: "#b0b0c0" }),
277
- /* @__PURE__ */ t("rect", { x: "11", y: "7", width: "1", height: "2", fill: "#b0b0c0" })
278
- ] });
1045
+ function k() {
1046
+ return /* @__PURE__ */ t("svg", {
1047
+ viewBox: "0 0 16 16",
1048
+ xmlns: "http://www.w3.org/2000/svg",
1049
+ children: [
1050
+ /* @__PURE__ */ e("rect", {
1051
+ x: "5",
1052
+ y: "5",
1053
+ width: "6",
1054
+ height: "6",
1055
+ fill: "#fac775"
1056
+ }),
1057
+ /* @__PURE__ */ e("rect", {
1058
+ x: "6",
1059
+ y: "4",
1060
+ width: "4",
1061
+ height: "1",
1062
+ fill: "#fac775"
1063
+ }),
1064
+ /* @__PURE__ */ e("rect", {
1065
+ x: "6",
1066
+ y: "11",
1067
+ width: "4",
1068
+ height: "1",
1069
+ fill: "#fac775"
1070
+ }),
1071
+ /* @__PURE__ */ e("rect", {
1072
+ x: "4",
1073
+ y: "6",
1074
+ width: "1",
1075
+ height: "4",
1076
+ fill: "#fac775"
1077
+ }),
1078
+ /* @__PURE__ */ e("rect", {
1079
+ x: "11",
1080
+ y: "6",
1081
+ width: "1",
1082
+ height: "4",
1083
+ fill: "#fac775"
1084
+ }),
1085
+ /* @__PURE__ */ e("rect", {
1086
+ x: "7",
1087
+ y: "1",
1088
+ width: "2",
1089
+ height: "3",
1090
+ fill: "#fac775"
1091
+ }),
1092
+ /* @__PURE__ */ e("rect", {
1093
+ x: "7",
1094
+ y: "12",
1095
+ width: "2",
1096
+ height: "3",
1097
+ fill: "#fac775"
1098
+ }),
1099
+ /* @__PURE__ */ e("rect", {
1100
+ x: "1",
1101
+ y: "7",
1102
+ width: "3",
1103
+ height: "2",
1104
+ fill: "#fac775"
1105
+ }),
1106
+ /* @__PURE__ */ e("rect", {
1107
+ x: "12",
1108
+ y: "7",
1109
+ width: "3",
1110
+ height: "2",
1111
+ fill: "#fac775"
1112
+ }),
1113
+ /* @__PURE__ */ e("rect", {
1114
+ x: "3",
1115
+ y: "3",
1116
+ width: "2",
1117
+ height: "2",
1118
+ fill: "#fac775"
1119
+ }),
1120
+ /* @__PURE__ */ e("rect", {
1121
+ x: "11",
1122
+ y: "3",
1123
+ width: "2",
1124
+ height: "2",
1125
+ fill: "#fac775"
1126
+ }),
1127
+ /* @__PURE__ */ e("rect", {
1128
+ x: "3",
1129
+ y: "11",
1130
+ width: "2",
1131
+ height: "2",
1132
+ fill: "#fac775"
1133
+ }),
1134
+ /* @__PURE__ */ e("rect", {
1135
+ x: "11",
1136
+ y: "11",
1137
+ width: "2",
1138
+ height: "2",
1139
+ fill: "#fac775"
1140
+ }),
1141
+ /* @__PURE__ */ e("rect", {
1142
+ x: "6",
1143
+ y: "6",
1144
+ width: "4",
1145
+ height: "4",
1146
+ fill: "#fff8e0"
1147
+ })
1148
+ ]
1149
+ });
1150
+ }
1151
+ function A() {
1152
+ return /* @__PURE__ */ t("svg", {
1153
+ viewBox: "0 0 16 16",
1154
+ xmlns: "http://www.w3.org/2000/svg",
1155
+ children: [
1156
+ /* @__PURE__ */ e("rect", {
1157
+ x: "5",
1158
+ y: "1",
1159
+ width: "6",
1160
+ height: "2",
1161
+ fill: "#7f77dd"
1162
+ }),
1163
+ /* @__PURE__ */ e("rect", {
1164
+ x: "3",
1165
+ y: "3",
1166
+ width: "10",
1167
+ height: "2",
1168
+ fill: "#7f77dd"
1169
+ }),
1170
+ /* @__PURE__ */ e("rect", {
1171
+ x: "2",
1172
+ y: "5",
1173
+ width: "12",
1174
+ height: "6",
1175
+ fill: "#7f77dd"
1176
+ }),
1177
+ /* @__PURE__ */ e("rect", {
1178
+ x: "3",
1179
+ y: "11",
1180
+ width: "10",
1181
+ height: "2",
1182
+ fill: "#7f77dd"
1183
+ }),
1184
+ /* @__PURE__ */ e("rect", {
1185
+ x: "5",
1186
+ y: "13",
1187
+ width: "6",
1188
+ height: "2",
1189
+ fill: "#7f77dd"
1190
+ }),
1191
+ /* @__PURE__ */ e("rect", {
1192
+ x: "4",
1193
+ y: "4",
1194
+ width: "8",
1195
+ height: "8",
1196
+ fill: "#1a1828"
1197
+ }),
1198
+ /* @__PURE__ */ e("rect", {
1199
+ x: "5",
1200
+ y: "3",
1201
+ width: "6",
1202
+ height: "1",
1203
+ fill: "#1a1828"
1204
+ }),
1205
+ /* @__PURE__ */ e("rect", {
1206
+ x: "5",
1207
+ y: "12",
1208
+ width: "6",
1209
+ height: "1",
1210
+ fill: "#1a1828"
1211
+ }),
1212
+ /* @__PURE__ */ e("rect", {
1213
+ x: "3",
1214
+ y: "5",
1215
+ width: "1",
1216
+ height: "6",
1217
+ fill: "#1a1828"
1218
+ }),
1219
+ /* @__PURE__ */ e("rect", {
1220
+ x: "12",
1221
+ y: "5",
1222
+ width: "1",
1223
+ height: "6",
1224
+ fill: "#1a1828"
1225
+ }),
1226
+ /* @__PURE__ */ e("rect", {
1227
+ x: "6",
1228
+ y: "6",
1229
+ width: "4",
1230
+ height: "4",
1231
+ fill: "#4a44aa"
1232
+ }),
1233
+ /* @__PURE__ */ e("rect", {
1234
+ x: "7",
1235
+ y: "5",
1236
+ width: "2",
1237
+ height: "1",
1238
+ fill: "#4a44aa"
1239
+ }),
1240
+ /* @__PURE__ */ e("rect", {
1241
+ x: "7",
1242
+ y: "10",
1243
+ width: "2",
1244
+ height: "1",
1245
+ fill: "#4a44aa"
1246
+ }),
1247
+ /* @__PURE__ */ e("rect", {
1248
+ x: "5",
1249
+ y: "7",
1250
+ width: "1",
1251
+ height: "2",
1252
+ fill: "#4a44aa"
1253
+ }),
1254
+ /* @__PURE__ */ e("rect", {
1255
+ x: "10",
1256
+ y: "7",
1257
+ width: "1",
1258
+ height: "2",
1259
+ fill: "#4a44aa"
1260
+ }),
1261
+ /* @__PURE__ */ e("rect", {
1262
+ x: "7",
1263
+ y: "7",
1264
+ width: "2",
1265
+ height: "2",
1266
+ fill: "#c8c0ff"
1267
+ })
1268
+ ]
1269
+ });
279
1270
  }
280
1271
  function j() {
281
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
282
- /* @__PURE__ */ t("rect", { x: "7", y: "2", width: "2", height: "2", fill: "#c8a050" }),
283
- /* @__PURE__ */ t("rect", { x: "6", y: "4", width: "4", height: "2", fill: "#c8a050" }),
284
- /* @__PURE__ */ t("rect", { x: "5", y: "6", width: "6", height: "2", fill: "#8b6914" }),
285
- /* @__PURE__ */ t("rect", { x: "4", y: "8", width: "8", height: "2", fill: "#8b6914" }),
286
- /* @__PURE__ */ t("rect", { x: "3", y: "10", width: "10", height: "2", fill: "#6a5010" }),
287
- /* @__PURE__ */ t("rect", { x: "1", y: "12", width: "14", height: "3", fill: "#5a4008" }),
288
- /* @__PURE__ */ t("rect", { x: "7", y: "2", width: "2", height: "1", fill: "#f0ece0" }),
289
- /* @__PURE__ */ t("rect", { x: "6", y: "3", width: "4", height: "1", fill: "#f0ece0" }),
290
- /* @__PURE__ */ t("rect", { x: "5", y: "8", width: "1", height: "1", fill: "#a07820" }),
291
- /* @__PURE__ */ t("rect", { x: "10", y: "9", width: "1", height: "1", fill: "#a07820" })
292
- ] });
1272
+ return /* @__PURE__ */ t("svg", {
1273
+ viewBox: "0 0 16 16",
1274
+ xmlns: "http://www.w3.org/2000/svg",
1275
+ children: [
1276
+ /* @__PURE__ */ e("rect", {
1277
+ x: "5",
1278
+ y: "1",
1279
+ width: "6",
1280
+ height: "5",
1281
+ fill: "#e8c87a"
1282
+ }),
1283
+ /* @__PURE__ */ e("rect", {
1284
+ x: "7",
1285
+ y: "6",
1286
+ width: "2",
1287
+ height: "1",
1288
+ fill: "#d4a85a"
1289
+ }),
1290
+ /* @__PURE__ */ e("rect", {
1291
+ x: "3",
1292
+ y: "7",
1293
+ width: "10",
1294
+ height: "5",
1295
+ fill: "#c8873a"
1296
+ }),
1297
+ /* @__PURE__ */ e("rect", {
1298
+ x: "1",
1299
+ y: "7",
1300
+ width: "2",
1301
+ height: "4",
1302
+ fill: "#c8873a"
1303
+ }),
1304
+ /* @__PURE__ */ e("rect", {
1305
+ x: "13",
1306
+ y: "7",
1307
+ width: "2",
1308
+ height: "4",
1309
+ fill: "#c8873a"
1310
+ }),
1311
+ /* @__PURE__ */ e("rect", {
1312
+ x: "4",
1313
+ y: "12",
1314
+ width: "3",
1315
+ height: "3",
1316
+ fill: "#8a5c2a"
1317
+ }),
1318
+ /* @__PURE__ */ e("rect", {
1319
+ x: "9",
1320
+ y: "12",
1321
+ width: "3",
1322
+ height: "3",
1323
+ fill: "#8a5c2a"
1324
+ })
1325
+ ]
1326
+ });
293
1327
  }
294
- function F() {
295
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
296
- /* @__PURE__ */ t("rect", { x: "2", y: "4", width: "10", height: "1", fill: "#5dcaa5" }),
297
- /* @__PURE__ */ t("rect", { x: "3", y: "5", width: "2", height: "1", fill: "#5dcaa5" }),
298
- /* @__PURE__ */ t("rect", { x: "12", y: "3", width: "2", height: "2", fill: "#5dcaa5" }),
299
- /* @__PURE__ */ t("rect", { x: "13", y: "5", width: "1", height: "1", fill: "#5dcaa5" }),
300
- /* @__PURE__ */ t("rect", { x: "1", y: "7", width: "11", height: "2", fill: "#5dcaa5" }),
301
- /* @__PURE__ */ t("rect", { x: "12", y: "6", width: "2", height: "4", fill: "#5dcaa5" }),
302
- /* @__PURE__ */ t("rect", { x: "11", y: "10", width: "2", height: "1", fill: "#5dcaa5" }),
303
- /* @__PURE__ */ t("rect", { x: "2", y: "12", width: "9", height: "1", fill: "#5dcaa5" }),
304
- /* @__PURE__ */ t("rect", { x: "2", y: "11", width: "2", height: "1", fill: "#5dcaa5" }),
305
- /* @__PURE__ */ t("rect", { x: "11", y: "12", width: "2", height: "2", fill: "#5dcaa5" }),
306
- /* @__PURE__ */ t("rect", { x: "10", y: "14", width: "2", height: "1", fill: "#5dcaa5" }),
307
- /* @__PURE__ */ t("rect", { x: "2", y: "3", width: "8", height: "1", fill: "#90e8cc" }),
308
- /* @__PURE__ */ t("rect", { x: "2", y: "8", width: "9", height: "1", fill: "#90e8cc" })
309
- ] });
310
- }
311
- function H() {
312
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
313
- /* @__PURE__ */ t("rect", { x: "6", y: "1", width: "4", height: "1", fill: "#378add" }),
314
- /* @__PURE__ */ t("rect", { x: "5", y: "2", width: "6", height: "2", fill: "#378add" }),
315
- /* @__PURE__ */ t("rect", { x: "4", y: "4", width: "8", height: "6", fill: "#378add" }),
316
- /* @__PURE__ */ t("rect", { x: "5", y: "10", width: "6", height: "2", fill: "#378add" }),
317
- /* @__PURE__ */ t("rect", { x: "6", y: "12", width: "4", height: "2", fill: "#378add" }),
318
- /* @__PURE__ */ t("rect", { x: "7", y: "14", width: "2", height: "1", fill: "#378add" }),
319
- /* @__PURE__ */ t("rect", { x: "6", y: "4", width: "3", height: "4", fill: "#70b8f0" }),
320
- /* @__PURE__ */ t("rect", { x: "7", y: "3", width: "2", height: "1", fill: "#70b8f0" }),
321
- /* @__PURE__ */ t("rect", { x: "5", y: "7", width: "2", height: "1", fill: "#1a5a9a" }),
322
- /* @__PURE__ */ t("rect", { x: "9", y: "8", width: "2", height: "1", fill: "#1a5a9a" })
323
- ] });
1328
+ function M() {
1329
+ return /* @__PURE__ */ t("svg", {
1330
+ viewBox: "0 0 16 16",
1331
+ xmlns: "http://www.w3.org/2000/svg",
1332
+ children: [
1333
+ /* @__PURE__ */ e("rect", {
1334
+ x: "2",
1335
+ y: "1",
1336
+ width: "3",
1337
+ height: "4",
1338
+ fill: "#c8a060"
1339
+ }),
1340
+ /* @__PURE__ */ e("rect", {
1341
+ x: "11",
1342
+ y: "1",
1343
+ width: "3",
1344
+ height: "4",
1345
+ fill: "#c8a060"
1346
+ }),
1347
+ /* @__PURE__ */ e("rect", {
1348
+ x: "3",
1349
+ y: "2",
1350
+ width: "1",
1351
+ height: "2",
1352
+ fill: "#e8886a"
1353
+ }),
1354
+ /* @__PURE__ */ e("rect", {
1355
+ x: "12",
1356
+ y: "2",
1357
+ width: "1",
1358
+ height: "2",
1359
+ fill: "#e8886a"
1360
+ }),
1361
+ /* @__PURE__ */ e("rect", {
1362
+ x: "3",
1363
+ y: "4",
1364
+ width: "10",
1365
+ height: "6",
1366
+ fill: "#c8a060"
1367
+ }),
1368
+ /* @__PURE__ */ e("rect", {
1369
+ x: "5",
1370
+ y: "8",
1371
+ width: "6",
1372
+ height: "3",
1373
+ fill: "#d4b070"
1374
+ }),
1375
+ /* @__PURE__ */ e("rect", {
1376
+ x: "7",
1377
+ y: "8",
1378
+ width: "2",
1379
+ height: "1",
1380
+ fill: "#5a3020"
1381
+ }),
1382
+ /* @__PURE__ */ e("rect", {
1383
+ x: "4",
1384
+ y: "6",
1385
+ width: "3",
1386
+ height: "2",
1387
+ fill: "#e8a020"
1388
+ }),
1389
+ /* @__PURE__ */ e("rect", {
1390
+ x: "9",
1391
+ y: "6",
1392
+ width: "3",
1393
+ height: "2",
1394
+ fill: "#e8a020"
1395
+ }),
1396
+ /* @__PURE__ */ e("rect", {
1397
+ x: "5",
1398
+ y: "6",
1399
+ width: "1",
1400
+ height: "2",
1401
+ fill: "#1a1008"
1402
+ }),
1403
+ /* @__PURE__ */ e("rect", {
1404
+ x: "10",
1405
+ y: "6",
1406
+ width: "1",
1407
+ height: "2",
1408
+ fill: "#1a1008"
1409
+ }),
1410
+ /* @__PURE__ */ e("rect", {
1411
+ x: "3",
1412
+ y: "11",
1413
+ width: "10",
1414
+ height: "4",
1415
+ fill: "#a87840"
1416
+ }),
1417
+ /* @__PURE__ */ e("rect", {
1418
+ x: "1",
1419
+ y: "11",
1420
+ width: "2",
1421
+ height: "3",
1422
+ fill: "#a87840"
1423
+ }),
1424
+ /* @__PURE__ */ e("rect", {
1425
+ x: "13",
1426
+ y: "11",
1427
+ width: "2",
1428
+ height: "3",
1429
+ fill: "#a87840"
1430
+ })
1431
+ ]
1432
+ });
324
1433
  }
325
- function P() {
326
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
327
- /* @__PURE__ */ t("rect", { x: "4", y: "11", width: "8", height: "4", fill: "#ba7517" }),
328
- /* @__PURE__ */ t("rect", { x: "3", y: "8", width: "10", height: "3", fill: "#ba7517" }),
329
- /* @__PURE__ */ t("rect", { x: "4", y: "5", width: "8", height: "3", fill: "#ba7517" }),
330
- /* @__PURE__ */ t("rect", { x: "5", y: "3", width: "6", height: "2", fill: "#ba7517" }),
331
- /* @__PURE__ */ t("rect", { x: "6", y: "1", width: "4", height: "2", fill: "#ba7517" }),
332
- /* @__PURE__ */ t("rect", { x: "5", y: "9", width: "6", height: "5", fill: "#e8882a" }),
333
- /* @__PURE__ */ t("rect", { x: "6", y: "7", width: "4", height: "2", fill: "#e8882a" }),
334
- /* @__PURE__ */ t("rect", { x: "6", y: "10", width: "4", height: "3", fill: "#e6db74" }),
335
- /* @__PURE__ */ t("rect", { x: "7", y: "9", width: "2", height: "1", fill: "#e6db74" })
336
- ] });
1434
+ function N() {
1435
+ return /* @__PURE__ */ t("svg", {
1436
+ viewBox: "0 0 16 16",
1437
+ xmlns: "http://www.w3.org/2000/svg",
1438
+ children: [
1439
+ /* @__PURE__ */ e("rect", {
1440
+ x: "3",
1441
+ y: "1",
1442
+ width: "2",
1443
+ height: "5",
1444
+ fill: "#cc3030"
1445
+ }),
1446
+ /* @__PURE__ */ e("rect", {
1447
+ x: "11",
1448
+ y: "1",
1449
+ width: "2",
1450
+ height: "5",
1451
+ fill: "#cc3030"
1452
+ }),
1453
+ /* @__PURE__ */ e("rect", {
1454
+ x: "2",
1455
+ y: "1",
1456
+ width: "2",
1457
+ height: "2",
1458
+ fill: "#cc3030"
1459
+ }),
1460
+ /* @__PURE__ */ e("rect", {
1461
+ x: "12",
1462
+ y: "1",
1463
+ width: "2",
1464
+ height: "2",
1465
+ fill: "#cc3030"
1466
+ }),
1467
+ /* @__PURE__ */ e("rect", {
1468
+ x: "3",
1469
+ y: "5",
1470
+ width: "10",
1471
+ height: "6",
1472
+ fill: "#7a2a2a"
1473
+ }),
1474
+ /* @__PURE__ */ e("rect", {
1475
+ x: "4",
1476
+ y: "7",
1477
+ width: "3",
1478
+ height: "2",
1479
+ fill: "#ff2020"
1480
+ }),
1481
+ /* @__PURE__ */ e("rect", {
1482
+ x: "9",
1483
+ y: "7",
1484
+ width: "3",
1485
+ height: "2",
1486
+ fill: "#ff2020"
1487
+ }),
1488
+ /* @__PURE__ */ e("rect", {
1489
+ x: "5",
1490
+ y: "7",
1491
+ width: "1",
1492
+ height: "2",
1493
+ fill: "#ff8080"
1494
+ }),
1495
+ /* @__PURE__ */ e("rect", {
1496
+ x: "10",
1497
+ y: "7",
1498
+ width: "1",
1499
+ height: "2",
1500
+ fill: "#ff8080"
1501
+ }),
1502
+ /* @__PURE__ */ e("rect", {
1503
+ x: "6",
1504
+ y: "11",
1505
+ width: "1",
1506
+ height: "2",
1507
+ fill: "#f0e8d0"
1508
+ }),
1509
+ /* @__PURE__ */ e("rect", {
1510
+ x: "9",
1511
+ y: "11",
1512
+ width: "1",
1513
+ height: "2",
1514
+ fill: "#f0e8d0"
1515
+ }),
1516
+ /* @__PURE__ */ e("rect", {
1517
+ x: "2",
1518
+ y: "12",
1519
+ width: "12",
1520
+ height: "4",
1521
+ fill: "#5a1a1a"
1522
+ }),
1523
+ /* @__PURE__ */ e("rect", {
1524
+ x: "1",
1525
+ y: "12",
1526
+ width: "2",
1527
+ height: "3",
1528
+ fill: "#5a1a1a"
1529
+ }),
1530
+ /* @__PURE__ */ e("rect", {
1531
+ x: "13",
1532
+ y: "12",
1533
+ width: "2",
1534
+ height: "3",
1535
+ fill: "#5a1a1a"
1536
+ })
1537
+ ]
1538
+ });
337
1539
  }
338
- function T() {
339
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
340
- /* @__PURE__ */ t("rect", { x: "5", y: "2", width: "6", height: "2", fill: "#888780" }),
341
- /* @__PURE__ */ t("rect", { x: "3", y: "4", width: "8", height: "8", fill: "#888780" }),
342
- /* @__PURE__ */ t("rect", { x: "5", y: "12", width: "6", height: "2", fill: "#888780" }),
343
- /* @__PURE__ */ t("rect", { x: "4", y: "3", width: "1", height: "10", fill: "#888780" }),
344
- /* @__PURE__ */ t("rect", { x: "8", y: "4", width: "4", height: "8", fill: "#1a1a20" }),
345
- /* @__PURE__ */ t("rect", { x: "7", y: "5", width: "5", height: "6", fill: "#1a1a20" }),
346
- /* @__PURE__ */ t("rect", { x: "11", y: "2", width: "1", height: "1", fill: "#c8c8d0" }),
347
- /* @__PURE__ */ t("rect", { x: "13", y: "5", width: "1", height: "1", fill: "#c8c8d0" }),
348
- /* @__PURE__ */ t("rect", { x: "12", y: "9", width: "1", height: "1", fill: "#c8c8d0" })
349
- ] });
1540
+ function P() {
1541
+ return /* @__PURE__ */ t("svg", {
1542
+ viewBox: "0 0 16 16",
1543
+ xmlns: "http://www.w3.org/2000/svg",
1544
+ children: [
1545
+ /* @__PURE__ */ e("rect", {
1546
+ x: "4",
1547
+ y: "1",
1548
+ width: "8",
1549
+ height: "1",
1550
+ fill: "#e6db74"
1551
+ }),
1552
+ /* @__PURE__ */ e("rect", {
1553
+ x: "3",
1554
+ y: "2",
1555
+ width: "10",
1556
+ height: "1",
1557
+ fill: "#e6db74"
1558
+ }),
1559
+ /* @__PURE__ */ e("rect", {
1560
+ x: "3",
1561
+ y: "3",
1562
+ width: "2",
1563
+ height: "1",
1564
+ fill: "#e6db74"
1565
+ }),
1566
+ /* @__PURE__ */ e("rect", {
1567
+ x: "11",
1568
+ y: "3",
1569
+ width: "2",
1570
+ height: "1",
1571
+ fill: "#e6db74"
1572
+ }),
1573
+ /* @__PURE__ */ e("rect", {
1574
+ x: "5",
1575
+ y: "4",
1576
+ width: "6",
1577
+ height: "5",
1578
+ fill: "#f4e4c0"
1579
+ }),
1580
+ /* @__PURE__ */ e("rect", {
1581
+ x: "6",
1582
+ y: "6",
1583
+ width: "2",
1584
+ height: "1",
1585
+ fill: "#6090e0"
1586
+ }),
1587
+ /* @__PURE__ */ e("rect", {
1588
+ x: "10",
1589
+ y: "6",
1590
+ width: "2",
1591
+ height: "1",
1592
+ fill: "#6090e0"
1593
+ }),
1594
+ /* @__PURE__ */ e("rect", {
1595
+ x: "1",
1596
+ y: "9",
1597
+ width: "4",
1598
+ height: "5",
1599
+ fill: "#f0f0f8"
1600
+ }),
1601
+ /* @__PURE__ */ e("rect", {
1602
+ x: "11",
1603
+ y: "9",
1604
+ width: "4",
1605
+ height: "5",
1606
+ fill: "#f0f0f8"
1607
+ }),
1608
+ /* @__PURE__ */ e("rect", {
1609
+ x: "1",
1610
+ y: "9",
1611
+ width: "2",
1612
+ height: "3",
1613
+ fill: "#ffffff"
1614
+ }),
1615
+ /* @__PURE__ */ e("rect", {
1616
+ x: "13",
1617
+ y: "9",
1618
+ width: "2",
1619
+ height: "3",
1620
+ fill: "#ffffff"
1621
+ }),
1622
+ /* @__PURE__ */ e("rect", {
1623
+ x: "5",
1624
+ y: "9",
1625
+ width: "6",
1626
+ height: "6",
1627
+ fill: "#d4c8f0"
1628
+ }),
1629
+ /* @__PURE__ */ e("rect", {
1630
+ x: "4",
1631
+ y: "10",
1632
+ width: "1",
1633
+ height: "4",
1634
+ fill: "#d4c8f0"
1635
+ }),
1636
+ /* @__PURE__ */ e("rect", {
1637
+ x: "11",
1638
+ y: "10",
1639
+ width: "1",
1640
+ height: "4",
1641
+ fill: "#d4c8f0"
1642
+ })
1643
+ ]
1644
+ });
350
1645
  }
351
- function U() {
352
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
353
- /* @__PURE__ */ t("rect", { x: "5", y: "5", width: "6", height: "6", fill: "#fac775" }),
354
- /* @__PURE__ */ t("rect", { x: "6", y: "4", width: "4", height: "1", fill: "#fac775" }),
355
- /* @__PURE__ */ t("rect", { x: "6", y: "11", width: "4", height: "1", fill: "#fac775" }),
356
- /* @__PURE__ */ t("rect", { x: "4", y: "6", width: "1", height: "4", fill: "#fac775" }),
357
- /* @__PURE__ */ t("rect", { x: "11", y: "6", width: "1", height: "4", fill: "#fac775" }),
358
- /* @__PURE__ */ t("rect", { x: "7", y: "1", width: "2", height: "3", fill: "#fac775" }),
359
- /* @__PURE__ */ t("rect", { x: "7", y: "12", width: "2", height: "3", fill: "#fac775" }),
360
- /* @__PURE__ */ t("rect", { x: "1", y: "7", width: "3", height: "2", fill: "#fac775" }),
361
- /* @__PURE__ */ t("rect", { x: "12", y: "7", width: "3", height: "2", fill: "#fac775" }),
362
- /* @__PURE__ */ t("rect", { x: "3", y: "3", width: "2", height: "2", fill: "#fac775" }),
363
- /* @__PURE__ */ t("rect", { x: "11", y: "3", width: "2", height: "2", fill: "#fac775" }),
364
- /* @__PURE__ */ t("rect", { x: "3", y: "11", width: "2", height: "2", fill: "#fac775" }),
365
- /* @__PURE__ */ t("rect", { x: "11", y: "11", width: "2", height: "2", fill: "#fac775" }),
366
- /* @__PURE__ */ t("rect", { x: "6", y: "6", width: "4", height: "4", fill: "#fff8e0" })
367
- ] });
368
- }
369
- function V() {
370
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
371
- /* @__PURE__ */ t("rect", { x: "5", y: "1", width: "6", height: "2", fill: "#7f77dd" }),
372
- /* @__PURE__ */ t("rect", { x: "3", y: "3", width: "10", height: "2", fill: "#7f77dd" }),
373
- /* @__PURE__ */ t("rect", { x: "2", y: "5", width: "12", height: "6", fill: "#7f77dd" }),
374
- /* @__PURE__ */ t("rect", { x: "3", y: "11", width: "10", height: "2", fill: "#7f77dd" }),
375
- /* @__PURE__ */ t("rect", { x: "5", y: "13", width: "6", height: "2", fill: "#7f77dd" }),
376
- /* @__PURE__ */ t("rect", { x: "4", y: "4", width: "8", height: "8", fill: "#1a1828" }),
377
- /* @__PURE__ */ t("rect", { x: "5", y: "3", width: "6", height: "1", fill: "#1a1828" }),
378
- /* @__PURE__ */ t("rect", { x: "5", y: "12", width: "6", height: "1", fill: "#1a1828" }),
379
- /* @__PURE__ */ t("rect", { x: "3", y: "5", width: "1", height: "6", fill: "#1a1828" }),
380
- /* @__PURE__ */ t("rect", { x: "12", y: "5", width: "1", height: "6", fill: "#1a1828" }),
381
- /* @__PURE__ */ t("rect", { x: "6", y: "6", width: "4", height: "4", fill: "#4a44aa" }),
382
- /* @__PURE__ */ t("rect", { x: "7", y: "5", width: "2", height: "1", fill: "#4a44aa" }),
383
- /* @__PURE__ */ t("rect", { x: "7", y: "10", width: "2", height: "1", fill: "#4a44aa" }),
384
- /* @__PURE__ */ t("rect", { x: "5", y: "7", width: "1", height: "2", fill: "#4a44aa" }),
385
- /* @__PURE__ */ t("rect", { x: "10", y: "7", width: "1", height: "2", fill: "#4a44aa" }),
386
- /* @__PURE__ */ t("rect", { x: "7", y: "7", width: "2", height: "2", fill: "#c8c0ff" })
387
- ] });
388
- }
389
- function W() {
390
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
391
- /* @__PURE__ */ t("rect", { x: "5", y: "1", width: "6", height: "5", fill: "#e8c87a" }),
392
- /* @__PURE__ */ t("rect", { x: "7", y: "6", width: "2", height: "1", fill: "#d4a85a" }),
393
- /* @__PURE__ */ t("rect", { x: "3", y: "7", width: "10", height: "5", fill: "#c8873a" }),
394
- /* @__PURE__ */ t("rect", { x: "1", y: "7", width: "2", height: "4", fill: "#c8873a" }),
395
- /* @__PURE__ */ t("rect", { x: "13", y: "7", width: "2", height: "4", fill: "#c8873a" }),
396
- /* @__PURE__ */ t("rect", { x: "4", y: "12", width: "3", height: "3", fill: "#8a5c2a" }),
397
- /* @__PURE__ */ t("rect", { x: "9", y: "12", width: "3", height: "3", fill: "#8a5c2a" })
398
- ] });
399
- }
400
- function $() {
401
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
402
- /* @__PURE__ */ t("rect", { x: "2", y: "1", width: "3", height: "4", fill: "#c8a060" }),
403
- /* @__PURE__ */ t("rect", { x: "11", y: "1", width: "3", height: "4", fill: "#c8a060" }),
404
- /* @__PURE__ */ t("rect", { x: "3", y: "2", width: "1", height: "2", fill: "#e8886a" }),
405
- /* @__PURE__ */ t("rect", { x: "12", y: "2", width: "1", height: "2", fill: "#e8886a" }),
406
- /* @__PURE__ */ t("rect", { x: "3", y: "4", width: "10", height: "6", fill: "#c8a060" }),
407
- /* @__PURE__ */ t("rect", { x: "5", y: "8", width: "6", height: "3", fill: "#d4b070" }),
408
- /* @__PURE__ */ t("rect", { x: "7", y: "8", width: "2", height: "1", fill: "#5a3020" }),
409
- /* @__PURE__ */ t("rect", { x: "4", y: "6", width: "3", height: "2", fill: "#e8a020" }),
410
- /* @__PURE__ */ t("rect", { x: "9", y: "6", width: "3", height: "2", fill: "#e8a020" }),
411
- /* @__PURE__ */ t("rect", { x: "5", y: "6", width: "1", height: "2", fill: "#1a1008" }),
412
- /* @__PURE__ */ t("rect", { x: "10", y: "6", width: "1", height: "2", fill: "#1a1008" }),
413
- /* @__PURE__ */ t("rect", { x: "3", y: "11", width: "10", height: "4", fill: "#a87840" }),
414
- /* @__PURE__ */ t("rect", { x: "1", y: "11", width: "2", height: "3", fill: "#a87840" }),
415
- /* @__PURE__ */ t("rect", { x: "13", y: "11", width: "2", height: "3", fill: "#a87840" })
416
- ] });
1646
+ function F() {
1647
+ return /* @__PURE__ */ t("svg", {
1648
+ viewBox: "0 0 16 16",
1649
+ xmlns: "http://www.w3.org/2000/svg",
1650
+ children: [
1651
+ /* @__PURE__ */ e("rect", {
1652
+ x: "6",
1653
+ y: "1",
1654
+ width: "4",
1655
+ height: "2",
1656
+ fill: "#66d9e8"
1657
+ }),
1658
+ /* @__PURE__ */ e("rect", {
1659
+ x: "5",
1660
+ y: "3",
1661
+ width: "6",
1662
+ height: "4",
1663
+ fill: "#66d9e8"
1664
+ }),
1665
+ /* @__PURE__ */ e("rect", {
1666
+ x: "4",
1667
+ y: "7",
1668
+ width: "8",
1669
+ height: "4",
1670
+ fill: "#66d9e8"
1671
+ }),
1672
+ /* @__PURE__ */ e("rect", {
1673
+ x: "5",
1674
+ y: "11",
1675
+ width: "6",
1676
+ height: "2",
1677
+ fill: "#66d9e8"
1678
+ }),
1679
+ /* @__PURE__ */ e("rect", {
1680
+ x: "4",
1681
+ y: "13",
1682
+ width: "2",
1683
+ height: "2",
1684
+ fill: "#66d9e8"
1685
+ }),
1686
+ /* @__PURE__ */ e("rect", {
1687
+ x: "7",
1688
+ y: "13",
1689
+ width: "2",
1690
+ height: "2",
1691
+ fill: "#66d9e8"
1692
+ }),
1693
+ /* @__PURE__ */ e("rect", {
1694
+ x: "10",
1695
+ y: "13",
1696
+ width: "2",
1697
+ height: "2",
1698
+ fill: "#66d9e8"
1699
+ }),
1700
+ /* @__PURE__ */ e("rect", {
1701
+ x: "6",
1702
+ y: "4",
1703
+ width: "4",
1704
+ height: "3",
1705
+ fill: "#b0eff6"
1706
+ }),
1707
+ /* @__PURE__ */ e("rect", {
1708
+ x: "7",
1709
+ y: "3",
1710
+ width: "2",
1711
+ height: "1",
1712
+ fill: "#b0eff6"
1713
+ }),
1714
+ /* @__PURE__ */ e("rect", {
1715
+ x: "6",
1716
+ y: "7",
1717
+ width: "2",
1718
+ height: "2",
1719
+ fill: "#ffffff"
1720
+ }),
1721
+ /* @__PURE__ */ e("rect", {
1722
+ x: "9",
1723
+ y: "7",
1724
+ width: "2",
1725
+ height: "2",
1726
+ fill: "#ffffff"
1727
+ }),
1728
+ /* @__PURE__ */ e("rect", {
1729
+ x: "7",
1730
+ y: "8",
1731
+ width: "1",
1732
+ height: "1",
1733
+ fill: "#66d9e8"
1734
+ }),
1735
+ /* @__PURE__ */ e("rect", {
1736
+ x: "10",
1737
+ y: "8",
1738
+ width: "1",
1739
+ height: "1",
1740
+ fill: "#66d9e8"
1741
+ })
1742
+ ]
1743
+ });
417
1744
  }
418
- function E() {
419
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
420
- /* @__PURE__ */ t("rect", { x: "3", y: "1", width: "2", height: "5", fill: "#cc3030" }),
421
- /* @__PURE__ */ t("rect", { x: "11", y: "1", width: "2", height: "5", fill: "#cc3030" }),
422
- /* @__PURE__ */ t("rect", { x: "2", y: "1", width: "2", height: "2", fill: "#cc3030" }),
423
- /* @__PURE__ */ t("rect", { x: "12", y: "1", width: "2", height: "2", fill: "#cc3030" }),
424
- /* @__PURE__ */ t("rect", { x: "3", y: "5", width: "10", height: "6", fill: "#7a2a2a" }),
425
- /* @__PURE__ */ t("rect", { x: "4", y: "7", width: "3", height: "2", fill: "#ff2020" }),
426
- /* @__PURE__ */ t("rect", { x: "9", y: "7", width: "3", height: "2", fill: "#ff2020" }),
427
- /* @__PURE__ */ t("rect", { x: "5", y: "7", width: "1", height: "2", fill: "#ff8080" }),
428
- /* @__PURE__ */ t("rect", { x: "10", y: "7", width: "1", height: "2", fill: "#ff8080" }),
429
- /* @__PURE__ */ t("rect", { x: "6", y: "11", width: "1", height: "2", fill: "#f0e8d0" }),
430
- /* @__PURE__ */ t("rect", { x: "9", y: "11", width: "1", height: "2", fill: "#f0e8d0" }),
431
- /* @__PURE__ */ t("rect", { x: "2", y: "12", width: "12", height: "4", fill: "#5a1a1a" }),
432
- /* @__PURE__ */ t("rect", { x: "1", y: "12", width: "2", height: "3", fill: "#5a1a1a" }),
433
- /* @__PURE__ */ t("rect", { x: "13", y: "12", width: "2", height: "3", fill: "#5a1a1a" })
434
- ] });
1745
+ function I() {
1746
+ return /* @__PURE__ */ t("svg", {
1747
+ viewBox: "0 0 16 16",
1748
+ xmlns: "http://www.w3.org/2000/svg",
1749
+ children: [
1750
+ /* @__PURE__ */ e("rect", {
1751
+ x: "1",
1752
+ y: "11",
1753
+ width: "3",
1754
+ height: "4",
1755
+ fill: "#cfd8e2"
1756
+ }),
1757
+ /* @__PURE__ */ e("rect", {
1758
+ x: "6",
1759
+ y: "7",
1760
+ width: "4",
1761
+ height: "8",
1762
+ fill: "#4a4a5a"
1763
+ }),
1764
+ /* @__PURE__ */ e("rect", {
1765
+ x: "12",
1766
+ y: "4",
1767
+ width: "3",
1768
+ height: "11",
1769
+ fill: "#4a4a5a"
1770
+ }),
1771
+ /* @__PURE__ */ e("rect", {
1772
+ x: "1",
1773
+ y: "15",
1774
+ width: "14",
1775
+ height: "1",
1776
+ fill: "#5a5a6a"
1777
+ }),
1778
+ /* @__PURE__ */ e("rect", {
1779
+ x: "1",
1780
+ y: "8",
1781
+ width: "1",
1782
+ height: "2",
1783
+ fill: "#e6db74"
1784
+ }),
1785
+ /* @__PURE__ */ e("rect", {
1786
+ x: "3",
1787
+ y: "10",
1788
+ width: "1",
1789
+ height: "2",
1790
+ fill: "#e6db74"
1791
+ }),
1792
+ /* @__PURE__ */ e("rect", {
1793
+ x: "2",
1794
+ y: "10",
1795
+ width: "1",
1796
+ height: "1",
1797
+ fill: "#e6db74"
1798
+ })
1799
+ ]
1800
+ });
435
1801
  }
436
- function O() {
437
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
438
- /* @__PURE__ */ t("rect", { x: "4", y: "1", width: "8", height: "1", fill: "#e6db74" }),
439
- /* @__PURE__ */ t("rect", { x: "3", y: "2", width: "10", height: "1", fill: "#e6db74" }),
440
- /* @__PURE__ */ t("rect", { x: "3", y: "3", width: "2", height: "1", fill: "#e6db74" }),
441
- /* @__PURE__ */ t("rect", { x: "11", y: "3", width: "2", height: "1", fill: "#e6db74" }),
442
- /* @__PURE__ */ t("rect", { x: "5", y: "4", width: "6", height: "5", fill: "#f4e4c0" }),
443
- /* @__PURE__ */ t("rect", { x: "6", y: "6", width: "2", height: "1", fill: "#6090e0" }),
444
- /* @__PURE__ */ t("rect", { x: "10", y: "6", width: "2", height: "1", fill: "#6090e0" }),
445
- /* @__PURE__ */ t("rect", { x: "1", y: "9", width: "4", height: "5", fill: "#f0f0f8" }),
446
- /* @__PURE__ */ t("rect", { x: "11", y: "9", width: "4", height: "5", fill: "#f0f0f8" }),
447
- /* @__PURE__ */ t("rect", { x: "1", y: "9", width: "2", height: "3", fill: "#ffffff" }),
448
- /* @__PURE__ */ t("rect", { x: "13", y: "9", width: "2", height: "3", fill: "#ffffff" }),
449
- /* @__PURE__ */ t("rect", { x: "5", y: "9", width: "6", height: "6", fill: "#d4c8f0" }),
450
- /* @__PURE__ */ t("rect", { x: "4", y: "10", width: "1", height: "4", fill: "#d4c8f0" }),
451
- /* @__PURE__ */ t("rect", { x: "11", y: "10", width: "1", height: "4", fill: "#d4c8f0" })
452
- ] });
1802
+ function L() {
1803
+ return /* @__PURE__ */ t("svg", {
1804
+ viewBox: "0 0 16 16",
1805
+ xmlns: "http://www.w3.org/2000/svg",
1806
+ children: [
1807
+ /* @__PURE__ */ e("rect", {
1808
+ x: "1",
1809
+ y: "11",
1810
+ width: "3",
1811
+ height: "4",
1812
+ fill: "#4a4a5a"
1813
+ }),
1814
+ /* @__PURE__ */ e("rect", {
1815
+ x: "6",
1816
+ y: "7",
1817
+ width: "4",
1818
+ height: "8",
1819
+ fill: "#cfd8e2"
1820
+ }),
1821
+ /* @__PURE__ */ e("rect", {
1822
+ x: "12",
1823
+ y: "4",
1824
+ width: "3",
1825
+ height: "11",
1826
+ fill: "#4a4a5a"
1827
+ }),
1828
+ /* @__PURE__ */ e("rect", {
1829
+ x: "1",
1830
+ y: "15",
1831
+ width: "14",
1832
+ height: "1",
1833
+ fill: "#5a5a6a"
1834
+ }),
1835
+ /* @__PURE__ */ e("rect", {
1836
+ x: "6",
1837
+ y: "4",
1838
+ width: "1",
1839
+ height: "2",
1840
+ fill: "#e6db74"
1841
+ }),
1842
+ /* @__PURE__ */ e("rect", {
1843
+ x: "9",
1844
+ y: "4",
1845
+ width: "1",
1846
+ height: "2",
1847
+ fill: "#e6db74"
1848
+ }),
1849
+ /* @__PURE__ */ e("rect", {
1850
+ x: "7",
1851
+ y: "5",
1852
+ width: "2",
1853
+ height: "1",
1854
+ fill: "#e6db74"
1855
+ })
1856
+ ]
1857
+ });
453
1858
  }
454
1859
  function R() {
455
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
456
- /* @__PURE__ */ t("rect", { x: "6", y: "1", width: "4", height: "2", fill: "#66d9e8" }),
457
- /* @__PURE__ */ t("rect", { x: "5", y: "3", width: "6", height: "4", fill: "#66d9e8" }),
458
- /* @__PURE__ */ t("rect", { x: "4", y: "7", width: "8", height: "4", fill: "#66d9e8" }),
459
- /* @__PURE__ */ t("rect", { x: "5", y: "11", width: "6", height: "2", fill: "#66d9e8" }),
460
- /* @__PURE__ */ t("rect", { x: "4", y: "13", width: "2", height: "2", fill: "#66d9e8" }),
461
- /* @__PURE__ */ t("rect", { x: "7", y: "13", width: "2", height: "2", fill: "#66d9e8" }),
462
- /* @__PURE__ */ t("rect", { x: "10", y: "13", width: "2", height: "2", fill: "#66d9e8" }),
463
- /* @__PURE__ */ t("rect", { x: "6", y: "4", width: "4", height: "3", fill: "#b0eff6" }),
464
- /* @__PURE__ */ t("rect", { x: "7", y: "3", width: "2", height: "1", fill: "#b0eff6" }),
465
- /* @__PURE__ */ t("rect", { x: "6", y: "7", width: "2", height: "2", fill: "#ffffff" }),
466
- /* @__PURE__ */ t("rect", { x: "9", y: "7", width: "2", height: "2", fill: "#ffffff" }),
467
- /* @__PURE__ */ t("rect", { x: "7", y: "8", width: "1", height: "1", fill: "#66d9e8" }),
468
- /* @__PURE__ */ t("rect", { x: "10", y: "8", width: "1", height: "1", fill: "#66d9e8" })
469
- ] });
470
- }
471
- function z() {
472
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
473
- /* @__PURE__ */ t("rect", { x: "1", y: "11", width: "3", height: "4", fill: "#cfd8e2" }),
474
- /* @__PURE__ */ t("rect", { x: "6", y: "7", width: "4", height: "8", fill: "#4a4a5a" }),
475
- /* @__PURE__ */ t("rect", { x: "12", y: "4", width: "3", height: "11", fill: "#4a4a5a" }),
476
- /* @__PURE__ */ t("rect", { x: "1", y: "15", width: "14", height: "1", fill: "#5a5a6a" }),
477
- /* @__PURE__ */ t("rect", { x: "1", y: "8", width: "1", height: "2", fill: "#e6db74" }),
478
- /* @__PURE__ */ t("rect", { x: "3", y: "10", width: "1", height: "2", fill: "#e6db74" }),
479
- /* @__PURE__ */ t("rect", { x: "2", y: "10", width: "1", height: "1", fill: "#e6db74" })
480
- ] });
481
- }
482
- function G() {
483
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
484
- /* @__PURE__ */ t("rect", { x: "1", y: "11", width: "3", height: "4", fill: "#4a4a5a" }),
485
- /* @__PURE__ */ t("rect", { x: "6", y: "7", width: "4", height: "8", fill: "#cfd8e2" }),
486
- /* @__PURE__ */ t("rect", { x: "12", y: "4", width: "3", height: "11", fill: "#4a4a5a" }),
487
- /* @__PURE__ */ t("rect", { x: "1", y: "15", width: "14", height: "1", fill: "#5a5a6a" }),
488
- /* @__PURE__ */ t("rect", { x: "6", y: "4", width: "1", height: "2", fill: "#e6db74" }),
489
- /* @__PURE__ */ t("rect", { x: "9", y: "4", width: "1", height: "2", fill: "#e6db74" }),
490
- /* @__PURE__ */ t("rect", { x: "7", y: "5", width: "2", height: "1", fill: "#e6db74" })
491
- ] });
1860
+ return /* @__PURE__ */ t("svg", {
1861
+ viewBox: "0 0 16 16",
1862
+ xmlns: "http://www.w3.org/2000/svg",
1863
+ children: [
1864
+ /* @__PURE__ */ e("rect", {
1865
+ x: "1",
1866
+ y: "11",
1867
+ width: "3",
1868
+ height: "4",
1869
+ fill: "#4a4a5a"
1870
+ }),
1871
+ /* @__PURE__ */ e("rect", {
1872
+ x: "6",
1873
+ y: "7",
1874
+ width: "4",
1875
+ height: "8",
1876
+ fill: "#4a4a5a"
1877
+ }),
1878
+ /* @__PURE__ */ e("rect", {
1879
+ x: "12",
1880
+ y: "4",
1881
+ width: "3",
1882
+ height: "11",
1883
+ fill: "#cfd8e2"
1884
+ }),
1885
+ /* @__PURE__ */ e("rect", {
1886
+ x: "1",
1887
+ y: "15",
1888
+ width: "14",
1889
+ height: "1",
1890
+ fill: "#5a5a6a"
1891
+ }),
1892
+ /* @__PURE__ */ e("rect", {
1893
+ x: "13",
1894
+ y: "1",
1895
+ width: "1",
1896
+ height: "2",
1897
+ fill: "#e6db74"
1898
+ }),
1899
+ /* @__PURE__ */ e("rect", {
1900
+ x: "14",
1901
+ y: "1",
1902
+ width: "1",
1903
+ height: "3",
1904
+ fill: "#e6db74"
1905
+ }),
1906
+ /* @__PURE__ */ e("rect", {
1907
+ x: "13",
1908
+ y: "3",
1909
+ width: "1",
1910
+ height: "1",
1911
+ fill: "#e6db74"
1912
+ })
1913
+ ]
1914
+ });
492
1915
  }
493
- function M() {
494
- return /* @__PURE__ */ i("svg", { viewBox: "0 0 16 16", xmlns: "http://www.w3.org/2000/svg", children: [
495
- /* @__PURE__ */ t("rect", { x: "1", y: "11", width: "3", height: "4", fill: "#4a4a5a" }),
496
- /* @__PURE__ */ t("rect", { x: "6", y: "7", width: "4", height: "8", fill: "#4a4a5a" }),
497
- /* @__PURE__ */ t("rect", { x: "12", y: "4", width: "3", height: "11", fill: "#cfd8e2" }),
498
- /* @__PURE__ */ t("rect", { x: "1", y: "15", width: "14", height: "1", fill: "#5a5a6a" }),
499
- /* @__PURE__ */ t("rect", { x: "13", y: "1", width: "1", height: "2", fill: "#e6db74" }),
500
- /* @__PURE__ */ t("rect", { x: "14", y: "1", width: "1", height: "3", fill: "#e6db74" }),
501
- /* @__PURE__ */ t("rect", { x: "13", y: "3", width: "1", height: "1", fill: "#e6db74" })
502
- ] });
503
- }
504
- const o = {
505
- /* Weapons (6) */
506
- sword: y,
507
- staff: L,
508
- bow: _,
509
- katar: q,
510
- book: D,
511
- hammer: A,
512
- /* Elements (8) */
513
- neutral: C,
514
- earth: j,
515
- wind: F,
516
- water: H,
517
- fire: P,
518
- light: U,
519
- dark: T,
520
- void: V,
521
- /* Races (5) */
522
- human: W,
523
- beast: $,
524
- demon: E,
525
- angel: O,
526
- spirit: R,
527
- /* Sizes (3) */
528
- small: z,
529
- medium: G,
530
- large: M
531
- }, J = Object.keys(o);
532
- function u({ name: h = "sword", size: e = 22, style: c }) {
533
- const l = o[h] || y;
534
- return /* @__PURE__ */ t("span", { style: {
535
- display: "inline-flex",
536
- alignItems: "center",
537
- justifyContent: "center",
538
- width: e,
539
- height: e,
540
- imageRendering: "pixelated",
541
- flexShrink: 0,
542
- ...c
543
- }, children: /* @__PURE__ */ t(l, {}) });
544
- }
545
- u.icons = J;
546
- const ht = u;
547
- function K() {
548
- return /* @__PURE__ */ t(
549
- "svg",
550
- {
551
- viewBox: "0 0 12 8",
552
- width: 12,
553
- height: 12,
554
- "aria-hidden": "true",
555
- fill: "none",
556
- stroke: "currentColor",
557
- strokeWidth: 2,
558
- strokeLinecap: "round",
559
- strokeLinejoin: "round",
560
- children: /* @__PURE__ */ t("polyline", { points: "1,1.5 6,6.5 11,1.5" })
561
- }
562
- );
563
- }
564
- function lt({ href: h, label: e, className: c, children: l, ...d }) {
565
- return /* @__PURE__ */ t(
566
- "a",
567
- {
568
- ...d,
569
- href: h,
570
- "aria-label": e,
571
- className: a("ns-section-arrow", c),
572
- children: l || /* @__PURE__ */ t(K, {})
573
- }
574
- );
575
- }
576
- export {
577
- Y as Button,
578
- Z as FeatureCard,
579
- tt as HUDBar,
580
- it as HUDDivider,
581
- ht as HUDIcon,
582
- et as HUDLabel,
583
- X as QuestCard,
584
- u as RPGIcon,
585
- lt as SectionArrow,
586
- J as icons
587
- };
1916
+ var z = {
1917
+ sword: _,
1918
+ staff: y,
1919
+ bow: v,
1920
+ katar: b,
1921
+ book: x,
1922
+ hammer: S,
1923
+ neutral: C,
1924
+ earth: w,
1925
+ wind: T,
1926
+ water: E,
1927
+ fire: D,
1928
+ light: k,
1929
+ dark: O,
1930
+ void: A,
1931
+ human: j,
1932
+ beast: M,
1933
+ demon: N,
1934
+ angel: P,
1935
+ spirit: F,
1936
+ small: I,
1937
+ medium: L,
1938
+ large: R
1939
+ }, B = Object.keys(z);
1940
+ function V({ name: t = "sword", size: n = 22, style: r }) {
1941
+ let i = z[t] || _;
1942
+ return /* @__PURE__ */ e("span", {
1943
+ style: {
1944
+ display: "inline-flex",
1945
+ alignItems: "center",
1946
+ justifyContent: "center",
1947
+ width: n,
1948
+ height: n,
1949
+ imageRendering: "pixelated",
1950
+ flexShrink: 0,
1951
+ ...r
1952
+ },
1953
+ children: /* @__PURE__ */ e(i, {})
1954
+ });
1955
+ }
1956
+ V.icons = B;
1957
+ var H = V;
1958
+ //#endregion
1959
+ //#region components/navigation/SectionArrow.jsx
1960
+ function U() {
1961
+ return /* @__PURE__ */ e("svg", {
1962
+ viewBox: "0 0 12 8",
1963
+ width: 12,
1964
+ height: 12,
1965
+ "aria-hidden": "true",
1966
+ fill: "none",
1967
+ stroke: "currentColor",
1968
+ strokeWidth: 2,
1969
+ strokeLinecap: "round",
1970
+ strokeLinejoin: "round",
1971
+ children: /* @__PURE__ */ e("polyline", { points: "1,1.5 6,6.5 11,1.5" })
1972
+ });
1973
+ }
1974
+ function W({ href: t, label: r, className: i, children: a, ...o }) {
1975
+ return /* @__PURE__ */ e("a", {
1976
+ ...o,
1977
+ href: t,
1978
+ "aria-label": r,
1979
+ className: n("ns-section-arrow", i),
1980
+ children: a || /* @__PURE__ */ e(U, {})
1981
+ });
1982
+ }
1983
+ //#endregion
1984
+ export { c as Button, l as FeatureCard, f as HUDBar, p as HUDDivider, H as HUDIcon, g as HUDLabel, u as QuestCard, V as RPGIcon, W as SectionArrow, B as icons };