@polderlabs/bizar 5.0.0 → 5.0.2
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/bizar-dash/dist/assets/{icons-CFqu2M-c.js → icons-Bo0iH9EC.js} +166 -121
- package/bizar-dash/dist/assets/icons-Bo0iH9EC.js.map +1 -0
- package/bizar-dash/dist/assets/main-C1cpttnv.js +19 -0
- package/bizar-dash/dist/assets/main-C1cpttnv.js.map +1 -0
- package/bizar-dash/dist/assets/main-DTkNlLrw.css +1 -0
- package/bizar-dash/dist/assets/mobile-BtxQJftK.js +2 -0
- package/bizar-dash/dist/assets/mobile-BtxQJftK.js.map +1 -0
- package/bizar-dash/dist/assets/{mobile-DHXXbn1A.js → mobile-DD-FZrTC.js} +1 -1
- package/bizar-dash/dist/assets/{mobile-DHXXbn1A.js.map → mobile-DD-FZrTC.js.map} +1 -1
- package/bizar-dash/dist/index.html +4 -4
- package/bizar-dash/dist/mobile.html +3 -3
- package/bizar-dash/node_modules/.package-lock.json +6 -0
- package/bizar-dash/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -1
- package/bizar-dash/package-lock.json +6 -0
- package/bizar-dash/src/server/api.mjs +7 -0
- package/bizar-dash/src/server/diagnostics-store.mjs +452 -2
- package/bizar-dash/src/server/memory-store.mjs +46 -0
- package/bizar-dash/src/server/providers-store.mjs +11 -4
- package/bizar-dash/src/server/routes/_shared.mjs +2 -2
- package/bizar-dash/src/server/routes/doctor.mjs +71 -0
- package/bizar-dash/src/server/routes/env-vars.mjs +67 -1
- package/bizar-dash/src/server/routes/memory.mjs +3 -0
- package/bizar-dash/src/server/routes/opencode-session-detail.mjs +61 -42
- package/bizar-dash/src/server/routes/schedules.mjs +55 -0
- package/bizar-dash/src/server/serve-info.mjs +172 -0
- package/bizar-dash/src/web/App.tsx +48 -11
- package/bizar-dash/src/web/components/AutosaveField.tsx +50 -0
- package/bizar-dash/src/web/components/DoctorPanel.tsx +160 -0
- package/bizar-dash/src/web/components/EnvVarManager.tsx +245 -62
- package/bizar-dash/src/web/components/ScheduleTemplateCard.tsx +71 -0
- package/bizar-dash/src/web/components/SettingsNav.tsx +101 -0
- package/bizar-dash/src/web/components/Sidebar.tsx +25 -1
- package/bizar-dash/src/web/components/StatusBadge.tsx +33 -2
- package/bizar-dash/src/web/components/Topbar.tsx +11 -0
- package/bizar-dash/src/web/components/chat/ChatInfoPanel.tsx +64 -0
- package/bizar-dash/src/web/components/chat/Composer.tsx +1 -1
- package/bizar-dash/src/web/components/chat/useChat.ts +118 -1
- package/bizar-dash/src/web/hooks/useAutosave.ts +107 -0
- package/bizar-dash/src/web/lib/types.ts +134 -0
- package/bizar-dash/src/web/styles/chat.css +8 -5
- package/bizar-dash/src/web/styles/main.css +77 -2
- package/bizar-dash/src/web/styles/settings.css +265 -0
- package/bizar-dash/src/web/views/Chat.tsx +15 -1
- package/bizar-dash/src/web/views/Doctor.tsx +317 -0
- package/bizar-dash/src/web/views/MiniMaxUsage.tsx +1 -0
- package/bizar-dash/src/web/views/Schedules.tsx +94 -12
- package/bizar-dash/src/web/views/Settings.tsx +76 -46
- package/bizar-dash/src/web/views/memory/ConfigPanel.tsx +114 -133
- package/bizar-dash/src/web/views/settings/AgentSection.tsx +23 -12
- package/bizar-dash/src/web/views/settings/EnvVarsSection.tsx +5 -6
- package/bizar-dash/src/web/views/settings/GeneralSection.tsx +38 -15
- package/bizar-dash/src/web/views/settings/MemorySection.tsx +92 -8
- package/bizar-dash/tests/autosave.test.tsx +276 -0
- package/bizar-dash/tests/chat-composer.test.tsx +140 -0
- package/bizar-dash/tests/components/doctor-panel.test.tsx +105 -0
- package/bizar-dash/tests/diagnostics-store.test.mjs +206 -0
- package/bizar-dash/tests/env-vars-extended.test.mjs +190 -0
- package/bizar-dash/tests/layout-spacing.test.mjs +101 -0
- package/bizar-dash/tests/memory-default-vault.test.mjs +98 -0
- package/bizar-dash/tests/minimax-bar.test.tsx +113 -0
- package/bizar-dash/tests/minimax-models.test.mjs +123 -0
- package/bizar-dash/tests/opencode-sessions-detail.test.mjs +158 -0
- package/bizar-dash/tests/routes-doctor.test.mjs +159 -0
- package/bizar-dash/tests/schedules-templates.test.mjs +144 -0
- package/bizar-dash/tests/settings-layout.test.tsx +129 -0
- package/bizar-dash/tests/settings-mode-wiring.test.tsx +151 -0
- package/bizar-dash/tests/settings-nav.test.tsx +126 -0
- package/cli/commands/dash.mjs +5 -1
- package/cli/commands/minimax.mjs +5 -2
- package/cli/tests/minimax-cli.test.mjs +79 -0
- package/config/agents/frigg.md +1 -1
- package/config/agents/heimdall.md +1 -1
- package/config/agents/mimir.md +1 -1
- package/config/agents/quick.md +1 -1
- package/config/agents/semble-search.md +1 -1
- package/config/agents/vor.md +1 -1
- package/config/opencode.json +28 -21
- package/config/opencode.json.template +8 -1
- package/package.json +1 -1
- package/plugins/bizar/index.ts +77 -0
- package/plugins/bizar/src/compaction.d.mts +48 -0
- package/plugins/bizar/src/compaction.mjs +192 -0
- package/plugins/bizar/tests/compaction.test.ts +264 -0
- package/templates/schedules/daily-backup.json +12 -0
- package/templates/schedules/daily-cleanup.json +12 -0
- package/templates/schedules/hourly-health-check.json +12 -0
- package/templates/schedules/webhook-on-push.json +13 -0
- package/templates/schedules/weekly-digest.json +13 -0
- package/bizar-dash/dist/assets/icons-CFqu2M-c.js.map +0 -1
- package/bizar-dash/dist/assets/main-Dl8yY5_H.js +0 -16
- package/bizar-dash/dist/assets/main-Dl8yY5_H.js.map +0 -1
- package/bizar-dash/dist/assets/main-ZAfGKENE.css +0 -1
- package/bizar-dash/dist/assets/mobile-C2gysFOZ.js +0 -2
- package/bizar-dash/dist/assets/mobile-C2gysFOZ.js.map +0 -1
- package/bizar-dash/src/web/views/settings/BackupSection.tsx +0 -16
- package/bizar-dash/src/web/views/settings/ProvidersSection.tsx +0 -16
- package/bizar-dash/src/web/views/settings/SkillsSection.tsx +0 -16
|
@@ -13,7 +13,7 @@ import{r as k}from"./react-vendor-DZRUXSPQ.js";/**
|
|
|
13
13
|
*
|
|
14
14
|
* This source code is licensed under the ISC license.
|
|
15
15
|
* See the LICENSE file in the root directory of this source tree.
|
|
16
|
-
*/const M=k.forwardRef(({color:t="currentColor",size:e=24,strokeWidth:y=2,absoluteStrokeWidth:h,className:r="",children:c,iconNode:s
|
|
16
|
+
*/const M=k.forwardRef(({color:t="currentColor",size:e=24,strokeWidth:y=2,absoluteStrokeWidth:h,className:r="",children:c,iconNode:d,...s},o)=>k.createElement("svg",{ref:o,...x,width:e,height:e,stroke:t,strokeWidth:h?Number(y)*24/Number(e):y,className:l("lucide",r),...s},[...d.map(([p,i])=>k.createElement(p,i)),...Array.isArray(c)?c:[c]]));/**
|
|
17
17
|
* @license lucide-react v0.460.0 - ISC
|
|
18
18
|
*
|
|
19
19
|
* This source code is licensed under the ISC license.
|
|
@@ -48,12 +48,12 @@ import{r as k}from"./react-vendor-DZRUXSPQ.js";/**
|
|
|
48
48
|
*
|
|
49
49
|
* This source code is licensed under the ISC license.
|
|
50
50
|
* See the LICENSE file in the root directory of this source tree.
|
|
51
|
-
*/const
|
|
51
|
+
*/const b=a("ArrowUp",[["path",{d:"m5 12 7-7 7 7",key:"hav0vg"}],["path",{d:"M12 19V5",key:"x0mq9r"}]]);/**
|
|
52
52
|
* @license lucide-react v0.460.0 - ISC
|
|
53
53
|
*
|
|
54
54
|
* This source code is licensed under the ISC license.
|
|
55
55
|
* See the LICENSE file in the root directory of this source tree.
|
|
56
|
-
*/const
|
|
56
|
+
*/const C=a("Bell",[["path",{d:"M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9",key:"1qo2s2"}],["path",{d:"M10.3 21a1.94 1.94 0 0 0 3.4 0",key:"qgo35s"}]]);/**
|
|
57
57
|
* @license lucide-react v0.460.0 - ISC
|
|
58
58
|
*
|
|
59
59
|
* This source code is licensed under the ISC license.
|
|
@@ -63,52 +63,57 @@ import{r as k}from"./react-vendor-DZRUXSPQ.js";/**
|
|
|
63
63
|
*
|
|
64
64
|
* This source code is licensed under the ISC license.
|
|
65
65
|
* See the LICENSE file in the root directory of this source tree.
|
|
66
|
-
*/const
|
|
66
|
+
*/const q=a("Bot",[["path",{d:"M12 8V4H8",key:"hb8ula"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2",key:"enze0r"}],["path",{d:"M2 14h2",key:"vft8re"}],["path",{d:"M20 14h2",key:"4cs60a"}],["path",{d:"M15 13v2",key:"1xurst"}],["path",{d:"M9 13v2",key:"rq6x2g"}]]);/**
|
|
67
67
|
* @license lucide-react v0.460.0 - ISC
|
|
68
68
|
*
|
|
69
69
|
* This source code is licensed under the ISC license.
|
|
70
70
|
* See the LICENSE file in the root directory of this source tree.
|
|
71
|
-
*/const A=a("
|
|
71
|
+
*/const A=a("Boxes",[["path",{d:"M2.97 12.92A2 2 0 0 0 2 14.63v3.24a2 2 0 0 0 .97 1.71l3 1.8a2 2 0 0 0 2.06 0L12 19v-5.5l-5-3-4.03 2.42Z",key:"lc1i9w"}],["path",{d:"m7 16.5-4.74-2.85",key:"1o9zyk"}],["path",{d:"m7 16.5 5-3",key:"va8pkn"}],["path",{d:"M7 16.5v5.17",key:"jnp8gn"}],["path",{d:"M12 13.5V19l3.97 2.38a2 2 0 0 0 2.06 0l3-1.8a2 2 0 0 0 .97-1.71v-3.24a2 2 0 0 0-.97-1.71L17 10.5l-5 3Z",key:"8zsnat"}],["path",{d:"m17 16.5-5-3",key:"8arw3v"}],["path",{d:"m17 16.5 4.74-2.85",key:"8rfmw"}],["path",{d:"M17 16.5v5.17",key:"k6z78m"}],["path",{d:"M7.97 4.42A2 2 0 0 0 7 6.13v4.37l5 3 5-3V6.13a2 2 0 0 0-.97-1.71l-3-1.8a2 2 0 0 0-2.06 0l-3 1.8Z",key:"1xygjf"}],["path",{d:"M12 8 7.26 5.15",key:"1vbdud"}],["path",{d:"m12 8 4.74-2.85",key:"3rx089"}],["path",{d:"M12 13.5V8",key:"1io7kd"}]]);/**
|
|
72
72
|
* @license lucide-react v0.460.0 - ISC
|
|
73
73
|
*
|
|
74
74
|
* This source code is licensed under the ISC license.
|
|
75
75
|
* See the LICENSE file in the root directory of this source tree.
|
|
76
|
-
*/const L=a("
|
|
76
|
+
*/const L=a("Brain",[["path",{d:"M12 5a3 3 0 1 0-5.997.125 4 4 0 0 0-2.526 5.77 4 4 0 0 0 .556 6.588A4 4 0 1 0 12 18Z",key:"l5xja"}],["path",{d:"M12 5a3 3 0 1 1 5.997.125 4 4 0 0 1 2.526 5.77 4 4 0 0 1-.556 6.588A4 4 0 1 1 12 18Z",key:"ep3f8r"}],["path",{d:"M15 13a4.5 4.5 0 0 1-3-4 4.5 4.5 0 0 1-3 4",key:"1p4c4q"}],["path",{d:"M17.599 6.5a3 3 0 0 0 .399-1.375",key:"tmeiqw"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5",key:"105sqy"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396",key:"ql3yin"}],["path",{d:"M19.938 10.5a4 4 0 0 1 .585.396",key:"1qfode"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516",key:"2e4loj"}],["path",{d:"M19.967 17.484A4 4 0 0 1 18 18",key:"159ez6"}]]);/**
|
|
77
77
|
* @license lucide-react v0.460.0 - ISC
|
|
78
78
|
*
|
|
79
79
|
* This source code is licensed under the ISC license.
|
|
80
80
|
* See the LICENSE file in the root directory of this source tree.
|
|
81
|
-
*/const H=a("
|
|
81
|
+
*/const H=a("Calendar",[["path",{d:"M8 2v4",key:"1cmpym"}],["path",{d:"M16 2v4",key:"4m81vk"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2",key:"1hopcy"}],["path",{d:"M3 10h18",key:"8toen8"}]]);/**
|
|
82
82
|
* @license lucide-react v0.460.0 - ISC
|
|
83
83
|
*
|
|
84
84
|
* This source code is licensed under the ISC license.
|
|
85
85
|
* See the LICENSE file in the root directory of this source tree.
|
|
86
|
-
*/const V=a("
|
|
86
|
+
*/const V=a("Camera",[["path",{d:"M14.5 4h-5L7 7H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-3l-2.5-3z",key:"1tc9qg"}],["circle",{cx:"12",cy:"13",r:"3",key:"1vg3eu"}]]);/**
|
|
87
87
|
* @license lucide-react v0.460.0 - ISC
|
|
88
88
|
*
|
|
89
89
|
* This source code is licensed under the ISC license.
|
|
90
90
|
* See the LICENSE file in the root directory of this source tree.
|
|
91
|
-
*/const P=a("
|
|
91
|
+
*/const P=a("ChartNoAxesColumn",[["line",{x1:"18",x2:"18",y1:"20",y2:"10",key:"1xfpm4"}],["line",{x1:"12",x2:"12",y1:"20",y2:"4",key:"be30l9"}],["line",{x1:"6",x2:"6",y1:"20",y2:"14",key:"1r4le6"}]]);/**
|
|
92
92
|
* @license lucide-react v0.460.0 - ISC
|
|
93
93
|
*
|
|
94
94
|
* This source code is licensed under the ISC license.
|
|
95
95
|
* See the LICENSE file in the root directory of this source tree.
|
|
96
|
-
*/const S=a("
|
|
96
|
+
*/const S=a("CheckCheck",[["path",{d:"M18 6 7 17l-5-5",key:"116fxf"}],["path",{d:"m22 10-7.5 7.5L13 16",key:"ke71qq"}]]);/**
|
|
97
97
|
* @license lucide-react v0.460.0 - ISC
|
|
98
98
|
*
|
|
99
99
|
* This source code is licensed under the ISC license.
|
|
100
100
|
* See the LICENSE file in the root directory of this source tree.
|
|
101
|
-
*/const j=a("
|
|
101
|
+
*/const j=a("Check",[["path",{d:"M20 6 9 17l-5-5",key:"1gmf2c"}]]);/**
|
|
102
102
|
* @license lucide-react v0.460.0 - ISC
|
|
103
103
|
*
|
|
104
104
|
* This source code is licensed under the ISC license.
|
|
105
105
|
* See the LICENSE file in the root directory of this source tree.
|
|
106
|
-
*/const F=a("
|
|
106
|
+
*/const F=a("ChevronDown",[["path",{d:"m6 9 6 6 6-6",key:"qrunsl"}]]);/**
|
|
107
107
|
* @license lucide-react v0.460.0 - ISC
|
|
108
108
|
*
|
|
109
109
|
* This source code is licensed under the ISC license.
|
|
110
110
|
* See the LICENSE file in the root directory of this source tree.
|
|
111
|
-
*/const R=a("
|
|
111
|
+
*/const R=a("ChevronLeft",[["path",{d:"m15 18-6-6 6-6",key:"1wnfg3"}]]);/**
|
|
112
|
+
* @license lucide-react v0.460.0 - ISC
|
|
113
|
+
*
|
|
114
|
+
* This source code is licensed under the ISC license.
|
|
115
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
116
|
+
*/const Z=a("ChevronRight",[["path",{d:"m9 18 6-6-6-6",key:"mthhwq"}]]);/**
|
|
112
117
|
* @license lucide-react v0.460.0 - ISC
|
|
113
118
|
*
|
|
114
119
|
* This source code is licensed under the ISC license.
|
|
@@ -118,539 +123,579 @@ import{r as k}from"./react-vendor-DZRUXSPQ.js";/**
|
|
|
118
123
|
*
|
|
119
124
|
* This source code is licensed under the ISC license.
|
|
120
125
|
* See the LICENSE file in the root directory of this source tree.
|
|
121
|
-
*/const
|
|
126
|
+
*/const D=a("CircleCheckBig",[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335",key:"yps3ct"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);/**
|
|
127
|
+
* @license lucide-react v0.460.0 - ISC
|
|
128
|
+
*
|
|
129
|
+
* This source code is licensed under the ISC license.
|
|
130
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
131
|
+
*/const G=a("CircleCheck",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/**
|
|
132
|
+
* @license lucide-react v0.460.0 - ISC
|
|
133
|
+
*
|
|
134
|
+
* This source code is licensed under the ISC license.
|
|
135
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
136
|
+
*/const T=a("CircleDollarSign",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8",key:"1h4pet"}],["path",{d:"M12 18V6",key:"zqpxq5"}]]);/**
|
|
137
|
+
* @license lucide-react v0.460.0 - ISC
|
|
138
|
+
*
|
|
139
|
+
* This source code is licensed under the ISC license.
|
|
140
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
141
|
+
*/const O=a("CircleDot",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}]]);/**
|
|
142
|
+
* @license lucide-react v0.460.0 - ISC
|
|
143
|
+
*
|
|
144
|
+
* This source code is licensed under the ISC license.
|
|
145
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
146
|
+
*/const E=a("CircleHelp",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3",key:"1u773s"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
|
|
147
|
+
* @license lucide-react v0.460.0 - ISC
|
|
148
|
+
*
|
|
149
|
+
* This source code is licensed under the ISC license.
|
|
150
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
151
|
+
*/const U=a("CirclePlay",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polygon",{points:"10 8 16 12 10 16 10 8",key:"1cimsy"}]]);/**
|
|
152
|
+
* @license lucide-react v0.460.0 - ISC
|
|
153
|
+
*
|
|
154
|
+
* This source code is licensed under the ISC license.
|
|
155
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
156
|
+
*/const I=a("CircleX",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"m15 9-6 6",key:"1uzhvr"}],["path",{d:"m9 9 6 6",key:"z0biqf"}]]);/**
|
|
157
|
+
* @license lucide-react v0.460.0 - ISC
|
|
158
|
+
*
|
|
159
|
+
* This source code is licensed under the ISC license.
|
|
160
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
161
|
+
*/const N=a("Circle",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}]]);/**
|
|
162
|
+
* @license lucide-react v0.460.0 - ISC
|
|
163
|
+
*
|
|
164
|
+
* This source code is licensed under the ISC license.
|
|
165
|
+
* See the LICENSE file in the root directory of this source tree.
|
|
166
|
+
*/const $=a("Clipboard",[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1",key:"tgr4d6"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2",key:"116196"}]]);/**
|
|
122
167
|
* @license lucide-react v0.460.0 - ISC
|
|
123
168
|
*
|
|
124
169
|
* This source code is licensed under the ISC license.
|
|
125
170
|
* See the LICENSE file in the root directory of this source tree.
|
|
126
|
-
*/const
|
|
171
|
+
*/const K=a("Clock",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["polyline",{points:"12 6 12 12 16 14",key:"68esgv"}]]);/**
|
|
127
172
|
* @license lucide-react v0.460.0 - ISC
|
|
128
173
|
*
|
|
129
174
|
* This source code is licensed under the ISC license.
|
|
130
175
|
* See the LICENSE file in the root directory of this source tree.
|
|
131
|
-
*/const
|
|
176
|
+
*/const W=a("Code",[["polyline",{points:"16 18 22 12 16 6",key:"z7tu5w"}],["polyline",{points:"8 6 2 12 8 18",key:"1eg1df"}]]);/**
|
|
132
177
|
* @license lucide-react v0.460.0 - ISC
|
|
133
178
|
*
|
|
134
179
|
* This source code is licensed under the ISC license.
|
|
135
180
|
* See the LICENSE file in the root directory of this source tree.
|
|
136
|
-
*/const
|
|
181
|
+
*/const X=a("Coins",[["circle",{cx:"8",cy:"8",r:"6",key:"3yglwk"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18",key:"t5s6rm"}],["path",{d:"M7 6h1v4",key:"1obek4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82",key:"1rbuyh"}]]);/**
|
|
137
182
|
* @license lucide-react v0.460.0 - ISC
|
|
138
183
|
*
|
|
139
184
|
* This source code is licensed under the ISC license.
|
|
140
185
|
* See the LICENSE file in the root directory of this source tree.
|
|
141
|
-
*/const
|
|
186
|
+
*/const J=a("Copy",[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2",key:"17jyea"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2",key:"zix9uf"}]]);/**
|
|
142
187
|
* @license lucide-react v0.460.0 - ISC
|
|
143
188
|
*
|
|
144
189
|
* This source code is licensed under the ISC license.
|
|
145
190
|
* See the LICENSE file in the root directory of this source tree.
|
|
146
|
-
*/const
|
|
191
|
+
*/const Q=a("Cpu",[["rect",{width:"16",height:"16",x:"4",y:"4",rx:"2",key:"14l7u7"}],["rect",{width:"6",height:"6",x:"9",y:"9",rx:"1",key:"5aljv4"}],["path",{d:"M15 2v2",key:"13l42r"}],["path",{d:"M15 20v2",key:"15mkzm"}],["path",{d:"M2 15h2",key:"1gxd5l"}],["path",{d:"M2 9h2",key:"1bbxkp"}],["path",{d:"M20 15h2",key:"19e6y8"}],["path",{d:"M20 9h2",key:"19tzq7"}],["path",{d:"M9 2v2",key:"165o2o"}],["path",{d:"M9 20v2",key:"i2bqo8"}]]);/**
|
|
147
192
|
* @license lucide-react v0.460.0 - ISC
|
|
148
193
|
*
|
|
149
194
|
* This source code is licensed under the ISC license.
|
|
150
195
|
* See the LICENSE file in the root directory of this source tree.
|
|
151
|
-
*/const
|
|
196
|
+
*/const Y=a("Crown",[["path",{d:"M11.562 3.266a.5.5 0 0 1 .876 0L15.39 8.87a1 1 0 0 0 1.516.294L21.183 5.5a.5.5 0 0 1 .798.519l-2.834 10.246a1 1 0 0 1-.956.734H5.81a1 1 0 0 1-.957-.734L2.02 6.02a.5.5 0 0 1 .798-.519l4.276 3.664a1 1 0 0 0 1.516-.294z",key:"1vdc57"}],["path",{d:"M5 21h14",key:"11awu3"}]]);/**
|
|
152
197
|
* @license lucide-react v0.460.0 - ISC
|
|
153
198
|
*
|
|
154
199
|
* This source code is licensed under the ISC license.
|
|
155
200
|
* See the LICENSE file in the root directory of this source tree.
|
|
156
|
-
*/const
|
|
201
|
+
*/const _=a("Database",[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3",key:"msslwz"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5",key:"1wlel7"}],["path",{d:"M3 12A9 3 0 0 0 21 12",key:"mv7ke4"}]]);/**
|
|
157
202
|
* @license lucide-react v0.460.0 - ISC
|
|
158
203
|
*
|
|
159
204
|
* This source code is licensed under the ISC license.
|
|
160
205
|
* See the LICENSE file in the root directory of this source tree.
|
|
161
|
-
*/const
|
|
206
|
+
*/const a1=a("Diamond",[["path",{d:"M2.7 10.3a2.41 2.41 0 0 0 0 3.41l7.59 7.59a2.41 2.41 0 0 0 3.41 0l7.59-7.59a2.41 2.41 0 0 0 0-3.41l-7.59-7.59a2.41 2.41 0 0 0-3.41 0Z",key:"1f1r0c"}]]);/**
|
|
162
207
|
* @license lucide-react v0.460.0 - ISC
|
|
163
208
|
*
|
|
164
209
|
* This source code is licensed under the ISC license.
|
|
165
210
|
* See the LICENSE file in the root directory of this source tree.
|
|
166
|
-
*/const
|
|
211
|
+
*/const e1=a("Download",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"7 10 12 15 17 10",key:"2ggqvy"}],["line",{x1:"12",x2:"12",y1:"15",y2:"3",key:"1vk2je"}]]);/**
|
|
167
212
|
* @license lucide-react v0.460.0 - ISC
|
|
168
213
|
*
|
|
169
214
|
* This source code is licensed under the ISC license.
|
|
170
215
|
* See the LICENSE file in the root directory of this source tree.
|
|
171
|
-
*/const
|
|
216
|
+
*/const t1=a("Ellipsis",[["circle",{cx:"12",cy:"12",r:"1",key:"41hilf"}],["circle",{cx:"19",cy:"12",r:"1",key:"1wjl8i"}],["circle",{cx:"5",cy:"12",r:"1",key:"1pcz8c"}]]);/**
|
|
172
217
|
* @license lucide-react v0.460.0 - ISC
|
|
173
218
|
*
|
|
174
219
|
* This source code is licensed under the ISC license.
|
|
175
220
|
* See the LICENSE file in the root directory of this source tree.
|
|
176
|
-
*/const
|
|
221
|
+
*/const y1=a("ExternalLink",[["path",{d:"M15 3h6v6",key:"1q9fwt"}],["path",{d:"M10 14 21 3",key:"gplh6r"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6",key:"a6xqqp"}]]);/**
|
|
177
222
|
* @license lucide-react v0.460.0 - ISC
|
|
178
223
|
*
|
|
179
224
|
* This source code is licensed under the ISC license.
|
|
180
225
|
* See the LICENSE file in the root directory of this source tree.
|
|
181
|
-
*/const
|
|
226
|
+
*/const h1=a("EyeOff",[["path",{d:"M10.733 5.076a10.744 10.744 0 0 1 11.205 6.575 1 1 0 0 1 0 .696 10.747 10.747 0 0 1-1.444 2.49",key:"ct8e1f"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242",key:"151rxh"}],["path",{d:"M17.479 17.499a10.75 10.75 0 0 1-15.417-5.151 1 1 0 0 1 0-.696 10.75 10.75 0 0 1 4.446-5.143",key:"13bj9a"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);/**
|
|
182
227
|
* @license lucide-react v0.460.0 - ISC
|
|
183
228
|
*
|
|
184
229
|
* This source code is licensed under the ISC license.
|
|
185
230
|
* See the LICENSE file in the root directory of this source tree.
|
|
186
|
-
*/const
|
|
231
|
+
*/const c1=a("Eye",[["path",{d:"M2.062 12.348a1 1 0 0 1 0-.696 10.75 10.75 0 0 1 19.876 0 1 1 0 0 1 0 .696 10.75 10.75 0 0 1-19.876 0",key:"1nclc0"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/**
|
|
187
232
|
* @license lucide-react v0.460.0 - ISC
|
|
188
233
|
*
|
|
189
234
|
* This source code is licensed under the ISC license.
|
|
190
235
|
* See the LICENSE file in the root directory of this source tree.
|
|
191
|
-
*/const
|
|
236
|
+
*/const k1=a("FileCode2",[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4",key:"1pf5j1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"m5 12-3 3 3 3",key:"oke12k"}],["path",{d:"m9 18 3-3-3-3",key:"112psh"}]]);/**
|
|
192
237
|
* @license lucide-react v0.460.0 - ISC
|
|
193
238
|
*
|
|
194
239
|
* This source code is licensed under the ISC license.
|
|
195
240
|
* See the LICENSE file in the root directory of this source tree.
|
|
196
|
-
*/const
|
|
241
|
+
*/const r1=a("FileCode",[["path",{d:"M10 12.5 8 15l2 2.5",key:"1tg20x"}],["path",{d:"m14 12.5 2 2.5-2 2.5",key:"yinavb"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z",key:"1mlx9k"}]]);/**
|
|
197
242
|
* @license lucide-react v0.460.0 - ISC
|
|
198
243
|
*
|
|
199
244
|
* This source code is licensed under the ISC license.
|
|
200
245
|
* See the LICENSE file in the root directory of this source tree.
|
|
201
|
-
*/const
|
|
246
|
+
*/const l1=a("FilePlus",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M9 15h6",key:"cctwl0"}],["path",{d:"M12 18v-6",key:"17g6i2"}]]);/**
|
|
202
247
|
* @license lucide-react v0.460.0 - ISC
|
|
203
248
|
*
|
|
204
249
|
* This source code is licensed under the ISC license.
|
|
205
250
|
* See the LICENSE file in the root directory of this source tree.
|
|
206
|
-
*/const
|
|
251
|
+
*/const d1=a("FileText",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}],["path",{d:"M10 9H8",key:"b1mrlr"}],["path",{d:"M16 13H8",key:"t4e002"}],["path",{d:"M16 17H8",key:"z1uh3a"}]]);/**
|
|
207
252
|
* @license lucide-react v0.460.0 - ISC
|
|
208
253
|
*
|
|
209
254
|
* This source code is licensed under the ISC license.
|
|
210
255
|
* See the LICENSE file in the root directory of this source tree.
|
|
211
|
-
*/const
|
|
256
|
+
*/const s1=a("File",[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z",key:"1rqfz7"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4",key:"tnqrlb"}]]);/**
|
|
212
257
|
* @license lucide-react v0.460.0 - ISC
|
|
213
258
|
*
|
|
214
259
|
* This source code is licensed under the ISC license.
|
|
215
260
|
* See the LICENSE file in the root directory of this source tree.
|
|
216
|
-
*/const
|
|
261
|
+
*/const o1=a("Filter",[["polygon",{points:"22 3 2 3 10 12.46 10 19 14 21 14 12.46 22 3",key:"1yg77f"}]]);/**
|
|
217
262
|
* @license lucide-react v0.460.0 - ISC
|
|
218
263
|
*
|
|
219
264
|
* This source code is licensed under the ISC license.
|
|
220
265
|
* See the LICENSE file in the root directory of this source tree.
|
|
221
|
-
*/const
|
|
266
|
+
*/const p1=a("FolderOpen",[["path",{d:"m6 14 1.5-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.54 6a2 2 0 0 1-1.95 1.5H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H18a2 2 0 0 1 2 2v2",key:"usdka0"}]]);/**
|
|
222
267
|
* @license lucide-react v0.460.0 - ISC
|
|
223
268
|
*
|
|
224
269
|
* This source code is licensed under the ISC license.
|
|
225
270
|
* See the LICENSE file in the root directory of this source tree.
|
|
226
|
-
*/const
|
|
271
|
+
*/const i1=a("FolderPlus",[["path",{d:"M12 10v6",key:"1bos4e"}],["path",{d:"M9 13h6",key:"1uhe8q"}],["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/**
|
|
227
272
|
* @license lucide-react v0.460.0 - ISC
|
|
228
273
|
*
|
|
229
274
|
* This source code is licensed under the ISC license.
|
|
230
275
|
* See the LICENSE file in the root directory of this source tree.
|
|
231
|
-
*/const
|
|
276
|
+
*/const n1=a("FolderSearch",[["path",{d:"M10.7 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.9a2 2 0 0 1 1.69.9l.81 1.2a2 2 0 0 0 1.67.9H20a2 2 0 0 1 2 2v4.1",key:"1bw5m7"}],["path",{d:"m21 21-1.9-1.9",key:"1g2n9r"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}]]);/**
|
|
232
277
|
* @license lucide-react v0.460.0 - ISC
|
|
233
278
|
*
|
|
234
279
|
* This source code is licensed under the ISC license.
|
|
235
280
|
* See the LICENSE file in the root directory of this source tree.
|
|
236
|
-
*/const
|
|
281
|
+
*/const x1=a("Folder",[["path",{d:"M20 20a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.9a2 2 0 0 1-1.69-.9L9.6 3.9A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13a2 2 0 0 0 2 2Z",key:"1kt360"}]]);/**
|
|
237
282
|
* @license lucide-react v0.460.0 - ISC
|
|
238
283
|
*
|
|
239
284
|
* This source code is licensed under the ISC license.
|
|
240
285
|
* See the LICENSE file in the root directory of this source tree.
|
|
241
|
-
*/const
|
|
286
|
+
*/const M1=a("Gauge",[["path",{d:"m12 14 4-4",key:"9kzdfg"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0",key:"19p75a"}]]);/**
|
|
242
287
|
* @license lucide-react v0.460.0 - ISC
|
|
243
288
|
*
|
|
244
289
|
* This source code is licensed under the ISC license.
|
|
245
290
|
* See the LICENSE file in the root directory of this source tree.
|
|
246
|
-
*/const
|
|
291
|
+
*/const v1=a("GitBranch",[["line",{x1:"6",x2:"6",y1:"3",y2:"15",key:"17qcm7"}],["circle",{cx:"18",cy:"6",r:"3",key:"1h7g24"}],["circle",{cx:"6",cy:"18",r:"3",key:"fqmcym"}],["path",{d:"M18 9a9 9 0 0 1-9 9",key:"n2h4wq"}]]);/**
|
|
247
292
|
* @license lucide-react v0.460.0 - ISC
|
|
248
293
|
*
|
|
249
294
|
* This source code is licensed under the ISC license.
|
|
250
295
|
* See the LICENSE file in the root directory of this source tree.
|
|
251
|
-
*/const
|
|
296
|
+
*/const m1=a("GitCommitHorizontal",[["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12",key:"1dyftd"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12",key:"oup4p8"}]]);/**
|
|
252
297
|
* @license lucide-react v0.460.0 - ISC
|
|
253
298
|
*
|
|
254
299
|
* This source code is licensed under the ISC license.
|
|
255
300
|
* See the LICENSE file in the root directory of this source tree.
|
|
256
|
-
*/const
|
|
301
|
+
*/const g1=a("GitMerge",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9",key:"7kw0sc"}]]);/**
|
|
257
302
|
* @license lucide-react v0.460.0 - ISC
|
|
258
303
|
*
|
|
259
304
|
* This source code is licensed under the ISC license.
|
|
260
305
|
* See the LICENSE file in the root directory of this source tree.
|
|
261
|
-
*/const
|
|
306
|
+
*/const u1=a("GitPullRequest",[["circle",{cx:"18",cy:"18",r:"3",key:"1xkwt0"}],["circle",{cx:"6",cy:"6",r:"3",key:"1lh9wr"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7",key:"1yeb86"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21",key:"rroup"}]]);/**
|
|
262
307
|
* @license lucide-react v0.460.0 - ISC
|
|
263
308
|
*
|
|
264
309
|
* This source code is licensed under the ISC license.
|
|
265
310
|
* See the LICENSE file in the root directory of this source tree.
|
|
266
|
-
*/const
|
|
311
|
+
*/const w1=a("Globe",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20",key:"13o1zl"}],["path",{d:"M2 12h20",key:"9i4pu4"}]]);/**
|
|
267
312
|
* @license lucide-react v0.460.0 - ISC
|
|
268
313
|
*
|
|
269
314
|
* This source code is licensed under the ISC license.
|
|
270
315
|
* See the LICENSE file in the root directory of this source tree.
|
|
271
|
-
*/const
|
|
316
|
+
*/const f1=a("Grid3x3",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M3 15h18",key:"5xshup"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"M15 3v18",key:"14nvp0"}]]);/**
|
|
272
317
|
* @license lucide-react v0.460.0 - ISC
|
|
273
318
|
*
|
|
274
319
|
* This source code is licensed under the ISC license.
|
|
275
320
|
* See the LICENSE file in the root directory of this source tree.
|
|
276
|
-
*/const
|
|
321
|
+
*/const b1=a("History",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}],["path",{d:"M12 7v5l4 2",key:"1fdv2h"}]]);/**
|
|
277
322
|
* @license lucide-react v0.460.0 - ISC
|
|
278
323
|
*
|
|
279
324
|
* This source code is licensed under the ISC license.
|
|
280
325
|
* See the LICENSE file in the root directory of this source tree.
|
|
281
|
-
*/const
|
|
326
|
+
*/const C1=a("House",[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8",key:"5wwlr5"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-5.999a2 2 0 0 1 2.582 0l7 5.999A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z",key:"1d0kgt"}]]);/**
|
|
282
327
|
* @license lucide-react v0.460.0 - ISC
|
|
283
328
|
*
|
|
284
329
|
* This source code is licensed under the ISC license.
|
|
285
330
|
* See the LICENSE file in the root directory of this source tree.
|
|
286
|
-
*/const
|
|
331
|
+
*/const z1=a("Image",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2",key:"1m3agn"}],["circle",{cx:"9",cy:"9",r:"2",key:"af1f0g"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21",key:"1xmnt7"}]]);/**
|
|
287
332
|
* @license lucide-react v0.460.0 - ISC
|
|
288
333
|
*
|
|
289
334
|
* This source code is licensed under the ISC license.
|
|
290
335
|
* See the LICENSE file in the root directory of this source tree.
|
|
291
|
-
*/const
|
|
336
|
+
*/const q1=a("Inbox",[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12",key:"o97t9d"}],["path",{d:"M5.45 5.11 2 12v6a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-6l-3.45-6.89A2 2 0 0 0 16.76 4H7.24a2 2 0 0 0-1.79 1.11z",key:"oot6mr"}]]);/**
|
|
292
337
|
* @license lucide-react v0.460.0 - ISC
|
|
293
338
|
*
|
|
294
339
|
* This source code is licensed under the ISC license.
|
|
295
340
|
* See the LICENSE file in the root directory of this source tree.
|
|
296
|
-
*/const
|
|
341
|
+
*/const A1=a("Info",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["path",{d:"M12 16v-4",key:"1dtifu"}],["path",{d:"M12 8h.01",key:"e9boi3"}]]);/**
|
|
297
342
|
* @license lucide-react v0.460.0 - ISC
|
|
298
343
|
*
|
|
299
344
|
* This source code is licensed under the ISC license.
|
|
300
345
|
* See the LICENSE file in the root directory of this source tree.
|
|
301
|
-
*/const
|
|
346
|
+
*/const L1=a("KeyRound",[["path",{d:"M2.586 17.414A2 2 0 0 0 2 18.828V21a1 1 0 0 0 1 1h3a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h1a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1h.172a2 2 0 0 0 1.414-.586l.814-.814a6.5 6.5 0 1 0-4-4z",key:"1s6t7t"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor",key:"w0ekpg"}]]);/**
|
|
302
347
|
* @license lucide-react v0.460.0 - ISC
|
|
303
348
|
*
|
|
304
349
|
* This source code is licensed under the ISC license.
|
|
305
350
|
* See the LICENSE file in the root directory of this source tree.
|
|
306
|
-
*/const
|
|
351
|
+
*/const H1=a("Layers",[["path",{d:"m12.83 2.18a2 2 0 0 0-1.66 0L2.6 6.08a1 1 0 0 0 0 1.83l8.58 3.91a2 2 0 0 0 1.66 0l8.58-3.9a1 1 0 0 0 0-1.83Z",key:"8b97xw"}],["path",{d:"m22 17.65-9.17 4.16a2 2 0 0 1-1.66 0L2 17.65",key:"dd6zsq"}],["path",{d:"m22 12.65-9.17 4.16a2 2 0 0 1-1.66 0L2 12.65",key:"ep9fru"}]]);/**
|
|
307
352
|
* @license lucide-react v0.460.0 - ISC
|
|
308
353
|
*
|
|
309
354
|
* This source code is licensed under the ISC license.
|
|
310
355
|
* See the LICENSE file in the root directory of this source tree.
|
|
311
|
-
*/const
|
|
356
|
+
*/const V1=a("LayoutDashboard",[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1",key:"10lvy0"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1",key:"16une8"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1",key:"1hutg5"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1",key:"ldoo1y"}]]);/**
|
|
312
357
|
* @license lucide-react v0.460.0 - ISC
|
|
313
358
|
*
|
|
314
359
|
* This source code is licensed under the ISC license.
|
|
315
360
|
* See the LICENSE file in the root directory of this source tree.
|
|
316
|
-
*/const
|
|
361
|
+
*/const P1=a("LayoutGrid",[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1",key:"1g98yp"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1",key:"6d4xhi"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1",key:"nxv5o0"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1",key:"1bb6yr"}]]);/**
|
|
317
362
|
* @license lucide-react v0.460.0 - ISC
|
|
318
363
|
*
|
|
319
364
|
* This source code is licensed under the ISC license.
|
|
320
365
|
* See the LICENSE file in the root directory of this source tree.
|
|
321
|
-
*/const
|
|
366
|
+
*/const S1=a("LayoutTemplate",[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1",key:"f1a2em"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1",key:"jqznyg"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1",key:"q5h2i8"}]]);/**
|
|
322
367
|
* @license lucide-react v0.460.0 - ISC
|
|
323
368
|
*
|
|
324
369
|
* This source code is licensed under the ISC license.
|
|
325
370
|
* See the LICENSE file in the root directory of this source tree.
|
|
326
|
-
*/const
|
|
371
|
+
*/const j1=a("Lightbulb",[["path",{d:"M15 14c.2-1 .7-1.7 1.5-2.5 1-.9 1.5-2.2 1.5-3.5A6 6 0 0 0 6 8c0 1 .2 2.2 1.5 3.5.7.7 1.3 1.5 1.5 2.5",key:"1gvzjb"}],["path",{d:"M9 18h6",key:"x1upvd"}],["path",{d:"M10 22h4",key:"ceow96"}]]);/**
|
|
327
372
|
* @license lucide-react v0.460.0 - ISC
|
|
328
373
|
*
|
|
329
374
|
* This source code is licensed under the ISC license.
|
|
330
375
|
* See the LICENSE file in the root directory of this source tree.
|
|
331
|
-
*/const
|
|
376
|
+
*/const F1=a("Link2",[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2",key:"8i5ue5"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2",key:"1b9ql8"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12",key:"1jonct"}]]);/**
|
|
332
377
|
* @license lucide-react v0.460.0 - ISC
|
|
333
378
|
*
|
|
334
379
|
* This source code is licensed under the ISC license.
|
|
335
380
|
* See the LICENSE file in the root directory of this source tree.
|
|
336
|
-
*/const
|
|
381
|
+
*/const R1=a("LoaderCircle",[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56",key:"13zald"}]]);/**
|
|
337
382
|
* @license lucide-react v0.460.0 - ISC
|
|
338
383
|
*
|
|
339
384
|
* This source code is licensed under the ISC license.
|
|
340
385
|
* See the LICENSE file in the root directory of this source tree.
|
|
341
|
-
*/const
|
|
386
|
+
*/const Z1=a("Loader",[["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m16.2 7.8 2.9-2.9",key:"r700ao"}],["path",{d:"M18 12h4",key:"wj9ykh"}],["path",{d:"m16.2 16.2 2.9 2.9",key:"1bxg5t"}],["path",{d:"M12 18v4",key:"jadmvz"}],["path",{d:"m4.9 19.1 2.9-2.9",key:"bwix9q"}],["path",{d:"M2 12h4",key:"j09sii"}],["path",{d:"m4.9 4.9 2.9 2.9",key:"giyufr"}]]);/**
|
|
342
387
|
* @license lucide-react v0.460.0 - ISC
|
|
343
388
|
*
|
|
344
389
|
* This source code is licensed under the ISC license.
|
|
345
390
|
* See the LICENSE file in the root directory of this source tree.
|
|
346
|
-
*/const
|
|
391
|
+
*/const B1=a("Mail",[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2",key:"18n3k1"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7",key:"1ocrg3"}]]);/**
|
|
347
392
|
* @license lucide-react v0.460.0 - ISC
|
|
348
393
|
*
|
|
349
394
|
* This source code is licensed under the ISC license.
|
|
350
395
|
* See the LICENSE file in the root directory of this source tree.
|
|
351
|
-
*/const
|
|
396
|
+
*/const D1=a("MapPin",[["path",{d:"M20 10c0 4.993-5.539 10.193-7.399 11.799a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 16 0",key:"1r0f0z"}],["circle",{cx:"12",cy:"10",r:"3",key:"ilqhr7"}]]);/**
|
|
352
397
|
* @license lucide-react v0.460.0 - ISC
|
|
353
398
|
*
|
|
354
399
|
* This source code is licensed under the ISC license.
|
|
355
400
|
* See the LICENSE file in the root directory of this source tree.
|
|
356
|
-
*/const
|
|
401
|
+
*/const G1=a("Map",[["path",{d:"M14.106 5.553a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619v12.764a1 1 0 0 1-.553.894l-4.553 2.277a2 2 0 0 1-1.788 0l-4.212-2.106a2 2 0 0 0-1.788 0l-3.659 1.83A1 1 0 0 1 3 19.381V6.618a1 1 0 0 1 .553-.894l4.553-2.277a2 2 0 0 1 1.788 0z",key:"169xi5"}],["path",{d:"M15 5.764v15",key:"1pn4in"}],["path",{d:"M9 3.236v15",key:"1uimfh"}]]);/**
|
|
357
402
|
* @license lucide-react v0.460.0 - ISC
|
|
358
403
|
*
|
|
359
404
|
* This source code is licensed under the ISC license.
|
|
360
405
|
* See the LICENSE file in the root directory of this source tree.
|
|
361
|
-
*/const
|
|
406
|
+
*/const T1=a("Maximize2",[["polyline",{points:"15 3 21 3 21 9",key:"mznyad"}],["polyline",{points:"9 21 3 21 3 15",key:"1avn1i"}],["line",{x1:"21",x2:"14",y1:"3",y2:"10",key:"ota7mn"}],["line",{x1:"3",x2:"10",y1:"21",y2:"14",key:"1atl0r"}]]);/**
|
|
362
407
|
* @license lucide-react v0.460.0 - ISC
|
|
363
408
|
*
|
|
364
409
|
* This source code is licensed under the ISC license.
|
|
365
410
|
* See the LICENSE file in the root directory of this source tree.
|
|
366
|
-
*/const
|
|
411
|
+
*/const O1=a("MessageSquare",[["path",{d:"M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z",key:"1lielz"}]]);/**
|
|
367
412
|
* @license lucide-react v0.460.0 - ISC
|
|
368
413
|
*
|
|
369
414
|
* This source code is licensed under the ISC license.
|
|
370
415
|
* See the LICENSE file in the root directory of this source tree.
|
|
371
|
-
*/const
|
|
416
|
+
*/const E1=a("Mic",[["path",{d:"M12 2a3 3 0 0 0-3 3v7a3 3 0 0 0 6 0V5a3 3 0 0 0-3-3Z",key:"131961"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2",key:"1vc78b"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22",key:"x3vr5v"}]]);/**
|
|
372
417
|
* @license lucide-react v0.460.0 - ISC
|
|
373
418
|
*
|
|
374
419
|
* This source code is licensed under the ISC license.
|
|
375
420
|
* See the LICENSE file in the root directory of this source tree.
|
|
376
|
-
*/const
|
|
421
|
+
*/const U1=a("Minus",[["path",{d:"M5 12h14",key:"1ays0h"}]]);/**
|
|
377
422
|
* @license lucide-react v0.460.0 - ISC
|
|
378
423
|
*
|
|
379
424
|
* This source code is licensed under the ISC license.
|
|
380
425
|
* See the LICENSE file in the root directory of this source tree.
|
|
381
|
-
*/const
|
|
426
|
+
*/const I1=a("Monitor",[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2",key:"48i651"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21",key:"1svkeh"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21",key:"vw1qmm"}]]);/**
|
|
382
427
|
* @license lucide-react v0.460.0 - ISC
|
|
383
428
|
*
|
|
384
429
|
* This source code is licensed under the ISC license.
|
|
385
430
|
* See the LICENSE file in the root directory of this source tree.
|
|
386
|
-
*/const
|
|
431
|
+
*/const N1=a("Moon",[["path",{d:"M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z",key:"a7tn18"}]]);/**
|
|
387
432
|
* @license lucide-react v0.460.0 - ISC
|
|
388
433
|
*
|
|
389
434
|
* This source code is licensed under the ISC license.
|
|
390
435
|
* See the LICENSE file in the root directory of this source tree.
|
|
391
|
-
*/const
|
|
436
|
+
*/const $1=a("Network",[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1",key:"4q2zg0"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1",key:"8cvhb9"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1",key:"1egb70"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3",key:"1jsf9p"}],["path",{d:"M12 12V8",key:"2874zd"}]]);/**
|
|
392
437
|
* @license lucide-react v0.460.0 - ISC
|
|
393
438
|
*
|
|
394
439
|
* This source code is licensed under the ISC license.
|
|
395
440
|
* See the LICENSE file in the root directory of this source tree.
|
|
396
|
-
*/const
|
|
441
|
+
*/const K1=a("OctagonAlert",[["path",{d:"M12 16h.01",key:"1drbdi"}],["path",{d:"M12 8v4",key:"1got3b"}],["path",{d:"M15.312 2a2 2 0 0 1 1.414.586l4.688 4.688A2 2 0 0 1 22 8.688v6.624a2 2 0 0 1-.586 1.414l-4.688 4.688a2 2 0 0 1-1.414.586H8.688a2 2 0 0 1-1.414-.586l-4.688-4.688A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2z",key:"1fd625"}]]);/**
|
|
397
442
|
* @license lucide-react v0.460.0 - ISC
|
|
398
443
|
*
|
|
399
444
|
* This source code is licensed under the ISC license.
|
|
400
445
|
* See the LICENSE file in the root directory of this source tree.
|
|
401
|
-
*/const
|
|
446
|
+
*/const W1=a("Package",[["path",{d:"M11 21.73a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73z",key:"1a0edw"}],["path",{d:"M12 22V12",key:"d0xqtd"}],["path",{d:"m3.3 7 7.703 4.734a2 2 0 0 0 1.994 0L20.7 7",key:"yx3hmr"}],["path",{d:"m7.5 4.27 9 5.15",key:"1c824w"}]]);/**
|
|
402
447
|
* @license lucide-react v0.460.0 - ISC
|
|
403
448
|
*
|
|
404
449
|
* This source code is licensed under the ISC license.
|
|
405
450
|
* See the LICENSE file in the root directory of this source tree.
|
|
406
|
-
*/const
|
|
451
|
+
*/const X1=a("Palette",[["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor",key:"1okk4w"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor",key:"f64h9f"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor",key:"fotxhn"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor",key:"qy21gx"}],["path",{d:"M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10c.926 0 1.648-.746 1.648-1.688 0-.437-.18-.835-.437-1.125-.29-.289-.438-.652-.438-1.125a1.64 1.64 0 0 1 1.668-1.668h1.996c3.051 0 5.555-2.503 5.555-5.554C21.965 6.012 17.461 2 12 2z",key:"12rzf8"}]]);/**
|
|
407
452
|
* @license lucide-react v0.460.0 - ISC
|
|
408
453
|
*
|
|
409
454
|
* This source code is licensed under the ISC license.
|
|
410
455
|
* See the LICENSE file in the root directory of this source tree.
|
|
411
|
-
*/const
|
|
456
|
+
*/const J1=a("PanelLeftClose",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m16 15-3-3 3-3",key:"14y99z"}]]);/**
|
|
412
457
|
* @license lucide-react v0.460.0 - ISC
|
|
413
458
|
*
|
|
414
459
|
* This source code is licensed under the ISC license.
|
|
415
460
|
* See the LICENSE file in the root directory of this source tree.
|
|
416
|
-
*/const
|
|
461
|
+
*/const Q1=a("PanelLeftOpen",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M9 3v18",key:"fh3hqa"}],["path",{d:"m14 9 3 3-3 3",key:"8010ee"}]]);/**
|
|
417
462
|
* @license lucide-react v0.460.0 - ISC
|
|
418
463
|
*
|
|
419
464
|
* This source code is licensed under the ISC license.
|
|
420
465
|
* See the LICENSE file in the root directory of this source tree.
|
|
421
|
-
*/const
|
|
466
|
+
*/const Y1=a("PanelsTopLeft",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}],["path",{d:"M3 9h18",key:"1pudct"}],["path",{d:"M9 21V9",key:"1oto5p"}]]);/**
|
|
422
467
|
* @license lucide-react v0.460.0 - ISC
|
|
423
468
|
*
|
|
424
469
|
* This source code is licensed under the ISC license.
|
|
425
470
|
* See the LICENSE file in the root directory of this source tree.
|
|
426
|
-
*/const
|
|
471
|
+
*/const _1=a("Paperclip",[["path",{d:"m21.44 11.05-9.19 9.19a6 6 0 0 1-8.49-8.49l8.57-8.57A4 4 0 1 1 18 8.84l-8.59 8.57a2 2 0 0 1-2.83-2.83l8.49-8.48",key:"1u3ebp"}]]);/**
|
|
427
472
|
* @license lucide-react v0.460.0 - ISC
|
|
428
473
|
*
|
|
429
474
|
* This source code is licensed under the ISC license.
|
|
430
475
|
* See the LICENSE file in the root directory of this source tree.
|
|
431
|
-
*/const
|
|
476
|
+
*/const a2=a("Pause",[["rect",{x:"14",y:"4",width:"4",height:"16",rx:"1",key:"zuxfzm"}],["rect",{x:"6",y:"4",width:"4",height:"16",rx:"1",key:"1okwgv"}]]);/**
|
|
432
477
|
* @license lucide-react v0.460.0 - ISC
|
|
433
478
|
*
|
|
434
479
|
* This source code is licensed under the ISC license.
|
|
435
480
|
* See the LICENSE file in the root directory of this source tree.
|
|
436
|
-
*/const
|
|
481
|
+
*/const e2=a("Pen",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}]]);/**
|
|
437
482
|
* @license lucide-react v0.460.0 - ISC
|
|
438
483
|
*
|
|
439
484
|
* This source code is licensed under the ISC license.
|
|
440
485
|
* See the LICENSE file in the root directory of this source tree.
|
|
441
|
-
*/const
|
|
486
|
+
*/const t2=a("Pencil",[["path",{d:"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z",key:"1a8usu"}],["path",{d:"m15 5 4 4",key:"1mk7zo"}]]);/**
|
|
442
487
|
* @license lucide-react v0.460.0 - ISC
|
|
443
488
|
*
|
|
444
489
|
* This source code is licensed under the ISC license.
|
|
445
490
|
* See the LICENSE file in the root directory of this source tree.
|
|
446
|
-
*/const
|
|
491
|
+
*/const y2=a("Pin",[["path",{d:"M12 17v5",key:"bb1du9"}],["path",{d:"M9 10.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-.76a2 2 0 0 0-1.11-1.79l-1.78-.9A2 2 0 0 1 15 10.76V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H8a2 2 0 0 0 0 4 1 1 0 0 1 1 1z",key:"1nkz8b"}]]);/**
|
|
447
492
|
* @license lucide-react v0.460.0 - ISC
|
|
448
493
|
*
|
|
449
494
|
* This source code is licensed under the ISC license.
|
|
450
495
|
* See the LICENSE file in the root directory of this source tree.
|
|
451
|
-
*/const
|
|
496
|
+
*/const h2=a("Play",[["polygon",{points:"6 3 20 12 6 21 6 3",key:"1oa8hb"}]]);/**
|
|
452
497
|
* @license lucide-react v0.460.0 - ISC
|
|
453
498
|
*
|
|
454
499
|
* This source code is licensed under the ISC license.
|
|
455
500
|
* See the LICENSE file in the root directory of this source tree.
|
|
456
|
-
*/const
|
|
501
|
+
*/const c2=a("Plug",[["path",{d:"M12 22v-5",key:"1ega77"}],["path",{d:"M9 8V2",key:"14iosj"}],["path",{d:"M15 8V2",key:"18g5xt"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z",key:"osxo6l"}]]);/**
|
|
457
502
|
* @license lucide-react v0.460.0 - ISC
|
|
458
503
|
*
|
|
459
504
|
* This source code is licensed under the ISC license.
|
|
460
505
|
* See the LICENSE file in the root directory of this source tree.
|
|
461
|
-
*/const
|
|
506
|
+
*/const k2=a("Plus",[["path",{d:"M5 12h14",key:"1ays0h"}],["path",{d:"M12 5v14",key:"s699le"}]]);/**
|
|
462
507
|
* @license lucide-react v0.460.0 - ISC
|
|
463
508
|
*
|
|
464
509
|
* This source code is licensed under the ISC license.
|
|
465
510
|
* See the LICENSE file in the root directory of this source tree.
|
|
466
|
-
*/const
|
|
511
|
+
*/const r2=a("PowerOff",[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15",key:"dxknvb"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68",key:"1x7qb5"}],["path",{d:"M12 2v4",key:"3427ic"}],["path",{d:"m2 2 20 20",key:"1ooewy"}]]);/**
|
|
467
512
|
* @license lucide-react v0.460.0 - ISC
|
|
468
513
|
*
|
|
469
514
|
* This source code is licensed under the ISC license.
|
|
470
515
|
* See the LICENSE file in the root directory of this source tree.
|
|
471
|
-
*/const
|
|
516
|
+
*/const l2=a("Power",[["path",{d:"M12 2v10",key:"mnfbl"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04",key:"obofu9"}]]);/**
|
|
472
517
|
* @license lucide-react v0.460.0 - ISC
|
|
473
518
|
*
|
|
474
519
|
* This source code is licensed under the ISC license.
|
|
475
520
|
* See the LICENSE file in the root directory of this source tree.
|
|
476
|
-
*/const
|
|
521
|
+
*/const d2=a("Puzzle",[["path",{d:"M15.39 4.39a1 1 0 0 0 1.68-.474 2.5 2.5 0 1 1 3.014 3.015 1 1 0 0 0-.474 1.68l1.683 1.682a2.414 2.414 0 0 1 0 3.414L19.61 15.39a1 1 0 0 1-1.68-.474 2.5 2.5 0 1 0-3.014 3.015 1 1 0 0 1 .474 1.68l-1.683 1.682a2.414 2.414 0 0 1-3.414 0L8.61 19.61a1 1 0 0 0-1.68.474 2.5 2.5 0 1 1-3.014-3.015 1 1 0 0 0 .474-1.68l-1.683-1.682a2.414 2.414 0 0 1 0-3.414L4.39 8.61a1 1 0 0 1 1.68.474 2.5 2.5 0 1 0 3.014-3.015 1 1 0 0 1-.474-1.68l1.683-1.682a2.414 2.414 0 0 1 3.414 0z",key:"w46dr5"}]]);/**
|
|
477
522
|
* @license lucide-react v0.460.0 - ISC
|
|
478
523
|
*
|
|
479
524
|
* This source code is licensed under the ISC license.
|
|
480
525
|
* See the LICENSE file in the root directory of this source tree.
|
|
481
|
-
*/const
|
|
526
|
+
*/const s2=a("Radio",[["path",{d:"M4.9 19.1C1 15.2 1 8.8 4.9 4.9",key:"1vaf9d"}],["path",{d:"M7.8 16.2c-2.3-2.3-2.3-6.1 0-8.5",key:"u1ii0m"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}],["path",{d:"M16.2 7.8c2.3 2.3 2.3 6.1 0 8.5",key:"1j5fej"}],["path",{d:"M19.1 4.9C23 8.8 23 15.1 19.1 19",key:"10b0cb"}]]);/**
|
|
482
527
|
* @license lucide-react v0.460.0 - ISC
|
|
483
528
|
*
|
|
484
529
|
* This source code is licensed under the ISC license.
|
|
485
530
|
* See the LICENSE file in the root directory of this source tree.
|
|
486
|
-
*/const
|
|
531
|
+
*/const o2=a("Redo2",[["path",{d:"m15 14 5-5-5-5",key:"12vg1m"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13",key:"6uklza"}]]);/**
|
|
487
532
|
* @license lucide-react v0.460.0 - ISC
|
|
488
533
|
*
|
|
489
534
|
* This source code is licensed under the ISC license.
|
|
490
535
|
* See the LICENSE file in the root directory of this source tree.
|
|
491
|
-
*/const
|
|
536
|
+
*/const p2=a("RefreshCw",[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8",key:"v9h5vc"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16",key:"3uifl3"}],["path",{d:"M8 16H3v5",key:"1cv678"}]]);/**
|
|
492
537
|
* @license lucide-react v0.460.0 - ISC
|
|
493
538
|
*
|
|
494
539
|
* This source code is licensed under the ISC license.
|
|
495
540
|
* See the LICENSE file in the root directory of this source tree.
|
|
496
|
-
*/const
|
|
541
|
+
*/const i2=a("RotateCcw",[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8",key:"1357e3"}],["path",{d:"M3 3v5h5",key:"1xhq8a"}]]);/**
|
|
497
542
|
* @license lucide-react v0.460.0 - ISC
|
|
498
543
|
*
|
|
499
544
|
* This source code is licensed under the ISC license.
|
|
500
545
|
* See the LICENSE file in the root directory of this source tree.
|
|
501
|
-
*/const
|
|
546
|
+
*/const n2=a("RotateCw",[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8",key:"1p45f6"}],["path",{d:"M21 3v5h-5",key:"1q7to0"}]]);/**
|
|
502
547
|
* @license lucide-react v0.460.0 - ISC
|
|
503
548
|
*
|
|
504
549
|
* This source code is licensed under the ISC license.
|
|
505
550
|
* See the LICENSE file in the root directory of this source tree.
|
|
506
|
-
*/const
|
|
551
|
+
*/const x2=a("Save",[["path",{d:"M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z",key:"1c8476"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7",key:"1ydtos"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7",key:"t51u73"}]]);/**
|
|
507
552
|
* @license lucide-react v0.460.0 - ISC
|
|
508
553
|
*
|
|
509
554
|
* This source code is licensed under the ISC license.
|
|
510
555
|
* See the LICENSE file in the root directory of this source tree.
|
|
511
|
-
*/const
|
|
556
|
+
*/const M2=a("Scan",[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2",key:"aa7l1z"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2",key:"4qcy5o"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2",key:"6vwrx8"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2",key:"ioqczr"}]]);/**
|
|
512
557
|
* @license lucide-react v0.460.0 - ISC
|
|
513
558
|
*
|
|
514
559
|
* This source code is licensed under the ISC license.
|
|
515
560
|
* See the LICENSE file in the root directory of this source tree.
|
|
516
|
-
*/const
|
|
561
|
+
*/const v2=a("Search",[["circle",{cx:"11",cy:"11",r:"8",key:"4ej97u"}],["path",{d:"m21 21-4.3-4.3",key:"1qie3q"}]]);/**
|
|
517
562
|
* @license lucide-react v0.460.0 - ISC
|
|
518
563
|
*
|
|
519
564
|
* This source code is licensed under the ISC license.
|
|
520
565
|
* See the LICENSE file in the root directory of this source tree.
|
|
521
|
-
*/const
|
|
566
|
+
*/const m2=a("Send",[["path",{d:"M14.536 21.686a.5.5 0 0 0 .937-.024l6.5-19a.496.496 0 0 0-.635-.635l-19 6.5a.5.5 0 0 0-.024.937l7.93 3.18a2 2 0 0 1 1.112 1.11z",key:"1ffxy3"}],["path",{d:"m21.854 2.147-10.94 10.939",key:"12cjpa"}]]);/**
|
|
522
567
|
* @license lucide-react v0.460.0 - ISC
|
|
523
568
|
*
|
|
524
569
|
* This source code is licensed under the ISC license.
|
|
525
570
|
* See the LICENSE file in the root directory of this source tree.
|
|
526
|
-
*/const
|
|
571
|
+
*/const g2=a("Server",[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2",key:"ngkwjq"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2",key:"iecqi9"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6",key:"16zg32"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18",key:"nzw8ys"}]]);/**
|
|
527
572
|
* @license lucide-react v0.460.0 - ISC
|
|
528
573
|
*
|
|
529
574
|
* This source code is licensed under the ISC license.
|
|
530
575
|
* See the LICENSE file in the root directory of this source tree.
|
|
531
|
-
*/const
|
|
576
|
+
*/const u2=a("Settings2",[["path",{d:"M20 7h-9",key:"3s1dr2"}],["path",{d:"M14 17H5",key:"gfn3mx"}],["circle",{cx:"17",cy:"17",r:"3",key:"18b49y"}],["circle",{cx:"7",cy:"7",r:"3",key:"dfmy0x"}]]);/**
|
|
532
577
|
* @license lucide-react v0.460.0 - ISC
|
|
533
578
|
*
|
|
534
579
|
* This source code is licensed under the ISC license.
|
|
535
580
|
* See the LICENSE file in the root directory of this source tree.
|
|
536
|
-
*/const
|
|
581
|
+
*/const w2=a("Settings",[["path",{d:"M12.22 2h-.44a2 2 0 0 0-2 2v.18a2 2 0 0 1-1 1.73l-.43.25a2 2 0 0 1-2 0l-.15-.08a2 2 0 0 0-2.73.73l-.22.38a2 2 0 0 0 .73 2.73l.15.1a2 2 0 0 1 1 1.72v.51a2 2 0 0 1-1 1.74l-.15.09a2 2 0 0 0-.73 2.73l.22.38a2 2 0 0 0 2.73.73l.15-.08a2 2 0 0 1 2 0l.43.25a2 2 0 0 1 1 1.73V20a2 2 0 0 0 2 2h.44a2 2 0 0 0 2-2v-.18a2 2 0 0 1 1-1.73l.43-.25a2 2 0 0 1 2 0l.15.08a2 2 0 0 0 2.73-.73l.22-.39a2 2 0 0 0-.73-2.73l-.15-.08a2 2 0 0 1-1-1.74v-.5a2 2 0 0 1 1-1.74l.15-.09a2 2 0 0 0 .73-2.73l-.22-.38a2 2 0 0 0-2.73-.73l-.15.08a2 2 0 0 1-2 0l-.43-.25a2 2 0 0 1-1-1.73V4a2 2 0 0 0-2-2z",key:"1qme2f"}],["circle",{cx:"12",cy:"12",r:"3",key:"1v7zrd"}]]);/**
|
|
537
582
|
* @license lucide-react v0.460.0 - ISC
|
|
538
583
|
*
|
|
539
584
|
* This source code is licensed under the ISC license.
|
|
540
585
|
* See the LICENSE file in the root directory of this source tree.
|
|
541
|
-
*/const
|
|
586
|
+
*/const f2=a("Share2",[["circle",{cx:"18",cy:"5",r:"3",key:"gq8acd"}],["circle",{cx:"6",cy:"12",r:"3",key:"w7nqdw"}],["circle",{cx:"18",cy:"19",r:"3",key:"1xt0gg"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49",key:"47mynk"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49",key:"1n3mei"}]]);/**
|
|
542
587
|
* @license lucide-react v0.460.0 - ISC
|
|
543
588
|
*
|
|
544
589
|
* This source code is licensed under the ISC license.
|
|
545
590
|
* See the LICENSE file in the root directory of this source tree.
|
|
546
|
-
*/const
|
|
591
|
+
*/const b2=a("ShieldCheck",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}],["path",{d:"m9 12 2 2 4-4",key:"dzmm74"}]]);/**
|
|
547
592
|
* @license lucide-react v0.460.0 - ISC
|
|
548
593
|
*
|
|
549
594
|
* This source code is licensed under the ISC license.
|
|
550
595
|
* See the LICENSE file in the root directory of this source tree.
|
|
551
|
-
*/const
|
|
596
|
+
*/const C2=a("Shield",[["path",{d:"M20 13c0 5-3.5 7.5-7.66 8.95a1 1 0 0 1-.67-.01C7.5 20.5 4 18 4 13V6a1 1 0 0 1 1-1c2 0 4.5-1.2 6.24-2.72a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1z",key:"oel41y"}]]);/**
|
|
552
597
|
* @license lucide-react v0.460.0 - ISC
|
|
553
598
|
*
|
|
554
599
|
* This source code is licensed under the ISC license.
|
|
555
600
|
* See the LICENSE file in the root directory of this source tree.
|
|
556
|
-
*/const
|
|
601
|
+
*/const z2=a("SlidersVertical",[["line",{x1:"4",x2:"4",y1:"21",y2:"14",key:"1p332r"}],["line",{x1:"4",x2:"4",y1:"10",y2:"3",key:"gb41h5"}],["line",{x1:"12",x2:"12",y1:"21",y2:"12",key:"hf2csr"}],["line",{x1:"12",x2:"12",y1:"8",y2:"3",key:"1kfi7u"}],["line",{x1:"20",x2:"20",y1:"21",y2:"16",key:"1lhrwl"}],["line",{x1:"20",x2:"20",y1:"12",y2:"3",key:"16vvfq"}],["line",{x1:"2",x2:"6",y1:"14",y2:"14",key:"1uebub"}],["line",{x1:"10",x2:"14",y1:"8",y2:"8",key:"1yglbp"}],["line",{x1:"18",x2:"22",y1:"16",y2:"16",key:"1jxqpz"}]]);/**
|
|
557
602
|
* @license lucide-react v0.460.0 - ISC
|
|
558
603
|
*
|
|
559
604
|
* This source code is licensed under the ISC license.
|
|
560
605
|
* See the LICENSE file in the root directory of this source tree.
|
|
561
|
-
*/const
|
|
606
|
+
*/const q2=a("Smartphone",[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2",key:"1yt0o3"}],["path",{d:"M12 18h.01",key:"mhygvu"}]]);/**
|
|
562
607
|
* @license lucide-react v0.460.0 - ISC
|
|
563
608
|
*
|
|
564
609
|
* This source code is licensed under the ISC license.
|
|
565
610
|
* See the LICENSE file in the root directory of this source tree.
|
|
566
|
-
*/const
|
|
611
|
+
*/const A2=a("Sparkles",[["path",{d:"M9.937 15.5A2 2 0 0 0 8.5 14.063l-6.135-1.582a.5.5 0 0 1 0-.962L8.5 9.936A2 2 0 0 0 9.937 8.5l1.582-6.135a.5.5 0 0 1 .963 0L14.063 8.5A2 2 0 0 0 15.5 9.937l6.135 1.581a.5.5 0 0 1 0 .964L15.5 14.063a2 2 0 0 0-1.437 1.437l-1.582 6.135a.5.5 0 0 1-.963 0z",key:"4pj2yx"}],["path",{d:"M20 3v4",key:"1olli1"}],["path",{d:"M22 5h-4",key:"1gvqau"}],["path",{d:"M4 17v2",key:"vumght"}],["path",{d:"M5 18H3",key:"zchphs"}]]);/**
|
|
567
612
|
* @license lucide-react v0.460.0 - ISC
|
|
568
613
|
*
|
|
569
614
|
* This source code is licensed under the ISC license.
|
|
570
615
|
* See the LICENSE file in the root directory of this source tree.
|
|
571
|
-
*/const
|
|
616
|
+
*/const L2=a("SquareCheckBig",[["path",{d:"M21 10.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.5",key:"1uzm8b"}],["path",{d:"m9 11 3 3L22 4",key:"1pflzl"}]]);/**
|
|
572
617
|
* @license lucide-react v0.460.0 - ISC
|
|
573
618
|
*
|
|
574
619
|
* This source code is licensed under the ISC license.
|
|
575
620
|
* See the LICENSE file in the root directory of this source tree.
|
|
576
|
-
*/const
|
|
621
|
+
*/const H2=a("SquarePen",[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7",key:"1m0v6g"}],["path",{d:"M18.375 2.625a1 1 0 0 1 3 3l-9.013 9.014a2 2 0 0 1-.853.505l-2.873.84a.5.5 0 0 1-.62-.62l.84-2.873a2 2 0 0 1 .506-.852z",key:"ohrbg2"}]]);/**
|
|
577
622
|
* @license lucide-react v0.460.0 - ISC
|
|
578
623
|
*
|
|
579
624
|
* This source code is licensed under the ISC license.
|
|
580
625
|
* See the LICENSE file in the root directory of this source tree.
|
|
581
|
-
*/const
|
|
626
|
+
*/const V2=a("Square",[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",key:"afitv7"}]]);/**
|
|
582
627
|
* @license lucide-react v0.460.0 - ISC
|
|
583
628
|
*
|
|
584
629
|
* This source code is licensed under the ISC license.
|
|
585
630
|
* See the LICENSE file in the root directory of this source tree.
|
|
586
|
-
*/const
|
|
631
|
+
*/const P2=a("Stethoscope",[["path",{d:"M11 2v2",key:"1539x4"}],["path",{d:"M5 2v2",key:"1yf1q8"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1",key:"rb5t3r"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3",key:"x18d4x"}],["circle",{cx:"20",cy:"10",r:"2",key:"ts1r5v"}]]);/**
|
|
587
632
|
* @license lucide-react v0.460.0 - ISC
|
|
588
633
|
*
|
|
589
634
|
* This source code is licensed under the ISC license.
|
|
590
635
|
* See the LICENSE file in the root directory of this source tree.
|
|
591
|
-
*/const
|
|
636
|
+
*/const S2=a("StickyNote",[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z",key:"qazsjp"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4",key:"40519r"}]]);/**
|
|
592
637
|
* @license lucide-react v0.460.0 - ISC
|
|
593
638
|
*
|
|
594
639
|
* This source code is licensed under the ISC license.
|
|
595
640
|
* See the LICENSE file in the root directory of this source tree.
|
|
596
|
-
*/const
|
|
641
|
+
*/const j2=a("Sun",[["circle",{cx:"12",cy:"12",r:"4",key:"4exip2"}],["path",{d:"M12 2v2",key:"tus03m"}],["path",{d:"M12 20v2",key:"1lh1kg"}],["path",{d:"m4.93 4.93 1.41 1.41",key:"149t6j"}],["path",{d:"m17.66 17.66 1.41 1.41",key:"ptbguv"}],["path",{d:"M2 12h2",key:"1t8f8n"}],["path",{d:"M20 12h2",key:"1q8mjw"}],["path",{d:"m6.34 17.66-1.41 1.41",key:"1m8zz5"}],["path",{d:"m19.07 4.93-1.41 1.41",key:"1shlcs"}]]);/**
|
|
597
642
|
* @license lucide-react v0.460.0 - ISC
|
|
598
643
|
*
|
|
599
644
|
* This source code is licensed under the ISC license.
|
|
600
645
|
* See the LICENSE file in the root directory of this source tree.
|
|
601
|
-
*/const
|
|
646
|
+
*/const F2=a("Tag",[["path",{d:"M12.586 2.586A2 2 0 0 0 11.172 2H4a2 2 0 0 0-2 2v7.172a2 2 0 0 0 .586 1.414l8.704 8.704a2.426 2.426 0 0 0 3.42 0l6.58-6.58a2.426 2.426 0 0 0 0-3.42z",key:"vktsd0"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor",key:"kqv944"}]]);/**
|
|
602
647
|
* @license lucide-react v0.460.0 - ISC
|
|
603
648
|
*
|
|
604
649
|
* This source code is licensed under the ISC license.
|
|
605
650
|
* See the LICENSE file in the root directory of this source tree.
|
|
606
|
-
*/const
|
|
651
|
+
*/const R2=a("Target",[["circle",{cx:"12",cy:"12",r:"10",key:"1mglay"}],["circle",{cx:"12",cy:"12",r:"6",key:"1vlfrh"}],["circle",{cx:"12",cy:"12",r:"2",key:"1c9p78"}]]);/**
|
|
607
652
|
* @license lucide-react v0.460.0 - ISC
|
|
608
653
|
*
|
|
609
654
|
* This source code is licensed under the ISC license.
|
|
610
655
|
* See the LICENSE file in the root directory of this source tree.
|
|
611
|
-
*/const
|
|
656
|
+
*/const Z2=a("Terminal",[["polyline",{points:"4 17 10 11 4 5",key:"akl6gq"}],["line",{x1:"12",x2:"20",y1:"19",y2:"19",key:"q2wloq"}]]);/**
|
|
612
657
|
* @license lucide-react v0.460.0 - ISC
|
|
613
658
|
*
|
|
614
659
|
* This source code is licensed under the ISC license.
|
|
615
660
|
* See the LICENSE file in the root directory of this source tree.
|
|
616
|
-
*/const
|
|
661
|
+
*/const B2=a("Trash2",[["path",{d:"M3 6h18",key:"d0wm0j"}],["path",{d:"M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6",key:"4alrt4"}],["path",{d:"M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2",key:"v07s0e"}],["line",{x1:"10",x2:"10",y1:"11",y2:"17",key:"1uufr5"}],["line",{x1:"14",x2:"14",y1:"11",y2:"17",key:"xtxkd"}]]);/**
|
|
617
662
|
* @license lucide-react v0.460.0 - ISC
|
|
618
663
|
*
|
|
619
664
|
* This source code is licensed under the ISC license.
|
|
620
665
|
* See the LICENSE file in the root directory of this source tree.
|
|
621
|
-
*/const
|
|
666
|
+
*/const D2=a("TriangleAlert",[["path",{d:"m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3",key:"wmoenq"}],["path",{d:"M12 9v4",key:"juzpu7"}],["path",{d:"M12 17h.01",key:"p32p05"}]]);/**
|
|
622
667
|
* @license lucide-react v0.460.0 - ISC
|
|
623
668
|
*
|
|
624
669
|
* This source code is licensed under the ISC license.
|
|
625
670
|
* See the LICENSE file in the root directory of this source tree.
|
|
626
|
-
*/const
|
|
671
|
+
*/const G2=a("Undo2",[["path",{d:"M9 14 4 9l5-5",key:"102s5s"}],["path",{d:"M4 9h10.5a5.5 5.5 0 0 1 5.5 5.5a5.5 5.5 0 0 1-5.5 5.5H11",key:"f3b9sd"}]]);/**
|
|
627
672
|
* @license lucide-react v0.460.0 - ISC
|
|
628
673
|
*
|
|
629
674
|
* This source code is licensed under the ISC license.
|
|
630
675
|
* See the LICENSE file in the root directory of this source tree.
|
|
631
|
-
*/const
|
|
676
|
+
*/const T2=a("Upload",[["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4",key:"ih7n3h"}],["polyline",{points:"17 8 12 3 7 8",key:"t8dd8p"}],["line",{x1:"12",x2:"12",y1:"3",y2:"15",key:"widbto"}]]);/**
|
|
632
677
|
* @license lucide-react v0.460.0 - ISC
|
|
633
678
|
*
|
|
634
679
|
* This source code is licensed under the ISC license.
|
|
635
680
|
* See the LICENSE file in the root directory of this source tree.
|
|
636
|
-
*/const
|
|
681
|
+
*/const O2=a("User",[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2",key:"975kel"}],["circle",{cx:"12",cy:"7",r:"4",key:"17ys0d"}]]);/**
|
|
637
682
|
* @license lucide-react v0.460.0 - ISC
|
|
638
683
|
*
|
|
639
684
|
* This source code is licensed under the ISC license.
|
|
640
685
|
* See the LICENSE file in the root directory of this source tree.
|
|
641
|
-
*/const
|
|
686
|
+
*/const E2=a("Users",[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2",key:"1yyitq"}],["circle",{cx:"9",cy:"7",r:"4",key:"nufk8"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87",key:"kshegd"}],["path",{d:"M16 3.13a4 4 0 0 1 0 7.75",key:"1da9ce"}]]);/**
|
|
642
687
|
* @license lucide-react v0.460.0 - ISC
|
|
643
688
|
*
|
|
644
689
|
* This source code is licensed under the ISC license.
|
|
645
690
|
* See the LICENSE file in the root directory of this source tree.
|
|
646
|
-
*/const
|
|
691
|
+
*/const U2=a("Wrench",[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94l-3.76 3.76z",key:"cbrjhi"}]]);/**
|
|
647
692
|
* @license lucide-react v0.460.0 - ISC
|
|
648
693
|
*
|
|
649
694
|
* This source code is licensed under the ISC license.
|
|
650
695
|
* See the LICENSE file in the root directory of this source tree.
|
|
651
|
-
*/const
|
|
696
|
+
*/const I2=a("X",[["path",{d:"M18 6 6 18",key:"1bl5f8"}],["path",{d:"m6 6 12 12",key:"d8bk6v"}]]);/**
|
|
652
697
|
* @license lucide-react v0.460.0 - ISC
|
|
653
698
|
*
|
|
654
699
|
* This source code is licensed under the ISC license.
|
|
655
700
|
* See the LICENSE file in the root directory of this source tree.
|
|
656
|
-
*/const
|
|
701
|
+
*/const N2=a("Zap",[["path",{d:"M4 14a1 1 0 0 1-.78-1.63l9.9-10.2a.5.5 0 0 1 .86.46l-1.92 6.02A1 1 0 0 0 13 10h7a1 1 0 0 1 .78 1.63l-9.9 10.2a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14z",key:"1xq2db"}]]);export{H2 as $,f as A,q as B,B as C,G as D,y1 as E,i1 as F,M1 as G,C1 as H,A1 as I,d1 as J,v1 as K,V1 as L,O1 as M,q1 as N,m2 as O,d2 as P,c1 as Q,p2 as R,L2 as S,Z2 as T,h1 as U,n1 as V,B2 as W,I2 as X,l2 as Y,N2 as Z,K1 as _,p1 as a,$1 as a$,n2 as a0,g2 as a1,T as a2,t2 as a3,e1 as a4,w as a5,F2 as a6,x2 as a7,N as a8,h2 as a9,c2 as aA,C2 as aB,L1 as aC,J as aD,i2 as aE,w1 as aF,V2 as aG,B1 as aH,F1 as aI,E2 as aJ,Y as aK,T2 as aL,b2 as aM,r1 as aN,O2 as aO,z as aP,S1 as aQ,U as aR,W1 as aS,_ as aT,R1 as aU,r2 as aV,l1 as aW,m1 as aX,u1 as aY,w2 as aZ,g1 as a_,a1 as aa,S2 as ab,U1 as ac,I as ad,k1 as ae,f2 as af,G2 as ag,o2 as ah,T1 as ai,t1 as aj,D1 as ak,g as al,b as am,R as an,e2 as ao,a2 as ap,J1 as aq,Q1 as ar,H1 as as,R2 as at,N1 as au,j2 as av,I1 as aw,D as ax,Z1 as ay,Y1 as az,x1 as b,V as b0,$ as b1,E1 as b2,M2 as b3,o1 as b4,P as b5,H as b6,U2 as b7,O as b8,W as b9,j1 as ba,z1 as bb,y2 as bc,_1 as bd,S as be,E as bf,q2 as bg,f1 as bh,s1 as c,F as d,Z as e,G1 as f,m as g,s2 as h,A2 as i,L as j,K as k,b1 as l,X as m,P2 as n,z2 as o,v2 as p,u2 as q,k2 as r,X1 as s,P1 as t,A as u,Q as v,u as w,C as x,j as y,D2 as z};
|