Auto-indexing service and GraphQL API for AT Protocol Records
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: migrate environment variables to database config table

- Move external service URLs (relay, jetstream, PLC directory) from env vars to database
- Add config repository with getters/setters and default values
- Add external services UI section to settings page
- Expose all config values via MCP server capabilities tool
- Initialize config defaults on server startup
- Remove config cache actor in favor of direct database reads

+3292 -415
+1 -1
client/src/components/button.gleam
··· 28 28 html.button( 29 29 [ 30 30 attribute.type_("submit"), 31 - attribute.class(button_classes <> " w-full"), 31 + attribute.class(button_classes), 32 32 attribute.disabled(disabled), 33 33 ], 34 34 [html.text(text)],
+2 -2
client/src/generated/queries.gleam
··· 64 64 unstable_registry.register( 65 65 reg, 66 66 "GetSettings", 67 - "query GetSettings {\n settings {\n __typename\n id\n domainAuthority\n adminDids\n }\n}", 67 + "query GetSettings {\n settings {\n __typename\n id\n domainAuthority\n adminDids\n relayUrl\n plcDirectoryUrl\n jetstreamUrl\n oauthSupportedScopes\n }\n}", 68 68 "generated/queries/get_settings", 69 69 ) 70 70 let reg = 71 71 unstable_registry.register( 72 72 reg, 73 73 "UpdateSettings", 74 - "mutation UpdateSettings($domainAuthority: String, $adminDids: [String!]) {\n updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids) {\n __typename\n id\n domainAuthority\n adminDids\n }\n}", 74 + "mutation UpdateSettings($domainAuthority: String, $adminDids: [String!], $relayUrl: String, $plcDirectoryUrl: String, $jetstreamUrl: String, $oauthSupportedScopes: String) {\n updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids, relayUrl: $relayUrl, plcDirectoryUrl: $plcDirectoryUrl, jetstreamUrl: $jetstreamUrl, oauthSupportedScopes: $oauthSupportedScopes) {\n __typename\n id\n domainAuthority\n adminDids\n relayUrl\n plcDirectoryUrl\n jetstreamUrl\n oauthSupportedScopes\n }\n}", 75 75 "generated/queries/update_settings", 76 76 ) 77 77 let reg =
+25 -2
client/src/generated/queries/get_settings.gleam
··· 4 4 import squall 5 5 6 6 pub type Settings { 7 - Settings(id: String, domain_authority: String, admin_dids: List(String)) 7 + Settings( 8 + id: String, 9 + domain_authority: String, 10 + admin_dids: List(String), 11 + relay_url: String, 12 + plc_directory_url: String, 13 + jetstream_url: String, 14 + oauth_supported_scopes: String, 15 + ) 8 16 } 9 17 10 18 pub fn settings_decoder() -> decode.Decoder(Settings) { 11 19 use id <- decode.field("id", decode.string) 12 20 use domain_authority <- decode.field("domainAuthority", decode.string) 13 21 use admin_dids <- decode.field("adminDids", decode.list(decode.string)) 22 + use relay_url <- decode.field("relayUrl", decode.string) 23 + use plc_directory_url <- decode.field("plcDirectoryUrl", decode.string) 24 + use jetstream_url <- decode.field("jetstreamUrl", decode.string) 25 + use oauth_supported_scopes <- decode.field( 26 + "oauthSupportedScopes", 27 + decode.string, 28 + ) 14 29 decode.success(Settings( 15 30 id: id, 16 31 domain_authority: domain_authority, 17 32 admin_dids: admin_dids, 33 + relay_url: relay_url, 34 + plc_directory_url: plc_directory_url, 35 + jetstream_url: jetstream_url, 36 + oauth_supported_scopes: oauth_supported_scopes, 18 37 )) 19 38 } 20 39 ··· 23 42 #("id", json.string(input.id)), 24 43 #("domainAuthority", json.string(input.domain_authority)), 25 44 #("adminDids", json.array(from: input.admin_dids, of: json.string)), 45 + #("relayUrl", json.string(input.relay_url)), 46 + #("plcDirectoryUrl", json.string(input.plc_directory_url)), 47 + #("jetstreamUrl", json.string(input.jetstream_url)), 48 + #("oauthSupportedScopes", json.string(input.oauth_supported_scopes)), 26 49 ]) 27 50 } 28 51 ··· 42 65 pub fn get_settings(client: squall.Client) -> Result(Request(String), String) { 43 66 squall.prepare_request( 44 67 client, 45 - "query GetSettings {\n settings {\n id\n domainAuthority\n adminDids\n }\n}", 68 + "query GetSettings {\n settings {\n id\n domainAuthority\n adminDids\n relayUrl\n plcDirectoryUrl\n jetstreamUrl\n oauthSupportedScopes\n }\n}", 46 69 json.object([]), 47 70 ) 48 71 }
+33 -2
client/src/generated/queries/update_settings.gleam
··· 4 4 import squall 5 5 6 6 pub type Settings { 7 - Settings(id: String, domain_authority: String, admin_dids: List(String)) 7 + Settings( 8 + id: String, 9 + domain_authority: String, 10 + admin_dids: List(String), 11 + relay_url: String, 12 + plc_directory_url: String, 13 + jetstream_url: String, 14 + oauth_supported_scopes: String, 15 + ) 8 16 } 9 17 10 18 pub fn settings_decoder() -> decode.Decoder(Settings) { 11 19 use id <- decode.field("id", decode.string) 12 20 use domain_authority <- decode.field("domainAuthority", decode.string) 13 21 use admin_dids <- decode.field("adminDids", decode.list(decode.string)) 22 + use relay_url <- decode.field("relayUrl", decode.string) 23 + use plc_directory_url <- decode.field("plcDirectoryUrl", decode.string) 24 + use jetstream_url <- decode.field("jetstreamUrl", decode.string) 25 + use oauth_supported_scopes <- decode.field( 26 + "oauthSupportedScopes", 27 + decode.string, 28 + ) 14 29 decode.success(Settings( 15 30 id: id, 16 31 domain_authority: domain_authority, 17 32 admin_dids: admin_dids, 33 + relay_url: relay_url, 34 + plc_directory_url: plc_directory_url, 35 + jetstream_url: jetstream_url, 36 + oauth_supported_scopes: oauth_supported_scopes, 18 37 )) 19 38 } 20 39 ··· 23 42 #("id", json.string(input.id)), 24 43 #("domainAuthority", json.string(input.domain_authority)), 25 44 #("adminDids", json.array(from: input.admin_dids, of: json.string)), 45 + #("relayUrl", json.string(input.relay_url)), 46 + #("plcDirectoryUrl", json.string(input.plc_directory_url)), 47 + #("jetstreamUrl", json.string(input.jetstream_url)), 48 + #("oauthSupportedScopes", json.string(input.oauth_supported_scopes)), 26 49 ]) 27 50 } 28 51 ··· 47 70 client: squall.Client, 48 71 domain_authority: String, 49 72 admin_dids: List(String), 73 + relay_url: String, 74 + plc_directory_url: String, 75 + jetstream_url: String, 76 + oauth_supported_scopes: String, 50 77 ) -> Result(Request(String), String) { 51 78 squall.prepare_request( 52 79 client, 53 - "mutation UpdateSettings($domainAuthority: String, $adminDids: [String!]) {\n updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids) {\n id\n domainAuthority\n adminDids\n }\n}", 80 + "mutation UpdateSettings($domainAuthority: String, $adminDids: [String!], $relayUrl: String, $plcDirectoryUrl: String, $jetstreamUrl: String, $oauthSupportedScopes: String) {\n updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids, relayUrl: $relayUrl, plcDirectoryUrl: $plcDirectoryUrl, jetstreamUrl: $jetstreamUrl, oauthSupportedScopes: $oauthSupportedScopes) {\n id\n domainAuthority\n adminDids\n relayUrl\n plcDirectoryUrl\n jetstreamUrl\n oauthSupportedScopes\n }\n}", 54 81 json.object([ 55 82 #("domainAuthority", json.string(domain_authority)), 56 83 #("adminDids", json.array(from: admin_dids, of: json.string)), 84 + #("relayUrl", json.string(relay_url)), 85 + #("plcDirectoryUrl", json.string(plc_directory_url)), 86 + #("jetstreamUrl", json.string(jetstream_url)), 87 + #("oauthSupportedScopes", json.string(oauth_supported_scopes)), 57 88 ]), 58 89 ) 59 90 }
+175 -47
client/src/pages/settings.gleam
··· 8 8 /// id 9 9 /// domainAuthority 10 10 /// adminDids 11 + /// relayUrl 12 + /// plcDirectoryUrl 13 + /// jetstreamUrl 14 + /// oauthSupportedScopes 11 15 /// } 12 16 /// } 13 17 /// ``` 14 18 /// 15 19 /// ```graphql 16 - /// mutation UpdateSettings($domainAuthority: String, $adminDids: [String!]) { 17 - /// updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids) { 20 + /// mutation UpdateSettings($domainAuthority: String, $adminDids: [String!], $relayUrl: String, $plcDirectoryUrl: String, $jetstreamUrl: String, $oauthSupportedScopes: String) { 21 + /// updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids, relayUrl: $relayUrl, plcDirectoryUrl: $plcDirectoryUrl, jetstreamUrl: $jetstreamUrl, oauthSupportedScopes: $oauthSupportedScopes) { 18 22 /// id 19 23 /// domainAuthority 20 24 /// adminDids 25 + /// relayUrl 26 + /// plcDirectoryUrl 27 + /// jetstreamUrl 28 + /// oauthSupportedScopes 21 29 /// } 22 30 /// } 23 31 /// ``` ··· 97 105 98 106 pub type Msg { 99 107 UpdateDomainAuthorityInput(String) 100 - SubmitDomainAuthority 101 108 SelectLexiconFile 102 109 UploadLexicons 103 110 UpdateResetConfirmation(String) 104 111 SubmitReset 112 + // Basic settings messages (domain authority + external services) 113 + UpdateRelayUrlInput(String) 114 + UpdatePlcDirectoryUrlInput(String) 115 + UpdateJetstreamUrlInput(String) 116 + UpdateOAuthSupportedScopesInput(String) 117 + SubmitBasicSettings 105 118 // OAuth client messages 106 119 ToggleNewClientForm 107 120 UpdateNewClientName(String) ··· 133 146 reset_confirmation: String, 134 147 selected_file: Option(String), 135 148 alert: Option(#(String, String)), 149 + // External services state 150 + relay_url_input: String, 151 + plc_directory_url_input: String, 152 + jetstream_url_input: String, 153 + oauth_supported_scopes_input: String, 154 + // Lexicon upload state 155 + lexicons_alert: Option(#(String, String)), 136 156 // OAuth client state 137 157 show_new_client_form: Bool, 138 158 new_client_name: String, ··· 177 197 Model(..model, admin_alert: None) 178 198 } 179 199 200 + pub fn set_lexicons_alert(model: Model, kind: String, message: String) -> Model { 201 + Model(..model, lexicons_alert: Some(#(kind, message))) 202 + } 203 + 204 + pub fn clear_lexicons_alert(model: Model) -> Model { 205 + Model(..model, lexicons_alert: None) 206 + } 207 + 180 208 pub fn init() -> Model { 181 209 Model( 182 210 domain_authority_input: "", 183 211 reset_confirmation: "", 184 212 selected_file: None, 185 213 alert: None, 214 + relay_url_input: "", 215 + plc_directory_url_input: "", 216 + jetstream_url_input: "", 217 + oauth_supported_scopes_input: "", 218 + lexicons_alert: None, 186 219 show_new_client_form: False, 187 220 new_client_name: "", 188 221 new_client_type: "PUBLIC", ··· 246 279 html.h1([attribute.class("text-2xl font-semibold text-zinc-300 mb-8")], [ 247 280 element.text("Settings"), 248 281 ]), 249 - // Alert message 250 - case model.alert { 251 - Some(#(kind, message)) -> { 252 - let alert_kind = case kind { 253 - "success" -> alert.Success 254 - "error" -> alert.Error 255 - _ -> alert.Info 256 - } 257 - alert.alert(alert_kind, message) 258 - } 259 - None -> element.none() 260 - }, 261 282 // Settings sections 262 283 case result { 263 284 squall_cache.Loading -> ··· 278 299 279 300 squall_cache.Data(data) -> 280 301 html.div([attribute.class("space-y-6")], [ 281 - domain_authority_section(data.settings, model, is_saving), 302 + basic_settings_section(data.settings, model, is_saving), 282 303 lexicons_section(model), 283 304 oauth_clients_section(cache, model), 284 305 admin_management_section(data.settings, model), ··· 295 316 squall_cache.has_pending_mutations(cache) 296 317 } 297 318 298 - fn domain_authority_section( 299 - _settings: get_settings.Settings, 319 + fn basic_settings_section( 320 + settings: get_settings.Settings, 300 321 model: Model, 301 322 is_saving: Bool, 302 323 ) -> Element(Msg) { 303 324 html.div([attribute.class("bg-zinc-800/50 rounded p-6")], [ 304 325 html.h2([attribute.class("text-xl font-semibold text-zinc-300 mb-4")], [ 305 - element.text("Domain Authority"), 326 + element.text("Basic Settings"), 306 327 ]), 307 - html.div([attribute.class("space-y-4")], [ 308 - html.div([attribute.class("mb-4")], [ 309 - html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 310 - element.text("Domain Authority"), 328 + // Alert message 329 + case model.alert { 330 + Some(#(kind, message)) -> { 331 + let alert_kind = case kind { 332 + "success" -> alert.Success 333 + "error" -> alert.Error 334 + _ -> alert.Info 335 + } 336 + alert.alert(alert_kind, message) 337 + } 338 + None -> element.none() 339 + }, 340 + html.form( 341 + [ 342 + attribute.class("space-y-6"), 343 + event.on_submit(fn(_) { SubmitBasicSettings }), 344 + ], 345 + [ 346 + // Domain Authority 347 + html.div([attribute.class("space-y-2")], [ 348 + html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 349 + element.text("Domain Authority"), 350 + ]), 351 + html.input([ 352 + attribute.type_("text"), 353 + attribute.class( 354 + "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 355 + ), 356 + attribute.placeholder("e.g. com.example"), 357 + attribute.value(model.domain_authority_input), 358 + attribute.required(True), 359 + event.on_input(UpdateDomainAuthorityInput), 360 + ]), 361 + html.p([attribute.class("text-xs text-zinc-500")], [ 362 + element.text( 363 + "Determines which collections are considered \"primary\" vs \"external\" when backfilling records.", 364 + ), 365 + ]), 311 366 ]), 312 - html.input([ 313 - attribute.type_("text"), 314 - attribute.class( 315 - "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 316 - ), 317 - attribute.placeholder("e.g. com.example"), 318 - attribute.value(model.domain_authority_input), 319 - event.on_input(UpdateDomainAuthorityInput), 367 + // Relay URL 368 + html.div([attribute.class("space-y-2")], [ 369 + html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 370 + element.text("Relay URL"), 371 + ]), 372 + html.input([ 373 + attribute.type_("text"), 374 + attribute.class( 375 + "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 376 + ), 377 + attribute.placeholder(settings.relay_url), 378 + attribute.value(model.relay_url_input), 379 + attribute.required(True), 380 + event.on_input(UpdateRelayUrlInput), 381 + ]), 382 + html.p([attribute.class("text-xs text-zinc-500")], [ 383 + element.text("AT Protocol relay URL for backfill operations."), 384 + ]), 320 385 ]), 321 - ]), 322 - html.p([attribute.class("text-sm text-zinc-500 mb-4")], [ 323 - element.text( 324 - "The domain authority is used to determine which collections are considered \"primary\" vs \"external\" when backfilling records. For example, if the authority is \"xyz.statusphere\", then \"xyz.statusphere.status\" is treated as primary and \"app.bsky.actor.profile\" is external.", 325 - ), 326 - ]), 327 - html.div([attribute.class("flex gap-3")], [ 328 - button.button( 329 - disabled: is_saving, 330 - on_click: SubmitDomainAuthority, 331 - text: case is_saving { 386 + // PLC Directory URL 387 + html.div([attribute.class("space-y-2")], [ 388 + html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 389 + element.text("PLC Directory URL"), 390 + ]), 391 + html.input([ 392 + attribute.type_("text"), 393 + attribute.class( 394 + "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 395 + ), 396 + attribute.placeholder(settings.plc_directory_url), 397 + attribute.value(model.plc_directory_url_input), 398 + attribute.required(True), 399 + event.on_input(UpdatePlcDirectoryUrlInput), 400 + ]), 401 + html.p([attribute.class("text-xs text-zinc-500")], [ 402 + element.text("PLC directory URL for DID resolution."), 403 + ]), 404 + ]), 405 + // Jetstream URL 406 + html.div([attribute.class("space-y-2")], [ 407 + html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 408 + element.text("Jetstream URL"), 409 + ]), 410 + html.input([ 411 + attribute.type_("text"), 412 + attribute.class( 413 + "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 414 + ), 415 + attribute.placeholder(settings.jetstream_url), 416 + attribute.value(model.jetstream_url_input), 417 + attribute.required(True), 418 + event.on_input(UpdateJetstreamUrlInput), 419 + ]), 420 + html.p([attribute.class("text-xs text-zinc-500")], [ 421 + element.text("Jetstream WebSocket endpoint for real-time indexing."), 422 + ]), 423 + ]), 424 + // OAuth Supported Scopes 425 + html.div([attribute.class("space-y-2")], [ 426 + html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [ 427 + element.text("OAuth Supported Scopes"), 428 + ]), 429 + html.input([ 430 + attribute.type_("text"), 431 + attribute.class( 432 + "font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full", 433 + ), 434 + attribute.placeholder(settings.oauth_supported_scopes), 435 + attribute.value(model.oauth_supported_scopes_input), 436 + attribute.required(True), 437 + event.on_input(UpdateOAuthSupportedScopesInput), 438 + ]), 439 + html.p([attribute.class("text-xs text-zinc-500")], [ 440 + element.text( 441 + "Space-separated OAuth scopes supported by this server.", 442 + ), 443 + ]), 444 + ]), 445 + // Save button for all basic settings 446 + html.div([attribute.class("flex gap-3 pt-4")], [ 447 + button.submit(disabled: is_saving, text: case is_saving { 332 448 True -> "Saving..." 333 449 False -> "Save" 334 - }, 335 - ), 336 - ]), 337 - ]), 450 + }), 451 + ]), 452 + ], 453 + ), 338 454 ]) 339 455 } 340 456 341 - fn lexicons_section(_model: Model) -> Element(Msg) { 457 + fn lexicons_section(model: Model) -> Element(Msg) { 342 458 html.div([attribute.class("bg-zinc-800/50 rounded p-6")], [ 343 459 html.h2([attribute.class("text-xl font-semibold text-zinc-300 mb-4")], [ 344 460 element.text("Lexicons"), 345 461 ]), 462 + // Alert message 463 + case model.lexicons_alert { 464 + Some(#(kind, message)) -> { 465 + let alert_kind = case kind { 466 + "success" -> alert.Success 467 + "error" -> alert.Error 468 + _ -> alert.Info 469 + } 470 + alert.alert(alert_kind, message) 471 + } 472 + None -> element.none() 473 + }, 346 474 html.div([attribute.class("space-y-4")], [ 347 475 html.div([attribute.class("mb-4")], [ 348 476 html.label([attribute.class("block text-sm text-zinc-400 mb-2")], [
+287 -68
client/src/quickslice_client.gleam
··· 301 301 HandleQueryResponse(String, Json, Result(String, String)) 302 302 HandleOptimisticMutationSuccess(String, String) 303 303 HandleOptimisticMutationFailure(String, String) 304 + HandleAdminMutationSuccess(String, String) 305 + HandleAdminMutationFailure(String, String) 304 306 OnRouteChange(Route) 305 307 HomePageMsg(home.Msg) 306 308 SettingsPageMsg(settings.Msg) ··· 330 332 settings.set_alert( 331 333 model.settings_page_model, 332 334 "success", 333 - "Domain authority updated successfully", 335 + "Settings updated successfully", 334 336 ) 335 337 336 338 #( ··· 390 392 ) 391 393 } 392 394 395 + HandleAdminMutationSuccess(mutation_id, response_body) -> { 396 + // Admin mutation succeeded - commit the optimistic update 397 + let cache_after_commit = 398 + squall_cache.commit_optimistic(model.cache, mutation_id, response_body) 399 + 400 + let new_settings_model = 401 + settings.set_admin_alert( 402 + model.settings_page_model, 403 + "success", 404 + "Admin updated successfully", 405 + ) 406 + 407 + #( 408 + Model( 409 + ..model, 410 + cache: cache_after_commit, 411 + settings_page_model: new_settings_model, 412 + ), 413 + effect.none(), 414 + ) 415 + } 416 + 417 + HandleAdminMutationFailure(mutation_id, error_message) -> { 418 + // Admin mutation failed - rollback the optimistic update 419 + let cache_after_rollback = 420 + squall_cache.rollback_optimistic(model.cache, mutation_id) 421 + 422 + // Try to extract a friendly GraphQL error message 423 + let friendly_error = case 424 + string.split_once(error_message, "Response body: ") 425 + { 426 + Ok(#(_, response_body)) -> 427 + case extract_graphql_error(response_body) { 428 + option.Some(graphql_error) -> graphql_error 429 + option.None -> error_message 430 + } 431 + Error(_) -> error_message 432 + } 433 + 434 + let new_settings_model = 435 + settings.set_admin_alert( 436 + model.settings_page_model, 437 + "error", 438 + friendly_error, 439 + ) 440 + 441 + #( 442 + Model( 443 + ..model, 444 + cache: cache_after_rollback, 445 + settings_page_model: new_settings_model, 446 + ), 447 + effect.none(), 448 + ) 449 + } 450 + 393 451 HandleQueryResponse(query_name, variables, Ok(response_body)) -> { 394 452 // Store response in cache 395 453 let cache_with_data = ··· 492 550 493 551 // Show success message for mutations and populate settings data 494 552 let new_settings_model = case query_name { 495 - "UpdateDomainAuthority" -> 553 + "UpdateSettings" -> 496 554 settings.set_alert( 497 555 model.settings_page_model, 498 556 "success", 499 - "Domain authority updated successfully", 557 + "Settings updated successfully", 500 558 ) 501 559 "UploadLexicons" -> { 502 560 // Clear the file input so the same file can be uploaded again 503 561 file_upload.clear_file_input("lexicon-file-input") 504 562 case extract_graphql_error(response_body) { 505 563 option.Some(err) -> 506 - settings.set_alert(model.settings_page_model, "error", err) 564 + settings.set_lexicons_alert( 565 + model.settings_page_model, 566 + "error", 567 + err, 568 + ) 507 569 option.None -> 508 - settings.set_alert( 570 + settings.set_lexicons_alert( 509 571 model.settings_page_model, 510 572 "success", 511 573 "Lexicons uploaded successfully", ··· 526 588 ) 527 589 } 528 590 "GetSettings" -> { 529 - // Populate the input field with the loaded domain authority 591 + // Populate all input fields with loaded settings 530 592 case get_settings.parse_get_settings_response(response_body) { 531 593 Ok(data) -> 532 594 settings.Model( 533 595 ..model.settings_page_model, 534 596 domain_authority_input: data.settings.domain_authority, 597 + relay_url_input: data.settings.relay_url, 598 + plc_directory_url_input: data.settings.plc_directory_url, 599 + jetstream_url_input: data.settings.jetstream_url, 600 + oauth_supported_scopes_input: data.settings.oauth_supported_scopes, 535 601 ) 536 602 Error(_) -> model.settings_page_model 537 603 } ··· 804 870 HandleQueryResponse(query_name, _variables, Error(err)) -> { 805 871 // Show error message for mutations 806 872 let new_settings_model = case query_name { 807 - "UpdateDomainAuthority" 808 - | "UploadLexicons" 809 - | "ResetAll" 810 - | "TriggerBackfill" -> 873 + "UpdateSettings" | "ResetAll" | "TriggerBackfill" -> 811 874 settings.set_alert( 875 + model.settings_page_model, 876 + "error", 877 + "Error: " <> err, 878 + ) 879 + "UploadLexicons" -> 880 + settings.set_lexicons_alert( 812 881 model.settings_page_model, 813 882 "error", 814 883 "Error: " <> err, ··· 1163 1232 ) 1164 1233 } 1165 1234 1166 - settings.SubmitDomainAuthority -> { 1235 + settings.SubmitBasicSettings -> { 1167 1236 // Clear any existing alert 1168 1237 let cleared_settings_model = 1169 1238 settings.Model(..model.settings_page_model, alert: None) ··· 1180 1249 1181 1250 case settings_result { 1182 1251 squall_cache.Data(data) -> { 1183 - let new_domain_authority = 1252 + let current_admin_dids = data.settings.admin_dids 1253 + 1254 + // Build variables from all 5 fields (only non-empty) 1255 + let mut_vars = [] 1256 + 1257 + // Add domain_authority if non-empty 1258 + let mut_vars = case 1184 1259 model.settings_page_model.domain_authority_input 1185 - let current_admin_dids = data.settings.admin_dids 1260 + { 1261 + "" -> mut_vars 1262 + da -> [#("domainAuthority", json.string(da)), ..mut_vars] 1263 + } 1264 + 1265 + // Add relay_url if non-empty 1266 + let mut_vars = case model.settings_page_model.relay_url_input { 1267 + "" -> mut_vars 1268 + url -> [#("relayUrl", json.string(url)), ..mut_vars] 1269 + } 1270 + 1271 + // Add plc_directory_url if non-empty 1272 + let mut_vars = case 1273 + model.settings_page_model.plc_directory_url_input 1274 + { 1275 + "" -> mut_vars 1276 + url -> [#("plcDirectoryUrl", json.string(url)), ..mut_vars] 1277 + } 1278 + 1279 + // Add jetstream_url if non-empty 1280 + let mut_vars = case 1281 + model.settings_page_model.jetstream_url_input 1282 + { 1283 + "" -> mut_vars 1284 + url -> [#("jetstreamUrl", json.string(url)), ..mut_vars] 1285 + } 1286 + 1287 + // Add oauth_supported_scopes if non-empty 1288 + let mut_vars = case 1289 + model.settings_page_model.oauth_supported_scopes_input 1290 + { 1291 + "" -> mut_vars 1292 + scopes -> [ 1293 + #("oauthSupportedScopes", json.string(scopes)), 1294 + ..mut_vars 1295 + ] 1296 + } 1186 1297 1187 - // Execute optimistic mutation 1188 - let variables = 1189 - json.object([ 1190 - #("domainAuthority", json.string(new_domain_authority)), 1298 + // Always preserve admin_dids 1299 + let mut_vars = [ 1300 + #( 1301 + "adminDids", 1302 + json.array(from: current_admin_dids, of: json.string), 1303 + ), 1304 + ..mut_vars 1305 + ] 1306 + 1307 + // Only proceed if at least one field (other than admin_dids) has a value 1308 + case mut_vars { 1309 + [_] -> { 1310 + // Only admin_dids in list, no fields to update 1191 1311 #( 1192 - "adminDids", 1193 - json.array(from: current_admin_dids, of: json.string), 1194 - ), 1195 - ]) 1312 + Model(..model, settings_page_model: cleared_settings_model), 1313 + effect.none(), 1314 + ) 1315 + } 1316 + _ -> { 1317 + let variables = json.object(mut_vars) 1318 + 1319 + // Build optimistic entity 1320 + let opt_fields = [#("id", json.string("Settings:singleton"))] 1321 + 1322 + let opt_fields = case 1323 + model.settings_page_model.domain_authority_input 1324 + { 1325 + "" -> opt_fields 1326 + da -> [#("domainAuthority", json.string(da)), ..opt_fields] 1327 + } 1328 + 1329 + let opt_fields = case 1330 + model.settings_page_model.relay_url_input 1331 + { 1332 + "" -> opt_fields 1333 + url -> [#("relayUrl", json.string(url)), ..opt_fields] 1334 + } 1335 + 1336 + let opt_fields = case 1337 + model.settings_page_model.plc_directory_url_input 1338 + { 1339 + "" -> opt_fields 1340 + url -> [ 1341 + #("plcDirectoryUrl", json.string(url)), 1342 + ..opt_fields 1343 + ] 1344 + } 1196 1345 1197 - let optimistic_entity = 1198 - json.object([ 1199 - #("id", json.string("Settings:singleton")), 1200 - #("domainAuthority", json.string(new_domain_authority)), 1201 - #( 1202 - "adminDids", 1203 - json.array(from: current_admin_dids, of: json.string), 1204 - ), 1205 - ]) 1346 + let opt_fields = case 1347 + model.settings_page_model.jetstream_url_input 1348 + { 1349 + "" -> opt_fields 1350 + url -> [#("jetstreamUrl", json.string(url)), ..opt_fields] 1351 + } 1206 1352 1207 - let #(updated_cache, _mutation_id, mutation_effect) = 1208 - squall_cache.execute_optimistic_mutation( 1209 - model.cache, 1210 - model.registry, 1211 - "UpdateSettings", 1212 - variables, 1213 - "Settings:singleton", 1214 - fn(_current) { optimistic_entity }, 1215 - update_settings.parse_update_settings_response, 1216 - fn(mutation_id, result, response_body) { 1217 - case result { 1218 - Ok(_) -> 1219 - HandleOptimisticMutationSuccess( 1220 - mutation_id, 1221 - response_body, 1222 - ) 1223 - Error(err) -> 1224 - HandleOptimisticMutationFailure(mutation_id, err) 1225 - } 1226 - }, 1227 - ) 1353 + let opt_fields = case 1354 + model.settings_page_model.oauth_supported_scopes_input 1355 + { 1356 + "" -> opt_fields 1357 + scopes -> [ 1358 + #("oauthSupportedScopes", json.string(scopes)), 1359 + ..opt_fields 1360 + ] 1361 + } 1362 + 1363 + let opt_fields = [ 1364 + #( 1365 + "adminDids", 1366 + json.array(from: current_admin_dids, of: json.string), 1367 + ), 1368 + ..opt_fields 1369 + ] 1370 + 1371 + let optimistic_entity = json.object(opt_fields) 1372 + 1373 + // Execute optimistic mutation 1374 + let #(updated_cache, _mutation_id, mutation_effect) = 1375 + squall_cache.execute_optimistic_mutation( 1376 + model.cache, 1377 + model.registry, 1378 + "UpdateSettings", 1379 + variables, 1380 + "Settings:singleton", 1381 + fn(_current) { optimistic_entity }, 1382 + update_settings.parse_update_settings_response, 1383 + fn(mutation_id, result, response_body) { 1384 + case result { 1385 + Ok(_) -> 1386 + HandleOptimisticMutationSuccess( 1387 + mutation_id, 1388 + response_body, 1389 + ) 1390 + Error(err) -> 1391 + HandleOptimisticMutationFailure(mutation_id, err) 1392 + } 1393 + }, 1394 + ) 1228 1395 1229 - #( 1230 - Model( 1231 - ..model, 1232 - cache: updated_cache, 1233 - settings_page_model: cleared_settings_model, 1234 - ), 1235 - mutation_effect, 1236 - ) 1396 + // Keep input fields populated with submitted values 1397 + #( 1398 + Model( 1399 + ..model, 1400 + cache: updated_cache, 1401 + settings_page_model: cleared_settings_model, 1402 + ), 1403 + mutation_effect, 1404 + ) 1405 + } 1406 + } 1237 1407 } 1238 1408 _ -> { 1239 1409 // Settings not loaded yet, can't update ··· 1325 1495 settings_page_model: new_settings_model, 1326 1496 ), 1327 1497 effect.batch(effects), 1498 + ) 1499 + } 1500 + 1501 + // External Services Message Handlers 1502 + settings.UpdateRelayUrlInput(value) -> { 1503 + let new_settings_model = 1504 + settings.Model( 1505 + ..model.settings_page_model, 1506 + relay_url_input: value, 1507 + alert: None, 1508 + ) 1509 + #( 1510 + Model(..model, settings_page_model: new_settings_model), 1511 + effect.none(), 1512 + ) 1513 + } 1514 + 1515 + settings.UpdatePlcDirectoryUrlInput(value) -> { 1516 + let new_settings_model = 1517 + settings.Model( 1518 + ..model.settings_page_model, 1519 + plc_directory_url_input: value, 1520 + alert: None, 1521 + ) 1522 + #( 1523 + Model(..model, settings_page_model: new_settings_model), 1524 + effect.none(), 1525 + ) 1526 + } 1527 + 1528 + settings.UpdateJetstreamUrlInput(value) -> { 1529 + let new_settings_model = 1530 + settings.Model( 1531 + ..model.settings_page_model, 1532 + jetstream_url_input: value, 1533 + alert: None, 1534 + ) 1535 + #( 1536 + Model(..model, settings_page_model: new_settings_model), 1537 + effect.none(), 1538 + ) 1539 + } 1540 + 1541 + settings.UpdateOAuthSupportedScopesInput(value) -> { 1542 + let new_settings_model = 1543 + settings.Model( 1544 + ..model.settings_page_model, 1545 + oauth_supported_scopes_input: value, 1546 + alert: None, 1547 + ) 1548 + #( 1549 + Model(..model, settings_page_model: new_settings_model), 1550 + effect.none(), 1328 1551 ) 1329 1552 } 1330 1553 ··· 1797 2020 fn(mutation_id, result, response_body) { 1798 2021 case result { 1799 2022 Ok(_) -> 1800 - HandleOptimisticMutationSuccess( 1801 - mutation_id, 1802 - response_body, 1803 - ) 1804 - Error(err) -> 1805 - HandleOptimisticMutationFailure(mutation_id, err) 2023 + HandleAdminMutationSuccess(mutation_id, response_body) 2024 + Error(err) -> HandleAdminMutationFailure(mutation_id, err) 1806 2025 } 1807 2026 }, 1808 2027 ) ··· 1913 2132 fn(mutation_id, result, response_body) { 1914 2133 case result { 1915 2134 Ok(_) -> 1916 - HandleOptimisticMutationSuccess( 2135 + HandleAdminMutationSuccess( 1917 2136 mutation_id, 1918 2137 response_body, 1919 2138 ) 1920 2139 Error(err) -> 1921 - HandleOptimisticMutationFailure(mutation_id, err) 2140 + HandleAdminMutationFailure(mutation_id, err) 1922 2141 } 1923 2142 }, 1924 2143 ) ··· 2053 2272 // Handle file read error 2054 2273 io.println("[FileRead] Error reading file: " <> err) 2055 2274 let new_settings_model = 2056 - settings.set_alert(model.settings_page_model, "error", err) 2275 + settings.set_lexicons_alert(model.settings_page_model, "error", err) 2057 2276 #(Model(..model, settings_page_model: new_settings_model), effect.none()) 2058 2277 } 2059 2278
+399
docs/plans/2025-12-02-initialize-external-services-defaults.md
··· 1 + # Initialize External Services Config Defaults on Startup 2 + 3 + > **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task. 4 + 5 + **Goal:** Ensure external services configuration defaults (Relay URL, PLC Directory URL, Jetstream URL, OAuth Scopes) are written to the database on server startup and visible in the Settings UI, plus restart Jetstream consumer when PLC URL changes. 6 + 7 + **Architecture:** Add a database initialization function that checks if each config key exists and sets defaults if missing (never overwrites). Call this during server startup after database schema migration. Modify the `updateSettings` mutation to restart the Jetstream consumer when PLC URL changes, similar to the existing Jetstream URL change handling. 8 + 9 + **Tech Stack:** Gleam, SQLite (sqlight), GraphQL (swell) 10 + 11 + --- 12 + 13 + ## Task 1: Add Config Initialization Function 14 + 15 + **Files:** 16 + - Modify: `server/src/database/repositories/config.gleam:240` (after setter functions) 17 + 18 + **Step 1: Add initialization function with relay URL** 19 + 20 + Add this function after line 240 (after `set_oauth_supported_scopes`): 21 + 22 + ```gleam 23 + /// Initialize external services config with defaults if not already set 24 + /// Should be called once during server startup 25 + pub fn initialize_external_services_defaults( 26 + conn: sqlight.Connection, 27 + ) -> Result(Nil, sqlight.Error) { 28 + // Only set if the key doesn't exist (don't overwrite user settings) 29 + 30 + // Relay URL 31 + case get(conn, "relay_url") { 32 + Error(_) -> { 33 + let _ = set(conn, "relay_url", "https://relay1.us-west.bsky.network") 34 + Nil 35 + } 36 + Ok(_) -> Nil 37 + } 38 + 39 + Ok(Nil) 40 + } 41 + ``` 42 + 43 + **Step 2: Add PLC Directory URL initialization** 44 + 45 + Extend the function to include PLC URL (inside the function, before `Ok(Nil)`): 46 + 47 + ```gleam 48 + // PLC Directory URL 49 + case get(conn, "plc_directory_url") { 50 + Error(_) -> { 51 + let _ = set(conn, "plc_directory_url", "https://plc.directory") 52 + Nil 53 + } 54 + Ok(_) -> Nil 55 + } 56 + ``` 57 + 58 + **Step 3: Add Jetstream URL initialization** 59 + 60 + Continue adding to the function: 61 + 62 + ```gleam 63 + // Jetstream URL 64 + case get(conn, "jetstream_url") { 65 + Error(_) -> { 66 + let _ = set(conn, "jetstream_url", "wss://jetstream2.us-west.bsky.network/subscribe") 67 + Nil 68 + } 69 + Ok(_) -> Nil 70 + } 71 + ``` 72 + 73 + **Step 4: Add OAuth Supported Scopes initialization** 74 + 75 + Complete the function: 76 + 77 + ```gleam 78 + // OAuth Supported Scopes 79 + case get(conn, "oauth_supported_scopes") { 80 + Error(_) -> { 81 + let _ = set(conn, "oauth_supported_scopes", "atproto transition:generic") 82 + Nil 83 + } 84 + Ok(_) -> Nil 85 + } 86 + ``` 87 + 88 + **Step 5: Build to verify compilation** 89 + 90 + ```bash 91 + cd server 92 + gleam build 93 + ``` 94 + 95 + Expected: Success with no errors 96 + 97 + **Step 6: Commit** 98 + 99 + ```bash 100 + git add server/src/database/repositories/config.gleam 101 + git commit -m "feat(config): add initialization function for external services defaults" 102 + ``` 103 + 104 + --- 105 + 106 + ## Task 2: Call Initialization on Server Startup 107 + 108 + **Files:** 109 + - Modify: `server/src/server.gleam` (find database initialization in main function) 110 + 111 + **Step 1: Locate database initialization** 112 + 113 + Search for where the database is initialized in the `main()` function. Look for: 114 + ```gleam 115 + let db = database.initialize(db_path) 116 + ``` 117 + 118 + Or similar database initialization code. 119 + 120 + **Step 2: Add config initialization call** 121 + 122 + Right after the database initialization (after schema migration completes), add: 123 + 124 + ```gleam 125 + // Initialize external services config defaults 126 + let _ = config_repo.initialize_external_services_defaults(db) 127 + ``` 128 + 129 + **Step 3: Build to verify** 130 + 131 + ```bash 132 + cd server 133 + gleam build 134 + ``` 135 + 136 + Expected: Success 137 + 138 + **Step 4: Test with fresh database** 139 + 140 + Delete the database and start the server to verify initialization: 141 + 142 + ```bash 143 + rm server/quickslice.db 144 + cd server 145 + gleam run 146 + ``` 147 + 148 + Expected: Server starts successfully with no errors about missing config 149 + 150 + **Step 5: Verify defaults in database** 151 + 152 + While server is running, check the settings via GraphQL at http://localhost:8080/admin/graphql: 153 + 154 + ```graphql 155 + query { 156 + settings { 157 + relayUrl 158 + plcDirectoryUrl 159 + jetstreamUrl 160 + oauthSupportedScopes 161 + } 162 + } 163 + ``` 164 + 165 + Expected response: 166 + ```json 167 + { 168 + "data": { 169 + "settings": { 170 + "relayUrl": "https://relay1.us-west.bsky.network", 171 + "plcDirectoryUrl": "https://plc.directory", 172 + "jetstreamUrl": "wss://jetstream2.us-west.bsky.network/subscribe", 173 + "oauthSupportedScopes": "atproto transition:generic" 174 + } 175 + } 176 + } 177 + ``` 178 + 179 + **Step 6: Stop server and commit** 180 + 181 + ```bash 182 + # Stop the server (Ctrl+C) 183 + git add server/src/server.gleam 184 + git commit -m "feat(server): initialize external services config on startup" 185 + ``` 186 + 187 + --- 188 + 189 + ## Task 3: Restart Jetstream When PLC URL Changes 190 + 191 + **Files:** 192 + - Modify: `server/src/client_schema.gleam:1177-1203` (updateSettings mutation - PLC URL section) 193 + 194 + **Step 1: Change return type from Ok(Nil) to Ok(True)** 195 + 196 + Find line 1192 in the PLC URL update section and change: 197 + 198 + ```gleam 199 + // BEFORE: 200 + Ok(_) -> Ok(Nil) 201 + 202 + // AFTER: 203 + Ok(_) -> Ok(True) 204 + ``` 205 + 206 + **Step 2: Change default return from Ok(Nil) to Ok(False)** 207 + 208 + Find line 1201 (the default case) and change: 209 + 210 + ```gleam 211 + // BEFORE: 212 + _ -> Ok(Nil) 213 + 214 + // AFTER: 215 + _ -> Ok(False) 216 + ``` 217 + 218 + **Step 3: Update pattern match variable name** 219 + 220 + Find line 1204 and change from `plc_url_result` to track boolean: 221 + 222 + ```gleam 223 + // BEFORE: 224 + case plc_url_result { 225 + Error(err) -> Error(err) 226 + Ok(_) -> { 227 + 228 + // AFTER: 229 + case plc_url_result { 230 + Error(err) -> Error(err) 231 + Ok(plc_changed) -> { 232 + ``` 233 + 234 + **Step 4: Add Jetstream restart logic** 235 + 236 + Right after the `Ok(plc_changed) -> {` line, before continuing to the next setting, add: 237 + 238 + ```gleam 239 + // Restart Jetstream if PLC URL changed 240 + case plc_changed { 241 + True -> { 242 + case jetstream_subject { 243 + Some(consumer) -> { 244 + logging.log( 245 + logging.Info, 246 + "[updateSettings] Restarting Jetstream consumer due to PLC URL change", 247 + ) 248 + case jetstream_consumer.restart(consumer) { 249 + Ok(_) -> 250 + logging.log( 251 + logging.Info, 252 + "[updateSettings] Jetstream consumer restarted", 253 + ) 254 + Error(err) -> 255 + logging.log( 256 + logging.Error, 257 + "[updateSettings] Failed to restart Jetstream: " <> err, 258 + ) 259 + } 260 + } 261 + None -> Nil 262 + } 263 + } 264 + False -> Nil 265 + } 266 + ``` 267 + 268 + **Step 5: Build to verify** 269 + 270 + ```bash 271 + cd server 272 + gleam build 273 + ``` 274 + 275 + Expected: Success with no errors 276 + 277 + **Step 6: Test PLC URL update with restart** 278 + 279 + Start the server: 280 + ```bash 281 + cd server 282 + gleam run 283 + ``` 284 + 285 + Navigate to http://localhost:8080/settings and update the PLC Directory URL to a different value (e.g., `https://test-plc.example.com`). 286 + 287 + Expected in server logs: 288 + ``` 289 + [updateSettings] Restarting Jetstream consumer due to PLC URL change 290 + [updateSettings] Jetstream consumer restarted 291 + [jetstream] Starting Jetstream consumer... 292 + ``` 293 + 294 + **Step 7: Commit** 295 + 296 + ```bash 297 + git add server/src/client_schema.gleam 298 + git commit -m "feat(graphql): restart Jetstream consumer when PLC URL changes" 299 + ``` 300 + 301 + --- 302 + 303 + ## Task 4: Remove Unused Import 304 + 305 + **Files:** 306 + - Modify: `server/src/client_schema.gleam:15` 307 + 308 + **Step 1: Remove the unused envoy import** 309 + 310 + Find line 15 which has: 311 + ```gleam 312 + import envoy 313 + ``` 314 + 315 + Delete this entire line. 316 + 317 + **Step 2: Build to verify warning is gone** 318 + 319 + ```bash 320 + cd server 321 + gleam build 322 + ``` 323 + 324 + Expected: Success with NO warning about unused `import envoy` 325 + 326 + **Step 3: Commit** 327 + 328 + ```bash 329 + git add server/src/client_schema.gleam 330 + git commit -m "refactor(client_schema): remove unused envoy import" 331 + ``` 332 + 333 + --- 334 + 335 + ## Task 5: End-to-End Testing 336 + 337 + **Step 1: Test fresh database initialization** 338 + 339 + ```bash 340 + cd server 341 + rm quickslice.db 342 + gleam run 343 + ``` 344 + 345 + Expected: 346 + - Server starts successfully 347 + - No errors about missing config values 348 + 349 + **Step 2: Verify Settings UI shows defaults** 350 + 351 + Navigate to http://localhost:8080/settings 352 + 353 + Expected all four fields show their default values: 354 + - Relay URL: `https://relay1.us-west.bsky.network` 355 + - PLC Directory URL: `https://plc.directory` 356 + - Jetstream URL: `wss://jetstream2.us-west.bsky.network/subscribe` 357 + - OAuth Supported Scopes: `atproto transition:generic` 358 + 359 + **Step 3: Test custom value persistence** 360 + 361 + 1. Change PLC URL to `https://custom-plc.example.com` and save 362 + 2. Stop the server (Ctrl+C) 363 + 3. Start the server again: `gleam run` 364 + 4. Navigate to http://localhost:8080/settings 365 + 366 + Expected: Custom PLC URL `https://custom-plc.example.com` is retained (not overwritten with default) 367 + 368 + **Step 4: Test PLC URL change restarts consumer** 369 + 370 + 1. Change PLC URL to a different value 371 + 2. Check server logs 372 + 373 + Expected logs: 374 + ``` 375 + [updateSettings] Restarting Jetstream consumer due to PLC URL change 376 + [updateSettings] Jetstream consumer restarted 377 + [jetstream] Starting Jetstream consumer... 378 + ``` 379 + 380 + **Step 5: Verify DID resolution uses new PLC URL** 381 + 382 + If Jetstream events are coming in, verify that DID resolution attempts use the updated PLC URL (check logs for PLC directory requests). 383 + 384 + --- 385 + 386 + ## Testing Complete 387 + 388 + All tasks implemented. The external services configuration now: 389 + - ✅ Initializes defaults in database on fresh startup 390 + - ✅ Shows actual values in Settings UI (not placeholders) 391 + - ✅ Restarts Jetstream consumer when PLC URL changes 392 + - ✅ Never overwrites user-configured values 393 + - ✅ No unused imports 394 + 395 + ## Files Modified 396 + 397 + 1. `server/src/database/repositories/config.gleam` - Added `initialize_external_services_defaults()` 398 + 2. `server/src/server.gleam` - Call initialization on startup 399 + 3. `server/src/client_schema.gleam` - Restart Jetstream on PLC URL change, remove unused import
+1682
docs/plans/2025-12-02-migrate-env-vars-to-database.md
··· 1 + # Migrate Environment Variables to Database Configuration 2 + 3 + > **For Claude:** REQUIRED SUB-SKILL: Use superpowers:executing-plans to implement this plan task-by-task. 4 + 5 + **Goal:** Remove config cache actor and migrate four environment variables (`RELAY_URL`, `PLC_DIRECTORY_URL`, `JETSTREAM_URL`, `OAUTH_SUPPORTED_SCOPES`) to database-backed configuration accessible via GraphQL API and UI. 6 + 7 + **Architecture:** Direct database queries via `config_repo.get()` replace the config cache actor pattern. Settings are stored in the `config` table with hardcoded defaults. Changes take effect immediately without server restart (except Jetstream consumer auto-restarts when URL changes). 8 + 9 + **Tech Stack:** Gleam, SQLite (via sqlight), GraphQL (via swell), Lustre (frontend) 10 + 11 + --- 12 + 13 + ## Task 1: Add Database Repository Functions 14 + 15 + **Files:** 16 + - Modify: `server/src/database/repositories/config.gleam:172` (add after existing functions) 17 + 18 + **Step 1: Add relay_url getter function** 19 + 20 + ```gleam 21 + // Add after line 172 22 + 23 + // ===== External Services Configuration ===== 24 + 25 + /// Get relay URL from config, with hardcoded default 26 + pub fn get_relay_url(conn: sqlight.Connection) -> String { 27 + case get(conn, "relay_url") { 28 + Ok(url) -> url 29 + Error(_) -> "https://relay1.us-west.bsky.network" 30 + } 31 + } 32 + ``` 33 + 34 + **Step 2: Add plc_directory_url getter function** 35 + 36 + ```gleam 37 + /// Get PLC directory URL from config, with hardcoded default 38 + pub fn get_plc_directory_url(conn: sqlight.Connection) -> String { 39 + case get(conn, "plc_directory_url") { 40 + Ok(url) -> url 41 + Error(_) -> "https://plc.directory" 42 + } 43 + } 44 + ``` 45 + 46 + **Step 3: Add jetstream_url getter function** 47 + 48 + ```gleam 49 + /// Get Jetstream URL from config, with hardcoded default 50 + pub fn get_jetstream_url(conn: sqlight.Connection) -> String { 51 + case get(conn, "jetstream_url") { 52 + Ok(url) -> url 53 + Error(_) -> "wss://jetstream2.us-west.bsky.network/subscribe" 54 + } 55 + } 56 + ``` 57 + 58 + **Step 4: Add oauth_supported_scopes getter functions** 59 + 60 + ```gleam 61 + /// Get OAuth supported scopes from config, with hardcoded default 62 + /// Returns space-separated string 63 + pub fn get_oauth_supported_scopes(conn: sqlight.Connection) -> String { 64 + case get(conn, "oauth_supported_scopes") { 65 + Ok(scopes) -> scopes 66 + Error(_) -> "atproto transition:generic" 67 + } 68 + } 69 + 70 + /// Parse OAuth supported scopes into List(String) 71 + pub fn get_oauth_supported_scopes_list(conn: sqlight.Connection) -> List(String) { 72 + let scopes_str = get_oauth_supported_scopes(conn) 73 + scopes_str 74 + |> string.split(" ") 75 + |> list.map(string.trim) 76 + |> list.filter(fn(s) { !string.is_empty(s) }) 77 + } 78 + ``` 79 + 80 + **Step 5: Add setter functions** 81 + 82 + ```gleam 83 + /// Set relay URL 84 + pub fn set_relay_url( 85 + conn: sqlight.Connection, 86 + url: String, 87 + ) -> Result(Nil, sqlight.Error) { 88 + set(conn, "relay_url", url) 89 + } 90 + 91 + /// Set PLC directory URL 92 + pub fn set_plc_directory_url( 93 + conn: sqlight.Connection, 94 + url: String, 95 + ) -> Result(Nil, sqlight.Error) { 96 + set(conn, "plc_directory_url", url) 97 + } 98 + 99 + /// Set Jetstream URL 100 + pub fn set_jetstream_url( 101 + conn: sqlight.Connection, 102 + url: String, 103 + ) -> Result(Nil, sqlight.Error) { 104 + set(conn, "jetstream_url", url) 105 + } 106 + 107 + /// Set OAuth supported scopes (space-separated string) 108 + pub fn set_oauth_supported_scopes( 109 + conn: sqlight.Connection, 110 + scopes: String, 111 + ) -> Result(Nil, sqlight.Error) { 112 + set(conn, "oauth_supported_scopes", scopes) 113 + } 114 + ``` 115 + 116 + **Step 6: Build to verify compilation** 117 + 118 + ```bash 119 + cd server 120 + gleam build 121 + ``` 122 + 123 + Expected: Success with no errors 124 + 125 + **Step 7: Commit** 126 + 127 + ```bash 128 + git add server/src/database/repositories/config.gleam 129 + git commit -m "feat(config): add repository functions for external services config" 130 + ``` 131 + 132 + --- 133 + 134 + ## Task 2: Update server.gleam - Remove Config Actor and Context Fields 135 + 136 + **Files:** 137 + - Modify: `server/src/server.gleam:5` (remove import) 138 + - Modify: `server/src/server.gleam:52-67` (Context type) 139 + - Modify: `server/src/server.gleam:138-151` (run_backfill_command) 140 + - Modify: `server/src/server.gleam:346-398` (remove env var reading) 141 + - Modify: `server/src/server.gleam:426-438` (Context construction) 142 + - Modify: `server/src/server.gleam:467` (WebSocket handler) 143 + 144 + **Step 1: Add config_repo import** 145 + 146 + Add after other imports: 147 + ```gleam 148 + import database/repositories/config as config_repo 149 + ``` 150 + 151 + **Step 2: Remove config import** 152 + 153 + Delete line 5: 154 + ```gleam 155 + import config // DELETE THIS LINE 156 + ``` 157 + 158 + **Step 3: Update Context type** 159 + 160 + In the Context type (lines 52-67), remove these three fields: 161 + ```gleam 162 + pub type Context { 163 + Context( 164 + db: sqlight.Connection, 165 + external_base_url: String, 166 + // REMOVE: plc_url: String, 167 + backfill_state: process.Subject(backfill_state.Message), 168 + // REMOVE: config: process.Subject(config.Message), 169 + jetstream_consumer: option.Option( 170 + process.Subject(jetstream_consumer.ManagerMessage), 171 + ), 172 + did_cache: process.Subject(did_cache.Message), 173 + oauth_signing_key: option.Option(String), 174 + // REMOVE: oauth_supported_scopes: List(String), 175 + oauth_loopback_mode: Bool, 176 + ) 177 + } 178 + ``` 179 + 180 + **Step 4: Update run_backfill_command function** 181 + 182 + Replace lines 138-151: 183 + ```gleam 184 + // BEFORE: 185 + // Start config cache actor 186 + let assert Ok(config_subject) = config.start(db) 187 + 188 + // Get domain authority from config 189 + let domain_authority = case config.get_domain_authority(config_subject) { 190 + option.Some(authority) -> authority 191 + option.None -> { 192 + logging.log( 193 + logging.Warning, 194 + "No domain_authority configured. All collections will be treated as external.", 195 + ) 196 + "" 197 + } 198 + } 199 + 200 + // AFTER: 201 + // Get domain authority from database 202 + let domain_authority = case config_repo.get(db, "domain_authority") { 203 + Ok(authority) -> authority 204 + Error(_) -> { 205 + logging.log( 206 + logging.Warning, 207 + "No domain_authority configured. All collections will be treated as external.", 208 + ) 209 + "" 210 + } 211 + } 212 + ``` 213 + 214 + **Step 5: Delete environment variable reading code** 215 + 216 + Delete lines 346-350 (PLC_DIRECTORY_URL): 217 + ```gleam 218 + // DELETE: 219 + let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 220 + Ok(url) -> url 221 + Error(_) -> "https://plc.directory" 222 + } 223 + ``` 224 + 225 + Delete lines 372-398 (OAUTH_SUPPORTED_SCOPES): 226 + ```gleam 227 + // DELETE all OAUTH_SUPPORTED_SCOPES env var reading and validation code 228 + ``` 229 + 230 + Delete lines 418-420 (config.start()): 231 + ```gleam 232 + // DELETE: 233 + let assert Ok(config_subject) = config.start(db) 234 + logging.log(logging.Info, "[server] Config cache actor initialized") 235 + ``` 236 + 237 + **Step 6: Update Context construction** 238 + 239 + In the Context constructor (lines 426-438), remove three fields: 240 + ```gleam 241 + let ctx = 242 + Context( 243 + db: db, 244 + external_base_url: external_base_url, 245 + // REMOVE: plc_url: plc_url, 246 + backfill_state: backfill_state_subject, 247 + // REMOVE: config: config_subject, 248 + jetstream_consumer: jetstream_subject, 249 + did_cache: did_cache_subject, 250 + oauth_signing_key: oauth_signing_key, 251 + // REMOVE: oauth_supported_scopes: oauth_supported_scopes, 252 + oauth_loopback_mode: oauth_loopback_mode, 253 + ) 254 + ``` 255 + 256 + **Step 7: Update WebSocket handler domain_authority usage** 257 + 258 + Replace line 467: 259 + ```gleam 260 + // BEFORE: 261 + let domain_authority = case config.get_domain_authority(ctx.config) { 262 + option.Some(authority) -> authority 263 + option.None -> "" 264 + } 265 + 266 + // AFTER: 267 + let domain_authority = case config_repo.get(ctx.db, "domain_authority") { 268 + Ok(authority) -> authority 269 + Error(_) -> "" 270 + } 271 + ``` 272 + 273 + **Step 8: Update build_loopback_client_id calls (lines 526-531, 546-551, 622-627, 643-648)** 274 + 275 + Find all usages of `ctx.oauth_supported_scopes` and replace with: 276 + ```gleam 277 + // BEFORE: 278 + string.join(ctx.oauth_supported_scopes, " ") 279 + 280 + // AFTER: 281 + config_repo.get_oauth_supported_scopes(ctx.db) 282 + ``` 283 + 284 + **Step 9: Update handler calls passing oauth_supported_scopes** 285 + 286 + Find lines 569, 541-542, and update: 287 + ```gleam 288 + // BEFORE: 289 + ctx.oauth_supported_scopes, 290 + 291 + // AFTER: 292 + config_repo.get_oauth_supported_scopes_list(ctx.db), 293 + ``` 294 + 295 + **Step 10: Update oauth metadata handler call (line 600-602)** 296 + 297 + ```gleam 298 + // BEFORE: 299 + oauth_metadata_handler.handle( 300 + ctx.external_base_url, 301 + ctx.oauth_supported_scopes, 302 + ) 303 + 304 + // AFTER: 305 + oauth_metadata_handler.handle( 306 + ctx.external_base_url, 307 + config_repo.get_oauth_supported_scopes_list(ctx.db), 308 + ) 309 + ``` 310 + 311 + **Step 11: Update oauth_client_metadata_handler call (line 605-615)** 312 + 313 + ```gleam 314 + // BEFORE: 315 + string.join(ctx.oauth_supported_scopes, " "), 316 + 317 + // AFTER: 318 + config_repo.get_oauth_supported_scopes(ctx.db), 319 + ``` 320 + 321 + **Step 12: Update MCP handler context (line 594)** 322 + 323 + ```gleam 324 + // BEFORE: 325 + supported_scopes: ctx.oauth_supported_scopes, 326 + 327 + // AFTER: 328 + supported_scopes: config_repo.get_oauth_supported_scopes_list(ctx.db), 329 + ``` 330 + 331 + **Step 13: Build to verify compilation** 332 + 333 + ```bash 334 + cd server 335 + gleam build 336 + ``` 337 + 338 + Expected: Success (may have errors in other files we'll fix next) 339 + 340 + **Step 14: Commit** 341 + 342 + ```bash 343 + git add server/src/server.gleam 344 + git commit -m "refactor(server): remove config actor, update Context type" 345 + ``` 346 + 347 + --- 348 + 349 + ## Task 3: Delete Config Cache Actor File 350 + 351 + **Files:** 352 + - Delete: `server/src/config.gleam` 353 + 354 + **Step 1: Delete the file** 355 + 356 + ```bash 357 + rm server/src/config.gleam 358 + ``` 359 + 360 + **Step 2: Build to verify** 361 + 362 + ```bash 363 + cd server 364 + gleam build 365 + ``` 366 + 367 + Expected: Build errors in files still importing config (we'll fix these next) 368 + 369 + **Step 3: Commit** 370 + 371 + ```bash 372 + git add server/src/config.gleam 373 + git commit -m "refactor: remove config cache actor" 374 + ``` 375 + 376 + --- 377 + 378 + ## Task 4: Update backfill.gleam 379 + 380 + **Files:** 381 + - Modify: `server/src/backfill.gleam:63-66` (PLC URL) 382 + - Modify: `server/src/backfill.gleam:1189-1192` (Relay URL) 383 + 384 + **Step 1: Add import** 385 + 386 + Add at top with other imports: 387 + ```gleam 388 + import database/repositories/config as config_repo 389 + ``` 390 + 391 + **Step 2: Update PLC URL usage (line 63-66)** 392 + 393 + ```gleam 394 + // BEFORE: 395 + let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 396 + Ok(url) -> url 397 + Error(_) -> "https://plc.directory" 398 + } 399 + 400 + // AFTER: 401 + let plc_url = config_repo.get_plc_directory_url(db) 402 + ``` 403 + 404 + **Step 3: Update Relay URL usage (line 1189-1192)** 405 + 406 + ```gleam 407 + // BEFORE: 408 + let relay_url = case envoy.get("RELAY_URL") { 409 + Ok(url) -> url 410 + Error(_) -> "https://relay1.us-west.bsky.network" 411 + } 412 + 413 + // AFTER: 414 + let relay_url = config_repo.get_relay_url(db) 415 + ``` 416 + 417 + **Step 4: Build to verify** 418 + 419 + ```bash 420 + cd server 421 + gleam build 422 + ``` 423 + 424 + Expected: Success 425 + 426 + **Step 5: Commit** 427 + 428 + ```bash 429 + git add server/src/backfill.gleam 430 + git commit -m "refactor(backfill): read URLs from database config" 431 + ``` 432 + 433 + --- 434 + 435 + ## Task 5: Update jetstream_consumer.gleam 436 + 437 + **Files:** 438 + - Modify: `server/src/jetstream_consumer.gleam:2` (remove import) 439 + - Modify: `server/src/jetstream_consumer.gleam:563-566` (PLC URL) 440 + - Modify: `server/src/jetstream_consumer.gleam:633-636` (Jetstream URL) 441 + 442 + **Step 1: Remove config import** 443 + 444 + Delete line 2: 445 + ```gleam 446 + import config // DELETE 447 + ``` 448 + 449 + **Step 2: Add config_repo import** 450 + 451 + Add with other imports: 452 + ```gleam 453 + import database/repositories/config as config_repo 454 + ``` 455 + 456 + **Step 3: Update PLC URL usage (line 563-566)** 457 + 458 + ```gleam 459 + // BEFORE: 460 + let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 461 + Ok(url) -> url 462 + Error(_) -> "https://plc.directory" 463 + } 464 + 465 + // AFTER: 466 + let plc_url = config_repo.get_plc_directory_url(db) 467 + ``` 468 + 469 + **Step 4: Update Jetstream URL usage (line 633-636)** 470 + 471 + ```gleam 472 + // BEFORE: 473 + let jetstream_url = case envoy.get("JETSTREAM_URL") { 474 + Ok(url) -> url 475 + Error(_) -> "wss://jetstream2.us-west.bsky.network/subscribe" 476 + } 477 + 478 + // AFTER: 479 + let jetstream_url = config_repo.get_jetstream_url(db) 480 + ``` 481 + 482 + **Step 5: Remove config.start() call (line 569)** 483 + 484 + Delete: 485 + ```gleam 486 + let assert Ok(config_subject) = config.start(db) 487 + ``` 488 + 489 + **Step 6: Update domain_authority usage (line 572-576)** 490 + 491 + ```gleam 492 + // BEFORE: 493 + let domain_authority = case config.get_domain_authority(config_subject) { 494 + option.Some(authority) -> authority 495 + option.None -> "" 496 + } 497 + 498 + // AFTER: 499 + let domain_authority = case config_repo.get(db, "domain_authority") { 500 + Ok(authority) -> authority 501 + Error(_) -> "" 502 + } 503 + ``` 504 + 505 + **Step 7: Build to verify** 506 + 507 + ```bash 508 + cd server 509 + gleam build 510 + ``` 511 + 512 + Expected: Success 513 + 514 + **Step 8: Commit** 515 + 516 + ```bash 517 + git add server/src/jetstream_consumer.gleam 518 + git commit -m "refactor(jetstream): read config from database" 519 + ``` 520 + 521 + --- 522 + 523 + ## Task 6: Update handlers/settings.gleam 524 + 525 + **Files:** 526 + - Modify: `server/src/handlers/settings.gleam:2` (remove import) 527 + - Modify: `server/src/handlers/settings.gleam:23-32` (Context type) 528 + - Modify: `server/src/handlers/settings.gleam:96-102` (set domain authority) 529 + - Modify: `server/src/handlers/settings.gleam:367` (remove reload) 530 + 531 + **Step 1: Remove config import** 532 + 533 + Delete line 2: 534 + ```gleam 535 + import config // DELETE 536 + ``` 537 + 538 + **Step 2: Update Context type** 539 + 540 + Remove config field from Context (lines 23-32): 541 + ```gleam 542 + pub type Context { 543 + Context( 544 + db: sqlight.Connection, 545 + // REMOVE: config: process.Subject(config.Message), 546 + jetstream_consumer: option.Option( 547 + process.Subject(jetstream_consumer.ManagerMessage), 548 + ), 549 + did_cache: process.Subject(did_cache.Message), 550 + ) 551 + } 552 + ``` 553 + 554 + **Step 3: Update set domain authority call (lines 96-102)** 555 + 556 + ```gleam 557 + // BEFORE: 558 + case 559 + config.set_domain_authority( 560 + ctx.config, 561 + ctx.db, 562 + domain_authority, 563 + ) 564 + { 565 + Ok(_) -> { /* ... */ } 566 + Error(_) -> { /* ... */ } 567 + } 568 + 569 + // AFTER: 570 + case config_repo.set(ctx.db, "domain_authority", domain_authority) { 571 + Ok(_) -> { /* ... */ } 572 + Error(_) -> { /* ... */ } 573 + } 574 + ``` 575 + 576 + **Step 4: Remove config reload call (line 367)** 577 + 578 + Delete: 579 + ```gleam 580 + let _ = config.reload(ctx.config, ctx.db) 581 + ``` 582 + 583 + **Step 5: Build to verify** 584 + 585 + ```bash 586 + cd server 587 + gleam build 588 + ``` 589 + 590 + Expected: Success 591 + 592 + **Step 6: Commit** 593 + 594 + ```bash 595 + git add server/src/handlers/settings.gleam 596 + git commit -m "refactor(settings): remove config actor usage" 597 + ``` 598 + 599 + --- 600 + 601 + ## Task 7: Update client_schema.gleam - Settings Type 602 + 603 + **Files:** 604 + - Modify: `server/src/client_schema.gleam:359-404` (settings_type function) 605 + - Modify: `server/src/client_schema.gleam:686-695` (settings_to_value helper) 606 + - Modify: `server/src/client_schema.gleam:1292-1295` (PLC URL in backfill mutation) 607 + 608 + **Step 1: Update PLC URL in backfill mutation (line 1292-1295)** 609 + 610 + ```gleam 611 + // BEFORE: 612 + let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 613 + Ok(url) -> url 614 + Error(_) -> "https://plc.directory" 615 + } 616 + 617 + // AFTER: 618 + let plc_url = config_repo.get_plc_directory_url(conn) 619 + ``` 620 + 621 + **Step 2: Add relayUrl field to settings_type (after line 403)** 622 + 623 + ```gleam 624 + schema.field( 625 + "relayUrl", 626 + schema.non_null(schema.string_type()), 627 + "AT Protocol relay URL for backfill operations", 628 + fn(ctx) { 629 + case ctx.data { 630 + Some(value.Object(fields)) -> { 631 + case list.key_find(fields, "relayUrl") { 632 + Ok(url) -> Ok(url) 633 + Error(_) -> Ok(value.Null) 634 + } 635 + } 636 + _ -> Ok(value.Null) 637 + } 638 + }, 639 + ), 640 + ``` 641 + 642 + **Step 3: Add plcDirectoryUrl field** 643 + 644 + ```gleam 645 + schema.field( 646 + "plcDirectoryUrl", 647 + schema.non_null(schema.string_type()), 648 + "PLC directory URL for DID resolution", 649 + fn(ctx) { 650 + case ctx.data { 651 + Some(value.Object(fields)) -> { 652 + case list.key_find(fields, "plcDirectoryUrl") { 653 + Ok(url) -> Ok(url) 654 + Error(_) -> Ok(value.Null) 655 + } 656 + } 657 + _ -> Ok(value.Null) 658 + } 659 + }, 660 + ), 661 + ``` 662 + 663 + **Step 4: Add jetstreamUrl field** 664 + 665 + ```gleam 666 + schema.field( 667 + "jetstreamUrl", 668 + schema.non_null(schema.string_type()), 669 + "Jetstream WebSocket endpoint for real-time indexing", 670 + fn(ctx) { 671 + case ctx.data { 672 + Some(value.Object(fields)) -> { 673 + case list.key_find(fields, "jetstreamUrl") { 674 + Ok(url) -> Ok(url) 675 + Error(_) -> Ok(value.Null) 676 + } 677 + } 678 + _ -> Ok(value.Null) 679 + } 680 + }, 681 + ), 682 + ``` 683 + 684 + **Step 5: Add oauthSupportedScopes field** 685 + 686 + ```gleam 687 + schema.field( 688 + "oauthSupportedScopes", 689 + schema.non_null(schema.string_type()), 690 + "Space-separated OAuth scopes supported by this server", 691 + fn(ctx) { 692 + case ctx.data { 693 + Some(value.Object(fields)) -> { 694 + case list.key_find(fields, "oauthSupportedScopes") { 695 + Ok(scopes) -> Ok(scopes) 696 + Error(_) -> Ok(value.Null) 697 + } 698 + } 699 + _ -> Ok(value.Null) 700 + } 701 + }, 702 + ), 703 + ``` 704 + 705 + **Step 6: Update settings_to_value function signature (lines 686-695)** 706 + 707 + ```gleam 708 + // BEFORE: 709 + fn settings_to_value( 710 + domain_authority: String, 711 + admin_dids: List(String), 712 + ) -> value.Value { 713 + value.Object([ 714 + #("id", value.String("Settings:singleton")), 715 + #("domainAuthority", value.String(domain_authority)), 716 + #("adminDids", value.List(list.map(admin_dids, value.String))), 717 + ]) 718 + } 719 + 720 + // AFTER: 721 + fn settings_to_value( 722 + domain_authority: String, 723 + admin_dids: List(String), 724 + relay_url: String, 725 + plc_directory_url: String, 726 + jetstream_url: String, 727 + oauth_supported_scopes: String, 728 + ) -> value.Value { 729 + value.Object([ 730 + #("id", value.String("Settings:singleton")), 731 + #("domainAuthority", value.String(domain_authority)), 732 + #("adminDids", value.List(list.map(admin_dids, value.String))), 733 + #("relayUrl", value.String(relay_url)), 734 + #("plcDirectoryUrl", value.String(plc_directory_url)), 735 + #("jetstreamUrl", value.String(jetstream_url)), 736 + #("oauthSupportedScopes", value.String(oauth_supported_scopes)), 737 + ]) 738 + } 739 + ``` 740 + 741 + **Step 7: Build to verify** 742 + 743 + ```bash 744 + cd server 745 + gleam build 746 + ``` 747 + 748 + Expected: Build errors in settings query/mutation (we'll fix next) 749 + 750 + **Step 8: Commit** 751 + 752 + ```bash 753 + git add server/src/client_schema.gleam 754 + git commit -m "feat(graphql): add four external service fields to Settings type" 755 + ``` 756 + 757 + --- 758 + 759 + ## Task 8: Update Settings Query Resolver 760 + 761 + **Files:** 762 + - Modify: `server/src/client_schema.gleam:770-784` (settings query) 763 + 764 + **Step 1: Update settings query resolver** 765 + 766 + Replace the query resolver (lines 770-784): 767 + ```gleam 768 + // settings query 769 + schema.field( 770 + "settings", 771 + schema.non_null(settings_type()), 772 + "Get system settings", 773 + fn(_ctx) { 774 + let domain_authority = case config_repo.get(conn, "domain_authority") { 775 + Ok(authority) -> authority 776 + Error(_) -> "" 777 + } 778 + let admin_dids = config_repo.get_admin_dids(conn) 779 + let relay_url = config_repo.get_relay_url(conn) 780 + let plc_directory_url = config_repo.get_plc_directory_url(conn) 781 + let jetstream_url = config_repo.get_jetstream_url(conn) 782 + let oauth_supported_scopes = config_repo.get_oauth_supported_scopes(conn) 783 + 784 + Ok(settings_to_value( 785 + domain_authority, 786 + admin_dids, 787 + relay_url, 788 + plc_directory_url, 789 + jetstream_url, 790 + oauth_supported_scopes, 791 + )) 792 + }, 793 + ), 794 + ``` 795 + 796 + **Step 2: Build to verify** 797 + 798 + ```bash 799 + cd server 800 + gleam build 801 + ``` 802 + 803 + Expected: Success 804 + 805 + **Step 3: Commit** 806 + 807 + ```bash 808 + git add server/src/client_schema.gleam 809 + git commit -m "feat(graphql): return external service URLs in settings query" 810 + ``` 811 + 812 + --- 813 + 814 + ## Task 9: Update Settings Mutation - Add Arguments 815 + 816 + **Files:** 817 + - Modify: `server/src/client_schema.gleam:929-1051` (updateSettings mutation) 818 + 819 + **Step 1: Add relayUrl argument (after adminDids argument)** 820 + 821 + Find the arguments section and add: 822 + ```gleam 823 + schema.argument( 824 + "relayUrl", 825 + schema.string_type(), 826 + "New relay URL (optional)", 827 + None, 828 + ), 829 + ``` 830 + 831 + **Step 2: Add plcDirectoryUrl argument** 832 + 833 + ```gleam 834 + schema.argument( 835 + "plcDirectoryUrl", 836 + schema.string_type(), 837 + "New PLC directory URL (optional)", 838 + None, 839 + ), 840 + ``` 841 + 842 + **Step 3: Add jetstreamUrl argument** 843 + 844 + ```gleam 845 + schema.argument( 846 + "jetstreamUrl", 847 + schema.string_type(), 848 + "New Jetstream URL (optional)", 849 + None, 850 + ), 851 + ``` 852 + 853 + **Step 4: Add oauthSupportedScopes argument** 854 + 855 + ```gleam 856 + schema.argument( 857 + "oauthSupportedScopes", 858 + schema.string_type(), 859 + "New OAuth supported scopes space-separated (optional)", 860 + None, 861 + ), 862 + ``` 863 + 864 + **Step 5: Build to verify arguments added** 865 + 866 + ```bash 867 + cd server 868 + gleam build 869 + ``` 870 + 871 + Expected: Success 872 + 873 + **Step 6: Commit** 874 + 875 + ```bash 876 + git add server/src/client_schema.gleam 877 + git commit -m "feat(graphql): add external service arguments to updateSettings" 878 + ``` 879 + 880 + --- 881 + 882 + ## Task 10: Update Settings Mutation - Add Update Logic 883 + 884 + **Files:** 885 + - Modify: `server/src/client_schema.gleam:929-1051` (updateSettings mutation resolver) 886 + 887 + **Step 1: Add relay URL update logic** 888 + 889 + After the admin DIDs update logic (around line 1028), add: 890 + ```gleam 891 + // Update relay URL if provided 892 + case schema.get_argument(ctx, "relayUrl") { 893 + Some(value.String(url)) if url != "" -> { 894 + case config_repo.set_relay_url(conn, url) { 895 + Ok(_) -> Nil 896 + Error(_) -> { 897 + logging.log(logging.Error, "[updateSettings] Failed to update relay URL") 898 + } 899 + } 900 + } 901 + _ -> Nil 902 + } 903 + ``` 904 + 905 + **Step 2: Add PLC directory URL update logic** 906 + 907 + ```gleam 908 + // Update PLC directory URL if provided 909 + case schema.get_argument(ctx, "plcDirectoryUrl") { 910 + Some(value.String(url)) if url != "" -> { 911 + case config_repo.set_plc_directory_url(conn, url) { 912 + Ok(_) -> Nil 913 + Error(_) -> { 914 + logging.log(logging.Error, "[updateSettings] Failed to update PLC directory URL") 915 + } 916 + } 917 + } 918 + _ -> Nil 919 + } 920 + ``` 921 + 922 + **Step 3: Add Jetstream URL update logic with restart** 923 + 924 + ```gleam 925 + // Update Jetstream URL if provided and restart consumer 926 + let jetstream_url_changed = case schema.get_argument(ctx, "jetstreamUrl") { 927 + Some(value.String(url)) if url != "" -> { 928 + case config_repo.set_jetstream_url(conn, url) { 929 + Ok(_) -> True 930 + Error(_) -> { 931 + logging.log(logging.Error, "[updateSettings] Failed to update Jetstream URL") 932 + False 933 + } 934 + } 935 + } 936 + _ -> False 937 + } 938 + 939 + // If Jetstream URL changed, restart consumer 940 + case jetstream_url_changed { 941 + True -> { 942 + case jetstream_subject { 943 + Some(consumer) -> { 944 + logging.log( 945 + logging.Info, 946 + "[updateSettings] Restarting Jetstream consumer due to URL change", 947 + ) 948 + case jetstream_consumer.restart(consumer) { 949 + Ok(_) -> logging.log(logging.Info, "[updateSettings] Jetstream consumer restarted") 950 + Error(err) -> logging.log(logging.Error, "[updateSettings] Failed to restart Jetstream: " <> err) 951 + } 952 + } 953 + None -> Nil 954 + } 955 + } 956 + False -> Nil 957 + } 958 + ``` 959 + 960 + **Step 4: Add OAuth scopes update logic with validation** 961 + 962 + ```gleam 963 + // Update OAuth supported scopes if provided (with validation) 964 + case schema.get_argument(ctx, "oauthSupportedScopes") { 965 + Some(value.String(scopes)) if scopes != "" -> { 966 + case scope_validator.validate_scope_format(scopes) { 967 + Ok(_) -> { 968 + case config_repo.set_oauth_supported_scopes(conn, scopes) { 969 + Ok(_) -> Nil 970 + Error(_) -> { 971 + logging.log(logging.Error, "[updateSettings] Failed to update OAuth scopes") 972 + } 973 + } 974 + } 975 + Error(e) -> { 976 + logging.log( 977 + logging.Error, 978 + "[updateSettings] Invalid OAuth scopes format: " <> error.error_description(e), 979 + ) 980 + } 981 + } 982 + } 983 + _ -> Nil 984 + } 985 + ``` 986 + 987 + **Step 5: Update final settings return** 988 + 989 + Find the final return statement (around line 1034-1042) and update: 990 + ```gleam 991 + // Return updated settings 992 + let final_authority = case config_repo.get(conn, "domain_authority") { 993 + Ok(a) -> a 994 + Error(_) -> "" 995 + } 996 + let final_admin_dids = config_repo.get_admin_dids(conn) 997 + let final_relay_url = config_repo.get_relay_url(conn) 998 + let final_plc_directory_url = config_repo.get_plc_directory_url(conn) 999 + let final_jetstream_url = config_repo.get_jetstream_url(conn) 1000 + let final_oauth_scopes = config_repo.get_oauth_supported_scopes(conn) 1001 + 1002 + Ok(settings_to_value( 1003 + final_authority, 1004 + final_admin_dids, 1005 + final_relay_url, 1006 + final_plc_directory_url, 1007 + final_jetstream_url, 1008 + final_oauth_scopes, 1009 + )) 1010 + ``` 1011 + 1012 + **Step 6: Build to verify** 1013 + 1014 + ```bash 1015 + cd server 1016 + gleam build 1017 + ``` 1018 + 1019 + Expected: Success 1020 + 1021 + **Step 7: Commit** 1022 + 1023 + ```bash 1024 + git add server/src/client_schema.gleam 1025 + git commit -m "feat(graphql): implement external service updates in mutation" 1026 + ``` 1027 + 1028 + --- 1029 + 1030 + ## Task 11: Regenerate Frontend GraphQL Queries 1031 + 1032 + **Prerequisites:** 1033 + - Server must be running with updated GraphQL schema 1034 + - Backend tasks 1-10 must be complete 1035 + 1036 + **Step 1: Start the server** 1037 + 1038 + ```bash 1039 + cd server 1040 + gleam run 1041 + ``` 1042 + 1043 + Expected: Server starts on http://localhost:8080 1044 + 1045 + **Step 2: Regenerate GraphQL queries from schema** 1046 + 1047 + In a new terminal: 1048 + ```bash 1049 + cd client 1050 + gleam run -m squall unstable-cache http://localhost:8080/admin/graphql 1051 + ``` 1052 + 1053 + Expected: Squall generates updated query types in `client/src/generated/queries/` 1054 + 1055 + **Step 3: Verify generated Settings type** 1056 + 1057 + Check `client/src/generated/queries/get_settings.gleam`: 1058 + 1059 + ```gleam 1060 + pub type Settings { 1061 + Settings( 1062 + id: String, 1063 + domain_authority: String, 1064 + admin_dids: List(String), 1065 + relay_url: String, 1066 + plc_directory_url: String, 1067 + jetstream_url: String, 1068 + oauth_supported_scopes: String, 1069 + ) 1070 + } 1071 + ``` 1072 + 1073 + **Step 2: Update GraphQL query string** 1074 + 1075 + ```gleam 1076 + pub fn get_settings(client: squall.Client) -> Result(Request(String), String) { 1077 + squall.prepare_request( 1078 + client, 1079 + "query GetSettings { 1080 + settings { 1081 + id 1082 + domainAuthority 1083 + adminDids 1084 + relayUrl 1085 + plcDirectoryUrl 1086 + jetstreamUrl 1087 + oauthSupportedScopes 1088 + } 1089 + }", 1090 + json.object([]), 1091 + ) 1092 + } 1093 + ``` 1094 + 1095 + **Step 3: Update parser function** 1096 + 1097 + Add fields to decoder: 1098 + ```gleam 1099 + use relay_url <- decode.field("relayUrl", decode.string) 1100 + use plc_directory_url <- decode.field("plcDirectoryUrl", decode.string) 1101 + use jetstream_url <- decode.field("jetstreamUrl", decode.string) 1102 + use oauth_supported_scopes <- decode.field("oauthSupportedScopes", decode.string) 1103 + ``` 1104 + 1105 + And constructor: 1106 + ```gleam 1107 + decode.success(Settings( 1108 + id: id, 1109 + domain_authority: domain_authority, 1110 + admin_dids: admin_dids, 1111 + relay_url: relay_url, 1112 + plc_directory_url: plc_directory_url, 1113 + jetstream_url: jetstream_url, 1114 + oauth_supported_scopes: oauth_supported_scopes, 1115 + )) 1116 + ``` 1117 + 1118 + **Step 4: Verify update_settings mutation was also regenerated** 1119 + 1120 + Check `client/src/generated/queries/update_settings.gleam` includes new parameters. 1121 + 1122 + **Step 5: Build to verify** 1123 + 1124 + ```bash 1125 + cd client 1126 + gleam build 1127 + ``` 1128 + 1129 + Expected: Success 1130 + 1131 + **Step 6: Commit** 1132 + 1133 + ```bash 1134 + git add client/src/generated/queries/ 1135 + git commit -m "feat(client): regenerate GraphQL queries with external services" 1136 + ``` 1137 + 1138 + --- 1139 + 1140 + ## Task 12: Update Frontend - Settings Page Model 1141 + 1142 + **Files:** 1143 + - Modify: `client/src/pages/settings.gleam:98-128` (Msg type) 1144 + - Modify: `client/src/pages/settings.gleam:130-154` (Model type) 1145 + - Modify: `client/src/pages/settings.gleam:180-202` (init function) 1146 + 1147 + **Step 1: Add messages to Msg type (after line 128)** 1148 + 1149 + ```gleam 1150 + // External services configuration messages 1151 + UpdateRelayUrlInput(String) 1152 + SubmitRelayUrl 1153 + UpdatePlcDirectoryUrlInput(String) 1154 + SubmitPlcDirectoryUrl 1155 + UpdateJetstreamUrlInput(String) 1156 + SubmitJetstreamUrl 1157 + UpdateOAuthSupportedScopesInput(String) 1158 + SubmitOAuthSupportedScopes 1159 + ``` 1160 + 1161 + **Step 2: Add fields to Model type (after line 154)** 1162 + 1163 + ```gleam 1164 + // External services configuration state 1165 + relay_url_input: String, 1166 + plc_directory_url_input: String, 1167 + jetstream_url_input: String, 1168 + oauth_supported_scopes_input: String, 1169 + services_alert: Option(#(String, String)), 1170 + ``` 1171 + 1172 + **Step 3: Update init function (after line 202)** 1173 + 1174 + ```gleam 1175 + relay_url_input: "", 1176 + plc_directory_url_input: "", 1177 + jetstream_url_input: "", 1178 + oauth_supported_scopes_input: "", 1179 + services_alert: None, 1180 + ``` 1181 + 1182 + **Step 4: Add helper functions after clear_admin_alert** 1183 + 1184 + ```gleam 1185 + pub fn set_services_alert(model: Model, kind: String, message: String) -> Model { 1186 + Model(..model, services_alert: Some(#(kind, message))) 1187 + } 1188 + 1189 + pub fn clear_services_alert(model: Model) -> Model { 1190 + Model(..model, services_alert: None) 1191 + } 1192 + ``` 1193 + 1194 + **Step 5: Build to verify** 1195 + 1196 + ```bash 1197 + cd client 1198 + gleam build 1199 + ``` 1200 + 1201 + Expected: Success 1202 + 1203 + **Step 6: Commit** 1204 + 1205 + ```bash 1206 + git add client/src/pages/settings.gleam 1207 + git commit -m "feat(settings): add model fields for external services UI" 1208 + ``` 1209 + 1210 + --- 1211 + 1212 + ## Task 13: Update Frontend - External Services View Section 1213 + 1214 + **Files:** 1215 + - Modify: `client/src/pages/settings.gleam` (add new function after admin_management_section) 1216 + 1217 + **Step 1: Add external_services_section function** 1218 + 1219 + Add after admin_management_section function (around line 967): 1220 + ```gleam 1221 + fn external_services_section( 1222 + settings: get_settings.Settings, 1223 + model: Model, 1224 + is_saving: Bool, 1225 + ) -> Element(Msg) { 1226 + html.div( 1227 + [attribute.class("bg-zinc-800/50 rounded-lg p-6 border border-zinc-700")], 1228 + [ 1229 + html.h2([attribute.class("text-lg font-medium text-zinc-300 mb-4")], [ 1230 + element.text("External Services Configuration"), 1231 + ]), 1232 + html.p([attribute.class("text-sm text-zinc-500 mb-6")], [ 1233 + element.text( 1234 + "Configure URLs for external AT Protocol services. Changes take effect immediately.", 1235 + ), 1236 + ]), 1237 + // Alert message for this section 1238 + case model.services_alert { 1239 + Some(#(kind, message)) -> { 1240 + let alert_kind = case kind { 1241 + "success" -> alert.Success 1242 + "error" -> alert.Error 1243 + _ -> alert.Info 1244 + } 1245 + html.div([attribute.class("mb-4")], [alert.alert(alert_kind, message)]) 1246 + } 1247 + None -> element.none() 1248 + }, 1249 + // Relay URL 1250 + html.div([attribute.class("mb-6")], [ 1251 + html.label( 1252 + [attribute.class("block text-sm font-medium text-zinc-400 mb-2")], 1253 + [element.text("Relay URL")], 1254 + ), 1255 + html.p([attribute.class("text-xs text-zinc-500 mb-2")], [ 1256 + element.text("AT Protocol relay for backfill operations"), 1257 + ]), 1258 + html.div([attribute.class("flex gap-2")], [ 1259 + html.input([ 1260 + attribute.type_("text"), 1261 + attribute.class( 1262 + "flex-1 px-3 py-2 bg-zinc-900 border border-zinc-700 rounded text-zinc-300 text-sm font-mono", 1263 + ), 1264 + attribute.placeholder(settings.relay_url), 1265 + attribute.value(model.relay_url_input), 1266 + event.on_input(UpdateRelayUrlInput), 1267 + ]), 1268 + button.button( 1269 + disabled: is_saving || model.relay_url_input == "", 1270 + on_click: SubmitRelayUrl, 1271 + text: "Update", 1272 + ), 1273 + ]), 1274 + ]), 1275 + // PLC Directory URL 1276 + html.div([attribute.class("mb-6")], [ 1277 + html.label( 1278 + [attribute.class("block text-sm font-medium text-zinc-400 mb-2")], 1279 + [element.text("PLC Directory URL")], 1280 + ), 1281 + html.p([attribute.class("text-xs text-zinc-500 mb-2")], [ 1282 + element.text("PLC directory for DID resolution"), 1283 + ]), 1284 + html.div([attribute.class("flex gap-2")], [ 1285 + html.input([ 1286 + attribute.type_("text"), 1287 + attribute.class( 1288 + "flex-1 px-3 py-2 bg-zinc-900 border border-zinc-700 rounded text-zinc-300 text-sm font-mono", 1289 + ), 1290 + attribute.placeholder(settings.plc_directory_url), 1291 + attribute.value(model.plc_directory_url_input), 1292 + event.on_input(UpdatePlcDirectoryUrlInput), 1293 + ]), 1294 + button.button( 1295 + disabled: is_saving || model.plc_directory_url_input == "", 1296 + on_click: SubmitPlcDirectoryUrl, 1297 + text: "Update", 1298 + ), 1299 + ]), 1300 + ]), 1301 + // Jetstream URL 1302 + html.div([attribute.class("mb-6")], [ 1303 + html.label( 1304 + [attribute.class("block text-sm font-medium text-zinc-400 mb-2")], 1305 + [element.text("Jetstream URL")], 1306 + ), 1307 + html.p([attribute.class("text-xs text-zinc-500 mb-2")], [ 1308 + element.text("WebSocket endpoint (consumer restarts automatically)"), 1309 + ]), 1310 + html.div([attribute.class("flex gap-2")], [ 1311 + html.input([ 1312 + attribute.type_("text"), 1313 + attribute.class( 1314 + "flex-1 px-3 py-2 bg-zinc-900 border border-zinc-700 rounded text-zinc-300 text-sm font-mono", 1315 + ), 1316 + attribute.placeholder(settings.jetstream_url), 1317 + attribute.value(model.jetstream_url_input), 1318 + event.on_input(UpdateJetstreamUrlInput), 1319 + ]), 1320 + button.button( 1321 + disabled: is_saving || model.jetstream_url_input == "", 1322 + on_click: SubmitJetstreamUrl, 1323 + text: "Update", 1324 + ), 1325 + ]), 1326 + ]), 1327 + // OAuth Supported Scopes 1328 + html.div([attribute.class("mb-0")], [ 1329 + html.label( 1330 + [attribute.class("block text-sm font-medium text-zinc-400 mb-2")], 1331 + [element.text("OAuth Supported Scopes")], 1332 + ), 1333 + html.p([attribute.class("text-xs text-zinc-500 mb-2")], [ 1334 + element.text("Space-separated OAuth scopes (e.g., 'atproto transition:generic')"), 1335 + ]), 1336 + html.div([attribute.class("flex gap-2")], [ 1337 + html.input([ 1338 + attribute.type_("text"), 1339 + attribute.class( 1340 + "flex-1 px-3 py-2 bg-zinc-900 border border-zinc-700 rounded text-zinc-300 text-sm font-mono", 1341 + ), 1342 + attribute.placeholder(settings.oauth_supported_scopes), 1343 + attribute.value(model.oauth_supported_scopes_input), 1344 + event.on_input(UpdateOAuthSupportedScopesInput), 1345 + ]), 1346 + button.button( 1347 + disabled: is_saving || model.oauth_supported_scopes_input == "", 1348 + on_click: SubmitOAuthSupportedScopes, 1349 + text: "Update", 1350 + ), 1351 + ]), 1352 + ]), 1353 + ], 1354 + ) 1355 + } 1356 + ``` 1357 + 1358 + **Step 2: Update view function to include section** 1359 + 1360 + Find the sections rendering (around line 280-286) and add: 1361 + ```gleam 1362 + html.div([attribute.class("space-y-6")], [ 1363 + domain_authority_section(data.settings, model, is_saving), 1364 + external_services_section(data.settings, model, is_saving), // <- ADD THIS 1365 + lexicons_section(model), 1366 + oauth_clients_section(cache, model), 1367 + admin_management_section(data.settings, model), 1368 + danger_zone_section(model), 1369 + ]) 1370 + ``` 1371 + 1372 + **Step 3: Build to verify** 1373 + 1374 + ```bash 1375 + cd client 1376 + gleam build 1377 + ``` 1378 + 1379 + Expected: Success 1380 + 1381 + **Step 4: Commit** 1382 + 1383 + ```bash 1384 + git add client/src/pages/settings.gleam 1385 + git commit -m "feat(settings): add external services configuration UI section" 1386 + ``` 1387 + 1388 + --- 1389 + 1390 + ## Task 14: Update Frontend - Message Handlers 1391 + 1392 + **Files:** 1393 + - Modify: `client/src/pages/settings.gleam` (update function) 1394 + 1395 + **Step 1: Add UpdateRelayUrlInput handler** 1396 + 1397 + In the update function, add: 1398 + ```gleam 1399 + UpdateRelayUrlInput(value) -> { 1400 + #(Model(..model, relay_url_input: value), effect.none()) 1401 + } 1402 + ``` 1403 + 1404 + **Step 2: Add SubmitRelayUrl handler** 1405 + 1406 + ```gleam 1407 + SubmitRelayUrl -> { 1408 + let variables = 1409 + json.object([#("relayUrl", json.string(model.relay_url_input))]) 1410 + 1411 + #( 1412 + clear_services_alert(model) |> fn(m) { Model(..m, relay_url_input: "") }, 1413 + update_settings.execute(variables, fn(result) { 1414 + case result { 1415 + Ok(_) -> 1416 + set_services_alert(model, "success", "Relay URL updated successfully") 1417 + Error(err) -> 1418 + set_services_alert(model, "error", "Failed: " <> err) 1419 + } 1420 + }), 1421 + ) 1422 + } 1423 + ``` 1424 + 1425 + **Step 3: Add UpdatePlcDirectoryUrlInput handler** 1426 + 1427 + ```gleam 1428 + UpdatePlcDirectoryUrlInput(value) -> { 1429 + #(Model(..model, plc_directory_url_input: value), effect.none()) 1430 + } 1431 + ``` 1432 + 1433 + **Step 4: Add SubmitPlcDirectoryUrl handler** 1434 + 1435 + ```gleam 1436 + SubmitPlcDirectoryUrl -> { 1437 + let variables = 1438 + json.object([#("plcDirectoryUrl", json.string(model.plc_directory_url_input))]) 1439 + 1440 + #( 1441 + clear_services_alert(model) |> fn(m) { Model(..m, plc_directory_url_input: "") }, 1442 + update_settings.execute(variables, fn(result) { 1443 + case result { 1444 + Ok(_) -> 1445 + set_services_alert(model, "success", "PLC Directory URL updated successfully") 1446 + Error(err) -> 1447 + set_services_alert(model, "error", "Failed: " <> err) 1448 + } 1449 + }), 1450 + ) 1451 + } 1452 + ``` 1453 + 1454 + **Step 5: Add UpdateJetstreamUrlInput handler** 1455 + 1456 + ```gleam 1457 + UpdateJetstreamUrlInput(value) -> { 1458 + #(Model(..model, jetstream_url_input: value), effect.none()) 1459 + } 1460 + ``` 1461 + 1462 + **Step 6: Add SubmitJetstreamUrl handler** 1463 + 1464 + ```gleam 1465 + SubmitJetstreamUrl -> { 1466 + let variables = 1467 + json.object([#("jetstreamUrl", json.string(model.jetstream_url_input))]) 1468 + 1469 + #( 1470 + clear_services_alert(model) |> fn(m) { Model(..m, jetstream_url_input: "") }, 1471 + update_settings.execute(variables, fn(result) { 1472 + case result { 1473 + Ok(_) -> 1474 + set_services_alert( 1475 + model, 1476 + "success", 1477 + "Jetstream URL updated (consumer restarting)", 1478 + ) 1479 + Error(err) -> 1480 + set_services_alert(model, "error", "Failed: " <> err) 1481 + } 1482 + }), 1483 + ) 1484 + } 1485 + ``` 1486 + 1487 + **Step 7: Add UpdateOAuthSupportedScopesInput handler** 1488 + 1489 + ```gleam 1490 + UpdateOAuthSupportedScopesInput(value) -> { 1491 + #(Model(..model, oauth_supported_scopes_input: value), effect.none()) 1492 + } 1493 + ``` 1494 + 1495 + **Step 8: Add SubmitOAuthSupportedScopes handler** 1496 + 1497 + ```gleam 1498 + SubmitOAuthSupportedScopes -> { 1499 + let variables = 1500 + json.object([ 1501 + #("oauthSupportedScopes", json.string(model.oauth_supported_scopes_input)), 1502 + ]) 1503 + 1504 + #( 1505 + clear_services_alert(model) 1506 + |> fn(m) { Model(..m, oauth_supported_scopes_input: "") }, 1507 + update_settings.execute(variables, fn(result) { 1508 + case result { 1509 + Ok(_) -> 1510 + set_services_alert( 1511 + model, 1512 + "success", 1513 + "OAuth scopes updated successfully", 1514 + ) 1515 + Error(err) -> 1516 + set_services_alert(model, "error", "Failed: " <> err) 1517 + } 1518 + }), 1519 + ) 1520 + } 1521 + ``` 1522 + 1523 + **Step 9: Build to verify** 1524 + 1525 + ```bash 1526 + cd client 1527 + gleam build 1528 + ``` 1529 + 1530 + Expected: Success 1531 + 1532 + **Step 10: Commit** 1533 + 1534 + ```bash 1535 + git add client/src/pages/settings.gleam 1536 + git commit -m "feat(settings): add message handlers for external services" 1537 + ``` 1538 + 1539 + --- 1540 + 1541 + ## Task 15: Update Environment Documentation 1542 + 1543 + **Files:** 1544 + - Modify: `server/.env.example` 1545 + 1546 + **Step 1: Remove environment variable lines** 1547 + 1548 + Delete these lines: 1549 + ```bash 1550 + # Line 34: 1551 + JETSTREAM_URL=wss://jetstream2.us-east.bsky.network/subscribe 1552 + 1553 + # Lines 44-45: 1554 + RELAY_URL=https://relay1.us-west.bsky.network 1555 + PLC_DIRECTORY_URL=https://plc.directory 1556 + 1557 + # Line 22 (if uncommented): 1558 + # OAUTH_SUPPORTED_SCOPES=atproto transition:generic 1559 + ``` 1560 + 1561 + **Step 2: Add migration note** 1562 + 1563 + Add at the end of the file: 1564 + ```bash 1565 + # External Services Configuration (Migrated to Database) 1566 + # These settings are now configured via the Settings UI (/settings) 1567 + # Defaults: 1568 + # - Relay URL: https://relay1.us-west.bsky.network 1569 + # - PLC Directory URL: https://plc.directory 1570 + # - Jetstream URL: wss://jetstream2.us-east.bsky.network/subscribe 1571 + # - OAuth Supported Scopes: atproto transition:generic 1572 + ``` 1573 + 1574 + **Step 3: Commit** 1575 + 1576 + ```bash 1577 + git add server/.env.example 1578 + git commit -m "docs: document external services migration to database" 1579 + ``` 1580 + 1581 + --- 1582 + 1583 + ## Task 16: End-to-End Testing 1584 + 1585 + **Step 1: Start fresh server** 1586 + 1587 + ```bash 1588 + cd server 1589 + gleam run 1590 + ``` 1591 + 1592 + Expected: Server starts successfully with no config cache actor 1593 + 1594 + **Step 2: Open settings page** 1595 + 1596 + Navigate to: http://localhost:8080/settings 1597 + 1598 + Expected: New "External Services Configuration" section appears 1599 + 1600 + **Step 3: Verify defaults in placeholders** 1601 + 1602 + Expected placeholders: 1603 + - Relay URL: `https://relay1.us-west.bsky.network` 1604 + - PLC Directory URL: `https://plc.directory` 1605 + - Jetstream URL: `wss://jetstream2.us-east.bsky.network/subscribe` 1606 + - OAuth Scopes: `atproto transition:generic` 1607 + 1608 + **Step 4: Update relay URL** 1609 + 1610 + Enter: `https://relay.test.com` 1611 + Click "Update" 1612 + 1613 + Expected: Success message "Relay URL updated successfully" 1614 + 1615 + **Step 5: Verify GraphQL query returns new value** 1616 + 1617 + Query in GraphiQL: 1618 + ```graphql 1619 + query { 1620 + settings { 1621 + relayUrl 1622 + } 1623 + } 1624 + ``` 1625 + 1626 + Expected: Returns `"https://relay.test.com"` 1627 + 1628 + **Step 6: Test Jetstream URL update and restart** 1629 + 1630 + Enter: `wss://jetstream.test.com/subscribe` 1631 + Click "Update" 1632 + 1633 + Expected: 1634 + - Success message "Jetstream URL updated (consumer restarting)" 1635 + - Server logs show: `[updateSettings] Restarting Jetstream consumer due to URL change` 1636 + 1637 + **Step 7: Test OAuth scope validation** 1638 + 1639 + Enter invalid scopes: `invalid scope format` 1640 + Click "Update" 1641 + 1642 + Expected: Error message with validation failure 1643 + 1644 + **Step 8: Test valid OAuth scopes** 1645 + 1646 + Enter: `atproto transition:generic repo:test` 1647 + Click "Update" 1648 + 1649 + Expected: Success message "OAuth scopes updated successfully" 1650 + 1651 + **Step 9: Verify no config.gleam references** 1652 + 1653 + ```bash 1654 + cd server 1655 + grep -r "import config" src/ --include="*.gleam" | grep -v "config_repo" 1656 + ``` 1657 + 1658 + Expected: No results (or only false positives like comments) 1659 + 1660 + **Step 10: Verify Context has no removed fields** 1661 + 1662 + ```bash 1663 + grep -n "plc_url\|oauth_supported_scopes" server/src/server.gleam 1664 + ``` 1665 + 1666 + Expected: No matches in Context type 1667 + 1668 + --- 1669 + 1670 + ## Testing Complete 1671 + 1672 + All tasks implemented and tested. The config cache actor has been removed, environment variables migrated to database, and the Settings UI now provides full control over external service configuration. 1673 + 1674 + **Final verification checklist:** 1675 + - ✅ Config cache actor deleted 1676 + - ✅ Four settings stored in database with defaults 1677 + - ✅ GraphQL API extended with four fields 1678 + - ✅ Settings UI has new section 1679 + - ✅ Jetstream consumer restarts on URL change 1680 + - ✅ OAuth scope validation works 1681 + - ✅ Changes take effect immediately 1682 + - ✅ Environment variables removed from .env.example
+7 -11
server/.env.example
··· 16 16 # Set to "true" for local development, leave unset for production 17 17 # OAUTH_LOOPBACK_MODE=true 18 18 19 - # OAuth Supported Scopes - space-separated list of OAuth scopes to request 20 - # Used in loopback client IDs and client metadata 21 - # Defaults to "atproto transition:generic" if not set 22 - # OAUTH_SUPPORTED_SCOPES=atproto transition:generic 23 - 24 19 # Server Configuration 25 20 # HOST: The interface to bind to (use 0.0.0.0 for Docker, 127.0.0.1 for local dev) 26 21 HOST=127.0.0.1 ··· 30 25 # Database Configuration 31 26 DATABASE_URL=quickslice.db 32 27 33 - # Jetstream Configuration 34 - JETSTREAM_URL=wss://jetstream2.us-east.bsky.network/subscribe 35 - 36 28 # Jetstream Cursor Tracking 37 29 # When enabled (default), the server tracks the Jetstream cursor and resumes from the last 38 30 # position on restart. This ensures no events are missed during deployments or restarts. ··· 40 32 # backfilling events from previous sessions). 41 33 # JETSTREAM_DISABLE_CURSOR=false 42 34 43 - # Backfill Configuration 44 - RELAY_URL=https://relay1.us-west.bsky.network 45 - PLC_DIRECTORY_URL=https://plc.directory 35 + # External Services Configuration (Migrated to Database) 36 + # These settings are now configured via the Settings UI (/settings) 37 + # Defaults: 38 + # - Relay URL: https://relay1.us-west.bsky.network 39 + # - PLC Directory URL: https://plc.directory 40 + # - Jetstream URL: wss://jetstream2.us-west.bsky.network/subscribe 41 + # - OAuth Supported Scopes: atproto transition:generic
+41 -33
server/priv/static/quickslice_client.js
··· 1 - var nb=Object.defineProperty;var rj=(Z,J)=>{for(var K in J)nb(Z,K,{get:J[K],enumerable:!0,configurable:!0,set:(Y)=>J[K]=()=>Y})};class O{withFields(Z){let J=Object.keys(this).map((K)=>(K in Z)?Z[K]:this[K]);return new this.constructor(...J)}}class i0{static fromArray(Z,J){let K=J||new U;for(let Y=Z.length-1;Y>=0;--Y)K=new M1(Z[Y],K);return K}[Symbol.iterator](){return new oj(this)}toArray(){return[...this]}atLeastLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return J!==void 0}hasLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return Z===-1&&J instanceof U}countLength(){let Z=this,J=0;while(Z)Z=Z.tail,J++;return J-1}}function C(Z,J){return new M1(Z,J)}function Q(Z,J){return i0.fromArray(Z,J)}class oj{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof U)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class U extends i0{}class M1 extends i0{constructor(Z,J){super();this.head=Z,this.tail=J}}var ej=(Z)=>Z instanceof M1,ZL=(Z)=>Z.head,JL=(Z)=>Z.tail;class NZ{bitSize;byteSize;bitOffset;rawBuffer;constructor(Z,J,K){if(!(Z instanceof Uint8Array))throw globalThis.Error("BitArray can only be constructed from a Uint8Array");if(this.bitSize=J??Z.length*8,this.byteSize=Math.trunc((this.bitSize+7)/8),this.bitOffset=K??0,this.bitSize<0)throw globalThis.Error(`BitArray bit size is invalid: ${this.bitSize}`);if(this.bitOffset<0||this.bitOffset>7)throw globalThis.Error(`BitArray bit offset is invalid: ${this.bitOffset}`);if(Z.length!==Math.trunc((this.bitOffset+this.bitSize+7)/8))throw globalThis.Error("BitArray buffer length is invalid");this.rawBuffer=Z}byteAt(Z){if(Z<0||Z>=this.byteSize)return;return zZ(this.rawBuffer,this.bitOffset,Z)}equals(Z){if(this.bitSize!==Z.bitSize)return!1;let J=Math.trunc(this.bitSize/8);if(this.bitOffset===0&&Z.bitOffset===0){for(let Y=0;Y<J;Y++)if(this.rawBuffer[Y]!==Z.rawBuffer[Y])return!1;let K=this.bitSize%8;if(K){let Y=8-K;if(this.rawBuffer[J]>>Y!==Z.rawBuffer[J]>>Y)return!1}}else{for(let Y=0;Y<J;Y++){let X=zZ(this.rawBuffer,this.bitOffset,Y),W=zZ(Z.rawBuffer,Z.bitOffset,Y);if(X!==W)return!1}let K=this.bitSize%8;if(K){let Y=zZ(this.rawBuffer,this.bitOffset,J),X=zZ(Z.rawBuffer,Z.bitOffset,J),W=8-K;if(Y>>W!==X>>W)return!1}}return!0}get buffer(){if(aj("buffer","Use BitArray.byteAt() or BitArray.rawBuffer instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.buffer does not support unaligned bit arrays");return this.rawBuffer}get length(){if(aj("length","Use BitArray.bitSize or BitArray.byteSize instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.length does not support unaligned bit arrays");return this.rawBuffer.length}}function zZ(Z,J,K){if(J===0)return Z[K]??0;else{let Y=Z[K]<<J&255,X=Z[K+1]>>8-J;return Y|X}}class PM{constructor(Z){this.value=Z}}var sj={};function aj(Z,J){if(sj[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),sj[Z]=!0}class g5 extends O{static isResult(Z){return Z instanceof g5}}class E extends g5{constructor(Z){super();this[0]=Z}isOk(){return!0}}var KL=(Z)=>new E(Z);class v extends g5{constructor(Z){super();this[0]=Z}isOk(){return!1}}var YL=(Z)=>new v(Z);function O0(Z,J){let K=[Z,J];while(K.length){let Y=K.pop(),X=K.pop();if(Y===X)continue;if(!tj(Y)||!tj(X))return!1;if(!eb(Y,X)||ib(Y,X)||rb(Y,X)||sb(Y,X)||ab(Y,X)||tb(Y,X)||ob(Y,X))return!1;let V=Object.getPrototypeOf(Y);if(V!==null&&typeof V.equals==="function")try{if(Y.equals(X))continue;else return!1}catch{}let[G,I]=lb(Y),z=G(Y),N=G(X);if(z.length!==N.length)return!1;for(let F of z)K.push(I(Y,F),I(X,F))}return!0}function lb(Z){if(Z instanceof Map)return[(J)=>J.keys(),(J,K)=>J.get(K)];else{let J=Z instanceof globalThis.Error?["message"]:[];return[(K)=>[...J,...Object.keys(K)],(K,Y)=>K[Y]]}}function ib(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function rb(Z,J){return!(Z instanceof NZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,Y)=>K===J[Y]))}function sb(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function ab(Z,J){return Z instanceof Map&&Z.size!==J.size}function tb(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function ob(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function tj(Z){return typeof Z==="object"&&Z!==null}function eb(Z,J){if(typeof Z!=="object"&&typeof J!=="object"&&(!Z||!J))return!1;if([Promise,WeakSet,WeakMap,Function].some((Y)=>Z instanceof Y))return!1;return Z.constructor===J.constructor}function WJ(Z,J){if(J===0)return 0;else return Z/J}function g8(Z,J,K,Y,X,W,V){let G=new globalThis.Error(W);G.gleam_error=Z,G.file=J,G.module=K,G.line=Y,G.function=X,G.fn=X;for(let I in V)G[I]=V[I];return G}class r0 extends O{}class s0 extends O{}class A8 extends O{}class L extends O{constructor(Z){super();this[0]=Z}}class h extends O{}function SM(Z,J){if(Z instanceof L){let K=Z[0];return new E(K)}else return new v(J)}function AM(Z){if(Z instanceof E){let J=Z[0];return new L(J)}else return new h}function XL(Z,J){if(Z instanceof L)return Z[0];else return J}function qM(Z,J){if(Z instanceof L){let K=Z[0];return J(K)}else return Z}var WL=new WeakMap,EM=new DataView(new ArrayBuffer(8)),CM=0;function xM(Z){let J=WL.get(Z);if(J!==void 0)return J;let K=CM++;if(CM===2147483647)CM=0;return WL.set(Z,K),K}function wM(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function MM(Z){let J=0,K=Z.length;for(let Y=0;Y<K;Y++)J=Math.imul(31,J)+Z.charCodeAt(Y)|0;return J}function VL(Z){EM.setFloat64(0,Z);let J=EM.getInt32(0),K=EM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function Zv(Z){return MM(Z.toString())}function Jv(Z){let J=Object.getPrototypeOf(Z);if(J!==null&&typeof J.hashCode==="function")try{let Y=Z.hashCode(Z);if(typeof Y==="number")return Y}catch{}if(Z instanceof Promise||Z instanceof WeakSet||Z instanceof WeakMap)return xM(Z);if(Z instanceof Date)return VL(Z.getTime());let K=0;if(Z instanceof ArrayBuffer)Z=new Uint8Array(Z);if(Array.isArray(Z)||Z instanceof Uint8Array)for(let Y=0;Y<Z.length;Y++)K=Math.imul(31,K)+$1(Z[Y])|0;else if(Z instanceof Set)Z.forEach((Y)=>{K=K+$1(Y)|0});else if(Z instanceof Map)Z.forEach((Y,X)=>{K=K+wM($1(Y),$1(X))|0});else{let Y=Object.keys(Z);for(let X=0;X<Y.length;X++){let W=Y[X],V=Z[W];K=K+wM($1(V),MM(W))|0}}return K}function $1(Z){if(Z===null)return 1108378658;if(Z===void 0)return 1108378659;if(Z===!0)return 1108378657;if(Z===!1)return 1108378656;switch(typeof Z){case"number":return VL(Z);case"string":return MM(Z);case"bigint":return Zv(Z);case"object":return Jv(Z);case"symbol":return xM(Z);case"function":return xM(Z);default:return 0}}var W8=5,RM=Math.pow(2,W8),Kv=RM-1,Yv=RM/2,Xv=RM/4,F1=0,X8=1,R1=2,I5=3,jM={type:R1,bitmap:0,array:[]};function FZ(Z,J){return Z>>>J&Kv}function VJ(Z,J){return 1<<FZ(Z,J)}function Wv(Z){return Z-=Z>>1&1431655765,Z=(Z&858993459)+(Z>>2&858993459),Z=Z+(Z>>4)&252645135,Z+=Z>>8,Z+=Z>>16,Z&127}function LM(Z,J){return Wv(Z&J-1)}function g1(Z,J,K){let Y=Z.length,X=Array(Y);for(let W=0;W<Y;++W)X[W]=Z[W];return X[J]=K,X}function Qv(Z,J,K){let Y=Z.length,X=Array(Y+1),W=0,V=0;while(W<J)X[V++]=Z[W++];X[V++]=K;while(W<Y)X[V++]=Z[W++];return X}function UM(Z,J){let K=Z.length,Y=Array(K-1),X=0,W=0;while(X<J)Y[W++]=Z[X++];++X;while(X<K)Y[W++]=Z[X++];return Y}function GL(Z,J,K,Y,X,W){let V=$1(J);if(V===Y)return{type:I5,hash:V,array:[{type:F1,k:J,v:K},{type:F1,k:X,v:W}]};let G={val:!1};return HZ(yM(jM,Z,V,J,K,G),Z,Y,X,W,G)}function HZ(Z,J,K,Y,X,W){switch(Z.type){case X8:return Vv(Z,J,K,Y,X,W);case R1:return yM(Z,J,K,Y,X,W);case I5:return Gv(Z,J,K,Y,X,W)}}function Vv(Z,J,K,Y,X,W){let V=FZ(K,J),G=Z.array[V];if(G===void 0)return W.val=!0,{type:X8,size:Z.size+1,array:g1(Z.array,V,{type:F1,k:Y,v:X})};if(G.type===F1){if(O0(Y,G.k)){if(X===G.v)return Z;return{type:X8,size:Z.size,array:g1(Z.array,V,{type:F1,k:Y,v:X})}}return W.val=!0,{type:X8,size:Z.size,array:g1(Z.array,V,GL(J+W8,G.k,G.v,K,Y,X))}}let I=HZ(G,J+W8,K,Y,X,W);if(I===G)return Z;return{type:X8,size:Z.size,array:g1(Z.array,V,I)}}function yM(Z,J,K,Y,X,W){let V=VJ(K,J),G=LM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==F1){let N=HZ(I,J+W8,K,Y,X,W);if(N===I)return Z;return{type:R1,bitmap:Z.bitmap,array:g1(Z.array,G,N)}}let z=I.k;if(O0(Y,z)){if(X===I.v)return Z;return{type:R1,bitmap:Z.bitmap,array:g1(Z.array,G,{type:F1,k:Y,v:X})}}return W.val=!0,{type:R1,bitmap:Z.bitmap,array:g1(Z.array,G,GL(J+W8,z,I.v,K,Y,X))}}else{let I=Z.array.length;if(I>=Yv){let z=Array(32),N=FZ(K,J);z[N]=yM(jM,J+W8,K,Y,X,W);let F=0,D=Z.bitmap;for(let B=0;B<32;B++){if((D&1)!==0){let P=Z.array[F++];z[B]=P}D=D>>>1}return{type:X8,size:I+1,array:z}}else{let z=Qv(Z.array,G,{type:F1,k:Y,v:X});return W.val=!0,{type:R1,bitmap:Z.bitmap|V,array:z}}}}function Gv(Z,J,K,Y,X,W){if(K===Z.hash){let V=fM(Z,Y);if(V!==-1){if(Z.array[V].v===X)return Z;return{type:I5,hash:K,array:g1(Z.array,V,{type:F1,k:Y,v:X})}}let G=Z.array.length;return W.val=!0,{type:I5,hash:K,array:g1(Z.array,G,{type:F1,k:Y,v:X})}}return HZ({type:R1,bitmap:VJ(Z.hash,J),array:[Z]},J,K,Y,X,W)}function fM(Z,J){let K=Z.array.length;for(let Y=0;Y<K;Y++)if(O0(J,Z.array[Y].k))return Y;return-1}function QJ(Z,J,K,Y){switch(Z.type){case X8:return Iv(Z,J,K,Y);case R1:return zv(Z,J,K,Y);case I5:return Nv(Z,Y)}}function Iv(Z,J,K,Y){let X=FZ(K,J),W=Z.array[X];if(W===void 0)return;if(W.type!==F1)return QJ(W,J+W8,K,Y);if(O0(Y,W.k))return W;return}function zv(Z,J,K,Y){let X=VJ(K,J);if((Z.bitmap&X)===0)return;let W=LM(Z.bitmap,X),V=Z.array[W];if(V.type!==F1)return QJ(V,J+W8,K,Y);if(O0(Y,V.k))return V;return}function Nv(Z,J){let K=fM(Z,J);if(K<0)return;return Z.array[K]}function kM(Z,J,K,Y){switch(Z.type){case X8:return Fv(Z,J,K,Y);case R1:return Hv(Z,J,K,Y);case I5:return Dv(Z,Y)}}function Fv(Z,J,K,Y){let X=FZ(K,J),W=Z.array[X];if(W===void 0)return Z;let V=void 0;if(W.type===F1){if(!O0(W.k,Y))return Z}else if(V=kM(W,J+W8,K,Y),V===W)return Z;if(V===void 0){if(Z.size<=Xv){let G=Z.array,I=Array(Z.size-1),z=0,N=0,F=0;while(z<X){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}++z;while(z<G.length){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}return{type:R1,bitmap:F,array:I}}return{type:X8,size:Z.size-1,array:g1(Z.array,X,V)}}return{type:X8,size:Z.size,array:g1(Z.array,X,V)}}function Hv(Z,J,K,Y){let X=VJ(K,J);if((Z.bitmap&X)===0)return Z;let W=LM(Z.bitmap,X),V=Z.array[W];if(V.type!==F1){let G=kM(V,J+W8,K,Y);if(G===V)return Z;if(G!==void 0)return{type:R1,bitmap:Z.bitmap,array:g1(Z.array,W,G)};if(Z.bitmap===X)return;return{type:R1,bitmap:Z.bitmap^X,array:UM(Z.array,W)}}if(O0(Y,V.k)){if(Z.bitmap===X)return;return{type:R1,bitmap:Z.bitmap^X,array:UM(Z.array,W)}}return Z}function Dv(Z,J){let K=fM(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:I5,hash:Z.hash,array:UM(Z.array,K)}}function IL(Z,J){if(Z===void 0)return;let K=Z.array,Y=K.length;for(let X=0;X<Y;X++){let W=K[X];if(W===void 0)continue;if(W.type===F1){J(W.v,W.k);continue}IL(W,J)}}class Z1{static fromObject(Z){let J=Object.keys(Z),K=Z1.new();for(let Y=0;Y<J.length;Y++){let X=J[Y];K=K.set(X,Z[X])}return K}static fromMap(Z){let J=Z1.new();return Z.forEach((K,Y)=>{J=J.set(Y,K)}),J}static new(){return new Z1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=QJ(this.root,0,$1(Z),Z);if(K===void 0)return J;return K.v}set(Z,J){let K={val:!1},Y=this.root===void 0?jM:this.root,X=HZ(Y,0,$1(Z),Z,J,K);if(X===this.root)return this;return new Z1(X,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=kM(this.root,0,$1(Z),Z);if(J===this.root)return this;if(J===void 0)return Z1.new();return new Z1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return QJ(this.root,0,$1(Z),Z)!==void 0}entries(){if(this.root===void 0)return[];let Z=[];return this.forEach((J,K)=>Z.push([K,J])),Z}forEach(Z){IL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+wM($1(J),$1(K))|0}),Z}equals(Z){if(!(Z instanceof Z1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!O0(Z.get(K,!J),J))throw QL}),!0}catch(J){if(J===QL)return!1;throw J}}}var QL=Symbol();function bM(Z){return GJ(Z)===0}function Bv(Z,J){return!O0(F0(J,Z),new v(void 0))}function zL(Z,J){return Bv(J,Z)}function c0(Z,J,K){return FL(J,K,Z)}function Ov(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else{let X=K.head;Z=K.tail,J=C(X,Y)}}}function Tv(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Ov(Y,Q([]));else{let X=K.tail,W=K.head[0];Z=X,J=C(W,Y)}}}function q8(Z){return Tv(m8(Z),Q([]))}function Q8(Z,J){return NL(J,Z)}function Pv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return X;else{let V=Y.tail,G=Y.head[0],I=Y.head[1];Z=V,J=W(X,G,I),K=W}}}function _5(Z,J,K){return Pv(m8(Z),J,K)}class X1 extends O{}class m5 extends O{}function Av(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else Z=K.tail,J=Y+1}}function V8(Z){return Av(Z,0)}function z5(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else{let X=K.head;Z=K.tail,J=C(X,Y)}}}function G0(Z){return z5(Z,Q([]))}function HL(Z){return O0(Z,Q([]))}function vM(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return!1;else{let X=K.head;if(O0(X,Y))return!0;else Z=K.tail,J=Y}}}function DL(Z){if(Z instanceof U)return new v(void 0);else{let J=Z.head;return new E(J)}}function qv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let{head:V,tail:G}=Y,I;if(X(V))I=C(V,W);else I=W;let N=I;Z=G,J=X,K=N}}}function IJ(Z,J){return qv(Z,J,Q([]))}function Ev(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let{head:V,tail:G}=Y,I,z=X(V);if(z instanceof E){let F=z[0];I=C(F,W)}else I=W;let N=I;Z=G,J=X,K=N}}}function u5(Z,J){return Ev(Z,J,Q([]))}function Cv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let V=Y.head;Z=Y.tail,J=X,K=C(X(V),W)}}}function I0(Z,J){return Cv(Z,J,Q([]))}function xv(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(X instanceof U)return G0(G);else{let{head:I,tail:z}=X,N=C(W(I,V),G);Z=z,J=W,K=V+1,Y=N}}}function zJ(Z,J){return xv(Z,J,0,Q([]))}function d5(Z,J){while(!0){let K=Z,Y=J;if(Y<=0)return K;else if(K instanceof U)return K;else Z=K.tail,J=Y-1}}function wv(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else{let X=K.head;Z=K.tail,J=C(X,Y)}}}function k0(Z,J){return wv(G0(Z),J)}function NJ(Z,J){return C(J,Z)}function Uv(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return G0(Y);else{let X=K.head;Z=K.tail,J=z5(X,Y)}}}function BL(Z){return Uv(Z,Q([]))}function j0(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return X;else{let V=Y.head;Z=Y.tail,J=W(X,V),K=W}}}function hM(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return new v(void 0);else{let{head:X,tail:W}=K;if(Y(X))return new E(X);else Z=W,J=Y}}}function $M(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return new v(void 0);else{let{head:X,tail:W}=K,V=Y(X);if(V instanceof E)return V;else Z=W,J=Y}}}function Mv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let{head:V,tail:G}=Y;if(zL(X,V))Z=G,J=X,K=W;else Z=G,J=c0(X,V,void 0),K=C(V,W)}}}function OL(Z){return Mv(Z,R0(),Q([]))}function Rv(Z,J,K,Y,X,W){while(!0){let V=Z,G=J,I=K,z=Y,N=X,F=W,D=C(N,I);if(V instanceof U)if(z instanceof X1)return C(G0(D),F);else return C(D,F);else{let{head:B,tail:P}=V,T=G(N,B);if(z instanceof X1)if(T instanceof r0)Z=P,J=G,K=D,Y=z,X=B,W=F;else if(T instanceof s0)Z=P,J=G,K=D,Y=z,X=B,W=F;else{let S;if(z instanceof X1)S=C(G0(D),F);else S=C(D,F);let A=S;if(P instanceof U)return C(Q([B]),A);else{let{head:q,tail:j}=P,f,x=G(B,q);if(x instanceof r0)f=new X1;else if(x instanceof s0)f=new X1;else f=new m5;let y=f;Z=j,J=G,K=Q([B]),Y=y,X=q,W=A}}else if(T instanceof r0){let S;if(z instanceof X1)S=C(G0(D),F);else S=C(D,F);let A=S;if(P instanceof U)return C(Q([B]),A);else{let{head:q,tail:j}=P,f,x=G(B,q);if(x instanceof r0)f=new X1;else if(x instanceof s0)f=new X1;else f=new m5;let y=f;Z=j,J=G,K=Q([B]),Y=y,X=q,W=A}}else if(T instanceof s0){let S;if(z instanceof X1)S=C(G0(D),F);else S=C(D,F);let A=S;if(P instanceof U)return C(Q([B]),A);else{let{head:q,tail:j}=P,f,x=G(B,q);if(x instanceof r0)f=new X1;else if(x instanceof s0)f=new X1;else f=new m5;let y=f;Z=j,J=G,K=Q([B]),Y=y,X=q,W=A}}else Z=P,J=G,K=D,Y=z,X=B,W=F}}}function jv(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(X instanceof U)return z5(W,G);else if(W instanceof U)return z5(X,G);else{let{head:I,tail:z}=X,N=W.head,F=W.tail,D=V(I,N);if(D instanceof r0)Z=z,J=W,K=V,Y=C(I,G);else if(D instanceof s0)Z=X,J=F,K=V,Y=C(N,G);else Z=X,J=F,K=V,Y=C(N,G)}}}function Lv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let V=Y.tail;if(V instanceof U){let G=Y.head;return G0(C(G0(G),W))}else{let G=Y.head,I=V.head,z=V.tail,N=jv(G,I,X,Q([]));Z=z,J=X,K=C(N,W)}}}}function yv(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(X instanceof U)return z5(W,G);else if(W instanceof U)return z5(X,G);else{let{head:I,tail:z}=X,N=W.head,F=W.tail,D=V(I,N);if(D instanceof r0)Z=X,J=F,K=V,Y=C(N,G);else if(D instanceof s0)Z=z,J=W,K=V,Y=C(I,G);else Z=z,J=W,K=V,Y=C(I,G)}}}function fv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return G0(W);else{let V=Y.tail;if(V instanceof U){let G=Y.head;return G0(C(G0(G),W))}else{let G=Y.head,I=V.head,z=V.tail,N=yv(G,I,X,Q([]));Z=z,J=X,K=C(N,W)}}}}function kv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return Y;else if(X instanceof X1)if(Y.tail instanceof U)return Y.head;else Z=Lv(Y,W,Q([])),J=new m5,K=W;else if(Y.tail instanceof U){let G=Y.head;return G0(G)}else Z=fv(Y,W,Q([])),J=new X1,K=W}}function gM(Z,J){if(Z instanceof U)return Z;else{let K=Z.tail;if(K instanceof U)return Z;else{let Y=Z.head,X=K.head,W=K.tail,V,G=J(Y,X);if(G instanceof r0)V=new X1;else if(G instanceof s0)V=new X1;else V=new m5;let I=V,z=Rv(W,J,Q([Y]),I,X,Q([]));return kv(z,new X1,J)}}}function bv(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(X instanceof U)return G0(C([W,V],G));else{let I=X.head[0];if(O0(I,W)){let z=X.tail;return z5(G,C([I,V],z))}else{let z=X.head;Z=X.tail,J=W,K=V,Y=C(z,G)}}}}function _M(Z,J,K){return bv(Z,J,K,Q([]))}function TL(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return;else{let{head:X,tail:W}=K;Y(X),Z=W,J=Y}}}function PL(Z,J){if(Z instanceof U)return new v(void 0);else{let{head:K,tail:Y}=Z;return new E(j0(Y,K,J))}}class d8 extends O{constructor(Z,J,K){super();this.expected=Z,this.found=J,this.path=K}}class j1 extends O{constructor(Z){super();this.function=Z}}function W0(Z,J){let K=J.function(Z),Y,X;if(Y=K[0],X=K[1],X instanceof U)return new E(Y);else return new v(X)}function i(Z){return new j1((J)=>{return[Z,Q([])]})}function $v(Z){return[Z,Q([])]}function DZ(Z,J){return new j1((K)=>{let Y=Z.function(K),X,W;return X=Y[0],W=Y[1],[J(X),W]})}function gv(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(W instanceof U)return X;else{let{head:V,tail:G}=W,I=V.function(Y),z,N;if(z=I,N=I[1],N instanceof U)return z;else Z=Y,J=X,K=G}}}function qL(Z,J){return new j1((K)=>{let Y=Z.function(K),X,W;if(X=Y,W=Y[1],W instanceof U)return X;else return gv(K,X,J)})}function S1(Z){return new j1((J)=>{if(LL(J))return[new h,Q([])];else{let Y=Z.function(J),X,W;return X=Y[0],W=Y[1],[new L(X),W]}})}var C0=new j1($v);function EL(Z,J){return Q([new d8(Z,u8(J),Q([]))])}function uM(Z,J,K){let Y=K(Z);if(Y instanceof E)return[Y[0],Q([])];else return[Y[0],Q([new d8(J,u8(Z),Q([]))])]}function _v(Z){if(O0(V0(!0),Z))return[!0,Q([])];else if(O0(V0(!1),Z))return[!1,Q([])];else return[!1,EL("Bool",Z)]}function mv(Z){return uM(Z,"Int",RL)}function uv(Z){return uM(Z,"Float",ML)}var W1=new j1(_v),d0=new j1(mv),CL=new j1(uv);function dv(Z){return uM(Z,"String",jL)}var u=new j1(dv);function cv(Z,J,K,Y,X){let W=Y(J),V=W[1];if(V instanceof U){let G=W[0],I=X(K),z=I[1];if(z instanceof U){let N=I[0];return[c0(Z[0],G,N),Z[1]]}else{let N=z;return c5([R0(),N],Q(["values"]))}}else{let G=V;return c5([R0(),G],Q(["keys"]))}}function E8(Z,J){return new j1((K)=>{let Y=UL(K);if(Y instanceof E){let X=Y[0];return _5(X,[R0(),Q([])],(W,V,G)=>{if(W[1]instanceof U)return cv(W,V,G,Z.function,J.function);else return W})}else return[R0(),EL("Dict",K)]})}function E0(Z){return new j1((J)=>{return wL(J,Z.function,(K,Y)=>{return c5(K,Q([Y]))},0,Q([]))})}function c5(Z,J){let K=qL(u,Q([(()=>{return DZ(d0,J1)})()])),Y=I0(J,(W)=>{let V=V0(W),G=W0(V,K);if(G instanceof E)return G[0];else return"<"+u8(V)+">"}),X=I0(Z[1],(W)=>{return new d8(W.expected,W.found,k0(Y,W.path))});return[Z[0],X]}function pv(Z,J,K,Y,X){while(!0){let W=Z,V=J,G=K,I=Y,z=X;if(W instanceof U){let F=G(I);return c5(F,G0(V))}else{let{head:N,tail:F}=W,D=xL(I,N);if(D instanceof E){let B=D[0];if(B instanceof L){let P=B[0];Z=F,J=C(N,V),K=G,Y=P,X=z}else return z(I,C(N,V))}else{let B=D[0],P=G(I),T;T=P[0];let S=[T,Q([new d8(B,u8(I),Q([]))])];return c5(S,G0(V))}}}}function FJ(Z,J,K){return new j1((Y)=>{let X=pv(Z,Q([]),J.function,Y,(N,F)=>{let D=J.function(N),B;B=D[0];let P=[B,Q([new d8("Field","Nothing",Q([]))])];return c5(P,G0(F))}),W,V;W=X[0],V=X[1];let G=K(W).function(Y),I,z;return I=G[0],z=G[1],[I,k0(V,z)]})}function g(Z,J,K){return FJ(Q([Z]),J,K)}var cM=void 0,yL={};function V0(Z){return Z}function J1(Z){return Z.toString()}function t1(Z){if(Z==="")return 0;let J=HJ(Z);if(J){let K=0;for(let Y of J)K++;return K}else return Z.match(/./gsu).length}function BZ(Z){let J=HJ(Z);if(J)return i0.fromArray(Array.from(J).map((K)=>K.segment));else return i0.fromArray(Z.match(/./gsu))}var fL=void 0;function HJ(Z){if(globalThis.Intl&&Intl.Segmenter)return fL||=new Intl.Segmenter,fL.segment(Z)[Symbol.iterator]()}function DJ(Z){let J,K=HJ(Z);if(K)J=K.next().value?.segment;else J=Z.match(/./su)?.[0];if(J)return new E([J,Z.slice(J.length)]);else return new v(cM)}function N5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function m1(Z){return Z.toLowerCase()}function BJ(Z){return Z.toUpperCase()}function pM(Z,J){return i0.fromArray(Z.split(J))}function nM(Z,J,K){if(K<=0||J>=Z.length)return"";let Y=HJ(Z);if(Y){while(J-- >0)Y.next();let X="";while(K-- >0){let W=Y.next().value;if(W===void 0)break;X+=W.segment}return X}else return Z.match(/./gsu).slice(J,J+K).join("")}function Q1(Z,J,K){return Z.slice(J,J+K)}function p5(Z,J){return Z.startsWith(J)}function OJ(Z,J){return Z.endsWith(J)}function n5(Z,J){let K=Z.indexOf(J);if(K>=0){let Y=Z.slice(0,K),X=Z.slice(K+J.length);return new E([Y,X])}else return new v(cM)}var vL=[" ","\t",` 2 - `,"\v","\f","\r","…","\u2028","\u2029"].join(""),lv=new RegExp(`^[${vL}]*`),iv=new RegExp(`[${vL}]*$`);function hL(Z){return Z.replace(lv,"")}function lM(Z){return Z.replace(iv,"")}function F5(Z){console.log(Z)}function R0(){return Z1.new()}function GJ(Z){return Z.size}function m8(Z){return i0.fromArray(Z.entries())}function NL(Z,J){return J.delete(Z)}function F0(Z,J){let K=Z.get(J,yL);if(K===yL)return new v(cM);return new E(K)}function FL(Z,J,K){return K.set(Z,J)}function u8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof g5)return"Result";else if(Z instanceof i0)return"List";else if(Z instanceof NZ)return"BitArray";else if(Z instanceof Z1)return"Dict";else if(Number.isInteger(Z))return"Int";else if(Array.isArray(Z))return"Array";else if(typeof Z==="number")return"Float";else if(Z===null)return"Nil";else if(Z===void 0)return"Nil";else{let J=typeof Z;return J.charAt(0).toUpperCase()+J.slice(1)}}function $L(Z){return new gL().inspect(Z)}function g0(Z){let J=Z.toString().replace("+","");if(J.indexOf(".")>=0)return J;else{let K=J.indexOf("e");if(K>=0)return J.slice(0,K)+".0"+J.slice(K);else return J+".0"}}class gL{#Z=new Set;inspect(Z){let J=typeof Z;if(Z===!0)return"True";if(Z===!1)return"False";if(Z===null)return"//js(null)";if(Z===void 0)return"Nil";if(J==="string")return this.#W(Z);if(J==="bigint"||Number.isInteger(Z))return Z.toString();if(J==="number")return g0(Z);if(Z instanceof PM)return this.#Q(Z);if(Z instanceof NZ)return this.#G(Z);if(Z instanceof RegExp)return`//js(${Z})`;if(Z instanceof Date)return`//js(Date("${Z.toISOString()}"))`;if(Z instanceof globalThis.Error)return`//js(${Z.toString()})`;if(Z instanceof Function){let Y=[];for(let X of Array(Z.length).keys())Y.push(String.fromCharCode(X+97));return`//fn(${Y.join(", ")}) { ... }`}if(this.#Z.size===this.#Z.add(Z).size)return"//js(circular reference)";let K;if(Array.isArray(Z))K=`#(${Z.map((Y)=>this.inspect(Y)).join(", ")})`;else if(Z instanceof i0)K=this.#J(Z);else if(Z instanceof O)K=this.#Y(Z);else if(Z instanceof Z1)K=this.#K(Z);else if(Z instanceof Set)return`//js(Set(${[...Z].map((Y)=>this.inspect(Y)).join(", ")}))`;else K=this.#X(Z);return this.#Z.delete(Z),K}#X(Z){let J=Object.getPrototypeOf(Z)?.constructor?.name||"Object",K=[];for(let W of Object.keys(Z))K.push(`${this.inspect(W)}: ${this.inspect(Z[W])}`);let Y=K.length?" "+K.join(", ")+" ":"";return`//js(${J==="Object"?"":J+" "}{${Y}})`}#K(Z){let J="dict.from_list([",K=!0;return Z.forEach((Y,X)=>{if(!K)J=J+", ";J=J+"#("+this.inspect(X)+", "+this.inspect(Y)+")",K=!1}),J+"])"}#Y(Z){let J=Object.keys(Z).map((K)=>{let Y=this.inspect(Z[K]);return isNaN(parseInt(K))?`${K}: ${Y}`:Y}).join(", ");return J?`${Z.constructor.name}(${J})`:Z.constructor.name}#J(Z){if(Z instanceof U)return"[]";let J='charlist.from_string("',K="[",Y=Z;while(Y instanceof M1){let X=Y.head;if(Y=Y.tail,K!=="[")K+=", ";if(K+=this.inspect(X),J)if(Number.isInteger(X)&&X>=32&&X<=126)J+=String.fromCharCode(X);else J=null}if(J)return J+'")';else return K+"]"}#W(Z){let J='"';for(let K=0;K<Z.length;K++){let Y=Z[K];switch(Y){case` 3 - `:J+="\\n";break;case"\r":J+="\\r";break;case"\t":J+="\\t";break;case"\f":J+="\\f";break;case"\\":J+="\\\\";break;case'"':J+="\\\"";break;default:if(Y<" "||Y>"~"&&Y<" ")J+="\\u{"+Y.charCodeAt(0).toString(16).toUpperCase().padStart(4,"0")+"}";else J+=Y}}return J+='"',J}#Q(Z){return`//utfcodepoint(${String.fromCodePoint(Z.value)})`}#G(Z){if(Z.bitSize===0)return"<<>>";let J="<<";for(let K=0;K<Z.byteSize-1;K++)J+=Z.byteAt(K).toString(),J+=", ";if(Z.byteSize*8===Z.bitSize)J+=Z.byteAt(Z.byteSize-1).toString();else{let K=Z.bitSize%8;J+=Z.byteAt(Z.byteSize-1)>>8-K,J+=`:size(${K})`}return J+=">>",J}}function xL(Z,J){if(Z instanceof Z1||Z instanceof WeakMap||Z instanceof Map){let Y={},X=Z.get(J,Y);if(X===Y)return new E(new h);return new E(new L(X))}let K=Number.isInteger(J);if(K&&J>=0&&J<8&&Z instanceof i0){let Y=0;for(let X of Z){if(Y===J)return new E(new L(X));Y++}return new v("Indexable")}if(K&&Array.isArray(Z)||Z&&typeof Z==="object"||Z&&Object.getPrototypeOf(Z)===Object.prototype){if(J in Z)return new E(new L(Z[J]));return new E(new h)}return new v(K?"Indexable":"Dict")}function wL(Z,J,K,Y,X){if(!(Z instanceof i0||Array.isArray(Z))){let V=new d8("List",u8(Z),X);return[X,i0.fromArray([V])]}let W=[];for(let V of Z){let G=J(V),[I,z]=G;if(z instanceof M1){let[N,F]=K(G,Y.toString());return[X,F]}W.push(I),Y++}return[i0.fromArray(W),X]}function UL(Z){if(Z instanceof Z1)return new E(Z);if(Z instanceof Map||Z instanceof WeakMap)return new E(Z1.fromMap(Z));if(Z==null)return new v("Dict");if(typeof Z!=="object")return new v("Dict");let J=Object.getPrototypeOf(Z);if(J===Object.prototype||J===null)return new E(Z1.fromObject(Z));return new v("Dict")}function ML(Z){if(typeof Z==="number")return new E(Z);return new v(0)}function RL(Z){if(Number.isInteger(Z))return new E(Z);return new v(0)}function jL(Z){if(typeof Z==="string")return new E(Z);return new v("")}function LL(Z){return Z===null||Z===void 0}function TJ(Z,J){if(Z>J)return Z;else return J}function mL(Z,J,K){if(K<=0)return"";else if(J<0){let W=t1(Z)+J;if(W<0)return"";else return nM(Z,W,K)}else return nM(Z,J,K)}function ev(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else{let X=K.head;Z=K.tail,J=Y+X}}}function OZ(Z){return ev(Z,"")}function Zh(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return W;else{let V=Y.head;Z=Y.tail,J=X,K=W+X+V}}}function c8(Z,J){if(Z instanceof U)return"";else{let{head:K,tail:Y}=Z;return Zh(Y,J,K)}}function i5(Z){let K=hL(Z);return lM(K)}function r5(Z,J){if(J==="")return BZ(Z);else{let Y=V0(Z),X=pM(Y,J);return I0(X,V0)}}function SJ(Z){let K=$L(Z);return V0(K)}function cL(Z){if(Z instanceof E)return!0;else return!1}function s5(Z,J){if(Z instanceof E)return Z;else{let K=Z[0];return new v(J(K))}}function A1(Z,J){if(Z instanceof E){let K=Z[0];return J(K)}else return Z}function a5(Z,J){if(Z instanceof E)return Z[0];else return J}function iM(Z){return JSON.stringify(Z)}function pL(Z){return Object.fromEntries(Z)}function p8(Z){return Z}function nL(Z){let J=[];while(ej(Z))J.push(ZL(Z)),Z=JL(Z);return J}function lL(){return null}function iL(Z){try{let J=JSON.parse(Z);return KL(J)}catch(J){return YL(Wh(J,Z))}}function Wh(Z,J){if(Qh(Z))return rL();return Vh(Z,J)}function Qh(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function Vh(Z,J){let K=[Gh,Ih,Nh,zh];for(let Y of K){let X=Y(Z,J);if(X)return X}return t5("")}function Gh(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let Y=AJ(K[1]);return t5(Y)}function Ih(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let Y=AJ(K[1]);return t5(Y)}function zh(Z,J){let Y=/(unexpected character|expected .*) at line (\d+) column (\d+)/i.exec(Z.message);if(!Y)return null;let X=Number(Y[2]),W=Number(Y[3]),V=Fh(X,W,J),G=AJ(J[V]);return t5(G)}function Nh(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let Y=AJ(K[2]);return t5(Y)}function AJ(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function Fh(Z,J,K){if(Z===1)return J-1;let Y=1,X=0;return K.split("").find((W,V)=>{if(W===` 4 - `)Y+=1;if(Y===Z)return X=V+J,!0;return!1}),X}class sL extends O{}var rL=()=>new sL;class aL extends O{constructor(Z){super();this[0]=Z}}var t5=(Z)=>new aL(Z);class tL extends O{constructor(Z){super();this[0]=Z}}function Hh(Z,J){return A1(iL(Z),(K)=>{let Y=W0(K,J);return s5(Y,(X)=>{return new tL(X)})})}function u1(Z,J){return Hh(Z,J)}function C8(Z){return iM(Z)}function n(Z){return p8(Z)}function d1(Z){return p8(Z)}function K1(Z){return p8(Z)}function oL(Z){return p8(Z)}function rM(){return lL()}function b(Z){return pL(Z)}function eL(Z){return nL(Z)}function x0(Z,J){let Y=I0(Z,J);return eL(Y)}class qJ extends O{constructor(Z){super();this.dict=Z}}function H5(){return new qJ(R0())}function o5(Z,J){let K=Z.dict,Y=F0(K,J);return cL(Y)}function Zy(Z,J){return new qJ(Q8(Z.dict,J))}function Jy(Z){return q8(Z.dict)}var Bh=void 0;function TZ(Z,J){return new qJ(c0(Z.dict,J,Bh))}class Y0 extends O{constructor(Z,J,K,Y,X,W,V){super();this.scheme=Z,this.userinfo=J,this.host=K,this.port=Y,this.path=X,this.query=W,this.fragment=V}}function Ph(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function o1(Z,J){return new E(new Y0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new L(Z)))}function Sh(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W.startsWith("#"))if(G===0){let I=W.slice(1);return o1(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(z),V.fragment);return o1(I,N)}else if(W==="")return new E(new Y0(V.scheme,V.userinfo,V.host,V.port,V.path,new L(X),V.fragment));else{let I=N5(W),z;z=I[1],Z=X,J=z,K=V,Y=G+1}}}function x8(Z,J){return Sh(Z,Z,J,0)}function Ah(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W.startsWith("?")){let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return x8(I,N)}else if(W.startsWith("#")){let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return o1(I,N)}else if(W==="")return new E(new Y0(V.scheme,V.userinfo,V.host,V.port,X,V.query,V.fragment));else{let I=N5(W),z;z=I[1],Z=X,J=z,K=V,Y=G+1}}}function D5(Z,J){return Ah(Z,Z,J,0)}function G8(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y.startsWith("0"))Z=Y.slice(1),J=X,K=W*10;else if(Y.startsWith("1"))Z=Y.slice(1),J=X,K=W*10+1;else if(Y.startsWith("2"))Z=Y.slice(1),J=X,K=W*10+2;else if(Y.startsWith("3"))Z=Y.slice(1),J=X,K=W*10+3;else if(Y.startsWith("4"))Z=Y.slice(1),J=X,K=W*10+4;else if(Y.startsWith("5"))Z=Y.slice(1),J=X,K=W*10+5;else if(Y.startsWith("6"))Z=Y.slice(1),J=X,K=W*10+6;else if(Y.startsWith("7"))Z=Y.slice(1),J=X,K=W*10+7;else if(Y.startsWith("8"))Z=Y.slice(1),J=X,K=W*10+8;else if(Y.startsWith("9"))Z=Y.slice(1),J=X,K=W*10+9;else if(Y.startsWith("?")){let V=Y.slice(1),G=new Y0(X.scheme,X.userinfo,X.host,new L(W),X.path,X.query,X.fragment);return x8(V,G)}else if(Y.startsWith("#")){let V=Y.slice(1),G=new Y0(X.scheme,X.userinfo,X.host,new L(W),X.path,X.query,X.fragment);return o1(V,G)}else if(Y.startsWith("/")){let V=new Y0(X.scheme,X.userinfo,X.host,new L(W),X.path,X.query,X.fragment);return D5(Y,V)}else if(Y==="")return new E(new Y0(X.scheme,X.userinfo,X.host,new L(W),X.path,X.query,X.fragment));else return new v(void 0)}}function EJ(Z,J){if(Z.startsWith(":0")){let K=Z.slice(2);return G8(K,J,0)}else if(Z.startsWith(":1")){let K=Z.slice(2);return G8(K,J,1)}else if(Z.startsWith(":2")){let K=Z.slice(2);return G8(K,J,2)}else if(Z.startsWith(":3")){let K=Z.slice(2);return G8(K,J,3)}else if(Z.startsWith(":4")){let K=Z.slice(2);return G8(K,J,4)}else if(Z.startsWith(":5")){let K=Z.slice(2);return G8(K,J,5)}else if(Z.startsWith(":6")){let K=Z.slice(2);return G8(K,J,6)}else if(Z.startsWith(":7")){let K=Z.slice(2);return G8(K,J,7)}else if(Z.startsWith(":8")){let K=Z.slice(2);return G8(K,J,8)}else if(Z.startsWith(":9")){let K=Z.slice(2);return G8(K,J,9)}else if(Z===":")return new E(J);else if(Z==="")return new E(J);else if(Z.startsWith("?")){let K=Z.slice(1);return x8(K,J)}else if(Z.startsWith(":?")){let K=Z.slice(2);return x8(K,J)}else if(Z.startsWith("#")){let K=Z.slice(1);return o1(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return o1(K,J)}else if(Z.startsWith("/"))return D5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return D5(K,J);else return new v(void 0)}else return new v(void 0)}function Ky(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W==="")return new E(new Y0(V.scheme,V.userinfo,new L(X),V.port,V.path,V.query,V.fragment));else if(W.startsWith(":")){let I=Q1(X,0,G),z=new Y0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return EJ(W,z)}else if(W.startsWith("/")){let I=Q1(X,0,G),z=new Y0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return D5(W,z)}else if(W.startsWith("?")){let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return x8(I,N)}else if(W.startsWith("#")){let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return o1(I,N)}else{let I=N5(W),z;z=I[1],Z=X,J=z,K=V,Y=G+1}}}function qh(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W==="")return new E(new Y0(V.scheme,V.userinfo,new L(W),V.port,V.path,V.query,V.fragment));else if(W.startsWith("]"))if(G===0){let I=W.slice(1);return EJ(I,V)}else{let I=W.slice(1),z=Q1(X,0,G+1),N=new Y0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return EJ(I,N)}else if(W.startsWith("/"))if(G===0)return D5(W,V);else{let I=Q1(X,0,G),z=new Y0(V.scheme,V.userinfo,new L(I),V.port,V.path,V.query,V.fragment);return D5(W,z)}else if(W.startsWith("?"))if(G===0){let I=W.slice(1);return x8(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return x8(I,N)}else if(W.startsWith("#"))if(G===0){let I=W.slice(1);return o1(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,V.userinfo,new L(z),V.port,V.path,V.query,V.fragment);return o1(I,N)}else{let I=N5(W),z,N;if(z=I[0],N=I[1],Ph(z))Z=X,J=N,K=V,Y=G+1;else return Ky(X,X,V,0)}}}function Eh(Z,J){return qh(Z,Z,J,0)}function Ch(Z,J){return Ky(Z,Z,J,0)}function e5(Z,J){if(Z.startsWith("["))return Eh(Z,J);else if(Z.startsWith(":")){let K=new Y0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment);return EJ(Z,K)}else if(Z==="")return new E(new Y0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else return Ch(Z,J)}function xh(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W.startsWith("@"))if(G===0){let I=W.slice(1);return e5(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(V.scheme,new L(z),V.host,V.port,V.path,V.query,V.fragment);return e5(I,N)}else if(W==="")return e5(X,V);else if(W.startsWith("/"))return e5(X,V);else if(W.startsWith("?"))return e5(X,V);else if(W.startsWith("#"))return e5(X,V);else{let I=N5(W),z;z=I[1],Z=X,J=z,K=V,Y=G+1}}}function wh(Z,J){return xh(Z,Z,J,0)}function sM(Z,J){if(Z==="//")return new E(new Y0(J.scheme,J.userinfo,new L(""),J.port,J.path,J.query,J.fragment));else if(Z.startsWith("//")){let K=Z.slice(2);return wh(K,J)}else return D5(Z,J)}function Uh(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(W.startsWith("/"))if(G===0)return sM(W,V);else{let I=Q1(X,0,G),z=new Y0(new L(m1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return sM(W,z)}else if(W.startsWith("?"))if(G===0){let I=W.slice(1);return x8(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(new L(m1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return x8(I,N)}else if(W.startsWith("#"))if(G===0){let I=W.slice(1);return o1(I,V)}else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(new L(m1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return o1(I,N)}else if(W.startsWith(":"))if(G===0)return new v(void 0);else{let I=W.slice(1),z=Q1(X,0,G),N=new Y0(new L(m1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return sM(I,N)}else if(W==="")return new E(new Y0(V.scheme,V.userinfo,V.host,V.port,X,V.query,V.fragment));else{let I=N5(W),z;z=I[1],Z=X,J=z,K=V,Y=G+1}}}function CJ(Z){let J,K=Z.fragment;if(K instanceof L){let x=K[0];J=Q(["#",x])}else J=Q([]);let Y=J,X,W=Z.query;if(W instanceof L){let x=W[0];X=C("?",C(x,Y))}else X=Y;let V=X,G=C(Z.path,V),I,z=Z.host,N=p5(Z.path,"/");if(z instanceof L&&!N)if(z[0]!=="")I=C("/",G);else I=G;else I=G;let F=I,D,B=Z.host,P=Z.port;if(B instanceof L&&P instanceof L){let x=P[0];D=C(":",C(J1(x),F))}else D=F;let T=D,S,A=Z.scheme,q=Z.userinfo,j=Z.host;if(A instanceof L)if(q instanceof L)if(j instanceof L){let x=A[0],y=q[0],$=j[0];S=C(x,C("://",C(y,C("@",C($,T)))))}else{let x=A[0];S=C(x,C(":",T))}else if(j instanceof L){let x=A[0],y=j[0];S=C(x,C("://",C(y,T)))}else{let x=A[0];S=C(x,C(":",T))}else if(q instanceof h&&j instanceof L){let x=j[0];S=C("//",C(x,T))}else S=T;return OZ(S)}var Mh=new Y0(new h,new h,new h,new h,"",new h,new h);function aM(Z){return Uh(Z,Z,Mh,0)}function Z7(Z,J,K){if(Z)return J;else return K()}function D0(Z){return Z}var c1=()=>globalThis?.document,wJ="http://www.w3.org/1999/xhtml",UJ=1,eM=3;var Qy=!!globalThis.HTMLElement?.prototype?.moveBefore;var t=Q([]),MJ=new h;var yh=new A8,fh=new r0,kh=new s0;function RJ(Z,J){if(Z.name===J.name)return kh;else if(Z.name<J.name)return fh;else return yh}class p1 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class SZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class q1 extends O{constructor(Z,J,K,Y,X,W,V,G){super();this.kind=Z,this.name=J,this.handler=K,this.include=Y,this.prevent_default=X,this.stop_propagation=W,this.debounce=V,this.throttle=G}}class AZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class Ny extends O{constructor(Z){super();this.kind=Z}}function _h(Z,J){while(!0){let K=Z,Y=J;if(K instanceof U)return Y;else{let X=K.head;if(X instanceof p1){let W=X.name;if(W==="")Z=K.tail,J=Y;else if(W==="class"){let V=X.value;if(V==="")Z=K.tail,J=Y;else{let G=K.tail;if(G instanceof U){let I=X;Z=G,J=C(I,Y)}else{let I=G.head;if(I instanceof p1)if(I.name==="class"){let N=X.kind,F=V,D=G.tail,B=I.value,P=F+" "+B,T=new p1(N,"class",P);Z=C(T,D),J=Y}else{let N=X;Z=G,J=C(N,Y)}else{let z=X;Z=G,J=C(z,Y)}}}}else if(W==="style"){let V=X.value;if(V==="")Z=K.tail,J=Y;else{let G=K.tail;if(G instanceof U){let I=X;Z=G,J=C(I,Y)}else{let I=G.head;if(I instanceof p1)if(I.name==="style"){let N=X.kind,F=V,D=G.tail,B=I.value,P=F+";"+B,T=new p1(N,"style",P);Z=C(T,D),J=Y}else{let N=X;Z=G,J=C(N,Y)}else{let z=X;Z=G,J=C(z,Y)}}}}else{let V=X;Z=K.tail,J=C(V,Y)}}else{let W=X;Z=K.tail,J=C(W,Y)}}}}function Fy(Z){if(Z instanceof U)return Z;else if(Z.tail instanceof U)return Z;else{let Y=gM(Z,(X,W)=>{return RJ(W,X)});return _h(Y,t)}}var JR=0;function Hy(Z,J){return new p1(JR,Z,J)}var KR=1;function Dy(Z,J){return new SZ(KR,Z,J)}var YR=2;function By(Z,J,K,Y,X,W,V){return new q1(YR,Z,J,K,Y,X,W,V)}var XR=0;var WR=new Ny(XR);var QR=2;function M(Z,J){return Hy(Z,J)}function VR(Z,J){return Dy(Z,J)}function GR(Z,J){if(J)return M(Z,"");else return VR(Z,d1(!1))}function H(Z){return M("class",Z)}function z8(Z){return M("id",Z)}function L1(Z){return M("href",Z)}function Oy(Z){return M("alt",Z)}function Ty(Z){return M("src",Z)}function B5(Z){return M("action",Z)}function O5(Z){return M("method",Z)}function Py(Z){return M("accept",c8(Z,","))}function qZ(Z){return GR("disabled",Z)}function Sy(Z){return M("name",Z)}function e1(Z){return M("placeholder",Z)}function Ay(Z){return GR("required",Z)}function IR(Z){return GR("selected",Z)}function b0(Z){return M("type",Z)}function D1(Z){return M("value",Z)}class EZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class NR extends O{constructor(Z,J,K,Y,X){super();this.dispatch=Z,this.emit=J,this.select=K,this.root=Y,this.provide=X}}function mh(Z,J,K){return}function uh(Z,J){return new NR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return mh(Z,K,J)},Z.root,Z.provide)}function zR(Z,J){return I0(Z,(K)=>{return(Y)=>{return K(uh(Y,J))}})}function FR(Z,J){return new EZ(zR(Z.synchronous,J),zR(Z.before_paint,J),zR(Z.after_paint,J))}function qy(Z,J,K,Y,X,W){let V=new NR(J,K,Y,X,W);return TL(Z.synchronous,(G)=>{return G(V)})}var jJ=new EZ(Q([]),Q([]),Q([]));function l(){return jJ}function V1(Z){return new EZ(Q([(K)=>{let Y=K.dispatch;return Z(Y)}]),jJ.before_paint,jJ.after_paint)}function Y1(Z){return j0(Z,jJ,(J,K)=>{return new EZ(j0(K.synchronous,J.synchronous,NJ),j0(K.before_paint,J.before_paint,NJ),j0(K.after_paint,J.after_paint,NJ))})}function B1(){return null}function CZ(Z,J){let K=Z?.get(J);if(K!=null)return new E(K);else return new v(void 0)}function xZ(Z,J){return Z&&Z.has(J)}function T5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function HR(Z,J){return Z?.delete(J),Z}class DR extends O{}class BR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class Ey extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}function dh(Z,J){while(!0){let K=Z,Y=J;if(Y instanceof U)return!1;else{let{head:X,tail:W}=Y,V=p5(K,X);if(V)return V;else Z=K,J=W}}}function l1(Z,J,K){if(K==="")return new Ey(J,Z);else return new BR(K,Z)}var K7=new DR,UZ="\t";function Cy(Z,J){while(!0){let K=Z,Y=J;if(K instanceof DR)if(Y instanceof U)return"";else{let X=Y.tail;return OZ(X)}else if(K instanceof BR){let X=K.key;Z=K.parent,J=C(UZ,C(X,Y))}else{let X=K.index;Z=K.parent,J=C(UZ,C(J1(X),Y))}}}function xy(Z){return Cy(Z,Q([]))}function wy(Z,J){if(J instanceof U)return!1;else return dh(xy(Z),J)}var OR=` 5 - `;function TR(Z,J){return Cy(Z,Q([OR,J]))}class E1 extends O{constructor(Z,J,K,Y,X){super();this.kind=Z,this.key=J,this.mapper=K,this.children=Y,this.keyed_children=X}}class O1 extends O{constructor(Z,J,K,Y,X,W,V,G,I,z){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=Y,this.tag=X,this.attributes=W,this.children=V,this.keyed_children=G,this.self_closing=I,this.void=z}}class y1 extends O{constructor(Z,J,K,Y){super();this.kind=Z,this.key=J,this.mapper=K,this.content=Y}}class l8 extends O{constructor(Z,J,K,Y,X,W,V){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=Y,this.tag=X,this.attributes=W,this.inner_html=V}}function Y7(Z,J){if(J==="")if(Z==="area")return!0;else if(Z==="base")return!0;else if(Z==="br")return!0;else if(Z==="col")return!0;else if(Z==="embed")return!0;else if(Z==="hr")return!0;else if(Z==="img")return!0;else if(Z==="input")return!0;else if(Z==="link")return!0;else if(Z==="meta")return!0;else if(Z==="param")return!0;else if(Z==="source")return!0;else if(Z==="track")return!0;else if(Z==="wbr")return!0;else return!1;else return!1}function Uy(Z,J){if(J instanceof E1)return new E1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof O1)return new O1(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.children,J.keyed_children,J.self_closing,J.void);else if(J instanceof y1)return new y1(J.kind,Z,J.mapper,J.content);else return new l8(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}var Z8=0;function yJ(Z,J,K,Y){return new E1(Z8,Z,J,K,Y)}var P5=1;function X7(Z,J,K,Y,X,W,V,G,I){return new O1(P5,Z,J,K,Y,Fy(X),W,V,G,I)}var W7=2;function PR(Z,J,K){return new y1(W7,Z,J,K)}var My=3;var SR=(Z,J)=>Z===J,J8=(Z,J)=>{if(Z===J)return!0;if(Z==null||J==null)return!1;let K=typeof Z;if(K!==typeof J)return!1;if(K!=="object")return!1;if(Z.constructor!==J.constructor)return!1;if(Array.isArray(Z))return nh(Z,J);return lh(Z,J)},nh=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!J8(Z[K],J[K]))return!1;return!0},lh=(Z,J)=>{let K=Object.keys(Z),Y=K.length;if(Object.keys(J).length!==Y)return!1;while(Y--){let X=K[Y];if(!Object.hasOwn(J,X))return!1;if(!J8(Z[X],J[X]))return!1}return!0};class M8 extends O{constructor(Z,J,K){super();this.handlers=Z,this.dispatched_paths=J,this.next_dispatched_paths=K}}class ER extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class AR extends O{constructor(Z){super();this.path=Z}}function CR(){return new M8(B1(),t,t)}function yy(Z){return new M8(Z.handlers,Z.next_dispatched_paths,t)}function fy(Z,J,K){return HR(Z,TR(J,K))}function fJ(Z,J,K){let Y=fy(Z.handlers,J,K);return new M8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function Ry(Z,J,K){return j0(K,Z,(Y,X)=>{if(X instanceof q1){let W=X.name;return fy(Y,J,W)}else return Y})}function xR(Z,J,K,Y){let X=CZ(Z.handlers,J+OR+K);if(X instanceof E){let W=X[0],V=W0(Y,W);if(V instanceof E){let G=V[0];return new ER(J,G)}else return new AR(J)}else return new AR(J)}function wR(Z,J){let K=C(J.path,Z.next_dispatched_paths),Y=new M8(Z.handlers,Z.dispatched_paths,K);if(J instanceof ER){let X=J.handler;return[Y,new E(X)]}else return[Y,new v(void 0)]}function kJ(Z,J,K,Y){let X=xR(Z,J,K,Y);return((W)=>{return wR(Z,W)})(X)}function bJ(Z,J){return wy(J,Z.dispatched_paths)}function ky(Z,J,K,Y,X){return T5(Z,TR(K,Y),DZ(X,(W)=>{return new AZ(W.prevent_default,W.stop_propagation,D0(J)(W.message))}))}function Q7(Z,J,K,Y,X){let W=ky(Z.handlers,J,K,Y,X);return new M8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function jy(Z,J,K,Y){return j0(Y,Z,(X,W)=>{if(W instanceof q1){let{name:V,handler:G}=W;return ky(X,J,K,V,G)}else return X})}function U8(Z,J){let K=SR(Z,D0);if(SR(J,D0))return Z;else if(K)return J;else return(X)=>{return Z(J(X))}}function Ly(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(G instanceof U)return X;else{let{head:I,tail:z}=G;Z=by(X,W,V,I),J=W,K=V+1,Y=z}}}function by(Z,J,K,Y){if(Y instanceof E1){let X=Y.children,W=l1(J,K,Y.key);return Ly(Z,W,0,X)}else if(Y instanceof O1){let{attributes:X,children:W}=Y,V=l1(J,K,Y.key),I=Ry(Z,V,X);return Ly(I,V,0,W)}else if(Y instanceof y1)return Z;else{let X=Y.attributes,W=l1(J,K,Y.key);return Ry(Z,W,X)}}function R8(Z,J,K,Y){let X=by(Z.handlers,J,K,Y);return new M8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function qR(Z,J,K,Y,X){while(!0){let W=Z,V=J,G=K,I=Y,z=X;if(z instanceof U)return W;else{let{head:N,tail:F}=z;Z=vy(W,V,G,I,N),J=V,K=G,Y=I+1,X=F}}}function vy(Z,J,K,Y,X){if(X instanceof E1){let W=X.children,V=l1(K,Y,X.key),G=U8(J,X.mapper);return qR(Z,G,V,0,W)}else if(X instanceof O1){let{attributes:W,children:V}=X,G=l1(K,Y,X.key),I=U8(J,X.mapper),N=jy(Z,I,G,W);return qR(N,I,G,0,V)}else if(X instanceof y1)return Z;else{let W=X.attributes,V=l1(K,Y,X.key),G=U8(J,X.mapper);return jy(Z,G,V,W)}}function j8(Z,J,K,Y,X){let W=vy(Z.handlers,J,K,Y,X);return new M8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function UR(Z){return j8(CR(),D0,K7,0,Z)}function hy(Z,J,K,Y,X){let W=qR(Z.handlers,J,K,Y,X);return new M8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function q0(Z,J,K){return X7("",D0,"",Z,J,K,B1(),!1,Y7(Z,""))}function f1(Z,J,K,Y){return X7("",D0,Z,J,K,Y,B1(),!1,Y7(J,Z))}function w(Z){return PR("",D0,Z)}function z0(){return PR("",D0,"")}function $y(Z){return yJ("",D0,Z,B1())}function MZ(Z,J){let K=D0(U8(D0(J),Z.mapper));if(Z instanceof E1){let{children:Y,keyed_children:X}=Z;return new E1(Z.kind,Z.key,K,D0(Y),D0(X))}else if(Z instanceof O1){let{attributes:Y,children:X,keyed_children:W}=Z;return new O1(Z.kind,Z.key,K,Z.namespace,Z.tag,D0(Y),D0(X),D0(W),Z.self_closing,Z.void)}else if(Z instanceof y1)return D0(Z);else{let Y=Z.attributes;return new l8(Z.kind,Z.key,K,Z.namespace,Z.tag,D0(Y),Z.inner_html)}}function n0(Z){return w(Z)}function k1(Z,J){return q0("h1",Z,J)}function V7(Z,J){return q0("h2",Z,J)}function G7(Z,J){return q0("h3",Z,J)}function R(Z,J){return q0("div",Z,J)}function A5(Z,J){return q0("li",Z,J)}function f0(Z,J){return q0("p",Z,J)}function vJ(Z,J){return q0("pre",Z,J)}function hJ(Z,J){return q0("ul",Z,J)}function b1(Z,J){return q0("a",Z,J)}function L8(Z,J){return q0("code",Z,J)}function d(Z,J){return q0("span",Z,J)}function gy(Z){return q0("img",Z,t)}function S0(Z,J){return q0("button",Z,J)}function q5(Z,J){return q0("form",Z,J)}function v1(Z){return q0("input",Z,t)}function z1(Z,J){return q0("label",Z,J)}function MR(Z,J){return q0("option",Z,Q([w(J)]))}function _y(Z,J){return q0("select",Z,J)}function RR(Z,J){return q0("textarea",C(VR("value",n(J)),Z),Q([w(J)]))}function my(Z,J){return q0("details",Z,J)}function uy(Z,J){return q0("summary",Z,J)}class RZ extends O{constructor(Z,J,K,Y){super();this.index=Z,this.removed=J,this.changes=K,this.children=Y}}class dy extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class cy extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class py extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class ny extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class ly extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class iy extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class ry extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}function jR(Z,J,K,Y){return new RZ(Z,J,K,Y)}var LR=0;function sy(Z){return new dy(LR,Z)}var yR=1;function ay(Z){return new cy(yR,Z)}var fR=2;function kR(Z,J){return new py(fR,Z,J)}var bR=3;function ty(Z,J){return new ny(bR,Z,J)}var vR=4;function oy(Z){return new iy(vR,Z)}var hR=5;function E5(Z,J){return new ly(hR,Z,J)}var $R=6;function gR(Z,J){return new ry($R,Z,J)}class Zf extends O{constructor(Z,J,K,Y,X,W,V,G){super();this.kind=Z,this.open_shadow_root=J,this.will_adopt_styles=K,this.observed_attributes=Y,this.observed_properties=X,this.requested_contexts=W,this.provided_contexts=V,this.vdom=G}}class Jf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class Kf extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class Yf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class $J extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class gJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class _J extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class mJ extends O{constructor(Z,J,K,Y){super();this.kind=Z,this.path=J,this.name=K,this.event=Y}}class _R extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var sh=0;function Xf(Z,J,K,Y,X,W,V){return new Zf(sh,Z,J,K,Y,X,W,V)}var ah=1;function mR(Z){return new Jf(ah,Z)}var th=2;function Wf(Z,J){return new Kf(th,Z,J)}var oh=3;function Qf(Z,J){return new Yf(oh,Z,J)}class uJ extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class If extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function eh(Z,J,K,Y){if(K==="input"&&J==="")return bJ(Z,Y);else if(K==="select"&&J==="")return bJ(Z,Y);else if(K==="textarea"&&J==="")return bJ(Z,Y);else return!1}function Gf(Z,J,K,Y,X,W,V,G){while(!0){let I=Z,z=J,N=K,F=Y,D=X,B=W,P=V,T=G;if(D instanceof U)if(B instanceof U)return new If(P,T,F);else{let S=B.head;if(S instanceof q1){let A=S,q=B.tail,j=S.name,f=S.handler,x=C(A,P),y=Q7(F,N,z,j,f);Z=I,J=z,K=N,Y=y,X=D,W=q,V=x,G=T}else{let A=S,q=B.tail,j=C(A,P);Z=I,J=z,K=N,Y=F,X=D,W=q,V=j,G=T}}else if(B instanceof U){let S=D.head;if(S instanceof q1){let A=S,q=D.tail,j=S.name,f=C(A,T),x=fJ(F,z,j);Z=I,J=z,K=N,Y=x,X=q,W=B,V=P,G=f}else{let A=S,q=D.tail,j=C(A,T);Z=I,J=z,K=N,Y=F,X=q,W=B,V=P,G=j}}else{let{head:S,tail:A}=D,q=B.head,j=B.tail,f=RJ(S,q);if(f instanceof r0)if(S instanceof q1){let x=S.name,y=C(S,T),$=fJ(F,z,x);Z=I,J=z,K=N,Y=$,X=A,W=B,V=P,G=y}else{let x=C(S,T);Z=I,J=z,K=N,Y=F,X=A,W=B,V=P,G=x}else if(f instanceof s0)if(S instanceof p1)if(q instanceof p1){let x,y=q.name;if(y==="value")x=I||S.value!==q.value;else if(y==="checked")x=I||S.value!==q.value;else if(y==="selected")x=I||S.value!==q.value;else x=S.value!==q.value;let $=x,c;if($)c=C(q,P);else c=P;let p=c;Z=I,J=z,K=N,Y=F,X=A,W=j,V=p,G=T}else if(q instanceof q1){let{name:x,handler:y}=q,$=C(q,P),c=C(S,T),p=Q7(F,N,z,x,y);Z=I,J=z,K=N,Y=p,X=A,W=j,V=$,G=c}else{let x=C(q,P),y=C(S,T);Z=I,J=z,K=N,Y=F,X=A,W=j,V=x,G=y}else if(S instanceof SZ)if(q instanceof SZ){let x,y=q.name;if(y==="scrollLeft")x=!0;else if(y==="scrollRight")x=!0;else if(y==="value")x=I||!J8(S.value,q.value);else if(y==="checked")x=I||!J8(S.value,q.value);else if(y==="selected")x=I||!J8(S.value,q.value);else x=!J8(S.value,q.value);let $=x,c;if($)c=C(q,P);else c=P;let p=c;Z=I,J=z,K=N,Y=F,X=A,W=j,V=p,G=T}else if(q instanceof q1){let{name:x,handler:y}=q,$=C(q,P),c=C(S,T),p=Q7(F,N,z,x,y);Z=I,J=z,K=N,Y=p,X=A,W=j,V=$,G=c}else{let x=C(q,P),y=C(S,T);Z=I,J=z,K=N,Y=F,X=A,W=j,V=x,G=y}else if(q instanceof q1){let{name:x,handler:y}=q,$=S.prevent_default.kind!==q.prevent_default.kind||S.stop_propagation.kind!==q.stop_propagation.kind||S.debounce!==q.debounce||S.throttle!==q.throttle,c;if($)c=C(q,P);else c=P;let p=c,s=Q7(F,N,z,x,y);Z=I,J=z,K=N,Y=s,X=A,W=j,V=p,G=T}else{let x=S.name,y=C(q,P),$=C(S,T),c=fJ(F,z,x);Z=I,J=z,K=N,Y=c,X=A,W=j,V=y,G=$}else if(q instanceof q1){let{name:x,handler:y}=q,$=C(q,P),c=Q7(F,N,z,x,y);Z=I,J=z,K=N,Y=c,X=D,W=j,V=$,G=T}else{let x=C(q,P);Z=I,J=z,K=N,Y=F,X=D,W=j,V=x,G=T}}}}function uR(Z,J,K,Y,X,W,V,G,I,z,N,F,D,B){while(!0){let P=Z,T=J,S=K,A=Y,q=X,j=W,f=V,x=G,y=I,$=z,c=N,p=F,s=D,N0=B;if(P instanceof U)if(S instanceof U)return new uJ(new RZ(y,f,c,p),N0);else{let _0=hy(N0,s,$,x,S),l0=gR(S,x-j),A0=C(l0,c);return new uJ(new RZ(y,f,A0,p),_0)}else if(S instanceof U){let{head:_0,tail:l0}=P,A0;if(_0.key===""||!xZ(q,_0.key))A0=f+1;else A0=f;let P0=A0,J0=R8(N0,$,x,_0);Z=l0,J=T,K=S,Y=A,X=q,W=j,V=P0,G=x,I=y,z=$,N=c,F=p,D=s,B=J0}else{let _0=P.head,l0=S.head;if(_0.key!==l0.key){let A0=P.tail,U0=S.tail,P0=CZ(T,l0.key);if(xZ(A,_0.key))if(P0 instanceof E){let Z0=P0[0];if(xZ(q,_0.key))Z=A0,J=T,K=S,Y=A,X=q,W=j-1,V=f,G=x,I=y,z=$,N=c,F=p,D=s,B=N0;else{let k=x-j,_=C(ty(l0.key,k),c),o=T5(q,l0.key,void 0),e=j+1;Z=C(Z0,P),J=T,K=S,Y=A,X=o,W=e,V=f,G=x,I=y,z=$,N=_,F=p,D=s,B=N0}}else{let Z0=x-j,m=j8(N0,s,$,x,l0),k=gR(Q([l0]),Z0),_=C(k,c);Z=P,J=T,K=U0,Y=A,X=q,W=j+1,V=f,G=x+1,I=y,z=$,N=_,F=p,D=s,B=m}else if(P0 instanceof E){let Z0=x-j,m=C(oy(Z0),c),k=R8(N0,$,x,_0),_=j-1;Z=A0,J=T,K=S,Y=A,X=q,W=_,V=f,G=x,I=y,z=$,N=m,F=p,D=s,B=k}else{let Z0=E5(x-j,l0),m,_=R8(N0,$,x,_0);m=j8(_,s,$,x,l0);let o=m;Z=A0,J=T,K=U0,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(Z0,c),F=p,D=s,B=o}}else{let A0=P.head;if(A0 instanceof E1){let U0=S.head;if(U0 instanceof E1){let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=U8(s,Z0.mapper),_=l1($,x,Z0.key),o=uR(P0.children,P0.keyed_children,Z0.children,Z0.keyed_children,B1(),0,0,0,x,_,t,t,k,N0),e,Q0=o.patch;if(Q0.changes instanceof U)if(Q0.children instanceof U)if(Q0.removed===0)e=p;else e=C(o.patch,p);else e=C(o.patch,p);else e=C(o.patch,p);let u0=e;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=c,F=u0,D=s,B=o.events}else{let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=E5(x-j,Z0),_,e=R8(N0,$,x,P0);_=j8(e,s,$,x,Z0);let Q0=_;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(k,c),F=p,D=s,B=Q0}}else if(A0 instanceof O1){let U0=S.head;if(U0 instanceof O1){let P0=A0,J0=U0;if(P0.namespace===J0.namespace&&P0.tag===J0.tag){let Z0=P.tail,m=S.tail,k=U8(s,J0.mapper),_=l1($,x,J0.key),o=eh(N0,J0.namespace,J0.tag,_),e=Gf(o,_,k,N0,P0.attributes,J0.attributes,t,t),Q0,m0,u0;Q0=e.added,m0=e.removed,u0=e.events;let e0;if(Q0 instanceof U&&m0 instanceof U)e0=t;else e0=Q([kR(Q0,m0)]);let i1=e0,r1=uR(P0.children,P0.keyed_children,J0.children,J0.keyed_children,B1(),0,0,0,x,_,i1,t,k,u0),s1,S8=r1.patch;if(S8.changes instanceof U)if(S8.children instanceof U)if(S8.removed===0)s1=p;else s1=C(r1.patch,p);else s1=C(r1.patch,p);else s1=C(r1.patch,p);let TM=s1;Z=Z0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=c,F=TM,D=s,B=r1.events}else{let Z0=A0,m=P.tail,k=U0,_=S.tail,o=E5(x-j,k),e,m0=R8(N0,$,x,Z0);e=j8(m0,s,$,x,k);let u0=e;Z=m,J=T,K=_,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(o,c),F=p,D=s,B=u0}}else{let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=E5(x-j,Z0),_,e=R8(N0,$,x,P0);_=j8(e,s,$,x,Z0);let Q0=_;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(k,c),F=p,D=s,B=Q0}}else if(A0 instanceof y1){let U0=S.head;if(U0 instanceof y1){let P0=A0,J0=U0;if(P0.content===J0.content){let Z0=P.tail,m=S.tail;Z=Z0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=c,F=p,D=s,B=N0}else{let Z0=P.tail,m=U0,k=S.tail,_=jR(x,0,Q([sy(m.content)]),t);Z=Z0,J=T,K=k,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=c,F=C(_,p),D=s,B=N0}}else{let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=E5(x-j,Z0),_,e=R8(N0,$,x,P0);_=j8(e,s,$,x,Z0);let Q0=_;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(k,c),F=p,D=s,B=Q0}}else{let U0=S.head;if(U0 instanceof l8){let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=U8(s,Z0.mapper),_=l1($,x,Z0.key),o=Gf(!1,_,k,N0,P0.attributes,Z0.attributes,t,t),e,Q0,m0;e=o.added,Q0=o.removed,m0=o.events;let u0;if(e instanceof U&&Q0 instanceof U)u0=t;else u0=Q([kR(e,Q0)]);let e0=u0,i1;if(P0.inner_html===Z0.inner_html)i1=e0;else i1=C(ay(Z0.inner_html),e0);let s1=i1,S8;if(s1 instanceof U)S8=p;else S8=C(jR(x,0,s1,Q([])),p);let XJ=S8;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=c,F=XJ,D=s,B=m0}else{let P0=A0,J0=P.tail,Z0=U0,m=S.tail,k=E5(x-j,Z0),_,e=R8(N0,$,x,P0);_=j8(e,s,$,x,Z0);let Q0=_;Z=J0,J=T,K=m,Y=A,X=q,W=j,V=f,G=x+1,I=y,z=$,N=C(k,c),F=p,D=s,B=Q0}}}}}}function I7(Z,J,K){return uR(Q([J]),B1(),Q([K]),B1(),B1(),0,0,0,0,K7,t,t,D0,yy(Z))}var{setTimeout:Z$,clearTimeout:dR}=globalThis,J$=(Z,J)=>c1().createElementNS(Z,J),K$=(Z)=>c1().createTextNode(Z),Y$=()=>c1().createDocumentFragment(),z7=(Z,J,K)=>Z.insertBefore(J,K),Nf=Qy?(Z,J,K)=>Z.moveBefore(J,K):z7,X$=(Z,J)=>Z.removeChild(J),W$=(Z,J)=>Z.getAttribute(J),Ff=(Z,J,K)=>Z.setAttribute(J,K),Q$=(Z,J)=>Z.removeAttribute(J),V$=(Z,J,K,Y)=>Z.addEventListener(J,K,Y),Hf=(Z,J,K)=>Z.removeEventListener(J,K),G$=(Z,J)=>Z.innerHTML=J,I$=(Z,J)=>Z.data=J,y8=Symbol("lustre");class Of{constructor(Z,J,K,Y){this.kind=Z,this.key=Y,this.parent=J,this.children=[],this.node=K,this.handlers=new Map,this.throttles=new Map,this.debouncers=new Map}get parentNode(){return this.kind===Z8?this.node.parentNode:this.node}}var f8=(Z,J,K,Y,X)=>{let W=new Of(Z,J,K,X);return K[y8]=W,J?.children.splice(Y,0,W),W},z$=(Z)=>{let J="";for(let K=Z[y8];K.parent;K=K.parent)if(K.key)J=`${UZ}${K.key}${J}`;else{let Y=K.parent.children.indexOf(K);J=`${UZ}${Y}${J}`}return J.slice(1)};class pR{#Z=null;#X;#K;#Y=!1;constructor(Z,J,K,{exposeKeys:Y=!1}={}){this.#Z=Z,this.#X=J,this.#K=K,this.#Y=Y}mount(Z){f8(P5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[y8],0,Z)}push(Z){this.#J.push({node:this.#Z[y8],patch:Z}),this.#W()}#J=[];#W(){let Z=this.#J;while(Z.length){let{node:J,patch:K}=Z.pop(),{children:Y}=J,{changes:X,removed:W,children:V}=K;if(C5(X,(G)=>this.#Q(J,G)),W)this.#F(J,Y.length-W,W);C5(V,(G)=>{let I=Y[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case LR:this.#C(Z,J);break;case yR:this.#S(Z,J);break;case fR:this.#D(Z,J);break;case bR:this.#z(Z,J);break;case vR:this.#O(Z,J);break;case hR:this.#N(Z,J);break;case $R:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let Y=Y$(),X=this.#I(Z,K);this.#T(Y,null,Z,K|0,J),z7(Z.parentNode,Y,X)}#N(Z,{index:J,with:K}){this.#F(Z,J|0,1);let Y=this.#I(Z,J);this.#P(Z.parentNode,Y,Z,J|0,K)}#I(Z,J){J=J|0;let{children:K}=Z,Y=K.length;if(J<Y)return K[J].node;let X=K[Y-1];if(!X&&Z.kind!==Z8)return null;if(!X)X=Z;while(X.kind===Z8&&X.children.length)X=X.children[X.children.length-1];return X.node.nextSibling}#z(Z,{key:J,before:K}){K=K|0;let{children:Y,parentNode:X}=Z,W=Y[K].node,V=Y[K];for(let N=K+1;N<Y.length;++N){let F=Y[N];if(Y[N]=V,V=F,F.key===J){Y[K]=F;break}}let{kind:G,node:I,children:z}=V;if(Nf(X,I,W),G===Z8)this.#V(X,z,W)}#V(Z,J,K){for(let Y=0;Y<J.length;++Y){let{kind:X,node:W,children:V}=J[Y];if(Nf(Z,W,K),X===Z8)this.#V(Z,V,K)}}#O(Z,{index:J}){this.#F(Z,J,1)}#F(Z,J,K){let{children:Y,parentNode:X}=Z,W=Y.splice(J,K);for(let V=0;V<W.length;++V){let{kind:G,node:I,children:z}=W[V];if(X$(X,I),this.#H(W[V]),G===Z8)W.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:Y}of J.values())if(Y)dR(Y);J.clear(),C5(K,(Y)=>this.#H(Y))}#D({node:Z,handlers:J,throttles:K,debouncers:Y},{added:X,removed:W}){C5(W,({name:V})=>{if(J.delete(V))Hf(Z,V,cR),this.#B(K,V,0),this.#B(Y,V,0);else Q$(Z,V),Bf[V]?.removed?.(Z,V)}),C5(X,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){I$(Z,J??"")}#S({node:Z},{inner_html:J}){G$(Z,J??"")}#T(Z,J,K,Y,X){C5(X,(W)=>this.#P(Z,J,K,Y++,W))}#P(Z,J,K,Y,X){switch(X.kind){case P5:{let W=this.#A(K,Y,X);this.#T(W,null,W[y8],0,X.children),z7(Z,W,J);break}case W7:{let W=this.#q(K,Y,X);z7(Z,W,J);break}case Z8:{let W=this.#q(K,Y,X);z7(Z,W,J),this.#T(Z,J,W[y8],0,X.children);break}case My:{let W=this.#A(K,Y,X);this.#S({node:W},X),z7(Z,W,J);break}}}#A(Z,J,{kind:K,key:Y,tag:X,namespace:W,attributes:V}){let G=J$(W||wJ,X);if(f8(K,Z,G,J,Y),this.#Y&&Y)Ff(G,"data-lustre-key",Y);return C5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:Y,content:X}){let W=K$(X??"");return f8(K,Z,W,J,Y),W}#E(Z,J){let{debouncers:K,handlers:Y,throttles:X}=Z[y8],{kind:W,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(W){case JR:{let F=G??"";if(V==="virtual:defaultValue"){Z.defaultValue=F;return}else if(V==="virtual:defaultChecked"){Z.defaultChecked=!0;return}else if(V==="virtual:defaultSelected"){Z.defaultSelected=!0;return}if(F!==W$(Z,V))Ff(Z,V,F);Bf[V]?.added?.(Z,F);break}case KR:Z[V]=G;break;case YR:{if(Y.has(V))Hf(Z,V,cR);let F=I.kind===XR;V$(Z,V,cR,{passive:F}),this.#B(X,V,N),this.#B(K,V,z),Y.set(V,(D)=>this.#x(J,D));break}}}#B(Z,J,K){let Y=Z.get(J);if(K>0)if(Y)Y.delay=K;else Z.set(J,{delay:K});else if(Y){let{timeout:X}=Y;if(X)dR(X);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:Y}=J,{debouncers:X,throttles:W}=K[y8],V=z$(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===QR)J.preventDefault();if(I.kind===QR)J.stopPropagation();if(Y==="submit")J.detail??={},J.detail.formData=[...new FormData(J.target,J.submitter).entries()];let N=this.#X(J,V,Y,z),F=W.get(Y);if(F){let B=Date.now(),P=F.last||0;if(B>P+F.delay)F.last=B,F.lastEvent=J,this.#K(J,N)}let D=X.get(Y);if(D)dR(D.timeout),D.timeout=Z$(()=>{if(J===W.get(Y)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var C5=(Z,J)=>{if(Array.isArray(Z))for(let K=0;K<Z.length;K++)J(Z[K]);else if(Z)for(Z;Z.head;Z=Z.tail)J(Z.head)},cR=(Z)=>{let{currentTarget:J,type:K}=Z;J[y8].handlers.get(K)(Z)},Df=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},N$=(Z)=>{return{added(J,K){J[Z]=K}}},Bf={checked:Df("checked"),selected:Df("selected"),value:N$("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function F$(Z,J,K){while(!0){let Y=Z,X=J,W=K;if(Y instanceof U)return[X,G0(W)];else{let V=Y.tail,G=Y.head[0],I=Y.head[1],z=Uy(G,I),N;if(G==="")N=X;else N=T5(X,G,z);let F=N,D=C(z,W);Z=V,J=F,K=D}}}function nR(Z){return F$(Z,B1(),t)}function Tf(Z,J,K){let Y=nR(K),X,W;return X=Y[0],W=Y[1],X7("",D0,"",Z,J,W,X,!1,Y7(Z,""))}function Pf(Z,J,K,Y){let X=nR(Y),W,V;return W=X[0],V=X[1],X7("",D0,Z,J,K,V,W,!1,Y7(J,Z))}function Sf(Z){let J=nR(Z),K,Y;return K=J[0],Y=J[1],yJ("",D0,Y,K)}var Af=(Z)=>{let J=f8(P5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(qf(V))K+=1;if(K===0){let V=c1().createTextNode("");return f8(W7,J,V,0,null),Z.replaceChildren(V),z0()}if(K===1)return lR(J,Z).head[1];let Y=c1().createTextNode(""),X=f8(Z8,J,Y,0,null),W=lR(X,Z);return Z.insertBefore(Y,Z.firstChild),Sf(W)},qf=(Z)=>{switch(Z.nodeType){case UJ:return!0;case eM:return!!Z.data;default:return!1}},H$=(Z,J,K,Y)=>{if(!qf(J))return null;switch(J.nodeType){case UJ:{let X=f8(P5,Z,J,Y,K),W=J.localName,V=J.namespaceURI,G=!V||V===wJ;if(G&&D$.includes(W))B$(W,J);let I=O$(J),z=lR(X,J);return G?Tf(W,I,z):Pf(V,W,I,z)}case eM:return f8(W7,Z,J,Y,null),w(J.data);default:return null}},D$=["input","select","textarea"],B$=(Z,J)=>{let{value:K,checked:Y}=J;if(Z==="input"&&J.type==="checkbox"&&!Y)return;if(Z==="input"&&J.type==="radio"&&!Y)return;if(J.type!=="checkbox"&&J.type!=="radio"&&!K)return;queueMicrotask(()=>{if(J.value=K,J.checked=Y,J.dispatchEvent(new Event("input",{bubbles:!0})),J.dispatchEvent(new Event("change",{bubbles:!0})),c1().activeElement!==J)J.dispatchEvent(new Event("blur",{bubbles:!0}))})},lR=(Z,J)=>{let K=null,Y=J.firstChild,X=null,W=0;while(Y){let V=Y.nodeType===UJ?Y.getAttribute("data-lustre-key"):null;if(V!=null)Y.removeAttribute("data-lustre-key");let G=H$(Z,Y,V,W),I=Y.nextSibling;if(G){let z=new M1([V??"",G],null);if(X)X=X.tail=z;else X=K=z;W+=1}else J.removeChild(Y);Y=I}if(!X)return t;return X.tail=t,K},O$=(Z)=>{let J=Z.attributes.length,K=t;while(J-- >0){let Y=Z.attributes[J];if(Y.name==="xmlns")continue;K=new M1(T$(Y),K)}return K},T$=(Z)=>{let{localName:J,value:K}=Z;return M(J,K)};var i8=()=>!!c1();class dJ{constructor(Z,[J,K],Y,X){this.root=Z,this.#Z=J,this.#X=Y,this.#K=X,this.root.addEventListener("context-request",(G)=>{if(!(G.context&&G.callback))return;if(!this.#Q.has(G.context))return;G.stopImmediatePropagation();let I=this.#Q.get(G.context);if(G.subscribe){let z=()=>{I.subscribers=I.subscribers.filter((N)=>N!==G.callback)};I.subscribers.push([G.callback,z]),G.callback(I.value,z)}else G.callback(I.value)});let W=(G,I,z)=>xR(this.#J,I,z,G),V=(G,I)=>{let[z,N]=wR(this.#J,I);if(this.#J=z,N.isOk()){let F=N[0];if(F.stop_propagation)G.stopPropagation();if(F.prevent_default)G.preventDefault();this.dispatch(F.message,!1)}};this.#W=new pR(this.root,W,V),this.#Y=Af(this.root),this.#J=CR(),this.#H(K),this.#D()}root=null;dispatch(Z,J=!1){if(this.#G)this.#N.push(Z);else{let[K,Y]=this.#K(this.#Z,Z);this.#Z=K,this.#F(Y,J)}}emit(Z,J){(this.root.host??this.root).dispatchEvent(new CustomEvent(Z,{detail:J,bubbles:!0,composed:!0}))}provide(Z,J){if(!this.#Q.has(Z))this.#Q.set(Z,{value:J,subscribers:[]});else{let K=this.#Q.get(Z);if(J8(K.value,J))return;K.value=J;for(let Y=K.subscribers.length-1;Y>=0;Y--){let[X,W]=K.subscribers[Y];if(!X){K.subscribers.splice(Y,1);continue}X(J,W)}}}#Z;#X;#K;#Y;#J;#W;#Q=new Map;#G=!1;#N=[];#I=t;#z=t;#V=null;#O={dispatch:(Z)=>this.dispatch(Z),emit:(Z,J)=>this.emit(Z,J),select:()=>{},root:()=>this.root,provide:(Z,J)=>this.provide(Z,J)};#F(Z,J=!1){if(this.#H(Z),!this.#V)if(J)this.#V="sync",queueMicrotask(()=>this.#D());else this.#V=requestAnimationFrame(()=>this.#D())}#H(Z){this.#G=!0;while(!0){for(let K=Z.synchronous;K.tail;K=K.tail)K.head(this.#O);if(this.#I=Cf(this.#I,Z.before_paint),this.#z=Cf(this.#z,Z.after_paint),!this.#N.length)break;let J=this.#N.shift();[this.#Z,Z]=this.#K(this.#Z,J)}this.#G=!1}#D(){this.#V=null;let Z=this.#X(this.#Z),{patch:J,events:K}=I7(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof M1){let Y=Ef(this.#I);this.#I=t,queueMicrotask(()=>{this.#F(Y,!0)})}if(this.#z instanceof M1){let Y=Ef(this.#z);this.#z=t,requestAnimationFrame(()=>{this.#F(Y,!0)})}}}function Ef(Z){return{synchronous:Z,after_paint:t,before_paint:t}}function Cf(Z,J){if(Z instanceof U)return J;else if(J instanceof U)return Z;else return k0(Z,J)}class rR extends O{constructor(Z){super();this.message=Z}}class sR extends O{constructor(Z){super();this.callback=Z}}class aR extends O{constructor(Z){super();this.callback=Z}}class r8 extends O{constructor(Z){super();this.message=Z}}class x5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class cJ extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class w5 extends O{}class Uf extends O{constructor(Z,J,K,Y,X,W,V,G,I,z){super();this.open_shadow_root=Z,this.adopt_styles=J,this.delegates_focus=K,this.attributes=Y,this.properties=X,this.contexts=W,this.is_form_associated=V,this.on_form_autofill=G,this.on_form_reset=I,this.on_form_restore=z}}function Mf(Z){let J=new Uf(!0,!0,!1,t,t,t,!1,MJ,MJ,MJ);return j0(Z,J,(K,Y)=>{return Y.apply(K)})}class jf{#Z;constructor(Z,[J,K],Y,X){this.#Z=new dJ(Z,[J,K],X,Y)}send(Z){switch(Z.constructor){case r8:{this.dispatch(Z.message,!1);break}case x5:{this.emit(Z.name,Z.data);break}case w5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var Lf=({init:Z,update:J,view:K},Y,X)=>{if(!i8())return new v(new jZ);let W=Y instanceof HTMLElement?Y:c1().querySelector(Y);if(!W)return new v(new tR(Y));return new E(new jf(W,Z(X),J,K))};class P${#Z;#X;#K;#Y;#J;#W;#Q=R0();#G=new Set;constructor([Z,J],K,Y,X){this.#Z=Z,this.#X=K,this.#K=Y,this.#Y=X,this.#J=this.#K(this.#Z),this.#W=UR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case rR:{let{message:J}=Z,K=this.#N(J),Y=I7(this.#W,this.#J,K);this.#J=K,this.#W=Y.events,this.broadcast(mR(Y.patch));return}case sR:{let{callback:J}=Z;this.#G.add(J),J(Xf(this.#Y.open_shadow_root,this.#Y.adopt_styles,q8(this.#Y.attributes),q8(this.#Y.properties),q8(this.#Y.contexts),this.#Q,this.#J));return}case aR:{let{callback:J}=Z;this.#G.delete(J);return}case r8:{let{message:J}=Z,[K,Y]=this.#X(this.#Z,J),X=this.#K(K),W=I7(this.#W,this.#J,X);this.#V(Y),this.#Z=K,this.#J=X,this.#W=W.events,this.broadcast(mR(W.patch));return}case x5:{let{name:J,data:K}=Z;this.broadcast(Wf(J,K));return}case cJ:{let{key:J,value:K}=Z,Y=F0(this.#Q,J);if(Y.isOk()&&J8(Y[0],K))return;this.#Q=c0(this.#Q,J,K),this.broadcast(Qf(J,K));return}case w5:{this.#Z=null,this.#X=null,this.#K=null,this.#Y=null,this.#J=null,this.#W=null,this.#Q=null,this.#G.clear();return}default:return}}broadcast(Z){for(let J of this.#G)J(Z)}#N(Z){switch(Z.constructor){case $J:{let{messages:J}=Z,K=this.#Z,Y=l();for(let X=J;X.head;X=X.tail){let W=this.#N(X.head);if(W instanceof E){K=W[0][0],Y=Y1(i0.fromArray([Y,W[0][1]]));break}}return this.#V(Y),this.#Z=K,this.#K(this.#Z)}case gJ:{let{name:J,value:K}=Z,Y=this.#I(J,K);if(Y instanceof v)return this.#J;else{let[X,W]=this.#X(this.#Z,Y[0]);return this.#V(W),this.#Z=X,this.#K(this.#Z)}}case _J:{let{name:J,value:K}=Z,Y=this.#z(J,K);if(Y instanceof v)return this.#J;else{let[X,W]=this.#X(this.#Z,Y[0]);return this.#V(W),this.#Z=X,this.#K(this.#Z)}}case mJ:{let{path:J,name:K,event:Y}=Z,[X,W]=kJ(this.#W,J,K,Y);if(this.#W=X,W instanceof v)return this.#J;else{let[V,G]=this.#X(this.#Z,W[0].message);return this.#V(G),this.#Z=V,this.#K(this.#Z)}}case _R:{let{key:J,value:K}=Z,Y=F0(this.#Y.contexts,J);if(Y instanceof v)return this.#J;if(Y=W0(K,Y[0]),Y instanceof v)return this.#J;let[X,W]=this.#X(this.#Z,Y[0]);return this.#V(W),this.#Z=X,this.#K(this.#Z)}}}#I(Z,J){let K=F0(this.#Y.attributes,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#z(Z,J){let K=F0(this.#Y.properties,Z);switch(K.constructor){case E:return K[0](J);case v:return new v(void 0)}}#V(Z){let J=(V)=>this.send(new r8(V)),K=(V,G)=>this.send(new x5(V,G)),Y=()=>{return},X=()=>{return},W=(V,G)=>this.send(new cJ(V,G));globalThis.queueMicrotask(()=>{qy(Z,J,K,Y,X,W)})}}class yf extends O{constructor(Z,J,K,Y){super();this.init=Z,this.update=J,this.view=K,this.config=Y}}class tR extends O{constructor(Z){super();this.selector=Z}}class jZ extends O{}function ff(Z,J,K){return new yf(Z,J,K,Mf(t))}function kf(Z,J,K){return Z7(!i8(),new v(new jZ),()=>{return Lf(Z,J,K)})}var q$={handle_external_links:!1,handle_internal_links:!0},$f=globalThis?.window?.location?.href,Zj=()=>{if(!$f)return new v(void 0);else return new E(eR(new URL($f)))},Jj=(Z,J=q$)=>{document.addEventListener("click",(K)=>{let Y=_f(K.target);if(!Y)return;try{let X=new URL(Y.href),W=eR(X),V=X.host!==window.location.host||Y.target==="_blank";if(!J.handle_external_links&&V)return;if(!J.handle_internal_links&&!V)return;if(K.preventDefault(),!V)window.history.pushState({},"",Y.href),window.requestAnimationFrame(()=>{if(X.hash)document.getElementById(X.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)});return Z(W)}catch{return}}),window.addEventListener("popstate",(K)=>{K.preventDefault();let Y=new URL(window.location.href),X=eR(Y);window.requestAnimationFrame(()=>{if(Y.hash)document.getElementById(Y.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)}),Z(X)}),window.addEventListener("modem-push",({detail:K})=>{Z(K)}),window.addEventListener("modem-replace",({detail:K})=>{Z(K)})},gf=(Z)=>{window.history.pushState({},"",CJ(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var _f=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return _f(Z.parentElement)},eR=(Z)=>{return new Y0(Z.protocol?new L(Z.protocol.slice(0,-1)):new h,new h,Z.hostname?new L(Z.hostname):new h,Z.port?new L(Number(Z.port)):new h,Z.pathname,Z.search?new L(Z.search.slice(1)):new h,Z.hash?new L(Z.hash.slice(1)):new h)};function uf(Z){return V1((J)=>{return Z7(!i8(),void 0,()=>{return Jj((K)=>{let X=Z(K);return J(X)})})})}function mf(Z){if(Z==="")return new h;else return new L(Z)}var pJ=new Y0(new h,new h,new h,new h,"",new h,new h);function U5(Z,J,K){return V1((Y)=>{return Z7(!i8(),void 0,()=>{return gf(new Y0(pJ.scheme,pJ.userinfo,pJ.host,pJ.port,Z,qM(J,mf),qM(K,mf)))})})}class df extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class Kj extends O{constructor(Z){super();this.queries=Z}}function cf(){return new Kj(R0())}function a0(Z,J,K,Y){let X=new df(K,Y);return new Kj(c0(Z.queries,J,X))}function Yj(Z,J){return F0(Z.queries,J)}class lJ extends O{}class iJ extends O{}class pf extends O{}class nf extends O{}class lf extends O{}class rf extends O{}class sf extends O{}class af extends O{}class tf extends O{}class Xj extends O{}class rJ extends O{}function of(Z){if(Z instanceof lJ)return"GET";else if(Z instanceof iJ)return"POST";else if(Z instanceof pf)return"HEAD";else if(Z instanceof nf)return"PUT";else if(Z instanceof lf)return"DELETE";else if(Z instanceof rf)return"TRACE";else if(Z instanceof sf)return"CONNECT";else if(Z instanceof af)return"OPTIONS";else if(Z instanceof tf)return"PATCH";else return Z[0]}function ef(Z){if(Z instanceof Xj)return"http";else return"https"}function Zk(Z){let J=m1(Z);if(J==="http")return new E(new Xj);else if(J==="https")return new E(new rJ);else return new v(void 0)}class LZ extends O{constructor(Z,J,K,Y,X,W,V,G){super();this.method=Z,this.headers=J,this.body=K,this.scheme=Y,this.host=X,this.port=W,this.path=V,this.query=G}}function Kk(Z){return new Y0(new L(ef(Z.scheme)),new h,new L(Z.host),Z.port,Z.path,Z.query,new h)}function U$(Z){return A1((()=>{let J=Z.scheme,K=XL(J,"");return Zk(K)})(),(J)=>{return A1((()=>{let K=Z.host;return SM(K,void 0)})(),(K)=>{let Y=new LZ(new lJ,Q([]),"",J,K,Z.port,Z.path,Z.query);return new E(Y)})})}function Wj(Z,J,K){let Y=_M(Z.headers,m1(J),K);return new LZ(Z.method,Y,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Yk(Z,J){return new LZ(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Xk(Z,J){return new LZ(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Wk(Z){let K=aM(Z);return A1(K,U$)}class Qj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class M5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new M5(Z):Z}static unwrap(Z){return Z instanceof M5?Z.promise:Z}}function N8(Z){return Promise.resolve(M5.wrap(Z))}function aJ(Z,J){return Z.then((K)=>J(M5.unwrap(K)))}function tJ(Z,J){return Z.then((K)=>M5.wrap(J(M5.unwrap(K))))}function Gj(Z){return new Qj(Z.status,i0.fromArray([...Z.headers]),Z)}function L$(Z){let J=CJ(Kk(Z)),K=of(Z.method).toUpperCase(),Y={headers:y$(Z.headers),method:K};return[J,Y]}function Ij(Z){let[J,K]=L$(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function y$(Z){let J=new globalThis.Headers;for(let[K,Y]of Z)J.append(K.toLowerCase(),Y);return J}async function oJ(Z){let J;try{J=await Z.body.text()}catch(K){return new v(new zj)}return new E(Z.withFields({body:J}))}class eJ extends O{constructor(Z){super();this[0]=Z}}class zj extends O{}class Vk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function Nj(Z,J){return new Vk(Z,J)}function o0(Z,J,K){let Y=b(Q([["query",n(J)],["variables",K]]));return A1((()=>{let X=Wk(Z.endpoint);return s5(X,(W)=>{return"Invalid endpoint URL"})})(),(X)=>{let W,G=Xk(X,new iJ),I=Yk(G,C8(Y));W=Wj(I,"content-type","application/json");let z=W,N=j0(Z.headers,z,(F,D)=>{return Wj(F,D[0],D[1])});return new E(N)})}function B0(Z,J){return A1((()=>{let K=u1(Z,C0);return s5(K,(Y)=>{return"Failed to decode JSON response"})})(),(K)=>{let Y=g("data",J,(W)=>{return i(W)}),X=W0(K,Y);return s5(X,(W)=>{return"Failed to decode response data: "+SJ(W)+". Response body: "+Z})})}async function Fj(Z){try{let J=Ij(Z),K=new Request(J,{credentials:"include"}),Y=await fetch(K),X=Gj(Y);return new E(X)}catch(J){return new v(new eJ(J.toString()))}}var Fk="src/squall_cache.gleam";class C1 extends O{}class x1 extends O{constructor(Z){super();this[0]=Z}}class w1 extends O{constructor(Z){super();this[0]=Z}}class ZK extends O{}class Hk extends O{}class Hj extends O{}class fZ extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class U1 extends O{constructor(Z,J,K,Y,X,W,V,G){super();this.entities=Z,this.optimistic_entities=J,this.optimistic_mutations=K,this.queries=Y,this.pending_fetches=X,this.get_headers=W,this.mutation_counter=V,this.endpoint=G}}function Dk(Z){return new U1(R0(),R0(),R0(),R0(),H5(),()=>{return Q([])},0,Z)}function JK(Z,J){return Z+":"+C8(J)}function Gk(Z){let J=DJ(Z);if(J instanceof E){let K=J[0][0],Y=J[0][1];return BJ(K)+Y}else return Z}function Dj(Z){let K=G0(Z),Y=$M(K,(X)=>{if(X==="data")return new v(void 0);else if(X==="results")return new v(void 0);else if(X==="edges")return new v(void 0);else if(X==="node")return new v(void 0);else if(OJ(X,"s")){let V=t1(X),G=mL(X,0,V-1);return new E(Gk(G))}else return new E(Gk(X))});return a5(Y,"Entity")}function b$(Z){if(F0(Z,"node")instanceof E)return!0;else return!1}function v$(Z){let J=W0(Z,E0(C0));if(J instanceof E){let K=J[0];if(K instanceof U)return!1;else{let Y=K.head,X=W0(Y,E8(u,C0));if(X instanceof E){let W=X[0];return b$(W)}else return!1}}else return!1}function h$(Z,J,K){let Y=JK(J,K),X=F0(Z.queries,Y);if(X instanceof E){let W=X[0],V=new fZ(W.data,W.timestamp,new Hj),G=c0(Z.queries,Y,V);return new U1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let W=new fZ("",0,new Hj),V=c0(Z.queries,Y,W);return new U1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function v0(Z,J,K){let Y=JK(J,K),X=Q8(Z.queries,Y);return new U1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,X,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function $$(Z,J,K,Y){let X,W=F0(Z.optimistic_entities,K);if(W instanceof E){let I=W[0];X=new L(I)}else{let I=F0(Z.entities,K);if(I instanceof E){let z=I[0];X=new L(z)}else X=new h}let G=Y(X);return new U1(Z.entities,c0(Z.optimistic_entities,K,G),c0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Bk(Z,J){let K=F0(Z.optimistic_mutations,J);if(K instanceof E){let Y=K[0];return new U1(Z.entities,Q8(Z.optimistic_entities,Y),Q8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}function Ok(Z){return!bM(Z.optimistic_mutations)}function N7(Z){let J=W0(Z,E8(u,C0));if(J instanceof E){let Y=J[0],X=m8(Y),W=I0(X,(V)=>{let G,I;return G=V[0],I=V[1],[G,N7(I)]});return b(W)}else{let K=W0(Z,E0(C0));if(K instanceof E){let Y=K[0];return x0(Y,N7)}else{let Y=W0(Z,u);if(Y instanceof E){let X=Y[0];return n(X)}else{let X=W0(Z,d0);if(X instanceof E){let W=X[0];return K1(W)}else{let W=W0(Z,CL);if(W instanceof E){let V=W[0];return oL(V)}else{let V=W0(Z,W1);if(V instanceof E){let G=V[0];return d1(G)}else return rM()}}}}}}function g$(Z,J){let K=C8(Z),Y=C8(J),X=u1(K,C0),W=u1(Y,C0);if(X instanceof E&&W instanceof E){let V=X[0],G=W[0],I=W0(V,E8(u,C0)),z=W0(G,E8(u,C0));if(I instanceof E&&z instanceof E){let N=I[0],F=z[0],D,B=k0(q8(N),q8(F));D=OL(B);let T=u5(D,(S)=>{let A,q=F0(F,S);if(q instanceof E)A=q;else A=F0(N,S);let j=A;if(j instanceof E){let f=j[0];return new E([S,N7(f)])}else return new v(void 0)});return b(T)}else return J}else return J}function k8(Z,J){return _5(J,Z,(K,Y,X)=>{let W=F0(K,Y);if(W instanceof E){let V=W[0],G=g$(V,X);return c0(K,Y,G)}else return c0(K,Y,X)})}function Ik(Z){let J=n5(Z,":");if(J instanceof E){let K=J[0][0],Y=J[0][1],X=u1(Y,C0);if(X instanceof E){let W=X[0];return new E([K,N7(W)])}else return new E([K,rM()])}else return new v(void 0)}function _$(Z,J,K,Y,X,W,V){let G=Yj(J,K);if(G instanceof E){let I=G[0];return V1((z)=>{let N=Z.get_headers(),F=Nj(Z.endpoint,N),D=o0(F,I.query,Y),B;if(D instanceof E)B=D[0];else throw g8("let_assert",Fk,"squall_cache",767,"create_mutation_effect","Pattern match failed, no pattern matched the value.",{value:D,start:24617,end:24701,pattern_start:24628,pattern_end:24635});let P,T=Fj(B);P=tJ(T,(A)=>{if(A instanceof E){let q=A[0],j=oJ(q);return aJ(j,(f)=>{if(f instanceof E){let x=f[0],y=W(x.body);if(y instanceof E){let $=y[0];return z(V(X,new E($),x.body)),N8(void 0)}else{let $=y[0];return z(V(X,new v("Parse error: "+$),x.body)),N8(void 0)}}else return z(V(X,new v("Failed to read response"),"")),N8(void 0)})}else return z(V(X,new v("Failed to fetch"),"")),N8(void 0)});let S=P;return})}else return V1((I)=>{I(V(X,new v("Query not found in registry"),""));return})}function KK(Z,J,K,Y,X,W,V,G){let I="mutation-"+J1(Z.mutation_counter),z=$$(Z,I,X,W),N=new U1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=_$(N,J,K,Y,I,V,G);return[N,I,F]}function m$(Z,J,K,Y,X){return V1((W)=>{let V=Z.get_headers(),G=Nj(Z.endpoint,V),I=o0(G,J,Y),z;if(I instanceof E)z=I[0];else throw g8("let_assert",Fk,"squall_cache",1073,"create_fetch_effect","Pattern match failed, no pattern matched the value.",{value:I,start:34411,end:34480,pattern_start:34422,pattern_end:34429});let N,F=Fj(z);N=tJ(F,(B)=>{if(B instanceof E){let P=B[0],T=oJ(P);return aJ(T,(S)=>{if(S instanceof E){let A=S[0];return W(X(K,Y,new E(A.body))),N8(void 0)}else return W(X(K,Y,new v("Failed to read response"))),N8(void 0)})}else return W(X(K,Y,new v("Failed to fetch"))),N8(void 0)});let D=N;return})}function h0(Z,J,K,Y){let X=Jy(Z.pending_fetches),W=u5(X,(I)=>{let z=Ik(I);if(z instanceof E){let N=z[0][0],F=z[0][1],D=Yj(J,N);if(D instanceof E){let B=D[0];return new E(m$(Z,B.query,N,F,K))}else return new v(void 0)}else return new v(void 0)}),V=j0(X,Z,(I,z)=>{let N=Ik(z);if(N instanceof E){let F=N[0][0],D=N[0][1];return h$(I,F,D)}else return I});return[new U1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,H5(),V.get_headers,V.mutation_counter,V.endpoint),W]}function zk(Z,J,K){let Y=m8(Z),X=I0(Y,(W)=>{let V,G;return V=W[0],G=W[1],[V,Bj(G,J,K)]});return b(X)}function Bj(Z,J,K){let Y=W0(Z,E8(u,C0));if(Y instanceof E){let X=Y[0],W=F0(X,"__ref");if(W instanceof E){let V=W[0],G=W0(V,u);if(G instanceof E){let I=G[0],z=F0(J,I);if(z instanceof E)return z[0];else{let N=F0(K,I);if(N instanceof E)return N[0];else return b(Q([["__ref",n(I)]]))}}else return zk(X,J,K)}else return zk(X,J,K)}else{let X=W0(Z,E0(C0));if(X instanceof E){let W=X[0];return x0(W,(V)=>{return Bj(V,J,K)})}else return N7(Z)}}function Nk(Z,J,K){let Y=u1(Z,C0);if(Y instanceof E){let X=Y[0],W=Bj(X,J,K);return C8(W)}else return Z}function a(Z,J,K,Y){let X=JK(J,K),W=F0(Z.queries,X);if(W instanceof E){let V=W[0],G=V.status;if(G instanceof ZK){let I=Nk(V.data,Z.optimistic_entities,Z.entities),z=Y(I);if(z instanceof E){let N=z[0];return[Z,new w1(N)]}else{let N=z[0];return[Z,new x1("Parse error: "+N)]}}else if(G instanceof Hk){let I=Nk(V.data,Z.optimistic_entities,Z.entities),z=Y(I);if(z instanceof E){let N=z[0];return[Z,new w1(N)]}else{let N=z[0];return[Z,new x1("Parse error: "+N)]}}else return[Z,new C1]}else return[new U1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,TZ(Z.pending_fetches,X),Z.get_headers,Z.mutation_counter,Z.endpoint),new C1]}function u$(Z,J){let K=j0(Z,[R0(),Q([]),H5()],(W,V)=>{let G,I,z;G=W[0],I=W[1],z=W[2];let N=W0(V,E8(u,C0));if(N instanceof E){let F=N[0],D=F0(F,"node");if(D instanceof E){let B=D[0],P,T=W0(B,E8(u,C0));if(T instanceof E){let A=T[0],q=F0(A,"id");if(q instanceof E){let j=q[0],f=W0(j,u);if(f instanceof E){let x=f[0],y,$=F0(A,"__typename");if($ instanceof E){let p=$[0],s=W0(p,u);if(s instanceof E)y=s[0];else y="Node"}else y=Dj(k0(J,Q(["node"])));P=new L(y+":"+x)}else P=new h}else P=new h}else P=new h;let S=P;if(S instanceof L){let A=S[0];if(o5(z,A))return W;else{let j=yZ(F,J),f,x;return f=j[0],x=j[1],[k8(G,f),k0(I,Q([x])),TZ(z,A)]}}else{let A=yZ(F,J),q,j;return q=A[0],j=A[1],[k8(G,q),k0(I,Q([j])),z]}}else{let B=yZ(F,J),P,T;return P=B[0],T=B[1],[k8(G,P),k0(I,Q([T])),z]}}else{let F=kZ(V,J),D,B;return D=F[0],B=F[1],[k8(G,D),k0(I,Q([B])),z]}}),Y,X;return Y=K[0],X=K[1],[Y,x0(X,(W)=>{return W})]}function kZ(Z,J){let K=W0(Z,E8(u,C0));if(K instanceof E){let Y=K[0],X=F0(Y,"id");if(X instanceof E){let W=X[0],V=W0(W,u);if(V instanceof E){let G=V[0],I,z=F0(Y,"__typename");if(z instanceof E){let f=z[0],x=W0(f,u);if(x instanceof E)I=x[0];else I=Dj(J)}else I=Dj(J);let F=I+":"+G,D,B=m8(Y);D=I0(B,(f)=>{let x,y;x=f[0],y=f[1];let $=k0(J,Q([x])),c=kZ(y,$),p,s;return p=c[0],s=c[1],[x,p,s]});let P=D,T=j0(P,R0(),(f,x)=>{let y;return y=x[1],k8(f,y)}),S,A=I0(P,(f)=>{let x,y;return x=f[0],y=f[2],[x,y]});return S=b(A),[c0(T,F,S),b(Q([["__ref",n(F)]]))]}else return yZ(Y,J)}else return yZ(Y,J)}else{let Y=W0(Z,E0(C0));if(Y instanceof E){let X=Y[0];if(v$(Z))return u$(X,J);else{let V=I0(X,(z)=>{return kZ(z,J)}),G=j0(V,R0(),(z,N)=>{let F;return F=N[0],k8(z,F)}),I=I0(V,(z)=>{let N;return N=z[1],N});return[G,x0(I,(z)=>{return z})]}}else return[R0(),N7(Z)]}}function Tk(Z){return kZ(Z,Q([]))}function Pk(Z,J,K,Y,X){let W=JK(J,K),V=u1(Y,C0);if(V instanceof E){let G=V[0],I=Tk(G),z,N;z=I[0],N=I[1];let F=k8(Z.entities,z),D=C8(N),B=new fZ(D,X,new ZK),P=c0(Z.queries,W,B);return new U1(F,Z.optimistic_entities,Z.optimistic_mutations,P,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new fZ(Y,X,new ZK),I=c0(Z.queries,W,G);return new U1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function yZ(Z,J){let K,Y=m8(Z);K=I0(Y,(z)=>{let N,F;N=z[0],F=z[1];let D=k0(J,Q([N])),B=kZ(F,D),P,T;return P=B[0],T=B[1],[N,P,T]});let X=K,W=j0(X,R0(),(z,N)=>{let F;return F=N[1],k8(z,F)}),V,G=I0(X,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=b(G),[W,V]}function Sk(Z,J,K){let Y=F0(Z.optimistic_mutations,J);if(Y instanceof E){let X=Y[0],W=u1(K,C0);if(W instanceof E){let V=W[0],G=Tk(V),I;I=G[0];let z=k8(Z.entities,I);return new U1(z,Q8(Z.optimistic_entities,X),Q8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return new U1(Z.entities,Q8(Z.optimistic_entities,X),Q8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}class Ak extends O{constructor(Z){super();this.is_backfilling=Z}}function d$(){return g("isBackfilling",W1,(Z)=>{return i(new Ak(Z))})}function bZ(Z){return B0(Z,d$())}class YK extends O{}class b8 extends O{}class F8 extends O{}class R5 extends O{}function Ek(Z,J,K){let Y=b(Q([])),X=v0(Z,"IsBackfilling",Y),W=a(X,"IsBackfilling",Y,bZ),V;return V=W[0],h0(V,J,K,()=>{return 0})}function Ck(Z,J){if(J)if(Z instanceof b8)return new F8;else if(Z instanceof F8)return Z;else return Z;else if(Z instanceof b8)return Z;else if(Z instanceof F8)return new R5;else return Z}function j5(Z){if(Z instanceof b8)return!0;else if(Z instanceof F8)return!0;else return!1}function a8(Z,J){return By(Z,DZ(J,(K)=>{return new AZ(!1,!1,K)}),t,WR,WR,0,0)}function w0(Z){return a8("click",i(Z))}function P1(Z){return a8("input",FJ(Q(["target","value"]),u,(J)=>{return i(Z(J))}))}function wk(Z){return a8("change",FJ(Q(["target","value"]),u,(J)=>{return i(Z(J))}))}var F7=null;function Uk(Z,J,K){if(F7)clearTimeout(F7);if(!Z||Z.trim()===""){K(new E(Q([])));return}F7=setTimeout(async()=>{try{let Y=new URL("https://public.api.bsky.app/xrpc/app.bsky.actor.searchActorsTypeahead");Y.searchParams.set("q",Z),Y.searchParams.set("limit","5");let X=await fetch(Y.toString());if(!X.ok){K(new v("Search failed"));return}let V=((await X.json()).actors||[]).map((G)=>new vZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new L(G.avatar):new h));K(new E(Q(V)))}catch(Y){K(new v(Y.message||"Search failed"))}},J)}function Mk(){if(F7)clearTimeout(F7),F7=null}class vZ extends O{constructor(Z,J,K,Y){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=Y}}class H8 extends O{constructor(Z,J,K,Y){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=Y}}class XK extends O{constructor(Z){super();this[0]=Z}}class H7 extends O{constructor(Z){super();this[0]=Z}}class hZ extends O{constructor(Z){super();this[0]=Z}}class WK extends O{}class QK extends O{}class $Z extends O{}class Oj extends O{}function Rk(){return new H8("",Q([]),-1,!1)}function D8(Z,J){if(J instanceof XK){let K=J[0],Y=V1((X)=>{return Uk(K,300,(W)=>{return X(new H7(W))})});return[new H8(K,Z.actors,Z.highlighted_index,K!==""),Y]}else if(J instanceof H7){let K=J[0];if(K instanceof E){let Y=K[0];return[new H8(Z.query,Y,-1,Z.is_open),l()]}else return[new H8(Z.query,Q([]),-1,Z.is_open),l()]}else if(J instanceof hZ){let K=J[0];return[new H8(K.handle,Q([]),-1,!1),l()]}else if(J instanceof WK){let K=V8(Z.actors),Y;if(Z.highlighted_index<K-1)Y=Z.highlighted_index+1;else Y=0;let W=Y;return[new H8(Z.query,Z.actors,W,Z.is_open),l()]}else if(J instanceof QK){let K=V8(Z.actors),Y;if(Z.highlighted_index>0)Y=Z.highlighted_index-1;else Y=K-1;let W=Y;return[new H8(Z.query,Z.actors,W,Z.is_open),l()]}else if(J instanceof $Z)return Mk(),[new H8(Z.query,Z.actors,-1,!1),l()];else return[new H8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),l()]}function jk(Z){if(Z.highlighted_index>=0){let K=Z.actors,Y=d5(K,Z.highlighted_index),X=DL(Y);return AM(X)}else return new h}function c$(Z,J,K){let Y;if(J)Y="bg-zinc-700";else Y="hover:bg-zinc-700";return R(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+Y),a8("mousedown",i(K(Z.handle)))]),Q([(()=>{let W=Z.avatar;if(W instanceof L){let V=W[0];return gy(Q([Ty(V),H("w-8 h-8 rounded-full flex-shrink-0"),Oy("")]))}else return z0()})(),R(Q([H("flex-1 min-w-0")]),Q([(()=>{let W=Z.display_name;if(W==="")return z0();else{let V=W;return R(Q([H("text-sm text-zinc-200 truncate")]),Q([w(V)]))}})(),R(Q([H("text-xs text-zinc-400 truncate")]),Q([w("@"+Z.handle)]))]))]))}function p$(Z,J){return R(Q([H("absolute z-50 w-full mt-1 bg-zinc-800 border border-zinc-700 rounded shadow-lg max-h-60 overflow-y-auto")]),zJ(Z.actors,(K,Y)=>{return c$(K,Y===Z.highlighted_index,J)}))}function gZ(Z,J,K,Y,X,W,V,G,I,z){return R(Q([H("relative")]),Q([v1(Q([b0("text"),z8(J),Sy(K),D1(Z.query),e1(Y),H(X),Ay(!0),M("autocomplete","off"),P1(W),a8("blur",i(I())),a8("focus",i(z())),a8("keydown",g("key",u,(N)=>{return i(G(N))}))])),(()=>{if(Z.is_open&&!O0(Z.actors,Q([])))return p$(Z,V);else return z0()})()]))}var y5="http://www.w3.org/2000/svg";function t8(Z){return f1(y5,"ellipse",Z,t)}function _Z(Z){return f1(y5,"rect",Z,t)}function VK(Z,J){return f1(y5,"defs",Z,J)}function f5(Z,J){return f1(y5,"g",Z,J)}function D7(Z,J){return f1(y5,"svg",Z,J)}function B7(Z,J){return f1(y5,"linearGradient",Z,J)}function B8(Z){return f1(y5,"stop",Z,t)}function Lk(Z){return D7(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),M("overflow","visible"),H(Z)]),Q([VK(Q([]),Q([B7(Q([z8("backfill-board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([B8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),B8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),B7(Q([z8("backfill-board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([B8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),B8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))])),q0("style",Q([]),Q([w(` 1 + var Ih=Object.defineProperty;var NL=(Z,J)=>{for(var K in J)Ih(Z,K,{get:J[K],enumerable:!0,configurable:!0,set:(X)=>J[K]=()=>X})};class O{withFields(Z){let J=Object.keys(this).map((K)=>(K in Z)?Z[K]:this[K]);return new this.constructor(...J)}}class r0{static fromArray(Z,J){let K=J||new U;for(let X=Z.length-1;X>=0;--X)K=new k1(Z[X],K);return K}[Symbol.iterator](){return new BL(this)}toArray(){return[...this]}atLeastLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return J!==void 0}hasLength(Z){let J=this;while(Z-- >0&&J)J=J.tail;return Z===-1&&J instanceof U}countLength(){let Z=this,J=0;while(Z)Z=Z.tail,J++;return J-1}}function A(Z,J){return new k1(Z,J)}function Q(Z,J){return r0.fromArray(Z,J)}class BL{#Z;constructor(Z){this.#Z=Z}next(){if(this.#Z instanceof U)return{done:!0};else{let{head:Z,tail:J}=this.#Z;return this.#Z=J,{value:Z,done:!1}}}}class U extends r0{}class k1 extends r0{constructor(Z,J){super();this.head=Z,this.tail=J}}var OL=(Z)=>Z instanceof k1,TL=(Z)=>Z.head,PL=(Z)=>Z.tail;class PZ{bitSize;byteSize;bitOffset;rawBuffer;constructor(Z,J,K){if(!(Z instanceof Uint8Array))throw globalThis.Error("BitArray can only be constructed from a Uint8Array");if(this.bitSize=J??Z.length*8,this.byteSize=Math.trunc((this.bitSize+7)/8),this.bitOffset=K??0,this.bitSize<0)throw globalThis.Error(`BitArray bit size is invalid: ${this.bitSize}`);if(this.bitOffset<0||this.bitOffset>7)throw globalThis.Error(`BitArray bit offset is invalid: ${this.bitOffset}`);if(Z.length!==Math.trunc((this.bitOffset+this.bitSize+7)/8))throw globalThis.Error("BitArray buffer length is invalid");this.rawBuffer=Z}byteAt(Z){if(Z<0||Z>=this.byteSize)return;return TZ(this.rawBuffer,this.bitOffset,Z)}equals(Z){if(this.bitSize!==Z.bitSize)return!1;let J=Math.trunc(this.bitSize/8);if(this.bitOffset===0&&Z.bitOffset===0){for(let X=0;X<J;X++)if(this.rawBuffer[X]!==Z.rawBuffer[X])return!1;let K=this.bitSize%8;if(K){let X=8-K;if(this.rawBuffer[J]>>X!==Z.rawBuffer[J]>>X)return!1}}else{for(let X=0;X<J;X++){let W=TZ(this.rawBuffer,this.bitOffset,X),Y=TZ(Z.rawBuffer,Z.bitOffset,X);if(W!==Y)return!1}let K=this.bitSize%8;if(K){let X=TZ(this.rawBuffer,this.bitOffset,J),W=TZ(Z.rawBuffer,Z.bitOffset,J),Y=8-K;if(X>>Y!==W>>Y)return!1}}return!0}get buffer(){if(HL("buffer","Use BitArray.byteAt() or BitArray.rawBuffer instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.buffer does not support unaligned bit arrays");return this.rawBuffer}get length(){if(HL("length","Use BitArray.bitSize or BitArray.byteSize instead"),this.bitOffset!==0||this.bitSize%8!==0)throw new globalThis.Error("BitArray.length does not support unaligned bit arrays");return this.rawBuffer.length}}function TZ(Z,J,K){if(J===0)return Z[K]??0;else{let X=Z[K]<<J&255,W=Z[K+1]>>8-J;return X|W}}class fM{constructor(Z){this.value=Z}}var FL={};function HL(Z,J){if(FL[Z])return;console.warn(`Deprecated BitArray.${Z} property used in JavaScript FFI code. ${J}.`),FL[Z]=!0}class s5 extends O{static isResult(Z){return Z instanceof s5}}class C extends s5{constructor(Z){super();this[0]=Z}isOk(){return!0}}var SL=(Z)=>new C(Z);class $ extends s5{constructor(Z){super();this[0]=Z}isOk(){return!1}}var AL=(Z)=>new $(Z);function S0(Z,J){let K=[Z,J];while(K.length){let X=K.pop(),W=K.pop();if(X===W)continue;if(!DL(X)||!DL(W))return!1;if(!Th(X,W)||Nh(X,W)||Fh(X,W)||Hh(X,W)||Dh(X,W)||Bh(X,W)||Oh(X,W))return!1;let V=Object.getPrototypeOf(X);if(V!==null&&typeof V.equals==="function")try{if(X.equals(W))continue;else return!1}catch{}let[G,I]=zh(X),z=G(X),N=G(W);if(z.length!==N.length)return!1;for(let F of z)K.push(I(X,F),I(W,F))}return!0}function zh(Z){if(Z instanceof Map)return[(J)=>J.keys(),(J,K)=>J.get(K)];else{let J=Z instanceof globalThis.Error?["message"]:[];return[(K)=>[...J,...Object.keys(K)],(K,X)=>K[X]]}}function Nh(Z,J){return Z instanceof Date&&(Z>J||Z<J)}function Fh(Z,J){return!(Z instanceof PZ)&&Z.buffer instanceof ArrayBuffer&&Z.BYTES_PER_ELEMENT&&!(Z.byteLength===J.byteLength&&Z.every((K,X)=>K===J[X]))}function Hh(Z,J){return Array.isArray(Z)&&Z.length!==J.length}function Dh(Z,J){return Z instanceof Map&&Z.size!==J.size}function Bh(Z,J){return Z instanceof Set&&(Z.size!=J.size||[...Z].some((K)=>!J.has(K)))}function Oh(Z,J){return Z instanceof RegExp&&(Z.source!==J.source||Z.flags!==J.flags)}function DL(Z){return typeof Z==="object"&&Z!==null}function Th(Z,J){if(typeof Z!=="object"&&typeof J!=="object"&&(!Z||!J))return!1;if([Promise,WeakSet,WeakMap,Function].some((X)=>Z instanceof X))return!1;return Z.constructor===J.constructor}function FJ(Z,J){if(J===0)return 0;else return Z/J}function c8(Z,J,K,X,W,Y,V){let G=new globalThis.Error(Y);G.gleam_error=Z,G.file=J,G.module=K,G.line=X,G.function=W,G.fn=W;for(let I in V)G[I]=V[I];return G}class a0 extends O{}class t0 extends O{}class w8 extends O{}class y extends O{constructor(Z){super();this[0]=Z}}class v extends O{}function kM(Z,J){if(Z instanceof y){let K=Z[0];return new C(K)}else return new $(J)}function bM(Z){if(Z instanceof C){let J=Z[0];return new y(J)}else return new v}function qL(Z,J){if(Z instanceof y)return Z[0];else return J}function hM(Z,J){if(Z instanceof y){let K=Z[0];return J(K)}else return Z}var EL=new WeakMap,vM=new DataView(new ArrayBuffer(8)),$M=0;function gM(Z){let J=EL.get(Z);if(J!==void 0)return J;let K=$M++;if($M===2147483647)$M=0;return EL.set(Z,K),K}function _M(Z,J){return Z^J+2654435769+(Z<<6)+(Z>>2)|0}function uM(Z){let J=0,K=Z.length;for(let X=0;X<K;X++)J=Math.imul(31,J)+Z.charCodeAt(X)|0;return J}function xL(Z){vM.setFloat64(0,Z);let J=vM.getInt32(0),K=vM.getInt32(4);return Math.imul(73244475,J>>16^J)^K}function Ph(Z){return uM(Z.toString())}function Sh(Z){let J=Object.getPrototypeOf(Z);if(J!==null&&typeof J.hashCode==="function")try{let X=Z.hashCode(Z);if(typeof X==="number")return X}catch{}if(Z instanceof Promise||Z instanceof WeakSet||Z instanceof WeakMap)return gM(Z);if(Z instanceof Date)return xL(Z.getTime());let K=0;if(Z instanceof ArrayBuffer)Z=new Uint8Array(Z);if(Array.isArray(Z)||Z instanceof Uint8Array)for(let X=0;X<Z.length;X++)K=Math.imul(31,K)+c1(Z[X])|0;else if(Z instanceof Set)Z.forEach((X)=>{K=K+c1(X)|0});else if(Z instanceof Map)Z.forEach((X,W)=>{K=K+_M(c1(X),c1(W))|0});else{let X=Object.keys(Z);for(let W=0;W<X.length;W++){let Y=X[W],V=Z[Y];K=K+_M(c1(V),uM(Y))|0}}return K}function c1(Z){if(Z===null)return 1108378658;if(Z===void 0)return 1108378659;if(Z===!0)return 1108378657;if(Z===!1)return 1108378656;switch(typeof Z){case"number":return xL(Z);case"string":return uM(Z);case"bigint":return Ph(Z);case"object":return Sh(Z);case"symbol":return gM(Z);case"function":return gM(Z);default:return 0}}var G8=5,dM=Math.pow(2,G8),Ah=dM-1,qh=dM/2,Eh=dM/4,S1=0,V8=1,b1=2,B5=3,cM={type:b1,bitmap:0,array:[]};function SZ(Z,J){return Z>>>J&Ah}function DJ(Z,J){return 1<<SZ(Z,J)}function Ch(Z){return Z-=Z>>1&1431655765,Z=(Z&858993459)+(Z>>2&858993459),Z=Z+(Z>>4)&252645135,Z+=Z>>8,Z+=Z>>16,Z&127}function pM(Z,J){return Ch(Z&J-1)}function p1(Z,J,K){let X=Z.length,W=Array(X);for(let Y=0;Y<X;++Y)W[Y]=Z[Y];return W[J]=K,W}function xh(Z,J,K){let X=Z.length,W=Array(X+1),Y=0,V=0;while(Y<J)W[V++]=Z[Y++];W[V++]=K;while(Y<X)W[V++]=Z[Y++];return W}function mM(Z,J){let K=Z.length,X=Array(K-1),W=0,Y=0;while(W<J)X[Y++]=Z[W++];++W;while(W<K)X[Y++]=Z[W++];return X}function wL(Z,J,K,X,W,Y){let V=c1(J);if(V===X)return{type:B5,hash:V,array:[{type:S1,k:J,v:K},{type:S1,k:W,v:Y}]};let G={val:!1};return AZ(nM(cM,Z,V,J,K,G),Z,X,W,Y,G)}function AZ(Z,J,K,X,W,Y){switch(Z.type){case V8:return wh(Z,J,K,X,W,Y);case b1:return nM(Z,J,K,X,W,Y);case B5:return Uh(Z,J,K,X,W,Y)}}function wh(Z,J,K,X,W,Y){let V=SZ(K,J),G=Z.array[V];if(G===void 0)return Y.val=!0,{type:V8,size:Z.size+1,array:p1(Z.array,V,{type:S1,k:X,v:W})};if(G.type===S1){if(S0(X,G.k)){if(W===G.v)return Z;return{type:V8,size:Z.size,array:p1(Z.array,V,{type:S1,k:X,v:W})}}return Y.val=!0,{type:V8,size:Z.size,array:p1(Z.array,V,wL(J+G8,G.k,G.v,K,X,W))}}let I=AZ(G,J+G8,K,X,W,Y);if(I===G)return Z;return{type:V8,size:Z.size,array:p1(Z.array,V,I)}}function nM(Z,J,K,X,W,Y){let V=DJ(K,J),G=pM(Z.bitmap,V);if((Z.bitmap&V)!==0){let I=Z.array[G];if(I.type!==S1){let N=AZ(I,J+G8,K,X,W,Y);if(N===I)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,N)}}let z=I.k;if(S0(X,z)){if(W===I.v)return Z;return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,{type:S1,k:X,v:W})}}return Y.val=!0,{type:b1,bitmap:Z.bitmap,array:p1(Z.array,G,wL(J+G8,z,I.v,K,X,W))}}else{let I=Z.array.length;if(I>=qh){let z=Array(32),N=SZ(K,J);z[N]=nM(cM,J+G8,K,X,W,Y);let F=0,D=Z.bitmap;for(let B=0;B<32;B++){if((D&1)!==0){let T=Z.array[F++];z[B]=T}D=D>>>1}return{type:V8,size:I+1,array:z}}else{let z=xh(Z.array,G,{type:S1,k:X,v:W});return Y.val=!0,{type:b1,bitmap:Z.bitmap|V,array:z}}}}function Uh(Z,J,K,X,W,Y){if(K===Z.hash){let V=iM(Z,X);if(V!==-1){if(Z.array[V].v===W)return Z;return{type:B5,hash:K,array:p1(Z.array,V,{type:S1,k:X,v:W})}}let G=Z.array.length;return Y.val=!0,{type:B5,hash:K,array:p1(Z.array,G,{type:S1,k:X,v:W})}}return AZ({type:b1,bitmap:DJ(Z.hash,J),array:[Z]},J,K,X,W,Y)}function iM(Z,J){let K=Z.array.length;for(let X=0;X<K;X++)if(S0(J,Z.array[X].k))return X;return-1}function HJ(Z,J,K,X){switch(Z.type){case V8:return Mh(Z,J,K,X);case b1:return Rh(Z,J,K,X);case B5:return jh(Z,X)}}function Mh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return;if(Y.type!==S1)return HJ(Y,J+G8,K,X);if(S0(X,Y.k))return Y;return}function Rh(Z,J,K,X){let W=DJ(K,J);if((Z.bitmap&W)===0)return;let Y=pM(Z.bitmap,W),V=Z.array[Y];if(V.type!==S1)return HJ(V,J+G8,K,X);if(S0(X,V.k))return V;return}function jh(Z,J){let K=iM(Z,J);if(K<0)return;return Z.array[K]}function lM(Z,J,K,X){switch(Z.type){case V8:return Lh(Z,J,K,X);case b1:return yh(Z,J,K,X);case B5:return fh(Z,X)}}function Lh(Z,J,K,X){let W=SZ(K,J),Y=Z.array[W];if(Y===void 0)return Z;let V=void 0;if(Y.type===S1){if(!S0(Y.k,X))return Z}else if(V=lM(Y,J+G8,K,X),V===Y)return Z;if(V===void 0){if(Z.size<=Eh){let G=Z.array,I=Array(Z.size-1),z=0,N=0,F=0;while(z<W){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}++z;while(z<G.length){let D=G[z];if(D!==void 0)I[N]=D,F|=1<<z,++N;++z}return{type:b1,bitmap:F,array:I}}return{type:V8,size:Z.size-1,array:p1(Z.array,W,V)}}return{type:V8,size:Z.size,array:p1(Z.array,W,V)}}function yh(Z,J,K,X){let W=DJ(K,J);if((Z.bitmap&W)===0)return Z;let Y=pM(Z.bitmap,W),V=Z.array[Y];if(V.type!==S1){let G=lM(V,J+G8,K,X);if(G===V)return Z;if(G!==void 0)return{type:b1,bitmap:Z.bitmap,array:p1(Z.array,Y,G)};if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:mM(Z.array,Y)}}if(S0(X,V.k)){if(Z.bitmap===W)return;return{type:b1,bitmap:Z.bitmap^W,array:mM(Z.array,Y)}}return Z}function fh(Z,J){let K=iM(Z,J);if(K<0)return Z;if(Z.array.length===1)return;return{type:B5,hash:Z.hash,array:mM(Z.array,K)}}function UL(Z,J){if(Z===void 0)return;let K=Z.array,X=K.length;for(let W=0;W<X;W++){let Y=K[W];if(Y===void 0)continue;if(Y.type===S1){J(Y.v,Y.k);continue}UL(Y,J)}}class Y1{static fromObject(Z){let J=Object.keys(Z),K=Y1.new();for(let X=0;X<J.length;X++){let W=J[X];K=K.set(W,Z[W])}return K}static fromMap(Z){let J=Y1.new();return Z.forEach((K,X)=>{J=J.set(X,K)}),J}static new(){return new Y1(void 0,0)}constructor(Z,J){this.root=Z,this.size=J}get(Z,J){if(this.root===void 0)return J;let K=HJ(this.root,0,c1(Z),Z);if(K===void 0)return J;return K.v}set(Z,J){let K={val:!1},X=this.root===void 0?cM:this.root,W=AZ(X,0,c1(Z),Z,J,K);if(W===this.root)return this;return new Y1(W,K.val?this.size+1:this.size)}delete(Z){if(this.root===void 0)return this;let J=lM(this.root,0,c1(Z),Z);if(J===this.root)return this;if(J===void 0)return Y1.new();return new Y1(J,this.size-1)}has(Z){if(this.root===void 0)return!1;return HJ(this.root,0,c1(Z),Z)!==void 0}entries(){if(this.root===void 0)return[];let Z=[];return this.forEach((J,K)=>Z.push([K,J])),Z}forEach(Z){UL(this.root,Z)}hashCode(){let Z=0;return this.forEach((J,K)=>{Z=Z+_M(c1(J),c1(K))|0}),Z}equals(Z){if(!(Z instanceof Y1)||this.size!==Z.size)return!1;try{return this.forEach((J,K)=>{if(!S0(Z.get(K,!J),J))throw CL}),!0}catch(J){if(J===CL)return!1;throw J}}}var CL=Symbol();function sM(Z){return BJ(Z)===0}function kh(Z,J){return!S0(D0(J,Z),new $(void 0))}function ML(Z,J){return kh(J,Z)}function n0(Z,J,K){return jL(J,K,Z)}function bh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function hh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return bh(X,Q([]));else{let W=K.tail,Y=K.head[0];Z=W,J=A(Y,X)}}}function U8(Z){return hh(n8(Z),Q([]))}function I8(Z,J){return RL(J,Z)}function vh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return W;else{let V=X.tail,G=X.head[0],I=X.head[1];Z=V,J=Y(W,G,I),K=Y}}}function r5(Z,J,K){return vh(n8(Z),J,K)}class V1 extends O{}class a5 extends O{}function gh(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else Z=K.tail,J=X+1}}function z8(Z){return gh(Z,0)}function O5(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function F0(Z){return O5(Z,Q([]))}function LL(Z){return S0(Z,Q([]))}function rM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return!1;else{let W=K.head;if(S0(W,X))return!0;else Z=K.tail,J=X}}}function yL(Z){if(Z instanceof U)return new $(void 0);else{let J=Z.head;return new C(J)}}function _h(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X,I;if(W(V))I=A(V,Y);else I=Y;let N=I;Z=G,J=W,K=N}}}function OJ(Z,J){return _h(Z,J,Q([]))}function mh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X,I,z=W(V);if(z instanceof C){let F=z[0];I=A(F,Y)}else I=Y;let N=I;Z=G,J=W,K=N}}}function T5(Z,J){return mh(Z,J,Q([]))}function uh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.head;Z=X.tail,J=W,K=A(W(V),Y)}}}function H0(Z,J){return uh(Z,J,Q([]))}function dh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return F0(G);else{let{head:I,tail:z}=W,N=A(Y(I,V),G);Z=z,J=Y,K=V+1,X=N}}}function TJ(Z,J){return dh(Z,J,0,Q([]))}function t5(Z,J){while(!0){let K=Z,X=J;if(X<=0)return K;else if(K instanceof U)return K;else Z=K.tail,J=X-1}}function ch(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=A(W,X)}}}function _0(Z,J){return ch(F0(Z),J)}function PJ(Z,J){return A(J,Z)}function ph(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return F0(X);else{let W=K.head;Z=K.tail,J=O5(W,X)}}}function fL(Z){return ph(Z,Q([]))}function v0(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return W;else{let V=X.head;Z=X.tail,J=Y(W,V),K=Y}}}function aM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return new $(void 0);else{let{head:W,tail:Y}=K;if(X(W))return new C(W);else Z=Y,J=X}}}function tM(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return new $(void 0);else{let{head:W,tail:Y}=K,V=X(W);if(V instanceof C)return V;else Z=Y,J=X}}}function nh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let{head:V,tail:G}=X;if(ML(W,V))Z=G,J=W,K=Y;else Z=G,J=n0(W,V,void 0),K=A(V,Y)}}}function kL(Z){return nh(Z,h0(),Q([]))}function ih(Z,J,K,X,W,Y){while(!0){let V=Z,G=J,I=K,z=X,N=W,F=Y,D=A(N,I);if(V instanceof U)if(z instanceof V1)return A(F0(D),F);else return A(D,F);else{let{head:B,tail:T}=V,P=G(N,B);if(z instanceof V1)if(P instanceof a0)Z=T,J=G,K=D,X=z,W=B,Y=F;else if(P instanceof t0)Z=T,J=G,K=D,X=z,W=B,Y=F;else{let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else if(P instanceof a0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else if(P instanceof t0){let S;if(z instanceof V1)S=A(F0(D),F);else S=A(D,F);let q=S;if(T instanceof U)return A(Q([B]),q);else{let{head:E,tail:R}=T,k,w=G(B,E);if(w instanceof a0)k=new V1;else if(w instanceof t0)k=new V1;else k=new a5;let f=k;Z=R,J=G,K=Q([B]),X=f,W=E,Y=q}}else Z=T,J=G,K=D,X=z,W=B,Y=F}}}function lh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return O5(Y,G);else if(Y instanceof U)return O5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=z,J=Y,K=V,X=A(I,G);else if(D instanceof t0)Z=W,J=F,K=V,X=A(N,G);else Z=W,J=F,K=V,X=A(N,G)}}}function sh(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=lh(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function rh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return O5(Y,G);else if(Y instanceof U)return O5(W,G);else{let{head:I,tail:z}=W,N=Y.head,F=Y.tail,D=V(I,N);if(D instanceof a0)Z=W,J=F,K=V,X=A(N,G);else if(D instanceof t0)Z=z,J=Y,K=V,X=A(I,G);else Z=z,J=Y,K=V,X=A(I,G)}}}function ah(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return F0(Y);else{let V=X.tail;if(V instanceof U){let G=X.head;return F0(A(F0(G),Y))}else{let G=X.head,I=V.head,z=V.tail,N=rh(G,I,W,Q([]));Z=z,J=W,K=A(N,Y)}}}}function th(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return X;else if(W instanceof V1)if(X.tail instanceof U)return X.head;else Z=sh(X,Y,Q([])),J=new a5,K=Y;else if(X.tail instanceof U){let G=X.head;return F0(G)}else Z=ah(X,Y,Q([])),J=new V1,K=Y}}function oM(Z,J){if(Z instanceof U)return Z;else{let K=Z.tail;if(K instanceof U)return Z;else{let X=Z.head,W=K.head,Y=K.tail,V,G=J(X,W);if(G instanceof a0)V=new V1;else if(G instanceof t0)V=new V1;else V=new a5;let I=V,z=ih(Y,J,Q([X]),I,W,Q([]));return th(z,new V1,J)}}}function oh(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return F0(A([Y,V],G));else{let I=W.head[0];if(S0(I,Y)){let z=W.tail;return O5(G,A([I,V],z))}else{let z=W.head;Z=W.tail,J=Y,K=V,X=A(z,G)}}}}function eM(Z,J,K){return oh(Z,J,K,Q([]))}function bL(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return;else{let{head:W,tail:Y}=K;X(W),Z=Y,J=X}}}function hL(Z,J){if(Z instanceof U)return new $(void 0);else{let{head:K,tail:X}=Z;return new C(v0(X,K,J))}}class l8 extends O{constructor(Z,J,K){super();this.expected=Z,this.found=J,this.path=K}}class h1 extends O{constructor(Z){super();this.function=Z}}function I0(Z,J){let K=J.function(Z),X,W;if(X=K[0],W=K[1],W instanceof U)return new C(X);else return new $(W)}function s(Z){return new h1((J)=>{return[Z,Q([])]})}function Jv(Z){return[Z,Q([])]}function P5(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;return W=X[0],Y=X[1],[J(W),Y]})}function Kv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(Y instanceof U)return W;else{let{head:V,tail:G}=Y,I=V.function(X),z,N;if(z=I,N=I[1],N instanceof U)return z;else Z=X,J=W,K=G}}}function JR(Z,J){return new h1((K)=>{let X=Z.function(K),W,Y;if(W=X,Y=X[1],Y instanceof U)return W;else return Kv(K,W,J)})}function U1(Z){return new h1((J)=>{if(iL(J))return[new v,Q([])];else{let X=Z.function(J),W,Y;return W=X[0],Y=X[1],[new y(W),Y]}})}var y0=new h1(Jv);function gL(Z,J){return Q([new l8(Z,i8(J),Q([]))])}function KR(Z,J,K){let X=K(Z);if(X instanceof C)return[X[0],Q([])];else return[X[0],Q([new l8(J,i8(Z),Q([]))])]}function Yv(Z){if(S0(N0(!0),Z))return[!0,Q([])];else if(S0(N0(!1),Z))return[!1,Q([])];else return[!1,gL("Bool",Z)]}function Xv(Z){return KR(Z,"Int",pL)}function Wv(Z){return KR(Z,"Float",cL)}var G1=new h1(Yv),p0=new h1(Xv),_L=new h1(Wv);function Qv(Z){return KR(Z,"String",nL)}var u=new h1(Qv);function Vv(Z,J,K,X,W){let Y=X(J),V=Y[1];if(V instanceof U){let G=Y[0],I=W(K),z=I[1];if(z instanceof U){let N=I[0];return[n0(Z[0],G,N),Z[1]]}else{let N=z;return o5([h0(),N],Q(["values"]))}}else{let G=V;return o5([h0(),G],Q(["keys"]))}}function M8(Z,J){return new h1((K)=>{let X=dL(K);if(X instanceof C){let W=X[0];return r5(W,[h0(),Q([])],(Y,V,G)=>{if(Y[1]instanceof U)return Vv(Y,V,G,Z.function,J.function);else return Y})}else return[h0(),gL("Dict",K)]})}function U0(Z){return new h1((J)=>{return uL(J,Z.function,(K,X)=>{return o5(K,Q([X]))},0,Q([]))})}function o5(Z,J){let K=JR(u,Q([(()=>{return P5(p0,X1)})()])),X=H0(J,(Y)=>{let V=N0(Y),G=I0(V,K);if(G instanceof C)return G[0];else return"<"+i8(V)+">"}),W=H0(Z[1],(Y)=>{return new l8(Y.expected,Y.found,_0(X,Y.path))});return[Z[0],W]}function Gv(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(Y instanceof U){let F=G(I);return o5(F,F0(V))}else{let{head:N,tail:F}=Y,D=mL(I,N);if(D instanceof C){let B=D[0];if(B instanceof y){let T=B[0];Z=F,J=A(N,V),K=G,X=T,W=z}else return z(I,A(N,V))}else{let B=D[0],T=G(I),P;P=T[0];let S=[P,Q([new l8(B,i8(I),Q([]))])];return o5(S,F0(V))}}}}function qZ(Z,J,K){return new h1((X)=>{let W=Gv(Z,Q([]),J.function,X,(N,F)=>{let D=J.function(N),B;B=D[0];let T=[B,Q([new l8("Field","Nothing",Q([]))])];return o5(T,F0(F))}),Y,V;Y=W[0],V=W[1];let G=K(Y).function(X),I,z;return I=G[0],z=G[1],[I,_0(V,z)]})}function h(Z,J,K){return qZ(Q([Z]),J,K)}var XR=void 0,lL={};function N0(Z){return Z}function X1(Z){return Z.toString()}function K8(Z){if(Z==="")return 0;let J=SJ(Z);if(J){let K=0;for(let X of J)K++;return K}else return Z.match(/./gsu).length}function EZ(Z){let J=SJ(Z);if(J)return r0.fromArray(Array.from(J).map((K)=>K.segment));else return r0.fromArray(Z.match(/./gsu))}var sL=void 0;function SJ(Z){if(globalThis.Intl&&Intl.Segmenter)return sL||=new Intl.Segmenter,sL.segment(Z)[Symbol.iterator]()}function AJ(Z){let J,K=SJ(Z);if(K)J=K.next().value?.segment;else J=Z.match(/./su)?.[0];if(J)return new C([J,Z.slice(J.length)]);else return new $(XR)}function S5(Z){return[Z.charCodeAt(0)|0,Z.slice(1)]}function i1(Z){return Z.toLowerCase()}function qJ(Z){return Z.toUpperCase()}function WR(Z,J){return r0.fromArray(Z.split(J))}function QR(Z,J,K){if(K<=0||J>=Z.length)return"";let X=SJ(Z);if(X){while(J-- >0)X.next();let W="";while(K-- >0){let Y=X.next().value;if(Y===void 0)break;W+=Y.segment}return W}else return Z.match(/./gsu).slice(J,J+K).join("")}function I1(Z,J,K){return Z.slice(J,J+K)}function e5(Z,J){return Z.startsWith(J)}function EJ(Z,J){return Z.endsWith(J)}function A5(Z,J){let K=Z.indexOf(J);if(K>=0){let X=Z.slice(0,K),W=Z.slice(K+J.length);return new C([X,W])}else return new $(XR)}var tL=[" ","\t",` 2 + `,"\v","\f","\r","…","\u2028","\u2029"].join(""),zv=new RegExp(`^[${tL}]*`),Nv=new RegExp(`[${tL}]*$`);function oL(Z){return Z.replace(zv,"")}function VR(Z){return Z.replace(Nv,"")}function q5(Z){console.log(Z)}function h0(){return Y1.new()}function BJ(Z){return Z.size}function n8(Z){return r0.fromArray(Z.entries())}function RL(Z,J){return J.delete(Z)}function D0(Z,J){let K=Z.get(J,lL);if(K===lL)return new $(XR);return new C(K)}function jL(Z,J,K){return K.set(Z,J)}function i8(Z){if(typeof Z==="string")return"String";else if(typeof Z==="boolean")return"Bool";else if(Z instanceof s5)return"Result";else if(Z instanceof r0)return"List";else if(Z instanceof PZ)return"BitArray";else if(Z instanceof Y1)return"Dict";else if(Number.isInteger(Z))return"Int";else if(Array.isArray(Z))return"Array";else if(typeof Z==="number")return"Float";else if(Z===null)return"Nil";else if(Z===void 0)return"Nil";else{let J=typeof Z;return J.charAt(0).toUpperCase()+J.slice(1)}}function eL(Z){return new Zy().inspect(Z)}function c0(Z){let J=Z.toString().replace("+","");if(J.indexOf(".")>=0)return J;else{let K=J.indexOf("e");if(K>=0)return J.slice(0,K)+".0"+J.slice(K);else return J+".0"}}class Zy{#Z=new Set;inspect(Z){let J=typeof Z;if(Z===!0)return"True";if(Z===!1)return"False";if(Z===null)return"//js(null)";if(Z===void 0)return"Nil";if(J==="string")return this.#W(Z);if(J==="bigint"||Number.isInteger(Z))return Z.toString();if(J==="number")return c0(Z);if(Z instanceof fM)return this.#Q(Z);if(Z instanceof PZ)return this.#G(Z);if(Z instanceof RegExp)return`//js(${Z})`;if(Z instanceof Date)return`//js(Date("${Z.toISOString()}"))`;if(Z instanceof globalThis.Error)return`//js(${Z.toString()})`;if(Z instanceof Function){let X=[];for(let W of Array(Z.length).keys())X.push(String.fromCharCode(W+97));return`//fn(${X.join(", ")}) { ... }`}if(this.#Z.size===this.#Z.add(Z).size)return"//js(circular reference)";let K;if(Array.isArray(Z))K=`#(${Z.map((X)=>this.inspect(X)).join(", ")})`;else if(Z instanceof r0)K=this.#J(Z);else if(Z instanceof O)K=this.#Y(Z);else if(Z instanceof Y1)K=this.#K(Z);else if(Z instanceof Set)return`//js(Set(${[...Z].map((X)=>this.inspect(X)).join(", ")}))`;else K=this.#X(Z);return this.#Z.delete(Z),K}#X(Z){let J=Object.getPrototypeOf(Z)?.constructor?.name||"Object",K=[];for(let Y of Object.keys(Z))K.push(`${this.inspect(Y)}: ${this.inspect(Z[Y])}`);let X=K.length?" "+K.join(", ")+" ":"";return`//js(${J==="Object"?"":J+" "}{${X}})`}#K(Z){let J="dict.from_list([",K=!0;return Z.forEach((X,W)=>{if(!K)J=J+", ";J=J+"#("+this.inspect(W)+", "+this.inspect(X)+")",K=!1}),J+"])"}#Y(Z){let J=Object.keys(Z).map((K)=>{let X=this.inspect(Z[K]);return isNaN(parseInt(K))?`${K}: ${X}`:X}).join(", ");return J?`${Z.constructor.name}(${J})`:Z.constructor.name}#J(Z){if(Z instanceof U)return"[]";let J='charlist.from_string("',K="[",X=Z;while(X instanceof k1){let W=X.head;if(X=X.tail,K!=="[")K+=", ";if(K+=this.inspect(W),J)if(Number.isInteger(W)&&W>=32&&W<=126)J+=String.fromCharCode(W);else J=null}if(J)return J+'")';else return K+"]"}#W(Z){let J='"';for(let K=0;K<Z.length;K++){let X=Z[K];switch(X){case` 3 + `:J+="\\n";break;case"\r":J+="\\r";break;case"\t":J+="\\t";break;case"\f":J+="\\f";break;case"\\":J+="\\\\";break;case'"':J+="\\\"";break;default:if(X<" "||X>"~"&&X<" ")J+="\\u{"+X.charCodeAt(0).toString(16).toUpperCase().padStart(4,"0")+"}";else J+=X}}return J+='"',J}#Q(Z){return`//utfcodepoint(${String.fromCodePoint(Z.value)})`}#G(Z){if(Z.bitSize===0)return"<<>>";let J="<<";for(let K=0;K<Z.byteSize-1;K++)J+=Z.byteAt(K).toString(),J+=", ";if(Z.byteSize*8===Z.bitSize)J+=Z.byteAt(Z.byteSize-1).toString();else{let K=Z.bitSize%8;J+=Z.byteAt(Z.byteSize-1)>>8-K,J+=`:size(${K})`}return J+=">>",J}}function mL(Z,J){if(Z instanceof Y1||Z instanceof WeakMap||Z instanceof Map){let X={},W=Z.get(J,X);if(W===X)return new C(new v);return new C(new y(W))}let K=Number.isInteger(J);if(K&&J>=0&&J<8&&Z instanceof r0){let X=0;for(let W of Z){if(X===J)return new C(new y(W));X++}return new $("Indexable")}if(K&&Array.isArray(Z)||Z&&typeof Z==="object"||Z&&Object.getPrototypeOf(Z)===Object.prototype){if(J in Z)return new C(new y(Z[J]));return new C(new v)}return new $(K?"Indexable":"Dict")}function uL(Z,J,K,X,W){if(!(Z instanceof r0||Array.isArray(Z))){let V=new l8("List",i8(Z),W);return[W,r0.fromArray([V])]}let Y=[];for(let V of Z){let G=J(V),[I,z]=G;if(z instanceof k1){let[N,F]=K(G,X.toString());return[W,F]}Y.push(I),X++}return[r0.fromArray(Y),W]}function dL(Z){if(Z instanceof Y1)return new C(Z);if(Z instanceof Map||Z instanceof WeakMap)return new C(Y1.fromMap(Z));if(Z==null)return new $("Dict");if(typeof Z!=="object")return new $("Dict");let J=Object.getPrototypeOf(Z);if(J===Object.prototype||J===null)return new C(Y1.fromObject(Z));return new $("Dict")}function cL(Z){if(typeof Z==="number")return new C(Z);return new $(0)}function pL(Z){if(Number.isInteger(Z))return new C(Z);return new $(0)}function nL(Z){if(typeof Z==="string")return new C(Z);return new $("")}function iL(Z){return Z===null||Z===void 0}function CJ(Z,J){if(Z>J)return Z;else return J}function Ky(Z,J,K){if(K<=0)return"";else if(J<0){let Y=K8(Z)+J;if(Y<0)return"";else return QR(Z,Y,K)}else return QR(Z,J,K)}function Tv(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;Z=K.tail,J=X+W}}}function CZ(Z){return Tv(Z,"")}function Pv(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return Y;else{let V=X.head;Z=X.tail,J=W,K=Y+W+V}}}function s8(Z,J){if(Z instanceof U)return"";else{let{head:K,tail:X}=Z;return Pv(X,J,K)}}function J4(Z){let K=oL(Z);return VR(K)}function K4(Z,J){if(J==="")return EZ(Z);else{let X=N0(Z),W=WR(X,J);return H0(W,N0)}}function wJ(Z){let K=eL(Z);return N0(K)}function Wy(Z){if(Z instanceof C)return!0;else return!1}function GR(Z,J){if(Z instanceof C){let K=Z[0];return new C(J(K))}else return Z}function Y4(Z,J){if(Z instanceof C)return Z;else{let K=Z[0];return new $(J(K))}}function M1(Z,J){if(Z instanceof C){let K=Z[0];return J(K)}else return Z}function X4(Z,J){if(Z instanceof C)return Z[0];else return J}function Qy(Z){return T5(Z,(J)=>{return J})}function IR(Z){return JSON.stringify(Z)}function Vy(Z){return Object.fromEntries(Z)}function r8(Z){return Z}function Gy(Z){let J=[];while(OL(Z))J.push(TL(Z)),Z=PL(Z);return J}function Iy(){return null}function zy(Z){try{let J=JSON.parse(Z);return SL(J)}catch(J){return AL(Cv(J,Z))}}function Cv(Z,J){if(xv(Z))return Ny();return wv(Z,J)}function xv(Z){return/((unexpected (end|eof))|(end of data)|(unterminated string)|(json( parse error|\.parse)\: expected '(\:|\}|\])'))/i.test(Z.message)}function wv(Z,J){let K=[Uv,Mv,jv,Rv];for(let X of K){let W=X(Z,J);if(W)return W}return W4("")}function Uv(Z){let K=/unexpected token '(.)', ".+" is not valid JSON/i.exec(Z.message);if(!K)return null;let X=UJ(K[1]);return W4(X)}function Mv(Z){let K=/unexpected token (.) in JSON at position (\d+)/i.exec(Z.message);if(!K)return null;let X=UJ(K[1]);return W4(X)}function Rv(Z,J){let X=/(unexpected character|expected .*) at line (\d+) column (\d+)/i.exec(Z.message);if(!X)return null;let W=Number(X[2]),Y=Number(X[3]),V=Lv(W,Y,J),G=UJ(J[V]);return W4(G)}function jv(Z){let K=/unexpected (identifier|token) "(.)"/i.exec(Z.message);if(!K)return null;let X=UJ(K[2]);return W4(X)}function UJ(Z){return"0x"+Z.charCodeAt(0).toString(16).toUpperCase()}function Lv(Z,J,K){if(Z===1)return J-1;let X=1,W=0;return K.split("").find((Y,V)=>{if(Y===` 4 + `)X+=1;if(X===Z)return W=V+J,!0;return!1}),W}class Fy extends O{}var Ny=()=>new Fy;class Hy extends O{constructor(Z){super();this[0]=Z}}var W4=(Z)=>new Hy(Z);class Dy extends O{constructor(Z){super();this[0]=Z}}function yv(Z,J){return M1(zy(Z),(K)=>{let X=I0(K,J);return Y4(X,(W)=>{return new Dy(W)})})}function l1(Z,J){return yv(Z,J)}function R8(Z){return IR(Z)}function d(Z){return r8(Z)}function s1(Z){return r8(Z)}function W1(Z){return r8(Z)}function By(Z){return r8(Z)}function zR(){return Iy()}function b(Z){return Vy(Z)}function Oy(Z){return Gy(Z)}function j0(Z,J){let X=H0(Z,J);return Oy(X)}class MJ extends O{constructor(Z){super();this.dict=Z}}function E5(){return new MJ(h0())}function Q4(Z,J){let K=Z.dict,X=D0(K,J);return Wy(X)}function Ty(Z,J){return new MJ(I8(Z.dict,J))}function Py(Z){return U8(Z.dict)}var kv=void 0;function xZ(Z,J){return new MJ(n0(Z.dict,J,kv))}class W0 extends O{constructor(Z,J,K,X,W,Y,V){super();this.scheme=Z,this.userinfo=J,this.host=K,this.port=X,this.path=W,this.query=Y,this.fragment=V}}function vv(Z){return 48>=Z&&Z<=57||65>=Z&&Z<=90||97>=Z&&Z<=122||Z===58||Z===46}function Y8(Z,J){return new C(new W0(J.scheme,J.userinfo,J.host,J.port,J.path,J.query,new y(Z)))}function $v(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,V.host,V.port,V.path,new y(z),V.fragment);return Y8(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,V.path,new y(W),V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function j8(Z,J){return $v(Z,Z,J,0)}function gv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,V.host,V.port,z,V.query,V.fragment);return Y8(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function C5(Z,J){return gv(Z,Z,J,0)}function N8(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X.startsWith("0"))Z=X.slice(1),J=W,K=Y*10;else if(X.startsWith("1"))Z=X.slice(1),J=W,K=Y*10+1;else if(X.startsWith("2"))Z=X.slice(1),J=W,K=Y*10+2;else if(X.startsWith("3"))Z=X.slice(1),J=W,K=Y*10+3;else if(X.startsWith("4"))Z=X.slice(1),J=W,K=Y*10+4;else if(X.startsWith("5"))Z=X.slice(1),J=W,K=Y*10+5;else if(X.startsWith("6"))Z=X.slice(1),J=W,K=Y*10+6;else if(X.startsWith("7"))Z=X.slice(1),J=W,K=Y*10+7;else if(X.startsWith("8"))Z=X.slice(1),J=W,K=Y*10+8;else if(X.startsWith("9"))Z=X.slice(1),J=W,K=Y*10+9;else if(X.startsWith("?")){let V=X.slice(1),G=new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return j8(V,G)}else if(X.startsWith("#")){let V=X.slice(1),G=new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return Y8(V,G)}else if(X.startsWith("/")){let V=new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment);return C5(X,V)}else if(X==="")return new C(new W0(W.scheme,W.userinfo,W.host,new y(Y),W.path,W.query,W.fragment));else return new $(void 0)}}function RJ(Z,J){if(Z.startsWith(":0")){let K=Z.slice(2);return N8(K,J,0)}else if(Z.startsWith(":1")){let K=Z.slice(2);return N8(K,J,1)}else if(Z.startsWith(":2")){let K=Z.slice(2);return N8(K,J,2)}else if(Z.startsWith(":3")){let K=Z.slice(2);return N8(K,J,3)}else if(Z.startsWith(":4")){let K=Z.slice(2);return N8(K,J,4)}else if(Z.startsWith(":5")){let K=Z.slice(2);return N8(K,J,5)}else if(Z.startsWith(":6")){let K=Z.slice(2);return N8(K,J,6)}else if(Z.startsWith(":7")){let K=Z.slice(2);return N8(K,J,7)}else if(Z.startsWith(":8")){let K=Z.slice(2);return N8(K,J,8)}else if(Z.startsWith(":9")){let K=Z.slice(2);return N8(K,J,9)}else if(Z===":")return new C(J);else if(Z==="")return new C(J);else if(Z.startsWith("?")){let K=Z.slice(1);return j8(K,J)}else if(Z.startsWith(":?")){let K=Z.slice(2);return j8(K,J)}else if(Z.startsWith("#")){let K=Z.slice(1);return Y8(K,J)}else if(Z.startsWith(":#")){let K=Z.slice(2);return Y8(K,J)}else if(Z.startsWith("/"))return C5(Z,J);else if(Z.startsWith(":")){let K=Z.slice(1);if(K.startsWith("/"))return C5(K,J);else return new $(void 0)}else return new $(void 0)}function Sy(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new C(new W0(V.scheme,V.userinfo,new y(W),V.port,V.path,V.query,V.fragment));else if(Y.startsWith(":")){let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return RJ(Y,z)}else if(Y.startsWith("/")){let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return C5(Y,z)}else if(Y.startsWith("?")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#")){let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return Y8(I,N)}else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function _v(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y==="")return new C(new W0(V.scheme,V.userinfo,new y(Y),V.port,V.path,V.query,V.fragment));else if(Y.startsWith("]"))if(G===0){let I=Y.slice(1);return RJ(I,V)}else{let I=Y.slice(1),z=I1(W,0,G+1),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return RJ(I,N)}else if(Y.startsWith("/"))if(G===0)return C5(Y,V);else{let I=I1(W,0,G),z=new W0(V.scheme,V.userinfo,new y(I),V.port,V.path,V.query,V.fragment);return C5(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return j8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,V.userinfo,new y(z),V.port,V.path,V.query,V.fragment);return Y8(I,N)}else{let I=S5(Y),z,N;if(z=I[0],N=I[1],vv(z))Z=W,J=N,K=V,X=G+1;else return Sy(W,W,V,0)}}}function mv(Z,J){return _v(Z,Z,J,0)}function uv(Z,J){return Sy(Z,Z,J,0)}function V4(Z,J){if(Z.startsWith("["))return mv(Z,J);else if(Z.startsWith(":")){let K=new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment);return RJ(Z,K)}else if(Z==="")return new C(new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment));else return uv(Z,J)}function dv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("@"))if(G===0){let I=Y.slice(1);return V4(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(V.scheme,new y(z),V.host,V.port,V.path,V.query,V.fragment);return V4(I,N)}else if(Y==="")return V4(W,V);else if(Y.startsWith("/"))return V4(W,V);else if(Y.startsWith("?"))return V4(W,V);else if(Y.startsWith("#"))return V4(W,V);else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function cv(Z,J){return dv(Z,Z,J,0)}function NR(Z,J){if(Z==="//")return new C(new W0(J.scheme,J.userinfo,new y(""),J.port,J.path,J.query,J.fragment));else if(Z.startsWith("//")){let K=Z.slice(2);return cv(K,J)}else return C5(Z,J)}function pv(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(Y.startsWith("/"))if(G===0)return NR(Y,V);else{let I=I1(W,0,G),z=new W0(new y(i1(I)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return NR(Y,z)}else if(Y.startsWith("?"))if(G===0){let I=Y.slice(1);return j8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(new y(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return j8(I,N)}else if(Y.startsWith("#"))if(G===0){let I=Y.slice(1);return Y8(I,V)}else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(new y(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return Y8(I,N)}else if(Y.startsWith(":"))if(G===0)return new $(void 0);else{let I=Y.slice(1),z=I1(W,0,G),N=new W0(new y(i1(z)),V.userinfo,V.host,V.port,V.path,V.query,V.fragment);return NR(I,N)}else if(Y==="")return new C(new W0(V.scheme,V.userinfo,V.host,V.port,W,V.query,V.fragment));else{let I=S5(Y),z;z=I[1],Z=W,J=z,K=V,X=G+1}}}function jJ(Z){let J,K=Z.fragment;if(K instanceof y){let w=K[0];J=Q(["#",w])}else J=Q([]);let X=J,W,Y=Z.query;if(Y instanceof y){let w=Y[0];W=A("?",A(w,X))}else W=X;let V=W,G=A(Z.path,V),I,z=Z.host,N=e5(Z.path,"/");if(z instanceof y&&!N)if(z[0]!=="")I=A("/",G);else I=G;else I=G;let F=I,D,B=Z.host,T=Z.port;if(B instanceof y&&T instanceof y){let w=T[0];D=A(":",A(X1(w),F))}else D=F;let P=D,S,q=Z.scheme,E=Z.userinfo,R=Z.host;if(q instanceof y)if(E instanceof y)if(R instanceof y){let w=q[0],f=E[0],g=R[0];S=A(w,A("://",A(f,A("@",A(g,P)))))}else{let w=q[0];S=A(w,A(":",P))}else if(R instanceof y){let w=q[0],f=R[0];S=A(w,A("://",A(f,P)))}else{let w=q[0];S=A(w,A(":",P))}else if(E instanceof v&&R instanceof y){let w=R[0];S=A("//",A(w,P))}else S=P;return CZ(S)}var nv=new W0(new v,new v,new v,new v,"",new v,new v);function FR(Z){return pv(Z,Z,nv,0)}function G4(Z,J,K){if(Z)return J;else return K()}function O0(Z){return Z}var r1=()=>globalThis?.document,yJ="http://www.w3.org/1999/xhtml",fJ=1,BR=3;var Cy=!!globalThis.HTMLElement?.prototype?.moveBefore;var e=Q([]),kJ=new v;var rv=new w8,av=new a0,tv=new t0;function bJ(Z,J){if(Z.name===J.name)return tv;else if(Z.name<J.name)return av;else return rv}class a1 extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class UZ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class B1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.name=J,this.handler=K,this.include=X,this.prevent_default=W,this.stop_propagation=Y,this.debounce=V,this.throttle=G}}class MZ extends O{constructor(Z,J,K){super();this.prevent_default=Z,this.stop_propagation=J,this.message=K}}class Ry extends O{constructor(Z){super();this.kind=Z}}class jy extends O{constructor(Z){super();this.kind=Z}}function Y$(Z,J){while(!0){let K=Z,X=J;if(K instanceof U)return X;else{let W=K.head;if(W instanceof a1){let Y=W.name;if(Y==="")Z=K.tail,J=X;else if(Y==="class"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof U){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof a1)if(I.name==="class"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+" "+B,P=new a1(N,"class",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else if(Y==="style"){let V=W.value;if(V==="")Z=K.tail,J=X;else{let G=K.tail;if(G instanceof U){let I=W;Z=G,J=A(I,X)}else{let I=G.head;if(I instanceof a1)if(I.name==="style"){let N=W.kind,F=V,D=G.tail,B=I.value,T=F+";"+B,P=new a1(N,"style",T);Z=A(P,D),J=X}else{let N=W;Z=G,J=A(N,X)}else{let z=W;Z=G,J=A(z,X)}}}}else{let V=W;Z=K.tail,J=A(V,X)}}else{let Y=W;Z=K.tail,J=A(Y,X)}}}}function Ly(Z){if(Z instanceof U)return Z;else if(Z.tail instanceof U)return Z;else{let X=oM(Z,(W,Y)=>{return bJ(Y,W)});return Y$(X,e)}}var TR=0;function yy(Z,J){return new a1(TR,Z,J)}var PR=1;function fy(Z,J){return new UZ(PR,Z,J)}var SR=2;function ky(Z,J,K,X,W,Y,V){return new B1(SR,Z,J,K,X,W,Y,V)}var AR=0;var qR=new Ry(AR);var hJ=2,by=new jy(hJ);function M(Z,J){return yy(Z,J)}function ER(Z,J){return fy(Z,J)}function CR(Z,J){if(J)return M(Z,"");else return ER(Z,s1(!1))}function H(Z){return M("class",Z)}function H8(Z){return M("id",Z)}function v1(Z){return M("href",Z)}function hy(Z){return M("alt",Z)}function vy(Z){return M("src",Z)}function x5(Z){return M("action",Z)}function w5(Z){return M("method",Z)}function $y(Z){return M("accept",s8(Z,","))}function RZ(Z){return CR("disabled",Z)}function gy(Z){return M("name",Z)}function q1(Z){return M("placeholder",Z)}function t8(Z){return CR("required",Z)}function xR(Z){return CR("selected",Z)}function M0(Z){return M("type",Z)}function o0(Z){return M("value",Z)}class jZ extends O{constructor(Z,J,K){super();this.synchronous=Z,this.before_paint=J,this.after_paint=K}}class UR extends O{constructor(Z,J,K,X,W){super();this.dispatch=Z,this.emit=J,this.select=K,this.root=X,this.provide=W}}function X$(Z,J,K){return}function W$(Z,J){return new UR((K)=>{return Z.dispatch(J(K))},Z.emit,(K)=>{return X$(Z,K,J)},Z.root,Z.provide)}function wR(Z,J){return H0(Z,(K)=>{return(X)=>{return K(W$(X,J))}})}function MR(Z,J){return new jZ(wR(Z.synchronous,J),wR(Z.before_paint,J),wR(Z.after_paint,J))}function _y(Z,J,K,X,W,Y){let V=new UR(J,K,X,W,Y);return bL(Z.synchronous,(G)=>{return G(V)})}var vJ=new jZ(Q([]),Q([]),Q([]));function i(){return vJ}function z1(Z){return new jZ(Q([(K)=>{let X=K.dispatch;return Z(X)}]),vJ.before_paint,vJ.after_paint)}function Q1(Z){return v0(Z,vJ,(J,K)=>{return new jZ(v0(K.synchronous,J.synchronous,PJ),v0(K.before_paint,J.before_paint,PJ),v0(K.after_paint,J.after_paint,PJ))})}function E1(){return null}function LZ(Z,J){let K=Z?.get(J);if(K!=null)return new C(K);else return new $(void 0)}function yZ(Z,J){return Z&&Z.has(J)}function U5(Z,J,K){return Z??=new Map,Z.set(J,K),Z}function RR(Z,J){return Z?.delete(J),Z}class jR extends O{}class LR extends O{constructor(Z,J){super();this.key=Z,this.parent=J}}class my extends O{constructor(Z,J){super();this.index=Z,this.parent=J}}function Q$(Z,J){while(!0){let K=Z,X=J;if(X instanceof U)return!1;else{let{head:W,tail:Y}=X,V=e5(K,W);if(V)return V;else Z=K,J=Y}}}function o1(Z,J,K){if(K==="")return new my(J,Z);else return new LR(K,Z)}var z4=new jR,kZ="\t";function uy(Z,J){while(!0){let K=Z,X=J;if(K instanceof jR)if(X instanceof U)return"";else{let W=X.tail;return CZ(W)}else if(K instanceof LR){let W=K.key;Z=K.parent,J=A(kZ,A(W,X))}else{let W=K.index;Z=K.parent,J=A(kZ,A(X1(W),X))}}}function dy(Z){return uy(Z,Q([]))}function cy(Z,J){if(J instanceof U)return!1;else return Q$(dy(Z),J)}var yR=` 5 + `;function fR(Z,J){return uy(Z,Q([yR,J]))}class R1 extends O{constructor(Z,J,K,X,W){super();this.kind=Z,this.key=J,this.mapper=K,this.children=X,this.keyed_children=W}}class C1 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.children=V,this.keyed_children=G,this.self_closing=I,this.void=z}}class $1 extends O{constructor(Z,J,K,X){super();this.kind=Z,this.key=J,this.mapper=K,this.content=X}}class o8 extends O{constructor(Z,J,K,X,W,Y,V){super();this.kind=Z,this.key=J,this.mapper=K,this.namespace=X,this.tag=W,this.attributes=Y,this.inner_html=V}}function N4(Z,J){if(J==="")if(Z==="area")return!0;else if(Z==="base")return!0;else if(Z==="br")return!0;else if(Z==="col")return!0;else if(Z==="embed")return!0;else if(Z==="hr")return!0;else if(Z==="img")return!0;else if(Z==="input")return!0;else if(Z==="link")return!0;else if(Z==="meta")return!0;else if(Z==="param")return!0;else if(Z==="source")return!0;else if(Z==="track")return!0;else if(Z==="wbr")return!0;else return!1;else return!1}function py(Z,J){if(J instanceof R1)return new R1(J.kind,Z,J.mapper,J.children,J.keyed_children);else if(J instanceof C1)return new C1(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.children,J.keyed_children,J.self_closing,J.void);else if(J instanceof $1)return new $1(J.kind,Z,J.mapper,J.content);else return new o8(J.kind,Z,J.mapper,J.namespace,J.tag,J.attributes,J.inner_html)}var X8=0;function gJ(Z,J,K,X){return new R1(X8,Z,J,K,X)}var M5=1;function F4(Z,J,K,X,W,Y,V,G,I){return new C1(M5,Z,J,K,X,Ly(W),Y,V,G,I)}var H4=2;function kR(Z,J,K){return new $1(H4,Z,J,K)}var ny=3;var bR=(Z,J)=>Z===J,W8=(Z,J)=>{if(Z===J)return!0;if(Z==null||J==null)return!1;let K=typeof Z;if(K!==typeof J)return!1;if(K!=="object")return!1;if(Z.constructor!==J.constructor)return!1;if(Array.isArray(Z))return I$(Z,J);return z$(Z,J)},I$=(Z,J)=>{let K=Z.length;if(K!==J.length)return!1;while(K--)if(!W8(Z[K],J[K]))return!1;return!0},z$=(Z,J)=>{let K=Object.keys(Z),X=K.length;if(Object.keys(J).length!==X)return!1;while(X--){let W=K[X];if(!Object.hasOwn(J,W))return!1;if(!W8(Z[W],J[W]))return!1}return!0};class f8 extends O{constructor(Z,J,K){super();this.handlers=Z,this.dispatched_paths=J,this.next_dispatched_paths=K}}class $R extends O{constructor(Z,J){super();this.path=Z,this.handler=J}}class hR extends O{constructor(Z){super();this.path=Z}}function gR(){return new f8(E1(),e,e)}function ry(Z){return new f8(Z.handlers,Z.next_dispatched_paths,e)}function ay(Z,J,K){return RR(Z,fR(J,K))}function _J(Z,J,K){let X=ay(Z.handlers,J,K);return new f8(X,Z.dispatched_paths,Z.next_dispatched_paths)}function iy(Z,J,K){return v0(K,Z,(X,W)=>{if(W instanceof B1){let Y=W.name;return ay(X,J,Y)}else return X})}function _R(Z,J,K,X){let W=LZ(Z.handlers,J+yR+K);if(W instanceof C){let Y=W[0],V=I0(X,Y);if(V instanceof C){let G=V[0];return new $R(J,G)}else return new hR(J)}else return new hR(J)}function mR(Z,J){let K=A(J.path,Z.next_dispatched_paths),X=new f8(Z.handlers,Z.dispatched_paths,K);if(J instanceof $R){let W=J.handler;return[X,new C(W)]}else return[X,new $(void 0)]}function mJ(Z,J,K,X){let W=_R(Z,J,K,X);return((Y)=>{return mR(Z,Y)})(W)}function uJ(Z,J){return cy(J,Z.dispatched_paths)}function ty(Z,J,K,X,W){return U5(Z,fR(K,X),P5(W,(Y)=>{return new MZ(Y.prevent_default,Y.stop_propagation,O0(J)(Y.message))}))}function D4(Z,J,K,X,W){let Y=ty(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function ly(Z,J,K,X){return v0(X,Z,(W,Y)=>{if(Y instanceof B1){let{name:V,handler:G}=Y;return ty(W,J,K,V,G)}else return W})}function y8(Z,J){let K=bR(Z,O0);if(bR(J,O0))return Z;else if(K)return J;else return(W)=>{return Z(J(W))}}function sy(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(G instanceof U)return W;else{let{head:I,tail:z}=G;Z=oy(W,Y,V,I),J=Y,K=V+1,X=z}}}function oy(Z,J,K,X){if(X instanceof R1){let W=X.children,Y=o1(J,K,X.key);return sy(Z,Y,0,W)}else if(X instanceof C1){let{attributes:W,children:Y}=X,V=o1(J,K,X.key),I=iy(Z,V,W);return sy(I,V,0,Y)}else if(X instanceof $1)return Z;else{let W=X.attributes,Y=o1(J,K,X.key);return iy(Z,Y,W)}}function k8(Z,J,K,X){let W=oy(Z.handlers,J,K,X);return new f8(W,Z.dispatched_paths,Z.next_dispatched_paths)}function vR(Z,J,K,X,W){while(!0){let Y=Z,V=J,G=K,I=X,z=W;if(z instanceof U)return Y;else{let{head:N,tail:F}=z;Z=ey(Y,V,G,I,N),J=V,K=G,X=I+1,W=F}}}function ey(Z,J,K,X,W){if(W instanceof R1){let Y=W.children,V=o1(K,X,W.key),G=y8(J,W.mapper);return vR(Z,G,V,0,Y)}else if(W instanceof C1){let{attributes:Y,children:V}=W,G=o1(K,X,W.key),I=y8(J,W.mapper),N=ly(Z,I,G,Y);return vR(N,I,G,0,V)}else if(W instanceof $1)return Z;else{let Y=W.attributes,V=o1(K,X,W.key),G=y8(J,W.mapper);return ly(Z,G,V,Y)}}function b8(Z,J,K,X,W){let Y=ey(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function uR(Z){return b8(gR(),O0,z4,0,Z)}function Zf(Z,J,K,X,W){let Y=vR(Z.handlers,J,K,X,W);return new f8(Y,Z.dispatched_paths,Z.next_dispatched_paths)}function R0(Z,J,K){return F4("",O0,"",Z,J,K,E1(),!1,N4(Z,""))}function g1(Z,J,K,X){return F4("",O0,Z,J,K,X,E1(),!1,N4(J,Z))}function x(Z){return kR("",O0,Z)}function z0(){return kR("",O0,"")}function Jf(Z){return gJ("",O0,Z,E1())}function bZ(Z,J){let K=O0(y8(O0(J),Z.mapper));if(Z instanceof R1){let{children:X,keyed_children:W}=Z;return new R1(Z.kind,Z.key,K,O0(X),O0(W))}else if(Z instanceof C1){let{attributes:X,children:W,keyed_children:Y}=Z;return new C1(Z.kind,Z.key,K,Z.namespace,Z.tag,O0(X),O0(W),O0(Y),Z.self_closing,Z.void)}else if(Z instanceof $1)return O0(Z);else{let X=Z.attributes;return new o8(Z.kind,Z.key,K,Z.namespace,Z.tag,O0(X),Z.inner_html)}}function l0(Z){return x(Z)}function _1(Z,J){return R0("h1",Z,J)}function B4(Z,J){return R0("h2",Z,J)}function O4(Z,J){return R0("h3",Z,J)}function j(Z,J){return R0("div",Z,J)}function j5(Z,J){return R0("li",Z,J)}function x0(Z,J){return R0("p",Z,J)}function dJ(Z,J){return R0("pre",Z,J)}function cJ(Z,J){return R0("ul",Z,J)}function m1(Z,J){return R0("a",Z,J)}function h8(Z,J){return R0("code",Z,J)}function p(Z,J){return R0("span",Z,J)}function Kf(Z){return R0("img",Z,e)}function q0(Z,J){return R0("button",Z,J)}function v8(Z,J){return R0("form",Z,J)}function N1(Z){return R0("input",Z,e)}function s0(Z,J){return R0("label",Z,J)}function dR(Z,J){return R0("option",Z,Q([x(J)]))}function Yf(Z,J){return R0("select",Z,J)}function cR(Z,J){return R0("textarea",A(ER("value",d(J)),Z),Q([x(J)]))}function Xf(Z,J){return R0("details",Z,J)}function Wf(Z,J){return R0("summary",Z,J)}class hZ extends O{constructor(Z,J,K,X){super();this.index=Z,this.removed=J,this.changes=K,this.children=X}}class Qf extends O{constructor(Z,J){super();this.kind=Z,this.content=J}}class Vf extends O{constructor(Z,J){super();this.kind=Z,this.inner_html=J}}class Gf extends O{constructor(Z,J,K){super();this.kind=Z,this.added=J,this.removed=K}}class If extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.before=K}}class zf extends O{constructor(Z,J,K){super();this.kind=Z,this.index=J,this.with=K}}class Nf extends O{constructor(Z,J){super();this.kind=Z,this.index=J}}class Ff extends O{constructor(Z,J,K){super();this.kind=Z,this.children=J,this.before=K}}function pR(Z,J,K,X){return new hZ(Z,J,K,X)}var nR=0;function Hf(Z){return new Qf(nR,Z)}var iR=1;function Df(Z){return new Vf(iR,Z)}var lR=2;function sR(Z,J){return new Gf(lR,Z,J)}var rR=3;function Bf(Z,J){return new If(rR,Z,J)}var aR=4;function Of(Z){return new Nf(aR,Z)}var tR=5;function L5(Z,J){return new zf(tR,Z,J)}var oR=6;function eR(Z,J){return new Ff(oR,Z,J)}class Pf extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.kind=Z,this.open_shadow_root=J,this.will_adopt_styles=K,this.observed_attributes=X,this.observed_properties=W,this.requested_contexts=Y,this.provided_contexts=V,this.vdom=G}}class Sf extends O{constructor(Z,J){super();this.kind=Z,this.patch=J}}class Af extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.data=K}}class qf extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}class pJ extends O{constructor(Z,J){super();this.kind=Z,this.messages=J}}class nJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class iJ extends O{constructor(Z,J,K){super();this.kind=Z,this.name=J,this.value=K}}class lJ extends O{constructor(Z,J,K,X){super();this.kind=Z,this.path=J,this.name=K,this.event=X}}class Zj extends O{constructor(Z,J,K){super();this.kind=Z,this.key=J,this.value=K}}var H$=0;function Ef(Z,J,K,X,W,Y,V){return new Pf(H$,Z,J,K,X,W,Y,V)}var D$=1;function Jj(Z){return new Sf(D$,Z)}var B$=2;function Cf(Z,J){return new Af(B$,Z,J)}var O$=3;function xf(Z,J){return new qf(O$,Z,J)}class sJ extends O{constructor(Z,J){super();this.patch=Z,this.events=J}}class Mf extends O{constructor(Z,J,K){super();this.added=Z,this.removed=J,this.events=K}}function T$(Z,J,K,X){if(K==="input"&&J==="")return uJ(Z,X);else if(K==="select"&&J==="")return uJ(Z,X);else if(K==="textarea"&&J==="")return uJ(Z,X);else return!1}function Uf(Z,J,K,X,W,Y,V,G){while(!0){let I=Z,z=J,N=K,F=X,D=W,B=Y,T=V,P=G;if(D instanceof U)if(B instanceof U)return new Mf(T,P,F);else{let S=B.head;if(S instanceof B1){let q=S,E=B.tail,R=S.name,k=S.handler,w=A(q,T),f=D4(F,N,z,R,k);Z=I,J=z,K=N,X=f,W=D,Y=E,V=w,G=P}else{let q=S,E=B.tail,R=A(q,T);Z=I,J=z,K=N,X=F,W=D,Y=E,V=R,G=P}}else if(B instanceof U){let S=D.head;if(S instanceof B1){let q=S,E=D.tail,R=S.name,k=A(q,P),w=_J(F,z,R);Z=I,J=z,K=N,X=w,W=E,Y=B,V=T,G=k}else{let q=S,E=D.tail,R=A(q,P);Z=I,J=z,K=N,X=F,W=E,Y=B,V=T,G=R}}else{let{head:S,tail:q}=D,E=B.head,R=B.tail,k=bJ(S,E);if(k instanceof a0)if(S instanceof B1){let w=S.name,f=A(S,P),g=_J(F,z,w);Z=I,J=z,K=N,X=g,W=q,Y=B,V=T,G=f}else{let w=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=B,V=T,G=w}else if(k instanceof t0)if(S instanceof a1)if(E instanceof a1){let w,f=E.name;if(f==="value")w=I||S.value!==E.value;else if(f==="checked")w=I||S.value!==E.value;else if(f==="selected")w=I||S.value!==E.value;else w=S.value!==E.value;let g=w,c;if(g)c=A(E,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=R,V=n,G=P}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=R,V=g,G=c}else{let w=A(E,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=R,V=w,G=f}else if(S instanceof UZ)if(E instanceof UZ){let w,f=E.name;if(f==="scrollLeft")w=!0;else if(f==="scrollRight")w=!0;else if(f==="value")w=I||!W8(S.value,E.value);else if(f==="checked")w=I||!W8(S.value,E.value);else if(f==="selected")w=I||!W8(S.value,E.value);else w=!W8(S.value,E.value);let g=w,c;if(g)c=A(E,T);else c=T;let n=c;Z=I,J=z,K=N,X=F,W=q,Y=R,V=n,G=P}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=A(S,P),n=D4(F,N,z,w,f);Z=I,J=z,K=N,X=n,W=q,Y=R,V=g,G=c}else{let w=A(E,T),f=A(S,P);Z=I,J=z,K=N,X=F,W=q,Y=R,V=w,G=f}else if(E instanceof B1){let{name:w,handler:f}=E,g=S.prevent_default.kind!==E.prevent_default.kind||S.stop_propagation.kind!==E.stop_propagation.kind||S.debounce!==E.debounce||S.throttle!==E.throttle,c;if(g)c=A(E,T);else c=T;let n=c,r=D4(F,N,z,w,f);Z=I,J=z,K=N,X=r,W=q,Y=R,V=n,G=P}else{let w=S.name,f=A(E,T),g=A(S,P),c=_J(F,z,w);Z=I,J=z,K=N,X=c,W=q,Y=R,V=f,G=g}else if(E instanceof B1){let{name:w,handler:f}=E,g=A(E,T),c=D4(F,N,z,w,f);Z=I,J=z,K=N,X=c,W=D,Y=R,V=g,G=P}else{let w=A(E,T);Z=I,J=z,K=N,X=F,W=D,Y=R,V=w,G=P}}}}function Kj(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B){while(!0){let T=Z,P=J,S=K,q=X,E=W,R=Y,k=V,w=G,f=I,g=z,c=N,n=F,r=D,Q0=B;if(T instanceof U)if(S instanceof U)return new sJ(new hZ(f,k,c,n),Q0);else{let E0=Zf(Q0,r,g,w,S),k0=eR(S,w-R),G0=A(k0,c);return new sJ(new hZ(f,k,G0,n),E0)}else if(S instanceof U){let{head:E0,tail:k0}=T,G0;if(E0.key===""||!yZ(E,E0.key))G0=k+1;else G0=k;let V0=G0,J0=k8(Q0,g,w,E0);Z=k0,J=P,K=S,X=q,W=E,Y=R,V=V0,G=w,I=f,z=g,N=c,F=n,D=r,B=J0}else{let E0=T.head,k0=S.head;if(E0.key!==k0.key){let G0=T.tail,P0=S.tail,V0=LZ(P,k0.key);if(yZ(q,E0.key))if(V0 instanceof C){let Z0=V0[0];if(yZ(E,E0.key))Z=G0,J=P,K=S,X=q,W=E,Y=R-1,V=k,G=w,I=f,z=g,N=c,F=n,D=r,B=Q0;else{let L=w-R,_=A(Bf(k0.key,L),c),t=U5(E,k0.key,void 0),o=R+1;Z=A(Z0,T),J=P,K=S,X=q,W=t,Y=o,V=k,G=w,I=f,z=g,N=_,F=n,D=r,B=Q0}}else{let Z0=w-R,m=b8(Q0,r,g,w,k0),L=eR(Q([k0]),Z0),_=A(L,c);Z=T,J=P,K=P0,X=q,W=E,Y=R+1,V=k,G=w+1,I=f,z=g,N=_,F=n,D=r,B=m}else if(V0 instanceof C){let Z0=w-R,m=A(Of(Z0),c),L=k8(Q0,g,w,E0),_=R-1;Z=G0,J=P,K=S,X=q,W=E,Y=_,V=k,G=w,I=f,z=g,N=m,F=n,D=r,B=L}else{let Z0=L5(w-R,k0),m,_=k8(Q0,g,w,E0);m=b8(_,r,g,w,k0);let t=m;Z=G0,J=P,K=P0,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(Z0,c),F=n,D=r,B=t}}else{let G0=T.head;if(G0 instanceof R1){let P0=S.head;if(P0 instanceof R1){let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=Kj(V0.children,V0.keyed_children,Z0.children,Z0.keyed_children,E1(),0,0,0,w,_,e,e,L,Q0),o,K0=t.patch;if(K0.changes instanceof U)if(K0.children instanceof U)if(K0.removed===0)o=n;else o=A(t.patch,n);else o=A(t.patch,n);else o=A(t.patch,n);let C0=o;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=C0,D=r,B=t.events}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else if(G0 instanceof C1){let P0=S.head;if(P0 instanceof C1){let V0=G0,J0=P0;if(V0.namespace===J0.namespace&&V0.tag===J0.tag){let Z0=T.tail,m=S.tail,L=y8(r,J0.mapper),_=o1(g,w,J0.key),t=T$(Q0,J0.namespace,J0.tag,_),o=Uf(t,_,L,Q0,V0.attributes,J0.attributes,e,e),K0,w0,C0;K0=o.added,w0=o.removed,C0=o.events;let L0;if(K0 instanceof U&&w0 instanceof U)L0=e;else L0=Q([sR(K0,w0)]);let H1=L0,T1=Kj(V0.children,V0.keyed_children,J0.children,J0.keyed_children,E1(),0,0,0,w,_,H1,e,L,C0),P1,w1=T1.patch;if(w1.changes instanceof U)if(w1.children instanceof U)if(w1.removed===0)P1=n;else P1=A(T1.patch,n);else P1=A(T1.patch,n);else P1=A(T1.patch,n);let x8=P1;Z=Z0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=x8,D=r,B=T1.events}else{let Z0=G0,m=T.tail,L=P0,_=S.tail,t=L5(w-R,L),o,w0=k8(Q0,g,w,Z0);o=b8(w0,r,g,w,L);let C0=o;Z=m,J=P,K=_,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(t,c),F=n,D=r,B=C0}}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else if(G0 instanceof $1){let P0=S.head;if(P0 instanceof $1){let V0=G0,J0=P0;if(V0.content===J0.content){let Z0=T.tail,m=S.tail;Z=Z0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=n,D=r,B=Q0}else{let Z0=T.tail,m=P0,L=S.tail,_=pR(w,0,Q([Hf(m.content)]),e);Z=Z0,J=P,K=L,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=A(_,n),D=r,B=Q0}}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}else{let P0=S.head;if(P0 instanceof o8){let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=y8(r,Z0.mapper),_=o1(g,w,Z0.key),t=Uf(!1,_,L,Q0,V0.attributes,Z0.attributes,e,e),o,K0,w0;o=t.added,K0=t.removed,w0=t.events;let C0;if(o instanceof U&&K0 instanceof U)C0=e;else C0=Q([sR(o,K0)]);let L0=C0,H1;if(V0.inner_html===Z0.inner_html)H1=L0;else H1=A(Df(Z0.inner_html),L0);let P1=H1,w1;if(P1 instanceof U)w1=n;else w1=A(pR(w,0,P1,Q([])),n);let Q8=w1;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=c,F=Q8,D=r,B=w0}else{let V0=G0,J0=T.tail,Z0=P0,m=S.tail,L=L5(w-R,Z0),_,o=k8(Q0,g,w,V0);_=b8(o,r,g,w,Z0);let K0=_;Z=J0,J=P,K=m,X=q,W=E,Y=R,V=k,G=w+1,I=f,z=g,N=A(L,c),F=n,D=r,B=K0}}}}}}function T4(Z,J,K){return Kj(Q([J]),E1(),Q([K]),E1(),E1(),0,0,0,0,z4,e,e,O0,ry(Z))}var{setTimeout:P$,clearTimeout:Yj}=globalThis,S$=(Z,J)=>r1().createElementNS(Z,J),A$=(Z)=>r1().createTextNode(Z),q$=()=>r1().createDocumentFragment(),P4=(Z,J,K)=>Z.insertBefore(J,K),jf=Cy?(Z,J,K)=>Z.moveBefore(J,K):P4,E$=(Z,J)=>Z.removeChild(J),C$=(Z,J)=>Z.getAttribute(J),Lf=(Z,J,K)=>Z.setAttribute(J,K),x$=(Z,J)=>Z.removeAttribute(J),w$=(Z,J,K,X)=>Z.addEventListener(J,K,X),yf=(Z,J,K)=>Z.removeEventListener(J,K),U$=(Z,J)=>Z.innerHTML=J,M$=(Z,J)=>Z.data=J,$8=Symbol("lustre");class bf{constructor(Z,J,K,X){this.kind=Z,this.key=X,this.parent=J,this.children=[],this.node=K,this.handlers=new Map,this.throttles=new Map,this.debouncers=new Map}get parentNode(){return this.kind===X8?this.node.parentNode:this.node}}var g8=(Z,J,K,X,W)=>{let Y=new bf(Z,J,K,W);return K[$8]=Y,J?.children.splice(X,0,Y),Y},R$=(Z)=>{let J="";for(let K=Z[$8];K.parent;K=K.parent)if(K.key)J=`${kZ}${K.key}${J}`;else{let X=K.parent.children.indexOf(K);J=`${kZ}${X}${J}`}return J.slice(1)};class Wj{#Z=null;#X;#K;#Y=!1;constructor(Z,J,K,{exposeKeys:X=!1}={}){this.#Z=Z,this.#X=J,this.#K=K,this.#Y=X}mount(Z){g8(M5,null,this.#Z,0,null),this.#P(this.#Z,null,this.#Z[$8],0,Z)}push(Z){this.#J.push({node:this.#Z[$8],patch:Z}),this.#W()}#J=[];#W(){let Z=this.#J;while(Z.length){let{node:J,patch:K}=Z.pop(),{children:X}=J,{changes:W,removed:Y,children:V}=K;if(y5(W,(G)=>this.#Q(J,G)),Y)this.#F(J,X.length-Y,Y);y5(V,(G)=>{let I=X[G.index|0];this.#J.push({node:I,patch:G})})}}#Q(Z,J){switch(J.kind){case nR:this.#C(Z,J);break;case iR:this.#S(Z,J);break;case lR:this.#D(Z,J);break;case rR:this.#z(Z,J);break;case aR:this.#O(Z,J);break;case tR:this.#N(Z,J);break;case oR:this.#G(Z,J);break}}#G(Z,{children:J,before:K}){let X=q$(),W=this.#I(Z,K);this.#T(X,null,Z,K|0,J),P4(Z.parentNode,X,W)}#N(Z,{index:J,with:K}){this.#F(Z,J|0,1);let X=this.#I(Z,J);this.#P(Z.parentNode,X,Z,J|0,K)}#I(Z,J){J=J|0;let{children:K}=Z,X=K.length;if(J<X)return K[J].node;let W=K[X-1];if(!W&&Z.kind!==X8)return null;if(!W)W=Z;while(W.kind===X8&&W.children.length)W=W.children[W.children.length-1];return W.node.nextSibling}#z(Z,{key:J,before:K}){K=K|0;let{children:X,parentNode:W}=Z,Y=X[K].node,V=X[K];for(let N=K+1;N<X.length;++N){let F=X[N];if(X[N]=V,V=F,F.key===J){X[K]=F;break}}let{kind:G,node:I,children:z}=V;if(jf(W,I,Y),G===X8)this.#V(W,z,Y)}#V(Z,J,K){for(let X=0;X<J.length;++X){let{kind:W,node:Y,children:V}=J[X];if(jf(Z,Y,K),W===X8)this.#V(Z,V,K)}}#O(Z,{index:J}){this.#F(Z,J,1)}#F(Z,J,K){let{children:X,parentNode:W}=Z,Y=X.splice(J,K);for(let V=0;V<Y.length;++V){let{kind:G,node:I,children:z}=Y[V];if(E$(W,I),this.#H(Y[V]),G===X8)Y.push(...z)}}#H(Z){let{debouncers:J,children:K}=Z;for(let{timeout:X}of J.values())if(X)Yj(X);J.clear(),y5(K,(X)=>this.#H(X))}#D({node:Z,handlers:J,throttles:K,debouncers:X},{added:W,removed:Y}){y5(Y,({name:V})=>{if(J.delete(V))yf(Z,V,Xj),this.#B(K,V,0),this.#B(X,V,0);else x$(Z,V),kf[V]?.removed?.(Z,V)}),y5(W,(V)=>this.#E(Z,V))}#C({node:Z},{content:J}){M$(Z,J??"")}#S({node:Z},{inner_html:J}){U$(Z,J??"")}#T(Z,J,K,X,W){y5(W,(Y)=>this.#P(Z,J,K,X++,Y))}#P(Z,J,K,X,W){switch(W.kind){case M5:{let Y=this.#A(K,X,W);this.#T(Y,null,Y[$8],0,W.children),P4(Z,Y,J);break}case H4:{let Y=this.#q(K,X,W);P4(Z,Y,J);break}case X8:{let Y=this.#q(K,X,W);P4(Z,Y,J),this.#T(Z,J,Y[$8],0,W.children);break}case ny:{let Y=this.#A(K,X,W);this.#S({node:Y},W),P4(Z,Y,J);break}}}#A(Z,J,{kind:K,key:X,tag:W,namespace:Y,attributes:V}){let G=S$(Y||yJ,W);if(g8(K,Z,G,J,X),this.#Y&&X)Lf(G,"data-lustre-key",X);return y5(V,(I)=>this.#E(G,I)),G}#q(Z,J,{kind:K,key:X,content:W}){let Y=A$(W??"");return g8(K,Z,Y,J,X),Y}#E(Z,J){let{debouncers:K,handlers:X,throttles:W}=Z[$8],{kind:Y,name:V,value:G,prevent_default:I,debounce:z,throttle:N}=J;switch(Y){case TR:{let F=G??"";if(V==="virtual:defaultValue"){Z.defaultValue=F;return}else if(V==="virtual:defaultChecked"){Z.defaultChecked=!0;return}else if(V==="virtual:defaultSelected"){Z.defaultSelected=!0;return}if(F!==C$(Z,V))Lf(Z,V,F);kf[V]?.added?.(Z,F);break}case PR:Z[V]=G;break;case SR:{if(X.has(V))yf(Z,V,Xj);let F=I.kind===AR;w$(Z,V,Xj,{passive:F}),this.#B(W,V,N),this.#B(K,V,z),X.set(V,(D)=>this.#x(J,D));break}}}#B(Z,J,K){let X=Z.get(J);if(K>0)if(X)X.delay=K;else Z.set(J,{delay:K});else if(X){let{timeout:W}=X;if(W)Yj(W);Z.delete(J)}}#x(Z,J){let{currentTarget:K,type:X}=J,{debouncers:W,throttles:Y}=K[$8],V=R$(K),{prevent_default:G,stop_propagation:I,include:z}=Z;if(G.kind===hJ)J.preventDefault();if(I.kind===hJ)J.stopPropagation();if(X==="submit")J.detail??={},J.detail.formData=[...new FormData(J.target,J.submitter).entries()];let N=this.#X(J,V,X,z),F=Y.get(X);if(F){let B=Date.now(),T=F.last||0;if(B>T+F.delay)F.last=B,F.lastEvent=J,this.#K(J,N)}let D=W.get(X);if(D)Yj(D.timeout),D.timeout=P$(()=>{if(J===Y.get(X)?.lastEvent)return;this.#K(J,N)},D.delay);if(!F&&!D)this.#K(J,N)}}var y5=(Z,J)=>{if(Array.isArray(Z))for(let K=0;K<Z.length;K++)J(Z[K]);else if(Z)for(Z;Z.head;Z=Z.tail)J(Z.head)},Xj=(Z)=>{let{currentTarget:J,type:K}=Z;J[$8].handlers.get(K)(Z)},ff=(Z)=>{return{added(J){J[Z]=!0},removed(J){J[Z]=!1}}},j$=(Z)=>{return{added(J,K){J[Z]=K}}},kf={checked:ff("checked"),selected:ff("selected"),value:j$("value"),autofocus:{added(Z){queueMicrotask(()=>{Z.focus?.()})}},autoplay:{added(Z){try{Z.play?.()}catch(J){console.error(J)}}}};function L$(Z,J,K){while(!0){let X=Z,W=J,Y=K;if(X instanceof U)return[W,F0(Y)];else{let V=X.tail,G=X.head[0],I=X.head[1],z=py(G,I),N;if(G==="")N=W;else N=U5(W,G,z);let F=N,D=A(z,Y);Z=V,J=F,K=D}}}function Qj(Z){return L$(Z,E1(),e)}function hf(Z,J,K){let X=Qj(K),W,Y;return W=X[0],Y=X[1],F4("",O0,"",Z,J,Y,W,!1,N4(Z,""))}function vf(Z,J,K,X){let W=Qj(X),Y,V;return Y=W[0],V=W[1],F4("",O0,Z,J,K,V,Y,!1,N4(J,Z))}function $f(Z){let J=Qj(Z),K,X;return K=J[0],X=J[1],gJ("",O0,X,K)}var gf=(Z)=>{let J=g8(M5,null,Z,0,null),K=0;for(let V=Z.firstChild;V;V=V.nextSibling)if(_f(V))K+=1;if(K===0){let V=r1().createTextNode("");return g8(H4,J,V,0,null),Z.replaceChildren(V),z0()}if(K===1)return Vj(J,Z).head[1];let X=r1().createTextNode(""),W=g8(X8,J,X,0,null),Y=Vj(W,Z);return Z.insertBefore(X,Z.firstChild),$f(Y)},_f=(Z)=>{switch(Z.nodeType){case fJ:return!0;case BR:return!!Z.data;default:return!1}},y$=(Z,J,K,X)=>{if(!_f(J))return null;switch(J.nodeType){case fJ:{let W=g8(M5,Z,J,X,K),Y=J.localName,V=J.namespaceURI,G=!V||V===yJ;if(G&&f$.includes(Y))k$(Y,J);let I=b$(J),z=Vj(W,J);return G?hf(Y,I,z):vf(V,Y,I,z)}case BR:return g8(H4,Z,J,X,null),x(J.data);default:return null}},f$=["input","select","textarea"],k$=(Z,J)=>{let{value:K,checked:X}=J;if(Z==="input"&&J.type==="checkbox"&&!X)return;if(Z==="input"&&J.type==="radio"&&!X)return;if(J.type!=="checkbox"&&J.type!=="radio"&&!K)return;queueMicrotask(()=>{if(J.value=K,J.checked=X,J.dispatchEvent(new Event("input",{bubbles:!0})),J.dispatchEvent(new Event("change",{bubbles:!0})),r1().activeElement!==J)J.dispatchEvent(new Event("blur",{bubbles:!0}))})},Vj=(Z,J)=>{let K=null,X=J.firstChild,W=null,Y=0;while(X){let V=X.nodeType===fJ?X.getAttribute("data-lustre-key"):null;if(V!=null)X.removeAttribute("data-lustre-key");let G=y$(Z,X,V,Y),I=X.nextSibling;if(G){let z=new k1([V??"",G],null);if(W)W=W.tail=z;else W=K=z;Y+=1}else J.removeChild(X);X=I}if(!W)return e;return W.tail=e,K},b$=(Z)=>{let J=Z.attributes.length,K=e;while(J-- >0){let X=Z.attributes[J];if(X.name==="xmlns")continue;K=new k1(h$(X),K)}return K},h$=(Z)=>{let{localName:J,value:K}=Z;return M(J,K)};var e8=()=>!!r1();class rJ{constructor(Z,[J,K],X,W){this.root=Z,this.#Z=J,this.#X=X,this.#K=W,this.root.addEventListener("context-request",(G)=>{if(!(G.context&&G.callback))return;if(!this.#Q.has(G.context))return;G.stopImmediatePropagation();let I=this.#Q.get(G.context);if(G.subscribe){let z=()=>{I.subscribers=I.subscribers.filter((N)=>N!==G.callback)};I.subscribers.push([G.callback,z]),G.callback(I.value,z)}else G.callback(I.value)});let Y=(G,I,z)=>_R(this.#J,I,z,G),V=(G,I)=>{let[z,N]=mR(this.#J,I);if(this.#J=z,N.isOk()){let F=N[0];if(F.stop_propagation)G.stopPropagation();if(F.prevent_default)G.preventDefault();this.dispatch(F.message,!1)}};this.#W=new Wj(this.root,Y,V),this.#Y=gf(this.root),this.#J=gR(),this.#H(K),this.#D()}root=null;dispatch(Z,J=!1){if(this.#G)this.#N.push(Z);else{let[K,X]=this.#K(this.#Z,Z);this.#Z=K,this.#F(X,J)}}emit(Z,J){(this.root.host??this.root).dispatchEvent(new CustomEvent(Z,{detail:J,bubbles:!0,composed:!0}))}provide(Z,J){if(!this.#Q.has(Z))this.#Q.set(Z,{value:J,subscribers:[]});else{let K=this.#Q.get(Z);if(W8(K.value,J))return;K.value=J;for(let X=K.subscribers.length-1;X>=0;X--){let[W,Y]=K.subscribers[X];if(!W){K.subscribers.splice(X,1);continue}W(J,Y)}}}#Z;#X;#K;#Y;#J;#W;#Q=new Map;#G=!1;#N=[];#I=e;#z=e;#V=null;#O={dispatch:(Z)=>this.dispatch(Z),emit:(Z,J)=>this.emit(Z,J),select:()=>{},root:()=>this.root,provide:(Z,J)=>this.provide(Z,J)};#F(Z,J=!1){if(this.#H(Z),!this.#V)if(J)this.#V="sync",queueMicrotask(()=>this.#D());else this.#V=requestAnimationFrame(()=>this.#D())}#H(Z){this.#G=!0;while(!0){for(let K=Z.synchronous;K.tail;K=K.tail)K.head(this.#O);if(this.#I=uf(this.#I,Z.before_paint),this.#z=uf(this.#z,Z.after_paint),!this.#N.length)break;let J=this.#N.shift();[this.#Z,Z]=this.#K(this.#Z,J)}this.#G=!1}#D(){this.#V=null;let Z=this.#X(this.#Z),{patch:J,events:K}=T4(this.#J,this.#Y,Z);if(this.#J=K,this.#Y=Z,this.#W.push(J),this.#I instanceof k1){let X=mf(this.#I);this.#I=e,queueMicrotask(()=>{this.#F(X,!0)})}if(this.#z instanceof k1){let X=mf(this.#z);this.#z=e,requestAnimationFrame(()=>{this.#F(X,!0)})}}}function mf(Z){return{synchronous:Z,after_paint:e,before_paint:e}}function uf(Z,J){if(Z instanceof U)return J;else if(J instanceof U)return Z;else return _0(Z,J)}class Ij extends O{constructor(Z){super();this.message=Z}}class zj extends O{constructor(Z){super();this.callback=Z}}class Nj extends O{constructor(Z){super();this.callback=Z}}class Z5 extends O{constructor(Z){super();this.message=Z}}class f5 extends O{constructor(Z,J){super();this.name=Z,this.data=J}}class aJ extends O{constructor(Z,J){super();this.key=Z,this.value=J}}class k5 extends O{}class pf extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.open_shadow_root=Z,this.adopt_styles=J,this.delegates_focus=K,this.attributes=X,this.properties=W,this.contexts=Y,this.is_form_associated=V,this.on_form_autofill=G,this.on_form_reset=I,this.on_form_restore=z}}function nf(Z){let J=new pf(!0,!0,!1,e,e,e,!1,kJ,kJ,kJ);return v0(Z,J,(K,X)=>{return X.apply(K)})}class sf{#Z;constructor(Z,[J,K],X,W){this.#Z=new rJ(Z,[J,K],W,X)}send(Z){switch(Z.constructor){case Z5:{this.dispatch(Z.message,!1);break}case f5:{this.emit(Z.name,Z.data);break}case k5:break}}dispatch(Z){this.#Z.dispatch(Z)}emit(Z,J){this.#Z.emit(Z,J)}}var rf=({init:Z,update:J,view:K},X,W)=>{if(!e8())return new $(new vZ);let Y=X instanceof HTMLElement?X:r1().querySelector(X);if(!Y)return new $(new Fj(X));return new C(new sf(Y,Z(W),J,K))};class v${#Z;#X;#K;#Y;#J;#W;#Q=h0();#G=new Set;constructor([Z,J],K,X,W){this.#Z=Z,this.#X=K,this.#K=X,this.#Y=W,this.#J=this.#K(this.#Z),this.#W=uR(this.#J),this.#V(J)}send(Z){switch(Z.constructor){case Ij:{let{message:J}=Z,K=this.#N(J),X=T4(this.#W,this.#J,K);this.#J=K,this.#W=X.events,this.broadcast(Jj(X.patch));return}case zj:{let{callback:J}=Z;this.#G.add(J),J(Ef(this.#Y.open_shadow_root,this.#Y.adopt_styles,U8(this.#Y.attributes),U8(this.#Y.properties),U8(this.#Y.contexts),this.#Q,this.#J));return}case Nj:{let{callback:J}=Z;this.#G.delete(J);return}case Z5:{let{message:J}=Z,[K,X]=this.#X(this.#Z,J),W=this.#K(K),Y=T4(this.#W,this.#J,W);this.#V(X),this.#Z=K,this.#J=W,this.#W=Y.events,this.broadcast(Jj(Y.patch));return}case f5:{let{name:J,data:K}=Z;this.broadcast(Cf(J,K));return}case aJ:{let{key:J,value:K}=Z,X=D0(this.#Q,J);if(X.isOk()&&W8(X[0],K))return;this.#Q=n0(this.#Q,J,K),this.broadcast(xf(J,K));return}case k5:{this.#Z=null,this.#X=null,this.#K=null,this.#Y=null,this.#J=null,this.#W=null,this.#Q=null,this.#G.clear();return}default:return}}broadcast(Z){for(let J of this.#G)J(Z)}#N(Z){switch(Z.constructor){case pJ:{let{messages:J}=Z,K=this.#Z,X=i();for(let W=J;W.head;W=W.tail){let Y=this.#N(W.head);if(Y instanceof C){K=Y[0][0],X=Q1(r0.fromArray([X,Y[0][1]]));break}}return this.#V(X),this.#Z=K,this.#K(this.#Z)}case nJ:{let{name:J,value:K}=Z,X=this.#I(J,K);if(X instanceof $)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case iJ:{let{name:J,value:K}=Z,X=this.#z(J,K);if(X instanceof $)return this.#J;else{let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}case lJ:{let{path:J,name:K,event:X}=Z,[W,Y]=mJ(this.#W,J,K,X);if(this.#W=W,Y instanceof $)return this.#J;else{let[V,G]=this.#X(this.#Z,Y[0].message);return this.#V(G),this.#Z=V,this.#K(this.#Z)}}case Zj:{let{key:J,value:K}=Z,X=D0(this.#Y.contexts,J);if(X instanceof $)return this.#J;if(X=I0(K,X[0]),X instanceof $)return this.#J;let[W,Y]=this.#X(this.#Z,X[0]);return this.#V(Y),this.#Z=W,this.#K(this.#Z)}}}#I(Z,J){let K=D0(this.#Y.attributes,Z);switch(K.constructor){case C:return K[0](J);case $:return new $(void 0)}}#z(Z,J){let K=D0(this.#Y.properties,Z);switch(K.constructor){case C:return K[0](J);case $:return new $(void 0)}}#V(Z){let J=(V)=>this.send(new Z5(V)),K=(V,G)=>this.send(new f5(V,G)),X=()=>{return},W=()=>{return},Y=(V,G)=>this.send(new aJ(V,G));globalThis.queueMicrotask(()=>{_y(Z,J,K,X,W,Y)})}}class af extends O{constructor(Z,J,K,X){super();this.init=Z,this.update=J,this.view=K,this.config=X}}class Fj extends O{constructor(Z){super();this.selector=Z}}class vZ extends O{}function tf(Z,J,K){return new af(Z,J,K,nf(e))}function of(Z,J,K){return G4(!e8(),new $(new vZ),()=>{return rf(Z,J,K)})}function Jk(Z,J){return[Z,J]}var _$={handle_external_links:!1,handle_internal_links:!0},Yk=globalThis?.window?.location?.href,Bj=()=>{if(!Yk)return new $(void 0);else return new C(Dj(new URL(Yk)))},Oj=(Z,J=_$)=>{document.addEventListener("click",(K)=>{let X=Wk(K.target);if(!X)return;try{let W=new URL(X.href),Y=Dj(W),V=W.host!==window.location.host||X.target==="_blank";if(!J.handle_external_links&&V)return;if(!J.handle_internal_links&&!V)return;if(K.preventDefault(),!V)window.history.pushState({},"",X.href),window.requestAnimationFrame(()=>{if(W.hash)document.getElementById(W.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)});return Z(Y)}catch{return}}),window.addEventListener("popstate",(K)=>{K.preventDefault();let X=new URL(window.location.href),W=Dj(X);window.requestAnimationFrame(()=>{if(X.hash)document.getElementById(X.hash.slice(1))?.scrollIntoView();else window.scrollTo(0,0)}),Z(W)}),window.addEventListener("modem-push",({detail:K})=>{Z(K)}),window.addEventListener("modem-replace",({detail:K})=>{Z(K)})},Xk=(Z)=>{window.history.pushState({},"",jJ(Z)),window.requestAnimationFrame(()=>{if(Z.fragment[0])document.getElementById(Z.fragment[0])?.scrollIntoView()}),window.dispatchEvent(new CustomEvent("modem-push",{detail:Z}))};var Wk=(Z)=>{if(!Z||Z.tagName==="BODY")return null;else if(Z.tagName==="A")return Z;else return Wk(Z.parentElement)},Dj=(Z)=>{return new W0(Z.protocol?new y(Z.protocol.slice(0,-1)):new v,new v,Z.hostname?new y(Z.hostname):new v,Z.port?new y(Number(Z.port)):new v,Z.pathname,Z.search?new y(Z.search.slice(1)):new v,Z.hash?new y(Z.hash.slice(1)):new v)};function Vk(Z){return z1((J)=>{return G4(!e8(),void 0,()=>{return Oj((K)=>{let W=Z(K);return J(W)})})})}function Qk(Z){if(Z==="")return new v;else return new y(Z)}var tJ=new W0(new v,new v,new v,new v,"",new v,new v);function b5(Z,J,K){return z1((X)=>{return G4(!e8(),void 0,()=>{return Xk(new W0(tJ.scheme,tJ.userinfo,tJ.host,tJ.port,Z,hM(J,Qk),hM(K,Qk)))})})}class Gk extends O{constructor(Z,J){super();this.query=Z,this.module_path=J}}class Tj extends O{constructor(Z){super();this.queries=Z}}function Ik(){return new Tj(h0())}function e0(Z,J,K,X){let W=new Gk(K,X);return new Tj(n0(Z.queries,J,W))}function Pj(Z,J){return D0(Z.queries,J)}class eJ extends O{}class ZK extends O{}class zk extends O{}class Nk extends O{}class Fk extends O{}class Hk extends O{}class Dk extends O{}class Bk extends O{}class Ok extends O{}class Sj extends O{}class JK extends O{}function Tk(Z){if(Z instanceof eJ)return"GET";else if(Z instanceof ZK)return"POST";else if(Z instanceof zk)return"HEAD";else if(Z instanceof Nk)return"PUT";else if(Z instanceof Fk)return"DELETE";else if(Z instanceof Hk)return"TRACE";else if(Z instanceof Dk)return"CONNECT";else if(Z instanceof Bk)return"OPTIONS";else if(Z instanceof Ok)return"PATCH";else return Z[0]}function Pk(Z){if(Z instanceof Sj)return"http";else return"https"}function Sk(Z){let J=i1(Z);if(J==="http")return new C(new Sj);else if(J==="https")return new C(new JK);else return new $(void 0)}class $Z extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.method=Z,this.headers=J,this.body=K,this.scheme=X,this.host=W,this.port=Y,this.path=V,this.query=G}}function qk(Z){return new W0(new y(Pk(Z.scheme)),new v,new y(Z.host),Z.port,Z.path,Z.query,new v)}function c$(Z){return M1((()=>{let J=Z.scheme,K=qL(J,"");return Sk(K)})(),(J)=>{return M1((()=>{let K=Z.host;return kM(K,void 0)})(),(K)=>{let X=new $Z(new eJ,Q([]),"",J,K,Z.port,Z.path,Z.query);return new C(X)})})}function Aj(Z,J,K){let X=eM(Z.headers,i1(J),K);return new $Z(Z.method,X,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Ek(Z,J){return new $Z(Z.method,Z.headers,J,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function Ck(Z,J){return new $Z(J,Z.headers,Z.body,Z.scheme,Z.host,Z.port,Z.path,Z.query)}function xk(Z){let K=FR(Z);return M1(K,c$)}class qj extends O{constructor(Z,J,K){super();this.status=Z,this.headers=J,this.body=K}}class h5{constructor(Z){this.promise=Z}static wrap(Z){return Z instanceof Promise?new h5(Z):Z}static unwrap(Z){return Z instanceof h5?Z.promise:Z}}function D8(Z){return Promise.resolve(h5.wrap(Z))}function YK(Z,J){return Z.then((K)=>J(h5.unwrap(K)))}function XK(Z,J){return Z.then((K)=>h5.wrap(J(h5.unwrap(K))))}function Cj(Z){return new qj(Z.status,r0.fromArray([...Z.headers]),Z)}function l$(Z){let J=jJ(qk(Z)),K=Tk(Z.method).toUpperCase(),X={headers:s$(Z.headers),method:K};return[J,X]}function xj(Z){let[J,K]=l$(Z);if(K.method!=="GET"&&K.method!=="HEAD")K.body=Z.body;return new globalThis.Request(J,K)}function s$(Z){let J=new globalThis.Headers;for(let[K,X]of Z)J.append(K.toLowerCase(),X);return J}async function WK(Z){let J;try{J=await Z.body.text()}catch(K){return new $(new wj)}return new C(Z.withFields({body:J}))}class QK extends O{constructor(Z){super();this[0]=Z}}class wj extends O{}class Uk extends O{constructor(Z,J){super();this.endpoint=Z,this.headers=J}}function Uj(Z,J){return new Uk(Z,J)}function J1(Z,J,K){let X=b(Q([["query",d(J)],["variables",K]]));return M1((()=>{let W=xk(Z.endpoint);return Y4(W,(Y)=>{return"Invalid endpoint URL"})})(),(W)=>{let Y,G=Ck(W,new ZK),I=Ek(G,R8(X));Y=Aj(I,"content-type","application/json");let z=Y,N=v0(Z.headers,z,(F,D)=>{return Aj(F,D[0],D[1])});return new C(N)})}function T0(Z,J){return M1((()=>{let K=l1(Z,y0);return Y4(K,(X)=>{return"Failed to decode JSON response"})})(),(K)=>{let X=h("data",J,(Y)=>{return s(Y)}),W=I0(K,X);return Y4(W,(Y)=>{return"Failed to decode response data: "+wJ(Y)+". Response body: "+Z})})}async function Mj(Z){try{let J=xj(Z),K=new Request(J,{credentials:"include"}),X=await fetch(K),W=Cj(X);return new C(W)}catch(J){return new $(new QK(J.toString()))}}var yk="src/squall_cache.gleam";class j1 extends O{}class L1 extends O{constructor(Z){super();this[0]=Z}}class y1 extends O{constructor(Z){super();this[0]=Z}}class VK extends O{}class fk extends O{}class Rj extends O{}class _Z extends O{constructor(Z,J,K){super();this.data=Z,this.timestamp=J,this.status=K}}class f1 extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.entities=Z,this.optimistic_entities=J,this.optimistic_mutations=K,this.queries=X,this.pending_fetches=W,this.get_headers=Y,this.mutation_counter=V,this.endpoint=G}}function kk(Z){return new f1(h0(),h0(),h0(),h0(),E5(),()=>{return Q([])},0,Z)}function GK(Z,J){return Z+":"+R8(J)}function Mk(Z){let J=AJ(Z);if(J instanceof C){let K=J[0][0],X=J[0][1];return qJ(K)+X}else return Z}function jj(Z){let K=F0(Z),X=tM(K,(W)=>{if(W==="data")return new $(void 0);else if(W==="results")return new $(void 0);else if(W==="edges")return new $(void 0);else if(W==="node")return new $(void 0);else if(EJ(W,"s")){let V=K8(W),G=Ky(W,0,V-1);return new C(Mk(G))}else return new C(Mk(W))});return X4(X,"Entity")}function t$(Z){if(D0(Z,"node")instanceof C)return!0;else return!1}function o$(Z){let J=I0(Z,U0(y0));if(J instanceof C){let K=J[0];if(K instanceof U)return!1;else{let X=K.head,W=I0(X,M8(u,y0));if(W instanceof C){let Y=W[0];return t$(Y)}else return!1}}else return!1}function e$(Z,J,K){let X=GK(J,K),W=D0(Z.queries,X);if(W instanceof C){let Y=W[0],V=new _Z(Y.data,Y.timestamp,new Rj),G=n0(Z.queries,X,V);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,G,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let Y=new _Z("",0,new Rj),V=n0(Z.queries,X,Y);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,V,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function m0(Z,J,K){let X=GK(J,K),W=I8(Z.queries,X);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,W,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Zg(Z,J,K,X){let W,Y=D0(Z.optimistic_entities,K);if(Y instanceof C){let I=Y[0];W=new y(I)}else{let I=D0(Z.entities,K);if(I instanceof C){let z=I[0];W=new y(z)}else W=new v}let G=X(W);return new f1(Z.entities,n0(Z.optimistic_entities,K,G),n0(Z.optimistic_mutations,J,K),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}function Lj(Z,J){let K=D0(Z.optimistic_mutations,J);if(K instanceof C){let X=K[0];return new f1(Z.entities,I8(Z.optimistic_entities,X),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}function bk(Z){return!sM(Z.optimistic_mutations)}function S4(Z){let J=I0(Z,M8(u,y0));if(J instanceof C){let X=J[0],W=n8(X),Y=H0(W,(V)=>{let G,I;return G=V[0],I=V[1],[G,S4(I)]});return b(Y)}else{let K=I0(Z,U0(y0));if(K instanceof C){let X=K[0];return j0(X,S4)}else{let X=I0(Z,u);if(X instanceof C){let W=X[0];return d(W)}else{let W=I0(Z,p0);if(W instanceof C){let Y=W[0];return W1(Y)}else{let Y=I0(Z,_L);if(Y instanceof C){let V=Y[0];return By(V)}else{let V=I0(Z,G1);if(V instanceof C){let G=V[0];return s1(G)}else return zR()}}}}}}function Jg(Z,J){let K=R8(Z),X=R8(J),W=l1(K,y0),Y=l1(X,y0);if(W instanceof C&&Y instanceof C){let V=W[0],G=Y[0],I=I0(V,M8(u,y0)),z=I0(G,M8(u,y0));if(I instanceof C&&z instanceof C){let N=I[0],F=z[0],D,B=_0(U8(N),U8(F));D=kL(B);let P=T5(D,(S)=>{let q,E=D0(F,S);if(E instanceof C)q=E;else q=D0(N,S);let R=q;if(R instanceof C){let k=R[0];return new C([S,S4(k)])}else return new $(void 0)});return b(P)}else return J}else return J}function _8(Z,J){return r5(J,Z,(K,X,W)=>{let Y=D0(K,X);if(Y instanceof C){let V=Y[0],G=Jg(V,W);return n0(K,X,G)}else return n0(K,X,W)})}function Rk(Z){let J=A5(Z,":");if(J instanceof C){let K=J[0][0],X=J[0][1],W=l1(X,y0);if(W instanceof C){let Y=W[0];return new C([K,S4(Y)])}else return new C([K,zR()])}else return new $(void 0)}function Kg(Z,J,K,X,W,Y,V){let G=Pj(J,K);if(G instanceof C){let I=G[0];return z1((z)=>{let N=Z.get_headers(),F=Uj(Z.endpoint,N),D=J1(F,I.query,X),B;if(D instanceof C)B=D[0];else throw c8("let_assert",yk,"squall_cache",767,"create_mutation_effect","Pattern match failed, no pattern matched the value.",{value:D,start:24617,end:24701,pattern_start:24628,pattern_end:24635});let T,P=Mj(B);T=XK(P,(q)=>{if(q instanceof C){let E=q[0],R=WK(E);return YK(R,(k)=>{if(k instanceof C){let w=k[0],f=Y(w.body);if(f instanceof C){let g=f[0];return z(V(W,new C(g),w.body)),D8(void 0)}else{let g=f[0];return z(V(W,new $("Parse error: "+g),w.body)),D8(void 0)}}else return z(V(W,new $("Failed to read response"),"")),D8(void 0)})}else return z(V(W,new $("Failed to fetch"),"")),D8(void 0)});let S=T;return})}else return z1((I)=>{I(V(W,new $("Query not found in registry"),""));return})}function uZ(Z,J,K,X,W,Y,V,G){let I="mutation-"+X1(Z.mutation_counter),z=Zg(Z,I,W,Y),N=new f1(z.entities,z.optimistic_entities,z.optimistic_mutations,z.queries,z.pending_fetches,z.get_headers,Z.mutation_counter+1,z.endpoint),F=Kg(N,J,K,X,I,V,G);return[N,I,F]}function Yg(Z,J,K,X,W){return z1((Y)=>{let V=Z.get_headers(),G=Uj(Z.endpoint,V),I=J1(G,J,X),z;if(I instanceof C)z=I[0];else throw c8("let_assert",yk,"squall_cache",1073,"create_fetch_effect","Pattern match failed, no pattern matched the value.",{value:I,start:34411,end:34480,pattern_start:34422,pattern_end:34429});let N,F=Mj(z);N=XK(F,(B)=>{if(B instanceof C){let T=B[0],P=WK(T);return YK(P,(S)=>{if(S instanceof C){let q=S[0];return Y(W(K,X,new C(q.body))),D8(void 0)}else return Y(W(K,X,new $("Failed to read response"))),D8(void 0)})}else return Y(W(K,X,new $("Failed to fetch"))),D8(void 0)});let D=N;return})}function u0(Z,J,K,X){let W=Py(Z.pending_fetches),Y=T5(W,(I)=>{let z=Rk(I);if(z instanceof C){let N=z[0][0],F=z[0][1],D=Pj(J,N);if(D instanceof C){let B=D[0];return new C(Yg(Z,B.query,N,F,K))}else return new $(void 0)}else return new $(void 0)}),V=v0(W,Z,(I,z)=>{let N=Rk(z);if(N instanceof C){let F=N[0][0],D=N[0][1];return e$(I,F,D)}else return I});return[new f1(V.entities,V.optimistic_entities,V.optimistic_mutations,V.queries,E5(),V.get_headers,V.mutation_counter,V.endpoint),Y]}function jk(Z,J,K){let X=n8(Z),W=H0(X,(Y)=>{let V,G;return V=Y[0],G=Y[1],[V,yj(G,J,K)]});return b(W)}function yj(Z,J,K){let X=I0(Z,M8(u,y0));if(X instanceof C){let W=X[0],Y=D0(W,"__ref");if(Y instanceof C){let V=Y[0],G=I0(V,u);if(G instanceof C){let I=G[0],z=D0(J,I);if(z instanceof C)return z[0];else{let N=D0(K,I);if(N instanceof C)return N[0];else return b(Q([["__ref",d(I)]]))}}else return jk(W,J,K)}else return jk(W,J,K)}else{let W=I0(Z,U0(y0));if(W instanceof C){let Y=W[0];return j0(Y,(V)=>{return yj(V,J,K)})}else return S4(Z)}}function Lk(Z,J,K){let X=l1(Z,y0);if(X instanceof C){let W=X[0],Y=yj(W,J,K);return R8(Y)}else return Z}function a(Z,J,K,X){let W=GK(J,K),Y=D0(Z.queries,W);if(Y instanceof C){let V=Y[0],G=V.status;if(G instanceof VK){let I=Lk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof C){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else if(G instanceof fk){let I=Lk(V.data,Z.optimistic_entities,Z.entities),z=X(I);if(z instanceof C){let N=z[0];return[Z,new y1(N)]}else{let N=z[0];return[Z,new L1("Parse error: "+N)]}}else return[Z,new j1]}else return[new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,Z.queries,xZ(Z.pending_fetches,W),Z.get_headers,Z.mutation_counter,Z.endpoint),new j1]}function Xg(Z,J){let K=v0(Z,[h0(),Q([]),E5()],(Y,V)=>{let G,I,z;G=Y[0],I=Y[1],z=Y[2];let N=I0(V,M8(u,y0));if(N instanceof C){let F=N[0],D=D0(F,"node");if(D instanceof C){let B=D[0],T,P=I0(B,M8(u,y0));if(P instanceof C){let q=P[0],E=D0(q,"id");if(E instanceof C){let R=E[0],k=I0(R,u);if(k instanceof C){let w=k[0],f,g=D0(q,"__typename");if(g instanceof C){let n=g[0],r=I0(n,u);if(r instanceof C)f=r[0];else f="Node"}else f=jj(_0(J,Q(["node"])));T=new y(f+":"+w)}else T=new v}else T=new v}else T=new v;let S=T;if(S instanceof y){let q=S[0];if(Q4(z,q))return Y;else{let R=gZ(F,J),k,w;return k=R[0],w=R[1],[_8(G,k),_0(I,Q([w])),xZ(z,q)]}}else{let q=gZ(F,J),E,R;return E=q[0],R=q[1],[_8(G,E),_0(I,Q([R])),z]}}else{let B=gZ(F,J),T,P;return T=B[0],P=B[1],[_8(G,T),_0(I,Q([P])),z]}}else{let F=mZ(V,J),D,B;return D=F[0],B=F[1],[_8(G,D),_0(I,Q([B])),z]}}),X,W;return X=K[0],W=K[1],[X,j0(W,(Y)=>{return Y})]}function mZ(Z,J){let K=I0(Z,M8(u,y0));if(K instanceof C){let X=K[0],W=D0(X,"id");if(W instanceof C){let Y=W[0],V=I0(Y,u);if(V instanceof C){let G=V[0],I,z=D0(X,"__typename");if(z instanceof C){let k=z[0],w=I0(k,u);if(w instanceof C)I=w[0];else I=jj(J)}else I=jj(J);let F=I+":"+G,D,B=n8(X);D=H0(B,(k)=>{let w,f;w=k[0],f=k[1];let g=_0(J,Q([w])),c=mZ(f,g),n,r;return n=c[0],r=c[1],[w,n,r]});let T=D,P=v0(T,h0(),(k,w)=>{let f;return f=w[1],_8(k,f)}),S,q=H0(T,(k)=>{let w,f;return w=k[0],f=k[2],[w,f]});return S=b(q),[n0(P,F,S),b(Q([["__ref",d(F)]]))]}else return gZ(X,J)}else return gZ(X,J)}else{let X=I0(Z,U0(y0));if(X instanceof C){let W=X[0];if(o$(Z))return Xg(W,J);else{let V=H0(W,(z)=>{return mZ(z,J)}),G=v0(V,h0(),(z,N)=>{let F;return F=N[0],_8(z,F)}),I=H0(V,(z)=>{let N;return N=z[1],N});return[G,j0(I,(z)=>{return z})]}}else return[h0(),S4(Z)]}}function hk(Z){return mZ(Z,Q([]))}function vk(Z,J,K,X,W){let Y=GK(J,K),V=l1(X,y0);if(V instanceof C){let G=V[0],I=hk(G),z,N;z=I[0],N=I[1];let F=_8(Z.entities,z),D=R8(N),B=new _Z(D,W,new VK),T=n0(Z.queries,Y,B);return new f1(F,Z.optimistic_entities,Z.optimistic_mutations,T,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else{let G=new _Z(X,W,new VK),I=n0(Z.queries,Y,G);return new f1(Z.entities,Z.optimistic_entities,Z.optimistic_mutations,I,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}}function gZ(Z,J){let K,X=n8(Z);K=H0(X,(z)=>{let N,F;N=z[0],F=z[1];let D=_0(J,Q([N])),B=mZ(F,D),T,P;return T=B[0],P=B[1],[N,T,P]});let W=K,Y=v0(W,h0(),(z,N)=>{let F;return F=N[1],_8(z,F)}),V,G=H0(W,(z)=>{let N,F;return N=z[0],F=z[2],[N,F]});return V=b(G),[Y,V]}function fj(Z,J,K){let X=D0(Z.optimistic_mutations,J);if(X instanceof C){let W=X[0],Y=l1(K,y0);if(Y instanceof C){let V=Y[0],G=hk(V),I;I=G[0];let z=_8(Z.entities,I);return new f1(z,I8(Z.optimistic_entities,W),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return new f1(Z.entities,I8(Z.optimistic_entities,W),I8(Z.optimistic_mutations,J),Z.queries,Z.pending_fetches,Z.get_headers,Z.mutation_counter,Z.endpoint)}else return Z}class $k extends O{constructor(Z){super();this.is_backfilling=Z}}function Wg(){return h("isBackfilling",G1,(Z)=>{return s(new $k(Z))})}function dZ(Z){return T0(Z,Wg())}class IK extends O{}class m8 extends O{}class B8 extends O{}class v5 extends O{}function _k(Z,J,K){let X=b(Q([])),W=m0(Z,"IsBackfilling",X),Y=a(W,"IsBackfilling",X,dZ),V;return V=Y[0],u0(V,J,K,()=>{return 0})}function mk(Z,J){if(J)if(Z instanceof m8)return new B8;else if(Z instanceof B8)return Z;else return Z;else if(Z instanceof m8)return Z;else if(Z instanceof B8)return new v5;else return Z}function $5(Z){if(Z instanceof m8)return!0;else if(Z instanceof B8)return!0;else return!1}function u8(Z,J){return ky(Z,P5(J,(K)=>{return new MZ(!1,!1,K)}),e,qR,qR,0,0)}function Qg(Z){if(Z instanceof B1)return new B1(Z.kind,Z.name,Z.handler,Z.include,by,Z.stop_propagation,Z.debounce,Z.throttle);else return Z}function f0(Z){return u8("click",s(Z))}function K1(Z){return u8("input",qZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function dk(Z){return u8("change",qZ(Q(["target","value"]),u,(J)=>{return s(Z(J))}))}function Vg(){let J=h(0,u,(X)=>{return h(1,JR(P5(u,(W)=>{return new C(W)}),Q([s(new $(void 0))])),(W)=>{let V=GR(W,(G)=>{return Jk(X,G)});return s(V)})}),K=U0(J);return P5(K,Qy)}function ck(Z){let J=u8("submit",qZ(Q(["detail","formData"]),Vg(),(K)=>{let W=Z(K);return s(W)}));return Qg(J)}var A4=null;function pk(Z,J,K){if(A4)clearTimeout(A4);if(!Z||Z.trim()===""){K(new C(Q([])));return}A4=setTimeout(async()=>{try{let X=new URL("https://public.api.bsky.app/xrpc/app.bsky.actor.searchActorsTypeahead");X.searchParams.set("q",Z),X.searchParams.set("limit","5");let W=await fetch(X.toString());if(!W.ok){K(new $("Search failed"));return}let V=((await W.json()).actors||[]).map((G)=>new cZ(G.did||"",G.handle||"",G.displayName||"",G.avatar?new y(G.avatar):new v));K(new C(Q(V)))}catch(X){K(new $(X.message||"Search failed"))}},J)}function nk(){if(A4)clearTimeout(A4),A4=null}class cZ extends O{constructor(Z,J,K,X){super();this.did=Z,this.handle=J,this.display_name=K,this.avatar=X}}class O8 extends O{constructor(Z,J,K,X){super();this.query=Z,this.actors=J,this.highlighted_index=K,this.is_open=X}}class zK extends O{constructor(Z){super();this[0]=Z}}class q4 extends O{constructor(Z){super();this[0]=Z}}class pZ extends O{constructor(Z){super();this[0]=Z}}class NK extends O{}class FK extends O{}class nZ extends O{}class kj extends O{}function ik(){return new O8("",Q([]),-1,!1)}function T8(Z,J){if(J instanceof zK){let K=J[0],X=z1((W)=>{return pk(K,300,(Y)=>{return W(new q4(Y))})});return[new O8(K,Z.actors,Z.highlighted_index,K!==""),X]}else if(J instanceof q4){let K=J[0];if(K instanceof C){let X=K[0];return[new O8(Z.query,X,-1,Z.is_open),i()]}else return[new O8(Z.query,Q([]),-1,Z.is_open),i()]}else if(J instanceof pZ){let K=J[0];return[new O8(K.handle,Q([]),-1,!1),i()]}else if(J instanceof NK){let K=z8(Z.actors),X;if(Z.highlighted_index<K-1)X=Z.highlighted_index+1;else X=0;let Y=X;return[new O8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof FK){let K=z8(Z.actors),X;if(Z.highlighted_index>0)X=Z.highlighted_index-1;else X=K-1;let Y=X;return[new O8(Z.query,Z.actors,Y,Z.is_open),i()]}else if(J instanceof nZ)return nk(),[new O8(Z.query,Z.actors,-1,!1),i()];else return[new O8(Z.query,Z.actors,Z.highlighted_index,Z.query!==""),i()]}function lk(Z){if(Z.highlighted_index>=0){let K=Z.actors,X=t5(K,Z.highlighted_index),W=yL(X);return bM(W)}else return new v}function Gg(Z,J,K){let X;if(J)X="bg-zinc-700";else X="hover:bg-zinc-700";return j(Q([H("flex items-center gap-2 px-3 py-2 cursor-pointer transition-colors "+X),u8("mousedown",s(K(Z.handle)))]),Q([(()=>{let Y=Z.avatar;if(Y instanceof y){let V=Y[0];return Kf(Q([vy(V),H("w-8 h-8 rounded-full flex-shrink-0"),hy("")]))}else return z0()})(),j(Q([H("flex-1 min-w-0")]),Q([(()=>{let Y=Z.display_name;if(Y==="")return z0();else{let V=Y;return j(Q([H("text-sm text-zinc-200 truncate")]),Q([x(V)]))}})(),j(Q([H("text-xs text-zinc-400 truncate")]),Q([x("@"+Z.handle)]))]))]))}function Ig(Z,J){return j(Q([H("absolute z-50 w-full mt-1 bg-zinc-800 border border-zinc-700 rounded shadow-lg max-h-60 overflow-y-auto")]),TJ(Z.actors,(K,X)=>{return Gg(K,X===Z.highlighted_index,J)}))}function iZ(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("relative")]),Q([N1(Q([M0("text"),H8(J),gy(K),o0(Z.query),q1(X),H(W),t8(!0),M("autocomplete","off"),K1(Y),u8("blur",s(I())),u8("focus",s(z())),u8("keydown",h("key",u,(N)=>{return s(G(N))}))])),(()=>{if(Z.is_open&&!S0(Z.actors,Q([])))return Ig(Z,V);else return z0()})()]))}var _5="http://www.w3.org/2000/svg";function K5(Z){return g1(_5,"ellipse",Z,e)}function lZ(Z){return g1(_5,"rect",Z,e)}function HK(Z,J){return g1(_5,"defs",Z,J)}function m5(Z,J){return g1(_5,"g",Z,J)}function E4(Z,J){return g1(_5,"svg",Z,J)}function C4(Z,J){return g1(_5,"linearGradient",Z,J)}function P8(Z){return g1(_5,"stop",Z,e)}function sk(Z){return E4(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),M("overflow","visible"),H(Z)]),Q([HK(Q([]),Q([C4(Q([H8("backfill-board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),C4(Q([H8("backfill-board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))])),R0("style",Q([]),Q([x(` 6 6 .backfill-ellipse1 { animation: backfill-pulse 1.5s ease-in-out infinite; } 7 7 .backfill-ellipse2 { animation: backfill-pulse 1.5s ease-in-out infinite 0.2s; } 8 8 .backfill-ellipse3 { animation: backfill-pulse 1.5s ease-in-out infinite 0.4s; } ··· 10 10 0%, 100% { transform: scale(1); opacity: 1; } 11 11 50% { transform: scale(1.1); opacity: 0.8; } 12 12 } 13 - `)]))])),f5(Q([M("transform","translate(64, 64)")]),Q([t8(Q([H("backfill-ellipse1"),M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#backfill-board1)"),M("style","transform-origin: 0 -28px;")])),t8(Q([H("backfill-ellipse2"),M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#backfill-board2)"),M("style","transform-origin: 0 0;")])),t8(Q([H("backfill-ellipse3"),M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32"),M("style","transform-origin: 0 28px;")]))]))]))}var qj={};rj(qj,{icons:()=>Aj,createIcons:()=>fk,createElement:()=>IK,ZoomOut:()=>jU,ZoomIn:()=>RU,ZapOff:()=>UU,Zap:()=>MU,Youtube:()=>wU,XSquare:()=>g9,XOctagon:()=>P6,XCircle:()=>E4,X:()=>CU,Wrench:()=>EU,WrapText:()=>n9,Worm:()=>xU,Workflow:()=>qU,WineOff:()=>SU,Wine:()=>AU,WindArrowDown:()=>TU,Wind:()=>PU,WifiZero:()=>DU,WifiSync:()=>BU,WifiPen:()=>HU,WifiOff:()=>FU,WifiLow:()=>NU,WifiHigh:()=>zU,WifiCog:()=>IU,Wifi:()=>OU,WholeWord:()=>GU,WheatOff:()=>QU,Wheat:()=>VU,Weight:()=>WU,WebhookOff:()=>YU,Webhook:()=>XU,Webcam:()=>KU,Waypoints:()=>ZU,WavesLadder:()=>ew,Waves:()=>JU,Watch:()=>ow,WashingMachine:()=>tw,Warehouse:()=>aw,WandSparkles:()=>VZ,Wand2:()=>VZ,Wand:()=>sw,Wallpaper:()=>rw,WalletMinimal:()=>QZ,WalletCards:()=>lw,Wallet2:()=>QZ,Wallet:()=>iw,Vote:()=>nw,VolumeX:()=>cw,VolumeOff:()=>dw,Volume2:()=>uw,Volume1:()=>mw,Volume:()=>pw,Volleyball:()=>_w,Voicemail:()=>gw,View:()=>$w,Videotape:()=>hw,VideoOff:()=>bw,Video:()=>vw,VibrateOff:()=>fw,Vibrate:()=>kw,Verified:()=>U7,VenusAndMars:()=>Lw,Venus:()=>yw,VenetianMask:()=>jw,Vegan:()=>Rw,VectorSquare:()=>Mw,Vault:()=>Uw,Variable:()=>xw,UtilityPole:()=>ww,UtensilsCrossed:()=>XZ,Utensils:()=>WZ,UsersRound:()=>YZ,Users2:()=>YZ,Users:()=>Cw,UserX2:()=>JZ,UserX:()=>qw,UserStar:()=>Aw,UserSquare2:()=>h9,UserSquare:()=>$9,UserSearch:()=>Sw,UserRoundX:()=>JZ,UserRoundSearch:()=>Pw,UserRoundPlus:()=>ZZ,UserRoundPen:()=>Tw,UserRoundMinus:()=>e9,UserRoundCog:()=>o9,UserRoundCheck:()=>t9,UserRound:()=>KZ,UserPlus2:()=>ZZ,UserPlus:()=>Ow,UserPen:()=>Bw,UserMinus2:()=>e9,UserMinus:()=>Dw,UserLock:()=>Hw,UserCog2:()=>o9,UserCog:()=>Fw,UserCircle2:()=>A4,UserCircle:()=>q4,UserCheck2:()=>t9,UserCheck:()=>zw,User2:()=>KZ,User:()=>Ew,Usb:()=>Nw,UploadCloud:()=>U4,Upload:()=>Gw,Unplug:()=>Iw,UnlockKeyhole:()=>I6,Unlock:()=>z6,Unlink2:()=>Qw,Unlink:()=>Vw,University:()=>a9,Ungroup:()=>Ww,UnfoldVertical:()=>Xw,UnfoldHorizontal:()=>Yw,UndoDot:()=>Kw,Undo2:()=>Zw,Undo:()=>Jw,Underline:()=>ex,UmbrellaOff:()=>tx,Umbrella:()=>ox,TypeOutline:()=>sx,Type:()=>ax,Twitter:()=>rx,Twitch:()=>lx,TvMinimalPlay:()=>nx,TvMinimal:()=>s9,Tv2:()=>s9,Tv:()=>ix,Turtle:()=>px,Turntable:()=>cx,TurkishLira:()=>dx,TruckElectric:()=>mx,Truck:()=>ux,Trophy:()=>_x,TriangleRight:()=>gx,TriangleDashed:()=>hx,TriangleAlert:()=>r9,Triangle:()=>$x,TrendingUpDown:()=>bx,TrendingUp:()=>vx,TrendingDown:()=>fx,Trello:()=>kx,Trees:()=>yx,TreePine:()=>Lx,TreePalm:()=>i9,TreeDeciduous:()=>jx,Trash2:()=>Mx,Trash:()=>Rx,Transgender:()=>Ux,TramFront:()=>l9,TrainTrack:()=>wx,TrainFrontTunnel:()=>xx,TrainFront:()=>Cx,Train:()=>l9,TrafficCone:()=>Ex,Tractor:()=>qx,ToyBrick:()=>Ax,TowerControl:()=>Sx,TouchpadOff:()=>Ox,Touchpad:()=>Tx,Torus:()=>Px,Tornado:()=>Bx,ToolCase:()=>Dx,Toilet:()=>Hx,ToggleRight:()=>Fx,ToggleLeft:()=>Nx,TimerReset:()=>Ix,TimerOff:()=>Gx,Timer:()=>zx,TicketsPlane:()=>Qx,Tickets:()=>Vx,TicketX:()=>Xx,TicketSlash:()=>Yx,TicketPlus:()=>Kx,TicketPercent:()=>Jx,TicketMinus:()=>Zx,TicketCheck:()=>eC,Ticket:()=>Wx,ThumbsUp:()=>oC,ThumbsDown:()=>tC,ThermometerSun:()=>sC,ThermometerSnowflake:()=>rC,Thermometer:()=>aC,Theater:()=>iC,TextWrap:()=>n9,TextSelection:()=>p9,TextSelect:()=>p9,TextSearch:()=>lC,TextQuote:()=>nC,TextInitial:()=>c9,TextCursorInput:()=>cC,TextCursor:()=>pC,TextAlignStart:()=>X5,TextAlignJustify:()=>u9,TextAlignEnd:()=>d9,TextAlignCenter:()=>m9,Text:()=>X5,TestTubes:()=>uC,TestTubeDiagonal:()=>_9,TestTube2:()=>_9,TestTube:()=>dC,TerminalSquare:()=>v9,Terminal:()=>mC,TentTree:()=>gC,Tent:()=>_C,Telescope:()=>$C,Target:()=>vC,Tangent:()=>hC,Tally5:()=>bC,Tally4:()=>kC,Tally3:()=>fC,Tally2:()=>yC,Tally1:()=>LC,Tags:()=>jC,Tag:()=>RC,Tablets:()=>MC,TabletSmartphone:()=>wC,Tablet:()=>UC,TableRowsSplit:()=>CC,TableProperties:()=>EC,TableOfContents:()=>qC,TableConfig:()=>e8,TableColumnsSplit:()=>AC,TableCellsSplit:()=>SC,TableCellsMerge:()=>PC,Table2:()=>TC,Table:()=>xC,Syringe:()=>OC,Swords:()=>BC,Sword:()=>DC,SwitchCamera:()=>HC,SwissFranc:()=>FC,SwatchBook:()=>NC,Superscript:()=>zC,Sunset:()=>IC,Sunrise:()=>GC,SunSnow:()=>QC,SunMoon:()=>WC,SunMedium:()=>XC,SunDim:()=>YC,Sun:()=>VC,Subtitles:()=>f7,Subscript:()=>KC,Strikethrough:()=>JC,StretchVertical:()=>ZC,StretchHorizontal:()=>eE,Store:()=>oE,StopCircle:()=>S4,StickyNote:()=>tE,Sticker:()=>aE,Stethoscope:()=>sE,StepForward:()=>rE,StepBack:()=>iE,Stars:()=>m6,StarOff:()=>nE,StarHalf:()=>pE,Star:()=>lE,Stamp:()=>cE,Squirrel:()=>dE,SquircleDashed:()=>mE,Squircle:()=>uE,SquaresUnite:()=>_E,SquaresSubtract:()=>$E,SquaresIntersect:()=>gE,SquaresExclude:()=>hE,SquareX:()=>g9,SquareUserRound:()=>h9,SquareUser:()=>$9,SquareTerminal:()=>v9,SquareStop:()=>bE,SquareStar:()=>kE,SquareStack:()=>fE,SquareSquare:()=>yE,SquareSplitVertical:()=>b9,SquareSplitHorizontal:()=>k9,SquareSlash:()=>f9,SquareSigma:()=>y9,SquareScissors:()=>L9,SquareRoundCorner:()=>LE,SquareRadical:()=>jE,SquarePower:()=>j9,SquarePlus:()=>R9,SquarePlay:()=>M9,SquarePilcrow:()=>U9,SquarePi:()=>w9,SquarePercent:()=>x9,SquarePen:()=>O8,SquarePause:()=>RE,SquareParkingOff:()=>E9,SquareParking:()=>C9,SquareMousePointer:()=>q9,SquareMinus:()=>A9,SquareMenu:()=>S9,SquareM:()=>P9,SquareLibrary:()=>T9,SquareKanban:()=>O9,SquareGanttChart:()=>Y5,SquareFunction:()=>B9,SquareEqual:()=>D9,SquareDot:()=>H9,SquareDivide:()=>F9,SquareDashedTopSolid:()=>ME,SquareDashedMousePointer:()=>z9,SquareDashedKanban:()=>I9,SquareDashedBottomCode:()=>wE,SquareDashedBottom:()=>UE,SquareDashed:()=>N9,SquareCode:()=>G9,SquareChevronUp:()=>V9,SquareChevronRight:()=>Q9,SquareChevronLeft:()=>W9,SquareChevronDown:()=>X9,SquareCheckBig:()=>K9,SquareCheck:()=>Y9,SquareChartGantt:()=>Y5,SquareBottomDashedScissors:()=>J9,SquareAsterisk:()=>Z9,SquareArrowUpRight:()=>o6,SquareArrowUpLeft:()=>t6,SquareArrowUp:()=>e6,SquareArrowRight:()=>a6,SquareArrowOutUpRight:()=>s6,SquareArrowOutUpLeft:()=>r6,SquareArrowOutDownRight:()=>i6,SquareArrowOutDownLeft:()=>l6,SquareArrowLeft:()=>n6,SquareArrowDownRight:()=>c6,SquareArrowDownLeft:()=>d6,SquareArrowDown:()=>p6,SquareActivity:()=>u6,Square:()=>vE,Sprout:()=>xE,SprayCan:()=>CE,Spotlight:()=>EE,Spool:()=>qE,SplitSquareVertical:()=>b9,SplitSquareHorizontal:()=>k9,Split:()=>AE,SplinePointer:()=>PE,Spline:()=>SE,SpellCheck2:()=>OE,SpellCheck:()=>TE,Speech:()=>BE,Speaker:()=>DE,Sparkles:()=>m6,Sparkle:()=>HE,Spade:()=>FE,Space:()=>NE,Soup:()=>zE,SortDesc:()=>A7,SortAsc:()=>C7,Sofa:()=>IE,SoapDispenserDroplet:()=>VE,Snowflake:()=>GE,Snail:()=>QE,SmilePlus:()=>XE,Smile:()=>WE,SmartphoneNfc:()=>KE,SmartphoneCharging:()=>JE,Smartphone:()=>YE,SlidersVertical:()=>_6,SlidersHorizontal:()=>ZE,Sliders:()=>_6,Slice:()=>eq,SlashSquare:()=>f9,Slash:()=>oq,Slack:()=>tq,Skull:()=>aq,SkipForward:()=>sq,SkipBack:()=>rq,Siren:()=>iq,SignpostBig:()=>nq,Signpost:()=>lq,Signature:()=>pq,SignalZero:()=>dq,SignalMedium:()=>uq,SignalLow:()=>mq,SignalHigh:()=>_q,Signal:()=>cq,SigmaSquare:()=>y9,Sigma:()=>gq,SidebarOpen:()=>C6,SidebarClose:()=>q6,Sidebar:()=>x6,Shuffle:()=>$q,Shrub:()=>hq,Shrink:()=>vq,Shrimp:()=>bq,Shredder:()=>kq,ShowerHead:()=>fq,Shovel:()=>yq,ShoppingCart:()=>Lq,ShoppingBasket:()=>jq,ShoppingBag:()=>Rq,Shirt:()=>Mq,ShipWheel:()=>wq,Ship:()=>Uq,ShieldX:()=>g6,ShieldUser:()=>Cq,ShieldQuestionMark:()=>$6,ShieldQuestion:()=>$6,ShieldPlus:()=>Eq,ShieldOff:()=>qq,ShieldMinus:()=>Aq,ShieldHalf:()=>Sq,ShieldEllipsis:()=>Pq,ShieldClose:()=>g6,ShieldCheck:()=>Tq,ShieldBan:()=>Bq,ShieldAlert:()=>Oq,Shield:()=>xq,Shell:()=>Hq,Sheet:()=>Dq,Share2:()=>Nq,Share:()=>Fq,Shapes:()=>zq,Settings2:()=>Gq,Settings:()=>Iq,ServerOff:()=>Qq,ServerCrash:()=>Wq,ServerCog:()=>Yq,Server:()=>Vq,SeparatorVertical:()=>Xq,SeparatorHorizontal:()=>Kq,SendToBack:()=>Zq,SendHorizontal:()=>h6,SendHorizonal:()=>h6,Send:()=>Jq,Section:()=>eA,SearchX:()=>tA,SearchSlash:()=>aA,SearchCode:()=>rA,SearchCheck:()=>sA,Search:()=>oA,ScrollText:()=>lA,Scroll:()=>iA,ScreenShareOff:()=>pA,ScreenShare:()=>nA,ScissorsSquareDashedBottom:()=>J9,ScissorsSquare:()=>L9,ScissorsLineDashed:()=>dA,Scissors:()=>cA,School2:()=>a9,School:()=>uA,ScatterChart:()=>n7,ScanText:()=>_A,ScanSearch:()=>gA,ScanQrCode:()=>$A,ScanLine:()=>hA,ScanHeart:()=>vA,ScanFace:()=>bA,ScanEye:()=>kA,ScanBarcode:()=>fA,Scan:()=>mA,Scaling:()=>yA,Scale3d:()=>v6,Scale3D:()=>v6,Scale:()=>LA,SaveOff:()=>RA,SaveAll:()=>MA,Save:()=>jA,SaudiRiyal:()=>UA,SatelliteDish:()=>xA,Satellite:()=>wA,Sandwich:()=>CA,Salad:()=>EA,Sailboat:()=>qA,RussianRuble:()=>AA,RulerDimensionLine:()=>PA,Ruler:()=>SA,Rss:()=>OA,Rows4:()=>TA,Rows3:()=>b6,Rows2:()=>k6,Rows:()=>k6,Router:()=>BA,RouteOff:()=>HA,Route:()=>DA,RotateCwSquare:()=>NA,RotateCw:()=>FA,RotateCcwSquare:()=>IA,RotateCcwKey:()=>GA,RotateCcw:()=>zA,Rotate3d:()=>f6,Rotate3D:()=>f6,Rose:()=>VA,RollerCoaster:()=>QA,RockingChair:()=>WA,Rocket:()=>XA,Ribbon:()=>YA,Rewind:()=>KA,ReplyAll:()=>ZA,Reply:()=>JA,ReplaceAll:()=>oS,Replace:()=>eS,Repeat2:()=>aS,Repeat1:()=>sS,Repeat:()=>tS,RemoveFormatting:()=>rS,Regex:()=>iS,Refrigerator:()=>lS,RefreshCwOff:()=>pS,RefreshCw:()=>nS,RefreshCcwDot:()=>dS,RefreshCcw:()=>cS,RedoDot:()=>mS,Redo2:()=>_S,Redo:()=>uS,Recycle:()=>gS,RectangleVertical:()=>$S,RectangleHorizontal:()=>hS,RectangleGoggles:()=>vS,RectangleEllipsis:()=>y6,RectangleCircle:()=>bS,ReceiptTurkishLira:()=>kS,ReceiptText:()=>yS,ReceiptSwissFranc:()=>LS,ReceiptRussianRuble:()=>jS,ReceiptPoundSterling:()=>RS,ReceiptJapaneseYen:()=>MS,ReceiptIndianRupee:()=>US,ReceiptEuro:()=>wS,ReceiptCent:()=>xS,Receipt:()=>fS,Ratio:()=>CS,Rat:()=>qS,Rainbow:()=>ES,RailSymbol:()=>AS,Radius:()=>SS,RadioTower:()=>TS,RadioReceiver:()=>OS,Radio:()=>PS,Radical:()=>BS,Radiation:()=>DS,Radar:()=>HS,Rabbit:()=>FS,Quote:()=>NS,QrCode:()=>IS,Pyramid:()=>zS,Puzzle:()=>GS,Proportions:()=>VS,Projector:()=>QS,PrinterCheck:()=>XS,Printer:()=>WS,Presentation:()=>YS,PowerSquare:()=>j9,PowerOff:()=>JS,PowerCircle:()=>T4,Power:()=>KS,PoundSterling:()=>ZS,Popsicle:()=>eP,Popcorn:()=>oP,PointerOff:()=>aP,Pointer:()=>tP,Podcast:()=>sP,PocketKnife:()=>iP,Pocket:()=>rP,PlusSquare:()=>R9,PlusCircle:()=>O4,Plus:()=>lP,PlugZap2:()=>L6,PlugZap:()=>L6,Plug2:()=>pP,Plug:()=>nP,PlaySquare:()=>M9,PlayCircle:()=>B4,Play:()=>cP,PlaneTakeoff:()=>uP,PlaneLanding:()=>mP,Plane:()=>dP,Pizza:()=>_P,Pipette:()=>$P,PinOff:()=>gP,Pin:()=>hP,PillBottle:()=>bP,Pill:()=>vP,PilcrowSquare:()=>U9,PilcrowRight:()=>fP,PilcrowLeft:()=>LP,Pilcrow:()=>kP,PiggyBank:()=>yP,PieChart:()=>p7,PictureInPicture2:()=>RP,PictureInPicture:()=>jP,Pickaxe:()=>MP,Piano:()=>UP,PiSquare:()=>w9,Pi:()=>wP,PhoneOutgoing:()=>CP,PhoneOff:()=>EP,PhoneMissed:()=>qP,PhoneIncoming:()=>AP,PhoneForwarded:()=>SP,PhoneCall:()=>PP,Phone:()=>xP,PhilippinePeso:()=>TP,PersonStanding:()=>OP,PercentSquare:()=>x9,PercentDiamond:()=>y4,PercentCircle:()=>D4,Percent:()=>BP,Pentagon:()=>DP,PencilRuler:()=>FP,PencilOff:()=>NP,PencilLine:()=>zP,Pencil:()=>HP,PenTool:()=>IP,PenSquare:()=>O8,PenOff:()=>GP,PenLine:()=>R6,PenBox:()=>O8,Pen:()=>j6,PcCase:()=>VP,PawPrint:()=>QP,PauseOctagon:()=>T6,PauseCircle:()=>H4,Pause:()=>WP,PartyPopper:()=>XP,ParkingSquareOff:()=>E9,ParkingSquare:()=>C9,ParkingMeter:()=>KP,ParkingCircleOff:()=>N4,ParkingCircle:()=>F4,Parentheses:()=>YP,Paperclip:()=>JP,PanelsTopLeft:()=>M6,PanelsTopBottom:()=>b6,PanelsRightBottom:()=>ZP,PanelsLeftRight:()=>j4,PanelsLeftBottom:()=>oT,PanelTopOpen:()=>tT,PanelTopInactive:()=>U6,PanelTopDashed:()=>U6,PanelTopClose:()=>aT,PanelTopBottomDashed:()=>sT,PanelTop:()=>eT,PanelRightOpen:()=>rT,PanelRightInactive:()=>w6,PanelRightDashed:()=>w6,PanelRightClose:()=>lT,PanelRight:()=>iT,PanelLeftRightDashed:()=>nT,PanelLeftOpen:()=>C6,PanelLeftInactive:()=>E6,PanelLeftDashed:()=>E6,PanelLeftClose:()=>q6,PanelLeft:()=>x6,PanelBottomOpen:()=>cT,PanelBottomInactive:()=>A6,PanelBottomDashed:()=>A6,PanelBottomClose:()=>dT,PanelBottom:()=>pT,Panda:()=>uT,Palmtree:()=>i9,Palette:()=>mT,PaintbrushVertical:()=>S6,Paintbrush2:()=>S6,Paintbrush:()=>_T,PaintRoller:()=>gT,PaintBucket:()=>$T,PackageX:()=>vT,PackageSearch:()=>bT,PackagePlus:()=>kT,PackageOpen:()=>fT,PackageMinus:()=>yT,PackageCheck:()=>LT,Package2:()=>jT,Package:()=>hT,Outdent:()=>J5,Origami:()=>RT,Orbit:()=>MT,Option:()=>UT,Omega:()=>wT,OctagonX:()=>P6,OctagonPause:()=>T6,OctagonMinus:()=>CT,OctagonAlert:()=>O6,Octagon:()=>xT,NutOff:()=>qT,Nut:()=>ET,NotepadTextDashed:()=>ST,NotepadText:()=>AT,NotebookText:()=>TT,NotebookTabs:()=>OT,NotebookPen:()=>BT,Notebook:()=>PT,NonBinary:()=>DT,Nfc:()=>HT,Newspaper:()=>FT,Network:()=>NT,NavigationOff:()=>IT,Navigation2Off:()=>VT,Navigation2:()=>GT,Navigation:()=>zT,Music4:()=>WT,Music3:()=>XT,Music2:()=>YT,Music:()=>QT,MoveVertical:()=>JT,MoveUpRight:()=>eO,MoveUpLeft:()=>oO,MoveUp:()=>ZT,MoveRight:()=>tO,MoveLeft:()=>aO,MoveHorizontal:()=>sO,MoveDownRight:()=>iO,MoveDownLeft:()=>lO,MoveDown:()=>rO,MoveDiagonal2:()=>pO,MoveDiagonal:()=>nO,Move3d:()=>B6,Move3D:()=>B6,Move:()=>KT,MousePointerSquareDashed:()=>z9,MousePointerClick:()=>uO,MousePointerBan:()=>mO,MousePointer2:()=>_O,MousePointer:()=>dO,MouseOff:()=>gO,Mouse:()=>cO,MountainSnow:()=>hO,Mountain:()=>$O,Motorbike:()=>vO,MoreVertical:()=>k4,MoreHorizontal:()=>b4,MoonStar:()=>kO,Moon:()=>bO,MonitorX:()=>yO,MonitorUp:()=>LO,MonitorStop:()=>jO,MonitorSpeaker:()=>RO,MonitorSmartphone:()=>MO,MonitorPlay:()=>UO,MonitorPause:()=>wO,MonitorOff:()=>xO,MonitorDown:()=>CO,MonitorDot:()=>EO,MonitorCog:()=>qO,MonitorCloud:()=>AO,MonitorCheck:()=>SO,Monitor:()=>fO,MinusSquare:()=>A9,MinusCircle:()=>z4,Minus:()=>PO,Minimize2:()=>OO,Minimize:()=>TO,MilkOff:()=>BO,Milk:()=>DO,Milestone:()=>HO,Microwave:()=>FO,Microscope:()=>NO,Microchip:()=>zO,MicVocal:()=>D6,MicOff:()=>GO,Mic2:()=>D6,Mic:()=>IO,MessagesSquare:()=>VO,MessageSquareX:()=>WO,MessageSquareWarning:()=>XO,MessageSquareText:()=>YO,MessageSquareShare:()=>JO,MessageSquareReply:()=>KO,MessageSquareQuote:()=>ZO,MessageSquarePlus:()=>e2,MessageSquareOff:()=>o2,MessageSquareMore:()=>t2,MessageSquareLock:()=>a2,MessageSquareHeart:()=>s2,MessageSquareDot:()=>r2,MessageSquareDiff:()=>i2,MessageSquareDashed:()=>l2,MessageSquareCode:()=>n2,MessageSquare:()=>QO,MessageCircleX:()=>c2,MessageCircleWarning:()=>d2,MessageCircleReply:()=>u2,MessageCircleQuestionMark:()=>H6,MessageCircleQuestion:()=>H6,MessageCirclePlus:()=>m2,MessageCircleOff:()=>_2,MessageCircleMore:()=>g2,MessageCircleHeart:()=>$2,MessageCircleDashed:()=>h2,MessageCircleCode:()=>v2,MessageCircle:()=>p2,Merge:()=>b2,MenuSquare:()=>S9,Menu:()=>k2,MemoryStick:()=>f2,Meh:()=>y2,MegaphoneOff:()=>j2,Megaphone:()=>L2,Medal:()=>R2,Maximize2:()=>U2,Maximize:()=>M2,Martini:()=>w2,MarsStroke:()=>C2,Mars:()=>x2,MapPlus:()=>E2,MapPinned:()=>A2,MapPinXInside:()=>T2,MapPinX:()=>P2,MapPinPlusInside:()=>B2,MapPinPlus:()=>O2,MapPinPen:()=>F6,MapPinOff:()=>D2,MapPinMinusInside:()=>H2,MapPinMinus:()=>F2,MapPinHouse:()=>N2,MapPinCheckInside:()=>I2,MapPinCheck:()=>z2,MapPin:()=>S2,MapMinus:()=>G2,Map:()=>q2,Mails:()=>V2,Mailbox:()=>Q2,MailX:()=>X2,MailWarning:()=>Y2,MailSearch:()=>K2,MailQuestionMark:()=>N6,MailQuestion:()=>N6,MailPlus:()=>J2,MailOpen:()=>Z2,MailMinus:()=>eB,MailCheck:()=>oB,Mail:()=>W2,Magnet:()=>tB,MSquare:()=>P9,Luggage:()=>aB,Lollipop:()=>sB,Logs:()=>rB,LogOut:()=>iB,LogIn:()=>lB,LockOpen:()=>z6,LockKeyholeOpen:()=>I6,LockKeyhole:()=>pB,Lock:()=>nB,LocationEdit:()=>F6,LocateOff:()=>dB,LocateFixed:()=>uB,Locate:()=>cB,LoaderPinwheel:()=>_B,LoaderCircle:()=>G6,Loader2:()=>G6,Loader:()=>mB,ListX:()=>$B,ListVideo:()=>hB,ListTree:()=>vB,ListTodo:()=>bB,ListStart:()=>kB,ListRestart:()=>yB,ListPlus:()=>LB,ListOrdered:()=>fB,ListMusic:()=>jB,ListMinus:()=>RB,ListIndentIncrease:()=>K5,ListIndentDecrease:()=>J5,ListFilterPlus:()=>MB,ListFilter:()=>UB,ListEnd:()=>wB,ListCollapse:()=>xB,ListChevronsUpDown:()=>CB,ListChevronsDownUp:()=>EB,ListChecks:()=>qB,ListCheck:()=>AB,List:()=>gB,Linkedin:()=>SB,Link2Off:()=>OB,Link2:()=>TB,Link:()=>PB,LineSquiggle:()=>BB,LineChart:()=>m7,LightbulbOff:()=>HB,Lightbulb:()=>DB,Ligature:()=>FB,LifeBuoy:()=>zB,LibrarySquare:()=>T9,LibraryBig:()=>IB,Library:()=>NB,LetterText:()=>c9,Lectern:()=>GB,LeafyGreen:()=>VB,Leaf:()=>QB,LayoutTemplate:()=>WB,LayoutPanelTop:()=>XB,LayoutPanelLeft:()=>YB,LayoutList:()=>KB,LayoutGrid:()=>JB,LayoutDashboard:()=>ZB,Layout:()=>M6,Layers3:()=>V6,Layers2:()=>eD,Layers:()=>V6,Laugh:()=>oD,LassoSelect:()=>aD,Lasso:()=>tD,LaptopMinimalCheck:()=>rD,LaptopMinimal:()=>Q6,Laptop2:()=>Q6,Laptop:()=>sD,Languages:()=>iD,Landmark:()=>lD,LandPlot:()=>nD,LampWallUp:()=>cD,LampWallDown:()=>dD,LampFloor:()=>uD,LampDesk:()=>mD,LampCeiling:()=>_D,Lamp:()=>pD,KeyboardOff:()=>$D,KeyboardMusic:()=>hD,Keyboard:()=>gD,KeySquare:()=>bD,KeyRound:()=>kD,Key:()=>vD,Kayak:()=>fD,KanbanSquareDashed:()=>I9,KanbanSquare:()=>O9,Kanban:()=>yD,Joystick:()=>LD,JapaneseYen:()=>jD,IterationCw:()=>RD,IterationCcw:()=>UD,Italic:()=>wD,Instagram:()=>MD,InspectionPanel:()=>xD,Inspect:()=>q9,Info:()=>ED,Infinity:()=>CD,IndianRupee:()=>qD,IndentIncrease:()=>K5,IndentDecrease:()=>J5,Indent:()=>K5,Inbox:()=>AD,Import:()=>SD,Images:()=>PD,ImageUpscale:()=>OD,ImageUp:()=>BD,ImagePlus:()=>DD,ImagePlay:()=>HD,ImageOff:()=>FD,ImageMinus:()=>ND,ImageDown:()=>zD,Image:()=>TD,IdCardLanyard:()=>ID,IdCard:()=>GD,IceCreamCone:()=>W6,IceCreamBowl:()=>X6,IceCream2:()=>X6,IceCream:()=>W6,HouseWifi:()=>QD,HousePlus:()=>VD,HousePlug:()=>XD,HouseHeart:()=>WD,House:()=>Y6,Hourglass:()=>YD,Hotel:()=>KD,Hospital:()=>JD,HopOff:()=>eH,Hop:()=>ZD,Home:()=>Y6,History:()=>oH,Highlighter:()=>aH,Hexagon:()=>tH,HelpingHand:()=>K6,HelpCircle:()=>o8,Heater:()=>sH,HeartPulse:()=>iH,HeartPlus:()=>lH,HeartOff:()=>nH,HeartMinus:()=>pH,HeartHandshake:()=>cH,HeartCrack:()=>dH,Heart:()=>rH,Headset:()=>uH,Headphones:()=>mH,HeadphoneOff:()=>_H,Heading6:()=>$H,Heading5:()=>hH,Heading4:()=>vH,Heading3:()=>bH,Heading2:()=>kH,Heading1:()=>fH,Heading:()=>gH,HdmiPort:()=>yH,Haze:()=>LH,HatGlasses:()=>jH,Hash:()=>RH,HardHat:()=>MH,HardDriveUpload:()=>wH,HardDriveDownload:()=>xH,HardDrive:()=>UH,Handshake:()=>CH,Handbag:()=>EH,HandPlatter:()=>AH,HandMetal:()=>SH,HandHelping:()=>K6,HandHeart:()=>PH,HandGrab:()=>J6,HandFist:()=>TH,HandCoins:()=>OH,Hand:()=>qH,Hammer:()=>BH,Hamburger:()=>DH,Ham:()=>HH,Guitar:()=>FH,Group:()=>NH,GripVertical:()=>IH,GripHorizontal:()=>GH,Grip:()=>zH,Grid3x3:()=>Z5,Grid3x2:()=>VH,Grid3X3:()=>Z5,Grid2x2X:()=>e4,Grid2x2Plus:()=>o4,Grid2x2Check:()=>t4,Grid2x2:()=>Z6,Grid2X2X:()=>e4,Grid2X2Plus:()=>o4,Grid2X2Check:()=>t4,Grid2X2:()=>Z6,Grid:()=>Z5,Grape:()=>QH,GraduationCap:()=>WH,Grab:()=>J6,Gpu:()=>XH,Goal:()=>YH,GlobeLock:()=>JH,Globe2:()=>f4,Globe:()=>KH,Glasses:()=>ZH,GlassWater:()=>eF,Gitlab:()=>oF,Github:()=>tF,GitPullRequestDraft:()=>sF,GitPullRequestCreateArrow:()=>lF,GitPullRequestCreate:()=>rF,GitPullRequestClosed:()=>iF,GitPullRequestArrow:()=>nF,GitPullRequest:()=>aF,GitMerge:()=>pF,GitGraph:()=>cF,GitFork:()=>dF,GitCompareArrows:()=>mF,GitCompare:()=>uF,GitCommitVertical:()=>_F,GitCommitHorizontal:()=>a4,GitCommit:()=>a4,GitBranchPlus:()=>$F,GitBranch:()=>gF,Gift:()=>hF,Ghost:()=>vF,GeorgianLari:()=>bF,Gem:()=>kF,Gavel:()=>fF,GaugeCircle:()=>I4,Gauge:()=>yF,GanttChartSquare:()=>Y5,GanttChart:()=>c7,GamepadDirectional:()=>jF,Gamepad2:()=>RF,Gamepad:()=>LF,GalleryVerticalEnd:()=>UF,GalleryVertical:()=>MF,GalleryThumbnails:()=>wF,GalleryHorizontalEnd:()=>CF,GalleryHorizontal:()=>xF,FunnelX:()=>r4,FunnelPlus:()=>EF,Funnel:()=>s4,FunctionSquare:()=>B9,Fullscreen:()=>qF,Fuel:()=>AF,Frown:()=>SF,Framer:()=>PF,Frame:()=>TF,Forward:()=>OF,FormInput:()=>y6,Forklift:()=>BF,ForkKnifeCrossed:()=>XZ,ForkKnife:()=>WZ,Footprints:()=>DF,Folders:()=>HF,FolderX:()=>NF,FolderUp:()=>zF,FolderTree:()=>IF,FolderSync:()=>GF,FolderSymlink:()=>VF,FolderSearch2:()=>WF,FolderSearch:()=>QF,FolderRoot:()=>XF,FolderPlus:()=>YF,FolderPen:()=>i4,FolderOutput:()=>KF,FolderOpenDot:()=>ZF,FolderOpen:()=>JF,FolderMinus:()=>eN,FolderLock:()=>oN,FolderKey:()=>tN,FolderKanban:()=>aN,FolderInput:()=>sN,FolderHeart:()=>rN,FolderGit2:()=>nN,FolderGit:()=>iN,FolderEdit:()=>i4,FolderDown:()=>lN,FolderDot:()=>pN,FolderCog2:()=>l4,FolderCog:()=>l4,FolderCode:()=>cN,FolderClosed:()=>dN,FolderClock:()=>uN,FolderCheck:()=>mN,FolderArchive:()=>_N,Folder:()=>FF,FoldVertical:()=>gN,FoldHorizontal:()=>$N,Focus:()=>hN,Flower2:()=>bN,Flower:()=>vN,FlipVertical2:()=>fN,FlipVertical:()=>kN,FlipHorizontal2:()=>LN,FlipHorizontal:()=>yN,FlaskRound:()=>jN,FlaskConicalOff:()=>MN,FlaskConical:()=>RN,FlashlightOff:()=>wN,Flashlight:()=>UN,FlameKindling:()=>CN,Flame:()=>xN,FlagTriangleRight:()=>qN,FlagTriangleLeft:()=>AN,FlagOff:()=>PN,Flag:()=>EN,FishSymbol:()=>TN,FishOff:()=>ON,Fish:()=>SN,FireExtinguisher:()=>BN,Fingerprint:()=>DN,FilterX:()=>r4,Filter:()=>s4,Film:()=>HN,Files:()=>NN,FileX2:()=>IN,FileX:()=>zN,FileWarning:()=>GN,FileVolume2:()=>QN,FileVolume:()=>VN,FileVideoCamera:()=>n4,FileVideo2:()=>n4,FileVideo:()=>c4,FileUser:()=>WN,FileUp:()=>XN,FileType2:()=>KN,FileType:()=>YN,FileText:()=>JN,FileTerminal:()=>ZN,FileSymlink:()=>ez,FileStack:()=>oz,FileSpreadsheet:()=>tz,FileSliders:()=>az,FileSignature:()=>u4,FileSearch2:()=>rz,FileSearch:()=>sz,FileScan:()=>iz,FileQuestionMark:()=>p4,FileQuestion:()=>p4,FilePlus2:()=>lz,FilePlus:()=>nz,FilePlay:()=>c4,FilePieChart:()=>g4,FilePenLine:()=>u4,FilePen:()=>d4,FileOutput:()=>pz,FileMusic:()=>cz,FileMinus2:()=>dz,FileMinus:()=>uz,FileLock2:()=>_z,FileLock:()=>mz,FileLineChart:()=>_4,FileKey2:()=>$z,FileKey:()=>gz,FileJson2:()=>vz,FileJson:()=>hz,FileInput:()=>bz,FileImage:()=>kz,FileHeart:()=>fz,FileEdit:()=>d4,FileDown:()=>yz,FileDigit:()=>Lz,FileDiff:()=>jz,FileCog2:()=>m4,FileCog:()=>m4,FileCode2:()=>Mz,FileCode:()=>Rz,FileClock:()=>Uz,FileCheck2:()=>xz,FileCheck:()=>wz,FileChartPie:()=>g4,FileChartLine:()=>_4,FileChartColumnIncreasing:()=>h4,FileChartColumn:()=>$4,FileBox:()=>Ez,FileBarChart2:()=>$4,FileBarChart:()=>h4,FileBadge2:()=>qz,FileBadge:()=>Cz,FileAxis3d:()=>v4,FileAxis3D:()=>v4,FileAudio2:()=>Sz,FileAudio:()=>Az,FileArchive:()=>Pz,File:()=>FN,Figma:()=>Tz,FerrisWheel:()=>Oz,Fence:()=>Bz,Feather:()=>Dz,FastForward:()=>Hz,Fan:()=>Fz,Factory:()=>Nz,Facebook:()=>zz,EyeOff:()=>Vz,EyeClosed:()=>Qz,Eye:()=>Iz,ExternalLink:()=>Gz,Expand:()=>Wz,EvCharger:()=>Xz,Euro:()=>Yz,EthernetPort:()=>Kz,Eraser:()=>Jz,EqualSquare:()=>D9,EqualNot:()=>eI,EqualApproximately:()=>oI,Equal:()=>Zz,EllipsisVertical:()=>k4,Ellipsis:()=>b4,EggOff:()=>aI,EggFried:()=>sI,Egg:()=>tI,Edit3:()=>R6,Edit2:()=>j6,Edit:()=>O8,Eclipse:()=>rI,EarthLock:()=>lI,Earth:()=>f4,EarOff:()=>nI,Ear:()=>iI,Dumbbell:()=>pI,Drumstick:()=>cI,Drum:()=>uI,Droplets:()=>dI,DropletOff:()=>_I,Droplet:()=>mI,Drone:()=>gI,Drill:()=>$I,Dribbble:()=>hI,Drama:()=>vI,DraftingCompass:()=>bI,DownloadCloud:()=>w4,Download:()=>kI,DotSquare:()=>H9,Dot:()=>fI,DoorOpen:()=>yI,DoorClosedLocked:()=>jI,DoorClosed:()=>LI,Donut:()=>RI,DollarSign:()=>MI,Dog:()=>UI,Dock:()=>wI,DnaOff:()=>CI,Dna:()=>xI,DivideSquare:()=>F9,DivideCircle:()=>G4,Divide:()=>EI,DiscAlbum:()=>AI,Disc3:()=>SI,Disc2:()=>PI,Disc:()=>qI,Diff:()=>TI,Dices:()=>BI,Dice6:()=>OI,Dice5:()=>DI,Dice4:()=>HI,Dice3:()=>FI,Dice2:()=>NI,Dice1:()=>zI,DiamondPlus:()=>GI,DiamondPercent:()=>y4,DiamondMinus:()=>VI,Diamond:()=>II,Diameter:()=>QI,Dessert:()=>XI,Delete:()=>WI,DecimalsArrowRight:()=>YI,DecimalsArrowLeft:()=>JI,DatabaseZap:()=>e3,DatabaseBackup:()=>ZI,Database:()=>KI,Dam:()=>o3,Cylinder:()=>t3,Currency:()=>a3,CurlyBraces:()=>y7,CupSoda:()=>s3,Cuboid:()=>r3,Crown:()=>i3,Crosshair:()=>l3,Cross:()=>n3,Crop:()=>p3,Croissant:()=>c3,CreditCard:()=>d3,CreativeCommons:()=>u3,Cpu:()=>m3,CornerUpRight:()=>_3,CornerUpLeft:()=>g3,CornerRightUp:()=>$3,CornerRightDown:()=>h3,CornerLeftUp:()=>v3,CornerLeftDown:()=>b3,CornerDownRight:()=>f3,CornerDownLeft:()=>k3,Copyright:()=>y3,Copyleft:()=>L3,CopyX:()=>R3,CopySlash:()=>M3,CopyPlus:()=>U3,CopyMinus:()=>w3,CopyCheck:()=>x3,Copy:()=>j3,CookingPot:()=>C3,Cookie:()=>E3,Contrast:()=>q3,Container:()=>S3,ContactRound:()=>L4,Contact2:()=>L4,Contact:()=>A3,Construction:()=>P3,Cone:()=>T3,ConciergeBell:()=>O3,Computer:()=>B3,Component:()=>D3,Compass:()=>F3,Command:()=>H3,Combine:()=>N3,ColumnsSettings:()=>e8,Columns4:()=>z3,Columns3Cog:()=>e8,Columns3:()=>j4,Columns2:()=>R4,Columns:()=>R4,Coins:()=>I3,Cog:()=>G3,Coffee:()=>V3,Codesandbox:()=>Q3,Codepen:()=>W3,CodeXml:()=>M4,CodeSquare:()=>G9,Code2:()=>M4,Code:()=>X3,Club:()=>Y3,Clover:()=>K3,Cloudy:()=>J3,CloudUpload:()=>U4,CloudSunRain:()=>oG,CloudSun:()=>eG,CloudSnow:()=>tG,CloudRainWind:()=>sG,CloudRain:()=>aG,CloudOff:()=>iG,CloudMoonRain:()=>lG,CloudMoon:()=>rG,CloudLightning:()=>nG,CloudHail:()=>pG,CloudFog:()=>cG,CloudDrizzle:()=>dG,CloudDownload:()=>w4,CloudCog:()=>uG,CloudCheck:()=>mG,CloudAlert:()=>_G,Cloud:()=>Z3,ClosedCaption:()=>gG,ClockPlus:()=>hG,ClockFading:()=>vG,ClockArrowUp:()=>bG,ClockArrowDown:()=>kG,ClockAlert:()=>fG,Clock9:()=>yG,Clock8:()=>LG,Clock7:()=>jG,Clock6:()=>RG,Clock5:()=>MG,Clock4:()=>UG,Clock3:()=>wG,Clock2:()=>xG,Clock12:()=>CG,Clock11:()=>EG,Clock10:()=>qG,Clock1:()=>AG,Clock:()=>$G,ClipboardX:()=>TG,ClipboardType:()=>OG,ClipboardSignature:()=>C4,ClipboardPlus:()=>PG,ClipboardPenLine:()=>C4,ClipboardPen:()=>x4,ClipboardPaste:()=>BG,ClipboardMinus:()=>DG,ClipboardList:()=>HG,ClipboardEdit:()=>x4,ClipboardCopy:()=>FG,ClipboardClock:()=>NG,ClipboardCheck:()=>zG,Clipboard:()=>SG,Clapperboard:()=>IG,Citrus:()=>GG,CircuitBoard:()=>VG,CircleX:()=>E4,CircleUserRound:()=>A4,CircleUser:()=>q4,CircleStop:()=>S4,CircleStar:()=>WG,CircleSmall:()=>XG,CircleSlashed:()=>P4,CircleSlash2:()=>P4,CircleSlash:()=>YG,CircleQuestionMark:()=>o8,CirclePower:()=>T4,CirclePoundSterling:()=>KG,CirclePlus:()=>O4,CirclePlay:()=>B4,CirclePercent:()=>D4,CirclePause:()=>H4,CircleParkingOff:()=>N4,CircleParking:()=>F4,CircleOff:()=>JG,CircleMinus:()=>z4,CircleHelp:()=>o8,CircleGauge:()=>I4,CircleFadingPlus:()=>ZG,CircleFadingArrowUp:()=>eV,CircleEqual:()=>oV,CircleEllipsis:()=>tV,CircleDotDashed:()=>sV,CircleDot:()=>aV,CircleDollarSign:()=>rV,CircleDivide:()=>G4,CircleDashed:()=>iV,CircleChevronUp:()=>V4,CircleChevronRight:()=>Q4,CircleChevronLeft:()=>W4,CircleChevronDown:()=>Y4,CircleCheckBig:()=>K4,CircleCheck:()=>X4,CircleArrowUp:()=>J4,CircleArrowRight:()=>Z4,CircleArrowOutUpRight:()=>e7,CircleArrowOutUpLeft:()=>o7,CircleArrowOutDownRight:()=>t7,CircleArrowOutDownLeft:()=>a7,CircleArrowLeft:()=>s7,CircleArrowDown:()=>r7,CircleAlert:()=>i7,Circle:()=>QG,CigaretteOff:()=>nV,Cigarette:()=>lV,Church:()=>pV,Chromium:()=>l7,Chrome:()=>l7,ChevronsUpDown:()=>cV,ChevronsUp:()=>dV,ChevronsRightLeft:()=>mV,ChevronsRight:()=>uV,ChevronsLeftRightEllipsis:()=>$V,ChevronsLeftRight:()=>gV,ChevronsLeft:()=>_V,ChevronsDownUp:()=>vV,ChevronsDown:()=>hV,ChevronUpSquare:()=>V9,ChevronUpCircle:()=>V4,ChevronUp:()=>kV,ChevronRightSquare:()=>Q9,ChevronRightCircle:()=>Q4,ChevronRight:()=>fV,ChevronLeftSquare:()=>W9,ChevronLeftCircle:()=>W4,ChevronLeft:()=>bV,ChevronLast:()=>yV,ChevronFirst:()=>LV,ChevronDownSquare:()=>X9,ChevronDownCircle:()=>Y4,ChevronDown:()=>jV,Cherry:()=>RV,ChefHat:()=>MV,CheckSquare2:()=>Y9,CheckSquare:()=>K9,CheckLine:()=>UV,CheckCircle2:()=>X4,CheckCircle:()=>K4,CheckCheck:()=>xV,Check:()=>wV,ChartSpline:()=>CV,ChartScatter:()=>n7,ChartPie:()=>p7,ChartNoAxesGantt:()=>c7,ChartNoAxesCombined:()=>EV,ChartNoAxesColumnIncreasing:()=>u7,ChartNoAxesColumnDecreasing:()=>qV,ChartNoAxesColumn:()=>d7,ChartNetwork:()=>AV,ChartLine:()=>m7,ChartGantt:()=>SV,ChartColumnStacked:()=>PV,ChartColumnIncreasing:()=>g7,ChartColumnDecreasing:()=>TV,ChartColumnBig:()=>$7,ChartColumn:()=>_7,ChartCandlestick:()=>h7,ChartBarStacked:()=>OV,ChartBarIncreasing:()=>BV,ChartBarDecreasing:()=>DV,ChartBarBig:()=>b7,ChartBar:()=>v7,ChartArea:()=>k7,Cctv:()=>HV,Cat:()=>FV,Castle:()=>NV,Cast:()=>IV,CassetteTape:()=>zV,CaseUpper:()=>GV,CaseSensitive:()=>VV,CaseLower:()=>QV,Carrot:()=>XV,CardSim:()=>WV,Caravan:()=>YV,CarTaxiFront:()=>JV,CarFront:()=>ZV,Car:()=>KV,CaptionsOff:()=>eQ,Captions:()=>f7,Cannabis:()=>oQ,CandyOff:()=>aQ,CandyCane:()=>sQ,Candy:()=>tQ,CandlestickChart:()=>h7,CameraOff:()=>rQ,Camera:()=>iQ,CalendarX2:()=>pQ,CalendarX:()=>nQ,CalendarSync:()=>cQ,CalendarSearch:()=>dQ,CalendarRange:()=>uQ,CalendarPlus2:()=>_Q,CalendarPlus:()=>mQ,CalendarOff:()=>gQ,CalendarMinus2:()=>hQ,CalendarMinus:()=>$Q,CalendarHeart:()=>vQ,CalendarFold:()=>bQ,CalendarDays:()=>kQ,CalendarCog:()=>fQ,CalendarClock:()=>yQ,CalendarCheck2:()=>jQ,CalendarCheck:()=>LQ,CalendarArrowUp:()=>RQ,CalendarArrowDown:()=>MQ,Calendar1:()=>UQ,Calendar:()=>lQ,Calculator:()=>wQ,CakeSlice:()=>CQ,Cake:()=>xQ,CableCar:()=>qQ,Cable:()=>EQ,BusFront:()=>SQ,Bus:()=>AQ,Building2:()=>TQ,Building:()=>PQ,BugPlay:()=>BQ,BugOff:()=>DQ,Bug:()=>OQ,Bubbles:()=>HQ,BrushCleaning:()=>NQ,Brush:()=>FQ,BringToFront:()=>zQ,BriefcaseMedical:()=>GQ,BriefcaseConveyorBelt:()=>VQ,BriefcaseBusiness:()=>QQ,Briefcase:()=>IQ,BrickWallShield:()=>XQ,BrickWallFire:()=>YQ,BrickWall:()=>WQ,BrainCog:()=>JQ,BrainCircuit:()=>ZQ,Brain:()=>KQ,Brackets:()=>eW,Braces:()=>y7,Boxes:()=>oW,BoxSelect:()=>N9,Box:()=>tW,BowArrow:()=>aW,BottleWine:()=>sW,BotOff:()=>iW,BotMessageSquare:()=>nW,Bot:()=>rW,BoomBox:()=>lW,BookmarkX:()=>cW,BookmarkPlus:()=>dW,BookmarkMinus:()=>uW,BookmarkCheck:()=>mW,Bookmark:()=>pW,BookX:()=>gW,BookUser:()=>$W,BookUp2:()=>vW,BookUp:()=>hW,BookType:()=>bW,BookText:()=>kW,BookTemplate:()=>L7,BookPlus:()=>fW,BookOpenText:()=>LW,BookOpenCheck:()=>jW,BookOpen:()=>yW,BookMinus:()=>RW,BookMarked:()=>MW,BookLock:()=>UW,BookKey:()=>wW,BookImage:()=>xW,BookHeart:()=>CW,BookHeadphones:()=>qW,BookDown:()=>EW,BookDashed:()=>L7,BookCopy:()=>AW,BookCheck:()=>SW,BookAudio:()=>PW,BookAlert:()=>TW,BookA:()=>OW,Book:()=>_W,Bone:()=>BW,Bomb:()=>DW,Bolt:()=>HW,Bold:()=>NW,BluetoothSearching:()=>FW,BluetoothOff:()=>IW,BluetoothConnected:()=>GW,Bluetooth:()=>zW,Blocks:()=>VW,Blinds:()=>WW,Blend:()=>XW,Bitcoin:()=>QW,Birdhouse:()=>YW,Bird:()=>KW,Biohazard:()=>JW,Binoculars:()=>ZW,Binary:()=>eX,Bike:()=>oX,BicepsFlexed:()=>tX,BetweenVerticalStart:()=>aX,BetweenVerticalEnd:()=>sX,BetweenHorizontalStart:()=>j7,BetweenHorizontalEnd:()=>R7,BetweenHorizonalStart:()=>j7,BetweenHorizonalEnd:()=>R7,BellRing:()=>iX,BellPlus:()=>lX,BellOff:()=>nX,BellMinus:()=>pX,BellElectric:()=>dX,BellDot:()=>cX,Bell:()=>rX,BeerOff:()=>mX,Beer:()=>uX,Beef:()=>gX,BedSingle:()=>$X,BedDouble:()=>vX,Bed:()=>_X,BeanOff:()=>bX,Bean:()=>hX,Beaker:()=>kX,BatteryWarning:()=>yX,BatteryPlus:()=>jX,BatteryMedium:()=>LX,BatteryLow:()=>RX,BatteryFull:()=>MX,BatteryCharging:()=>UX,Battery:()=>fX,Bath:()=>wX,Baseline:()=>xX,Barrel:()=>CX,Barcode:()=>EX,BarChartHorizontalBig:()=>b7,BarChartHorizontal:()=>v7,BarChartBig:()=>$7,BarChart4:()=>g7,BarChart3:()=>_7,BarChart2:()=>d7,BarChart:()=>u7,BanknoteX:()=>SX,BanknoteArrowUp:()=>AX,BanknoteArrowDown:()=>PX,Banknote:()=>qX,Bandage:()=>TX,Banana:()=>OX,Ban:()=>BX,BaggageClaim:()=>DX,BadgeX:()=>FX,BadgeTurkishLira:()=>NX,BadgeSwissFranc:()=>zX,BadgeRussianRuble:()=>IX,BadgeQuestionMark:()=>M7,BadgePoundSterling:()=>GX,BadgePlus:()=>VX,BadgePercent:()=>QX,BadgeMinus:()=>WX,BadgeJapaneseYen:()=>XX,BadgeInfo:()=>YX,BadgeIndianRupee:()=>KX,BadgeHelp:()=>M7,BadgeEuro:()=>JX,BadgeDollarSign:()=>ZX,BadgeCheck:()=>U7,BadgeCent:()=>eY,BadgeAlert:()=>oY,Badge:()=>HX,Backpack:()=>tY,Baby:()=>aY,Axis3d:()=>w7,Axis3D:()=>w7,Axe:()=>sY,Award:()=>rY,AudioWaveform:()=>iY,AudioLines:()=>lY,Atom:()=>nY,AtSign:()=>pY,AsteriskSquare:()=>Z9,Asterisk:()=>cY,ArrowsUpFromLine:()=>dY,ArrowUpZa:()=>x7,ArrowUpZA:()=>x7,ArrowUpWideNarrow:()=>mY,ArrowUpToLine:()=>_Y,ArrowUpSquare:()=>e6,ArrowUpRightSquare:()=>o6,ArrowUpRightFromSquare:()=>s6,ArrowUpRightFromCircle:()=>e7,ArrowUpRight:()=>gY,ArrowUpNarrowWide:()=>C7,ArrowUpLeftSquare:()=>t6,ArrowUpLeftFromSquare:()=>r6,ArrowUpLeftFromCircle:()=>o7,ArrowUpLeft:()=>$Y,ArrowUpFromLine:()=>hY,ArrowUpFromDot:()=>vY,ArrowUpDown:()=>bY,ArrowUpCircle:()=>J4,ArrowUpAz:()=>E7,ArrowUpAZ:()=>E7,ArrowUp10:()=>kY,ArrowUp01:()=>fY,ArrowUp:()=>uY,ArrowRightToLine:()=>LY,ArrowRightSquare:()=>a6,ArrowRightLeft:()=>jY,ArrowRightFromLine:()=>RY,ArrowRightCircle:()=>Z4,ArrowRight:()=>yY,ArrowLeftToLine:()=>UY,ArrowLeftSquare:()=>n6,ArrowLeftRight:()=>xY,ArrowLeftFromLine:()=>wY,ArrowLeftCircle:()=>s7,ArrowLeft:()=>MY,ArrowDownZa:()=>q7,ArrowDownZA:()=>q7,ArrowDownWideNarrow:()=>A7,ArrowDownUp:()=>EY,ArrowDownToLine:()=>qY,ArrowDownToDot:()=>AY,ArrowDownSquare:()=>p6,ArrowDownRightSquare:()=>c6,ArrowDownRightFromSquare:()=>i6,ArrowDownRightFromCircle:()=>t7,ArrowDownRight:()=>SY,ArrowDownNarrowWide:()=>PY,ArrowDownLeftSquare:()=>d6,ArrowDownLeftFromSquare:()=>l6,ArrowDownLeftFromCircle:()=>a7,ArrowDownLeft:()=>TY,ArrowDownFromLine:()=>OY,ArrowDownCircle:()=>r7,ArrowDownAz:()=>S7,ArrowDownAZ:()=>S7,ArrowDown10:()=>BY,ArrowDown01:()=>DY,ArrowDown:()=>CY,ArrowBigUpDash:()=>FY,ArrowBigUp:()=>HY,ArrowBigRightDash:()=>zY,ArrowBigRight:()=>NY,ArrowBigLeftDash:()=>GY,ArrowBigLeft:()=>IY,ArrowBigDownDash:()=>QY,ArrowBigDown:()=>VY,Armchair:()=>WY,AreaChart:()=>k7,ArchiveX:()=>YY,ArchiveRestore:()=>KY,Archive:()=>XY,Apple:()=>JY,AppWindowMac:()=>eK,AppWindow:()=>ZY,Aperture:()=>oK,Anvil:()=>tK,Antenna:()=>aK,Annoyed:()=>sK,Angry:()=>rK,Anchor:()=>iK,Amphora:()=>lK,Ampersands:()=>nK,Ampersand:()=>pK,Ambulance:()=>cK,AlignVerticalSpaceBetween:()=>dK,AlignVerticalSpaceAround:()=>uK,AlignVerticalJustifyStart:()=>mK,AlignVerticalJustifyEnd:()=>_K,AlignVerticalJustifyCenter:()=>gK,AlignVerticalDistributeStart:()=>$K,AlignVerticalDistributeEnd:()=>hK,AlignVerticalDistributeCenter:()=>vK,AlignStartVertical:()=>bK,AlignStartHorizontal:()=>kK,AlignRight:()=>d9,AlignLeft:()=>X5,AlignJustify:()=>u9,AlignHorizontalSpaceBetween:()=>fK,AlignHorizontalSpaceAround:()=>yK,AlignHorizontalJustifyStart:()=>LK,AlignHorizontalJustifyEnd:()=>jK,AlignHorizontalJustifyCenter:()=>RK,AlignHorizontalDistributeStart:()=>MK,AlignHorizontalDistributeEnd:()=>UK,AlignHorizontalDistributeCenter:()=>wK,AlignEndVertical:()=>xK,AlignEndHorizontal:()=>CK,AlignCenterVertical:()=>EK,AlignCenterHorizontal:()=>qK,AlignCenter:()=>m9,AlertTriangle:()=>r9,AlertOctagon:()=>O6,AlertCircle:()=>i7,Album:()=>AK,AlarmSmoke:()=>SK,AlarmPlus:()=>P7,AlarmMinus:()=>T7,AlarmClockPlus:()=>P7,AlarmClockOff:()=>TK,AlarmClockMinus:()=>T7,AlarmClockCheck:()=>O7,AlarmClock:()=>PK,AlarmCheck:()=>O7,Airplay:()=>OK,AirVent:()=>BK,ActivitySquare:()=>u6,Activity:()=>DK,Accessibility:()=>HK,ALargeSmall:()=>FK,AArrowUp:()=>NK,AArrowDown:()=>zK});var GK={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"};var yk=([Z,J,K])=>{let Y=document.createElementNS("http://www.w3.org/2000/svg",Z);if(Object.keys(J).forEach((X)=>{Y.setAttribute(X,String(J[X]))}),K?.length)K.forEach((X)=>{let W=yk(X);Y.appendChild(W)});return Y},IK=(Z,J={})=>{let Y={...GK,...J};return yk(["svg",Y,Z])};var l$=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),i$=(Z)=>{if(typeof Z==="string")return Z;if(!Z||!Z.class)return"";if(Z.class&&typeof Z.class==="string")return Z.class.split(" ");if(Z.class&&Array.isArray(Z.class))return Z.class;return""},r$=(Z)=>{return Z.flatMap(i$).map((K)=>K.trim()).filter(Boolean).filter((K,Y,X)=>X.indexOf(K)===Y).join(" ")},s$=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,Y)=>K.toUpperCase()+Y.toLowerCase()),Sj=(Z,{nameAttr:J,icons:K,attrs:Y})=>{let X=Z.getAttribute(J);if(X==null)return;let W=s$(X),V=K[W];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=l$(Z),I={...GK,"data-lucide":X,...Y,...G},z=r$(["lucide",`lucide-${X}`,G,Y]);if(z)Object.assign(I,{class:z});let N=IK(V,I);return Z.parentNode?.replaceChild(N,Z)};var Aj={};rj(Aj,{ZoomOut:()=>jU,ZoomIn:()=>RU,ZapOff:()=>UU,Zap:()=>MU,Youtube:()=>wU,XSquare:()=>g9,XOctagon:()=>P6,XCircle:()=>E4,X:()=>CU,Wrench:()=>EU,WrapText:()=>n9,Worm:()=>xU,Workflow:()=>qU,WineOff:()=>SU,Wine:()=>AU,WindArrowDown:()=>TU,Wind:()=>PU,WifiZero:()=>DU,WifiSync:()=>BU,WifiPen:()=>HU,WifiOff:()=>FU,WifiLow:()=>NU,WifiHigh:()=>zU,WifiCog:()=>IU,Wifi:()=>OU,WholeWord:()=>GU,WheatOff:()=>QU,Wheat:()=>VU,Weight:()=>WU,WebhookOff:()=>YU,Webhook:()=>XU,Webcam:()=>KU,Waypoints:()=>ZU,WavesLadder:()=>ew,Waves:()=>JU,Watch:()=>ow,WashingMachine:()=>tw,Warehouse:()=>aw,WandSparkles:()=>VZ,Wand2:()=>VZ,Wand:()=>sw,Wallpaper:()=>rw,WalletMinimal:()=>QZ,WalletCards:()=>lw,Wallet2:()=>QZ,Wallet:()=>iw,Vote:()=>nw,VolumeX:()=>cw,VolumeOff:()=>dw,Volume2:()=>uw,Volume1:()=>mw,Volume:()=>pw,Volleyball:()=>_w,Voicemail:()=>gw,View:()=>$w,Videotape:()=>hw,VideoOff:()=>bw,Video:()=>vw,VibrateOff:()=>fw,Vibrate:()=>kw,Verified:()=>U7,VenusAndMars:()=>Lw,Venus:()=>yw,VenetianMask:()=>jw,Vegan:()=>Rw,VectorSquare:()=>Mw,Vault:()=>Uw,Variable:()=>xw,UtilityPole:()=>ww,UtensilsCrossed:()=>XZ,Utensils:()=>WZ,UsersRound:()=>YZ,Users2:()=>YZ,Users:()=>Cw,UserX2:()=>JZ,UserX:()=>qw,UserStar:()=>Aw,UserSquare2:()=>h9,UserSquare:()=>$9,UserSearch:()=>Sw,UserRoundX:()=>JZ,UserRoundSearch:()=>Pw,UserRoundPlus:()=>ZZ,UserRoundPen:()=>Tw,UserRoundMinus:()=>e9,UserRoundCog:()=>o9,UserRoundCheck:()=>t9,UserRound:()=>KZ,UserPlus2:()=>ZZ,UserPlus:()=>Ow,UserPen:()=>Bw,UserMinus2:()=>e9,UserMinus:()=>Dw,UserLock:()=>Hw,UserCog2:()=>o9,UserCog:()=>Fw,UserCircle2:()=>A4,UserCircle:()=>q4,UserCheck2:()=>t9,UserCheck:()=>zw,User2:()=>KZ,User:()=>Ew,Usb:()=>Nw,UploadCloud:()=>U4,Upload:()=>Gw,Unplug:()=>Iw,UnlockKeyhole:()=>I6,Unlock:()=>z6,Unlink2:()=>Qw,Unlink:()=>Vw,University:()=>a9,Ungroup:()=>Ww,UnfoldVertical:()=>Xw,UnfoldHorizontal:()=>Yw,UndoDot:()=>Kw,Undo2:()=>Zw,Undo:()=>Jw,Underline:()=>ex,UmbrellaOff:()=>tx,Umbrella:()=>ox,TypeOutline:()=>sx,Type:()=>ax,Twitter:()=>rx,Twitch:()=>lx,TvMinimalPlay:()=>nx,TvMinimal:()=>s9,Tv2:()=>s9,Tv:()=>ix,Turtle:()=>px,Turntable:()=>cx,TurkishLira:()=>dx,TruckElectric:()=>mx,Truck:()=>ux,Trophy:()=>_x,TriangleRight:()=>gx,TriangleDashed:()=>hx,TriangleAlert:()=>r9,Triangle:()=>$x,TrendingUpDown:()=>bx,TrendingUp:()=>vx,TrendingDown:()=>fx,Trello:()=>kx,Trees:()=>yx,TreePine:()=>Lx,TreePalm:()=>i9,TreeDeciduous:()=>jx,Trash2:()=>Mx,Trash:()=>Rx,Transgender:()=>Ux,TramFront:()=>l9,TrainTrack:()=>wx,TrainFrontTunnel:()=>xx,TrainFront:()=>Cx,Train:()=>l9,TrafficCone:()=>Ex,Tractor:()=>qx,ToyBrick:()=>Ax,TowerControl:()=>Sx,TouchpadOff:()=>Ox,Touchpad:()=>Tx,Torus:()=>Px,Tornado:()=>Bx,ToolCase:()=>Dx,Toilet:()=>Hx,ToggleRight:()=>Fx,ToggleLeft:()=>Nx,TimerReset:()=>Ix,TimerOff:()=>Gx,Timer:()=>zx,TicketsPlane:()=>Qx,Tickets:()=>Vx,TicketX:()=>Xx,TicketSlash:()=>Yx,TicketPlus:()=>Kx,TicketPercent:()=>Jx,TicketMinus:()=>Zx,TicketCheck:()=>eC,Ticket:()=>Wx,ThumbsUp:()=>oC,ThumbsDown:()=>tC,ThermometerSun:()=>sC,ThermometerSnowflake:()=>rC,Thermometer:()=>aC,Theater:()=>iC,TextWrap:()=>n9,TextSelection:()=>p9,TextSelect:()=>p9,TextSearch:()=>lC,TextQuote:()=>nC,TextInitial:()=>c9,TextCursorInput:()=>cC,TextCursor:()=>pC,TextAlignStart:()=>X5,TextAlignJustify:()=>u9,TextAlignEnd:()=>d9,TextAlignCenter:()=>m9,Text:()=>X5,TestTubes:()=>uC,TestTubeDiagonal:()=>_9,TestTube2:()=>_9,TestTube:()=>dC,TerminalSquare:()=>v9,Terminal:()=>mC,TentTree:()=>gC,Tent:()=>_C,Telescope:()=>$C,Target:()=>vC,Tangent:()=>hC,Tally5:()=>bC,Tally4:()=>kC,Tally3:()=>fC,Tally2:()=>yC,Tally1:()=>LC,Tags:()=>jC,Tag:()=>RC,Tablets:()=>MC,TabletSmartphone:()=>wC,Tablet:()=>UC,TableRowsSplit:()=>CC,TableProperties:()=>EC,TableOfContents:()=>qC,TableConfig:()=>e8,TableColumnsSplit:()=>AC,TableCellsSplit:()=>SC,TableCellsMerge:()=>PC,Table2:()=>TC,Table:()=>xC,Syringe:()=>OC,Swords:()=>BC,Sword:()=>DC,SwitchCamera:()=>HC,SwissFranc:()=>FC,SwatchBook:()=>NC,Superscript:()=>zC,Sunset:()=>IC,Sunrise:()=>GC,SunSnow:()=>QC,SunMoon:()=>WC,SunMedium:()=>XC,SunDim:()=>YC,Sun:()=>VC,Subtitles:()=>f7,Subscript:()=>KC,Strikethrough:()=>JC,StretchVertical:()=>ZC,StretchHorizontal:()=>eE,Store:()=>oE,StopCircle:()=>S4,StickyNote:()=>tE,Sticker:()=>aE,Stethoscope:()=>sE,StepForward:()=>rE,StepBack:()=>iE,Stars:()=>m6,StarOff:()=>nE,StarHalf:()=>pE,Star:()=>lE,Stamp:()=>cE,Squirrel:()=>dE,SquircleDashed:()=>mE,Squircle:()=>uE,SquaresUnite:()=>_E,SquaresSubtract:()=>$E,SquaresIntersect:()=>gE,SquaresExclude:()=>hE,SquareX:()=>g9,SquareUserRound:()=>h9,SquareUser:()=>$9,SquareTerminal:()=>v9,SquareStop:()=>bE,SquareStar:()=>kE,SquareStack:()=>fE,SquareSquare:()=>yE,SquareSplitVertical:()=>b9,SquareSplitHorizontal:()=>k9,SquareSlash:()=>f9,SquareSigma:()=>y9,SquareScissors:()=>L9,SquareRoundCorner:()=>LE,SquareRadical:()=>jE,SquarePower:()=>j9,SquarePlus:()=>R9,SquarePlay:()=>M9,SquarePilcrow:()=>U9,SquarePi:()=>w9,SquarePercent:()=>x9,SquarePen:()=>O8,SquarePause:()=>RE,SquareParkingOff:()=>E9,SquareParking:()=>C9,SquareMousePointer:()=>q9,SquareMinus:()=>A9,SquareMenu:()=>S9,SquareM:()=>P9,SquareLibrary:()=>T9,SquareKanban:()=>O9,SquareGanttChart:()=>Y5,SquareFunction:()=>B9,SquareEqual:()=>D9,SquareDot:()=>H9,SquareDivide:()=>F9,SquareDashedTopSolid:()=>ME,SquareDashedMousePointer:()=>z9,SquareDashedKanban:()=>I9,SquareDashedBottomCode:()=>wE,SquareDashedBottom:()=>UE,SquareDashed:()=>N9,SquareCode:()=>G9,SquareChevronUp:()=>V9,SquareChevronRight:()=>Q9,SquareChevronLeft:()=>W9,SquareChevronDown:()=>X9,SquareCheckBig:()=>K9,SquareCheck:()=>Y9,SquareChartGantt:()=>Y5,SquareBottomDashedScissors:()=>J9,SquareAsterisk:()=>Z9,SquareArrowUpRight:()=>o6,SquareArrowUpLeft:()=>t6,SquareArrowUp:()=>e6,SquareArrowRight:()=>a6,SquareArrowOutUpRight:()=>s6,SquareArrowOutUpLeft:()=>r6,SquareArrowOutDownRight:()=>i6,SquareArrowOutDownLeft:()=>l6,SquareArrowLeft:()=>n6,SquareArrowDownRight:()=>c6,SquareArrowDownLeft:()=>d6,SquareArrowDown:()=>p6,SquareActivity:()=>u6,Square:()=>vE,Sprout:()=>xE,SprayCan:()=>CE,Spotlight:()=>EE,Spool:()=>qE,SplitSquareVertical:()=>b9,SplitSquareHorizontal:()=>k9,Split:()=>AE,SplinePointer:()=>PE,Spline:()=>SE,SpellCheck2:()=>OE,SpellCheck:()=>TE,Speech:()=>BE,Speaker:()=>DE,Sparkles:()=>m6,Sparkle:()=>HE,Spade:()=>FE,Space:()=>NE,Soup:()=>zE,SortDesc:()=>A7,SortAsc:()=>C7,Sofa:()=>IE,SoapDispenserDroplet:()=>VE,Snowflake:()=>GE,Snail:()=>QE,SmilePlus:()=>XE,Smile:()=>WE,SmartphoneNfc:()=>KE,SmartphoneCharging:()=>JE,Smartphone:()=>YE,SlidersVertical:()=>_6,SlidersHorizontal:()=>ZE,Sliders:()=>_6,Slice:()=>eq,SlashSquare:()=>f9,Slash:()=>oq,Slack:()=>tq,Skull:()=>aq,SkipForward:()=>sq,SkipBack:()=>rq,Siren:()=>iq,SignpostBig:()=>nq,Signpost:()=>lq,Signature:()=>pq,SignalZero:()=>dq,SignalMedium:()=>uq,SignalLow:()=>mq,SignalHigh:()=>_q,Signal:()=>cq,SigmaSquare:()=>y9,Sigma:()=>gq,SidebarOpen:()=>C6,SidebarClose:()=>q6,Sidebar:()=>x6,Shuffle:()=>$q,Shrub:()=>hq,Shrink:()=>vq,Shrimp:()=>bq,Shredder:()=>kq,ShowerHead:()=>fq,Shovel:()=>yq,ShoppingCart:()=>Lq,ShoppingBasket:()=>jq,ShoppingBag:()=>Rq,Shirt:()=>Mq,ShipWheel:()=>wq,Ship:()=>Uq,ShieldX:()=>g6,ShieldUser:()=>Cq,ShieldQuestionMark:()=>$6,ShieldQuestion:()=>$6,ShieldPlus:()=>Eq,ShieldOff:()=>qq,ShieldMinus:()=>Aq,ShieldHalf:()=>Sq,ShieldEllipsis:()=>Pq,ShieldClose:()=>g6,ShieldCheck:()=>Tq,ShieldBan:()=>Bq,ShieldAlert:()=>Oq,Shield:()=>xq,Shell:()=>Hq,Sheet:()=>Dq,Share2:()=>Nq,Share:()=>Fq,Shapes:()=>zq,Settings2:()=>Gq,Settings:()=>Iq,ServerOff:()=>Qq,ServerCrash:()=>Wq,ServerCog:()=>Yq,Server:()=>Vq,SeparatorVertical:()=>Xq,SeparatorHorizontal:()=>Kq,SendToBack:()=>Zq,SendHorizontal:()=>h6,SendHorizonal:()=>h6,Send:()=>Jq,Section:()=>eA,SearchX:()=>tA,SearchSlash:()=>aA,SearchCode:()=>rA,SearchCheck:()=>sA,Search:()=>oA,ScrollText:()=>lA,Scroll:()=>iA,ScreenShareOff:()=>pA,ScreenShare:()=>nA,ScissorsSquareDashedBottom:()=>J9,ScissorsSquare:()=>L9,ScissorsLineDashed:()=>dA,Scissors:()=>cA,School2:()=>a9,School:()=>uA,ScatterChart:()=>n7,ScanText:()=>_A,ScanSearch:()=>gA,ScanQrCode:()=>$A,ScanLine:()=>hA,ScanHeart:()=>vA,ScanFace:()=>bA,ScanEye:()=>kA,ScanBarcode:()=>fA,Scan:()=>mA,Scaling:()=>yA,Scale3d:()=>v6,Scale3D:()=>v6,Scale:()=>LA,SaveOff:()=>RA,SaveAll:()=>MA,Save:()=>jA,SaudiRiyal:()=>UA,SatelliteDish:()=>xA,Satellite:()=>wA,Sandwich:()=>CA,Salad:()=>EA,Sailboat:()=>qA,RussianRuble:()=>AA,RulerDimensionLine:()=>PA,Ruler:()=>SA,Rss:()=>OA,Rows4:()=>TA,Rows3:()=>b6,Rows2:()=>k6,Rows:()=>k6,Router:()=>BA,RouteOff:()=>HA,Route:()=>DA,RotateCwSquare:()=>NA,RotateCw:()=>FA,RotateCcwSquare:()=>IA,RotateCcwKey:()=>GA,RotateCcw:()=>zA,Rotate3d:()=>f6,Rotate3D:()=>f6,Rose:()=>VA,RollerCoaster:()=>QA,RockingChair:()=>WA,Rocket:()=>XA,Ribbon:()=>YA,Rewind:()=>KA,ReplyAll:()=>ZA,Reply:()=>JA,ReplaceAll:()=>oS,Replace:()=>eS,Repeat2:()=>aS,Repeat1:()=>sS,Repeat:()=>tS,RemoveFormatting:()=>rS,Regex:()=>iS,Refrigerator:()=>lS,RefreshCwOff:()=>pS,RefreshCw:()=>nS,RefreshCcwDot:()=>dS,RefreshCcw:()=>cS,RedoDot:()=>mS,Redo2:()=>_S,Redo:()=>uS,Recycle:()=>gS,RectangleVertical:()=>$S,RectangleHorizontal:()=>hS,RectangleGoggles:()=>vS,RectangleEllipsis:()=>y6,RectangleCircle:()=>bS,ReceiptTurkishLira:()=>kS,ReceiptText:()=>yS,ReceiptSwissFranc:()=>LS,ReceiptRussianRuble:()=>jS,ReceiptPoundSterling:()=>RS,ReceiptJapaneseYen:()=>MS,ReceiptIndianRupee:()=>US,ReceiptEuro:()=>wS,ReceiptCent:()=>xS,Receipt:()=>fS,Ratio:()=>CS,Rat:()=>qS,Rainbow:()=>ES,RailSymbol:()=>AS,Radius:()=>SS,RadioTower:()=>TS,RadioReceiver:()=>OS,Radio:()=>PS,Radical:()=>BS,Radiation:()=>DS,Radar:()=>HS,Rabbit:()=>FS,Quote:()=>NS,QrCode:()=>IS,Pyramid:()=>zS,Puzzle:()=>GS,Proportions:()=>VS,Projector:()=>QS,PrinterCheck:()=>XS,Printer:()=>WS,Presentation:()=>YS,PowerSquare:()=>j9,PowerOff:()=>JS,PowerCircle:()=>T4,Power:()=>KS,PoundSterling:()=>ZS,Popsicle:()=>eP,Popcorn:()=>oP,PointerOff:()=>aP,Pointer:()=>tP,Podcast:()=>sP,PocketKnife:()=>iP,Pocket:()=>rP,PlusSquare:()=>R9,PlusCircle:()=>O4,Plus:()=>lP,PlugZap2:()=>L6,PlugZap:()=>L6,Plug2:()=>pP,Plug:()=>nP,PlaySquare:()=>M9,PlayCircle:()=>B4,Play:()=>cP,PlaneTakeoff:()=>uP,PlaneLanding:()=>mP,Plane:()=>dP,Pizza:()=>_P,Pipette:()=>$P,PinOff:()=>gP,Pin:()=>hP,PillBottle:()=>bP,Pill:()=>vP,PilcrowSquare:()=>U9,PilcrowRight:()=>fP,PilcrowLeft:()=>LP,Pilcrow:()=>kP,PiggyBank:()=>yP,PieChart:()=>p7,PictureInPicture2:()=>RP,PictureInPicture:()=>jP,Pickaxe:()=>MP,Piano:()=>UP,PiSquare:()=>w9,Pi:()=>wP,PhoneOutgoing:()=>CP,PhoneOff:()=>EP,PhoneMissed:()=>qP,PhoneIncoming:()=>AP,PhoneForwarded:()=>SP,PhoneCall:()=>PP,Phone:()=>xP,PhilippinePeso:()=>TP,PersonStanding:()=>OP,PercentSquare:()=>x9,PercentDiamond:()=>y4,PercentCircle:()=>D4,Percent:()=>BP,Pentagon:()=>DP,PencilRuler:()=>FP,PencilOff:()=>NP,PencilLine:()=>zP,Pencil:()=>HP,PenTool:()=>IP,PenSquare:()=>O8,PenOff:()=>GP,PenLine:()=>R6,PenBox:()=>O8,Pen:()=>j6,PcCase:()=>VP,PawPrint:()=>QP,PauseOctagon:()=>T6,PauseCircle:()=>H4,Pause:()=>WP,PartyPopper:()=>XP,ParkingSquareOff:()=>E9,ParkingSquare:()=>C9,ParkingMeter:()=>KP,ParkingCircleOff:()=>N4,ParkingCircle:()=>F4,Parentheses:()=>YP,Paperclip:()=>JP,PanelsTopLeft:()=>M6,PanelsTopBottom:()=>b6,PanelsRightBottom:()=>ZP,PanelsLeftRight:()=>j4,PanelsLeftBottom:()=>oT,PanelTopOpen:()=>tT,PanelTopInactive:()=>U6,PanelTopDashed:()=>U6,PanelTopClose:()=>aT,PanelTopBottomDashed:()=>sT,PanelTop:()=>eT,PanelRightOpen:()=>rT,PanelRightInactive:()=>w6,PanelRightDashed:()=>w6,PanelRightClose:()=>lT,PanelRight:()=>iT,PanelLeftRightDashed:()=>nT,PanelLeftOpen:()=>C6,PanelLeftInactive:()=>E6,PanelLeftDashed:()=>E6,PanelLeftClose:()=>q6,PanelLeft:()=>x6,PanelBottomOpen:()=>cT,PanelBottomInactive:()=>A6,PanelBottomDashed:()=>A6,PanelBottomClose:()=>dT,PanelBottom:()=>pT,Panda:()=>uT,Palmtree:()=>i9,Palette:()=>mT,PaintbrushVertical:()=>S6,Paintbrush2:()=>S6,Paintbrush:()=>_T,PaintRoller:()=>gT,PaintBucket:()=>$T,PackageX:()=>vT,PackageSearch:()=>bT,PackagePlus:()=>kT,PackageOpen:()=>fT,PackageMinus:()=>yT,PackageCheck:()=>LT,Package2:()=>jT,Package:()=>hT,Outdent:()=>J5,Origami:()=>RT,Orbit:()=>MT,Option:()=>UT,Omega:()=>wT,OctagonX:()=>P6,OctagonPause:()=>T6,OctagonMinus:()=>CT,OctagonAlert:()=>O6,Octagon:()=>xT,NutOff:()=>qT,Nut:()=>ET,NotepadTextDashed:()=>ST,NotepadText:()=>AT,NotebookText:()=>TT,NotebookTabs:()=>OT,NotebookPen:()=>BT,Notebook:()=>PT,NonBinary:()=>DT,Nfc:()=>HT,Newspaper:()=>FT,Network:()=>NT,NavigationOff:()=>IT,Navigation2Off:()=>VT,Navigation2:()=>GT,Navigation:()=>zT,Music4:()=>WT,Music3:()=>XT,Music2:()=>YT,Music:()=>QT,MoveVertical:()=>JT,MoveUpRight:()=>eO,MoveUpLeft:()=>oO,MoveUp:()=>ZT,MoveRight:()=>tO,MoveLeft:()=>aO,MoveHorizontal:()=>sO,MoveDownRight:()=>iO,MoveDownLeft:()=>lO,MoveDown:()=>rO,MoveDiagonal2:()=>pO,MoveDiagonal:()=>nO,Move3d:()=>B6,Move3D:()=>B6,Move:()=>KT,MousePointerSquareDashed:()=>z9,MousePointerClick:()=>uO,MousePointerBan:()=>mO,MousePointer2:()=>_O,MousePointer:()=>dO,MouseOff:()=>gO,Mouse:()=>cO,MountainSnow:()=>hO,Mountain:()=>$O,Motorbike:()=>vO,MoreVertical:()=>k4,MoreHorizontal:()=>b4,MoonStar:()=>kO,Moon:()=>bO,MonitorX:()=>yO,MonitorUp:()=>LO,MonitorStop:()=>jO,MonitorSpeaker:()=>RO,MonitorSmartphone:()=>MO,MonitorPlay:()=>UO,MonitorPause:()=>wO,MonitorOff:()=>xO,MonitorDown:()=>CO,MonitorDot:()=>EO,MonitorCog:()=>qO,MonitorCloud:()=>AO,MonitorCheck:()=>SO,Monitor:()=>fO,MinusSquare:()=>A9,MinusCircle:()=>z4,Minus:()=>PO,Minimize2:()=>OO,Minimize:()=>TO,MilkOff:()=>BO,Milk:()=>DO,Milestone:()=>HO,Microwave:()=>FO,Microscope:()=>NO,Microchip:()=>zO,MicVocal:()=>D6,MicOff:()=>GO,Mic2:()=>D6,Mic:()=>IO,MessagesSquare:()=>VO,MessageSquareX:()=>WO,MessageSquareWarning:()=>XO,MessageSquareText:()=>YO,MessageSquareShare:()=>JO,MessageSquareReply:()=>KO,MessageSquareQuote:()=>ZO,MessageSquarePlus:()=>e2,MessageSquareOff:()=>o2,MessageSquareMore:()=>t2,MessageSquareLock:()=>a2,MessageSquareHeart:()=>s2,MessageSquareDot:()=>r2,MessageSquareDiff:()=>i2,MessageSquareDashed:()=>l2,MessageSquareCode:()=>n2,MessageSquare:()=>QO,MessageCircleX:()=>c2,MessageCircleWarning:()=>d2,MessageCircleReply:()=>u2,MessageCircleQuestionMark:()=>H6,MessageCircleQuestion:()=>H6,MessageCirclePlus:()=>m2,MessageCircleOff:()=>_2,MessageCircleMore:()=>g2,MessageCircleHeart:()=>$2,MessageCircleDashed:()=>h2,MessageCircleCode:()=>v2,MessageCircle:()=>p2,Merge:()=>b2,MenuSquare:()=>S9,Menu:()=>k2,MemoryStick:()=>f2,Meh:()=>y2,MegaphoneOff:()=>j2,Megaphone:()=>L2,Medal:()=>R2,Maximize2:()=>U2,Maximize:()=>M2,Martini:()=>w2,MarsStroke:()=>C2,Mars:()=>x2,MapPlus:()=>E2,MapPinned:()=>A2,MapPinXInside:()=>T2,MapPinX:()=>P2,MapPinPlusInside:()=>B2,MapPinPlus:()=>O2,MapPinPen:()=>F6,MapPinOff:()=>D2,MapPinMinusInside:()=>H2,MapPinMinus:()=>F2,MapPinHouse:()=>N2,MapPinCheckInside:()=>I2,MapPinCheck:()=>z2,MapPin:()=>S2,MapMinus:()=>G2,Map:()=>q2,Mails:()=>V2,Mailbox:()=>Q2,MailX:()=>X2,MailWarning:()=>Y2,MailSearch:()=>K2,MailQuestionMark:()=>N6,MailQuestion:()=>N6,MailPlus:()=>J2,MailOpen:()=>Z2,MailMinus:()=>eB,MailCheck:()=>oB,Mail:()=>W2,Magnet:()=>tB,MSquare:()=>P9,Luggage:()=>aB,Lollipop:()=>sB,Logs:()=>rB,LogOut:()=>iB,LogIn:()=>lB,LockOpen:()=>z6,LockKeyholeOpen:()=>I6,LockKeyhole:()=>pB,Lock:()=>nB,LocationEdit:()=>F6,LocateOff:()=>dB,LocateFixed:()=>uB,Locate:()=>cB,LoaderPinwheel:()=>_B,LoaderCircle:()=>G6,Loader2:()=>G6,Loader:()=>mB,ListX:()=>$B,ListVideo:()=>hB,ListTree:()=>vB,ListTodo:()=>bB,ListStart:()=>kB,ListRestart:()=>yB,ListPlus:()=>LB,ListOrdered:()=>fB,ListMusic:()=>jB,ListMinus:()=>RB,ListIndentIncrease:()=>K5,ListIndentDecrease:()=>J5,ListFilterPlus:()=>MB,ListFilter:()=>UB,ListEnd:()=>wB,ListCollapse:()=>xB,ListChevronsUpDown:()=>CB,ListChevronsDownUp:()=>EB,ListChecks:()=>qB,ListCheck:()=>AB,List:()=>gB,Linkedin:()=>SB,Link2Off:()=>OB,Link2:()=>TB,Link:()=>PB,LineSquiggle:()=>BB,LineChart:()=>m7,LightbulbOff:()=>HB,Lightbulb:()=>DB,Ligature:()=>FB,LifeBuoy:()=>zB,LibrarySquare:()=>T9,LibraryBig:()=>IB,Library:()=>NB,LetterText:()=>c9,Lectern:()=>GB,LeafyGreen:()=>VB,Leaf:()=>QB,LayoutTemplate:()=>WB,LayoutPanelTop:()=>XB,LayoutPanelLeft:()=>YB,LayoutList:()=>KB,LayoutGrid:()=>JB,LayoutDashboard:()=>ZB,Layout:()=>M6,Layers3:()=>V6,Layers2:()=>eD,Layers:()=>V6,Laugh:()=>oD,LassoSelect:()=>aD,Lasso:()=>tD,LaptopMinimalCheck:()=>rD,LaptopMinimal:()=>Q6,Laptop2:()=>Q6,Laptop:()=>sD,Languages:()=>iD,Landmark:()=>lD,LandPlot:()=>nD,LampWallUp:()=>cD,LampWallDown:()=>dD,LampFloor:()=>uD,LampDesk:()=>mD,LampCeiling:()=>_D,Lamp:()=>pD,KeyboardOff:()=>$D,KeyboardMusic:()=>hD,Keyboard:()=>gD,KeySquare:()=>bD,KeyRound:()=>kD,Key:()=>vD,Kayak:()=>fD,KanbanSquareDashed:()=>I9,KanbanSquare:()=>O9,Kanban:()=>yD,Joystick:()=>LD,JapaneseYen:()=>jD,IterationCw:()=>RD,IterationCcw:()=>UD,Italic:()=>wD,Instagram:()=>MD,InspectionPanel:()=>xD,Inspect:()=>q9,Info:()=>ED,Infinity:()=>CD,IndianRupee:()=>qD,IndentIncrease:()=>K5,IndentDecrease:()=>J5,Indent:()=>K5,Inbox:()=>AD,Import:()=>SD,Images:()=>PD,ImageUpscale:()=>OD,ImageUp:()=>BD,ImagePlus:()=>DD,ImagePlay:()=>HD,ImageOff:()=>FD,ImageMinus:()=>ND,ImageDown:()=>zD,Image:()=>TD,IdCardLanyard:()=>ID,IdCard:()=>GD,IceCreamCone:()=>W6,IceCreamBowl:()=>X6,IceCream2:()=>X6,IceCream:()=>W6,HouseWifi:()=>QD,HousePlus:()=>VD,HousePlug:()=>XD,HouseHeart:()=>WD,House:()=>Y6,Hourglass:()=>YD,Hotel:()=>KD,Hospital:()=>JD,HopOff:()=>eH,Hop:()=>ZD,Home:()=>Y6,History:()=>oH,Highlighter:()=>aH,Hexagon:()=>tH,HelpingHand:()=>K6,HelpCircle:()=>o8,Heater:()=>sH,HeartPulse:()=>iH,HeartPlus:()=>lH,HeartOff:()=>nH,HeartMinus:()=>pH,HeartHandshake:()=>cH,HeartCrack:()=>dH,Heart:()=>rH,Headset:()=>uH,Headphones:()=>mH,HeadphoneOff:()=>_H,Heading6:()=>$H,Heading5:()=>hH,Heading4:()=>vH,Heading3:()=>bH,Heading2:()=>kH,Heading1:()=>fH,Heading:()=>gH,HdmiPort:()=>yH,Haze:()=>LH,HatGlasses:()=>jH,Hash:()=>RH,HardHat:()=>MH,HardDriveUpload:()=>wH,HardDriveDownload:()=>xH,HardDrive:()=>UH,Handshake:()=>CH,Handbag:()=>EH,HandPlatter:()=>AH,HandMetal:()=>SH,HandHelping:()=>K6,HandHeart:()=>PH,HandGrab:()=>J6,HandFist:()=>TH,HandCoins:()=>OH,Hand:()=>qH,Hammer:()=>BH,Hamburger:()=>DH,Ham:()=>HH,Guitar:()=>FH,Group:()=>NH,GripVertical:()=>IH,GripHorizontal:()=>GH,Grip:()=>zH,Grid3x3:()=>Z5,Grid3x2:()=>VH,Grid3X3:()=>Z5,Grid2x2X:()=>e4,Grid2x2Plus:()=>o4,Grid2x2Check:()=>t4,Grid2x2:()=>Z6,Grid2X2X:()=>e4,Grid2X2Plus:()=>o4,Grid2X2Check:()=>t4,Grid2X2:()=>Z6,Grid:()=>Z5,Grape:()=>QH,GraduationCap:()=>WH,Grab:()=>J6,Gpu:()=>XH,Goal:()=>YH,GlobeLock:()=>JH,Globe2:()=>f4,Globe:()=>KH,Glasses:()=>ZH,GlassWater:()=>eF,Gitlab:()=>oF,Github:()=>tF,GitPullRequestDraft:()=>sF,GitPullRequestCreateArrow:()=>lF,GitPullRequestCreate:()=>rF,GitPullRequestClosed:()=>iF,GitPullRequestArrow:()=>nF,GitPullRequest:()=>aF,GitMerge:()=>pF,GitGraph:()=>cF,GitFork:()=>dF,GitCompareArrows:()=>mF,GitCompare:()=>uF,GitCommitVertical:()=>_F,GitCommitHorizontal:()=>a4,GitCommit:()=>a4,GitBranchPlus:()=>$F,GitBranch:()=>gF,Gift:()=>hF,Ghost:()=>vF,GeorgianLari:()=>bF,Gem:()=>kF,Gavel:()=>fF,GaugeCircle:()=>I4,Gauge:()=>yF,GanttChartSquare:()=>Y5,GanttChart:()=>c7,GamepadDirectional:()=>jF,Gamepad2:()=>RF,Gamepad:()=>LF,GalleryVerticalEnd:()=>UF,GalleryVertical:()=>MF,GalleryThumbnails:()=>wF,GalleryHorizontalEnd:()=>CF,GalleryHorizontal:()=>xF,FunnelX:()=>r4,FunnelPlus:()=>EF,Funnel:()=>s4,FunctionSquare:()=>B9,Fullscreen:()=>qF,Fuel:()=>AF,Frown:()=>SF,Framer:()=>PF,Frame:()=>TF,Forward:()=>OF,FormInput:()=>y6,Forklift:()=>BF,ForkKnifeCrossed:()=>XZ,ForkKnife:()=>WZ,Footprints:()=>DF,Folders:()=>HF,FolderX:()=>NF,FolderUp:()=>zF,FolderTree:()=>IF,FolderSync:()=>GF,FolderSymlink:()=>VF,FolderSearch2:()=>WF,FolderSearch:()=>QF,FolderRoot:()=>XF,FolderPlus:()=>YF,FolderPen:()=>i4,FolderOutput:()=>KF,FolderOpenDot:()=>ZF,FolderOpen:()=>JF,FolderMinus:()=>eN,FolderLock:()=>oN,FolderKey:()=>tN,FolderKanban:()=>aN,FolderInput:()=>sN,FolderHeart:()=>rN,FolderGit2:()=>nN,FolderGit:()=>iN,FolderEdit:()=>i4,FolderDown:()=>lN,FolderDot:()=>pN,FolderCog2:()=>l4,FolderCog:()=>l4,FolderCode:()=>cN,FolderClosed:()=>dN,FolderClock:()=>uN,FolderCheck:()=>mN,FolderArchive:()=>_N,Folder:()=>FF,FoldVertical:()=>gN,FoldHorizontal:()=>$N,Focus:()=>hN,Flower2:()=>bN,Flower:()=>vN,FlipVertical2:()=>fN,FlipVertical:()=>kN,FlipHorizontal2:()=>LN,FlipHorizontal:()=>yN,FlaskRound:()=>jN,FlaskConicalOff:()=>MN,FlaskConical:()=>RN,FlashlightOff:()=>wN,Flashlight:()=>UN,FlameKindling:()=>CN,Flame:()=>xN,FlagTriangleRight:()=>qN,FlagTriangleLeft:()=>AN,FlagOff:()=>PN,Flag:()=>EN,FishSymbol:()=>TN,FishOff:()=>ON,Fish:()=>SN,FireExtinguisher:()=>BN,Fingerprint:()=>DN,FilterX:()=>r4,Filter:()=>s4,Film:()=>HN,Files:()=>NN,FileX2:()=>IN,FileX:()=>zN,FileWarning:()=>GN,FileVolume2:()=>QN,FileVolume:()=>VN,FileVideoCamera:()=>n4,FileVideo2:()=>n4,FileVideo:()=>c4,FileUser:()=>WN,FileUp:()=>XN,FileType2:()=>KN,FileType:()=>YN,FileText:()=>JN,FileTerminal:()=>ZN,FileSymlink:()=>ez,FileStack:()=>oz,FileSpreadsheet:()=>tz,FileSliders:()=>az,FileSignature:()=>u4,FileSearch2:()=>rz,FileSearch:()=>sz,FileScan:()=>iz,FileQuestionMark:()=>p4,FileQuestion:()=>p4,FilePlus2:()=>lz,FilePlus:()=>nz,FilePlay:()=>c4,FilePieChart:()=>g4,FilePenLine:()=>u4,FilePen:()=>d4,FileOutput:()=>pz,FileMusic:()=>cz,FileMinus2:()=>dz,FileMinus:()=>uz,FileLock2:()=>_z,FileLock:()=>mz,FileLineChart:()=>_4,FileKey2:()=>$z,FileKey:()=>gz,FileJson2:()=>vz,FileJson:()=>hz,FileInput:()=>bz,FileImage:()=>kz,FileHeart:()=>fz,FileEdit:()=>d4,FileDown:()=>yz,FileDigit:()=>Lz,FileDiff:()=>jz,FileCog2:()=>m4,FileCog:()=>m4,FileCode2:()=>Mz,FileCode:()=>Rz,FileClock:()=>Uz,FileCheck2:()=>xz,FileCheck:()=>wz,FileChartPie:()=>g4,FileChartLine:()=>_4,FileChartColumnIncreasing:()=>h4,FileChartColumn:()=>$4,FileBox:()=>Ez,FileBarChart2:()=>$4,FileBarChart:()=>h4,FileBadge2:()=>qz,FileBadge:()=>Cz,FileAxis3d:()=>v4,FileAxis3D:()=>v4,FileAudio2:()=>Sz,FileAudio:()=>Az,FileArchive:()=>Pz,File:()=>FN,Figma:()=>Tz,FerrisWheel:()=>Oz,Fence:()=>Bz,Feather:()=>Dz,FastForward:()=>Hz,Fan:()=>Fz,Factory:()=>Nz,Facebook:()=>zz,EyeOff:()=>Vz,EyeClosed:()=>Qz,Eye:()=>Iz,ExternalLink:()=>Gz,Expand:()=>Wz,EvCharger:()=>Xz,Euro:()=>Yz,EthernetPort:()=>Kz,Eraser:()=>Jz,EqualSquare:()=>D9,EqualNot:()=>eI,EqualApproximately:()=>oI,Equal:()=>Zz,EllipsisVertical:()=>k4,Ellipsis:()=>b4,EggOff:()=>aI,EggFried:()=>sI,Egg:()=>tI,Edit3:()=>R6,Edit2:()=>j6,Edit:()=>O8,Eclipse:()=>rI,EarthLock:()=>lI,Earth:()=>f4,EarOff:()=>nI,Ear:()=>iI,Dumbbell:()=>pI,Drumstick:()=>cI,Drum:()=>uI,Droplets:()=>dI,DropletOff:()=>_I,Droplet:()=>mI,Drone:()=>gI,Drill:()=>$I,Dribbble:()=>hI,Drama:()=>vI,DraftingCompass:()=>bI,DownloadCloud:()=>w4,Download:()=>kI,DotSquare:()=>H9,Dot:()=>fI,DoorOpen:()=>yI,DoorClosedLocked:()=>jI,DoorClosed:()=>LI,Donut:()=>RI,DollarSign:()=>MI,Dog:()=>UI,Dock:()=>wI,DnaOff:()=>CI,Dna:()=>xI,DivideSquare:()=>F9,DivideCircle:()=>G4,Divide:()=>EI,DiscAlbum:()=>AI,Disc3:()=>SI,Disc2:()=>PI,Disc:()=>qI,Diff:()=>TI,Dices:()=>BI,Dice6:()=>OI,Dice5:()=>DI,Dice4:()=>HI,Dice3:()=>FI,Dice2:()=>NI,Dice1:()=>zI,DiamondPlus:()=>GI,DiamondPercent:()=>y4,DiamondMinus:()=>VI,Diamond:()=>II,Diameter:()=>QI,Dessert:()=>XI,Delete:()=>WI,DecimalsArrowRight:()=>YI,DecimalsArrowLeft:()=>JI,DatabaseZap:()=>e3,DatabaseBackup:()=>ZI,Database:()=>KI,Dam:()=>o3,Cylinder:()=>t3,Currency:()=>a3,CurlyBraces:()=>y7,CupSoda:()=>s3,Cuboid:()=>r3,Crown:()=>i3,Crosshair:()=>l3,Cross:()=>n3,Crop:()=>p3,Croissant:()=>c3,CreditCard:()=>d3,CreativeCommons:()=>u3,Cpu:()=>m3,CornerUpRight:()=>_3,CornerUpLeft:()=>g3,CornerRightUp:()=>$3,CornerRightDown:()=>h3,CornerLeftUp:()=>v3,CornerLeftDown:()=>b3,CornerDownRight:()=>f3,CornerDownLeft:()=>k3,Copyright:()=>y3,Copyleft:()=>L3,CopyX:()=>R3,CopySlash:()=>M3,CopyPlus:()=>U3,CopyMinus:()=>w3,CopyCheck:()=>x3,Copy:()=>j3,CookingPot:()=>C3,Cookie:()=>E3,Contrast:()=>q3,Container:()=>S3,ContactRound:()=>L4,Contact2:()=>L4,Contact:()=>A3,Construction:()=>P3,Cone:()=>T3,ConciergeBell:()=>O3,Computer:()=>B3,Component:()=>D3,Compass:()=>F3,Command:()=>H3,Combine:()=>N3,ColumnsSettings:()=>e8,Columns4:()=>z3,Columns3Cog:()=>e8,Columns3:()=>j4,Columns2:()=>R4,Columns:()=>R4,Coins:()=>I3,Cog:()=>G3,Coffee:()=>V3,Codesandbox:()=>Q3,Codepen:()=>W3,CodeXml:()=>M4,CodeSquare:()=>G9,Code2:()=>M4,Code:()=>X3,Club:()=>Y3,Clover:()=>K3,Cloudy:()=>J3,CloudUpload:()=>U4,CloudSunRain:()=>oG,CloudSun:()=>eG,CloudSnow:()=>tG,CloudRainWind:()=>sG,CloudRain:()=>aG,CloudOff:()=>iG,CloudMoonRain:()=>lG,CloudMoon:()=>rG,CloudLightning:()=>nG,CloudHail:()=>pG,CloudFog:()=>cG,CloudDrizzle:()=>dG,CloudDownload:()=>w4,CloudCog:()=>uG,CloudCheck:()=>mG,CloudAlert:()=>_G,Cloud:()=>Z3,ClosedCaption:()=>gG,ClockPlus:()=>hG,ClockFading:()=>vG,ClockArrowUp:()=>bG,ClockArrowDown:()=>kG,ClockAlert:()=>fG,Clock9:()=>yG,Clock8:()=>LG,Clock7:()=>jG,Clock6:()=>RG,Clock5:()=>MG,Clock4:()=>UG,Clock3:()=>wG,Clock2:()=>xG,Clock12:()=>CG,Clock11:()=>EG,Clock10:()=>qG,Clock1:()=>AG,Clock:()=>$G,ClipboardX:()=>TG,ClipboardType:()=>OG,ClipboardSignature:()=>C4,ClipboardPlus:()=>PG,ClipboardPenLine:()=>C4,ClipboardPen:()=>x4,ClipboardPaste:()=>BG,ClipboardMinus:()=>DG,ClipboardList:()=>HG,ClipboardEdit:()=>x4,ClipboardCopy:()=>FG,ClipboardClock:()=>NG,ClipboardCheck:()=>zG,Clipboard:()=>SG,Clapperboard:()=>IG,Citrus:()=>GG,CircuitBoard:()=>VG,CircleX:()=>E4,CircleUserRound:()=>A4,CircleUser:()=>q4,CircleStop:()=>S4,CircleStar:()=>WG,CircleSmall:()=>XG,CircleSlashed:()=>P4,CircleSlash2:()=>P4,CircleSlash:()=>YG,CircleQuestionMark:()=>o8,CirclePower:()=>T4,CirclePoundSterling:()=>KG,CirclePlus:()=>O4,CirclePlay:()=>B4,CirclePercent:()=>D4,CirclePause:()=>H4,CircleParkingOff:()=>N4,CircleParking:()=>F4,CircleOff:()=>JG,CircleMinus:()=>z4,CircleHelp:()=>o8,CircleGauge:()=>I4,CircleFadingPlus:()=>ZG,CircleFadingArrowUp:()=>eV,CircleEqual:()=>oV,CircleEllipsis:()=>tV,CircleDotDashed:()=>sV,CircleDot:()=>aV,CircleDollarSign:()=>rV,CircleDivide:()=>G4,CircleDashed:()=>iV,CircleChevronUp:()=>V4,CircleChevronRight:()=>Q4,CircleChevronLeft:()=>W4,CircleChevronDown:()=>Y4,CircleCheckBig:()=>K4,CircleCheck:()=>X4,CircleArrowUp:()=>J4,CircleArrowRight:()=>Z4,CircleArrowOutUpRight:()=>e7,CircleArrowOutUpLeft:()=>o7,CircleArrowOutDownRight:()=>t7,CircleArrowOutDownLeft:()=>a7,CircleArrowLeft:()=>s7,CircleArrowDown:()=>r7,CircleAlert:()=>i7,Circle:()=>QG,CigaretteOff:()=>nV,Cigarette:()=>lV,Church:()=>pV,Chromium:()=>l7,Chrome:()=>l7,ChevronsUpDown:()=>cV,ChevronsUp:()=>dV,ChevronsRightLeft:()=>mV,ChevronsRight:()=>uV,ChevronsLeftRightEllipsis:()=>$V,ChevronsLeftRight:()=>gV,ChevronsLeft:()=>_V,ChevronsDownUp:()=>vV,ChevronsDown:()=>hV,ChevronUpSquare:()=>V9,ChevronUpCircle:()=>V4,ChevronUp:()=>kV,ChevronRightSquare:()=>Q9,ChevronRightCircle:()=>Q4,ChevronRight:()=>fV,ChevronLeftSquare:()=>W9,ChevronLeftCircle:()=>W4,ChevronLeft:()=>bV,ChevronLast:()=>yV,ChevronFirst:()=>LV,ChevronDownSquare:()=>X9,ChevronDownCircle:()=>Y4,ChevronDown:()=>jV,Cherry:()=>RV,ChefHat:()=>MV,CheckSquare2:()=>Y9,CheckSquare:()=>K9,CheckLine:()=>UV,CheckCircle2:()=>X4,CheckCircle:()=>K4,CheckCheck:()=>xV,Check:()=>wV,ChartSpline:()=>CV,ChartScatter:()=>n7,ChartPie:()=>p7,ChartNoAxesGantt:()=>c7,ChartNoAxesCombined:()=>EV,ChartNoAxesColumnIncreasing:()=>u7,ChartNoAxesColumnDecreasing:()=>qV,ChartNoAxesColumn:()=>d7,ChartNetwork:()=>AV,ChartLine:()=>m7,ChartGantt:()=>SV,ChartColumnStacked:()=>PV,ChartColumnIncreasing:()=>g7,ChartColumnDecreasing:()=>TV,ChartColumnBig:()=>$7,ChartColumn:()=>_7,ChartCandlestick:()=>h7,ChartBarStacked:()=>OV,ChartBarIncreasing:()=>BV,ChartBarDecreasing:()=>DV,ChartBarBig:()=>b7,ChartBar:()=>v7,ChartArea:()=>k7,Cctv:()=>HV,Cat:()=>FV,Castle:()=>NV,Cast:()=>IV,CassetteTape:()=>zV,CaseUpper:()=>GV,CaseSensitive:()=>VV,CaseLower:()=>QV,Carrot:()=>XV,CardSim:()=>WV,Caravan:()=>YV,CarTaxiFront:()=>JV,CarFront:()=>ZV,Car:()=>KV,CaptionsOff:()=>eQ,Captions:()=>f7,Cannabis:()=>oQ,CandyOff:()=>aQ,CandyCane:()=>sQ,Candy:()=>tQ,CandlestickChart:()=>h7,CameraOff:()=>rQ,Camera:()=>iQ,CalendarX2:()=>pQ,CalendarX:()=>nQ,CalendarSync:()=>cQ,CalendarSearch:()=>dQ,CalendarRange:()=>uQ,CalendarPlus2:()=>_Q,CalendarPlus:()=>mQ,CalendarOff:()=>gQ,CalendarMinus2:()=>hQ,CalendarMinus:()=>$Q,CalendarHeart:()=>vQ,CalendarFold:()=>bQ,CalendarDays:()=>kQ,CalendarCog:()=>fQ,CalendarClock:()=>yQ,CalendarCheck2:()=>jQ,CalendarCheck:()=>LQ,CalendarArrowUp:()=>RQ,CalendarArrowDown:()=>MQ,Calendar1:()=>UQ,Calendar:()=>lQ,Calculator:()=>wQ,CakeSlice:()=>CQ,Cake:()=>xQ,CableCar:()=>qQ,Cable:()=>EQ,BusFront:()=>SQ,Bus:()=>AQ,Building2:()=>TQ,Building:()=>PQ,BugPlay:()=>BQ,BugOff:()=>DQ,Bug:()=>OQ,Bubbles:()=>HQ,BrushCleaning:()=>NQ,Brush:()=>FQ,BringToFront:()=>zQ,BriefcaseMedical:()=>GQ,BriefcaseConveyorBelt:()=>VQ,BriefcaseBusiness:()=>QQ,Briefcase:()=>IQ,BrickWallShield:()=>XQ,BrickWallFire:()=>YQ,BrickWall:()=>WQ,BrainCog:()=>JQ,BrainCircuit:()=>ZQ,Brain:()=>KQ,Brackets:()=>eW,Braces:()=>y7,Boxes:()=>oW,BoxSelect:()=>N9,Box:()=>tW,BowArrow:()=>aW,BottleWine:()=>sW,BotOff:()=>iW,BotMessageSquare:()=>nW,Bot:()=>rW,BoomBox:()=>lW,BookmarkX:()=>cW,BookmarkPlus:()=>dW,BookmarkMinus:()=>uW,BookmarkCheck:()=>mW,Bookmark:()=>pW,BookX:()=>gW,BookUser:()=>$W,BookUp2:()=>vW,BookUp:()=>hW,BookType:()=>bW,BookText:()=>kW,BookTemplate:()=>L7,BookPlus:()=>fW,BookOpenText:()=>LW,BookOpenCheck:()=>jW,BookOpen:()=>yW,BookMinus:()=>RW,BookMarked:()=>MW,BookLock:()=>UW,BookKey:()=>wW,BookImage:()=>xW,BookHeart:()=>CW,BookHeadphones:()=>qW,BookDown:()=>EW,BookDashed:()=>L7,BookCopy:()=>AW,BookCheck:()=>SW,BookAudio:()=>PW,BookAlert:()=>TW,BookA:()=>OW,Book:()=>_W,Bone:()=>BW,Bomb:()=>DW,Bolt:()=>HW,Bold:()=>NW,BluetoothSearching:()=>FW,BluetoothOff:()=>IW,BluetoothConnected:()=>GW,Bluetooth:()=>zW,Blocks:()=>VW,Blinds:()=>WW,Blend:()=>XW,Bitcoin:()=>QW,Birdhouse:()=>YW,Bird:()=>KW,Biohazard:()=>JW,Binoculars:()=>ZW,Binary:()=>eX,Bike:()=>oX,BicepsFlexed:()=>tX,BetweenVerticalStart:()=>aX,BetweenVerticalEnd:()=>sX,BetweenHorizontalStart:()=>j7,BetweenHorizontalEnd:()=>R7,BetweenHorizonalStart:()=>j7,BetweenHorizonalEnd:()=>R7,BellRing:()=>iX,BellPlus:()=>lX,BellOff:()=>nX,BellMinus:()=>pX,BellElectric:()=>dX,BellDot:()=>cX,Bell:()=>rX,BeerOff:()=>mX,Beer:()=>uX,Beef:()=>gX,BedSingle:()=>$X,BedDouble:()=>vX,Bed:()=>_X,BeanOff:()=>bX,Bean:()=>hX,Beaker:()=>kX,BatteryWarning:()=>yX,BatteryPlus:()=>jX,BatteryMedium:()=>LX,BatteryLow:()=>RX,BatteryFull:()=>MX,BatteryCharging:()=>UX,Battery:()=>fX,Bath:()=>wX,Baseline:()=>xX,Barrel:()=>CX,Barcode:()=>EX,BarChartHorizontalBig:()=>b7,BarChartHorizontal:()=>v7,BarChartBig:()=>$7,BarChart4:()=>g7,BarChart3:()=>_7,BarChart2:()=>d7,BarChart:()=>u7,BanknoteX:()=>SX,BanknoteArrowUp:()=>AX,BanknoteArrowDown:()=>PX,Banknote:()=>qX,Bandage:()=>TX,Banana:()=>OX,Ban:()=>BX,BaggageClaim:()=>DX,BadgeX:()=>FX,BadgeTurkishLira:()=>NX,BadgeSwissFranc:()=>zX,BadgeRussianRuble:()=>IX,BadgeQuestionMark:()=>M7,BadgePoundSterling:()=>GX,BadgePlus:()=>VX,BadgePercent:()=>QX,BadgeMinus:()=>WX,BadgeJapaneseYen:()=>XX,BadgeInfo:()=>YX,BadgeIndianRupee:()=>KX,BadgeHelp:()=>M7,BadgeEuro:()=>JX,BadgeDollarSign:()=>ZX,BadgeCheck:()=>U7,BadgeCent:()=>eY,BadgeAlert:()=>oY,Badge:()=>HX,Backpack:()=>tY,Baby:()=>aY,Axis3d:()=>w7,Axis3D:()=>w7,Axe:()=>sY,Award:()=>rY,AudioWaveform:()=>iY,AudioLines:()=>lY,Atom:()=>nY,AtSign:()=>pY,AsteriskSquare:()=>Z9,Asterisk:()=>cY,ArrowsUpFromLine:()=>dY,ArrowUpZa:()=>x7,ArrowUpZA:()=>x7,ArrowUpWideNarrow:()=>mY,ArrowUpToLine:()=>_Y,ArrowUpSquare:()=>e6,ArrowUpRightSquare:()=>o6,ArrowUpRightFromSquare:()=>s6,ArrowUpRightFromCircle:()=>e7,ArrowUpRight:()=>gY,ArrowUpNarrowWide:()=>C7,ArrowUpLeftSquare:()=>t6,ArrowUpLeftFromSquare:()=>r6,ArrowUpLeftFromCircle:()=>o7,ArrowUpLeft:()=>$Y,ArrowUpFromLine:()=>hY,ArrowUpFromDot:()=>vY,ArrowUpDown:()=>bY,ArrowUpCircle:()=>J4,ArrowUpAz:()=>E7,ArrowUpAZ:()=>E7,ArrowUp10:()=>kY,ArrowUp01:()=>fY,ArrowUp:()=>uY,ArrowRightToLine:()=>LY,ArrowRightSquare:()=>a6,ArrowRightLeft:()=>jY,ArrowRightFromLine:()=>RY,ArrowRightCircle:()=>Z4,ArrowRight:()=>yY,ArrowLeftToLine:()=>UY,ArrowLeftSquare:()=>n6,ArrowLeftRight:()=>xY,ArrowLeftFromLine:()=>wY,ArrowLeftCircle:()=>s7,ArrowLeft:()=>MY,ArrowDownZa:()=>q7,ArrowDownZA:()=>q7,ArrowDownWideNarrow:()=>A7,ArrowDownUp:()=>EY,ArrowDownToLine:()=>qY,ArrowDownToDot:()=>AY,ArrowDownSquare:()=>p6,ArrowDownRightSquare:()=>c6,ArrowDownRightFromSquare:()=>i6,ArrowDownRightFromCircle:()=>t7,ArrowDownRight:()=>SY,ArrowDownNarrowWide:()=>PY,ArrowDownLeftSquare:()=>d6,ArrowDownLeftFromSquare:()=>l6,ArrowDownLeftFromCircle:()=>a7,ArrowDownLeft:()=>TY,ArrowDownFromLine:()=>OY,ArrowDownCircle:()=>r7,ArrowDownAz:()=>S7,ArrowDownAZ:()=>S7,ArrowDown10:()=>BY,ArrowDown01:()=>DY,ArrowDown:()=>CY,ArrowBigUpDash:()=>FY,ArrowBigUp:()=>HY,ArrowBigRightDash:()=>zY,ArrowBigRight:()=>NY,ArrowBigLeftDash:()=>GY,ArrowBigLeft:()=>IY,ArrowBigDownDash:()=>QY,ArrowBigDown:()=>VY,Armchair:()=>WY,AreaChart:()=>k7,ArchiveX:()=>YY,ArchiveRestore:()=>KY,Archive:()=>XY,Apple:()=>JY,AppWindowMac:()=>eK,AppWindow:()=>ZY,Aperture:()=>oK,Anvil:()=>tK,Antenna:()=>aK,Annoyed:()=>sK,Angry:()=>rK,Anchor:()=>iK,Amphora:()=>lK,Ampersands:()=>nK,Ampersand:()=>pK,Ambulance:()=>cK,AlignVerticalSpaceBetween:()=>dK,AlignVerticalSpaceAround:()=>uK,AlignVerticalJustifyStart:()=>mK,AlignVerticalJustifyEnd:()=>_K,AlignVerticalJustifyCenter:()=>gK,AlignVerticalDistributeStart:()=>$K,AlignVerticalDistributeEnd:()=>hK,AlignVerticalDistributeCenter:()=>vK,AlignStartVertical:()=>bK,AlignStartHorizontal:()=>kK,AlignRight:()=>d9,AlignLeft:()=>X5,AlignJustify:()=>u9,AlignHorizontalSpaceBetween:()=>fK,AlignHorizontalSpaceAround:()=>yK,AlignHorizontalJustifyStart:()=>LK,AlignHorizontalJustifyEnd:()=>jK,AlignHorizontalJustifyCenter:()=>RK,AlignHorizontalDistributeStart:()=>MK,AlignHorizontalDistributeEnd:()=>UK,AlignHorizontalDistributeCenter:()=>wK,AlignEndVertical:()=>xK,AlignEndHorizontal:()=>CK,AlignCenterVertical:()=>EK,AlignCenterHorizontal:()=>qK,AlignCenter:()=>m9,AlertTriangle:()=>r9,AlertOctagon:()=>O6,AlertCircle:()=>i7,Album:()=>AK,AlarmSmoke:()=>SK,AlarmPlus:()=>P7,AlarmMinus:()=>T7,AlarmClockPlus:()=>P7,AlarmClockOff:()=>TK,AlarmClockMinus:()=>T7,AlarmClockCheck:()=>O7,AlarmClock:()=>PK,AlarmCheck:()=>O7,Airplay:()=>OK,AirVent:()=>BK,ActivitySquare:()=>u6,Activity:()=>DK,Accessibility:()=>HK,ALargeSmall:()=>FK,AArrowUp:()=>NK,AArrowDown:()=>zK});var zK=[["path",{d:"m14 12 4 4 4-4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var NK=[["path",{d:"m14 11 4-4 4 4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var FK=[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"}],["path",{d:"M15.697 14h5.606"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var HK=[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-6 1"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6"}]];var DK=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}]];var BK=[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5"}]];var OK=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["path",{d:"m12 15 5 6H7Z"}]];var O7=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"m9 13 2 2 4-4"}]];var T7=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M9 13h6"}]];var TK=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.26 18.67 4 21"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]];var P7=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]];var PK=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}]];var SK=[["path",{d:"M11 21c0-2.5 2-2.5 2-5"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5"}]];var AK=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]];var qK=[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]];var EK=[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]];var CK=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2"}],["path",{d:"M22 22H2"}]];var xK=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2"}],["path",{d:"M22 22V2"}]];var wK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]];var UK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]];var MK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]];var RK=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M12 2v20"}]];var jK=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2"}],["path",{d:"M22 2v20"}]];var LK=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M2 2v20"}]];var yK=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var fK=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]];var kK=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2"}],["path",{d:"M22 2H2"}]];var bK=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2"}],["path",{d:"M2 2v20"}]];var vK=[["path",{d:"M22 17h-3"}],["path",{d:"M22 7h-5"}],["path",{d:"M5 17H2"}],["path",{d:"M7 7H2"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}]];var hK=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]];var $K=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]];var gK=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 12h20"}]];var _K=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 22h20"}]];var mK=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2"}],["path",{d:"M2 2h20"}]];var uK=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var dK=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]];var cK=[["path",{d:"M10 10H6"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"}],["path",{d:"M8 8v4"}],["path",{d:"M9 18h6"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var pK=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"}],["path",{d:"M16 12h3"}]];var nK=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}]];var lK=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68"}],["path",{d:"M18 22H6"}],["path",{d:"M9 2h6"}]];var iK=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var rK=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}]];var sK=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var aK=[["path",{d:"M2 12 7 2"}],["path",{d:"m7 12 5-10"}],["path",{d:"m12 12 5-10"}],["path",{d:"m17 12 5-10"}],["path",{d:"M4.5 7h15"}],["path",{d:"M12 16v6"}]];var tK=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"}]];var oK=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14.31 8 5.74 9.94"}],["path",{d:"M9.69 8h11.48"}],["path",{d:"m7.38 12 5.74-9.94"}],["path",{d:"M9.69 16 3.95 6.06"}],["path",{d:"M14.31 16H2.83"}],["path",{d:"m16.62 12-5.74 9.94"}]];var eK=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h.01"}],["path",{d:"M10 8h.01"}],["path",{d:"M14 8h.01"}]];var ZY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var JY=[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"}]];var KY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2"}],["path",{d:"m9 15 3-3 3 3"}],["path",{d:"M12 12v9"}]];var YY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]];var XY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"M10 12h4"}]];var WY=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var QY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}],["path",{d:"M9 4h6"}]];var VY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}]];var GY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}],["path",{d:"M20 9v6"}]];var IY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}]];var zY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M4 9v6"}]];var NY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}]];var FY=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}],["path",{d:"M9 20h6"}]];var HY=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}]];var DY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var BY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var S7=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var OY=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var TY=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var PY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h4"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h10"}]];var SY=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var AY=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var qY=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var EY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"m21 8-4-4-4 4"}],["path",{d:"M17 4v16"}]];var A7=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h10"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h4"}]];var q7=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var CY=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var xY=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var wY=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var UY=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var MY=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var RY=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var jY=[["path",{d:"m16 3 4 4-4 4"}],["path",{d:"M20 7H4"}],["path",{d:"m8 21-4-4 4-4"}],["path",{d:"M4 17h16"}]];var LY=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var yY=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var fY=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var kY=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var E7=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var bY=[["path",{d:"m21 16-4 4-4-4"}],["path",{d:"M17 20V4"}],["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}]];var vY=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var hY=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var $Y=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var C7=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h4"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h10"}]];var gY=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var _Y=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var mY=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h10"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h4"}]];var x7=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var uY=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var dY=[["path",{d:"m4 6 3-3 3 3"}],["path",{d:"M7 17V3"}],["path",{d:"m14 6 3-3 3 3"}],["path",{d:"M17 17V3"}],["path",{d:"M4 21h16"}]];var cY=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var pY=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"}]];var nY=[["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"}]];var lY=[["path",{d:"M2 10v3"}],["path",{d:"M6 6v11"}],["path",{d:"M10 3v18"}],["path",{d:"M14 8v7"}],["path",{d:"M18 5v13"}],["path",{d:"M22 10v3"}]];var iY=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"}]];var rY=[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"}],["circle",{cx:"12",cy:"8",r:"6"}]];var sY=[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]];var w7=[["path",{d:"M13.5 10.5 15 9"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{d:"M4.293 19.707 6 18"}],["path",{d:"m9 15 1.5-1.5"}]];var aY=[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M15 12h.01"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}],["path",{d:"M9 12h.01"}]];var tY=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}]];var oY=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var eY=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M12 7v10"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4"}]];var U7=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 12 2 2 4-4"}]];var ZX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var JX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M7 12h5"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var KX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 8h8"}],["path",{d:"M8 12h8"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8"}]];var YX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var XX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 8 3 3v7"}],["path",{d:"m12 11 3-3"}],["path",{d:"M9 12h6"}],["path",{d:"M9 16h6"}]];var WX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var QX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var VX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var GX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var M7=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17"}]];var IX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]];var zX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M11 17V8h4"}],["path",{d:"M11 12h3"}],["path",{d:"M9 16h4"}]];var NX=[["path",{d:"M11 7v10a5 5 0 0 0 5-5"}],["path",{d:"m15 8-6 3"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"}]];var FX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var HX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}]];var DX=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]];var BX=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var OX=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]];var TX=[["path",{d:"M10 10.01h.01"}],["path",{d:"M10 14.01h.01"}],["path",{d:"M14 10.01h.01"}],["path",{d:"M14 14.01h.01"}],["path",{d:"M18 6v11.5"}],["path",{d:"M6 6v12"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]];var PX=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m16 19 3 3 3-3"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 16v6"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var SX=[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m17 17 5 5"}],["path",{d:"M18 12h.01"}],["path",{d:"m22 17-5 5"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var AX=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 22v-6"}],["path",{d:"m22 19-3-3-3 3"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var qX=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]];var EX=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var CX=[["path",{d:"M10 3a41 41 0 0 0 0 18"}],["path",{d:"M14 3a41 41 0 0 1 0 18"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"}],["path",{d:"M3.84 17h16.32"}],["path",{d:"M3.84 7h16.32"}]];var xX=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var wX=[["path",{d:"M10 4 8 6"}],["path",{d:"M17 19v2"}],["path",{d:"M2 12h20"}],["path",{d:"M7 19v2"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}]];var UX=[["path",{d:"m11 7-3 5h4l-3 5"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"}],["path",{d:"M22 14v-4"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"}]];var MX=[["path",{d:"M10 10v4"}],["path",{d:"M14 10v4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 10v4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var RX=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var jX=[["path",{d:"M10 9v6"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"}],["path",{d:"M22 14v-4"}],["path",{d:"M7 12h6"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"}]];var LX=[["path",{d:"M10 14v-4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var yX=[["path",{d:"M10 17h.01"}],["path",{d:"M10 7v6"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}]];var fX=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var kX=[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]];var bX=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var vX=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]];var hX=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]];var $X=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]];var gX=[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5"}]];var _X=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var mX=[["path",{d:"M13 13v5"}],["path",{d:"M17 11.47V8"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"}],["path",{d:"M9 14.6V18"}]];var uX=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]];var dX=[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9"}],["path",{d:"M9 9h.01"}],["circle",{cx:"20",cy:"16",r:"2"}],["circle",{cx:"9",cy:"9",r:"7"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2"}]];var cX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665"}],["circle",{cx:"18",cy:"8",r:"3"}]];var pX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"}]];var nX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"}]];var lX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M18 5v6"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"}]];var iX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8"}]];var rX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}]];var R7=[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1"}],["path",{d:"m22 15-3-3 3-3"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1"}]];var j7=[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1"}],["path",{d:"m2 9 3 3-3 3"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1"}]];var sX=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1"}],["path",{d:"m9 22 3-3 3 3"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1"}]];var aX=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1"}],["path",{d:"m15 2-3 3-3-3"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1"}]];var tX=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15"}]];var oX=[["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"15",cy:"5",r:"1"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2"}]];var eX=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2"}],["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}]];var ZW=[["path",{d:"M10 10h4"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"}],["path",{d:"M 22 16 L 2 16"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"}]];var JW=[["circle",{cx:"12",cy:"11.9",r:"2"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"}],["path",{d:"m8.9 10.1 1.4.8"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"}],["path",{d:"m15.1 10.1-1.4.8"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"}],["path",{d:"M12 13.9v1.6"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5"}]];var KW=[["path",{d:"M16 7h.01"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"}],["path",{d:"m20 7 2 .5-2 .5"}],["path",{d:"M10 18v3"}],["path",{d:"M14 17.75V21"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61"}]];var YW=[["path",{d:"M12 18v4"}],["path",{d:"m17 18 1.956-11.468"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"}],["path",{d:"M4 18h16"}],["path",{d:"M7 18 5.044 6.532"}],["circle",{cx:"12",cy:"10",r:"2"}]];var XW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var WW=[["path",{d:"M3 3h18"}],["path",{d:"M20 7H8"}],["path",{d:"M20 11H8"}],["path",{d:"M10 19h10"}],["path",{d:"M8 15h12"}],["path",{d:"M4 3v14"}],["circle",{cx:"4",cy:"19",r:"2"}]];var QW=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]];var VW=[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1"}]];var GW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12"}]];var IW=[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]];var zW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]];var NW=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"}]];var FW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]];var HW=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["circle",{cx:"12",cy:"12",r:"4"}]];var DW=[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"}],["path",{d:"m22 2-1.5 1.5"}]];var BW=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"}]];var OW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m8 13 4-7 4 7"}],["path",{d:"M9.1 11h5.7"}]];var TW=[["path",{d:"M12 13h.01"}],["path",{d:"M12 6v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var PW=[["path",{d:"M12 6v7"}],["path",{d:"M16 8v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 8v3"}]];var SW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 9.5 2 2 4-4"}]];var AW=[["path",{d:"M5 7a2 2 0 0 0-2 2v11"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"}]];var L7=[["path",{d:"M12 17h1.5"}],["path",{d:"M12 22h1.5"}],["path",{d:"M12 2h1.5"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5"}],["path",{d:"M20 14v3h-2.5"}],["path",{d:"M20 8.5V10"}],["path",{d:"M4 10V8.5"}],["path",{d:"M4 19.5V14"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8"}]];var qW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var EW=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3 3 3-3"}]];var CW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var xW=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"10",cy:"8",r:"2"}]];var wW=[["path",{d:"m19 3 1 1"}],["path",{d:"m20 2-4.5 4.5"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844"}],["circle",{cx:"14",cy:"8",r:"2"}]];var UW=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1"}]];var MW=[["path",{d:"M10 2v8l3-3 3 3V2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var RW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var jW=[["path",{d:"M12 21V7"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"}]];var LW=[["path",{d:"M12 7v14"}],["path",{d:"M16 12h2"}],["path",{d:"M16 8h2"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}],["path",{d:"M6 12h2"}],["path",{d:"M6 8h2"}]];var yW=[["path",{d:"M12 7v14"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}]];var fW=[["path",{d:"M12 7v6"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var kW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h6"}]];var bW=[["path",{d:"M10 13h4"}],["path",{d:"M12 6v7"}],["path",{d:"M16 8V6H8v2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var vW=[["path",{d:"M12 13V7"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"}],["path",{d:"m9 10 3-3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var hW=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3-3 3 3"}]];var $W=[["path",{d:"M15 13a3 3 0 1 0-6 0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"12",cy:"8",r:"2"}]];var gW=[["path",{d:"m14.5 7-5 5"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9.5 7 5 5"}]];var _W=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var mW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m9 10 2 2 4-4"}]];var uW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var dW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var cW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var pW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]];var nW=[["path",{d:"M12 6V2H8"}],["path",{d:"M15 11v2"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"}],["path",{d:"M9 11v2"}]];var lW=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M8 8v1"}],["path",{d:"M12 8v1"}],["path",{d:"M16 8v1"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2"}],["circle",{cx:"8",cy:"15",r:"2"}],["circle",{cx:"16",cy:"15",r:"2"}]];var iW=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M22 22 2 2"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"}],["path",{d:"M9 13v2"}],["path",{d:"M9.67 4H12v2.33"}]];var rW=[["path",{d:"M12 8V4H8"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M15 13v2"}],["path",{d:"M9 13v2"}]];var sW=[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"}]];var aW=[["path",{d:"M17 3h4v4"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"}],["path",{d:"M9.707 14.293 21 3"}]];var tW=[["path",{d:"M21 8a2 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"}],["path",{d:"m3.3 7 8.7 5 8.7-5"}],["path",{d:"M12 22V12"}]];var oW=[["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"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["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"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["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"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]];var y7=[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]];var eW=[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]];var ZQ=[["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"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516"}],["path",{d:"M12 13h4"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1"}],["path",{d:"M12 8h8"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2"}],["circle",{cx:"16",cy:"13",r:".5"}],["circle",{cx:"18",cy:"3",r:".5"}],["circle",{cx:"20",cy:"21",r:".5"}],["circle",{cx:"20",cy:"8",r:".5"}]];var JQ=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"m10.852 9.228-.383-.923"}],["path",{d:"m13.148 14.772.382.924"}],["path",{d:"m13.531 8.305-.383.923"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}],["circle",{cx:"12",cy:"12",r:"3"}]];var KQ=[["path",{d:"M12 18V5"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77"}]];var YQ=[["path",{d:"M16 3v2.107"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"}],["path",{d:"M3 15h5.253"}],["path",{d:"M3 9h8.228"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var XQ=[["path",{d:"M12 9v1.258"}],["path",{d:"M16 3v5.46"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"}],["path",{d:"M3 15h7"}],["path",{d:"M3 9h12.142"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var WQ=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 9v6"}],["path",{d:"M16 15v6"}],["path",{d:"M16 3v6"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var QQ=[["path",{d:"M12 12h.01"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var VQ=[["path",{d:"M10 20v2"}],["path",{d:"M14 20v2"}],["path",{d:"M18 20v2"}],["path",{d:"M21 20H3"}],["path",{d:"M6 20v2"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2"}]];var GQ=[["path",{d:"M12 11v4"}],["path",{d:"M14 13h-4"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M18 6v14"}],["path",{d:"M6 6v14"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var IQ=[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var zQ=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"}]];var NQ=[["path",{d:"m16 22-1-4"}],["path",{d:"M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1"}],["path",{d:"M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z"}],["path",{d:"m8 22 1-4"}]];var FQ=[["path",{d:"m11 10 3 3"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]];var HQ=[["path",{d:"M7.2 14.8a2 2 0 0 1 2 2"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5"}]];var DQ=[["path",{d:"M12 20v-8"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-3.34"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M6 13H2"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13"}]];var BQ=[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var OQ=[["path",{d:"M12 20v-9"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-4"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var TQ=[["path",{d:"M10 12h4"}],["path",{d:"M10 8h4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"}]];var PQ=[["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M8 6h.01"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var SQ=[["path",{d:"M4 6 2 7"}],["path",{d:"M10 6h4"}],["path",{d:"m22 7-2-1"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M6 19v2"}],["path",{d:"M18 21v-2"}]];var AQ=[["path",{d:"M8 6v6"}],["path",{d:"M15 6v6"}],["path",{d:"M2 12h19.6"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"}],["circle",{cx:"7",cy:"18",r:"2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}]];var qQ=[["path",{d:"M10 3h.01"}],["path",{d:"M14 2h.01"}],["path",{d:"m2 9 20-5"}],["path",{d:"M12 12V6.5"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M4 17h16"}]];var EQ=[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"}],["path",{d:"M17 21v-2"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"}],["path",{d:"M21 21v-2"}],["path",{d:"M3 5V3"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"}],["path",{d:"M7 5V3"}]];var CQ=[["path",{d:"M16 13H3"}],["path",{d:"M16 17H3"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"}],["circle",{cx:"9",cy:"7",r:"2"}]];var xQ=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v3"}],["path",{d:"M12 8v3"}],["path",{d:"M17 8v3"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]];var wQ=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]];var UQ=[["path",{d:"M11 14h1v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var MQ=[["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 14v8"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var RQ=[["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 22v-8"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var jQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m16 20 2 2 4-4"}]];var LQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m9 16 2 2 4-4"}]];var yQ=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 2v4"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M3 10h5"}],["path",{d:"M8 2v4"}],["circle",{cx:"16",cy:"16",r:"6"}]];var fQ=[["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m15.228 19.148-.923.383"}],["path",{d:"M16 2v4"}],["path",{d:"m16.47 14.305.382.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var kQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]];var bQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z"}],["path",{d:"M3 10h18"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4"}]];var vQ=[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var hQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}]];var $Q=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var gQ=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["path",{d:"m2 2 20 20"}]];var _Q=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}],["path",{d:"M12 14v4"}]];var mQ=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M19 16v6"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var uQ=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]];var dQ=[["path",{d:"M16 2v4"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var cQ=[["path",{d:"M11 10v4h4"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M16 2v4"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M21 22v-4h-4"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"}],["path",{d:"M3 10h4"}],["path",{d:"M8 2v4"}]];var pQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m17 22 5-5"}],["path",{d:"m17 17 5 5"}]];var nQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m14 14-4 4"}],["path",{d:"m10 14 4 4"}]];var lQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var iQ=[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"}],["circle",{cx:"12",cy:"13",r:"3"}]];var rQ=[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"}]];var sQ=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"}],["path",{d:"M17.75 7 15 2.1"}],["path",{d:"M10.9 4.8 13 9"}],["path",{d:"m7.9 9.7 2 4.4"}],["path",{d:"M4.9 14.7 7 18.9"}]];var aQ=[["path",{d:"M10 10v7.9"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053"}],["path",{d:"M14 6.1v2.243"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var tQ=[["path",{d:"M10 7v10.9"}],["path",{d:"M14 6.1V17"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var oQ=[["path",{d:"M12 22v-4"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"}]];var eQ=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5"}],["path",{d:"M17 11h-.5"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7 11h4"}],["path",{d:"M7 15h2.5"}]];var f7=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var ZV=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var JV=[["path",{d:"M10 2h4"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var KV=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"}],["circle",{cx:"7",cy:"17",r:"2"}],["path",{d:"M9 17h6"}],["circle",{cx:"17",cy:"17",r:"2"}]];var YV=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"}],["circle",{cx:"8",cy:"19",r:"2"}]];var XV=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]];var WV=[["path",{d:"M12 14v4"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M8 14h8"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1"}]];var QV=[["path",{d:"M10 9v7"}],["path",{d:"M14 6v10"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5"}]];var VV=[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M22 9v7"}],["path",{d:"M3.304 13h6.392"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5"}]];var GV=[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var IV=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20"}]];var zV=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["circle",{cx:"8",cy:"10",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"10",r:"2"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"}]];var NV=[["path",{d:"M10 5V3"}],["path",{d:"M14 5V3"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{d:"M18 3v8"}],["path",{d:"M18 5H6"}],["path",{d:"M22 11H2"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{d:"M6 3v8"}]];var FV=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]];var HV=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]];var k7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"}]];var b7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var DV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var BV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var OV=[["path",{d:"M11 13v4"}],["path",{d:"M15 5v4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var v7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var h7=[["path",{d:"M9 5v4"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1"}],["path",{d:"M9 15v2"}],["path",{d:"M17 3v2"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1"}],["path",{d:"M17 13v3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var $7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var TV=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var g7=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var PV=[["path",{d:"M11 13H7"}],["path",{d:"M19 9h-4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var _7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var SV=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var m7=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var AV=[["path",{d:"m13.11 7.664 1.78 2.672"}],["path",{d:"m14.162 12.788-3.324 1.424"}],["path",{d:"m20 4-6.06 1.515"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["circle",{cx:"12",cy:"6",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"9",cy:"15",r:"2"}]];var qV=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var u7=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var d7=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var c7=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var EV=[["path",{d:"M12 16v5"}],["path",{d:"M16 14v7"}],["path",{d:"M20 10v11"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"}],["path",{d:"M4 18v3"}],["path",{d:"M8 14v7"}]];var p7=[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}]];var n7=[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var CV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"}]];var xV=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var wV=[["path",{d:"M20 6 9 17l-5-5"}]];var UV=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var MV=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"}],["path",{d:"M6 17h12"}]];var RV=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]];var jV=[["path",{d:"m6 9 6 6 6-6"}]];var LV=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var yV=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var fV=[["path",{d:"m9 18 6-6-6-6"}]];var kV=[["path",{d:"m18 15-6-6-6 6"}]];var bV=[["path",{d:"m15 18-6-6 6-6"}]];var vV=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var hV=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var $V=[["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"m17 7 5 5-5 5"}],["path",{d:"m7 7-5 5 5 5"}],["path",{d:"M8 12h.01"}]];var gV=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var _V=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var mV=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var uV=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var dV=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var cV=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var pV=[["path",{d:"M10 9h4"}],["path",{d:"M12 7v5"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"}]];var l7=[["path",{d:"M10.88 21.94 15.46 14"}],["path",{d:"M21.17 8H12"}],["path",{d:"M3.95 6.06 8.54 14"}],["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}]];var nV=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var lV=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var i7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var r7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var s7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var a7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var t7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var o7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var e7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var Z4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var J4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var K4=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var Y4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var X4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var W4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var Q4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var V4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var iV=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7"}]];var G4=[["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var rV=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var sV=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"}],["circle",{cx:"12",cy:"12",r:"1"}]];var aV=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var tV=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var oV=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var eV=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var ZG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 8v8"}],["path",{d:"M16 12H8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var I4=[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M13.4 10.6 19 5"}]];var z4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var JG=[["path",{d:"m2 2 20 20"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92"}]];var N4=[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307"}],["path",{d:"M13 13H9"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956"}],["path",{d:"M9 17V9"}]];var F4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var H4=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var D4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var B4=[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var O4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var KG=[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0"}],["path",{d:"M8 12h4"}],["path",{d:"M8 16h7"}],["circle",{cx:"12",cy:"12",r:"10"}]];var T4=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var o8=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var P4=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var YG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var XG=[["circle",{cx:"12",cy:"12",r:"6"}]];var WG=[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var S4=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var A4=[["path",{d:"M18 20a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"10",r:"4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var q4=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"}]];var E4=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var QG=[["circle",{cx:"12",cy:"12",r:"10"}]];var VG=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4"}],["circle",{cx:"15",cy:"15",r:"2"}]];var GG=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 17.85V10H6.15"}]];var IG=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z"}],["path",{d:"m6.2 5.3 3.1 3.9"}],["path",{d:"m12.4 3.4 3.1 4"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"}]];var zG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"m9 14 2 2 4-4"}]];var NG=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["circle",{cx:"16",cy:"16",r:"6"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var FG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]];var HG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]];var DG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 14h6"}]];var BG=[["path",{d:"M11 14h10"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344"}],["path",{d:"m17 18 4-4-4-4"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var C4=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M8 18h1"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var x4=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var OG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]];var TG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]];var PG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 14h6"}],["path",{d:"M12 17v-6"}]];var SG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}]];var AG=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var qG=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var EG=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var CG=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var xG=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var wG=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var UG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var MG=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var RG=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var jG=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var LG=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var yG=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var fG=[["path",{d:"M12 6v6l4 2"}],["path",{d:"M20 12v5"}],["path",{d:"M20 21h.01"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16"}]];var kG=[["path",{d:"M12 6v6l2 1"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767"}],["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M18 14v8"}]];var bG=[["path",{d:"M12 6v6l1.56.78"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588"}],["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M18 22v-8"}]];var vG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 6v6l4 2"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var hG=[["path",{d:"M12 6v6l3.644 1.822"}],["path",{d:"M16 19h6"}],["path",{d:"M19 16v6"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653"}]];var $G=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gG=[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var _G=[["path",{d:"M12 12v4"}],["path",{d:"M12 20h.01"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708"}]];var mG=[["path",{d:"m17 15-5.5 5.5L9 18"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742"}]];var uG=[["path",{d:"m10.852 19.772-.383.924"}],["path",{d:"m13.148 14.228.383-.923"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 15.852.923-.383"}],["path",{d:"m14.772 18.148.923.383"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"}],["path",{d:"m9.228 15.852-.923-.383"}],["path",{d:"m9.228 18.148-.923.383"}]];var w4=[["path",{d:"M12 13v8l-4-4"}],["path",{d:"m12 21 4-4"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"}]];var dG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]];var cG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]];var pG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]];var nG=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]];var lG=[["path",{d:"M11 20v2"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M7 19v2"}]];var iG=[["path",{d:"m2 2 20 20"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07"}]];var rG=[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}]];var sG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]];var aG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]];var tG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]];var oG=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]];var eG=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]];var U4=[["path",{d:"M12 13v8"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m8 17 4-4 4 4"}]];var Z3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var J3=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5"}]];var K3=[["path",{d:"M16.17 7.83 2 22"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"}],["path",{d:"m7.83 7.83 8.34 8.34"}]];var Y3=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"}],["path",{d:"M12 17.66L12 22"}]];var M4=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var X3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var W3=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5"}],["polyline",{points:"22 8.5 12 15.5 2 8.5"}],["polyline",{points:"2 15.5 12 8.5 22 15.5"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5"}]];var Q3=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12"}]];var V3=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"}],["path",{d:"M6 2v2"}]];var G3=[["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m11 13.73-4 6.93"}],["path",{d:"M12 22v-2"}],["path",{d:"M12 2v2"}],["path",{d:"M14 12h8"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["circle",{cx:"12",cy:"12",r:"2"}],["circle",{cx:"12",cy:"12",r:"8"}]];var I3=[["circle",{cx:"8",cy:"8",r:"6"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18"}],["path",{d:"M7 6h1v4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82"}]];var R4=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var e8=[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"}],["path",{d:"m14.3 19.6 1-.4"}],["path",{d:"M15 3v7.5"}],["path",{d:"m15.2 16.9-.9-.3"}],["path",{d:"m16.6 21.7.3-.9"}],["path",{d:"m16.8 15.3-.4-1"}],["path",{d:"m19.1 15.2.3-.9"}],["path",{d:"m19.6 21.7-.4-1"}],["path",{d:"m20.7 16.8 1-.4"}],["path",{d:"m21.7 19.4-.9-.3"}],["path",{d:"M9 3v18"}],["circle",{cx:"18",cy:"18",r:"3"}]];var j4=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var z3=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7.5 3v18"}],["path",{d:"M12 3v18"}],["path",{d:"M16.5 3v18"}]];var N3=[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"m7 15 3 3"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1"}]];var F3=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var H3=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"}]];var D3=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}]];var B3=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h2"}],["path",{d:"M12 18h6"}]];var O3=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]];var T3=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3"}]];var P3=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1"}],["path",{d:"M17 14v7"}],["path",{d:"M7 14v7"}],["path",{d:"M17 3v3"}],["path",{d:"M7 3v3"}],["path",{d:"M10 14 2.3 6.3"}],["path",{d:"m14 6 7.7 7.7"}],["path",{d:"m8 6 8 8"}]];var L4=[["path",{d:"M16 2v2"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"12",r:"4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var S3=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"}],["path",{d:"M10 21.9V14L2.1 9.1"}],["path",{d:"m10 14 11.9-6.9"}],["path",{d:"M14 19.8v-8.1"}],["path",{d:"M18 17.5V9.4"}]];var A3=[["path",{d:"M16 2v2"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"11",r:"3"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var q3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var E3=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]];var C3=[["path",{d:"M2 12h20"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"m4 8 16-4"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"}]];var x3=[["path",{d:"m12 15 2 2 4-4"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var w3=[["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var U3=[["line",{x1:"15",x2:"15",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var M3=[["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var R3=[["line",{x1:"12",x2:"18",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var j3=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var L3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var y3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var f3=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var k3=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var b3=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var v3=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var h3=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var $3=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var g3=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var _3=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var m3=[["path",{d:"M12 20v2"}],["path",{d:"M12 2v2"}],["path",{d:"M17 20v2"}],["path",{d:"M17 2v2"}],["path",{d:"M2 12h2"}],["path",{d:"M2 17h2"}],["path",{d:"M2 7h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 17h2"}],["path",{d:"M20 7h2"}],["path",{d:"M7 20v2"}],["path",{d:"M7 2v2"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var u3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}]];var d3=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var c3=[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"}]];var p3=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]];var n3=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"}]];var l3=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18"}]];var i3=[["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"}],["path",{d:"M5 21h14"}]];var r3=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z"}],["path",{d:"M10 22v-8L2.25 9.15"}],["path",{d:"m10 14 11.77-6.87"}]];var s3=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]];var a3=[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18"}]];var t3=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var o3=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M2 6h4"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"}]];var e3=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84"}],["path",{d:"M21 5V8"}],["path",{d:"M21 12L18 17H22L19 22"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87"}]];var ZI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69"}],["path",{d:"M21 9.3V5"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88"}],["path",{d:"M12 12v4h4"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"}]];var JI=[["path",{d:"m13 21-3-3 3-3"}],["path",{d:"M20 18H10"}],["path",{d:"M3 11h.01"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var KI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5"}],["path",{d:"M3 12A9 3 0 0 0 21 12"}]];var YI=[["path",{d:"M10 18h10"}],["path",{d:"m17 21 3-3-3-3"}],["path",{d:"M3 11h.01"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var XI=[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0"}],["circle",{cx:"12",cy:"4",r:"2"}]];var WI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"}],["path",{d:"m12 9 6 6"}],["path",{d:"m18 9-6 6"}]];var QI=[["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86"}],["path",{d:"m6.41 6.41 11.18 11.18"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86"}]];var VI=[["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var y4=[["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"}],["path",{d:"M9.2 9.2h.01"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"M14.7 14.8h.01"}]];var GI=[["path",{d:"M12 8v8"}],["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var II=[["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"}]];var zI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]];var NI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]];var FI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]];var HI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]];var DI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]];var BI=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]];var OI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]];var TI=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var PI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var SI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2"}]];var AI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var qI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var EI=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var CI=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3"}],["path",{d:"m2 2 20 20"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"}]];var xI=[["path",{d:"m10 16 1.5 1.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}]];var wI=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var UI=[["path",{d:"M11.25 16.25h1.5L12 17z"}],["path",{d:"M16 14v.5"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"}],["path",{d:"M8 14v.5"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}]];var MI=[["line",{x1:"12",x2:"12",y1:"2",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]];var RI=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"}],["circle",{cx:"12",cy:"12",r:"3"}]];var jI=[["path",{d:"M10 12h.01"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h8"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}]];var LI=[["path",{d:"M10 12h.01"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h20"}]];var yI=[["path",{d:"M11 20H2"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{d:"M14 12h.01"}],["path",{d:"M22 20h-3"}]];var fI=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var kI=[["path",{d:"M12 15V3"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{d:"m7 10 5 5 5-5"}]];var bI=[["path",{d:"m12.99 6.74 1.93 3.44"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0"}],["path",{d:"m21 21-2.16-3.84"}],["path",{d:"m3 21 8.02-14.26"}],["circle",{cx:"12",cy:"5",r:"2"}]];var vI=[["path",{d:"M10 11h.01"}],["path",{d:"M14 6h.01"}],["path",{d:"M18 6h.01"}],["path",{d:"M6.5 13.1h.01"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"}]];var hI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72"}]];var $I=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"}],["path",{d:"M18 6h4"}],["path",{d:"m5 10-2 8"}],["path",{d:"m7 18 2-8"}]];var gI=[["path",{d:"M10 10 7 7"}],["path",{d:"m10 14-3 3"}],["path",{d:"m14 10 3-3"}],["path",{d:"m14 14 3 3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1"}]];var _I=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"}]];var mI=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]];var uI=[["path",{d:"m2 2 8 8"}],["path",{d:"m22 2-8 8"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5"}],["path",{d:"M7 13.4v7.9"}],["path",{d:"M12 14v8"}],["path",{d:"M17 13.4v7.9"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9"}]];var dI=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]];var cI=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"}]];var pI=[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"}],["path",{d:"m2.5 21.5 1.4-1.4"}],["path",{d:"m20.1 3.9 1.4-1.4"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"}],["path",{d:"m9.6 14.4 4.8-4.8"}]];var nI=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var lI=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var iI=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]];var f4=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["circle",{cx:"12",cy:"12",r:"10"}]];var rI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var sI=[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]];var aI=[["path",{d:"m2 2 20 20"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"}]];var tI=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var k4=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var b4=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var oI=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}]];var eI=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19"}]];var Zz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var Jz=[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"}],["path",{d:"m5.082 11.09 8.828 8.828"}]];var Kz=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"}],["path",{d:"M6 8v1"}],["path",{d:"M10 8v1"}],["path",{d:"M14 8v1"}],["path",{d:"M18 8v1"}]];var Yz=[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]];var Xz=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 7h11"}],["path",{d:"m9 11-2 3h3l-2 3"}]];var Wz=[["path",{d:"m15 15 6 6"}],["path",{d:"m15 9 6-6"}],["path",{d:"M21 16v5h-5"}],["path",{d:"M21 8V3h-5"}],["path",{d:"M3 16v5h5"}],["path",{d:"m3 21 6-6"}],["path",{d:"M3 8V3h5"}],["path",{d:"M9 9 3 3"}]];var Qz=[["path",{d:"m15 18-.722-3.25"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0"}],["path",{d:"m20 15-1.726-2.05"}],["path",{d:"m4 15 1.726-2.05"}],["path",{d:"m9 18 .722-3.25"}]];var Vz=[["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"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["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"}],["path",{d:"m2 2 20 20"}]];var Gz=[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]];var Iz=[["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"}],["circle",{cx:"12",cy:"12",r:"3"}]];var zz=[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}]];var Nz=[["path",{d:"M12 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M8 16h.01"}]];var Fz=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]];var Hz=[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"}]];var Dz=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"}],["path",{d:"M16 8 2 22"}],["path",{d:"M17.5 15H9"}]];var Bz=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M6 8h4"}],["path",{d:"M6 18h4"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M14 8h4"}],["path",{d:"M14 18h4"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}]];var Oz=[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M12 2v4"}],["path",{d:"m6.8 15-3.5 2"}],["path",{d:"m20.7 7-3.5 2"}],["path",{d:"M6.8 9 3.3 7"}],["path",{d:"m20.7 17-3.5-2"}],["path",{d:"m9 22 3-8 3 8"}],["path",{d:"M8 22h8"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0"}]];var Tz=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}]];var Pz=[["path",{d:"M10 12v-1"}],["path",{d:"M10 18v-2"}],["path",{d:"M10 7V6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01"}],["circle",{cx:"10",cy:"20",r:"2"}]];var Sz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"3",cy:"17",r:"1"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3"}],["circle",{cx:"9",cy:"17",r:"1"}]];var Az=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0"}]];var qz=[["path",{d:"m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"10",r:"3"}]];var v4=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 18 4-4"}],["path",{d:"M8 10v8h8"}]];var Ez=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z"}],["path",{d:"M7 17v5"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8"}]];var Cz=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["circle",{cx:"5",cy:"14",r:"3"}]];var h4=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-2"}],["path",{d:"M12 18v-4"}],["path",{d:"M16 18v-6"}]];var $4=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-1"}],["path",{d:"M12 18v-6"}],["path",{d:"M16 18v-3"}]];var g4=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"}]];var _4=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]];var xz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m3 15 2 2 4-4"}]];var wz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m9 15 2 2 4-4"}]];var Uz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M8 14v2.2l1.6 1"}],["circle",{cx:"8",cy:"16",r:"6"}]];var Mz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m5 12-3 3 3 3"}],["path",{d:"m9 18 3-3-3-3"}]];var Rz=[["path",{d:"M10 12.5 8 15l2 2.5"}],["path",{d:"m14 12.5 2 2.5-2 2.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}]];var m4=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m2.305 15.53.923-.382"}],["path",{d:"m3.228 12.852-.924-.383"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5"}],["path",{d:"m4.852 11.228-.383-.923"}],["path",{d:"m4.852 16.772-.383.924"}],["path",{d:"m7.148 11.228.383-.923"}],["path",{d:"m7.53 17.696-.382-.924"}],["path",{d:"m8.772 12.852.923-.383"}],["path",{d:"m8.772 15.148.923.383"}],["circle",{cx:"6",cy:"14",r:"3"}]];var jz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M9 10h6"}],["path",{d:"M12 13V7"}],["path",{d:"M9 17h6"}]];var Lz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2"}],["path",{d:"M10 12h2v6"}],["path",{d:"M10 18h4"}]];var yz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]];var fz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2.62 13.8A2.25 2.25 0 1 1 6 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M4 6.005V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-1.9-1.376"}]];var kz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"10",cy:"12",r:"2"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"}]];var bz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]];var vz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var hz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var $z=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"m10 10-4.5 4.5"}],["path",{d:"m9 11 1 1"}]];var gz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["circle",{cx:"10",cy:"16",r:"2"}],["path",{d:"m16 10-4.5 4.5"}],["path",{d:"m15 11 1 1"}]];var _z=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2"}]];var mz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2"}]];var uz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}]];var dz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}]];var cz=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4"}],["path",{d:"M8 18v-7.7L16 9v7"}],["circle",{cx:"14",cy:"16",r:"2"}],["circle",{cx:"6",cy:"18",r:"2"}]];var pz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6"}],["path",{d:"m5 11-3 3"}],["path",{d:"m5 17-3-3h10"}]];var u4=[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M8 18h1"}]];var d4=[["path",{d:"M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var c4=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"}]];var nz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}],["path",{d:"M12 18v-6"}]];var lz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}],["path",{d:"M6 12v6"}]];var p4=[["path",{d:"M12 17h.01"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]];var iz=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}]];var rz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.3 16.3 15 18"}]];var sz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 18-1.5-1.5"}],["circle",{cx:"5",cy:"14",r:"3"}]];var az=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];var tz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var oz=[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"}]];var ez=[["path",{d:"m10 18 3-3-3-3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}]];var ZN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];var JN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]];var KN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 13v-1h6v1"}],["path",{d:"M5 12v6"}],["path",{d:"M4 18h2"}]];var YN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];var XN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]];var WN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 18a3 3 0 1 0-6 0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"13",r:"2"}]];var n4=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1"}],["path",{d:"m10 13.843 3.033-1.755a.645.645 0 0 1 .967.56v4.704a.645.645 0 0 1-.967.56L10 16.157"}]];var QN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 15h.01"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{d:"M15 12a5 5 0 0 1 0 6"}]];var VN=[["path",{d:"M11 11a5 5 0 0 1 0 6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z"}]];var GN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var IN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 12.5-5 5"}],["path",{d:"m3 12.5 5 5"}]];var zN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m14.5 12.5-5 5"}],["path",{d:"m9.5 12.5 5 5"}]];var NN=[["path",{d:"M15 2a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 21 8v7a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M15 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"}]];var FN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}]];var HN=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 3v18"}],["path",{d:"M3 7.5h4"}],["path",{d:"M3 12h18"}],["path",{d:"M3 16.5h4"}],["path",{d:"M17 3v18"}],["path",{d:"M17 7.5h4"}],["path",{d:"M17 16.5h4"}]];var DN=[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M2 12a10 10 0 0 1 18-6"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2"}]];var BN=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"}],["path",{d:"M9 18h8"}],["path",{d:"M18 3h-3"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11"}],["path",{d:"M5 13h4"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"}]];var ON=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"}]];var TN=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var PN=[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 22V4"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"}]];var SN=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"}],["path",{d:"M18 12v.5"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"}]];var AN=[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"}]];var qN=[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"}]];var EN=[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}]];var CN=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"}],["path",{d:"m5 22 14-4"}],["path",{d:"m5 18 14 4"}]];var xN=[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"}]];var wN=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var UN=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12"}]];var MN=[["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"}],["path",{d:"M6.453 15H15"}],["path",{d:"M8.5 2h7"}]];var RN=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"}],["path",{d:"M6.453 15h11.094"}],["path",{d:"M8.5 2h7"}]];var jN=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var LN=[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var yN=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var fN=[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var kN=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var bN=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]];var vN=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"}],["path",{d:"M12 7.5V9"}],["path",{d:"M7.5 12H9"}],["path",{d:"M16.5 12H15"}],["path",{d:"M12 16.5V15"}],["path",{d:"m8 8 1.88 1.88"}],["path",{d:"M14.12 9.88 16 8"}],["path",{d:"m8 16 1.88-1.88"}],["path",{d:"M14.12 14.12 16 16"}]];var hN=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var $N=[["path",{d:"M2 12h6"}],["path",{d:"M22 12h-6"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 9-3 3 3 3"}],["path",{d:"m5 15 3-3-3-3"}]];var gN=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3-3-3 3"}],["path",{d:"m15 5-3 3-3-3"}]];var _N=[["circle",{cx:"15",cy:"19",r:"2"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 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 2h5.1"}],["path",{d:"M15 11v-1"}],["path",{d:"M15 17v-2"}]];var mN=[["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"}],["path",{d:"m9 13 2 2 4-4"}]];var uN=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M7 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 2"}],["circle",{cx:"16",cy:"16",r:"6"}]];var dN=[["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"}],["path",{d:"M2 10h20"}]];var cN=[["path",{d:"M10 10.5 8 13l2 2.5"}],["path",{d:"m14 10.5 2 2.5-2 2.5"}],["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"}]];var l4=[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"}],["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"18",cy:"18",r:"3"}]];var pN=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"1"}]];var nN=[["path",{d:"M9 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 2v5"}],["circle",{cx:"13",cy:"12",r:"2"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8"}],["circle",{cx:"20",cy:"19",r:"2"}]];var lN=[["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"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]];var iN=[["circle",{cx:"12",cy:"13",r:"2"}],["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"}],["path",{d:"M14 13h3"}],["path",{d:"M7 13h3"}]];var rN=[["path",{d:"M10.638 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 2v3.417"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var sN=[["path",{d:"M2 9V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]];var aN=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M8 10v4"}],["path",{d:"M12 10v2"}],["path",{d:"M16 10v6"}]];var tN=[["circle",{cx:"16",cy:"20",r:"2"}],["path",{d:"M10 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 2v2"}],["path",{d:"m22 14-4.5 4.5"}],["path",{d:"m21 15 1 1"}]];var oN=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1"}],["path",{d:"M10 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 2v2.5"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]];var eN=[["path",{d:"M9 13h6"}],["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"}]];var ZF=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}],["circle",{cx:"14",cy:"15",r:"1"}]];var JF=[["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"}]];var KF=[["path",{d:"M2 7.5V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]];var i4=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var YF=[["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}],["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"}]];var XF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 15v5"}]];var WF=[["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["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"}],["path",{d:"M13.3 14.3 15 16"}]];var QF=[["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"}],["path",{d:"m21 21-1.9-1.9"}],["circle",{cx:"17",cy:"17",r:"3"}]];var VF=[["path",{d:"M2 9.35V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"m8 16 3-3-3-3"}]];var GF=[["path",{d:"M9 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 2v.5"}],["path",{d:"M12 10v4h4"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M22 22v-4h-4"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5"}]];var IF=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3"}]];var zF=[["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"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]];var NF=[["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"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]];var FF=[["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"}]];var HF=[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"}]];var DF=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"}],["path",{d:"M16 17h4"}],["path",{d:"M4 13h4"}]];var BF=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5"}],["circle",{cx:"13",cy:"19",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5"}]];var OF=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var TF=[["line",{x1:"22",x2:"2",y1:"6",y2:"6"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22"}]];var PF=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var SF=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var AF=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 9h11"}]];var qF=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1"}]];var EF=[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"}],["path",{d:"M16 6h6"}],["path",{d:"M19 3v6"}]];var r4=[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"}],["path",{d:"m16.5 3.5 5 5"}],["path",{d:"m21.5 3.5-5 5"}]];var s4=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"}]];var CF=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var xF=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var wF=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2"}],["path",{d:"M4 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}],["path",{d:"M19 21h1"}]];var UF=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var MF=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var RF=[["line",{x1:"6",x2:"10",y1:"11",y2:"11"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]];var jF=[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"}]];var LF=[["line",{x1:"6",x2:"10",y1:"12",y2:"12"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var yF=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var fF=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"}],["path",{d:"m16 16 6-6"}],["path",{d:"m21.5 10.5-8-8"}],["path",{d:"m8 8 6-6"}],["path",{d:"m8.5 7.5 8 8"}]];var kF=[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"}],["path",{d:"M2 9h20"}]];var bF=[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9"}],["path",{d:"M13 12V3"}],["path",{d:"M4 21h16"}],["path",{d:"M9 12V3"}]];var vF=[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]];var hF=[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1"}],["path",{d:"M12 8v13"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5"}]];var $F=[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var gF=[["line",{x1:"6",x2:"6",y1:"3",y2:"15"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M18 9a9 9 0 0 1-9 9"}]];var a4=[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12"}]];var _F=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var mF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}],["path",{d:"m15 9-3-3 3-3"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9"}],["path",{d:"m9 15 3 3-3 3"}]];var uF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]];var dF=[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"}],["path",{d:"M12 12v3"}]];var cF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v6"}],["circle",{cx:"5",cy:"18",r:"3"}],["path",{d:"M12 3v18"}],["circle",{cx:"19",cy:"6",r:"3"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9"}]];var pF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]];var nF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}]];var lF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3"}],["path",{d:"M19 15v6"}],["path",{d:"M22 18h-6"}]];var iF=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["path",{d:"M18 11.5V15"}],["circle",{cx:"18",cy:"18",r:"3"}]];var rF=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var sF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var aF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var tF=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"}],["path",{d:"M9 18c-4.51 2-5-2-7-2"}]];var oF=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"}]];var eF=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]];var ZH=[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]];var JH=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"}],["path",{d:"M2 12h8.5"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var KH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{d:"M2 12h20"}]];var YH=[["path",{d:"M12 13V2l8 4-8 4"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02"}]];var XH=[["path",{d:"M2 21V3"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{cx:"16",cy:"11",r:"2"}],["circle",{cx:"8",cy:"11",r:"2"}]];var WH=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"}],["path",{d:"M22 10v6"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5"}]];var QH=[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]];var t4=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 19 2 2 4-4"}]];var o4=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"M16 19h6"}],["path",{d:"M19 22v-6"}]];var e4=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 16 5 5"}],["path",{d:"m16 21 5-5"}]];var Z6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var VH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var Z5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var GH=[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]];var IH=[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]];var zH=[["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"19",cy:"5",r:"1"}],["circle",{cx:"5",cy:"5",r:"1"}],["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}],["circle",{cx:"19",cy:"19",r:"1"}],["circle",{cx:"5",cy:"19",r:"1"}]];var NH=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1"}]];var FH=[["path",{d:"m11.9 12.1 4.514-4.514"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"}],["path",{d:"m6 16 2 2"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"}]];var HH=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"}],["path",{d:"m8.5 16.5-1-1"}]];var DH=[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]];var BH=[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"}],["path",{d:"m18 15 4-4"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"}]];var OH=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 16 6 6"}],["circle",{cx:"16",cy:"9",r:"2.9"}],["circle",{cx:"6",cy:"5",r:"3"}]];var TH=[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268"}]];var PH=[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"}],["path",{d:"m2 15 6 6"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"}]];var J6=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]];var K6=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 13 6 6"}]];var SH=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]];var AH=[["path",{d:"M12 3V2"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2"}],["path",{d:"M4 10h16"}],["path",{d:"M5 10a7 7 0 0 1 14 0"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2"}]];var qH=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var EH=[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5"}]];var CH=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"}],["path",{d:"m21 3 1 11h-2"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"}],["path",{d:"M3 4h8"}]];var xH=[["path",{d:"M12 2v8"}],["path",{d:"m16 6-4 4-4-4"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var wH=[["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M12 2v8"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var UH=[["line",{x1:"22",x2:"2",y1:"12",y2:"12"}],["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"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16"}]];var MH=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1"}]];var RH=[["line",{x1:"4",x2:"20",y1:"9",y2:"9"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21"}]];var jH=[["path",{d:"M14 18a2 2 0 0 0-4 0"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"}],["path",{d:"M2 11h20"}],["circle",{cx:"17",cy:"18",r:"3"}],["circle",{cx:"7",cy:"18",r:"3"}]];var LH=[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]];var yH=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"}],["path",{d:"M7.5 12h9"}]];var fH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var kH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]];var bH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]];var vH=[["path",{d:"M12 18V6"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3"}],["path",{d:"M21 10v8"}],["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}]];var hH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]];var $H=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]];var gH=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var _H=[["path",{d:"M21 14h-1.343"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"}]];var mH=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"}]];var uH=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5"}]];var dH=[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"}]];var cH=[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"}]];var pH=[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"}],["path",{d:"M15 15h6"}]];var nH=[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"}],["path",{d:"m2 2 20 20"}]];var lH=[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"}],["path",{d:"M15 15h6"}],["path",{d:"M18 12v6"}]];var iH=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"}]];var rH=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}]];var sH=[["path",{d:"M11 8c2-3-2-3 0-6"}],["path",{d:"M15.5 8c2-3-2-3 0-6"}],["path",{d:"M6 10h.01"}],["path",{d:"M6 14h.01"}],["path",{d:"M10 16v-4"}],["path",{d:"M14 16v-4"}],["path",{d:"M18 16v-4"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"}],["path",{d:"M5 20v2"}],["path",{d:"M19 20v2"}]];var aH=[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]];var tH=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]];var oH=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M12 7v5l4 2"}]];var eH=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"}],["path",{d:"m2 2 20 20"}]];var ZD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"}]];var JD=[["path",{d:"M12 7v4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M14 9h-4"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"}]];var KD=[["path",{d:"M10 22v-6.57"}],["path",{d:"M12 11h.01"}],["path",{d:"M12 7h.01"}],["path",{d:"M14 15.43V22"}],["path",{d:"M15 16a5 5 0 0 0-6 0"}],["path",{d:"M16 11h.01"}],["path",{d:"M16 7h.01"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 7h.01"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var YD=[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]];var XD=[["path",{d:"M10 12V8.964"}],["path",{d:"M14 12V8.964"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"}]];var WD=[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var QD=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01"}],["path",{d:"M12 17h.01"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0"}]];var VD=[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M15 18h6"}],["path",{d:"M18 15v6"}]];var Y6=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var X6=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0"}]];var W6=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]];var GD=[["path",{d:"M16 10h2"}],["path",{d:"M16 14h2"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0"}],["circle",{cx:"9",cy:"11",r:"2"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var ID=[["path",{d:"M13.5 8h-3"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22"}],["path",{d:"m9 2 3 6"}],["circle",{cx:"12",cy:"15",r:"3"}]];var zD=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19 3 3v-5.5"}],["path",{d:"m17 22 3-3"}],["circle",{cx:"9",cy:"9",r:"2"}]];var ND=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var FD=[["line",{x1:"2",x2:"22",y1:"2",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]];var HD=[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m6 21 5-5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var DD=[["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}],["circle",{cx:"9",cy:"9",r:"2"}]];var BD=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19.5 3-3 3 3"}],["path",{d:"M17 22v-5.5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var OD=[["path",{d:"M16 3h5v5"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2"}],["path",{d:"M21 12v3"}],["path",{d:"m21 3-5 5"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"}],["path",{d:"M9 3h3"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1"}]];var TD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var PD=[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2"}]];var SD=[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]];var AD=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["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"}]];var qD=[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]];var ED=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var CD=[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"}]];var xD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h.01"}],["path",{d:"M17 7h.01"}],["path",{d:"M7 17h.01"}],["path",{d:"M17 17h.01"}]];var wD=[["line",{x1:"19",x2:"10",y1:"4",y2:"4"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20"}]];var UD=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var MD=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5"}]];var RD=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var jD=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var LD=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]];var yD=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var fD=[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"}],["path",{d:"m6.707 6.707 10.586 10.586"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"}]];var kD=[["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"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}]];var bD=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"}],["path",{d:"m14 7 3 3"}],["path",{d:"m9.4 10.6-6.814 6.814A2 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-.814"}]];var vD=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"}],["path",{d:"m21 2-9.6 9.6"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5"}]];var hD=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M2 12h20"}],["path",{d:"M6 12v4"}],["path",{d:"M10 12v4"}],["path",{d:"M14 12v4"}],["path",{d:"M18 12v4"}]];var $D=[["path",{d:"M 20 4 A2 2 0 0 1 22 6"}],["path",{d:"M 22 6 L 22 16.41"}],["path",{d:"M 7 16 L 16 16"}],["path",{d:"M 9.69 4 L 20 4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M6 8h.01"}],["path",{d:"M8 12h.01"}]];var gD=[["path",{d:"M10 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M14 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M6 8h.01"}],["path",{d:"M7 16h10"}],["path",{d:"M8 12h.01"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}]];var _D=[["path",{d:"M12 2v5"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"}]];var mD=[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"}],["path",{d:"m14.207 4.793-3.414 3.414"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"}]];var uD=[["path",{d:"M12 10v12"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"}],["path",{d:"M9 22h6"}]];var dD=[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5"}]];var cD=[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5"}]];var pD=[["path",{d:"M12 12v6"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"}]];var nD=[["path",{d:"m12 8 6-3-6-3v10"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"}],["path",{d:"m6.49 12.85 11.02 6.3"}],["path",{d:"M17.51 12.85 6.5 19.15"}]];var lD=[["path",{d:"M10 18v-7"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"}],["path",{d:"M14 18v-7"}],["path",{d:"M18 18v-7"}],["path",{d:"M3 22h18"}],["path",{d:"M6 18v-7"}]];var iD=[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]];var rD=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var Q6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var sD=[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"}],["path",{d:"M20.054 15.987H3.946"}]];var aD=[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"}]];var tD=[["path",{d:"M3.704 14.467A10 8 0 0 1 2 10a10 8 0 0 1 20 0 10 8 0 0 1-10 8 10 8 0 0 1-5.181-1.158"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994"}],["circle",{cx:"5",cy:"16",r:"2"}]];var oD=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var eD=[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"}]];var V6=[["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"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"}]];var ZB=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1"}]];var JB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}]];var KB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["path",{d:"M14 4h7"}],["path",{d:"M14 9h7"}],["path",{d:"M14 15h7"}],["path",{d:"M14 20h7"}]];var YB=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var XB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var WB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1"}]];var QB=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]];var VB=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"}],["path",{d:"M2 22 17 7"}]];var GB=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1"}]];var IB=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1"}],["path",{d:"M7 3v18"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"}]];var zB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m4.93 4.93 4.24 4.24"}],["path",{d:"m14.83 9.17 4.24-4.24"}],["path",{d:"m14.83 14.83 4.24 4.24"}],["path",{d:"m9.17 14.83-4.24 4.24"}],["circle",{cx:"12",cy:"12",r:"4"}]];var NB=[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]];var FB=[["path",{d:"M14 12h2v8"}],["path",{d:"M14 20h4"}],["path",{d:"M6 12h4"}],["path",{d:"M6 20h4"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2"}]];var HB=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var DB=[["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"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var BB=[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]];var OB=[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var TB=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var PB=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]];var SB=[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}],["rect",{width:"4",height:"12",x:"2",y:"9"}],["circle",{cx:"4",cy:"4",r:"2"}]];var AB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var qB=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["path",{d:"m3 7 2 2 4-4"}]];var EB=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 5 3 3 3-3"}],["path",{d:"m15 19 3-3 3 3"}]];var CB=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 8 3-3 3 3"}],["path",{d:"m15 16 3 3 3-3"}]];var xB=[["path",{d:"M10 5h11"}],["path",{d:"M10 12h11"}],["path",{d:"M10 19h11"}],["path",{d:"m3 10 3-3-3-3"}],["path",{d:"m3 20 3-3-3-3"}]];var wB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M9 19H3"}],["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6"}]];var UB=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var MB=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var J5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var K5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var RB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var jB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var LB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var yB=[["path",{d:"M21 5H3"}],["path",{d:"M7 12H3"}],["path",{d:"M7 19H3"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"}],["path",{d:"M11 10v4h4"}]];var fB=[["path",{d:"M11 5h10"}],["path",{d:"M11 12h10"}],["path",{d:"M11 19h10"}],["path",{d:"M4 4h1v5"}],["path",{d:"M4 9h2"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"}]];var kB=[["path",{d:"M3 5h6"}],["path",{d:"M3 12h13"}],["path",{d:"M3 19h13"}],["path",{d:"m16 8-3-3 3-3"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6"}]];var bB=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1"}]];var vB=[["path",{d:"M8 5h13"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3"}]];var hB=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}]];var $B=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"m15.5 9.5 5 5"}],["path",{d:"m20.5 9.5-5 5"}]];var gB=[["path",{d:"M3 5h.01"}],["path",{d:"M3 12h.01"}],["path",{d:"M3 19h.01"}],["path",{d:"M8 5h13"}],["path",{d:"M8 12h13"}],["path",{d:"M8 19h13"}]];var G6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var _B=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var mB=[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]];var uB=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]];var dB=[["path",{d:"M12 19v3"}],["path",{d:"M12 2v3"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13"}],["path",{d:"M19 12h3"}],["path",{d:"M2 12h3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9"}]];var cB=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]];var I6=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5"}]];var pB=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3"}]];var z6=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]];var nB=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];var lB=[["path",{d:"m10 17 5-5-5-5"}],["path",{d:"M15 12H3"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}]];var iB=[["path",{d:"m16 17 5-5-5-5"}],["path",{d:"M21 12H9"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var rB=[["path",{d:"M3 5h1"}],["path",{d:"M3 12h1"}],["path",{d:"M3 19h1"}],["path",{d:"M8 5h1"}],["path",{d:"M8 12h1"}],["path",{d:"M8 19h1"}],["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}]];var sB=[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"}]];var aB=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]];var tB=[["path",{d:"m12 15 4 4"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"}],["path",{d:"m5 8 4 4"}]];var oB=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]];var eB=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]];var Z2=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]];var J2=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]];var N6=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]];var K2=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]];var Y2=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]];var X2=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]];var W2=[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var Q2=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"}],["polyline",{points:"15,9 18,9 18,11"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10"}]];var V2=[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2"}]];var G2=[["path",{d:"m11 19-1.106-.552a2 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 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"}],["path",{d:"M15 5.764V14"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var I2=[["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"}],["path",{d:"m9 10 2 2 4-4"}]];var z2=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m16 18 2 2 4-4"}]];var N2=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"}],["path",{d:"M18 22v-3"}],["circle",{cx:"10",cy:"10",r:"3"}]];var F2=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}]];var H2=[["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"}],["path",{d:"M9 10h6"}]];var D2=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74"}]];var F6=[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"10",r:"3"}]];var B2=[["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"}],["path",{d:"M12 7v6"}],["path",{d:"M9 10h6"}]];var O2=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}],["path",{d:"M19 15v6"}]];var T2=[["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"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var P2=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m21.5 15.5-5 5"}],["path",{d:"m21.5 20.5-5-5"}]];var S2=[["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"}],["circle",{cx:"12",cy:"10",r:"3"}]];var A2=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"}]];var q2=[["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"}],["path",{d:"M15 5.764v15"}],["path",{d:"M9 3.236v15"}]];var E2=[["path",{d:"m11 19-1.106-.552a2 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 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"}],["path",{d:"M15 5.764V12"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var C2=[["path",{d:"m14 6 4 4"}],["path",{d:"M17 3h4v4"}],["path",{d:"m21 3-7.75 7.75"}],["circle",{cx:"9",cy:"15",r:"6"}]];var x2=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var w2=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var U2=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var M2=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]];var R2=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]];var j2=[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 8v6"}]];var L2=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 6v8"}]];var y2=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var f2=[["path",{d:"M6 19v-3"}],["path",{d:"M10 19v-3"}],["path",{d:"M14 19v-3"}],["path",{d:"M18 19v-3"}],["path",{d:"M8 11V9"}],["path",{d:"M16 11V9"}],["path",{d:"M12 11V9"}],["path",{d:"M2 15h20"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z"}]];var k2=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var b2=[["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"}],["path",{d:"m20 22-5-5"}]];var v2=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var h2=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"}]];var $2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"}]];var g2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var _2=[["path",{d:"m2 2 20 20"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}]];var m2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var H6=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var u2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]];var d2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var c2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var p2=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var n2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"m14 14 3-3-3-3"}]];var l2=[["path",{d:"M12 19h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M16 19h.01"}],["path",{d:"M16 3h.01"}],["path",{d:"M2 13h.01"}],["path",{d:"M2 17v4.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H8"}],["path",{d:"M2 5a2 2 0 0 1 2-2"}],["path",{d:"M2 9h.01"}],["path",{d:"M20 3a2 2 0 0 1 2 2"}],["path",{d:"M22 13h.01"}],["path",{d:"M22 17a2 2 0 0 1-2 2"}],["path",{d:"M22 9h.01"}],["path",{d:"M8 3h.01"}]];var i2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M10 15h4"}],["path",{d:"M10 9h4"}],["path",{d:"M12 7v4"}]];var r2=[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"}],["circle",{cx:"19",cy:"6",r:"3"}]];var s2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"}]];var a2=[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1"}]];var t2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 11h.01"}],["path",{d:"M16 11h.01"}],["path",{d:"M8 11h.01"}]];var o2=[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344"}]];var e2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 8v6"}],["path",{d:"M9 11h6"}]];var ZO=[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8"}]];var JO=[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"}],["path",{d:"M16 3h6v6"}],["path",{d:"m16 9 6-6"}]];var KO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]];var YO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]];var XO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 15h.01"}],["path",{d:"M12 7v4"}]];var WO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]];var QO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}]];var VO=[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"}]];var GO=[["path",{d:"M12 19v3"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}]];var D6=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"}],["circle",{cx:"16",cy:"7",r:"5"}]];var IO=[["path",{d:"M12 19v3"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3"}]];var zO=[["path",{d:"M18 12h2"}],["path",{d:"M18 16h2"}],["path",{d:"M18 20h2"}],["path",{d:"M18 4h2"}],["path",{d:"M18 8h2"}],["path",{d:"M4 12h2"}],["path",{d:"M4 16h2"}],["path",{d:"M4 20h2"}],["path",{d:"M4 4h2"}],["path",{d:"M4 8h2"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z"}]];var NO=[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var FO=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]];var HO=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z"}]];var DO=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]];var BO=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var OO=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var TO=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]];var PO=[["path",{d:"M5 12h14"}]];var SO=[["path",{d:"m9 10 2 2 4-4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var AO=[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var qO=[["path",{d:"M12 17v4"}],["path",{d:"m14.305 7.53.923-.382"}],["path",{d:"m15.228 4.852-.923-.383"}],["path",{d:"m16.852 3.228-.383-.924"}],["path",{d:"m16.852 8.772-.383.923"}],["path",{d:"m19.148 3.228.383-.924"}],["path",{d:"m19.53 9.696-.382-.924"}],["path",{d:"m20.772 4.852.924-.383"}],["path",{d:"m20.772 7.148.924.383"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["path",{d:"M8 21h8"}],["circle",{cx:"18",cy:"6",r:"3"}]];var EO=[["path",{d:"M12 17v4"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"}],["path",{d:"M8 21h8"}],["circle",{cx:"19",cy:"6",r:"3"}]];var CO=[["path",{d:"M12 13V7"}],["path",{d:"m15 10-3 3-3-3"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var xO=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m2 2 20 20"}]];var wO=[["path",{d:"M10 13V7"}],["path",{d:"M14 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var UO=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var MO=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2"}]];var RO=[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]];var jO=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1"}]];var LO=[["path",{d:"m9 10 3-3 3 3"}],["path",{d:"M12 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var yO=[["path",{d:"m14.5 12.5-5-5"}],["path",{d:"m9.5 12.5 5-5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var fO=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21"}]];var kO=[["path",{d:"M18 5h4"}],["path",{d:"M20 3v4"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var bO=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var vO=[["path",{d:"m18 14-1-3"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"}],["circle",{cx:"19",cy:"17",r:"3"}],["circle",{cx:"5",cy:"17",r:"3"}]];var hO=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]];var $O=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var gO=[["path",{d:"M12 6v.343"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902"}],["path",{d:"M22 22 2 2"}]];var _O=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"}]];var mO=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"m11.8 11.8 8.4 8.4"}]];var uO=[["path",{d:"M14 4.1 12 6"}],["path",{d:"m5.1 8-2.9-.8"}],["path",{d:"m6 12-1.9 2"}],["path",{d:"M7.2 2.2 8 5.1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"}]];var dO=[["path",{d:"M12.586 12.586 19 19"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"}]];var cO=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var B6=[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]];var pO=[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]];var nO=[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]];var lO=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var iO=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var rO=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var sO=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var aO=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var tO=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var oO=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var eO=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var ZT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var JT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var KT=[["path",{d:"M12 2v20"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m19 9 3 3-3 3"}],["path",{d:"M2 12h20"}],["path",{d:"m5 9-3 3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var YT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var XT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var WT=[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var QT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var VT=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var GT=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var IT=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var zT=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]];var NT=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"}],["path",{d:"M12 12V8"}]];var FT=[["path",{d:"M15 18h-5"}],["path",{d:"M18 14h-8"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1"}]];var HT=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20"}]];var DT=[["path",{d:"M12 2v10"}],["path",{d:"m8.5 4 7 4"}],["path",{d:"m8.5 8 7-4"}],["circle",{cx:"12",cy:"17",r:"5"}]];var BT=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"}],["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var OT=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M15 2v20"}],["path",{d:"M15 7h5"}],["path",{d:"M15 12h5"}],["path",{d:"M15 17h5"}]];var TT=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M9.5 8h5"}],["path",{d:"M9.5 12H16"}],["path",{d:"M9.5 16H14"}]];var PT=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M16 2v20"}]];var ST=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M20 12v2"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1"}],["path",{d:"M13 22h-2"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2"}],["path",{d:"M4 14v-2"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var AT=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var qT=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var ET=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]];var O6=[["path",{d:"M12 16h.01"}],["path",{d:"M12 8v4"}],["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"}]];var CT=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}],["path",{d:"M8 12h8"}]];var T6=[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}]];var P6=[["path",{d:"m15 9-6 6"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}],["path",{d:"m9 9 6 6"}]];var xT=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}]];var wT=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"}]];var UT=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var MT=[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{cx:"12",cy:"12",r:"3"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var RT=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"}]];var jT=[["path",{d:"M12 3v6"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"}],["path",{d:"M3.054 9.013h17.893"}]];var LT=[["path",{d:"m16 16 2 2 4-4"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var yT=[["path",{d:"M16 16h6"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var fT=[["path",{d:"M12 22v-9"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"}]];var kT=[["path",{d:"M16 16h6"}],["path",{d:"M19 13v6"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var bT=[["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5"}],["path",{d:"M20.27 17.27 22 19"}]];var vT=[["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["path",{d:"m17 13 5 5m-5 0 5-5"}]];var hT=[["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"}],["path",{d:"M12 22V12"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["path",{d:"m7.5 4.27 9 5.15"}]];var $T=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z"}],["path",{d:"m5 2 5 5"}],["path",{d:"M2 13h15"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z"}]];var gT=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1"}]];var S6=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v4"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"}]];var _T=[["path",{d:"m14.622 17.897-10.68-2.913"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"}]];var mT=[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"}]];var uT=[["path",{d:"M11.25 17.25h1.5L12 18z"}],["path",{d:"m15 12 2 2"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{d:"m9 12-2 2"}]];var dT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var A6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 15h1"}],["path",{d:"M19 15h2"}],["path",{d:"M3 15h2"}],["path",{d:"M9 15h1"}]];var cT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var pT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var q6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var E6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 14v1"}],["path",{d:"M9 19v2"}],["path",{d:"M9 3v2"}],["path",{d:"M9 9v1"}]];var C6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]];var nT=[["path",{d:"M15 10V9"}],["path",{d:"M15 15v-1"}],["path",{d:"M15 21v-2"}],["path",{d:"M15 5V3"}],["path",{d:"M9 10V9"}],["path",{d:"M9 15v-1"}],["path",{d:"M9 21v-2"}],["path",{d:"M9 5V3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var x6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var lT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var iT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var rT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var w6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 14v1"}],["path",{d:"M15 19v2"}],["path",{d:"M15 3v2"}],["path",{d:"M15 9v1"}]];var sT=[["path",{d:"M14 15h1"}],["path",{d:"M14 9h1"}],["path",{d:"M19 15h2"}],["path",{d:"M19 9h2"}],["path",{d:"M3 15h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 15h1"}],["path",{d:"M9 9h1"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var aT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var U6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 9h1"}],["path",{d:"M19 9h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 9h1"}]];var tT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var oT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var eT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var M6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var JP=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]];var KP=[["path",{d:"M11 15h2"}],["path",{d:"M12 12v3"}],["path",{d:"M12 19v3"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"}],["path",{d:"M9 9a3 3 0 1 1 6 0"}]];var YP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var XP=[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]];var WP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var QP=[["circle",{cx:"11",cy:"4",r:"2"}],["circle",{cx:"18",cy:"8",r:"2"}],["circle",{cx:"20",cy:"16",r:"2"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"}]];var VP=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2"}],["path",{d:"M15 14h.01"}],["path",{d:"M9 6h6"}],["path",{d:"M9 10h6"}]];var R6=[["path",{d:"M13 21h8"}],["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"}]];var GP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m2 2 20 20"}]];var IP=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"}],["path",{d:"m2.3 2.3 7.286 7.286"}],["circle",{cx:"11",cy:"11",r:"2"}]];var j6=[["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"}]];var zP=[["path",{d:"M13 21h8"}],["path",{d:"m15 5 4 4"}],["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"}]];var NP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m15 5 4 4"}],["path",{d:"m2 2 20 20"}]];var FP=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"}],["path",{d:"m8 6 2-2"}],["path",{d:"m18 16 2-2"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"}],["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"}],["path",{d:"m15 5 4 4"}]];var HP=[["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"}],["path",{d:"m15 5 4 4"}]];var DP=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"}]];var BP=[["line",{x1:"19",x2:"5",y1:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]];var OP=[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]];var TP=[["path",{d:"M20 11H4"}],["path",{d:"M20 7H4"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"}]];var PP=[["path",{d:"M13 2a9 9 0 0 1 9 9"}],["path",{d:"M13 6a5 5 0 0 1 5 5"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var SP=[["path",{d:"M14 6h8"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var AP=[["path",{d:"M16 2v6h6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var qP=[["path",{d:"m16 2 6 6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var EP=[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"}],["path",{d:"M22 2 2 22"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"}]];var CP=[["path",{d:"m16 8 6-6"}],["path",{d:"M22 8V2h-6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var xP=[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var wP=[["line",{x1:"9",x2:"9",y1:"4",y2:"20"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4"}]];var UP=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"}],["path",{d:"M2 14h20"}],["path",{d:"M6 14v4"}],["path",{d:"M10 14v4"}],["path",{d:"M14 14v4"}],["path",{d:"M18 14v4"}]];var MP=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"}]];var RP=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2"}]];var jP=[["path",{d:"M2 10h6V4"}],["path",{d:"m2 4 6 6"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1"}]];var LP=[["path",{d:"M14 3v11"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9"}],["path",{d:"M18 3v11"}],["path",{d:"M22 18H2l4-4"}],["path",{d:"m6 22-4-4"}]];var yP=[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"}],["path",{d:"M16 10h.01"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1"}]];var fP=[["path",{d:"M10 3v11"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8"}],["path",{d:"M14 3v11"}],["path",{d:"m18 14 4 4H2"}],["path",{d:"m22 18-4 4"}]];var kP=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var bP=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1"}]];var vP=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"}],["path",{d:"m8.5 8.5 7 7"}]];var hP=[["path",{d:"M12 17v5"}],["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"}]];var $P=[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"}],["path",{d:"m2 22 .414-.414"}]];var gP=[["path",{d:"M12 17v5"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"}]];var _P=[["path",{d:"m12 14-1 1"}],["path",{d:"m13.75 18.25-1.25 1.42"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"}]];var mP=[["path",{d:"M2 22h20"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"}]];var uP=[["path",{d:"M2 22h20"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"}]];var dP=[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]];var cP=[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"}]];var pP=[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z"}]];var L6=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"m2 22 3-3"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m18 3-4 4h6l-4 4"}]];var nP=[["path",{d:"M12 22v-5"}],["path",{d:"M9 8V2"}],["path",{d:"M15 8V2"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z"}]];var lP=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var iP=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"}],["path",{d:"M18 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6"}]];var rP=[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z"}],["path",{d:"m8 10 4 4 4-4"}]];var sP=[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor"}]];var aP=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"}],["path",{d:"M6 6v8"}],["path",{d:"m2 2 20 20"}]];var tP=[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var oP=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"}],["path",{d:"M10 22 9 8"}],["path",{d:"m14 22 1-14"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"}]];var eP=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"}],["path",{d:"m22 22-5.5-5.5"}]];var ZS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var JS=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]];var KS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var YS=[["path",{d:"M2 3h20"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"}],["path",{d:"m7 21 5-5 5 5"}]];var XS=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"}],["path",{d:"m16 19 2 2 4-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]];var WS=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1"}]];var QS=[["path",{d:"M5 7 3 5"}],["path",{d:"M9 6V3"}],["path",{d:"m13 7 2-2"}],["circle",{cx:"9",cy:"13",r:"3"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"}],["path",{d:"M16 16h2"}]];var VS=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M12 9v11"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9"}]];var GS=[["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"}]];var IS=[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]];var zS=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"}],["path",{d:"M12 2v20"}]];var NS=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}]];var FS=[["path",{d:"M13 16a3 3 0 0 1 2.24 5"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3"}]];var HS=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34"}],["path",{d:"M4 6h.01"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67"}],["path",{d:"M12 18h.01"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"m13.41 10.59 5.66-5.66"}]];var DS=[["path",{d:"M12 12h.01"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"}]];var BS=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"}]];var OS=[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2"}],["path",{d:"M18 12h.01"}]];var TS=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"}],["circle",{cx:"12",cy:"9",r:"2"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1"}],["path",{d:"M9.5 18h5"}],["path",{d:"m8 22 4-11 4 11"}]];var PS=[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}],["circle",{cx:"12",cy:"12",r:"2"}]];var SS=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82"}],["circle",{cx:"19",cy:"19",r:"2"}],["path",{d:"m13.41 13.41 4.18 4.18"}],["circle",{cx:"12",cy:"12",r:"2"}]];var AS=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var qS=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5"}],["path",{d:"M16 9h.01"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"}]];var ES=[["path",{d:"M22 17a10 10 0 0 0-20 0"}],["path",{d:"M6 17a6 6 0 0 1 12 0"}],["path",{d:"M10 17a2 2 0 0 1 4 0"}]];var CS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var xS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M12 6.5v11"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var wS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 12h5"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2"}]];var US=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 7h8"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8"}],["path",{d:"M8 11h8"}]];var MS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"m12 10 3-3"}],["path",{d:"m9 7 3 3v7.5"}],["path",{d:"M9 11h6"}],["path",{d:"M9 15h6"}]];var RS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 13h5"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 17h7"}]];var jS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 15h5"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10"}]];var LS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M10 17V7h5"}],["path",{d:"M10 11h4"}],["path",{d:"M8 15h5"}]];var yS=[["path",{d:"M13 16H8"}],["path",{d:"M14 8H8"}],["path",{d:"M16 12H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]];var fS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 17.5v-11"}]];var kS=[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5"}],["path",{d:"m14 8-6 3"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z"}]];var bS=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var y6=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]];var vS=[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}]];var hS=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var $S=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var gS=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]];var _S=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"}]];var mS=[["circle",{cx:"12",cy:"17",r:"1"}],["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var uS=[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var dS=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}],["circle",{cx:"12",cy:"12",r:"1"}]];var cS=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}]];var pS=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"}],["path",{d:"M8 16H3v5"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M22 22 2 2"}]];var nS=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"}],["path",{d:"M8 16H3v5"}]];var lS=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]];var iS=[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]];var rS=[["path",{d:"M4 7V4h16v3"}],["path",{d:"M5 20h6"}],["path",{d:"M13 4 8 20"}],["path",{d:"m15 15 5 5"}],["path",{d:"m20 15-5 5"}]];var sS=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]];var aS=[["path",{d:"m2 9 3-3 3 3"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6"}],["path",{d:"m22 15-3 3-3-3"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10"}]];var tS=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]];var oS=[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var eS=[["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var ZA=[["path",{d:"m12 17-5-5 5-5"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}],["path",{d:"m7 17-5-5 5-5"}]];var JA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var KA=[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"}]];var YA=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"}],["path",{d:"m12 18 2.57-3.5"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009"}],["path",{d:"M9.35 14.53 12 11.22"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"}]];var XA=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}]];var WA=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0"}]];var QA=[["path",{d:"M6 19V5"}],["path",{d:"M10 19V6.8"}],["path",{d:"M14 19v-7.8"}],["path",{d:"M18 5v4"}],["path",{d:"M18 19v-6"}],["path",{d:"M22 19V9"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"}]];var VA=[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"}],["path",{d:"M9.77 12C4 15 2 22 2 22"}],["circle",{cx:"17",cy:"8",r:"2"}]];var f6=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4"}]];var GA=[["path",{d:"m14.5 9.5 1 1"}],["path",{d:"m15.5 8.5-4 4"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["circle",{cx:"10",cy:"14",r:"2"}]];var IA=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6"}],["path",{d:"m15 2-3 3 3 3"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"}]];var zA=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}]];var NA=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 8 3-3-3-3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}]];var FA=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}]];var HA=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3"}],["path",{d:"M15 5h-4.3"}],["circle",{cx:"18",cy:"5",r:"3"}]];var DA=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"}],["circle",{cx:"18",cy:"5",r:"3"}]];var BA=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6.01 18H6"}],["path",{d:"M10.01 18H10"}],["path",{d:"M15 10v4"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0"}]];var k6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var b6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var OA=[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]];var TA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 7.5H3"}],["path",{d:"M21 12H3"}],["path",{d:"M21 16.5H3"}]];var PA=[["path",{d:"M12 15v-3.014"}],["path",{d:"M16 15v-3.014"}],["path",{d:"M20 6H4"}],["path",{d:"M20 8V4"}],["path",{d:"M4 8V4"}],["path",{d:"M8 15v-3.014"}],["rect",{x:"3",y:"12",width:"18",height:"7",rx:"1"}]];var SA=[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"}],["path",{d:"m14.5 12.5 2-2"}],["path",{d:"m11.5 9.5 2-2"}],["path",{d:"m8.5 6.5 2-2"}],["path",{d:"m17.5 15.5 2-2"}]];var AA=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var qA=[["path",{d:"M10 2v15"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"}]];var EA=[["path",{d:"M7 21h10"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"}],["path",{d:"m13 12 4-4"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"}]];var CA=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1"}]];var xA=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z"}],["path",{d:"m9 15 3-3"}],["path",{d:"M17 13a6 6 0 0 0-6-6"}],["path",{d:"M21 13A10 10 0 0 0 11 3"}]];var wA=[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"}],["path",{d:"M16.5 7.5 19 5"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"}],["path",{d:"M9 21a6 6 0 0 0-6-6"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"}]];var UA=[["path",{d:"m20 19.5-5.5 1.2"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"}],["path",{d:"M20 10 4 13.5"}]];var MA=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"}]];var RA=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{d:"M14 8h1"}],["path",{d:"M17 21v-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{d:"M29.5 11.5s5 5 4 5"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]];var jA=[["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"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7"}]];var v6=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11"}],["path",{d:"M5.293 18.707 11 13"}],["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}]];var LA=[["path",{d:"m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"M7 21h10"}],["path",{d:"M12 3v18"}],["path",{d:"M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2"}]];var yA=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M14 15H9v-5"}],["path",{d:"M16 3h5v5"}],["path",{d:"M21 3 9 15"}]];var fA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 7v10"}],["path",{d:"M12 7v10"}],["path",{d:"M17 7v10"}]];var kA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var bA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]];var vA=[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"}]];var hA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 12h10"}]];var $A=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M17 8V7"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 17h.01"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1"}]];var gA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m16 16-1.9-1.9"}]];var _A=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 8h8"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}]];var mA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var uA=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 5v16"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"}],["path",{d:"M6 5v16"}],["circle",{cx:"12",cy:"9",r:"2"}]];var dA=[["path",{d:"M5.42 9.42 8 12"}],["circle",{cx:"4",cy:"8",r:"2"}],["path",{d:"m14 6-8.58 8.58"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"M10.8 14.8 14 18"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var cA=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M8.12 8.12 12 12"}],["path",{d:"M20 4 8.12 15.88"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M14.8 14.8 20 20"}]];var pA=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]];var nA=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]];var lA=[["path",{d:"M15 12h-5"}],["path",{d:"M15 8h-5"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var iA=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var rA=[["path",{d:"m13 13.5 2-2.5-2-2.5"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M9 8.5 7 11l2 2.5"}],["circle",{cx:"11",cy:"11",r:"8"}]];var sA=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var aA=[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var tA=[["path",{d:"m13.5 8.5-5 5"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var oA=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var eA=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"}]];var h6=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"}],["path",{d:"M6 12h16"}]];var Zq=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1"}]];var Jq=[["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"}],["path",{d:"m21.854 2.147-10.94 10.939"}]];var Kq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var Yq=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.148 9.228.383-.923"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"}],["path",{d:"M6 18h.01"}],["path",{d:"M6 6h.01"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}]];var Xq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var Wq=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]];var Qq=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]];var Vq=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18"}]];var Gq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var Iq=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"}],["circle",{cx:"12",cy:"12",r:"3"}]];var zq=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5"}]];var Nq=[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49"}]];var Fq=[["path",{d:"M12 2v13"}],["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}]];var Hq=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"}]];var Dq=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21"}]];var Bq=[["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"}],["path",{d:"m4.243 5.21 14.39 12.472"}]];var Oq=[["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"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var Tq=[["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"}],["path",{d:"m9 12 2 2 4-4"}]];var Pq=[["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"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var Sq=[["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"}],["path",{d:"M12 22V2"}]];var Aq=[["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"}],["path",{d:"M9 12h6"}]];var qq=[["path",{d:"m2 2 20 20"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"}]];var Eq=[["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"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var $6=[["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"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var Cq=[["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"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003"}],["circle",{cx:"12",cy:"11",r:"4"}]];var g6=[["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"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"m9.5 9.5 5 5"}]];var xq=[["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"}]];var wq=[["circle",{cx:"12",cy:"12",r:"8"}],["path",{d:"M12 2v7.5"}],["path",{d:"m19 5-5.23 5.23"}],["path",{d:"M22 12h-7.5"}],["path",{d:"m19 19-5.23-5.23"}],["path",{d:"M12 14.5V22"}],["path",{d:"M10.23 13.77 5 19"}],["path",{d:"M9.5 12H2"}],["path",{d:"M10.23 10.23 5 5"}],["circle",{cx:"12",cy:"12",r:"2.5"}]];var Uq=[["path",{d:"M12 10.189V14"}],["path",{d:"M12 2v3"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var Mq=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]];var Rq=[["path",{d:"M16 10a4 4 0 0 1-8 0"}],["path",{d:"M3.103 6.034h17.794"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]];var jq=[["path",{d:"m15 11-1 9"}],["path",{d:"m19 11-4-7"}],["path",{d:"M2 11h20"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"}],["path",{d:"M4.5 15.5h15"}],["path",{d:"m5 11 4-7"}],["path",{d:"m9 11 1 9"}]];var Lq=[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]];var yq=[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"}],["path",{d:"m9 15 7.879-7.878"}]];var fq=[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]];var kq=[["path",{d:"M10 22v-5"}],["path",{d:"M14 19v-2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M18 20v-3"}],["path",{d:"M2 13h20"}],["path",{d:"M20 13V7l-5-5H6a2 2 0 0 0-2 2v9"}],["path",{d:"M6 20v-3"}]];var bq=[["path",{d:"M11 12h.01"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8"}],["path",{d:"M16 16c2 0 4.5-4 4-6"}]];var vq=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]];var hq=[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"}],["path",{d:"M14.5 14.5 12 17"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"}]];var $q=[["path",{d:"m18 14 4 4-4 4"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"}]];var gq=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"}]];var _q=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var mq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var uq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var dq=[["path",{d:"M2 20h.01"}]];var cq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var pq=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"}],["path",{d:"M3 21h18"}]];var nq=[["path",{d:"M10 9H4L2 7l2-2h6"}],["path",{d:"M14 5h6l2 2-2 2h-6"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18"}],["path",{d:"M8 22h8"}]];var lq=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z"}]];var iq=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]];var rq=[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M3 20V4"}]];var sq=[["path",{d:"M21 4v16"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}]];var aq=[["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var tq=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5"}]];var oq=[["path",{d:"M22 2 2 22"}]];var eq=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"}]];var ZE=[["path",{d:"M10 5H3"}],["path",{d:"M12 19H3"}],["path",{d:"M14 3v4"}],["path",{d:"M16 17v4"}],["path",{d:"M21 12h-9"}],["path",{d:"M21 19h-5"}],["path",{d:"M21 5h-7"}],["path",{d:"M8 10v4"}],["path",{d:"M8 12H3"}]];var JE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var _6=[["path",{d:"M10 8h4"}],["path",{d:"M12 21v-9"}],["path",{d:"M12 8V3"}],["path",{d:"M17 16h4"}],["path",{d:"M19 12V3"}],["path",{d:"M19 21v-5"}],["path",{d:"M3 14h4"}],["path",{d:"M5 10V3"}],["path",{d:"M5 21v-7"}]];var KE=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"}]];var YE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var XE=[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]];var WE=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var QE=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"}],["circle",{cx:"10",cy:"13",r:"8"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"}],["path",{d:"M18 3 19.1 5.2"}],["path",{d:"M22 3 20.9 5.2"}]];var VE=[["path",{d:"M10.5 2v4"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var GE=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6h-4"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"M22 12h-6.5L14 15"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h4"}]];var IE=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]];var zE=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M7 21h10"}],["path",{d:"M19.5 12 22 6"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"}]];var NE=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var FE=[["path",{d:"M12 18v4"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"}]];var HE=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}]];var m6=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}],["path",{d:"M20 2v4"}],["path",{d:"M22 4h-4"}],["circle",{cx:"4",cy:"20",r:"2"}]];var DE=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M12 6h.01"}],["circle",{cx:"12",cy:"14",r:"4"}],["path",{d:"M12 14h.01"}]];var BE=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975"}]];var OE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"}]];var TE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var PE=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var SE=[["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]];var AE=[["path",{d:"M16 3h5v5"}],["path",{d:"M8 3H3v5"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"}],["path",{d:"m15 9 6-6"}]];var qE=[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"}]];var EE=[["path",{d:"M15.295 19.562 16 22"}],["path",{d:"m17 16 3.758 2.098"}],["path",{d:"m19 12.5 3.026-.598"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"}],["path",{d:"M8 9V2"}]];var CE=[["path",{d:"M3 3h.01"}],["path",{d:"M7 5h.01"}],["path",{d:"M11 7h.01"}],["path",{d:"M3 7h.01"}],["path",{d:"M7 9h.01"}],["path",{d:"M3 11h.01"}],["rect",{width:"4",height:"4",x:"15",y:"5"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"}],["path",{d:"m13 14 8-2"}],["path",{d:"m13 19 8-2"}]];var xE=[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"}],["path",{d:"M5 21h14"}]];var u6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var d6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var c6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var p6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var n6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var l6=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"}],["path",{d:"m3 21 9-9"}],["path",{d:"M9 21H3v-6"}]];var i6=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m21 21-9-9"}],["path",{d:"M21 15v6h-6"}]];var r6=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"}],["path",{d:"m3 3 9 9"}],["path",{d:"M3 9V3h6"}]];var s6=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"}],["path",{d:"m21 3-9 9"}],["path",{d:"M15 3h6v6"}]];var a6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var t6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var o6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var Z9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8.5 14 7-4"}],["path",{d:"m8.5 10 7 4"}]];var J9=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2"}],["path",{d:"M10 22H8"}],["path",{d:"M16 22h-2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var Y5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var K9=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{d:"m9 11 3 3L22 4"}]];var Y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var X9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var W9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var Q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var V9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var G9=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var wE=[["path",{d:"M10 9.5 8 12l2 2.5"}],["path",{d:"M14 21h1"}],["path",{d:"m14 9.5 2 2.5-2 2.5"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}]];var UE=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}]];var I9=[["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M9 3h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M14 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}]];var z9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h2"}],["path",{d:"M14 3h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v2"}],["path",{d:"M3 14v1"}]];var N9=[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]];var ME=[["path",{d:"M14 21h1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 21h1"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]];var H9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var D9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]];var O9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var T9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7v10"}],["path",{d:"M11 7v10"}],["path",{d:"m15 7 2 10"}]];var P9=[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var S9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var A9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var q9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}]];var E9=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2"}],["path",{d:"M9 17v-2.3"}]];var C9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var O8=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["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"}]];var RE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var w9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h10"}],["path",{d:"M10 7v10"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7"}]];var U9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17"}],["path",{d:"M12 7v10"}],["path",{d:"M16 7v10"}]];var M9=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var j9=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var jE=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var L9=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var LE=[["path",{d:"M21 11a8 8 0 0 0-8-8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var f9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var k9=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20"}]];var b9=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var yE=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var fE=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2"}]];var kE=[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var bE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var v9=[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}]];var h9=[["path",{d:"M18 21a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"11",r:"4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var $9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}]];var g9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var vE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var hE=[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"}]];var $E=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M16 22h-2"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}]];var gE=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M14 2a2 2 0 0 1 2 2"}],["path",{d:"M16 22h-2"}],["path",{d:"M2 10V8"}],["path",{d:"M2 4a2 2 0 0 1 2-2"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}],["path",{d:"M4 16a2 2 0 0 1-2-2"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"}],["path",{d:"M8 2h2"}]];var _E=[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"}]];var mE=[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]];var uE=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"}]];var dE=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"}],["path",{d:"M18 13h.01"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"}]];var cE=[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"}],["path",{d:"M5 22h14"}]];var pE=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"}]];var nE=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var lE=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"}]];var iE=[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M21 20V4"}]];var rE=[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}],["path",{d:"M3 4v16"}]];var sE=[["path",{d:"M11 2v2"}],["path",{d:"M5 2v2"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3"}],["circle",{cx:"20",cy:"10",r:"2"}]];var aE=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h.01"}],["path",{d:"M16 13h.01"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]];var tE=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4"}]];var oE=[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"}]];var eE=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var ZC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var JC=[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var KC=[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]];var YC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]];var XC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]];var WC=[["path",{d:"M12 2v2"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"}],["path",{d:"M16 12a4 4 0 0 0-4-4"}],["path",{d:"m19 5-1.256 1.256"}],["path",{d:"M20 12h2"}]];var QC=[["path",{d:"M10 21v-1"}],["path",{d:"M10 4V3"}],["path",{d:"M10 9a3 3 0 0 0 0 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6 1.5-3H22"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h1"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}]];var VC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]];var GC=[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var IC=[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var zC=[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]];var NC=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"}],["path",{d:"M 7 17h.01"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"}]];var FC=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var HC=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]];var DC=[["path",{d:"m11 19-6-6"}],["path",{d:"m5 21-2-2"}],["path",{d:"m8 16-4 4"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5"}]];var BC=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21"}]];var OC=[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]];var TC=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]];var PC=[["path",{d:"M12 21v-6"}],["path",{d:"M12 9V3"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var SC=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var AC=[["path",{d:"M14 14v2"}],["path",{d:"M14 20v2"}],["path",{d:"M14 2v2"}],["path",{d:"M14 8v2"}],["path",{d:"M2 15h8"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"}],["path",{d:"M2 9h8"}],["path",{d:"M22 15h-4"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["path",{d:"M22 9h-4"}],["path",{d:"M5 3v18"}]];var qC=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 5h.01"}],["path",{d:"M21 12h.01"}],["path",{d:"M21 19h.01"}]];var EC=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var CC=[["path",{d:"M14 10h2"}],["path",{d:"M15 22v-8"}],["path",{d:"M15 2v4"}],["path",{d:"M2 10h2"}],["path",{d:"M20 10h2"}],["path",{d:"M3 19h18"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"}],["path",{d:"M8 10h2"}],["path",{d:"M9 22v-8"}],["path",{d:"M9 2v4"}]];var xC=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var wC=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"}],["path",{d:"M8 18h.01"}]];var UC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var MC=[["circle",{cx:"7",cy:"7",r:"5"}],["circle",{cx:"17",cy:"17",r:"5"}],["path",{d:"M12 17h10"}],["path",{d:"m3.46 10.54 7.08-7.08"}]];var RC=[["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"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}]];var jC=[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor"}]];var LC=[["path",{d:"M4 4v16"}]];var yC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var fC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var kC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var bC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var vC=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var hC=[["circle",{cx:"17",cy:"4",r:"2"}],["path",{d:"M15.59 5.41 5.41 15.59"}],["circle",{cx:"4",cy:"17",r:"2"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12"}]];var $C=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"}],["path",{d:"m13.56 11.747 4.332-.924"}],["path",{d:"m16 21-3.105-6.21"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"}],["path",{d:"m6.158 8.633 1.114 4.456"}],["path",{d:"m8 21 3.105-6.21"}],["circle",{cx:"12",cy:"13",r:"2"}]];var gC=[["circle",{cx:"4",cy:"4",r:"2"}],["path",{d:"m14 5 3-3 3 3"}],["path",{d:"m14 10 3-3 3 3"}],["path",{d:"M17 14V2"}],["path",{d:"M17 14H7l-5 8h20Z"}],["path",{d:"M8 14v8"}],["path",{d:"m9 14 5 8"}]];var _C=[["path",{d:"M3.5 21 14 3"}],["path",{d:"M20.5 21 10 3"}],["path",{d:"M15.5 21 12 15l-3.5 6"}],["path",{d:"M2 21h20"}]];var mC=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var _9=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"}],["path",{d:"m16 2 6 6"}],["path",{d:"M12 16H4"}]];var uC=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"}],["path",{d:"M3 2h7"}],["path",{d:"M14 2h7"}],["path",{d:"M9 16H4"}],["path",{d:"M20 16h-5"}]];var dC=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14.5 16h-5"}]];var m9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var u9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var d9=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var X5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var cC=[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"}],["path",{d:"M9 6v12"}]];var c9=[["path",{d:"M15 5h6"}],["path",{d:"M15 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"}],["path",{d:"M3.92 10h6.16"}]];var pC=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]];var nC=[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]];var lC=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["circle",{cx:"17",cy:"15",r:"3"}],["path",{d:"m21 19-1.9-1.9"}]];var p9=[["path",{d:"M14 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}],["path",{d:"M7 8h8"}],["path",{d:"M9 21h1"}],["path",{d:"M9 3h1"}]];var n9=[["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13"}],["path",{d:"M3 19h6"}],["path",{d:"M3 5h18"}]];var iC=[["path",{d:"M2 10s3-3 3-8"}],["path",{d:"M22 10s-3-3-3-8"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8"}],["path",{d:"M2 10s2 2 2 5"}],["path",{d:"M22 10s-2 2-2 5"}],["path",{d:"M8 15h8"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}]];var rC=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"M10.585 15H10"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h2"}]];var sC=[["path",{d:"M12 9a4 4 0 0 0-2 7.5"}],["path",{d:"M12 3v2"}],["path",{d:"m6.6 18.4-1.4 1.4"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}],["path",{d:"M4 13H2"}],["path",{d:"M6.34 7.34 4.93 5.93"}]];var aC=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var tC=[["path",{d:"M17 14V2"}],["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"}]];var oC=[["path",{d:"M7 10v12"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"}]];var eC=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9 12 2 2 4-4"}]];var Zx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}]];var Jx=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 9h.01"}],["path",{d:"m15 9-6 6"}],["path",{d:"M15 15h.01"}]];var Kx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var Yx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}]];var Xx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}],["path",{d:"m9.5 9.5 5 5"}]];var Wx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]];var Qx=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"}],["path",{d:"m12 13.5 3.75.5"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var Vx=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var Gx=[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]];var Ix=[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]];var zx=[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]];var Nx=[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Fx=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Hx=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"}]];var Dx=[["path",{d:"M10 15h4"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}]];var Bx=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Ox=[["path",{d:"M12 20v-6"}],["path",{d:"M19.656 14H22"}],["path",{d:"M2 14h12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]];var Tx=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var Px=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var Sx=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"}],["path",{d:"M8 13v9"}],["path",{d:"M16 22v-9"}],["path",{d:"m9 6 1 7"}],["path",{d:"m15 6-1 7"}],["path",{d:"M12 6V2"}],["path",{d:"M13 2h-2"}]];var Ax=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]];var qx=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"}],["path",{d:"M16 18h-5"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"}],["path",{d:"M4 11V4"}],["path",{d:"M7 15h.01"}],["path",{d:"M8 10.1V4"}],["circle",{cx:"18",cy:"18",r:"2"}],["circle",{cx:"7",cy:"15",r:"5"}]];var Ex=[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0"}]];var Cx=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1"}],["path",{d:"m9 15-1-1"}],["path",{d:"m15 15 1-1"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"}],["path",{d:"m8 19-2 3"}],["path",{d:"m16 19 2 3"}]];var xx=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"}],["path",{d:"M10 15h.01"}],["path",{d:"M14 15h.01"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"}],["path",{d:"m9 19-2 3"}],["path",{d:"m15 19 2 3"}]];var l9=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}]];var wx=[["path",{d:"M2 17 17 2"}],["path",{d:"m2 14 8 8"}],["path",{d:"m5 11 8 8"}],["path",{d:"m8 8 8 8"}],["path",{d:"m11 5 8 8"}],["path",{d:"m14 2 8 8"}],["path",{d:"M7 22 22 7"}]];var Ux=[["path",{d:"M12 16v6"}],["path",{d:"M14 20h-4"}],["path",{d:"M18 2h4v4"}],["path",{d:"m2 2 7.17 7.17"}],["path",{d:"M2 5.355V2h3.357"}],["path",{d:"m22 2-7.17 7.17"}],["path",{d:"M8 5 5 8"}],["circle",{cx:"12",cy:"12",r:"4"}]];var Mx=[["path",{d:"M10 11v6"}],["path",{d:"M14 11v6"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var Rx=[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var jx=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"}],["path",{d:"M12 19v3"}]];var i9=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]];var Lx=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]];var yx=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]];var fx=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var kx=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["rect",{width:"3",height:"9",x:"7",y:"7"}],["rect",{width:"3",height:"5",x:"14",y:"7"}]];var bx=[["path",{d:"M14.828 14.828 21 21"}],["path",{d:"M21 16v5h-5"}],["path",{d:"m21 3-9 9-4-4-6 6"}],["path",{d:"M21 8V3h-5"}]];var vx=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var r9=[["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"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var hx=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013"}],["path",{d:"M14 21h2"}],["path",{d:"m15.874 7.743 1 1.732"}],["path",{d:"m18.849 12.952 1 1.732"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839"}],["path",{d:"m5.136 12.952-1 1.732"}],["path",{d:"M8 21h2"}],["path",{d:"m8.102 7.743-1 1.732"}]];var $x=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]];var gx=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"}]];var _x=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6"}]];var mx=[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9"}],["path",{d:"M15 19H9"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"}],["circle",{cx:"17",cy:"19",r:"2"}],["circle",{cx:"7",cy:"19",r:"2"}]];var ux=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M15 18H9"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var dx=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var cx=[["path",{d:"M10 12.01h.01"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4"}],["circle",{cx:"10",cy:"12",r:"4"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var px=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"}],["path",{d:"M4.82 7.9 8 10"}],["path",{d:"M15.18 7.9 12 10"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2"}]];var nx=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var s9=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var lx=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var ix=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var rx=[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"}]];var sx=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"}]];var ax=[["path",{d:"M12 4v16"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"}],["path",{d:"M9 20h6"}]];var tx=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"}]];var ox=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"}]];var ex=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var Zw=[["path",{d:"M9 14 4 9l5-5"}],["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"}]];var Jw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var Kw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var Yw=[["path",{d:"M16 12h6"}],["path",{d:"M8 12H2"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 15 3-3-3-3"}],["path",{d:"m5 9-3 3 3 3"}]];var Xw=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m15 5-3-3-3 3"}]];var Ww=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var a9=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 16h.01"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"}],["path",{d:"M6 12h.01"}],["path",{d:"M6 16h.01"}],["circle",{cx:"12",cy:"10",r:"2"}]];var Qw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var Vw=[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16"}]];var Gw=[["path",{d:"M12 3v12"}],["path",{d:"m17 8-5-5-5 5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}]];var Iw=[["path",{d:"m19 5 3-3"}],["path",{d:"m2 22 3-3"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"}]];var zw=[["path",{d:"m16 11 2 2 4-4"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}]];var Nw=[["circle",{cx:"10",cy:"7",r:"1"}],["circle",{cx:"4",cy:"20",r:"1"}],["path",{d:"M4.7 19.3 19 5"}],["path",{d:"m21 3-3 1 2 2Z"}],["path",{d:"M9.26 7.68 5 12l2 5"}],["path",{d:"m10 14 5 2 3.5-3.5"}],["path",{d:"m18 12 1-1 1 1-1 1Z"}]];var Fw=[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2"}],["path",{d:"m14.305 16.53.923-.382"}],["path",{d:"m15.228 13.852-.923-.383"}],["path",{d:"m16.852 12.228-.383-.923"}],["path",{d:"m16.852 17.772-.383.924"}],["path",{d:"m19.148 12.228.383-.923"}],["path",{d:"m19.53 18.696-.382-.924"}],["path",{d:"m20.772 13.852.924-.383"}],["path",{d:"m20.772 16.148.924.383"}],["circle",{cx:"18",cy:"15",r:"3"}],["circle",{cx:"9",cy:"7",r:"4"}]];var Hw=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899"}]];var Dw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var Bw=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"7",r:"4"}]];var Ow=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var t9=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m16 19 2 2 4-4"}]];var o9=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"18",cy:"18",r:"3"}]];var e9=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var Tw=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"8",r:"5"}]];var ZZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M19 16v6"}],["path",{d:"M22 19h-6"}]];var Pw=[["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.9-1.9"}]];var JZ=[["path",{d:"M2 21a8 8 0 0 1 11.873-7"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m17 17 5 5"}],["path",{d:"m22 17-5 5"}]];var KZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var Sw=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.9-1.9"}]];var Aw=[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}]];var qw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13"}]];var Ew=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]];var YZ=[["path",{d:"M18 21a8 8 0 0 0-16 0"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"}]];var Cw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{cx:"9",cy:"7",r:"4"}]];var XZ=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]];var WZ=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]];var xw=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var ww=[["path",{d:"M12 2v20"}],["path",{d:"M2 5h20"}],["path",{d:"M3 3v2"}],["path",{d:"M7 3v2"}],["path",{d:"M17 3v2"}],["path",{d:"M21 3v2"}],["path",{d:"m19 5-7 7-7-7"}]];var Uw=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 7.9 2.7 2.7"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 10.6 2.7-2.7"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 16.1 2.7-2.7"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 13.4 2.7 2.7"}],["circle",{cx:"12",cy:"12",r:"2"}]];var Mw=[["path",{d:"M19.5 7a24 24 0 0 1 0 10"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1"}]];var Rw=[["path",{d:"M16 8q6 0 6-6-6 0-6 6"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"}]];var jw=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2"}]];var Lw=[["path",{d:"M10 20h4"}],["path",{d:"M12 16v6"}],["path",{d:"M17 2h4v4"}],["path",{d:"m21 2-5.46 5.46"}],["circle",{cx:"12",cy:"11",r:"5"}]];var yw=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var fw=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var kw=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1"}]];var bw=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}],["path",{d:"m2 2 20 20"}]];var vw=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2"}]];var hw=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 8h20"}],["circle",{cx:"8",cy:"14",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"14",r:"2"}]];var $w=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var gw=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var _w=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"}],["circle",{cx:"12",cy:"12",r:"10"}]];var mw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}]];var uw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728"}]];var dw=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96"}],["path",{d:"m2 2 20 20"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686"}]];var cw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15"}]];var pw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}]];var nw=[["path",{d:"m9 12 2 2 4-4"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"}],["path",{d:"M22 19H2"}]];var lw=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"}]];var QZ=[["path",{d:"M17 14h.01"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"}]];var iw=[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]];var VZ=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]];var rw=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"}],["circle",{cx:"8",cy:"9",r:"2"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var sw=[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h.01"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]];var aw=[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"}],["path",{d:"M6 13h12"}],["path",{d:"M6 17h12"}]];var tw=[["path",{d:"M3 6h3"}],["path",{d:"M17 6h.01"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2"}],["circle",{cx:"12",cy:"13",r:"5"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"}]];var ow=[["path",{d:"M12 10v2.2l1.6 1"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}],["circle",{cx:"12",cy:"12",r:"6"}]];var ew=[["path",{d:"M19 5a2 2 0 0 0-2 2v11"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M7 13h10"}],["path",{d:"M7 9h10"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11"}]];var ZU=[["circle",{cx:"12",cy:"4.5",r:"2.5"}],["path",{d:"m10.2 6.3-3.9 3.9"}],["circle",{cx:"4.5",cy:"12",r:"2.5"}],["path",{d:"M7 12h10"}],["circle",{cx:"19.5",cy:"12",r:"2.5"}],["path",{d:"m13.8 17.7 3.9-3.9"}],["circle",{cx:"12",cy:"19.5",r:"2.5"}]];var JU=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var KU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var YU=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414"}],["path",{d:"m12 6 .6 1"}],["path",{d:"m2 2 20 20"}]];var XU=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]];var WU=[["circle",{cx:"12",cy:"5",r:"3"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"}]];var QU=[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var VU=[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]];var GU=[["circle",{cx:"7",cy:"12",r:"3"}],["path",{d:"M10 9v6"}],["circle",{cx:"17",cy:"12",r:"3"}],["path",{d:"M14 7v8"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var IU=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31"}],["circle",{cx:"18",cy:"18",r:"3"}]];var zU=[["path",{d:"M12 20h.01"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var NU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var FU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764"}],["path",{d:"m2 2 20 20"}]];var HU=[["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406"}]];var DU=[["path",{d:"M12 20h.01"}]];var BU=[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"}],["path",{d:"M11.965 14.105h4"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.965 22.105v-4"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032"}],["path",{d:"M8.5 16.429h.01"}]];var OU=[["path",{d:"M12 20h.01"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var TU=[["path",{d:"M10 2v8"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"m6 6 4 4 4-4"}]];var PU=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2"}]];var SU=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var AU=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]];var qU=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2"}]];var EU=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}]];var CU=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var xU=[["path",{d:"m19 12-1.5 3"}],["path",{d:"M19.63 18.81 22 20"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"}]];var wU=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"}],["path",{d:"m10 15 5-3-5-3z"}]];var UU=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"}],["path",{d:"m2 2 20 20"}]];var MU=[["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"}]];var RU=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var jU=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var fk=({icons:Z={},nameAttr:J="data-lucide",attrs:K={},root:Y=document,inTemplates:X}={})=>{if(!Object.values(Z).length)throw Error(`Please provide an icons object. 13 + `)]))])),m5(Q([M("transform","translate(64, 64)")]),Q([K5(Q([H("backfill-ellipse1"),M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#backfill-board1)"),M("style","transform-origin: 0 -28px;")])),K5(Q([H("backfill-ellipse2"),M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#backfill-board2)"),M("style","transform-origin: 0 0;")])),K5(Q([H("backfill-ellipse3"),M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32"),M("style","transform-origin: 0 28px;")]))]))]))}var gj={};NL(gj,{icons:()=>$j,createIcons:()=>ak,createElement:()=>BK,ZoomOut:()=>hU,ZoomIn:()=>bU,ZapOff:()=>fU,Zap:()=>kU,Youtube:()=>yU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>jU,Wrench:()=>RU,WrapText:()=>e9,Worm:()=>LU,Workflow:()=>MU,WineOff:()=>wU,Wine:()=>UU,WindArrowDown:()=>CU,Wind:()=>xU,WifiZero:()=>AU,WifiSync:()=>qU,WifiPen:()=>SU,WifiOff:()=>PU,WifiLow:()=>TU,WifiHigh:()=>OU,WifiCog:()=>BU,Wifi:()=>EU,WholeWord:()=>DU,WheatOff:()=>FU,Wheat:()=>HU,Weight:()=>NU,WebhookOff:()=>IU,Webhook:()=>zU,Webcam:()=>GU,Waypoints:()=>QU,WavesLadder:()=>WU,Waves:()=>VU,Watch:()=>XU,WashingMachine:()=>YU,Warehouse:()=>KU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>JU,Wallpaper:()=>ZU,WalletMinimal:()=>DZ,WalletCards:()=>ow,Wallet2:()=>DZ,Wallet:()=>ew,Vote:()=>tw,VolumeX:()=>rw,VolumeOff:()=>sw,Volume2:()=>lw,Volume1:()=>iw,Volume:()=>aw,Volleyball:()=>nw,Voicemail:()=>pw,View:()=>cw,Videotape:()=>dw,VideoOff:()=>mw,Video:()=>uw,VibrateOff:()=>gw,Vibrate:()=>_w,Verified:()=>b4,VenusAndMars:()=>vw,Venus:()=>$w,VenetianMask:()=>hw,Vegan:()=>bw,VectorSquare:()=>kw,Vault:()=>fw,Variable:()=>Lw,UtilityPole:()=>yw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>jw,UserX2:()=>IZ,UserX:()=>Mw,UserStar:()=>Uw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>ww,UserRoundX:()=>IZ,UserRoundSearch:()=>xw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Cw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Ew,UserPen:()=>qw,UserMinus2:()=>VZ,UserMinus:()=>Aw,UserLock:()=>Sw,UserCog2:()=>QZ,UserCog:()=>Pw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>Ow,User2:()=>zZ,User:()=>Rw,Usb:()=>Tw,UploadCloud:()=>b7,Upload:()=>Dw,Unplug:()=>Bw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Fw,Unlink:()=>Hw,University:()=>XZ,Ungroup:()=>Nw,UnfoldVertical:()=>zw,UnfoldHorizontal:()=>Iw,UndoDot:()=>Gw,Undo2:()=>Qw,Undo:()=>Vw,Underline:()=>Ww,UmbrellaOff:()=>Yw,Umbrella:()=>Xw,TypeOutline:()=>Jw,Type:()=>Kw,Twitter:()=>Zw,Twitch:()=>ox,TvMinimalPlay:()=>tx,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>ex,Turtle:()=>ax,Turntable:()=>rx,TurkishLira:()=>sx,TruckElectric:()=>ix,Truck:()=>lx,Trophy:()=>nx,TriangleRight:()=>px,TriangleDashed:()=>dx,TriangleAlert:()=>KZ,Triangle:()=>cx,TrendingUpDown:()=>mx,TrendingUp:()=>ux,TrendingDown:()=>gx,Trello:()=>_x,Trees:()=>$x,TreePine:()=>vx,TreePalm:()=>JZ,TreeDeciduous:()=>hx,Trash2:()=>kx,Trash:()=>bx,Transgender:()=>fx,TramFront:()=>ZZ,TrainTrack:()=>yx,TrainFrontTunnel:()=>Lx,TrainFront:()=>jx,Train:()=>ZZ,TrafficCone:()=>Rx,Tractor:()=>Mx,ToyBrick:()=>Ux,TowerControl:()=>wx,TouchpadOff:()=>Ex,Touchpad:()=>Cx,Torus:()=>xx,Tornado:()=>qx,ToolCase:()=>Ax,Toilet:()=>Sx,ToggleRight:()=>Px,ToggleLeft:()=>Tx,TimerReset:()=>Bx,TimerOff:()=>Dx,Timer:()=>Ox,TicketsPlane:()=>Fx,Tickets:()=>Hx,TicketX:()=>zx,TicketSlash:()=>Ix,TicketPlus:()=>Gx,TicketPercent:()=>Vx,TicketMinus:()=>Qx,TicketCheck:()=>Wx,Ticket:()=>Nx,ThumbsUp:()=>Xx,ThumbsDown:()=>Yx,ThermometerSun:()=>Jx,ThermometerSnowflake:()=>Zx,Thermometer:()=>Kx,Theater:()=>eC,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>oC,TextQuote:()=>tC,TextInitial:()=>t9,TextCursorInput:()=>rC,TextCursor:()=>aC,TextAlignStart:()=>I5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>I5,TestTubes:()=>lC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>sC,TerminalSquare:()=>c9,Terminal:()=>iC,TentTree:()=>pC,Tent:()=>nC,Telescope:()=>cC,Target:()=>uC,Tangent:()=>dC,Tally5:()=>mC,Tally4:()=>_C,Tally3:()=>gC,Tally2:()=>$C,Tally1:()=>vC,Tags:()=>hC,Tag:()=>bC,Tablets:()=>kC,TabletSmartphone:()=>yC,Tablet:()=>fC,TableRowsSplit:()=>jC,TableProperties:()=>RC,TableOfContents:()=>MC,TableConfig:()=>X5,TableColumnsSplit:()=>UC,TableCellsSplit:()=>wC,TableCellsMerge:()=>xC,Table2:()=>CC,Table:()=>LC,Syringe:()=>EC,Swords:()=>qC,Sword:()=>AC,SwitchCamera:()=>SC,SwissFranc:()=>PC,SwatchBook:()=>TC,Superscript:()=>OC,Sunset:()=>BC,Sunrise:()=>DC,SunSnow:()=>FC,SunMoon:()=>NC,SunMedium:()=>zC,SunDim:()=>IC,Sun:()=>HC,Subtitles:()=>m4,Subscript:()=>GC,Strikethrough:()=>VC,StretchVertical:()=>QC,StretchHorizontal:()=>WC,Store:()=>XC,StopCircle:()=>M7,StickyNote:()=>YC,Sticker:()=>KC,Stethoscope:()=>JC,StepForward:()=>ZC,StepBack:()=>eE,Stars:()=>s6,StarOff:()=>tE,StarHalf:()=>aE,Star:()=>oE,Stamp:()=>rE,Squirrel:()=>sE,SquircleDashed:()=>iE,Squircle:()=>lE,SquaresUnite:()=>nE,SquaresSubtract:()=>cE,SquaresIntersect:()=>pE,SquaresExclude:()=>dE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>mE,SquareStar:()=>_E,SquareStack:()=>gE,SquareSquare:()=>$E,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>g9,SquareRoundCorner:()=>vE,SquareRadical:()=>hE,SquarePower:()=>$9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>S8,SquarePause:()=>bE,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>G5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>kE,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>yE,SquareDashedBottom:()=>fE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>G5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>uE,Sprout:()=>LE,SprayCan:()=>jE,Spotlight:()=>RE,Spool:()=>ME,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>UE,SplinePointer:()=>xE,Spline:()=>wE,SpellCheck2:()=>EE,SpellCheck:()=>CE,Speech:()=>qE,Speaker:()=>AE,Sparkles:()=>s6,Sparkle:()=>SE,Spade:()=>PE,Space:()=>TE,Soup:()=>OE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>BE,SoapDispenserDroplet:()=>HE,Snowflake:()=>DE,Snail:()=>FE,SmilePlus:()=>zE,Smile:()=>NE,SmartphoneNfc:()=>GE,SmartphoneCharging:()=>VE,Smartphone:()=>IE,SlidersVertical:()=>l6,SlidersHorizontal:()=>QE,Sliders:()=>l6,Slice:()=>WE,SlashSquare:()=>m9,Slash:()=>XE,Slack:()=>YE,Skull:()=>KE,SkipForward:()=>JE,SkipBack:()=>ZE,Siren:()=>eq,SignpostBig:()=>tq,Signpost:()=>oq,Signature:()=>aq,SignalZero:()=>sq,SignalMedium:()=>lq,SignalLow:()=>iq,SignalHigh:()=>nq,Signal:()=>rq,SigmaSquare:()=>_9,Sigma:()=>pq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>cq,Shrub:()=>dq,Shrink:()=>uq,Shrimp:()=>mq,Shredder:()=>_q,ShowerHead:()=>gq,Shovel:()=>$q,ShoppingCart:()=>vq,ShoppingBasket:()=>hq,ShoppingBag:()=>bq,Shirt:()=>kq,ShipWheel:()=>yq,Ship:()=>fq,ShieldX:()=>i6,ShieldUser:()=>jq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>Rq,ShieldOff:()=>Mq,ShieldMinus:()=>Uq,ShieldHalf:()=>wq,ShieldEllipsis:()=>xq,ShieldClose:()=>i6,ShieldCheck:()=>Cq,ShieldBan:()=>qq,ShieldAlert:()=>Eq,Shield:()=>Lq,Shell:()=>Sq,Sheet:()=>Aq,Share2:()=>Tq,Share:()=>Pq,Shapes:()=>Oq,Settings2:()=>Dq,Settings:()=>Bq,ServerOff:()=>Fq,ServerCrash:()=>Nq,ServerCog:()=>Iq,Server:()=>Hq,SeparatorVertical:()=>zq,SeparatorHorizontal:()=>Gq,SendToBack:()=>Qq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Vq,Section:()=>Wq,SearchX:()=>Yq,SearchSlash:()=>Kq,SearchCode:()=>Zq,SearchCheck:()=>Jq,Search:()=>Xq,ScrollText:()=>oA,Scroll:()=>eA,ScreenShareOff:()=>aA,ScreenShare:()=>tA,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>g9,ScissorsLineDashed:()=>sA,Scissors:()=>rA,School2:()=>XZ,School:()=>lA,ScatterChart:()=>e4,ScanText:()=>nA,ScanSearch:()=>pA,ScanQrCode:()=>cA,ScanLine:()=>dA,ScanHeart:()=>uA,ScanFace:()=>mA,ScanEye:()=>_A,ScanBarcode:()=>gA,Scan:()=>iA,Scaling:()=>$A,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>vA,SaveOff:()=>bA,SaveAll:()=>kA,Save:()=>hA,SaudiRiyal:()=>fA,SatelliteDish:()=>LA,Satellite:()=>yA,Sandwich:()=>jA,Salad:()=>RA,Sailboat:()=>MA,RussianRuble:()=>UA,RulerDimensionLine:()=>xA,Ruler:()=>wA,Rss:()=>EA,Rows4:()=>CA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>qA,RouteOff:()=>SA,Route:()=>AA,RotateCwSquare:()=>TA,RotateCw:()=>PA,RotateCcwSquare:()=>BA,RotateCcwKey:()=>DA,RotateCcw:()=>OA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>HA,RollerCoaster:()=>FA,RockingChair:()=>NA,Rocket:()=>zA,Ribbon:()=>IA,Rewind:()=>GA,ReplyAll:()=>QA,Reply:()=>VA,ReplaceAll:()=>XA,Replace:()=>WA,Repeat2:()=>KA,Repeat1:()=>JA,Repeat:()=>YA,RemoveFormatting:()=>ZA,Regex:()=>eS,Refrigerator:()=>oS,RefreshCwOff:()=>aS,RefreshCw:()=>tS,RefreshCcwDot:()=>sS,RefreshCcw:()=>rS,RedoDot:()=>iS,Redo2:()=>nS,Redo:()=>lS,Recycle:()=>pS,RectangleVertical:()=>cS,RectangleHorizontal:()=>dS,RectangleGoggles:()=>uS,RectangleEllipsis:()=>_6,RectangleCircle:()=>mS,ReceiptTurkishLira:()=>_S,ReceiptText:()=>$S,ReceiptSwissFranc:()=>vS,ReceiptRussianRuble:()=>hS,ReceiptPoundSterling:()=>bS,ReceiptJapaneseYen:()=>kS,ReceiptIndianRupee:()=>fS,ReceiptEuro:()=>yS,ReceiptCent:()=>LS,Receipt:()=>gS,Ratio:()=>jS,Rat:()=>MS,Rainbow:()=>RS,RailSymbol:()=>US,Radius:()=>wS,RadioTower:()=>CS,RadioReceiver:()=>ES,Radio:()=>xS,Radical:()=>qS,Radiation:()=>AS,Radar:()=>SS,Rabbit:()=>PS,Quote:()=>TS,QrCode:()=>BS,Pyramid:()=>OS,Puzzle:()=>DS,Proportions:()=>HS,Projector:()=>FS,PrinterCheck:()=>zS,Printer:()=>NS,Presentation:()=>IS,PowerSquare:()=>$9,PowerOff:()=>VS,PowerCircle:()=>w7,Power:()=>GS,PoundSterling:()=>QS,Popsicle:()=>WS,Popcorn:()=>XS,PointerOff:()=>KS,Pointer:()=>YS,Podcast:()=>JS,PocketKnife:()=>eP,Pocket:()=>ZS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>oP,PlugZap2:()=>g6,PlugZap:()=>g6,Plug2:()=>aP,Plug:()=>tP,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>rP,PlaneTakeoff:()=>lP,PlaneLanding:()=>iP,Plane:()=>sP,Pizza:()=>nP,Pipette:()=>cP,PinOff:()=>pP,Pin:()=>dP,PillBottle:()=>mP,Pill:()=>uP,PilcrowSquare:()=>b9,PilcrowRight:()=>gP,PilcrowLeft:()=>vP,Pilcrow:()=>_P,PiggyBank:()=>$P,PieChart:()=>o4,PictureInPicture2:()=>bP,PictureInPicture:()=>hP,Pickaxe:()=>kP,Piano:()=>fP,PiSquare:()=>k9,Pi:()=>yP,PhoneOutgoing:()=>jP,PhoneOff:()=>RP,PhoneMissed:()=>MP,PhoneIncoming:()=>UP,PhoneForwarded:()=>wP,PhoneCall:()=>xP,Phone:()=>LP,PhilippinePeso:()=>CP,PersonStanding:()=>EP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>qP,Pentagon:()=>AP,PencilRuler:()=>PP,PencilOff:()=>TP,PencilLine:()=>OP,Pencil:()=>SP,PenTool:()=>BP,PenSquare:()=>S8,PenOff:()=>DP,PenLine:()=>v6,PenBox:()=>S8,Pen:()=>$6,PcCase:()=>HP,PawPrint:()=>FP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>NP,PartyPopper:()=>zP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>GP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>IP,Paperclip:()=>VP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>QP,PanelsLeftRight:()=>$7,PanelsLeftBottom:()=>XP,PanelTopOpen:()=>YP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>KP,PanelTopBottomDashed:()=>JP,PanelTop:()=>WP,PanelRightOpen:()=>ZP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>oT,PanelRight:()=>eT,PanelLeftRightDashed:()=>tT,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>rT,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>sT,PanelBottom:()=>aT,Panda:()=>lT,Palmtree:()=>JZ,Palette:()=>iT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>nT,PaintRoller:()=>pT,PaintBucket:()=>cT,PackageX:()=>uT,PackageSearch:()=>mT,PackagePlus:()=>_T,PackageOpen:()=>gT,PackageMinus:()=>$T,PackageCheck:()=>vT,Package2:()=>hT,Package:()=>dT,Outdent:()=>Q5,Origami:()=>bT,Orbit:()=>kT,Option:()=>fT,Omega:()=>yT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>jT,OctagonAlert:()=>x6,Octagon:()=>LT,NutOff:()=>MT,Nut:()=>RT,NotepadTextDashed:()=>wT,NotepadText:()=>UT,NotebookText:()=>CT,NotebookTabs:()=>ET,NotebookPen:()=>qT,Notebook:()=>xT,NonBinary:()=>AT,Nfc:()=>ST,Newspaper:()=>PT,Network:()=>TT,NavigationOff:()=>BT,Navigation2Off:()=>HT,Navigation2:()=>DT,Navigation:()=>OT,Music4:()=>NT,Music3:()=>zT,Music2:()=>IT,Music:()=>FT,MoveVertical:()=>VT,MoveUpRight:()=>WT,MoveUpLeft:()=>XT,MoveUp:()=>QT,MoveRight:()=>YT,MoveLeft:()=>KT,MoveHorizontal:()=>JT,MoveDownRight:()=>e2,MoveDownLeft:()=>o2,MoveDown:()=>ZT,MoveDiagonal2:()=>a2,MoveDiagonal:()=>t2,Move3d:()=>C6,Move3D:()=>C6,Move:()=>GT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>l2,MousePointerBan:()=>i2,MousePointer2:()=>n2,MousePointer:()=>s2,MouseOff:()=>p2,Mouse:()=>r2,MountainSnow:()=>d2,Mountain:()=>c2,Motorbike:()=>u2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>_2,Moon:()=>m2,MonitorX:()=>$2,MonitorUp:()=>v2,MonitorStop:()=>h2,MonitorSpeaker:()=>b2,MonitorSmartphone:()=>k2,MonitorPlay:()=>f2,MonitorPause:()=>y2,MonitorOff:()=>L2,MonitorDown:()=>j2,MonitorDot:()=>R2,MonitorCog:()=>M2,MonitorCloud:()=>U2,MonitorCheck:()=>w2,Monitor:()=>g2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>x2,Minimize2:()=>E2,Minimize:()=>C2,MilkOff:()=>q2,Milk:()=>A2,Milestone:()=>S2,Microwave:()=>P2,Microscope:()=>T2,Microchip:()=>O2,MicVocal:()=>E6,MicOff:()=>D2,Mic2:()=>E6,Mic:()=>B2,MessagesSquare:()=>H2,MessageSquareX:()=>N2,MessageSquareWarning:()=>z2,MessageSquareText:()=>I2,MessageSquareShare:()=>V2,MessageSquareReply:()=>G2,MessageSquareQuote:()=>Q2,MessageSquarePlus:()=>W2,MessageSquareOff:()=>X2,MessageSquareMore:()=>Y2,MessageSquareLock:()=>K2,MessageSquareHeart:()=>J2,MessageSquareDot:()=>Z2,MessageSquareDiff:()=>eO,MessageSquareDashed:()=>oO,MessageSquareCode:()=>tO,MessageSquare:()=>F2,MessageCircleX:()=>rO,MessageCircleWarning:()=>sO,MessageCircleReply:()=>lO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>iO,MessageCircleOff:()=>nO,MessageCircleMore:()=>pO,MessageCircleHeart:()=>cO,MessageCircleDashed:()=>dO,MessageCircleCode:()=>uO,MessageCircle:()=>aO,Merge:()=>mO,MenuSquare:()=>M9,Menu:()=>_O,MemoryStick:()=>gO,Meh:()=>$O,MegaphoneOff:()=>hO,Megaphone:()=>vO,Medal:()=>bO,Maximize2:()=>fO,Maximize:()=>kO,Martini:()=>yO,MarsStroke:()=>jO,Mars:()=>LO,MapPlus:()=>RO,MapPinned:()=>UO,MapPinXInside:()=>CO,MapPinX:()=>xO,MapPinPlusInside:()=>qO,MapPinPlus:()=>EO,MapPinPen:()=>A6,MapPinOff:()=>AO,MapPinMinusInside:()=>SO,MapPinMinus:()=>PO,MapPinHouse:()=>TO,MapPinCheckInside:()=>BO,MapPinCheck:()=>OO,MapPin:()=>wO,MapMinus:()=>DO,Map:()=>MO,Mails:()=>HO,Mailbox:()=>FO,MailX:()=>zO,MailWarning:()=>IO,MailSearch:()=>GO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>VO,MailOpen:()=>QO,MailMinus:()=>WO,MailCheck:()=>XO,Mail:()=>NO,Magnet:()=>YO,MSquare:()=>U9,Luggage:()=>KO,Lollipop:()=>JO,Logs:()=>ZO,LogOut:()=>eB,LogIn:()=>oB,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>aB,Lock:()=>tB,LocationEdit:()=>A6,LocateOff:()=>sB,LocateFixed:()=>lB,Locate:()=>rB,LoaderPinwheel:()=>nB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>iB,ListX:()=>cB,ListVideo:()=>dB,ListTree:()=>uB,ListTodo:()=>mB,ListStart:()=>_B,ListRestart:()=>$B,ListPlus:()=>vB,ListOrdered:()=>gB,ListMusic:()=>hB,ListMinus:()=>bB,ListIndentIncrease:()=>V5,ListIndentDecrease:()=>Q5,ListFilterPlus:()=>kB,ListFilter:()=>fB,ListEnd:()=>yB,ListCollapse:()=>LB,ListChevronsUpDown:()=>jB,ListChevronsDownUp:()=>RB,ListChecks:()=>MB,ListCheck:()=>UB,List:()=>pB,Linkedin:()=>wB,Link2Off:()=>EB,Link2:()=>CB,Link:()=>xB,LineSquiggle:()=>qB,LineChart:()=>s4,LightbulbOff:()=>SB,Lightbulb:()=>AB,Ligature:()=>PB,LifeBuoy:()=>OB,LibrarySquare:()=>w9,LibraryBig:()=>BB,Library:()=>TB,LetterText:()=>t9,Lectern:()=>DB,LeafyGreen:()=>HB,Leaf:()=>FB,LayoutTemplate:()=>NB,LayoutPanelTop:()=>zB,LayoutPanelLeft:()=>IB,LayoutList:()=>GB,LayoutGrid:()=>VB,LayoutDashboard:()=>QB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>WB,Layers:()=>B6,Laugh:()=>XB,LassoSelect:()=>KB,Lasso:()=>YB,LaptopMinimalCheck:()=>ZB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>JB,Languages:()=>eD,Landmark:()=>oD,LandPlot:()=>tD,LampWallUp:()=>rD,LampWallDown:()=>sD,LampFloor:()=>lD,LampDesk:()=>iD,LampCeiling:()=>nD,Lamp:()=>aD,KeyboardOff:()=>cD,KeyboardMusic:()=>dD,Keyboard:()=>pD,KeySquare:()=>mD,KeyRound:()=>_D,Key:()=>uD,Kayak:()=>gD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>$D,Joystick:()=>vD,JapaneseYen:()=>hD,IterationCw:()=>bD,IterationCcw:()=>fD,Italic:()=>yD,Instagram:()=>kD,InspectionPanel:()=>LD,Inspect:()=>j9,Info:()=>RD,Infinity:()=>jD,IndianRupee:()=>MD,IndentIncrease:()=>V5,IndentDecrease:()=>Q5,Indent:()=>V5,Inbox:()=>UD,Import:()=>wD,Images:()=>xD,ImageUpscale:()=>ED,ImageUp:()=>qD,ImagePlus:()=>AD,ImagePlay:()=>SD,ImageOff:()=>PD,ImageMinus:()=>TD,ImageDown:()=>OD,Image:()=>CD,IdCardLanyard:()=>BD,IdCard:()=>DD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>FD,HousePlus:()=>HD,HousePlug:()=>zD,HouseHeart:()=>ND,House:()=>N6,Hourglass:()=>ID,Hotel:()=>GD,Hospital:()=>VD,HopOff:()=>WD,Hop:()=>QD,Home:()=>N6,History:()=>XD,Highlighter:()=>KD,Hexagon:()=>YD,HelpingHand:()=>z6,HelpCircle:()=>Y5,Heater:()=>JD,HeartPulse:()=>eH,HeartPlus:()=>oH,HeartOff:()=>tH,HeartMinus:()=>aH,HeartHandshake:()=>rH,HeartCrack:()=>sH,Heart:()=>ZD,Headset:()=>lH,Headphones:()=>iH,HeadphoneOff:()=>nH,Heading6:()=>cH,Heading5:()=>dH,Heading4:()=>uH,Heading3:()=>mH,Heading2:()=>_H,Heading1:()=>gH,Heading:()=>pH,HdmiPort:()=>$H,Haze:()=>vH,HatGlasses:()=>hH,Hash:()=>bH,HardHat:()=>kH,HardDriveUpload:()=>yH,HardDriveDownload:()=>LH,HardDrive:()=>fH,Handshake:()=>jH,Handbag:()=>RH,HandPlatter:()=>UH,HandMetal:()=>wH,HandHelping:()=>z6,HandHeart:()=>xH,HandGrab:()=>I6,HandFist:()=>CH,HandCoins:()=>EH,Hand:()=>MH,Hammer:()=>qH,Hamburger:()=>AH,Ham:()=>SH,Guitar:()=>PH,Group:()=>TH,GripVertical:()=>BH,GripHorizontal:()=>DH,Grip:()=>OH,Grid3x3:()=>W5,Grid3x2:()=>HH,Grid3X3:()=>W5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>W5,Grape:()=>FH,GraduationCap:()=>NH,Grab:()=>I6,Gpu:()=>zH,Goal:()=>IH,GlobeLock:()=>VH,Globe2:()=>m7,Globe:()=>GH,Glasses:()=>QH,GlassWater:()=>WH,Gitlab:()=>XH,Github:()=>YH,GitPullRequestDraft:()=>JH,GitPullRequestCreateArrow:()=>oF,GitPullRequestCreate:()=>ZH,GitPullRequestClosed:()=>eF,GitPullRequestArrow:()=>tF,GitPullRequest:()=>KH,GitMerge:()=>aF,GitGraph:()=>rF,GitFork:()=>sF,GitCompareArrows:()=>iF,GitCompare:()=>lF,GitCommitVertical:()=>nF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>cF,GitBranch:()=>pF,Gift:()=>dF,Ghost:()=>uF,GeorgianLari:()=>mF,Gem:()=>_F,Gavel:()=>gF,GaugeCircle:()=>T7,Gauge:()=>$F,GanttChartSquare:()=>G5,GanttChart:()=>t4,GamepadDirectional:()=>hF,Gamepad2:()=>bF,Gamepad:()=>vF,GalleryVerticalEnd:()=>fF,GalleryVertical:()=>kF,GalleryThumbnails:()=>yF,GalleryHorizontalEnd:()=>jF,GalleryHorizontal:()=>LF,FunnelX:()=>K6,FunnelPlus:()=>RF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>MF,Fuel:()=>UF,Frown:()=>wF,Framer:()=>xF,Frame:()=>CF,Forward:()=>EF,FormInput:()=>_6,Forklift:()=>qF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>AF,Folders:()=>SF,FolderX:()=>TF,FolderUp:()=>OF,FolderTree:()=>BF,FolderSync:()=>DF,FolderSymlink:()=>HF,FolderSearch2:()=>NF,FolderSearch:()=>FF,FolderRoot:()=>zF,FolderPlus:()=>IF,FolderPen:()=>J6,FolderOutput:()=>GF,FolderOpenDot:()=>QF,FolderOpen:()=>VF,FolderMinus:()=>WF,FolderLock:()=>XF,FolderKey:()=>YF,FolderKanban:()=>KF,FolderInput:()=>JF,FolderHeart:()=>ZF,FolderGit2:()=>tN,FolderGit:()=>eN,FolderEdit:()=>J6,FolderDown:()=>oN,FolderDot:()=>aN,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>rN,FolderClosed:()=>sN,FolderClock:()=>lN,FolderCheck:()=>iN,FolderArchive:()=>nN,Folder:()=>PF,FoldVertical:()=>pN,FoldHorizontal:()=>cN,Focus:()=>dN,Flower2:()=>mN,Flower:()=>uN,FlipVertical2:()=>gN,FlipVertical:()=>_N,FlipHorizontal2:()=>vN,FlipHorizontal:()=>$N,FlaskRound:()=>hN,FlaskConicalOff:()=>kN,FlaskConical:()=>bN,FlashlightOff:()=>yN,Flashlight:()=>fN,FlameKindling:()=>jN,Flame:()=>LN,FlagTriangleRight:()=>MN,FlagTriangleLeft:()=>UN,FlagOff:()=>xN,Flag:()=>RN,FishSymbol:()=>CN,FishOff:()=>EN,Fish:()=>wN,FireExtinguisher:()=>qN,Fingerprint:()=>AN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>SN,Files:()=>TN,FileX2:()=>BN,FileX:()=>ON,FileWarning:()=>DN,FileVolume2:()=>FN,FileVolume:()=>HN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>NN,FileUp:()=>zN,FileType2:()=>GN,FileType:()=>IN,FileText:()=>VN,FileTerminal:()=>QN,FileSymlink:()=>WN,FileStack:()=>XN,FileSpreadsheet:()=>YN,FileSliders:()=>KN,FileSignature:()=>r7,FileSearch2:()=>ZN,FileSearch:()=>JN,FileScan:()=>ez,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>oz,FilePlus:()=>tz,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>az,FileMusic:()=>rz,FileMinus2:()=>sz,FileMinus:()=>lz,FileLock2:()=>nz,FileLock:()=>iz,FileLineChart:()=>l7,FileKey2:()=>cz,FileKey:()=>pz,FileJson2:()=>uz,FileJson:()=>dz,FileInput:()=>mz,FileImage:()=>_z,FileHeart:()=>gz,FileEdit:()=>a7,FileDown:()=>$z,FileDigit:()=>vz,FileDiff:()=>hz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>kz,FileCode:()=>bz,FileClock:()=>fz,FileCheck2:()=>Lz,FileCheck:()=>yz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>Rz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>Mz,FileBadge:()=>jz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>wz,FileAudio:()=>Uz,FileArchive:()=>xz,File:()=>PN,Figma:()=>Cz,FerrisWheel:()=>Ez,Fence:()=>qz,Feather:()=>Az,FastForward:()=>Sz,Fan:()=>Pz,Factory:()=>Tz,Facebook:()=>Oz,EyeOff:()=>Hz,EyeClosed:()=>Fz,Eye:()=>Bz,ExternalLink:()=>Dz,Expand:()=>Nz,EvCharger:()=>zz,Euro:()=>Iz,EthernetPort:()=>Gz,Eraser:()=>Vz,EqualSquare:()=>E9,EqualNot:()=>Wz,EqualApproximately:()=>Xz,Equal:()=>Qz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Kz,EggFried:()=>Jz,Egg:()=>Yz,Edit3:()=>v6,Edit2:()=>$6,Edit:()=>S8,Eclipse:()=>Zz,EarthLock:()=>oI,Earth:()=>m7,EarOff:()=>tI,Ear:()=>eI,Dumbbell:()=>aI,Drumstick:()=>rI,Drum:()=>lI,Droplets:()=>sI,DropletOff:()=>nI,Droplet:()=>iI,Drone:()=>pI,Drill:()=>cI,Dribbble:()=>dI,Drama:()=>uI,DraftingCompass:()=>mI,DownloadCloud:()=>k7,Download:()=>_I,DotSquare:()=>q9,Dot:()=>gI,DoorOpen:()=>$I,DoorClosedLocked:()=>hI,DoorClosed:()=>vI,Donut:()=>bI,DollarSign:()=>kI,Dog:()=>fI,Dock:()=>yI,DnaOff:()=>jI,Dna:()=>LI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>RI,DiscAlbum:()=>UI,Disc3:()=>wI,Disc2:()=>xI,Disc:()=>MI,Diff:()=>CI,Dices:()=>qI,Dice6:()=>EI,Dice5:()=>AI,Dice4:()=>SI,Dice3:()=>PI,Dice2:()=>TI,Dice1:()=>OI,DiamondPlus:()=>DI,DiamondPercent:()=>_7,DiamondMinus:()=>HI,Diamond:()=>BI,Diameter:()=>FI,Dessert:()=>zI,Delete:()=>NI,DecimalsArrowRight:()=>II,DecimalsArrowLeft:()=>VI,DatabaseZap:()=>WI,DatabaseBackup:()=>QI,Database:()=>GI,Dam:()=>XI,Cylinder:()=>YI,Currency:()=>KI,CurlyBraces:()=>_4,CupSoda:()=>JI,Cuboid:()=>ZI,Crown:()=>e3,Crosshair:()=>o3,Cross:()=>t3,Crop:()=>a3,Croissant:()=>r3,CreditCard:()=>s3,CreativeCommons:()=>l3,Cpu:()=>i3,CornerUpRight:()=>n3,CornerUpLeft:()=>p3,CornerRightUp:()=>c3,CornerRightDown:()=>d3,CornerLeftUp:()=>u3,CornerLeftDown:()=>m3,CornerDownRight:()=>g3,CornerDownLeft:()=>_3,Copyright:()=>$3,Copyleft:()=>v3,CopyX:()=>b3,CopySlash:()=>k3,CopyPlus:()=>f3,CopyMinus:()=>y3,CopyCheck:()=>L3,Copy:()=>h3,CookingPot:()=>j3,Cookie:()=>R3,Contrast:()=>M3,Container:()=>w3,ContactRound:()=>g7,Contact2:()=>g7,Contact:()=>U3,Construction:()=>x3,Cone:()=>C3,ConciergeBell:()=>E3,Computer:()=>q3,Component:()=>A3,Compass:()=>P3,Command:()=>S3,Combine:()=>T3,ColumnsSettings:()=>X5,Columns4:()=>O3,Columns3Cog:()=>X5,Columns3:()=>$7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>B3,Cog:()=>D3,Coffee:()=>H3,Codesandbox:()=>F3,Codepen:()=>N3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>z3,Club:()=>I3,Clover:()=>G3,Cloudy:()=>V3,CloudUpload:()=>b7,CloudSunRain:()=>X3,CloudSun:()=>W3,CloudSnow:()=>Y3,CloudRainWind:()=>J3,CloudRain:()=>K3,CloudOff:()=>eG,CloudMoonRain:()=>oG,CloudMoon:()=>Z3,CloudLightning:()=>tG,CloudHail:()=>aG,CloudFog:()=>rG,CloudDrizzle:()=>sG,CloudDownload:()=>k7,CloudCog:()=>lG,CloudCheck:()=>iG,CloudAlert:()=>nG,Cloud:()=>Q3,ClosedCaption:()=>pG,ClockPlus:()=>dG,ClockFading:()=>uG,ClockArrowUp:()=>mG,ClockArrowDown:()=>_G,ClockAlert:()=>gG,Clock9:()=>$G,Clock8:()=>vG,Clock7:()=>hG,Clock6:()=>bG,Clock5:()=>kG,Clock4:()=>fG,Clock3:()=>yG,Clock2:()=>LG,Clock12:()=>jG,Clock11:()=>RG,Clock10:()=>MG,Clock1:()=>UG,Clock:()=>cG,ClipboardX:()=>CG,ClipboardType:()=>EG,ClipboardSignature:()=>y7,ClipboardPlus:()=>xG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>qG,ClipboardMinus:()=>AG,ClipboardList:()=>SG,ClipboardEdit:()=>f7,ClipboardCopy:()=>PG,ClipboardClock:()=>TG,ClipboardCheck:()=>OG,Clipboard:()=>wG,Clapperboard:()=>BG,Citrus:()=>DG,CircuitBoard:()=>HG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>NG,CircleSmall:()=>zG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>IG,CircleQuestionMark:()=>Y5,CirclePower:()=>w7,CirclePoundSterling:()=>GG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>VG,CircleMinus:()=>P7,CircleHelp:()=>Y5,CircleGauge:()=>T7,CircleFadingPlus:()=>QG,CircleFadingArrowUp:()=>WG,CircleEqual:()=>XG,CircleEllipsis:()=>YG,CircleDotDashed:()=>JG,CircleDot:()=>KG,CircleDollarSign:()=>ZG,CircleDivide:()=>O7,CircleDashed:()=>eV,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>FG,CigaretteOff:()=>tV,Cigarette:()=>oV,Church:()=>aV,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>rV,ChevronsUp:()=>sV,ChevronsRightLeft:()=>iV,ChevronsRight:()=>lV,ChevronsLeftRightEllipsis:()=>cV,ChevronsLeftRight:()=>pV,ChevronsLeft:()=>nV,ChevronsDownUp:()=>uV,ChevronsDown:()=>dV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>_V,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>gV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>mV,ChevronLast:()=>$V,ChevronFirst:()=>vV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>hV,Cherry:()=>bV,ChefHat:()=>kV,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>fV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>LV,Check:()=>yV,ChartSpline:()=>jV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>RV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>MV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>UV,ChartLine:()=>s4,ChartGantt:()=>wV,ChartColumnStacked:()=>xV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>CV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>EV,ChartBarIncreasing:()=>qV,ChartBarDecreasing:()=>AV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>SV,Cat:()=>PV,Castle:()=>TV,Cast:()=>BV,CassetteTape:()=>OV,CaseUpper:()=>DV,CaseSensitive:()=>HV,CaseLower:()=>FV,Carrot:()=>zV,CardSim:()=>NV,Caravan:()=>IV,CarTaxiFront:()=>VV,CarFront:()=>QV,Car:()=>GV,CaptionsOff:()=>WV,Captions:()=>m4,Cannabis:()=>XV,CandyOff:()=>KV,CandyCane:()=>JV,Candy:()=>YV,CandlestickChart:()=>p4,CameraOff:()=>ZV,Camera:()=>eQ,CalendarX2:()=>aQ,CalendarX:()=>tQ,CalendarSync:()=>rQ,CalendarSearch:()=>sQ,CalendarRange:()=>lQ,CalendarPlus2:()=>nQ,CalendarPlus:()=>iQ,CalendarOff:()=>pQ,CalendarMinus2:()=>dQ,CalendarMinus:()=>cQ,CalendarHeart:()=>uQ,CalendarFold:()=>mQ,CalendarDays:()=>_Q,CalendarCog:()=>gQ,CalendarClock:()=>$Q,CalendarCheck2:()=>hQ,CalendarCheck:()=>vQ,CalendarArrowUp:()=>bQ,CalendarArrowDown:()=>kQ,Calendar1:()=>fQ,Calendar:()=>oQ,Calculator:()=>yQ,CakeSlice:()=>jQ,Cake:()=>LQ,CableCar:()=>MQ,Cable:()=>RQ,BusFront:()=>wQ,Bus:()=>UQ,Building2:()=>CQ,Building:()=>xQ,BugPlay:()=>qQ,BugOff:()=>AQ,Bug:()=>EQ,Bubbles:()=>SQ,BrushCleaning:()=>TQ,Brush:()=>PQ,BringToFront:()=>OQ,BriefcaseMedical:()=>DQ,BriefcaseConveyorBelt:()=>HQ,BriefcaseBusiness:()=>FQ,Briefcase:()=>BQ,BrickWallShield:()=>zQ,BrickWallFire:()=>IQ,BrickWall:()=>NQ,BrainCog:()=>VQ,BrainCircuit:()=>QQ,Brain:()=>GQ,Brackets:()=>WQ,Braces:()=>_4,Boxes:()=>XQ,BoxSelect:()=>S9,Box:()=>YQ,BowArrow:()=>KQ,BottleWine:()=>JQ,BotOff:()=>eW,BotMessageSquare:()=>tW,Bot:()=>ZQ,BoomBox:()=>oW,BookmarkX:()=>rW,BookmarkPlus:()=>sW,BookmarkMinus:()=>lW,BookmarkCheck:()=>iW,Bookmark:()=>aW,BookX:()=>pW,BookUser:()=>cW,BookUp2:()=>uW,BookUp:()=>dW,BookType:()=>mW,BookText:()=>_W,BookTemplate:()=>g4,BookPlus:()=>gW,BookOpenText:()=>vW,BookOpenCheck:()=>hW,BookOpen:()=>$W,BookMinus:()=>bW,BookMarked:()=>kW,BookLock:()=>fW,BookKey:()=>yW,BookImage:()=>LW,BookHeart:()=>jW,BookHeadphones:()=>MW,BookDown:()=>RW,BookDashed:()=>g4,BookCopy:()=>UW,BookCheck:()=>wW,BookAudio:()=>xW,BookAlert:()=>CW,BookA:()=>EW,Book:()=>nW,Bone:()=>qW,Bomb:()=>AW,Bolt:()=>SW,Bold:()=>TW,BluetoothSearching:()=>PW,BluetoothOff:()=>BW,BluetoothConnected:()=>DW,Bluetooth:()=>OW,Blocks:()=>HW,Blinds:()=>NW,Blend:()=>zW,Bitcoin:()=>FW,Birdhouse:()=>IW,Bird:()=>GW,Biohazard:()=>VW,Binoculars:()=>QW,Binary:()=>WW,Bike:()=>XW,BicepsFlexed:()=>YW,BetweenVerticalStart:()=>KW,BetweenVerticalEnd:()=>JW,BetweenHorizontalStart:()=>$4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>$4,BetweenHorizonalEnd:()=>v4,BellRing:()=>eX,BellPlus:()=>oX,BellOff:()=>tX,BellMinus:()=>aX,BellElectric:()=>sX,BellDot:()=>rX,Bell:()=>ZW,BeerOff:()=>iX,Beer:()=>lX,Beef:()=>pX,BedSingle:()=>cX,BedDouble:()=>uX,Bed:()=>nX,BeanOff:()=>mX,Bean:()=>dX,Beaker:()=>_X,BatteryWarning:()=>$X,BatteryPlus:()=>hX,BatteryMedium:()=>vX,BatteryLow:()=>bX,BatteryFull:()=>kX,BatteryCharging:()=>fX,Battery:()=>gX,Bath:()=>yX,Baseline:()=>LX,Barrel:()=>jX,Barcode:()=>RX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>wX,BanknoteArrowUp:()=>UX,BanknoteArrowDown:()=>xX,Banknote:()=>MX,Bandage:()=>CX,Banana:()=>EX,Ban:()=>qX,BaggageClaim:()=>AX,BadgeX:()=>PX,BadgeTurkishLira:()=>TX,BadgeSwissFranc:()=>OX,BadgeRussianRuble:()=>BX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>DX,BadgePlus:()=>HX,BadgePercent:()=>FX,BadgeMinus:()=>NX,BadgeJapaneseYen:()=>zX,BadgeInfo:()=>IX,BadgeIndianRupee:()=>GX,BadgeHelp:()=>h4,BadgeEuro:()=>VX,BadgeDollarSign:()=>QX,BadgeCheck:()=>b4,BadgeCent:()=>WX,BadgeAlert:()=>XX,Badge:()=>SX,Backpack:()=>YX,Baby:()=>KX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>JX,Award:()=>ZX,AudioWaveform:()=>eY,AudioLines:()=>oY,Atom:()=>tY,AtSign:()=>aY,AsteriskSquare:()=>G9,Asterisk:()=>rY,ArrowsUpFromLine:()=>sY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>iY,ArrowUpToLine:()=>nY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>pY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>cY,ArrowUpFromLine:()=>dY,ArrowUpFromDot:()=>uY,ArrowUpDown:()=>mY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>_Y,ArrowUp01:()=>gY,ArrowUp:()=>lY,ArrowRightToLine:()=>vY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>hY,ArrowRightFromLine:()=>bY,ArrowRightCircle:()=>G7,ArrowRight:()=>$Y,ArrowLeftToLine:()=>fY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>LY,ArrowLeftFromLine:()=>yY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>kY,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>RY,ArrowDownToLine:()=>MY,ArrowDownToDot:()=>UY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>wY,ArrowDownNarrowWide:()=>xY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>CY,ArrowDownFromLine:()=>EY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>qY,ArrowDown01:()=>AY,ArrowDown:()=>jY,ArrowBigUpDash:()=>PY,ArrowBigUp:()=>SY,ArrowBigRightDash:()=>OY,ArrowBigRight:()=>TY,ArrowBigLeftDash:()=>DY,ArrowBigLeft:()=>BY,ArrowBigDownDash:()=>FY,ArrowBigDown:()=>HY,Armchair:()=>NY,AreaChart:()=>u4,ArchiveX:()=>IY,ArchiveRestore:()=>GY,Archive:()=>zY,Apple:()=>VY,AppWindowMac:()=>WY,AppWindow:()=>QY,Aperture:()=>XY,Anvil:()=>YY,Antenna:()=>KY,Annoyed:()=>JY,Angry:()=>ZY,Anchor:()=>eK,Amphora:()=>oK,Ampersands:()=>tK,Ampersand:()=>aK,Ambulance:()=>rK,AlignVerticalSpaceBetween:()=>sK,AlignVerticalSpaceAround:()=>lK,AlignVerticalJustifyStart:()=>iK,AlignVerticalJustifyEnd:()=>nK,AlignVerticalJustifyCenter:()=>pK,AlignVerticalDistributeStart:()=>cK,AlignVerticalDistributeEnd:()=>dK,AlignVerticalDistributeCenter:()=>uK,AlignStartVertical:()=>mK,AlignStartHorizontal:()=>_K,AlignRight:()=>a9,AlignLeft:()=>I5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>gK,AlignHorizontalSpaceAround:()=>$K,AlignHorizontalJustifyStart:()=>vK,AlignHorizontalJustifyEnd:()=>hK,AlignHorizontalJustifyCenter:()=>bK,AlignHorizontalDistributeStart:()=>kK,AlignHorizontalDistributeEnd:()=>fK,AlignHorizontalDistributeCenter:()=>yK,AlignEndVertical:()=>LK,AlignEndHorizontal:()=>jK,AlignCenterVertical:()=>RK,AlignCenterHorizontal:()=>MK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>UK,AlarmSmoke:()=>wK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>CK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>xK,AlarmCheck:()=>x4,Airplay:()=>EK,AirVent:()=>qK,ActivitySquare:()=>r6,Activity:()=>AK,Accessibility:()=>SK,ALargeSmall:()=>PK,AArrowUp:()=>TK,AArrowDown:()=>OK});var DK={xmlns:"http://www.w3.org/2000/svg",width:24,height:24,viewBox:"0 0 24 24",fill:"none",stroke:"currentColor","stroke-width":2,"stroke-linecap":"round","stroke-linejoin":"round"};var rk=([Z,J,K])=>{let X=document.createElementNS("http://www.w3.org/2000/svg",Z);if(Object.keys(J).forEach((W)=>{X.setAttribute(W,String(J[W]))}),K?.length)K.forEach((W)=>{let Y=rk(W);X.appendChild(Y)});return X},BK=(Z,J={})=>{let X={...DK,...J};return rk(["svg",X,Z])};var Ng=(Z)=>Array.from(Z.attributes).reduce((J,K)=>{return J[K.name]=K.value,J},{}),Fg=(Z)=>{if(typeof Z==="string")return Z;if(!Z||!Z.class)return"";if(Z.class&&typeof Z.class==="string")return Z.class.split(" ");if(Z.class&&Array.isArray(Z.class))return Z.class;return""},Hg=(Z)=>{return Z.flatMap(Fg).map((K)=>K.trim()).filter(Boolean).filter((K,X,W)=>W.indexOf(K)===X).join(" ")},Dg=(Z)=>Z.replace(/(\w)(\w*)(_|-|\s*)/g,(J,K,X)=>K.toUpperCase()+X.toLowerCase()),vj=(Z,{nameAttr:J,icons:K,attrs:X})=>{let W=Z.getAttribute(J);if(W==null)return;let Y=Dg(W),V=K[Y];if(!V)return console.warn(`${Z.outerHTML} icon name was not found in the provided icons object.`);let G=Ng(Z),I={...DK,"data-lucide":W,...X,...G},z=Hg(["lucide",`lucide-${W}`,G,X]);if(z)Object.assign(I,{class:z});let N=BK(V,I);return Z.parentNode?.replaceChild(N,Z)};var $j={};NL($j,{ZoomOut:()=>hU,ZoomIn:()=>bU,ZapOff:()=>fU,Zap:()=>kU,Youtube:()=>yU,XSquare:()=>i9,XOctagon:()=>U6,XCircle:()=>L7,X:()=>jU,Wrench:()=>RU,WrapText:()=>e9,Worm:()=>LU,Workflow:()=>MU,WineOff:()=>wU,Wine:()=>UU,WindArrowDown:()=>CU,Wind:()=>xU,WifiZero:()=>AU,WifiSync:()=>qU,WifiPen:()=>SU,WifiOff:()=>PU,WifiLow:()=>TU,WifiHigh:()=>OU,WifiCog:()=>BU,Wifi:()=>EU,WholeWord:()=>DU,WheatOff:()=>FU,Wheat:()=>HU,Weight:()=>NU,WebhookOff:()=>IU,Webhook:()=>zU,Webcam:()=>GU,Waypoints:()=>QU,WavesLadder:()=>WU,Waves:()=>VU,Watch:()=>XU,WashingMachine:()=>YU,Warehouse:()=>KU,WandSparkles:()=>BZ,Wand2:()=>BZ,Wand:()=>JU,Wallpaper:()=>ZU,WalletMinimal:()=>DZ,WalletCards:()=>ow,Wallet2:()=>DZ,Wallet:()=>ew,Vote:()=>tw,VolumeX:()=>rw,VolumeOff:()=>sw,Volume2:()=>lw,Volume1:()=>iw,Volume:()=>aw,Volleyball:()=>nw,Voicemail:()=>pw,View:()=>cw,Videotape:()=>dw,VideoOff:()=>mw,Video:()=>uw,VibrateOff:()=>gw,Vibrate:()=>_w,Verified:()=>b4,VenusAndMars:()=>vw,Venus:()=>$w,VenetianMask:()=>hw,Vegan:()=>bw,VectorSquare:()=>kw,Vault:()=>fw,Variable:()=>Lw,UtilityPole:()=>yw,UtensilsCrossed:()=>FZ,Utensils:()=>HZ,UsersRound:()=>NZ,Users2:()=>NZ,Users:()=>jw,UserX2:()=>IZ,UserX:()=>Mw,UserStar:()=>Uw,UserSquare2:()=>p9,UserSquare:()=>n9,UserSearch:()=>ww,UserRoundX:()=>IZ,UserRoundSearch:()=>xw,UserRoundPlus:()=>GZ,UserRoundPen:()=>Cw,UserRoundMinus:()=>VZ,UserRoundCog:()=>QZ,UserRoundCheck:()=>WZ,UserRound:()=>zZ,UserPlus2:()=>GZ,UserPlus:()=>Ew,UserPen:()=>qw,UserMinus2:()=>VZ,UserMinus:()=>Aw,UserLock:()=>Sw,UserCog2:()=>QZ,UserCog:()=>Pw,UserCircle2:()=>R7,UserCircle:()=>j7,UserCheck2:()=>WZ,UserCheck:()=>Ow,User2:()=>zZ,User:()=>Rw,Usb:()=>Tw,UploadCloud:()=>b7,Upload:()=>Dw,Unplug:()=>Bw,UnlockKeyhole:()=>T6,Unlock:()=>P6,Unlink2:()=>Fw,Unlink:()=>Hw,University:()=>XZ,Ungroup:()=>Nw,UnfoldVertical:()=>zw,UnfoldHorizontal:()=>Iw,UndoDot:()=>Gw,Undo2:()=>Qw,Undo:()=>Vw,Underline:()=>Ww,UmbrellaOff:()=>Yw,Umbrella:()=>Xw,TypeOutline:()=>Jw,Type:()=>Kw,Twitter:()=>Zw,Twitch:()=>ox,TvMinimalPlay:()=>tx,TvMinimal:()=>YZ,Tv2:()=>YZ,Tv:()=>ex,Turtle:()=>ax,Turntable:()=>rx,TurkishLira:()=>sx,TruckElectric:()=>ix,Truck:()=>lx,Trophy:()=>nx,TriangleRight:()=>px,TriangleDashed:()=>dx,TriangleAlert:()=>KZ,Triangle:()=>cx,TrendingUpDown:()=>mx,TrendingUp:()=>ux,TrendingDown:()=>gx,Trello:()=>_x,Trees:()=>$x,TreePine:()=>vx,TreePalm:()=>JZ,TreeDeciduous:()=>hx,Trash2:()=>kx,Trash:()=>bx,Transgender:()=>fx,TramFront:()=>ZZ,TrainTrack:()=>yx,TrainFrontTunnel:()=>Lx,TrainFront:()=>jx,Train:()=>ZZ,TrafficCone:()=>Rx,Tractor:()=>Mx,ToyBrick:()=>Ux,TowerControl:()=>wx,TouchpadOff:()=>Ex,Touchpad:()=>Cx,Torus:()=>xx,Tornado:()=>qx,ToolCase:()=>Ax,Toilet:()=>Sx,ToggleRight:()=>Px,ToggleLeft:()=>Tx,TimerReset:()=>Bx,TimerOff:()=>Dx,Timer:()=>Ox,TicketsPlane:()=>Fx,Tickets:()=>Hx,TicketX:()=>zx,TicketSlash:()=>Ix,TicketPlus:()=>Gx,TicketPercent:()=>Vx,TicketMinus:()=>Qx,TicketCheck:()=>Wx,Ticket:()=>Nx,ThumbsUp:()=>Xx,ThumbsDown:()=>Yx,ThermometerSun:()=>Jx,ThermometerSnowflake:()=>Zx,Thermometer:()=>Kx,Theater:()=>eC,TextWrap:()=>e9,TextSelection:()=>o9,TextSelect:()=>o9,TextSearch:()=>oC,TextQuote:()=>tC,TextInitial:()=>t9,TextCursorInput:()=>rC,TextCursor:()=>aC,TextAlignStart:()=>I5,TextAlignJustify:()=>r9,TextAlignEnd:()=>a9,TextAlignCenter:()=>s9,Text:()=>I5,TestTubes:()=>lC,TestTubeDiagonal:()=>l9,TestTube2:()=>l9,TestTube:()=>sC,TerminalSquare:()=>c9,Terminal:()=>iC,TentTree:()=>pC,Tent:()=>nC,Telescope:()=>cC,Target:()=>uC,Tangent:()=>dC,Tally5:()=>mC,Tally4:()=>_C,Tally3:()=>gC,Tally2:()=>$C,Tally1:()=>vC,Tags:()=>hC,Tag:()=>bC,Tablets:()=>kC,TabletSmartphone:()=>yC,Tablet:()=>fC,TableRowsSplit:()=>jC,TableProperties:()=>RC,TableOfContents:()=>MC,TableConfig:()=>X5,TableColumnsSplit:()=>UC,TableCellsSplit:()=>wC,TableCellsMerge:()=>xC,Table2:()=>CC,Table:()=>LC,Syringe:()=>EC,Swords:()=>qC,Sword:()=>AC,SwitchCamera:()=>SC,SwissFranc:()=>PC,SwatchBook:()=>TC,Superscript:()=>OC,Sunset:()=>BC,Sunrise:()=>DC,SunSnow:()=>FC,SunMoon:()=>NC,SunMedium:()=>zC,SunDim:()=>IC,Sun:()=>HC,Subtitles:()=>m4,Subscript:()=>GC,Strikethrough:()=>VC,StretchVertical:()=>QC,StretchHorizontal:()=>WC,Store:()=>XC,StopCircle:()=>M7,StickyNote:()=>YC,Sticker:()=>KC,Stethoscope:()=>JC,StepForward:()=>ZC,StepBack:()=>eE,Stars:()=>s6,StarOff:()=>tE,StarHalf:()=>aE,Star:()=>oE,Stamp:()=>rE,Squirrel:()=>sE,SquircleDashed:()=>iE,Squircle:()=>lE,SquaresUnite:()=>nE,SquaresSubtract:()=>cE,SquaresIntersect:()=>pE,SquaresExclude:()=>dE,SquareX:()=>i9,SquareUserRound:()=>p9,SquareUser:()=>n9,SquareTerminal:()=>c9,SquareStop:()=>mE,SquareStar:()=>_E,SquareStack:()=>gE,SquareSquare:()=>$E,SquareSplitVertical:()=>d9,SquareSplitHorizontal:()=>u9,SquareSlash:()=>m9,SquareSigma:()=>_9,SquareScissors:()=>g9,SquareRoundCorner:()=>vE,SquareRadical:()=>hE,SquarePower:()=>$9,SquarePlus:()=>v9,SquarePlay:()=>h9,SquarePilcrow:()=>b9,SquarePi:()=>k9,SquarePercent:()=>f9,SquarePen:()=>S8,SquarePause:()=>bE,SquareParkingOff:()=>L9,SquareParking:()=>y9,SquareMousePointer:()=>j9,SquareMinus:()=>R9,SquareMenu:()=>M9,SquareM:()=>U9,SquareLibrary:()=>w9,SquareKanban:()=>x9,SquareGanttChart:()=>G5,SquareFunction:()=>C9,SquareEqual:()=>E9,SquareDot:()=>q9,SquareDivide:()=>A9,SquareDashedTopSolid:()=>kE,SquareDashedMousePointer:()=>P9,SquareDashedKanban:()=>T9,SquareDashedBottomCode:()=>yE,SquareDashedBottom:()=>fE,SquareDashed:()=>S9,SquareCode:()=>O9,SquareChevronUp:()=>B9,SquareChevronRight:()=>D9,SquareChevronLeft:()=>H9,SquareChevronDown:()=>F9,SquareCheckBig:()=>z9,SquareCheck:()=>N9,SquareChartGantt:()=>G5,SquareBottomDashedScissors:()=>I9,SquareAsterisk:()=>G9,SquareArrowUpRight:()=>Q9,SquareArrowUpLeft:()=>W9,SquareArrowUp:()=>V9,SquareArrowRight:()=>X9,SquareArrowOutUpRight:()=>Y9,SquareArrowOutUpLeft:()=>K9,SquareArrowOutDownRight:()=>J9,SquareArrowOutDownLeft:()=>Z9,SquareArrowLeft:()=>e6,SquareArrowDownRight:()=>t6,SquareArrowDownLeft:()=>a6,SquareArrowDown:()=>o6,SquareActivity:()=>r6,Square:()=>uE,Sprout:()=>LE,SprayCan:()=>jE,Spotlight:()=>RE,Spool:()=>ME,SplitSquareVertical:()=>d9,SplitSquareHorizontal:()=>u9,Split:()=>UE,SplinePointer:()=>xE,Spline:()=>wE,SpellCheck2:()=>EE,SpellCheck:()=>CE,Speech:()=>qE,Speaker:()=>AE,Sparkles:()=>s6,Sparkle:()=>SE,Spade:()=>PE,Space:()=>TE,Soup:()=>OE,SortDesc:()=>R4,SortAsc:()=>y4,Sofa:()=>BE,SoapDispenserDroplet:()=>HE,Snowflake:()=>DE,Snail:()=>FE,SmilePlus:()=>zE,Smile:()=>NE,SmartphoneNfc:()=>GE,SmartphoneCharging:()=>VE,Smartphone:()=>IE,SlidersVertical:()=>l6,SlidersHorizontal:()=>QE,Sliders:()=>l6,Slice:()=>WE,SlashSquare:()=>m9,Slash:()=>XE,Slack:()=>YE,Skull:()=>KE,SkipForward:()=>JE,SkipBack:()=>ZE,Siren:()=>eq,SignpostBig:()=>tq,Signpost:()=>oq,Signature:()=>aq,SignalZero:()=>sq,SignalMedium:()=>lq,SignalLow:()=>iq,SignalHigh:()=>nq,Signal:()=>rq,SigmaSquare:()=>_9,Sigma:()=>pq,SidebarOpen:()=>y6,SidebarClose:()=>j6,Sidebar:()=>f6,Shuffle:()=>cq,Shrub:()=>dq,Shrink:()=>uq,Shrimp:()=>mq,Shredder:()=>_q,ShowerHead:()=>gq,Shovel:()=>$q,ShoppingCart:()=>vq,ShoppingBasket:()=>hq,ShoppingBag:()=>bq,Shirt:()=>kq,ShipWheel:()=>yq,Ship:()=>fq,ShieldX:()=>i6,ShieldUser:()=>jq,ShieldQuestionMark:()=>n6,ShieldQuestion:()=>n6,ShieldPlus:()=>Rq,ShieldOff:()=>Mq,ShieldMinus:()=>Uq,ShieldHalf:()=>wq,ShieldEllipsis:()=>xq,ShieldClose:()=>i6,ShieldCheck:()=>Cq,ShieldBan:()=>qq,ShieldAlert:()=>Eq,Shield:()=>Lq,Shell:()=>Sq,Sheet:()=>Aq,Share2:()=>Tq,Share:()=>Pq,Shapes:()=>Oq,Settings2:()=>Dq,Settings:()=>Bq,ServerOff:()=>Fq,ServerCrash:()=>Nq,ServerCog:()=>Iq,Server:()=>Hq,SeparatorVertical:()=>zq,SeparatorHorizontal:()=>Gq,SendToBack:()=>Qq,SendHorizontal:()=>p6,SendHorizonal:()=>p6,Send:()=>Vq,Section:()=>Wq,SearchX:()=>Yq,SearchSlash:()=>Kq,SearchCode:()=>Zq,SearchCheck:()=>Jq,Search:()=>Xq,ScrollText:()=>oA,Scroll:()=>eA,ScreenShareOff:()=>aA,ScreenShare:()=>tA,ScissorsSquareDashedBottom:()=>I9,ScissorsSquare:()=>g9,ScissorsLineDashed:()=>sA,Scissors:()=>rA,School2:()=>XZ,School:()=>lA,ScatterChart:()=>e4,ScanText:()=>nA,ScanSearch:()=>pA,ScanQrCode:()=>cA,ScanLine:()=>dA,ScanHeart:()=>uA,ScanFace:()=>mA,ScanEye:()=>_A,ScanBarcode:()=>gA,Scan:()=>iA,Scaling:()=>$A,Scale3d:()=>c6,Scale3D:()=>c6,Scale:()=>vA,SaveOff:()=>bA,SaveAll:()=>kA,Save:()=>hA,SaudiRiyal:()=>fA,SatelliteDish:()=>LA,Satellite:()=>yA,Sandwich:()=>jA,Salad:()=>RA,Sailboat:()=>MA,RussianRuble:()=>UA,RulerDimensionLine:()=>xA,Ruler:()=>wA,Rss:()=>EA,Rows4:()=>CA,Rows3:()=>d6,Rows2:()=>u6,Rows:()=>u6,Router:()=>qA,RouteOff:()=>SA,Route:()=>AA,RotateCwSquare:()=>TA,RotateCw:()=>PA,RotateCcwSquare:()=>BA,RotateCcwKey:()=>DA,RotateCcw:()=>OA,Rotate3d:()=>m6,Rotate3D:()=>m6,Rose:()=>HA,RollerCoaster:()=>FA,RockingChair:()=>NA,Rocket:()=>zA,Ribbon:()=>IA,Rewind:()=>GA,ReplyAll:()=>QA,Reply:()=>VA,ReplaceAll:()=>XA,Replace:()=>WA,Repeat2:()=>KA,Repeat1:()=>JA,Repeat:()=>YA,RemoveFormatting:()=>ZA,Regex:()=>eS,Refrigerator:()=>oS,RefreshCwOff:()=>aS,RefreshCw:()=>tS,RefreshCcwDot:()=>sS,RefreshCcw:()=>rS,RedoDot:()=>iS,Redo2:()=>nS,Redo:()=>lS,Recycle:()=>pS,RectangleVertical:()=>cS,RectangleHorizontal:()=>dS,RectangleGoggles:()=>uS,RectangleEllipsis:()=>_6,RectangleCircle:()=>mS,ReceiptTurkishLira:()=>_S,ReceiptText:()=>$S,ReceiptSwissFranc:()=>vS,ReceiptRussianRuble:()=>hS,ReceiptPoundSterling:()=>bS,ReceiptJapaneseYen:()=>kS,ReceiptIndianRupee:()=>fS,ReceiptEuro:()=>yS,ReceiptCent:()=>LS,Receipt:()=>gS,Ratio:()=>jS,Rat:()=>MS,Rainbow:()=>RS,RailSymbol:()=>US,Radius:()=>wS,RadioTower:()=>CS,RadioReceiver:()=>ES,Radio:()=>xS,Radical:()=>qS,Radiation:()=>AS,Radar:()=>SS,Rabbit:()=>PS,Quote:()=>TS,QrCode:()=>BS,Pyramid:()=>OS,Puzzle:()=>DS,Proportions:()=>HS,Projector:()=>FS,PrinterCheck:()=>zS,Printer:()=>NS,Presentation:()=>IS,PowerSquare:()=>$9,PowerOff:()=>VS,PowerCircle:()=>w7,Power:()=>GS,PoundSterling:()=>QS,Popsicle:()=>WS,Popcorn:()=>XS,PointerOff:()=>KS,Pointer:()=>YS,Podcast:()=>JS,PocketKnife:()=>eP,Pocket:()=>ZS,PlusSquare:()=>v9,PlusCircle:()=>x7,Plus:()=>oP,PlugZap2:()=>g6,PlugZap:()=>g6,Plug2:()=>aP,Plug:()=>tP,PlaySquare:()=>h9,PlayCircle:()=>C7,Play:()=>rP,PlaneTakeoff:()=>lP,PlaneLanding:()=>iP,Plane:()=>sP,Pizza:()=>nP,Pipette:()=>cP,PinOff:()=>pP,Pin:()=>dP,PillBottle:()=>mP,Pill:()=>uP,PilcrowSquare:()=>b9,PilcrowRight:()=>gP,PilcrowLeft:()=>vP,Pilcrow:()=>_P,PiggyBank:()=>$P,PieChart:()=>o4,PictureInPicture2:()=>bP,PictureInPicture:()=>hP,Pickaxe:()=>kP,Piano:()=>fP,PiSquare:()=>k9,Pi:()=>yP,PhoneOutgoing:()=>jP,PhoneOff:()=>RP,PhoneMissed:()=>MP,PhoneIncoming:()=>UP,PhoneForwarded:()=>wP,PhoneCall:()=>xP,Phone:()=>LP,PhilippinePeso:()=>CP,PersonStanding:()=>EP,PercentSquare:()=>f9,PercentDiamond:()=>_7,PercentCircle:()=>E7,Percent:()=>qP,Pentagon:()=>AP,PencilRuler:()=>PP,PencilOff:()=>TP,PencilLine:()=>OP,Pencil:()=>SP,PenTool:()=>BP,PenSquare:()=>S8,PenOff:()=>DP,PenLine:()=>v6,PenBox:()=>S8,Pen:()=>$6,PcCase:()=>HP,PawPrint:()=>FP,PauseOctagon:()=>w6,PauseCircle:()=>q7,Pause:()=>NP,PartyPopper:()=>zP,ParkingSquareOff:()=>L9,ParkingSquare:()=>y9,ParkingMeter:()=>GP,ParkingCircleOff:()=>S7,ParkingCircle:()=>A7,Parentheses:()=>IP,Paperclip:()=>VP,PanelsTopLeft:()=>h6,PanelsTopBottom:()=>d6,PanelsRightBottom:()=>QP,PanelsLeftRight:()=>$7,PanelsLeftBottom:()=>XP,PanelTopOpen:()=>YP,PanelTopInactive:()=>b6,PanelTopDashed:()=>b6,PanelTopClose:()=>KP,PanelTopBottomDashed:()=>JP,PanelTop:()=>WP,PanelRightOpen:()=>ZP,PanelRightInactive:()=>k6,PanelRightDashed:()=>k6,PanelRightClose:()=>oT,PanelRight:()=>eT,PanelLeftRightDashed:()=>tT,PanelLeftOpen:()=>y6,PanelLeftInactive:()=>L6,PanelLeftDashed:()=>L6,PanelLeftClose:()=>j6,PanelLeft:()=>f6,PanelBottomOpen:()=>rT,PanelBottomInactive:()=>R6,PanelBottomDashed:()=>R6,PanelBottomClose:()=>sT,PanelBottom:()=>aT,Panda:()=>lT,Palmtree:()=>JZ,Palette:()=>iT,PaintbrushVertical:()=>M6,Paintbrush2:()=>M6,Paintbrush:()=>nT,PaintRoller:()=>pT,PaintBucket:()=>cT,PackageX:()=>uT,PackageSearch:()=>mT,PackagePlus:()=>_T,PackageOpen:()=>gT,PackageMinus:()=>$T,PackageCheck:()=>vT,Package2:()=>hT,Package:()=>dT,Outdent:()=>Q5,Origami:()=>bT,Orbit:()=>kT,Option:()=>fT,Omega:()=>yT,OctagonX:()=>U6,OctagonPause:()=>w6,OctagonMinus:()=>jT,OctagonAlert:()=>x6,Octagon:()=>LT,NutOff:()=>MT,Nut:()=>RT,NotepadTextDashed:()=>wT,NotepadText:()=>UT,NotebookText:()=>CT,NotebookTabs:()=>ET,NotebookPen:()=>qT,Notebook:()=>xT,NonBinary:()=>AT,Nfc:()=>ST,Newspaper:()=>PT,Network:()=>TT,NavigationOff:()=>BT,Navigation2Off:()=>HT,Navigation2:()=>DT,Navigation:()=>OT,Music4:()=>NT,Music3:()=>zT,Music2:()=>IT,Music:()=>FT,MoveVertical:()=>VT,MoveUpRight:()=>WT,MoveUpLeft:()=>XT,MoveUp:()=>QT,MoveRight:()=>YT,MoveLeft:()=>KT,MoveHorizontal:()=>JT,MoveDownRight:()=>e2,MoveDownLeft:()=>o2,MoveDown:()=>ZT,MoveDiagonal2:()=>a2,MoveDiagonal:()=>t2,Move3d:()=>C6,Move3D:()=>C6,Move:()=>GT,MousePointerSquareDashed:()=>P9,MousePointerClick:()=>l2,MousePointerBan:()=>i2,MousePointer2:()=>n2,MousePointer:()=>s2,MouseOff:()=>p2,Mouse:()=>r2,MountainSnow:()=>d2,Mountain:()=>c2,Motorbike:()=>u2,MoreVertical:()=>u7,MoreHorizontal:()=>d7,MoonStar:()=>_2,Moon:()=>m2,MonitorX:()=>$2,MonitorUp:()=>v2,MonitorStop:()=>h2,MonitorSpeaker:()=>b2,MonitorSmartphone:()=>k2,MonitorPlay:()=>f2,MonitorPause:()=>y2,MonitorOff:()=>L2,MonitorDown:()=>j2,MonitorDot:()=>R2,MonitorCog:()=>M2,MonitorCloud:()=>U2,MonitorCheck:()=>w2,Monitor:()=>g2,MinusSquare:()=>R9,MinusCircle:()=>P7,Minus:()=>x2,Minimize2:()=>E2,Minimize:()=>C2,MilkOff:()=>q2,Milk:()=>A2,Milestone:()=>S2,Microwave:()=>P2,Microscope:()=>T2,Microchip:()=>O2,MicVocal:()=>E6,MicOff:()=>D2,Mic2:()=>E6,Mic:()=>B2,MessagesSquare:()=>H2,MessageSquareX:()=>N2,MessageSquareWarning:()=>z2,MessageSquareText:()=>I2,MessageSquareShare:()=>V2,MessageSquareReply:()=>G2,MessageSquareQuote:()=>Q2,MessageSquarePlus:()=>W2,MessageSquareOff:()=>X2,MessageSquareMore:()=>Y2,MessageSquareLock:()=>K2,MessageSquareHeart:()=>J2,MessageSquareDot:()=>Z2,MessageSquareDiff:()=>eO,MessageSquareDashed:()=>oO,MessageSquareCode:()=>tO,MessageSquare:()=>F2,MessageCircleX:()=>rO,MessageCircleWarning:()=>sO,MessageCircleReply:()=>lO,MessageCircleQuestionMark:()=>q6,MessageCircleQuestion:()=>q6,MessageCirclePlus:()=>iO,MessageCircleOff:()=>nO,MessageCircleMore:()=>pO,MessageCircleHeart:()=>cO,MessageCircleDashed:()=>dO,MessageCircleCode:()=>uO,MessageCircle:()=>aO,Merge:()=>mO,MenuSquare:()=>M9,Menu:()=>_O,MemoryStick:()=>gO,Meh:()=>$O,MegaphoneOff:()=>hO,Megaphone:()=>vO,Medal:()=>bO,Maximize2:()=>fO,Maximize:()=>kO,Martini:()=>yO,MarsStroke:()=>jO,Mars:()=>LO,MapPlus:()=>RO,MapPinned:()=>UO,MapPinXInside:()=>CO,MapPinX:()=>xO,MapPinPlusInside:()=>qO,MapPinPlus:()=>EO,MapPinPen:()=>A6,MapPinOff:()=>AO,MapPinMinusInside:()=>SO,MapPinMinus:()=>PO,MapPinHouse:()=>TO,MapPinCheckInside:()=>BO,MapPinCheck:()=>OO,MapPin:()=>wO,MapMinus:()=>DO,Map:()=>MO,Mails:()=>HO,Mailbox:()=>FO,MailX:()=>zO,MailWarning:()=>IO,MailSearch:()=>GO,MailQuestionMark:()=>S6,MailQuestion:()=>S6,MailPlus:()=>VO,MailOpen:()=>QO,MailMinus:()=>WO,MailCheck:()=>XO,Mail:()=>NO,Magnet:()=>YO,MSquare:()=>U9,Luggage:()=>KO,Lollipop:()=>JO,Logs:()=>ZO,LogOut:()=>eB,LogIn:()=>oB,LockOpen:()=>P6,LockKeyholeOpen:()=>T6,LockKeyhole:()=>aB,Lock:()=>tB,LocationEdit:()=>A6,LocateOff:()=>sB,LocateFixed:()=>lB,Locate:()=>rB,LoaderPinwheel:()=>nB,LoaderCircle:()=>O6,Loader2:()=>O6,Loader:()=>iB,ListX:()=>cB,ListVideo:()=>dB,ListTree:()=>uB,ListTodo:()=>mB,ListStart:()=>_B,ListRestart:()=>$B,ListPlus:()=>vB,ListOrdered:()=>gB,ListMusic:()=>hB,ListMinus:()=>bB,ListIndentIncrease:()=>V5,ListIndentDecrease:()=>Q5,ListFilterPlus:()=>kB,ListFilter:()=>fB,ListEnd:()=>yB,ListCollapse:()=>LB,ListChevronsUpDown:()=>jB,ListChevronsDownUp:()=>RB,ListChecks:()=>MB,ListCheck:()=>UB,List:()=>pB,Linkedin:()=>wB,Link2Off:()=>EB,Link2:()=>CB,Link:()=>xB,LineSquiggle:()=>qB,LineChart:()=>s4,LightbulbOff:()=>SB,Lightbulb:()=>AB,Ligature:()=>PB,LifeBuoy:()=>OB,LibrarySquare:()=>w9,LibraryBig:()=>BB,Library:()=>TB,LetterText:()=>t9,Lectern:()=>DB,LeafyGreen:()=>HB,Leaf:()=>FB,LayoutTemplate:()=>NB,LayoutPanelTop:()=>zB,LayoutPanelLeft:()=>IB,LayoutList:()=>GB,LayoutGrid:()=>VB,LayoutDashboard:()=>QB,Layout:()=>h6,Layers3:()=>B6,Layers2:()=>WB,Layers:()=>B6,Laugh:()=>XB,LassoSelect:()=>KB,Lasso:()=>YB,LaptopMinimalCheck:()=>ZB,LaptopMinimal:()=>D6,Laptop2:()=>D6,Laptop:()=>JB,Languages:()=>eD,Landmark:()=>oD,LandPlot:()=>tD,LampWallUp:()=>rD,LampWallDown:()=>sD,LampFloor:()=>lD,LampDesk:()=>iD,LampCeiling:()=>nD,Lamp:()=>aD,KeyboardOff:()=>cD,KeyboardMusic:()=>dD,Keyboard:()=>pD,KeySquare:()=>mD,KeyRound:()=>_D,Key:()=>uD,Kayak:()=>gD,KanbanSquareDashed:()=>T9,KanbanSquare:()=>x9,Kanban:()=>$D,Joystick:()=>vD,JapaneseYen:()=>hD,IterationCw:()=>bD,IterationCcw:()=>fD,Italic:()=>yD,Instagram:()=>kD,InspectionPanel:()=>LD,Inspect:()=>j9,Info:()=>RD,Infinity:()=>jD,IndianRupee:()=>MD,IndentIncrease:()=>V5,IndentDecrease:()=>Q5,Indent:()=>V5,Inbox:()=>UD,Import:()=>wD,Images:()=>xD,ImageUpscale:()=>ED,ImageUp:()=>qD,ImagePlus:()=>AD,ImagePlay:()=>SD,ImageOff:()=>PD,ImageMinus:()=>TD,ImageDown:()=>OD,Image:()=>CD,IdCardLanyard:()=>BD,IdCard:()=>DD,IceCreamCone:()=>H6,IceCreamBowl:()=>F6,IceCream2:()=>F6,IceCream:()=>H6,HouseWifi:()=>FD,HousePlus:()=>HD,HousePlug:()=>zD,HouseHeart:()=>ND,House:()=>N6,Hourglass:()=>ID,Hotel:()=>GD,Hospital:()=>VD,HopOff:()=>WD,Hop:()=>QD,Home:()=>N6,History:()=>XD,Highlighter:()=>KD,Hexagon:()=>YD,HelpingHand:()=>z6,HelpCircle:()=>Y5,Heater:()=>JD,HeartPulse:()=>eH,HeartPlus:()=>oH,HeartOff:()=>tH,HeartMinus:()=>aH,HeartHandshake:()=>rH,HeartCrack:()=>sH,Heart:()=>ZD,Headset:()=>lH,Headphones:()=>iH,HeadphoneOff:()=>nH,Heading6:()=>cH,Heading5:()=>dH,Heading4:()=>uH,Heading3:()=>mH,Heading2:()=>_H,Heading1:()=>gH,Heading:()=>pH,HdmiPort:()=>$H,Haze:()=>vH,HatGlasses:()=>hH,Hash:()=>bH,HardHat:()=>kH,HardDriveUpload:()=>yH,HardDriveDownload:()=>LH,HardDrive:()=>fH,Handshake:()=>jH,Handbag:()=>RH,HandPlatter:()=>UH,HandMetal:()=>wH,HandHelping:()=>z6,HandHeart:()=>xH,HandGrab:()=>I6,HandFist:()=>CH,HandCoins:()=>EH,Hand:()=>MH,Hammer:()=>qH,Hamburger:()=>AH,Ham:()=>SH,Guitar:()=>PH,Group:()=>TH,GripVertical:()=>BH,GripHorizontal:()=>DH,Grip:()=>OH,Grid3x3:()=>W5,Grid3x2:()=>HH,Grid3X3:()=>W5,Grid2x2X:()=>V6,Grid2x2Plus:()=>Q6,Grid2x2Check:()=>W6,Grid2x2:()=>G6,Grid2X2X:()=>V6,Grid2X2Plus:()=>Q6,Grid2X2Check:()=>W6,Grid2X2:()=>G6,Grid:()=>W5,Grape:()=>FH,GraduationCap:()=>NH,Grab:()=>I6,Gpu:()=>zH,Goal:()=>IH,GlobeLock:()=>VH,Globe2:()=>m7,Globe:()=>GH,Glasses:()=>QH,GlassWater:()=>WH,Gitlab:()=>XH,Github:()=>YH,GitPullRequestDraft:()=>JH,GitPullRequestCreateArrow:()=>oF,GitPullRequestCreate:()=>ZH,GitPullRequestClosed:()=>eF,GitPullRequestArrow:()=>tF,GitPullRequest:()=>KH,GitMerge:()=>aF,GitGraph:()=>rF,GitFork:()=>sF,GitCompareArrows:()=>iF,GitCompare:()=>lF,GitCommitVertical:()=>nF,GitCommitHorizontal:()=>X6,GitCommit:()=>X6,GitBranchPlus:()=>cF,GitBranch:()=>pF,Gift:()=>dF,Ghost:()=>uF,GeorgianLari:()=>mF,Gem:()=>_F,Gavel:()=>gF,GaugeCircle:()=>T7,Gauge:()=>$F,GanttChartSquare:()=>G5,GanttChart:()=>t4,GamepadDirectional:()=>hF,Gamepad2:()=>bF,Gamepad:()=>vF,GalleryVerticalEnd:()=>fF,GalleryVertical:()=>kF,GalleryThumbnails:()=>yF,GalleryHorizontalEnd:()=>jF,GalleryHorizontal:()=>LF,FunnelX:()=>K6,FunnelPlus:()=>RF,Funnel:()=>Y6,FunctionSquare:()=>C9,Fullscreen:()=>MF,Fuel:()=>UF,Frown:()=>wF,Framer:()=>xF,Frame:()=>CF,Forward:()=>EF,FormInput:()=>_6,Forklift:()=>qF,ForkKnifeCrossed:()=>FZ,ForkKnife:()=>HZ,Footprints:()=>AF,Folders:()=>SF,FolderX:()=>TF,FolderUp:()=>OF,FolderTree:()=>BF,FolderSync:()=>DF,FolderSymlink:()=>HF,FolderSearch2:()=>NF,FolderSearch:()=>FF,FolderRoot:()=>zF,FolderPlus:()=>IF,FolderPen:()=>J6,FolderOutput:()=>GF,FolderOpenDot:()=>QF,FolderOpen:()=>VF,FolderMinus:()=>WF,FolderLock:()=>XF,FolderKey:()=>YF,FolderKanban:()=>KF,FolderInput:()=>JF,FolderHeart:()=>ZF,FolderGit2:()=>tN,FolderGit:()=>eN,FolderEdit:()=>J6,FolderDown:()=>oN,FolderDot:()=>aN,FolderCog2:()=>Z6,FolderCog:()=>Z6,FolderCode:()=>rN,FolderClosed:()=>sN,FolderClock:()=>lN,FolderCheck:()=>iN,FolderArchive:()=>nN,Folder:()=>PF,FoldVertical:()=>pN,FoldHorizontal:()=>cN,Focus:()=>dN,Flower2:()=>mN,Flower:()=>uN,FlipVertical2:()=>gN,FlipVertical:()=>_N,FlipHorizontal2:()=>vN,FlipHorizontal:()=>$N,FlaskRound:()=>hN,FlaskConicalOff:()=>kN,FlaskConical:()=>bN,FlashlightOff:()=>yN,Flashlight:()=>fN,FlameKindling:()=>jN,Flame:()=>LN,FlagTriangleRight:()=>MN,FlagTriangleLeft:()=>UN,FlagOff:()=>xN,Flag:()=>RN,FishSymbol:()=>CN,FishOff:()=>EN,Fish:()=>wN,FireExtinguisher:()=>qN,Fingerprint:()=>AN,FilterX:()=>K6,Filter:()=>Y6,Film:()=>SN,Files:()=>TN,FileX2:()=>BN,FileX:()=>ON,FileWarning:()=>DN,FileVolume2:()=>FN,FileVolume:()=>HN,FileVideoCamera:()=>e7,FileVideo2:()=>e7,FileVideo:()=>t7,FileUser:()=>NN,FileUp:()=>zN,FileType2:()=>GN,FileType:()=>IN,FileText:()=>VN,FileTerminal:()=>QN,FileSymlink:()=>WN,FileStack:()=>XN,FileSpreadsheet:()=>YN,FileSliders:()=>KN,FileSignature:()=>r7,FileSearch2:()=>ZN,FileSearch:()=>JN,FileScan:()=>ez,FileQuestionMark:()=>o7,FileQuestion:()=>o7,FilePlus2:()=>oz,FilePlus:()=>tz,FilePlay:()=>t7,FilePieChart:()=>i7,FilePenLine:()=>r7,FilePen:()=>a7,FileOutput:()=>az,FileMusic:()=>rz,FileMinus2:()=>sz,FileMinus:()=>lz,FileLock2:()=>nz,FileLock:()=>iz,FileLineChart:()=>l7,FileKey2:()=>cz,FileKey:()=>pz,FileJson2:()=>uz,FileJson:()=>dz,FileInput:()=>mz,FileImage:()=>_z,FileHeart:()=>gz,FileEdit:()=>a7,FileDown:()=>$z,FileDigit:()=>vz,FileDiff:()=>hz,FileCog2:()=>s7,FileCog:()=>s7,FileCode2:()=>kz,FileCode:()=>bz,FileClock:()=>fz,FileCheck2:()=>Lz,FileCheck:()=>yz,FileChartPie:()=>i7,FileChartLine:()=>l7,FileChartColumnIncreasing:()=>p7,FileChartColumn:()=>n7,FileBox:()=>Rz,FileBarChart2:()=>n7,FileBarChart:()=>p7,FileBadge2:()=>Mz,FileBadge:()=>jz,FileAxis3d:()=>c7,FileAxis3D:()=>c7,FileAudio2:()=>wz,FileAudio:()=>Uz,FileArchive:()=>xz,File:()=>PN,Figma:()=>Cz,FerrisWheel:()=>Ez,Fence:()=>qz,Feather:()=>Az,FastForward:()=>Sz,Fan:()=>Pz,Factory:()=>Tz,Facebook:()=>Oz,EyeOff:()=>Hz,EyeClosed:()=>Fz,Eye:()=>Bz,ExternalLink:()=>Dz,Expand:()=>Nz,EvCharger:()=>zz,Euro:()=>Iz,EthernetPort:()=>Gz,Eraser:()=>Vz,EqualSquare:()=>E9,EqualNot:()=>Wz,EqualApproximately:()=>Xz,Equal:()=>Qz,EllipsisVertical:()=>u7,Ellipsis:()=>d7,EggOff:()=>Kz,EggFried:()=>Jz,Egg:()=>Yz,Edit3:()=>v6,Edit2:()=>$6,Edit:()=>S8,Eclipse:()=>Zz,EarthLock:()=>oI,Earth:()=>m7,EarOff:()=>tI,Ear:()=>eI,Dumbbell:()=>aI,Drumstick:()=>rI,Drum:()=>lI,Droplets:()=>sI,DropletOff:()=>nI,Droplet:()=>iI,Drone:()=>pI,Drill:()=>cI,Dribbble:()=>dI,Drama:()=>uI,DraftingCompass:()=>mI,DownloadCloud:()=>k7,Download:()=>_I,DotSquare:()=>q9,Dot:()=>gI,DoorOpen:()=>$I,DoorClosedLocked:()=>hI,DoorClosed:()=>vI,Donut:()=>bI,DollarSign:()=>kI,Dog:()=>fI,Dock:()=>yI,DnaOff:()=>jI,Dna:()=>LI,DivideSquare:()=>A9,DivideCircle:()=>O7,Divide:()=>RI,DiscAlbum:()=>UI,Disc3:()=>wI,Disc2:()=>xI,Disc:()=>MI,Diff:()=>CI,Dices:()=>qI,Dice6:()=>EI,Dice5:()=>AI,Dice4:()=>SI,Dice3:()=>PI,Dice2:()=>TI,Dice1:()=>OI,DiamondPlus:()=>DI,DiamondPercent:()=>_7,DiamondMinus:()=>HI,Diamond:()=>BI,Diameter:()=>FI,Dessert:()=>zI,Delete:()=>NI,DecimalsArrowRight:()=>II,DecimalsArrowLeft:()=>VI,DatabaseZap:()=>WI,DatabaseBackup:()=>QI,Database:()=>GI,Dam:()=>XI,Cylinder:()=>YI,Currency:()=>KI,CurlyBraces:()=>_4,CupSoda:()=>JI,Cuboid:()=>ZI,Crown:()=>e3,Crosshair:()=>o3,Cross:()=>t3,Crop:()=>a3,Croissant:()=>r3,CreditCard:()=>s3,CreativeCommons:()=>l3,Cpu:()=>i3,CornerUpRight:()=>n3,CornerUpLeft:()=>p3,CornerRightUp:()=>c3,CornerRightDown:()=>d3,CornerLeftUp:()=>u3,CornerLeftDown:()=>m3,CornerDownRight:()=>g3,CornerDownLeft:()=>_3,Copyright:()=>$3,Copyleft:()=>v3,CopyX:()=>b3,CopySlash:()=>k3,CopyPlus:()=>f3,CopyMinus:()=>y3,CopyCheck:()=>L3,Copy:()=>h3,CookingPot:()=>j3,Cookie:()=>R3,Contrast:()=>M3,Container:()=>w3,ContactRound:()=>g7,Contact2:()=>g7,Contact:()=>U3,Construction:()=>x3,Cone:()=>C3,ConciergeBell:()=>E3,Computer:()=>q3,Component:()=>A3,Compass:()=>P3,Command:()=>S3,Combine:()=>T3,ColumnsSettings:()=>X5,Columns4:()=>O3,Columns3Cog:()=>X5,Columns3:()=>$7,Columns2:()=>v7,Columns:()=>v7,Coins:()=>B3,Cog:()=>D3,Coffee:()=>H3,Codesandbox:()=>F3,Codepen:()=>N3,CodeXml:()=>h7,CodeSquare:()=>O9,Code2:()=>h7,Code:()=>z3,Club:()=>I3,Clover:()=>G3,Cloudy:()=>V3,CloudUpload:()=>b7,CloudSunRain:()=>X3,CloudSun:()=>W3,CloudSnow:()=>Y3,CloudRainWind:()=>J3,CloudRain:()=>K3,CloudOff:()=>eG,CloudMoonRain:()=>oG,CloudMoon:()=>Z3,CloudLightning:()=>tG,CloudHail:()=>aG,CloudFog:()=>rG,CloudDrizzle:()=>sG,CloudDownload:()=>k7,CloudCog:()=>lG,CloudCheck:()=>iG,CloudAlert:()=>nG,Cloud:()=>Q3,ClosedCaption:()=>pG,ClockPlus:()=>dG,ClockFading:()=>uG,ClockArrowUp:()=>mG,ClockArrowDown:()=>_G,ClockAlert:()=>gG,Clock9:()=>$G,Clock8:()=>vG,Clock7:()=>hG,Clock6:()=>bG,Clock5:()=>kG,Clock4:()=>fG,Clock3:()=>yG,Clock2:()=>LG,Clock12:()=>jG,Clock11:()=>RG,Clock10:()=>MG,Clock1:()=>UG,Clock:()=>cG,ClipboardX:()=>CG,ClipboardType:()=>EG,ClipboardSignature:()=>y7,ClipboardPlus:()=>xG,ClipboardPenLine:()=>y7,ClipboardPen:()=>f7,ClipboardPaste:()=>qG,ClipboardMinus:()=>AG,ClipboardList:()=>SG,ClipboardEdit:()=>f7,ClipboardCopy:()=>PG,ClipboardClock:()=>TG,ClipboardCheck:()=>OG,Clipboard:()=>wG,Clapperboard:()=>BG,Citrus:()=>DG,CircuitBoard:()=>HG,CircleX:()=>L7,CircleUserRound:()=>R7,CircleUser:()=>j7,CircleStop:()=>M7,CircleStar:()=>NG,CircleSmall:()=>zG,CircleSlashed:()=>U7,CircleSlash2:()=>U7,CircleSlash:()=>IG,CircleQuestionMark:()=>Y5,CirclePower:()=>w7,CirclePoundSterling:()=>GG,CirclePlus:()=>x7,CirclePlay:()=>C7,CirclePercent:()=>E7,CirclePause:()=>q7,CircleParkingOff:()=>S7,CircleParking:()=>A7,CircleOff:()=>VG,CircleMinus:()=>P7,CircleHelp:()=>Y5,CircleGauge:()=>T7,CircleFadingPlus:()=>QG,CircleFadingArrowUp:()=>WG,CircleEqual:()=>XG,CircleEllipsis:()=>YG,CircleDotDashed:()=>JG,CircleDot:()=>KG,CircleDollarSign:()=>ZG,CircleDivide:()=>O7,CircleDashed:()=>eV,CircleChevronUp:()=>B7,CircleChevronRight:()=>D7,CircleChevronLeft:()=>H7,CircleChevronDown:()=>N7,CircleCheckBig:()=>z7,CircleCheck:()=>F7,CircleArrowUp:()=>I7,CircleArrowRight:()=>G7,CircleArrowOutUpRight:()=>V7,CircleArrowOutUpLeft:()=>Q7,CircleArrowOutDownRight:()=>W7,CircleArrowOutDownLeft:()=>X7,CircleArrowLeft:()=>Y7,CircleArrowDown:()=>K7,CircleAlert:()=>J7,Circle:()=>FG,CigaretteOff:()=>tV,Cigarette:()=>oV,Church:()=>aV,Chromium:()=>Z7,Chrome:()=>Z7,ChevronsUpDown:()=>rV,ChevronsUp:()=>sV,ChevronsRightLeft:()=>iV,ChevronsRight:()=>lV,ChevronsLeftRightEllipsis:()=>cV,ChevronsLeftRight:()=>pV,ChevronsLeft:()=>nV,ChevronsDownUp:()=>uV,ChevronsDown:()=>dV,ChevronUpSquare:()=>B9,ChevronUpCircle:()=>B7,ChevronUp:()=>_V,ChevronRightSquare:()=>D9,ChevronRightCircle:()=>D7,ChevronRight:()=>gV,ChevronLeftSquare:()=>H9,ChevronLeftCircle:()=>H7,ChevronLeft:()=>mV,ChevronLast:()=>$V,ChevronFirst:()=>vV,ChevronDownSquare:()=>F9,ChevronDownCircle:()=>N7,ChevronDown:()=>hV,Cherry:()=>bV,ChefHat:()=>kV,CheckSquare2:()=>N9,CheckSquare:()=>z9,CheckLine:()=>fV,CheckCircle2:()=>F7,CheckCircle:()=>z7,CheckCheck:()=>LV,Check:()=>yV,ChartSpline:()=>jV,ChartScatter:()=>e4,ChartPie:()=>o4,ChartNoAxesGantt:()=>t4,ChartNoAxesCombined:()=>RV,ChartNoAxesColumnIncreasing:()=>r4,ChartNoAxesColumnDecreasing:()=>MV,ChartNoAxesColumn:()=>a4,ChartNetwork:()=>UV,ChartLine:()=>s4,ChartGantt:()=>wV,ChartColumnStacked:()=>xV,ChartColumnIncreasing:()=>i4,ChartColumnDecreasing:()=>CV,ChartColumnBig:()=>n4,ChartColumn:()=>l4,ChartCandlestick:()=>p4,ChartBarStacked:()=>EV,ChartBarIncreasing:()=>qV,ChartBarDecreasing:()=>AV,ChartBarBig:()=>d4,ChartBar:()=>c4,ChartArea:()=>u4,Cctv:()=>SV,Cat:()=>PV,Castle:()=>TV,Cast:()=>BV,CassetteTape:()=>OV,CaseUpper:()=>DV,CaseSensitive:()=>HV,CaseLower:()=>FV,Carrot:()=>zV,CardSim:()=>NV,Caravan:()=>IV,CarTaxiFront:()=>VV,CarFront:()=>QV,Car:()=>GV,CaptionsOff:()=>WV,Captions:()=>m4,Cannabis:()=>XV,CandyOff:()=>KV,CandyCane:()=>JV,Candy:()=>YV,CandlestickChart:()=>p4,CameraOff:()=>ZV,Camera:()=>eQ,CalendarX2:()=>aQ,CalendarX:()=>tQ,CalendarSync:()=>rQ,CalendarSearch:()=>sQ,CalendarRange:()=>lQ,CalendarPlus2:()=>nQ,CalendarPlus:()=>iQ,CalendarOff:()=>pQ,CalendarMinus2:()=>dQ,CalendarMinus:()=>cQ,CalendarHeart:()=>uQ,CalendarFold:()=>mQ,CalendarDays:()=>_Q,CalendarCog:()=>gQ,CalendarClock:()=>$Q,CalendarCheck2:()=>hQ,CalendarCheck:()=>vQ,CalendarArrowUp:()=>bQ,CalendarArrowDown:()=>kQ,Calendar1:()=>fQ,Calendar:()=>oQ,Calculator:()=>yQ,CakeSlice:()=>jQ,Cake:()=>LQ,CableCar:()=>MQ,Cable:()=>RQ,BusFront:()=>wQ,Bus:()=>UQ,Building2:()=>CQ,Building:()=>xQ,BugPlay:()=>qQ,BugOff:()=>AQ,Bug:()=>EQ,Bubbles:()=>SQ,BrushCleaning:()=>TQ,Brush:()=>PQ,BringToFront:()=>OQ,BriefcaseMedical:()=>DQ,BriefcaseConveyorBelt:()=>HQ,BriefcaseBusiness:()=>FQ,Briefcase:()=>BQ,BrickWallShield:()=>zQ,BrickWallFire:()=>IQ,BrickWall:()=>NQ,BrainCog:()=>VQ,BrainCircuit:()=>QQ,Brain:()=>GQ,Brackets:()=>WQ,Braces:()=>_4,Boxes:()=>XQ,BoxSelect:()=>S9,Box:()=>YQ,BowArrow:()=>KQ,BottleWine:()=>JQ,BotOff:()=>eW,BotMessageSquare:()=>tW,Bot:()=>ZQ,BoomBox:()=>oW,BookmarkX:()=>rW,BookmarkPlus:()=>sW,BookmarkMinus:()=>lW,BookmarkCheck:()=>iW,Bookmark:()=>aW,BookX:()=>pW,BookUser:()=>cW,BookUp2:()=>uW,BookUp:()=>dW,BookType:()=>mW,BookText:()=>_W,BookTemplate:()=>g4,BookPlus:()=>gW,BookOpenText:()=>vW,BookOpenCheck:()=>hW,BookOpen:()=>$W,BookMinus:()=>bW,BookMarked:()=>kW,BookLock:()=>fW,BookKey:()=>yW,BookImage:()=>LW,BookHeart:()=>jW,BookHeadphones:()=>MW,BookDown:()=>RW,BookDashed:()=>g4,BookCopy:()=>UW,BookCheck:()=>wW,BookAudio:()=>xW,BookAlert:()=>CW,BookA:()=>EW,Book:()=>nW,Bone:()=>qW,Bomb:()=>AW,Bolt:()=>SW,Bold:()=>TW,BluetoothSearching:()=>PW,BluetoothOff:()=>BW,BluetoothConnected:()=>DW,Bluetooth:()=>OW,Blocks:()=>HW,Blinds:()=>NW,Blend:()=>zW,Bitcoin:()=>FW,Birdhouse:()=>IW,Bird:()=>GW,Biohazard:()=>VW,Binoculars:()=>QW,Binary:()=>WW,Bike:()=>XW,BicepsFlexed:()=>YW,BetweenVerticalStart:()=>KW,BetweenVerticalEnd:()=>JW,BetweenHorizontalStart:()=>$4,BetweenHorizontalEnd:()=>v4,BetweenHorizonalStart:()=>$4,BetweenHorizonalEnd:()=>v4,BellRing:()=>eX,BellPlus:()=>oX,BellOff:()=>tX,BellMinus:()=>aX,BellElectric:()=>sX,BellDot:()=>rX,Bell:()=>ZW,BeerOff:()=>iX,Beer:()=>lX,Beef:()=>pX,BedSingle:()=>cX,BedDouble:()=>uX,Bed:()=>nX,BeanOff:()=>mX,Bean:()=>dX,Beaker:()=>_X,BatteryWarning:()=>$X,BatteryPlus:()=>hX,BatteryMedium:()=>vX,BatteryLow:()=>bX,BatteryFull:()=>kX,BatteryCharging:()=>fX,Battery:()=>gX,Bath:()=>yX,Baseline:()=>LX,Barrel:()=>jX,Barcode:()=>RX,BarChartHorizontalBig:()=>d4,BarChartHorizontal:()=>c4,BarChartBig:()=>n4,BarChart4:()=>i4,BarChart3:()=>l4,BarChart2:()=>a4,BarChart:()=>r4,BanknoteX:()=>wX,BanknoteArrowUp:()=>UX,BanknoteArrowDown:()=>xX,Banknote:()=>MX,Bandage:()=>CX,Banana:()=>EX,Ban:()=>qX,BaggageClaim:()=>AX,BadgeX:()=>PX,BadgeTurkishLira:()=>TX,BadgeSwissFranc:()=>OX,BadgeRussianRuble:()=>BX,BadgeQuestionMark:()=>h4,BadgePoundSterling:()=>DX,BadgePlus:()=>HX,BadgePercent:()=>FX,BadgeMinus:()=>NX,BadgeJapaneseYen:()=>zX,BadgeInfo:()=>IX,BadgeIndianRupee:()=>GX,BadgeHelp:()=>h4,BadgeEuro:()=>VX,BadgeDollarSign:()=>QX,BadgeCheck:()=>b4,BadgeCent:()=>WX,BadgeAlert:()=>XX,Badge:()=>SX,Backpack:()=>YX,Baby:()=>KX,Axis3d:()=>k4,Axis3D:()=>k4,Axe:()=>JX,Award:()=>ZX,AudioWaveform:()=>eY,AudioLines:()=>oY,Atom:()=>tY,AtSign:()=>aY,AsteriskSquare:()=>G9,Asterisk:()=>rY,ArrowsUpFromLine:()=>sY,ArrowUpZa:()=>f4,ArrowUpZA:()=>f4,ArrowUpWideNarrow:()=>iY,ArrowUpToLine:()=>nY,ArrowUpSquare:()=>V9,ArrowUpRightSquare:()=>Q9,ArrowUpRightFromSquare:()=>Y9,ArrowUpRightFromCircle:()=>V7,ArrowUpRight:()=>pY,ArrowUpNarrowWide:()=>y4,ArrowUpLeftSquare:()=>W9,ArrowUpLeftFromSquare:()=>K9,ArrowUpLeftFromCircle:()=>Q7,ArrowUpLeft:()=>cY,ArrowUpFromLine:()=>dY,ArrowUpFromDot:()=>uY,ArrowUpDown:()=>mY,ArrowUpCircle:()=>I7,ArrowUpAz:()=>L4,ArrowUpAZ:()=>L4,ArrowUp10:()=>_Y,ArrowUp01:()=>gY,ArrowUp:()=>lY,ArrowRightToLine:()=>vY,ArrowRightSquare:()=>X9,ArrowRightLeft:()=>hY,ArrowRightFromLine:()=>bY,ArrowRightCircle:()=>G7,ArrowRight:()=>$Y,ArrowLeftToLine:()=>fY,ArrowLeftSquare:()=>e6,ArrowLeftRight:()=>LY,ArrowLeftFromLine:()=>yY,ArrowLeftCircle:()=>Y7,ArrowLeft:()=>kY,ArrowDownZa:()=>j4,ArrowDownZA:()=>j4,ArrowDownWideNarrow:()=>R4,ArrowDownUp:()=>RY,ArrowDownToLine:()=>MY,ArrowDownToDot:()=>UY,ArrowDownSquare:()=>o6,ArrowDownRightSquare:()=>t6,ArrowDownRightFromSquare:()=>J9,ArrowDownRightFromCircle:()=>W7,ArrowDownRight:()=>wY,ArrowDownNarrowWide:()=>xY,ArrowDownLeftSquare:()=>a6,ArrowDownLeftFromSquare:()=>Z9,ArrowDownLeftFromCircle:()=>X7,ArrowDownLeft:()=>CY,ArrowDownFromLine:()=>EY,ArrowDownCircle:()=>K7,ArrowDownAz:()=>M4,ArrowDownAZ:()=>M4,ArrowDown10:()=>qY,ArrowDown01:()=>AY,ArrowDown:()=>jY,ArrowBigUpDash:()=>PY,ArrowBigUp:()=>SY,ArrowBigRightDash:()=>OY,ArrowBigRight:()=>TY,ArrowBigLeftDash:()=>DY,ArrowBigLeft:()=>BY,ArrowBigDownDash:()=>FY,ArrowBigDown:()=>HY,Armchair:()=>NY,AreaChart:()=>u4,ArchiveX:()=>IY,ArchiveRestore:()=>GY,Archive:()=>zY,Apple:()=>VY,AppWindowMac:()=>WY,AppWindow:()=>QY,Aperture:()=>XY,Anvil:()=>YY,Antenna:()=>KY,Annoyed:()=>JY,Angry:()=>ZY,Anchor:()=>eK,Amphora:()=>oK,Ampersands:()=>tK,Ampersand:()=>aK,Ambulance:()=>rK,AlignVerticalSpaceBetween:()=>sK,AlignVerticalSpaceAround:()=>lK,AlignVerticalJustifyStart:()=>iK,AlignVerticalJustifyEnd:()=>nK,AlignVerticalJustifyCenter:()=>pK,AlignVerticalDistributeStart:()=>cK,AlignVerticalDistributeEnd:()=>dK,AlignVerticalDistributeCenter:()=>uK,AlignStartVertical:()=>mK,AlignStartHorizontal:()=>_K,AlignRight:()=>a9,AlignLeft:()=>I5,AlignJustify:()=>r9,AlignHorizontalSpaceBetween:()=>gK,AlignHorizontalSpaceAround:()=>$K,AlignHorizontalJustifyStart:()=>vK,AlignHorizontalJustifyEnd:()=>hK,AlignHorizontalJustifyCenter:()=>bK,AlignHorizontalDistributeStart:()=>kK,AlignHorizontalDistributeEnd:()=>fK,AlignHorizontalDistributeCenter:()=>yK,AlignEndVertical:()=>LK,AlignEndHorizontal:()=>jK,AlignCenterVertical:()=>RK,AlignCenterHorizontal:()=>MK,AlignCenter:()=>s9,AlertTriangle:()=>KZ,AlertOctagon:()=>x6,AlertCircle:()=>J7,Album:()=>UK,AlarmSmoke:()=>wK,AlarmPlus:()=>U4,AlarmMinus:()=>w4,AlarmClockPlus:()=>U4,AlarmClockOff:()=>CK,AlarmClockMinus:()=>w4,AlarmClockCheck:()=>x4,AlarmClock:()=>xK,AlarmCheck:()=>x4,Airplay:()=>EK,AirVent:()=>qK,ActivitySquare:()=>r6,Activity:()=>AK,Accessibility:()=>SK,ALargeSmall:()=>PK,AArrowUp:()=>TK,AArrowDown:()=>OK});var OK=[["path",{d:"m14 12 4 4 4-4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var TK=[["path",{d:"m14 11 4-4 4 4"}],["path",{d:"M18 16V7"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var PK=[["path",{d:"m15 16 2.536-7.328a1.02 1.02 1 0 1 1.928 0L22 16"}],["path",{d:"M15.697 14h5.606"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var SK=[["circle",{cx:"16",cy:"4",r:"1"}],["path",{d:"m18 19 1-7-6 1"}],["path",{d:"m5 8 3-3 5.5 3-2.36 3.5"}],["path",{d:"M4.24 14.5a5 5 0 0 0 6.88 6"}],["path",{d:"M13.76 17.5a5 5 0 0 0-6.88-6"}]];var AK=[["path",{d:"M22 12h-2.48a2 2 0 0 0-1.93 1.46l-2.35 8.36a.25.25 0 0 1-.48 0L9.24 2.18a.25.25 0 0 0-.48 0l-2.35 8.36A2 2 0 0 1 4.49 12H2"}]];var qK=[["path",{d:"M18 17.5a2.5 2.5 0 1 1-4 2.03V12"}],["path",{d:"M6 12H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 8h12"}],["path",{d:"M6.6 15.572A2 2 0 1 0 10 17v-5"}]];var EK=[["path",{d:"M5 17H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-1"}],["path",{d:"m12 15 5 6H7Z"}]];var x4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"m9 13 2 2 4-4"}]];var w4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M9 13h6"}]];var CK=[["path",{d:"M6.87 6.87a8 8 0 1 0 11.26 11.26"}],["path",{d:"M19.9 14.25a8 8 0 0 0-9.15-9.15"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.26 18.67 4 21"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 4 2 6"}]];var U4=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}],["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}]];var xK=[["circle",{cx:"12",cy:"13",r:"8"}],["path",{d:"M12 9v4l2 2"}],["path",{d:"M5 3 2 6"}],["path",{d:"m22 6-3-3"}],["path",{d:"M6.38 18.7 4 21"}],["path",{d:"M17.64 18.67 20 21"}]];var wK=[["path",{d:"M11 21c0-2.5 2-2.5 2-5"}],["path",{d:"M16 21c0-2.5 2-2.5 2-5"}],["path",{d:"m19 8-.8 3a1.25 1.25 0 0 1-1.2 1H7a1.25 1.25 0 0 1-1.2-1L5 8"}],["path",{d:"M21 3a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V4a1 1 0 0 1 1-1z"}],["path",{d:"M6 21c0-2.5 2-2.5 2-5"}]];var UK=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["polyline",{points:"11 3 11 11 14 8 17 11 17 3"}]];var MK=[["path",{d:"M2 12h20"}],["path",{d:"M10 16v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-4"}],["path",{d:"M10 8V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v4"}],["path",{d:"M20 16v1a2 2 0 0 1-2 2h-2a2 2 0 0 1-2-2v-1"}],["path",{d:"M14 8V7c0-1.1.9-2 2-2h2a2 2 0 0 1 2 2v1"}]];var RK=[["path",{d:"M12 2v20"}],["path",{d:"M8 10H4a2 2 0 0 1-2-2V6c0-1.1.9-2 2-2h4"}],["path",{d:"M16 10h4a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-4"}],["path",{d:"M8 20H7a2 2 0 0 1-2-2v-2c0-1.1.9-2 2-2h1"}],["path",{d:"M16 14h1a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-1"}]];var jK=[["rect",{width:"6",height:"16",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"9",rx:"2"}],["path",{d:"M22 22H2"}]];var LK=[["rect",{width:"16",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"9",height:"6",x:"9",y:"14",rx:"2"}],["path",{d:"M22 22V2"}]];var yK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M17 22v-5"}],["path",{d:"M17 7V2"}],["path",{d:"M7 22v-3"}],["path",{d:"M7 5V2"}]];var fK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M10 2v20"}],["path",{d:"M20 2v20"}]];var kK=[["rect",{width:"6",height:"14",x:"4",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"14",y:"7",rx:"2"}],["path",{d:"M4 2v20"}],["path",{d:"M14 2v20"}]];var bK=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M12 2v20"}]];var hK=[["rect",{width:"6",height:"14",x:"2",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"12",y:"7",rx:"2"}],["path",{d:"M22 2v20"}]];var vK=[["rect",{width:"6",height:"14",x:"6",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"16",y:"7",rx:"2"}],["path",{d:"M2 2v20"}]];var $K=[["rect",{width:"6",height:"10",x:"9",y:"7",rx:"2"}],["path",{d:"M4 22V2"}],["path",{d:"M20 22V2"}]];var gK=[["rect",{width:"6",height:"14",x:"3",y:"5",rx:"2"}],["rect",{width:"6",height:"10",x:"15",y:"7",rx:"2"}],["path",{d:"M3 2v20"}],["path",{d:"M21 2v20"}]];var _K=[["rect",{width:"6",height:"16",x:"4",y:"6",rx:"2"}],["rect",{width:"6",height:"9",x:"14",y:"6",rx:"2"}],["path",{d:"M22 2H2"}]];var mK=[["rect",{width:"9",height:"6",x:"6",y:"14",rx:"2"}],["rect",{width:"16",height:"6",x:"6",y:"4",rx:"2"}],["path",{d:"M2 2v20"}]];var uK=[["path",{d:"M22 17h-3"}],["path",{d:"M22 7h-5"}],["path",{d:"M5 17H2"}],["path",{d:"M7 7H2"}],["rect",{x:"5",y:"14",width:"14",height:"6",rx:"2"}],["rect",{x:"7",y:"4",width:"10",height:"6",rx:"2"}]];var dK=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 20h20"}],["path",{d:"M2 10h20"}]];var cK=[["rect",{width:"14",height:"6",x:"5",y:"14",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M2 4h20"}]];var pK=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 12h20"}]];var nK=[["rect",{width:"14",height:"6",x:"5",y:"12",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"2",rx:"2"}],["path",{d:"M2 22h20"}]];var iK=[["rect",{width:"14",height:"6",x:"5",y:"16",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"6",rx:"2"}],["path",{d:"M2 2h20"}]];var lK=[["rect",{width:"10",height:"6",x:"7",y:"9",rx:"2"}],["path",{d:"M22 20H2"}],["path",{d:"M22 4H2"}]];var sK=[["rect",{width:"14",height:"6",x:"5",y:"15",rx:"2"}],["rect",{width:"10",height:"6",x:"7",y:"3",rx:"2"}],["path",{d:"M2 21h20"}],["path",{d:"M2 3h20"}]];var rK=[["path",{d:"M10 10H6"}],["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.28a1 1 0 0 0-.684-.948l-1.923-.641a1 1 0 0 1-.578-.502l-1.539-3.076A1 1 0 0 0 16.382 8H14"}],["path",{d:"M8 8v4"}],["path",{d:"M9 18h6"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var aK=[["path",{d:"M17.5 12c0 4.4-3.6 8-8 8A4.5 4.5 0 0 1 5 15.5c0-6 8-4 8-8.5a3 3 0 1 0-6 0c0 3 2.5 8.5 12 13"}],["path",{d:"M16 12h3"}]];var tK=[["path",{d:"M10 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}],["path",{d:"M22 17c-5-3-7-7-7-9a2 2 0 0 1 4 0c0 2.5-5 2.5-5 6 0 1.7 1.3 3 3 3 2.8 0 5-2.2 5-5"}]];var oK=[["path",{d:"M10 2v5.632c0 .424-.272.795-.653.982A6 6 0 0 0 6 14c.006 4 3 7 5 8"}],["path",{d:"M10 5H8a2 2 0 0 0 0 4h.68"}],["path",{d:"M14 2v5.632c0 .424.272.795.652.982A6 6 0 0 1 18 14c0 4-3 7-5 8"}],["path",{d:"M14 5h2a2 2 0 0 1 0 4h-.68"}],["path",{d:"M18 22H6"}],["path",{d:"M9 2h6"}]];var eK=[["path",{d:"M12 22V8"}],["path",{d:"M5 12H2a10 10 0 0 0 20 0h-3"}],["circle",{cx:"12",cy:"5",r:"3"}]];var ZY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["path",{d:"M7.5 8 10 9"}],["path",{d:"m14 9 2.5-1"}],["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}]];var JY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 15h8"}],["path",{d:"M8 9h2"}],["path",{d:"M14 9h2"}]];var KY=[["path",{d:"M2 12 7 2"}],["path",{d:"m7 12 5-10"}],["path",{d:"m12 12 5-10"}],["path",{d:"m17 12 5-10"}],["path",{d:"M4.5 7h15"}],["path",{d:"M12 16v6"}]];var YY=[["path",{d:"M7 10H6a4 4 0 0 1-4-4 1 1 0 0 1 1-1h4"}],["path",{d:"M7 5a1 1 0 0 1 1-1h13a1 1 0 0 1 1 1 7 7 0 0 1-7 7H8a1 1 0 0 1-1-1z"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M5 20a3 3 0 0 1 3-3h8a3 3 0 0 1 3 3 1 1 0 0 1-1 1H6a1 1 0 0 1-1-1"}]];var XY=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14.31 8 5.74 9.94"}],["path",{d:"M9.69 8h11.48"}],["path",{d:"m7.38 12 5.74-9.94"}],["path",{d:"M9.69 16 3.95 6.06"}],["path",{d:"M14.31 16H2.83"}],["path",{d:"m16.62 12-5.74 9.94"}]];var WY=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h.01"}],["path",{d:"M10 8h.01"}],["path",{d:"M14 8h.01"}]];var QY=[["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}],["path",{d:"M10 4v4"}],["path",{d:"M2 8h20"}],["path",{d:"M6 4v4"}]];var VY=[["path",{d:"M12 6.528V3a1 1 0 0 1 1-1h0"}],["path",{d:"M18.237 21A15 15 0 0 0 22 11a6 6 0 0 0-10-4.472A6 6 0 0 0 2 11a15.1 15.1 0 0 0 3.763 10 3 3 0 0 0 3.648.648 5.5 5.5 0 0 1 5.178 0A3 3 0 0 0 18.237 21"}]];var GY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h2"}],["path",{d:"M20 8v11a2 2 0 0 1-2 2h-2"}],["path",{d:"m9 15 3-3 3 3"}],["path",{d:"M12 12v9"}]];var IY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"m9.5 17 5-5"}],["path",{d:"m9.5 12 5 5"}]];var zY=[["rect",{width:"20",height:"5",x:"2",y:"3",rx:"1"}],["path",{d:"M4 8v11a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8"}],["path",{d:"M10 12h4"}]];var NY=[["path",{d:"M19 9V6a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v3"}],["path",{d:"M3 16a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-9a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var FY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V9a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}],["path",{d:"M9 4h6"}]];var HY=[["path",{d:"M15 11a1 1 0 0 0 1 1h2.939a1 1 0 0 1 .75 1.811l-6.835 6.836a1.207 1.207 0 0 1-1.707 0L4.31 13.81a1 1 0 0 1 .75-1.811H8a1 1 0 0 0 1-1V5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1z"}]];var DY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h2a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}],["path",{d:"M20 9v6"}]];var BY=[["path",{d:"M13 9a1 1 0 0 1-1-1V5.061a1 1 0 0 0-1.811-.75l-6.835 6.836a1.207 1.207 0 0 0 0 1.707l6.835 6.835a1 1 0 0 0 1.811-.75V16a1 1 0 0 1 1-1h6a1 1 0 0 0 1-1v-4a1 1 0 0 0-1-1z"}]];var OY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H9a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M4 9v6"}]];var TY=[["path",{d:"M11 9a1 1 0 0 0 1-1V5.061a1 1 0 0 1 1.811-.75l6.836 6.836a1.207 1.207 0 0 1 0 1.707l-6.836 6.835a1 1 0 0 1-1.811-.75V16a1 1 0 0 0-1-1H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}]];var PY=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v2a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}],["path",{d:"M9 20h6"}]];var SY=[["path",{d:"M9 13a1 1 0 0 0-1-1H5.061a1 1 0 0 1-.75-1.811l6.836-6.835a1.207 1.207 0 0 1 1.707 0l6.835 6.835a1 1 0 0 1-.75 1.811H16a1 1 0 0 0-1 1v6a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1z"}]];var AY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var qY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var M4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var EY=[["path",{d:"M19 3H5"}],["path",{d:"M12 21V7"}],["path",{d:"m6 15 6 6 6-6"}]];var CY=[["path",{d:"M17 7 7 17"}],["path",{d:"M17 17H7V7"}]];var xY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h4"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h10"}]];var wY=[["path",{d:"m7 7 10 10"}],["path",{d:"M17 7v10H7"}]];var UY=[["path",{d:"M12 2v14"}],["path",{d:"m19 9-7 7-7-7"}],["circle",{cx:"12",cy:"21",r:"1"}]];var MY=[["path",{d:"M12 17V3"}],["path",{d:"m6 11 6 6 6-6"}],["path",{d:"M19 21H5"}]];var RY=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"m21 8-4-4-4 4"}],["path",{d:"M17 4v16"}]];var R4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 20V4"}],["path",{d:"M11 4h10"}],["path",{d:"M11 8h7"}],["path",{d:"M11 12h4"}]];var j4=[["path",{d:"m3 16 4 4 4-4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var jY=[["path",{d:"M12 5v14"}],["path",{d:"m19 12-7 7-7-7"}]];var LY=[["path",{d:"M8 3 4 7l4 4"}],["path",{d:"M4 7h16"}],["path",{d:"m16 21 4-4-4-4"}],["path",{d:"M20 17H4"}]];var yY=[["path",{d:"m9 6-6 6 6 6"}],["path",{d:"M3 12h14"}],["path",{d:"M21 19V5"}]];var fY=[["path",{d:"M3 19V5"}],["path",{d:"m13 6-6 6 6 6"}],["path",{d:"M7 12h14"}]];var kY=[["path",{d:"m12 19-7-7 7-7"}],["path",{d:"M19 12H5"}]];var bY=[["path",{d:"M3 5v14"}],["path",{d:"M21 12H7"}],["path",{d:"m15 18 6-6-6-6"}]];var hY=[["path",{d:"m16 3 4 4-4 4"}],["path",{d:"M20 7H4"}],["path",{d:"m8 21-4-4 4-4"}],["path",{d:"M4 17h16"}]];var vY=[["path",{d:"M17 12H3"}],["path",{d:"m11 18 6-6-6-6"}],["path",{d:"M21 5v14"}]];var $Y=[["path",{d:"M5 12h14"}],["path",{d:"m12 5 7 7-7 7"}]];var gY=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["rect",{x:"15",y:"4",width:"4",height:"6",ry:"2"}],["path",{d:"M17 20v-6h-2"}],["path",{d:"M15 20h4"}]];var _Y=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M17 10V4h-2"}],["path",{d:"M15 10h4"}],["rect",{x:"15",y:"14",width:"4",height:"6",ry:"2"}]];var L4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M20 8h-5"}],["path",{d:"M15 10V6.5a2.5 2.5 0 0 1 5 0V10"}],["path",{d:"M15 14h5l-5 6h5"}]];var mY=[["path",{d:"m21 16-4 4-4-4"}],["path",{d:"M17 20V4"}],["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}]];var uY=[["path",{d:"m5 9 7-7 7 7"}],["path",{d:"M12 16V2"}],["circle",{cx:"12",cy:"21",r:"1"}]];var dY=[["path",{d:"m18 9-6-6-6 6"}],["path",{d:"M12 3v14"}],["path",{d:"M5 21h14"}]];var cY=[["path",{d:"M7 17V7h10"}],["path",{d:"M17 17 7 7"}]];var y4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h4"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h10"}]];var pY=[["path",{d:"M7 7h10v10"}],["path",{d:"M7 17 17 7"}]];var nY=[["path",{d:"M5 3h14"}],["path",{d:"m18 13-6-6-6 6"}],["path",{d:"M12 7v14"}]];var iY=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M11 12h10"}],["path",{d:"M11 16h7"}],["path",{d:"M11 20h4"}]];var f4=[["path",{d:"m3 8 4-4 4 4"}],["path",{d:"M7 4v16"}],["path",{d:"M15 4h5l-5 6h5"}],["path",{d:"M15 20v-3.5a2.5 2.5 0 0 1 5 0V20"}],["path",{d:"M20 18h-5"}]];var lY=[["path",{d:"m5 12 7-7 7 7"}],["path",{d:"M12 19V5"}]];var sY=[["path",{d:"m4 6 3-3 3 3"}],["path",{d:"M7 17V3"}],["path",{d:"m14 6 3-3 3 3"}],["path",{d:"M17 17V3"}],["path",{d:"M4 21h16"}]];var rY=[["path",{d:"M12 6v12"}],["path",{d:"M17.196 9 6.804 15"}],["path",{d:"m6.804 9 10.392 6"}]];var aY=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M16 8v5a3 3 0 0 0 6 0v-1a10 10 0 1 0-4 8"}]];var tY=[["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M20.2 20.2c2.04-2.03.02-7.36-4.5-11.9-4.54-4.52-9.87-6.54-11.9-4.5-2.04 2.03-.02 7.36 4.5 11.9 4.54 4.52 9.87 6.54 11.9 4.5Z"}],["path",{d:"M15.7 15.7c4.52-4.54 6.54-9.87 4.5-11.9-2.03-2.04-7.36-.02-11.9 4.5-4.52 4.54-6.54 9.87-4.5 11.9 2.03 2.04 7.36.02 11.9-4.5Z"}]];var oY=[["path",{d:"M2 10v3"}],["path",{d:"M6 6v11"}],["path",{d:"M10 3v18"}],["path",{d:"M14 8v7"}],["path",{d:"M18 5v13"}],["path",{d:"M22 10v3"}]];var eY=[["path",{d:"M2 13a2 2 0 0 0 2-2V7a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0V4a2 2 0 0 1 4 0v13a2 2 0 0 0 4 0v-4a2 2 0 0 1 2-2"}]];var ZX=[["path",{d:"m15.477 12.89 1.515 8.526a.5.5 0 0 1-.81.47l-3.58-2.687a1 1 0 0 0-1.197 0l-3.586 2.686a.5.5 0 0 1-.81-.469l1.514-8.526"}],["circle",{cx:"12",cy:"8",r:"6"}]];var JX=[["path",{d:"m14 12-8.381 8.38a1 1 0 0 1-3.001-3L11 9"}],["path",{d:"M15 15.5a.5.5 0 0 0 .5.5A6.5 6.5 0 0 0 22 9.5a.5.5 0 0 0-.5-.5h-1.672a2 2 0 0 1-1.414-.586l-5.062-5.062a1.205 1.205 0 0 0-1.704 0L9.352 5.648a1.205 1.205 0 0 0 0 1.704l5.062 5.062A2 2 0 0 1 15 13.828z"}]];var k4=[["path",{d:"M13.5 10.5 15 9"}],["path",{d:"M4 4v15a1 1 0 0 0 1 1h15"}],["path",{d:"M4.293 19.707 6 18"}],["path",{d:"m9 15 1.5-1.5"}]];var KX=[["path",{d:"M10 16c.5.3 1.2.5 2 .5s1.5-.2 2-.5"}],["path",{d:"M15 12h.01"}],["path",{d:"M19.38 6.813A9 9 0 0 1 20.8 10.2a2 2 0 0 1 0 3.6 9 9 0 0 1-17.6 0 2 2 0 0 1 0-3.6A9 9 0 0 1 12 3c2 0 3.5 1.1 3.5 2.5s-.9 2.5-2 2.5c-.8 0-1.5-.4-1.5-1"}],["path",{d:"M9 12h.01"}]];var YX=[["path",{d:"M4 10a4 4 0 0 1 4-4h8a4 4 0 0 1 4 4v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}],["path",{d:"M8 10h8"}],["path",{d:"M8 18h8"}],["path",{d:"M8 22v-6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v6"}],["path",{d:"M9 6V4a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2"}]];var XX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var WX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M12 7v10"}],["path",{d:"M15.4 10a4 4 0 1 0 0 4"}]];var b4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 12 2 2 4-4"}]];var QX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var VX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M7 12h5"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var GX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 8h8"}],["path",{d:"M8 12h8"}],["path",{d:"m13 17-5-1h1a4 4 0 0 0 0-8"}]];var IX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"16",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"8",y2:"8"}]];var zX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m9 8 3 3v7"}],["path",{d:"m12 11 3-3"}],["path",{d:"M9 12h6"}],["path",{d:"M9 16h6"}]];var NX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var FX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var HX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"12",x2:"12",y1:"8",y2:"16"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var DX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M8 12h4"}],["path",{d:"M10 16V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 16h7"}]];var h4=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["line",{x1:"12",x2:"12.01",y1:"17",y2:"17"}]];var BX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M9 16h5"}],["path",{d:"M9 12h5a2 2 0 1 0 0-4h-3v9"}]];var OX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["path",{d:"M11 17V8h4"}],["path",{d:"M11 12h3"}],["path",{d:"M9 16h4"}]];var TX=[["path",{d:"M11 7v10a5 5 0 0 0 5-5"}],["path",{d:"m15 8-6 3"}],["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76"}]];var PX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var SX=[["path",{d:"M3.85 8.62a4 4 0 0 1 4.78-4.77 4 4 0 0 1 6.74 0 4 4 0 0 1 4.78 4.78 4 4 0 0 1 0 6.74 4 4 0 0 1-4.77 4.78 4 4 0 0 1-6.75 0 4 4 0 0 1-4.78-4.77 4 4 0 0 1 0-6.76Z"}]];var AX=[["path",{d:"M22 18H6a2 2 0 0 1-2-2V7a2 2 0 0 0-2-2"}],["path",{d:"M17 14V4a2 2 0 0 0-2-2h-1a2 2 0 0 0-2 2v10"}],["rect",{width:"13",height:"8",x:"8",y:"6",rx:"1"}],["circle",{cx:"18",cy:"20",r:"2"}],["circle",{cx:"9",cy:"20",r:"2"}]];var qX=[["path",{d:"M4.929 4.929 19.07 19.071"}],["circle",{cx:"12",cy:"12",r:"10"}]];var EX=[["path",{d:"M4 13c3.5-2 8-2 10 2a5.5 5.5 0 0 1 8 5"}],["path",{d:"M5.15 17.89c5.52-1.52 8.65-6.89 7-12C11.55 4 11.5 2 13 2c3.22 0 5 5.5 5 8 0 6.5-4.2 12-10.49 12C5.11 22 2 22 2 20c0-1.5 1.14-1.55 3.15-2.11Z"}]];var CX=[["path",{d:"M10 10.01h.01"}],["path",{d:"M10 14.01h.01"}],["path",{d:"M14 10.01h.01"}],["path",{d:"M14 14.01h.01"}],["path",{d:"M18 6v11.5"}],["path",{d:"M6 6v12"}],["rect",{x:"2",y:"6",width:"20",height:"12",rx:"2"}]];var xX=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m16 19 3 3 3-3"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 16v6"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var wX=[["path",{d:"M13 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"m17 17 5 5"}],["path",{d:"M18 12h.01"}],["path",{d:"m22 17-5 5"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var UX=[["path",{d:"M12 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5"}],["path",{d:"M18 12h.01"}],["path",{d:"M19 22v-6"}],["path",{d:"m22 19-3-3-3 3"}],["path",{d:"M6 12h.01"}],["circle",{cx:"12",cy:"12",r:"2"}]];var MX=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M6 12h.01M18 12h.01"}]];var RX=[["path",{d:"M3 5v14"}],["path",{d:"M8 5v14"}],["path",{d:"M12 5v14"}],["path",{d:"M17 5v14"}],["path",{d:"M21 5v14"}]];var jX=[["path",{d:"M10 3a41 41 0 0 0 0 18"}],["path",{d:"M14 3a41 41 0 0 1 0 18"}],["path",{d:"M17 3a2 2 0 0 1 1.68.92 15.25 15.25 0 0 1 0 16.16A2 2 0 0 1 17 21H7a2 2 0 0 1-1.68-.92 15.25 15.25 0 0 1 0-16.16A2 2 0 0 1 7 3z"}],["path",{d:"M3.84 17h16.32"}],["path",{d:"M3.84 7h16.32"}]];var LX=[["path",{d:"M4 20h16"}],["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}]];var yX=[["path",{d:"M10 4 8 6"}],["path",{d:"M17 19v2"}],["path",{d:"M2 12h20"}],["path",{d:"M7 19v2"}],["path",{d:"M9 5 7.621 3.621A2.121 2.121 0 0 0 4 5v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5"}]];var fX=[["path",{d:"m11 7-3 5h4l-3 5"}],["path",{d:"M14.856 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.935"}],["path",{d:"M22 14v-4"}],["path",{d:"M5.14 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2.936"}]];var kX=[["path",{d:"M10 10v4"}],["path",{d:"M14 10v4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 10v4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var bX=[["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var hX=[["path",{d:"M10 9v6"}],["path",{d:"M12.543 6H16a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-3.605"}],["path",{d:"M22 14v-4"}],["path",{d:"M7 12h6"}],["path",{d:"M7.606 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3.606"}]];var vX=[["path",{d:"M10 14v-4"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 14v-4"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var $X=[["path",{d:"M10 17h.01"}],["path",{d:"M10 7v6"}],["path",{d:"M14 6h2a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2"}],["path",{d:"M22 14v-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}]];var gX=[["path",{d:"M 22 14 L 22 10"}],["rect",{x:"2",y:"6",width:"16",height:"12",rx:"2"}]];var _X=[["path",{d:"M4.5 3h15"}],["path",{d:"M6 3v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V3"}],["path",{d:"M6 14h12"}]];var mX=[["path",{d:"M9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22a13.96 13.96 0 0 0 9.9-4.1"}],["path",{d:"M10.75 5.093A6 6 0 0 1 22 8c0 2.411-.61 4.68-1.683 6.66"}],["path",{d:"M5.341 10.62a4 4 0 0 0 6.487 1.208M10.62 5.341a4.015 4.015 0 0 1 2.039 2.04"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var uX=[["path",{d:"M2 20v-8a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v8"}],["path",{d:"M4 10V6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M12 4v6"}],["path",{d:"M2 18h20"}]];var dX=[["path",{d:"M10.165 6.598C9.954 7.478 9.64 8.36 9 9c-.64.64-1.521.954-2.402 1.165A6 6 0 0 0 8 22c7.732 0 14-6.268 14-14a6 6 0 0 0-11.835-1.402Z"}],["path",{d:"M5.341 10.62a4 4 0 1 0 5.279-5.28"}]];var cX=[["path",{d:"M3 20v-8a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v8"}],["path",{d:"M5 10V6a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v4"}],["path",{d:"M3 18h18"}]];var pX=[["path",{d:"M16.4 13.7A6.5 6.5 0 1 0 6.28 6.6c-1.1 3.13-.78 3.9-3.18 6.08A3 3 0 0 0 5 18c4 0 8.4-1.8 11.4-4.3"}],["path",{d:"m18.5 6 2.19 4.5a6.48 6.48 0 0 1-2.29 7.2C15.4 20.2 11 22 7 22a3 3 0 0 1-2.68-1.66L2.4 16.5"}],["circle",{cx:"12.5",cy:"8.5",r:"2.5"}]];var nX=[["path",{d:"M2 4v16"}],["path",{d:"M2 8h18a2 2 0 0 1 2 2v10"}],["path",{d:"M2 17h20"}],["path",{d:"M6 8v9"}]];var iX=[["path",{d:"M13 13v5"}],["path",{d:"M17 11.47V8"}],["path",{d:"M17 11h1a3 3 0 0 1 2.745 4.211"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2v-3"}],["path",{d:"M7.536 7.535C6.766 7.649 6.154 8 5.5 8a2.5 2.5 0 0 1-1.768-4.268"}],["path",{d:"M8.727 3.204C9.306 2.767 9.885 2 11 2c1.56 0 2 1.5 3 1.5s1.72-.5 2.5-.5a1 1 0 1 1 0 5c-.78 0-1.5-.5-2.5-.5a3.149 3.149 0 0 0-.842.12"}],["path",{d:"M9 14.6V18"}]];var lX=[["path",{d:"M17 11h1a3 3 0 0 1 0 6h-1"}],["path",{d:"M9 12v6"}],["path",{d:"M13 12v6"}],["path",{d:"M14 7.5c-1 0-1.44.5-3 .5s-2-.5-3-.5-1.72.5-2.5.5a2.5 2.5 0 0 1 0-5c.78 0 1.57.5 2.5.5S9.44 2 11 2s2 1.5 3 1.5 1.72-.5 2.5-.5a2.5 2.5 0 0 1 0 5c-.78 0-1.5-.5-2.5-.5Z"}],["path",{d:"M5 8v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V8"}]];var sX=[["path",{d:"M18.518 17.347A7 7 0 0 1 14 19"}],["path",{d:"M18.8 4A11 11 0 0 1 20 9"}],["path",{d:"M9 9h.01"}],["circle",{cx:"20",cy:"16",r:"2"}],["circle",{cx:"9",cy:"9",r:"7"}],["rect",{x:"4",y:"16",width:"10",height:"6",rx:"2"}]];var rX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M13.916 2.314A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.74 7.327A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673 9 9 0 0 1-.585-.665"}],["circle",{cx:"18",cy:"8",r:"3"}]];var aX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M16.243 3.757A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673A9.4 9.4 0 0 1 18.667 12"}]];var tX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M17 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 .258-1.742"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.668 3.01A6 6 0 0 1 18 8c0 2.687.77 4.653 1.707 6.05"}]];var oX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M15 8h6"}],["path",{d:"M18 5v6"}],["path",{d:"M20.002 14.464a9 9 0 0 0 .738.863A1 1 0 0 1 20 17H4a1 1 0 0 1-.74-1.673C4.59 13.956 6 12.499 6 8a6 6 0 0 1 8.75-5.332"}]];var eX=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M22 8c0-2.3-.8-4.3-2-6"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}],["path",{d:"M4 2C2.8 3.7 2 5.7 2 8"}]];var ZW=[["path",{d:"M10.268 21a2 2 0 0 0 3.464 0"}],["path",{d:"M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326"}]];var v4=[["rect",{width:"13",height:"7",x:"3",y:"3",rx:"1"}],["path",{d:"m22 15-3-3 3-3"}],["rect",{width:"13",height:"7",x:"3",y:"14",rx:"1"}]];var $4=[["rect",{width:"13",height:"7",x:"8",y:"3",rx:"1"}],["path",{d:"m2 9 3 3-3 3"}],["rect",{width:"13",height:"7",x:"8",y:"14",rx:"1"}]];var JW=[["rect",{width:"7",height:"13",x:"3",y:"3",rx:"1"}],["path",{d:"m9 22 3-3 3 3"}],["rect",{width:"7",height:"13",x:"14",y:"3",rx:"1"}]];var KW=[["rect",{width:"7",height:"13",x:"3",y:"8",rx:"1"}],["path",{d:"m15 2-3 3-3-3"}],["rect",{width:"7",height:"13",x:"14",y:"8",rx:"1"}]];var YW=[["path",{d:"M12.409 13.017A5 5 0 0 1 22 15c0 3.866-4 7-9 7-4.077 0-8.153-.82-10.371-2.462-.426-.316-.631-.832-.62-1.362C2.118 12.723 2.627 2 10 2a3 3 0 0 1 3 3 2 2 0 0 1-2 2c-1.105 0-1.64-.444-2-1"}],["path",{d:"M15 14a5 5 0 0 0-7.584 2"}],["path",{d:"M9.964 6.825C8.019 7.977 9.5 13 8 15"}]];var XW=[["circle",{cx:"18.5",cy:"17.5",r:"3.5"}],["circle",{cx:"5.5",cy:"17.5",r:"3.5"}],["circle",{cx:"15",cy:"5",r:"1"}],["path",{d:"M12 17.5V14l-3-3 4-3 2 3h2"}]];var WW=[["rect",{x:"14",y:"14",width:"4",height:"6",rx:"2"}],["rect",{x:"6",y:"4",width:"4",height:"6",rx:"2"}],["path",{d:"M6 20h4"}],["path",{d:"M14 10h4"}],["path",{d:"M6 14h2v6"}],["path",{d:"M14 4h2v6"}]];var QW=[["path",{d:"M10 10h4"}],["path",{d:"M19 7V4a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3"}],["path",{d:"M20 21a2 2 0 0 0 2-2v-3.851c0-1.39-2-2.962-2-4.829V8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v11a2 2 0 0 0 2 2z"}],["path",{d:"M 22 16 L 2 16"}],["path",{d:"M4 21a2 2 0 0 1-2-2v-3.851c0-1.39 2-2.962 2-4.829V8a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v11a2 2 0 0 1-2 2z"}],["path",{d:"M9 7V4a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v3"}]];var VW=[["circle",{cx:"12",cy:"11.9",r:"2"}],["path",{d:"M6.7 3.4c-.9 2.5 0 5.2 2.2 6.7C6.5 9 3.7 9.6 2 11.6"}],["path",{d:"m8.9 10.1 1.4.8"}],["path",{d:"M17.3 3.4c.9 2.5 0 5.2-2.2 6.7 2.4-1.2 5.2-.6 6.9 1.5"}],["path",{d:"m15.1 10.1-1.4.8"}],["path",{d:"M16.7 20.8c-2.6-.4-4.6-2.6-4.7-5.3-.2 2.6-2.1 4.8-4.7 5.2"}],["path",{d:"M12 13.9v1.6"}],["path",{d:"M13.5 5.4c-1-.2-2-.2-3 0"}],["path",{d:"M17 16.4c.7-.7 1.2-1.6 1.5-2.5"}],["path",{d:"M5.5 13.9c.3.9.8 1.8 1.5 2.5"}]];var GW=[["path",{d:"M16 7h.01"}],["path",{d:"M3.4 18H12a8 8 0 0 0 8-8V7a4 4 0 0 0-7.28-2.3L2 20"}],["path",{d:"m20 7 2 .5-2 .5"}],["path",{d:"M10 18v3"}],["path",{d:"M14 17.75V21"}],["path",{d:"M7 18a6 6 0 0 0 3.84-10.61"}]];var IW=[["path",{d:"M12 18v4"}],["path",{d:"m17 18 1.956-11.468"}],["path",{d:"m3 8 7.82-5.615a2 2 0 0 1 2.36 0L21 8"}],["path",{d:"M4 18h16"}],["path",{d:"M7 18 5.044 6.532"}],["circle",{cx:"12",cy:"10",r:"2"}]];var zW=[["circle",{cx:"9",cy:"9",r:"7"}],["circle",{cx:"15",cy:"15",r:"7"}]];var NW=[["path",{d:"M3 3h18"}],["path",{d:"M20 7H8"}],["path",{d:"M20 11H8"}],["path",{d:"M10 19h10"}],["path",{d:"M8 15h12"}],["path",{d:"M4 3v14"}],["circle",{cx:"4",cy:"19",r:"2"}]];var FW=[["path",{d:"M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727"}]];var HW=[["path",{d:"M10 22V7a1 1 0 0 0-1-1H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5a1 1 0 0 0-1-1H2"}],["rect",{x:"14",y:"2",width:"8",height:"8",rx:"1"}]];var DW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["line",{x1:"18",x2:"21",y1:"12",y2:"12"}],["line",{x1:"3",x2:"6",y1:"12",y2:"12"}]];var BW=[["path",{d:"m17 17-5 5V12l-5 5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M14.5 9.5 17 7l-5-5v4.5"}]];var OW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}]];var TW=[["path",{d:"M6 12h9a4 4 0 0 1 0 8H7a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h7a4 4 0 0 1 0 8"}]];var PW=[["path",{d:"m7 7 10 10-5 5V2l5 5L7 17"}],["path",{d:"M20.83 14.83a4 4 0 0 0 0-5.66"}],["path",{d:"M18 12h.01"}]];var SW=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["circle",{cx:"12",cy:"12",r:"4"}]];var AW=[["circle",{cx:"11",cy:"13",r:"9"}],["path",{d:"M14.35 4.65 16.3 2.7a2.41 2.41 0 0 1 3.4 0l1.6 1.6a2.4 2.4 0 0 1 0 3.4l-1.95 1.95"}],["path",{d:"m22 2-1.5 1.5"}]];var qW=[["path",{d:"M17 10c.7-.7 1.69 0 2.5 0a2.5 2.5 0 1 0 0-5 .5.5 0 0 1-.5-.5 2.5 2.5 0 1 0-5 0c0 .81.7 1.8 0 2.5l-7 7c-.7.7-1.69 0-2.5 0a2.5 2.5 0 0 0 0 5c.28 0 .5.22.5.5a2.5 2.5 0 1 0 5 0c0-.81-.7-1.8 0-2.5Z"}]];var EW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m8 13 4-7 4 7"}],["path",{d:"M9.1 11h5.7"}]];var CW=[["path",{d:"M12 13h.01"}],["path",{d:"M12 6v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var xW=[["path",{d:"M12 6v7"}],["path",{d:"M16 8v3"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 8v3"}]];var wW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 9.5 2 2 4-4"}]];var UW=[["path",{d:"M5 7a2 2 0 0 0-2 2v11"}],["path",{d:"M5.803 18H5a2 2 0 0 0 0 4h9.5a.5.5 0 0 0 .5-.5V21"}],["path",{d:"M9 15V4a2 2 0 0 1 2-2h9.5a.5.5 0 0 1 .5.5v14a.5.5 0 0 1-.5.5H11a2 2 0 0 1 0-4h10"}]];var g4=[["path",{d:"M12 17h1.5"}],["path",{d:"M12 22h1.5"}],["path",{d:"M12 2h1.5"}],["path",{d:"M17.5 22H19a1 1 0 0 0 1-1"}],["path",{d:"M17.5 2H19a1 1 0 0 1 1 1v1.5"}],["path",{d:"M20 14v3h-2.5"}],["path",{d:"M20 8.5V10"}],["path",{d:"M4 10V8.5"}],["path",{d:"M4 19.5V14"}],["path",{d:"M4 4.5A2.5 2.5 0 0 1 6.5 2H8"}],["path",{d:"M8 22H6.5a1 1 0 0 1 0-5H8"}]];var MW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 12v-2a4 4 0 0 1 8 0v2"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var RW=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3 3 3-3"}]];var jW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8.62 9.8A2.25 2.25 0 1 1 12 6.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var LW=[["path",{d:"m20 13.7-2.1-2.1a2 2 0 0 0-2.8 0L9.7 17"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"10",cy:"8",r:"2"}]];var yW=[["path",{d:"m19 3 1 1"}],["path",{d:"m20 2-4.5 4.5"}],["path",{d:"M20 7.898V21a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2h7.844"}],["circle",{cx:"14",cy:"8",r:"2"}]];var fW=[["path",{d:"M18 6V4a2 2 0 1 0-4 0v2"}],["path",{d:"M20 15v6a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H10"}],["rect",{x:"12",y:"6",width:"8",height:"5",rx:"1"}]];var kW=[["path",{d:"M10 2v8l3-3 3 3V2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var bW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var hW=[["path",{d:"M12 21V7"}],["path",{d:"m16 12 2 2 4-4"}],["path",{d:"M22 6V4a1 1 0 0 0-1-1h-5a4 4 0 0 0-4 4 4 4 0 0 0-4-4H3a1 1 0 0 0-1 1v13a1 1 0 0 0 1 1h6a3 3 0 0 1 3 3 3 3 0 0 1 3-3h6a1 1 0 0 0 1-1v-1.3"}]];var vW=[["path",{d:"M12 7v14"}],["path",{d:"M16 12h2"}],["path",{d:"M16 8h2"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}],["path",{d:"M6 12h2"}],["path",{d:"M6 8h2"}]];var $W=[["path",{d:"M12 7v14"}],["path",{d:"M3 18a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h5a4 4 0 0 1 4 4 4 4 0 0 1 4-4h5a1 1 0 0 1 1 1v13a1 1 0 0 1-1 1h-6a3 3 0 0 0-3 3 3 3 0 0 0-3-3z"}]];var gW=[["path",{d:"M12 7v6"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M9 10h6"}]];var _W=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M8 11h8"}],["path",{d:"M8 7h6"}]];var mW=[["path",{d:"M10 13h4"}],["path",{d:"M12 6v7"}],["path",{d:"M16 8V6H8v2"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var uW=[["path",{d:"M12 13V7"}],["path",{d:"M18 2h1a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2"}],["path",{d:"m9 10 3-3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var dW=[["path",{d:"M12 13V7"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9 10 3-3 3 3"}]];var cW=[["path",{d:"M15 13a3 3 0 1 0-6 0"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["circle",{cx:"12",cy:"8",r:"2"}]];var pW=[["path",{d:"m14.5 7-5 5"}],["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}],["path",{d:"m9.5 7 5 5"}]];var nW=[["path",{d:"M4 19.5v-15A2.5 2.5 0 0 1 6.5 2H19a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1H6.5a1 1 0 0 1 0-5H20"}]];var iW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m9 10 2 2 4-4"}]];var lW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var sW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}],["line",{x1:"12",x2:"12",y1:"7",y2:"13"}],["line",{x1:"15",x2:"9",y1:"10",y2:"10"}]];var rW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2Z"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var aW=[["path",{d:"m19 21-7-4-7 4V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v16z"}]];var tW=[["path",{d:"M12 6V2H8"}],["path",{d:"M15 11v2"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 16a2 2 0 0 1-2 2H8.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 4 20.286V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2z"}],["path",{d:"M9 11v2"}]];var oW=[["path",{d:"M4 9V5a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v4"}],["path",{d:"M8 8v1"}],["path",{d:"M12 8v1"}],["path",{d:"M16 8v1"}],["rect",{width:"20",height:"12",x:"2",y:"9",rx:"2"}],["circle",{cx:"8",cy:"15",r:"2"}],["circle",{cx:"16",cy:"15",r:"2"}]];var eW=[["path",{d:"M13.67 8H18a2 2 0 0 1 2 2v4.33"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M22 22 2 2"}],["path",{d:"M8 8H6a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586"}],["path",{d:"M9 13v2"}],["path",{d:"M9.67 4H12v2.33"}]];var ZQ=[["path",{d:"M12 8V4H8"}],["rect",{width:"16",height:"12",x:"4",y:"8",rx:"2"}],["path",{d:"M2 14h2"}],["path",{d:"M20 14h2"}],["path",{d:"M15 13v2"}],["path",{d:"M9 13v2"}]];var JQ=[["path",{d:"M10 3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2a6 6 0 0 0 1.2 3.6l.6.8A6 6 0 0 1 17 13v8a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1v-8a6 6 0 0 1 1.2-3.6l.6-.8A6 6 0 0 0 10 5z"}],["path",{d:"M17 13h-4a1 1 0 0 0-1 1v3a1 1 0 0 0 1 1h4"}]];var KQ=[["path",{d:"M17 3h4v4"}],["path",{d:"M18.575 11.082a13 13 0 0 1 1.048 9.027 1.17 1.17 0 0 1-1.914.597L14 17"}],["path",{d:"M7 10 3.29 6.29a1.17 1.17 0 0 1 .6-1.91 13 13 0 0 1 9.03 1.05"}],["path",{d:"M7 14a1.7 1.7 0 0 0-1.207.5l-2.646 2.646A.5.5 0 0 0 3.5 18H5a1 1 0 0 1 1 1v1.5a.5.5 0 0 0 .854.354L9.5 18.207A1.7 1.7 0 0 0 10 17v-2a1 1 0 0 0-1-1z"}],["path",{d:"M9.707 14.293 21 3"}]];var YQ=[["path",{d:"M21 8a2 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16Z"}],["path",{d:"m3.3 7 8.7 5 8.7-5"}],["path",{d:"M12 22V12"}]];var XQ=[["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"}],["path",{d:"m7 16.5-4.74-2.85"}],["path",{d:"m7 16.5 5-3"}],["path",{d:"M7 16.5v5.17"}],["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"}],["path",{d:"m17 16.5-5-3"}],["path",{d:"m17 16.5 4.74-2.85"}],["path",{d:"M17 16.5v5.17"}],["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"}],["path",{d:"M12 8 7.26 5.15"}],["path",{d:"m12 8 4.74-2.85"}],["path",{d:"M12 13.5V8"}]];var _4=[["path",{d:"M8 3H7a2 2 0 0 0-2 2v5a2 2 0 0 1-2 2 2 2 0 0 1 2 2v5c0 1.1.9 2 2 2h1"}],["path",{d:"M16 21h1a2 2 0 0 0 2-2v-5c0-1.1.9-2 2-2a2 2 0 0 1-2-2V5a2 2 0 0 0-2-2h-1"}]];var WQ=[["path",{d:"M16 3h3a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-3"}],["path",{d:"M8 21H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1h3"}]];var QQ=[["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"}],["path",{d:"M9 13a4.5 4.5 0 0 0 3-4"}],["path",{d:"M6.003 5.125A3 3 0 0 0 6.401 6.5"}],["path",{d:"M3.477 10.896a4 4 0 0 1 .585-.396"}],["path",{d:"M6 18a4 4 0 0 1-1.967-.516"}],["path",{d:"M12 13h4"}],["path",{d:"M12 18h6a2 2 0 0 1 2 2v1"}],["path",{d:"M12 8h8"}],["path",{d:"M16 8V5a2 2 0 0 1 2-2"}],["circle",{cx:"16",cy:"13",r:".5"}],["circle",{cx:"18",cy:"3",r:".5"}],["circle",{cx:"20",cy:"21",r:".5"}],["circle",{cx:"20",cy:"8",r:".5"}]];var VQ=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"m10.852 9.228-.383-.923"}],["path",{d:"m13.148 14.772.382.924"}],["path",{d:"m13.531 8.305-.383.923"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 0 0-5.63-1.446 3 3 0 0 0-.368 1.571 4 4 0 0 0-2.525 5.771"}],["path",{d:"M17.998 5.125a4 4 0 0 1 2.525 5.771"}],["path",{d:"M19.505 10.294a4 4 0 0 1-1.5 7.706"}],["path",{d:"M4.032 17.483A4 4 0 0 0 11.464 20c.18-.311.892-.311 1.072 0a4 4 0 0 0 7.432-2.516"}],["path",{d:"M4.5 10.291A4 4 0 0 0 6 18"}],["path",{d:"M6.002 5.125a3 3 0 0 0 .4 1.375"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}],["circle",{cx:"12",cy:"12",r:"3"}]];var GQ=[["path",{d:"M12 18V5"}],["path",{d:"M15 13a4.17 4.17 0 0 1-3-4 4.17 4.17 0 0 1-3 4"}],["path",{d:"M17.598 6.5A3 3 0 1 0 12 5a3 3 0 1 0-5.598 1.5"}],["path",{d:"M17.997 5.125a4 4 0 0 1 2.526 5.77"}],["path",{d:"M18 18a4 4 0 0 0 2-7.464"}],["path",{d:"M19.967 17.483A4 4 0 1 1 12 18a4 4 0 1 1-7.967-.517"}],["path",{d:"M6 18a4 4 0 0 1-2-7.464"}],["path",{d:"M6.003 5.125a4 4 0 0 0-2.526 5.77"}]];var IQ=[["path",{d:"M16 3v2.107"}],["path",{d:"M17 9c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 22 17a5 5 0 0 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C13 11.5 16 9 17 9"}],["path",{d:"M21 8.274V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.938"}],["path",{d:"M3 15h5.253"}],["path",{d:"M3 9h8.228"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var zQ=[["path",{d:"M12 9v1.258"}],["path",{d:"M16 3v5.46"}],["path",{d:"M21 9.118V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h5.75"}],["path",{d:"M22 17.5c0 2.499-1.75 3.749-3.83 4.474a.5.5 0 0 1-.335-.005c-2.085-.72-3.835-1.97-3.835-4.47V14a.5.5 0 0 1 .5-.499c1 0 2.25-.6 3.12-1.36a.6.6 0 0 1 .76-.001c.875.765 2.12 1.36 3.12 1.36a.5.5 0 0 1 .5.5z"}],["path",{d:"M3 15h7"}],["path",{d:"M3 9h12.142"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var NQ=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 9v6"}],["path",{d:"M16 15v6"}],["path",{d:"M16 3v6"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["path",{d:"M8 15v6"}],["path",{d:"M8 3v6"}]];var FQ=[["path",{d:"M12 12h.01"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M22 13a18.15 18.15 0 0 1-20 0"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var HQ=[["path",{d:"M10 20v2"}],["path",{d:"M14 20v2"}],["path",{d:"M18 20v2"}],["path",{d:"M21 20H3"}],["path",{d:"M6 20v2"}],["path",{d:"M8 16V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v12"}],["rect",{x:"4",y:"6",width:"16",height:"10",rx:"2"}]];var DQ=[["path",{d:"M12 11v4"}],["path",{d:"M14 13h-4"}],["path",{d:"M16 6V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v2"}],["path",{d:"M18 6v14"}],["path",{d:"M6 6v14"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var BQ=[["path",{d:"M16 20V4a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"}],["rect",{width:"20",height:"14",x:"2",y:"6",rx:"2"}]];var OQ=[["rect",{x:"8",y:"8",width:"8",height:"8",rx:"2"}],["path",{d:"M4 10a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2"}],["path",{d:"M14 20a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2"}]];var TQ=[["path",{d:"m16 22-1-4"}],["path",{d:"M19 13.99a1 1 0 0 0 1-1V12a2 2 0 0 0-2-2h-3a1 1 0 0 1-1-1V4a2 2 0 0 0-4 0v5a1 1 0 0 1-1 1H6a2 2 0 0 0-2 2v.99a1 1 0 0 0 1 1"}],["path",{d:"M5 14h14l1.973 6.767A1 1 0 0 1 20 22H4a1 1 0 0 1-.973-1.233z"}],["path",{d:"m8 22 1-4"}]];var PQ=[["path",{d:"m11 10 3 3"}],["path",{d:"M6.5 21A3.5 3.5 0 1 0 3 17.5a2.62 2.62 0 0 1-.708 1.792A1 1 0 0 0 3 21z"}],["path",{d:"M9.969 17.031 21.378 5.624a1 1 0 0 0-3.002-3.002L6.967 14.031"}]];var SQ=[["path",{d:"M7.2 14.8a2 2 0 0 1 2 2"}],["circle",{cx:"18.5",cy:"8.5",r:"3.5"}],["circle",{cx:"7.5",cy:"16.5",r:"5.5"}],["circle",{cx:"7.5",cy:"4.5",r:"2.5"}]];var AQ=[["path",{d:"M12 20v-8"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M15 7.13V6a3 3 0 0 0-5.14-2.1L8 2"}],["path",{d:"M18 12.34V11a4 4 0 0 0-4-4h-1.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-3.34"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M6 13H2"}],["path",{d:"M7.7 7.7A4 4 0 0 0 6 11v3a6 6 0 0 0 11.13 3.13"}]];var qQ=[["path",{d:"M10 19.655A6 6 0 0 1 6 14v-3a4 4 0 0 1 4-4h4a4 4 0 0 1 4 3.97"}],["path",{d:"M14 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var EQ=[["path",{d:"M12 20v-9"}],["path",{d:"M14 7a4 4 0 0 1 4 4v3a6 6 0 0 1-12 0v-3a4 4 0 0 1 4-4z"}],["path",{d:"M14.12 3.88 16 2"}],["path",{d:"M21 21a4 4 0 0 0-3.81-4"}],["path",{d:"M21 5a4 4 0 0 1-3.55 3.97"}],["path",{d:"M22 13h-4"}],["path",{d:"M3 21a4 4 0 0 1 3.81-4"}],["path",{d:"M3 5a4 4 0 0 0 3.55 3.97"}],["path",{d:"M6 13H2"}],["path",{d:"m8 2 1.88 1.88"}],["path",{d:"M9 7.13V6a3 3 0 1 1 6 0v1.13"}]];var CQ=[["path",{d:"M10 12h4"}],["path",{d:"M10 8h4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M6 10H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 21V5a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v16"}]];var xQ=[["path",{d:"M12 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M12 6h.01"}],["path",{d:"M16 10h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M16 6h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M8 6h.01"}],["path",{d:"M9 22v-3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v3"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var wQ=[["path",{d:"M4 6 2 7"}],["path",{d:"M10 6h4"}],["path",{d:"m22 7-2-1"}],["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M6 19v2"}],["path",{d:"M18 21v-2"}]];var UQ=[["path",{d:"M8 6v6"}],["path",{d:"M15 6v6"}],["path",{d:"M2 12h19.6"}],["path",{d:"M18 18h3s.5-1.7.8-2.8c.1-.4.2-.8.2-1.2 0-.4-.1-.8-.2-1.2l-1.4-5C20.1 6.8 19.1 6 18 6H4a2 2 0 0 0-2 2v10h3"}],["circle",{cx:"7",cy:"18",r:"2"}],["path",{d:"M9 18h5"}],["circle",{cx:"16",cy:"18",r:"2"}]];var MQ=[["path",{d:"M10 3h.01"}],["path",{d:"M14 2h.01"}],["path",{d:"m2 9 20-5"}],["path",{d:"M12 12V6.5"}],["rect",{width:"16",height:"10",x:"4",y:"12",rx:"3"}],["path",{d:"M9 12v5"}],["path",{d:"M15 12v5"}],["path",{d:"M4 17h16"}]];var RQ=[["path",{d:"M17 19a1 1 0 0 1-1-1v-2a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2v2a1 1 0 0 1-1 1z"}],["path",{d:"M17 21v-2"}],["path",{d:"M19 14V6.5a1 1 0 0 0-7 0v11a1 1 0 0 1-7 0V10"}],["path",{d:"M21 21v-2"}],["path",{d:"M3 5V3"}],["path",{d:"M4 10a2 2 0 0 1-2-2V6a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2z"}],["path",{d:"M7 5V3"}]];var jQ=[["path",{d:"M16 13H3"}],["path",{d:"M16 17H3"}],["path",{d:"m7.2 7.9-3.388 2.5A2 2 0 0 0 3 12.01V20a1 1 0 0 0 1 1h16a1 1 0 0 0 1-1v-8.654c0-2-2.44-6.026-6.44-8.026a1 1 0 0 0-1.082.057L10.4 5.6"}],["circle",{cx:"9",cy:"7",r:"2"}]];var LQ=[["path",{d:"M20 21v-8a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v8"}],["path",{d:"M4 16s.5-1 2-1 2.5 2 4 2 2.5-2 4-2 2.5 2 4 2 2-1 2-1"}],["path",{d:"M2 21h20"}],["path",{d:"M7 8v3"}],["path",{d:"M12 8v3"}],["path",{d:"M17 8v3"}],["path",{d:"M7 4h.01"}],["path",{d:"M12 4h.01"}],["path",{d:"M17 4h.01"}]];var yQ=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["line",{x1:"8",x2:"16",y1:"6",y2:"6"}],["line",{x1:"16",x2:"16",y1:"14",y2:"18"}],["path",{d:"M16 10h.01"}],["path",{d:"M12 10h.01"}],["path",{d:"M8 10h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M8 18h.01"}]];var fQ=[["path",{d:"M11 14h1v4"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var kQ=[["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 14v8"}],["path",{d:"M21 11.354V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.343"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var bQ=[["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M16 2v4"}],["path",{d:"M18 22v-8"}],["path",{d:"M21 11.343V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h9"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var hQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 14V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m16 20 2 2 4-4"}]];var vQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m9 16 2 2 4-4"}]];var $Q=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 2v4"}],["path",{d:"M21 7.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h3.5"}],["path",{d:"M3 10h5"}],["path",{d:"M8 2v4"}],["circle",{cx:"16",cy:"16",r:"6"}]];var gQ=[["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m15.228 19.148-.923.383"}],["path",{d:"M16 2v4"}],["path",{d:"m16.47 14.305.382.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M21 10.592V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var _Q=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M8 14h.01"}],["path",{d:"M12 14h.01"}],["path",{d:"M16 14h.01"}],["path",{d:"M8 18h.01"}],["path",{d:"M12 18h.01"}],["path",{d:"M16 18h.01"}]];var mQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 17V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h11Z"}],["path",{d:"M3 10h18"}],["path",{d:"M15 22v-4a2 2 0 0 1 2-2h4"}]];var uQ=[["path",{d:"M12.127 22H5a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.125"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var dQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}]];var cQ=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M21 15V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var pQ=[["path",{d:"M4.2 4.2A2 2 0 0 0 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 1.82-1.18"}],["path",{d:"M21 15.5V6a2 2 0 0 0-2-2H9.5"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h7"}],["path",{d:"M21 10h-5.5"}],["path",{d:"m2 2 20 20"}]];var nQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"M10 16h4"}],["path",{d:"M12 14v4"}]];var iQ=[["path",{d:"M16 19h6"}],["path",{d:"M16 2v4"}],["path",{d:"M19 16v6"}],["path",{d:"M21 12.598V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8.5"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}]];var lQ=[["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M16 2v4"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["path",{d:"M17 14h-6"}],["path",{d:"M13 18H7"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 18h.01"}]];var sQ=[["path",{d:"M16 2v4"}],["path",{d:"M21 11.75V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7.25"}],["path",{d:"m22 22-1.875-1.875"}],["path",{d:"M3 10h18"}],["path",{d:"M8 2v4"}],["circle",{cx:"18",cy:"18",r:"3"}]];var rQ=[["path",{d:"M11 10v4h4"}],["path",{d:"m11 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M16 2v4"}],["path",{d:"m21 18-1.535 1.605a5 5 0 0 1-8-1.5"}],["path",{d:"M21 22v-4h-4"}],["path",{d:"M21 8.5V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h4.3"}],["path",{d:"M3 10h4"}],["path",{d:"M8 2v4"}]];var aQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M21 13V6a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h8"}],["path",{d:"M3 10h18"}],["path",{d:"m17 22 5-5"}],["path",{d:"m17 17 5 5"}]];var tQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}],["path",{d:"m14 14-4 4"}],["path",{d:"m10 14 4 4"}]];var oQ=[["path",{d:"M8 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"18",height:"18",x:"3",y:"4",rx:"2"}],["path",{d:"M3 10h18"}]];var eQ=[["path",{d:"M13.997 4a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 1.759-1.048l.489-.904A2 2 0 0 1 10.004 4z"}],["circle",{cx:"12",cy:"13",r:"3"}]];var ZV=[["path",{d:"M14.564 14.558a3 3 0 1 1-4.122-4.121"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V9a2 2 0 0 1 2-2h1.997a2 2 0 0 0 .819-.175"}],["path",{d:"M9.695 4.024A2 2 0 0 1 10.004 4h3.993a2 2 0 0 1 1.76 1.05l.486.9A2 2 0 0 0 18.003 7H20a2 2 0 0 1 2 2v7.344"}]];var JV=[["path",{d:"M5.7 21a2 2 0 0 1-3.5-2l8.6-14a6 6 0 0 1 10.4 6 2 2 0 1 1-3.464-2 2 2 0 1 0-3.464-2Z"}],["path",{d:"M17.75 7 15 2.1"}],["path",{d:"M10.9 4.8 13 9"}],["path",{d:"m7.9 9.7 2 4.4"}],["path",{d:"M4.9 14.7 7 18.9"}]];var KV=[["path",{d:"M10 10v7.9"}],["path",{d:"M11.802 6.145a5 5 0 0 1 6.053 6.053"}],["path",{d:"M14 6.1v2.243"}],["path",{d:"m15.5 15.571-.964.964a5 5 0 0 1-7.071 0 5 5 0 0 1 0-7.07l.964-.965"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var YV=[["path",{d:"M10 7v10.9"}],["path",{d:"M14 6.1V17"}],["path",{d:"M16 7V3a1 1 0 0 1 1.707-.707 2.5 2.5 0 0 0 2.152.717 1 1 0 0 1 1.131 1.131 2.5 2.5 0 0 0 .717 2.152A1 1 0 0 1 21 8h-4"}],["path",{d:"M16.536 7.465a5 5 0 0 0-7.072 0l-2 2a5 5 0 0 0 0 7.07 5 5 0 0 0 7.072 0l2-2a5 5 0 0 0 0-7.07"}],["path",{d:"M8 17v4a1 1 0 0 1-1.707.707 2.5 2.5 0 0 0-2.152-.717 1 1 0 0 1-1.131-1.131 2.5 2.5 0 0 0-.717-2.152A1 1 0 0 1 3 16h4"}]];var XV=[["path",{d:"M12 22v-4"}],["path",{d:"M7 12c-1.5 0-4.5 1.5-5 3 3.5 1.5 6 1 6 1-1.5 1.5-2 3.5-2 5 2.5 0 4.5-1.5 6-3 1.5 1.5 3.5 3 6 3 0-1.5-.5-3.5-2-5 0 0 2.5.5 6-1-.5-1.5-3.5-3-5-3 1.5-1 4-4 4-6-2.5 0-5.5 1.5-7 3 0-2.5-.5-5-2-7-1.5 2-2 4.5-2 7-1.5-1.5-4.5-3-7-3 0 2 2.5 5 4 6"}]];var WV=[["path",{d:"M10.5 5H19a2 2 0 0 1 2 2v8.5"}],["path",{d:"M17 11h-.5"}],["path",{d:"M19 19H5a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7 11h4"}],["path",{d:"M7 15h2.5"}]];var m4=[["rect",{width:"18",height:"14",x:"3",y:"5",rx:"2",ry:"2"}],["path",{d:"M7 15h4M15 15h2M7 11h2M13 11h4"}]];var QV=[["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var VV=[["path",{d:"M10 2h4"}],["path",{d:"m21 8-2 2-1.5-3.7A2 2 0 0 0 15.646 5H8.4a2 2 0 0 0-1.903 1.257L5 10 3 8"}],["path",{d:"M7 14h.01"}],["path",{d:"M17 14h.01"}],["rect",{width:"18",height:"8",x:"3",y:"10",rx:"2"}],["path",{d:"M5 18v2"}],["path",{d:"M19 18v2"}]];var GV=[["path",{d:"M19 17h2c.6 0 1-.4 1-1v-3c0-.9-.7-1.7-1.5-1.9C18.7 10.6 16 10 16 10s-1.3-1.4-2.2-2.3c-.5-.4-1.1-.7-1.8-.7H5c-.6 0-1.1.4-1.4.9l-1.4 2.9A3.7 3.7 0 0 0 2 12v4c0 .6.4 1 1 1h2"}],["circle",{cx:"7",cy:"17",r:"2"}],["path",{d:"M9 17h6"}],["circle",{cx:"17",cy:"17",r:"2"}]];var IV=[["path",{d:"M18 19V9a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v8a2 2 0 0 0 2 2h2"}],["path",{d:"M2 9h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H2"}],["path",{d:"M22 17v1a1 1 0 0 1-1 1H10v-9a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v9"}],["circle",{cx:"8",cy:"19",r:"2"}]];var zV=[["path",{d:"M2.27 21.7s9.87-3.5 12.73-6.36a4.5 4.5 0 0 0-6.36-6.37C5.77 11.84 2.27 21.7 2.27 21.7zM8.64 14l-2.05-2.04M15.34 15l-2.46-2.46"}],["path",{d:"M22 9s-1.33-2-3.5-2C16.86 7 15 9 15 9s1.33 2 3.5 2S22 9 22 9z"}],["path",{d:"M15 2s-2 1.33-2 3.5S15 9 15 9s2-1.84 2-3.5C17 3.33 15 2 15 2z"}]];var NV=[["path",{d:"M12 14v4"}],["path",{d:"M14.172 2a2 2 0 0 1 1.414.586l3.828 3.828A2 2 0 0 1 20 7.828V20a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M8 14h8"}],["rect",{x:"8",y:"10",width:"8",height:"8",rx:"1"}]];var FV=[["path",{d:"M10 9v7"}],["path",{d:"M14 6v10"}],["circle",{cx:"17.5",cy:"12.5",r:"3.5"}],["circle",{cx:"6.5",cy:"12.5",r:"3.5"}]];var HV=[["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M22 9v7"}],["path",{d:"M3.304 13h6.392"}],["circle",{cx:"18.5",cy:"12.5",r:"3.5"}]];var DV=[["path",{d:"M15 11h4.5a1 1 0 0 1 0 5h-4a.5.5 0 0 1-.5-.5v-9a.5.5 0 0 1 .5-.5h3a1 1 0 0 1 0 5"}],["path",{d:"m2 16 4.039-9.69a.5.5 0 0 1 .923 0L11 16"}],["path",{d:"M3.304 13h6.392"}]];var BV=[["path",{d:"M2 8V6a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2h-6"}],["path",{d:"M2 12a9 9 0 0 1 8 8"}],["path",{d:"M2 16a5 5 0 0 1 4 4"}],["line",{x1:"2",x2:"2.01",y1:"20",y2:"20"}]];var OV=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["circle",{cx:"8",cy:"10",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"10",r:"2"}],["path",{d:"m6 20 .7-2.9A1.4 1.4 0 0 1 8.1 16h7.8a1.4 1.4 0 0 1 1.4 1l.7 3"}]];var TV=[["path",{d:"M10 5V3"}],["path",{d:"M14 5V3"}],["path",{d:"M15 21v-3a3 3 0 0 0-6 0v3"}],["path",{d:"M18 3v8"}],["path",{d:"M18 5H6"}],["path",{d:"M22 11H2"}],["path",{d:"M22 9v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9"}],["path",{d:"M6 3v8"}]];var PV=[["path",{d:"M12 5c.67 0 1.35.09 2 .26 1.78-2 5.03-2.84 6.42-2.26 1.4.58-.42 7-.42 7 .57 1.07 1 2.24 1 3.44C21 17.9 16.97 21 12 21s-9-3-9-7.56c0-1.25.5-2.4 1-3.44 0 0-1.89-6.42-.5-7 1.39-.58 4.72.23 6.5 2.23A9.04 9.04 0 0 1 12 5Z"}],["path",{d:"M8 14v.5"}],["path",{d:"M16 14v.5"}],["path",{d:"M11.25 16.25h1.5L12 17l-.75-.75Z"}]];var SV=[["path",{d:"M16.75 12h3.632a1 1 0 0 1 .894 1.447l-2.034 4.069a1 1 0 0 1-1.708.134l-2.124-2.97"}],["path",{d:"M17.106 9.053a1 1 0 0 1 .447 1.341l-3.106 6.211a1 1 0 0 1-1.342.447L3.61 12.3a2.92 2.92 0 0 1-1.3-3.91L3.69 5.6a2.92 2.92 0 0 1 3.92-1.3z"}],["path",{d:"M2 19h3.76a2 2 0 0 0 1.8-1.1L9 15"}],["path",{d:"M2 21v-4"}],["path",{d:"M7 9h.01"}]];var u4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11.207a.5.5 0 0 1 .146-.353l2-2a.5.5 0 0 1 .708 0l3.292 3.292a.5.5 0 0 0 .708 0l4.292-4.292a.5.5 0 0 1 .854.353V16a1 1 0 0 1-1 1H8a1 1 0 0 1-1-1z"}]];var d4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var AV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h3"}],["path",{d:"M7 6h12"}]];var qV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 11h8"}],["path",{d:"M7 16h12"}],["path",{d:"M7 6h3"}]];var EV=[["path",{d:"M11 13v4"}],["path",{d:"M15 5v4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"7",y:"13",width:"9",height:"4",rx:"1"}],["rect",{x:"7",y:"5",width:"12",height:"4",rx:"1"}]];var c4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16h8"}],["path",{d:"M7 11h12"}],["path",{d:"M7 6h3"}]];var p4=[["path",{d:"M9 5v4"}],["rect",{width:"4",height:"6",x:"7",y:"9",rx:"1"}],["path",{d:"M9 15v2"}],["path",{d:"M17 3v2"}],["rect",{width:"4",height:"8",x:"15",y:"5",rx:"1"}],["path",{d:"M17 13v3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var n4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var CV=[["path",{d:"M13 17V9"}],["path",{d:"M18 17v-3"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17V5"}]];var i4=[["path",{d:"M13 17V9"}],["path",{d:"M18 17V5"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 17v-3"}]];var xV=[["path",{d:"M11 13H7"}],["path",{d:"M19 9h-4"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["rect",{x:"15",y:"5",width:"4",height:"12",rx:"1"}],["rect",{x:"7",y:"8",width:"4",height:"9",rx:"1"}]];var l4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M18 17V9"}],["path",{d:"M13 17V5"}],["path",{d:"M8 17v-3"}]];var wV=[["path",{d:"M10 6h8"}],["path",{d:"M12 16h6"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M8 11h7"}]];var s4=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"m19 9-5 5-4-4-3 3"}]];var UV=[["path",{d:"m13.11 7.664 1.78 2.672"}],["path",{d:"m14.162 12.788-3.324 1.424"}],["path",{d:"m20 4-6.06 1.515"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["circle",{cx:"12",cy:"6",r:"2"}],["circle",{cx:"16",cy:"12",r:"2"}],["circle",{cx:"9",cy:"15",r:"2"}]];var MV=[["path",{d:"M5 21V3"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21v-6"}]];var r4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V9"}],["path",{d:"M19 21V3"}]];var a4=[["path",{d:"M5 21v-6"}],["path",{d:"M12 21V3"}],["path",{d:"M19 21V9"}]];var t4=[["path",{d:"M6 5h12"}],["path",{d:"M4 12h10"}],["path",{d:"M12 19h8"}]];var RV=[["path",{d:"M12 16v5"}],["path",{d:"M16 14v7"}],["path",{d:"M20 10v11"}],["path",{d:"m22 3-8.646 8.646a.5.5 0 0 1-.708 0L9.354 8.354a.5.5 0 0 0-.707 0L2 15"}],["path",{d:"M4 18v3"}],["path",{d:"M8 14v7"}]];var o4=[["path",{d:"M21 12c.552 0 1.005-.449.95-.998a10 10 0 0 0-8.953-8.951c-.55-.055-.998.398-.998.95v8a1 1 0 0 0 1 1z"}],["path",{d:"M21.21 15.89A10 10 0 1 1 8 2.83"}]];var e4=[["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["circle",{cx:"18.5",cy:"5.5",r:".5",fill:"currentColor"}],["circle",{cx:"11.5",cy:"11.5",r:".5",fill:"currentColor"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"14.5",r:".5",fill:"currentColor"}],["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}]];var jV=[["path",{d:"M3 3v16a2 2 0 0 0 2 2h16"}],["path",{d:"M7 16c.5-2 1.5-7 4-7 2 0 2 3 4 3 2.5 0 4.5-5 5-7"}]];var LV=[["path",{d:"M18 6 7 17l-5-5"}],["path",{d:"m22 10-7.5 7.5L13 16"}]];var yV=[["path",{d:"M20 6 9 17l-5-5"}]];var fV=[["path",{d:"M20 4L9 15"}],["path",{d:"M21 19L3 19"}],["path",{d:"M9 15L4 10"}]];var kV=[["path",{d:"M17 21a1 1 0 0 0 1-1v-5.35c0-.457.316-.844.727-1.041a4 4 0 0 0-2.134-7.589 5 5 0 0 0-9.186 0 4 4 0 0 0-2.134 7.588c.411.198.727.585.727 1.041V20a1 1 0 0 0 1 1Z"}],["path",{d:"M6 17h12"}]];var bV=[["path",{d:"M2 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M12 17a5 5 0 0 0 10 0c0-2.76-2.5-5-5-3-2.5-2-5 .24-5 3Z"}],["path",{d:"M7 14c3.22-2.91 4.29-8.75 5-12 1.66 2.38 4.94 9 5 12"}],["path",{d:"M22 9c-4.29 0-7.14-2.33-10-7 5.71 0 10 4.67 10 7Z"}]];var hV=[["path",{d:"m6 9 6 6 6-6"}]];var vV=[["path",{d:"m17 18-6-6 6-6"}],["path",{d:"M7 6v12"}]];var $V=[["path",{d:"m7 18 6-6-6-6"}],["path",{d:"M17 6v12"}]];var gV=[["path",{d:"m9 18 6-6-6-6"}]];var _V=[["path",{d:"m18 15-6-6-6 6"}]];var mV=[["path",{d:"m15 18-6-6 6-6"}]];var uV=[["path",{d:"m7 20 5-5 5 5"}],["path",{d:"m7 4 5 5 5-5"}]];var dV=[["path",{d:"m7 6 5 5 5-5"}],["path",{d:"m7 13 5 5 5-5"}]];var cV=[["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"m17 7 5 5-5 5"}],["path",{d:"m7 7-5 5 5 5"}],["path",{d:"M8 12h.01"}]];var pV=[["path",{d:"m9 7-5 5 5 5"}],["path",{d:"m15 7 5 5-5 5"}]];var nV=[["path",{d:"m11 17-5-5 5-5"}],["path",{d:"m18 17-5-5 5-5"}]];var iV=[["path",{d:"m20 17-5-5 5-5"}],["path",{d:"m4 17 5-5-5-5"}]];var lV=[["path",{d:"m6 17 5-5-5-5"}],["path",{d:"m13 17 5-5-5-5"}]];var sV=[["path",{d:"m17 11-5-5-5 5"}],["path",{d:"m17 18-5-5-5 5"}]];var rV=[["path",{d:"m7 15 5 5 5-5"}],["path",{d:"m7 9 5-5 5 5"}]];var aV=[["path",{d:"M10 9h4"}],["path",{d:"M12 7v5"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"m18 9 3.52 2.147a1 1 0 0 1 .48.854V19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-6.999a1 1 0 0 1 .48-.854L6 9"}],["path",{d:"M6 21V7a1 1 0 0 1 .376-.782l5-3.999a1 1 0 0 1 1.249.001l5 4A1 1 0 0 1 18 7v14"}]];var Z7=[["path",{d:"M10.88 21.94 15.46 14"}],["path",{d:"M21.17 8H12"}],["path",{d:"M3.95 6.06 8.54 14"}],["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}]];var tV=[["path",{d:"M12 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h13"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 12a1 1 0 0 1 1 1v2a1 1 0 0 1-.5.866"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var oV=[["path",{d:"M17 12H3a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h14"}],["path",{d:"M18 8c0-2.5-2-2.5-2-5"}],["path",{d:"M21 16a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M22 8c0-2.5-2-2.5-2-5"}],["path",{d:"M7 12v4"}]];var J7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"12",x2:"12",y1:"8",y2:"12"}],["line",{x1:"12",x2:"12.01",y1:"16",y2:"16"}]];var K7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var Y7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var X7=[["path",{d:"M2 12a10 10 0 1 1 10 10"}],["path",{d:"m2 22 10-10"}],["path",{d:"M8 22H2v-6"}]];var W7=[["path",{d:"M12 22a10 10 0 1 1 10-10"}],["path",{d:"M22 22 12 12"}],["path",{d:"M22 16v6h-6"}]];var Q7=[["path",{d:"M2 8V2h6"}],["path",{d:"m2 2 10 10"}],["path",{d:"M12 2A10 10 0 1 1 2 12"}]];var V7=[["path",{d:"M22 12A10 10 0 1 1 12 2"}],["path",{d:"M22 2 12 12"}],["path",{d:"M16 2h6v6"}]];var G7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m12 16 4-4-4-4"}],["path",{d:"M8 12h8"}]];var I7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var z7=[["path",{d:"M21.801 10A10 10 0 1 1 17 3.335"}],["path",{d:"m9 11 3 3L22 4"}]];var N7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m16 10-4 4-4-4"}]];var F7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m9 12 2 2 4-4"}]];var H7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m14 16-4-4 4-4"}]];var D7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m10 8 4 4-4 4"}]];var B7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m8 14 4-4 4 4"}]];var eV=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.721a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.279 17.609a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"M6.391 20.279a10 10 0 0 1-2.69-2.7"}]];var O7=[["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var ZG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 18V6"}]];var JG=[["path",{d:"M10.1 2.18a9.93 9.93 0 0 1 3.8 0"}],["path",{d:"M17.6 3.71a9.95 9.95 0 0 1 2.69 2.7"}],["path",{d:"M21.82 10.1a9.93 9.93 0 0 1 0 3.8"}],["path",{d:"M20.29 17.6a9.95 9.95 0 0 1-2.7 2.69"}],["path",{d:"M13.9 21.82a9.94 9.94 0 0 1-3.8 0"}],["path",{d:"M6.4 20.29a9.95 9.95 0 0 1-2.69-2.7"}],["path",{d:"M2.18 13.9a9.93 9.93 0 0 1 0-3.8"}],["path",{d:"M3.71 6.4a9.95 9.95 0 0 1 2.7-2.69"}],["circle",{cx:"12",cy:"12",r:"1"}]];var KG=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"1"}]];var YG=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M17 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M7 12h.01"}]];var XG=[["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var WG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var QG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 8v8"}],["path",{d:"M16 12H8"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var T7=[["path",{d:"M15.6 2.7a10 10 0 1 0 5.7 5.7"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M13.4 10.6 19 5"}]];var P7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}]];var VG=[["path",{d:"m2 2 20 20"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}],["path",{d:"M19.08 19.08A10 10 0 1 1 4.92 4.92"}]];var S7=[["path",{d:"M12.656 7H13a3 3 0 0 1 2.984 3.307"}],["path",{d:"M13 13H9"}],["path",{d:"M19.071 19.071A1 1 0 0 1 4.93 4.93"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.357 2.687a10 10 0 0 1 12.956 12.956"}],["path",{d:"M9 17V9"}]];var A7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var q7=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var E7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var C7=[["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var x7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var GG=[["path",{d:"M10 16V9.5a1 1 0 0 1 5 0"}],["path",{d:"M8 12h4"}],["path",{d:"M8 16h7"}],["circle",{cx:"12",cy:"12",r:"10"}]];var w7=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["circle",{cx:"12",cy:"12",r:"10"}]];var Y5=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var U7=[["path",{d:"M22 2 2 22"}],["circle",{cx:"12",cy:"12",r:"10"}]];var IG=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var zG=[["circle",{cx:"12",cy:"12",r:"6"}]];var NG=[["path",{d:"M11.051 7.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.867l-1.156-1.152a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var M7=[["circle",{cx:"12",cy:"12",r:"10"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var R7=[["path",{d:"M18 20a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"10",r:"4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var j7=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 20.662V19a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v1.662"}]];var L7=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var FG=[["circle",{cx:"12",cy:"12",r:"10"}]];var HG=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M11 9h4a2 2 0 0 0 2-2V3"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"M7 21v-4a2 2 0 0 1 2-2h4"}],["circle",{cx:"15",cy:"15",r:"2"}]];var DG=[["path",{d:"M21.66 17.67a1.08 1.08 0 0 1-.04 1.6A12 12 0 0 1 4.73 2.38a1.1 1.1 0 0 1 1.61-.04z"}],["path",{d:"M19.65 15.66A8 8 0 0 1 8.35 4.34"}],["path",{d:"m14 10-5.5 5.5"}],["path",{d:"M14 17.85V10H6.15"}]];var BG=[["path",{d:"M20.2 6 3 11l-.9-2.4c-.3-1.1.3-2.2 1.3-2.5l13.5-4c1.1-.3 2.2.3 2.5 1.3Z"}],["path",{d:"m6.2 5.3 3.1 3.9"}],["path",{d:"m12.4 3.4 3.1 4"}],["path",{d:"M3 11h18v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2Z"}]];var OG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"m9 14 2 2 4-4"}]];var TG=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v.832"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["circle",{cx:"16",cy:"16",r:"6"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var PG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-2"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v4"}],["path",{d:"M21 14H11"}],["path",{d:"m15 10-4 4 4 4"}]];var SG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M12 11h4"}],["path",{d:"M12 16h4"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 16h.01"}]];var AG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 14h6"}]];var qG=[["path",{d:"M11 14h10"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v1.344"}],["path",{d:"m17 18 4-4-4-4"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 1.793-1.113"}],["rect",{x:"8",y:"2",width:"8",height:"4",rx:"1"}]];var y7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M8 4H6a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-.5"}],["path",{d:"M16 4h2a2 2 0 0 1 1.73 1"}],["path",{d:"M8 18h1"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var f7=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-5.5"}],["path",{d:"M4 13.5V6a2 2 0 0 1 2-2h2"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var EG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 12v-1h6v1"}],["path",{d:"M11 17h2"}],["path",{d:"M12 11v6"}]];var CG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"m15 11-6 6"}],["path",{d:"m9 11 6 6"}]];var xG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}],["path",{d:"M9 14h6"}],["path",{d:"M12 17v-6"}]];var wG=[["rect",{width:"8",height:"4",x:"8",y:"2",rx:"1",ry:"1"}],["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"}]];var UG=[["path",{d:"M12 6v6l2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var MG=[["path",{d:"M12 6v6l-4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var RG=[["path",{d:"M12 6v6l-2-4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var jG=[["path",{d:"M12 6v6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var LG=[["path",{d:"M12 6v6l4-2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var yG=[["path",{d:"M12 6v6h4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var fG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var kG=[["path",{d:"M12 6v6l2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var bG=[["path",{d:"M12 6v10"}],["circle",{cx:"12",cy:"12",r:"10"}]];var hG=[["path",{d:"M12 6v6l-2 4"}],["circle",{cx:"12",cy:"12",r:"10"}]];var vG=[["path",{d:"M12 6v6l-4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var $G=[["path",{d:"M12 6v6H8"}],["circle",{cx:"12",cy:"12",r:"10"}]];var gG=[["path",{d:"M12 6v6l4 2"}],["path",{d:"M20 12v5"}],["path",{d:"M20 21h.01"}],["path",{d:"M21.25 8.2A10 10 0 1 0 16 21.16"}]];var _G=[["path",{d:"M12 6v6l2 1"}],["path",{d:"M12.337 21.994a10 10 0 1 1 9.588-8.767"}],["path",{d:"m14 18 4 4 4-4"}],["path",{d:"M18 14v8"}]];var mG=[["path",{d:"M12 6v6l1.56.78"}],["path",{d:"M13.227 21.925a10 10 0 1 1 8.767-9.588"}],["path",{d:"m14 18 4-4 4 4"}],["path",{d:"M18 22v-8"}]];var uG=[["path",{d:"M12 2a10 10 0 0 1 7.38 16.75"}],["path",{d:"M12 6v6l4 2"}],["path",{d:"M2.5 8.875a10 10 0 0 0-.5 3"}],["path",{d:"M2.83 16a10 10 0 0 0 2.43 3.4"}],["path",{d:"M4.636 5.235a10 10 0 0 1 .891-.857"}],["path",{d:"M8.644 21.42a10 10 0 0 0 7.631-.38"}]];var dG=[["path",{d:"M12 6v6l3.644 1.822"}],["path",{d:"M16 19h6"}],["path",{d:"M19 16v6"}],["path",{d:"M21.92 13.267a10 10 0 1 0-8.653 8.653"}]];var cG=[["path",{d:"M12 6v6l4 2"}],["circle",{cx:"12",cy:"12",r:"10"}]];var pG=[["path",{d:"M10 9.17a3 3 0 1 0 0 5.66"}],["path",{d:"M17 9.17a3 3 0 1 0 0 5.66"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var nG=[["path",{d:"M12 12v4"}],["path",{d:"M12 20h.01"}],["path",{d:"M17 18h.5a1 1 0 0 0 0-9h-1.79A7 7 0 1 0 7 17.708"}]];var iG=[["path",{d:"m17 15-5.5 5.5L9 18"}],["path",{d:"M5 17.743A7 7 0 1 1 15.71 10h1.79a4.5 4.5 0 0 1 1.5 8.742"}]];var lG=[["path",{d:"m10.852 19.772-.383.924"}],["path",{d:"m13.148 14.228.383-.923"}],["path",{d:"M13.148 19.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.53 20.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 15.852.923-.383"}],["path",{d:"m14.772 18.148.923.383"}],["path",{d:"M4.2 15.1a7 7 0 1 1 9.93-9.858A7 7 0 0 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.2"}],["path",{d:"m9.228 15.852-.923-.383"}],["path",{d:"m9.228 18.148-.923.383"}]];var k7=[["path",{d:"M12 13v8l-4-4"}],["path",{d:"m12 21 4-4"}],["path",{d:"M4.393 15.269A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.436 8.284"}]];var sG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 19v1"}],["path",{d:"M8 14v1"}],["path",{d:"M16 19v1"}],["path",{d:"M16 14v1"}],["path",{d:"M12 21v1"}],["path",{d:"M12 16v1"}]];var rG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 17H7"}],["path",{d:"M17 21H9"}]];var aG=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v2"}],["path",{d:"M8 14v2"}],["path",{d:"M16 20h.01"}],["path",{d:"M8 20h.01"}],["path",{d:"M12 16v2"}],["path",{d:"M12 22h.01"}]];var tG=[["path",{d:"M6 16.326A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 .5 8.973"}],["path",{d:"m13 12-3 5h4l-3 5"}]];var oG=[["path",{d:"M11 20v2"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M7 19v2"}]];var eG=[["path",{d:"m2 2 20 20"}],["path",{d:"M5.782 5.782A7 7 0 0 0 9 19h8.5a4.5 4.5 0 0 0 1.307-.193"}],["path",{d:"M21.532 16.5A4.5 4.5 0 0 0 17.5 10h-1.79A7.008 7.008 0 0 0 10 5.07"}]];var Z3=[["path",{d:"M13 16a3 3 0 0 1 0 6H7a5 5 0 1 1 4.9-6z"}],["path",{d:"M18.376 14.512a6 6 0 0 0 3.461-4.127c.148-.625-.659-.97-1.248-.714a4 4 0 0 1-5.259-5.26c.255-.589-.09-1.395-.716-1.248a6 6 0 0 0-4.594 5.36"}]];var J3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m9.2 22 3-7"}],["path",{d:"m9 13-3 7"}],["path",{d:"m17 13-3 7"}]];var K3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M16 14v6"}],["path",{d:"M8 14v6"}],["path",{d:"M12 16v6"}]];var Y3=[["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"M8 15h.01"}],["path",{d:"M8 19h.01"}],["path",{d:"M12 17h.01"}],["path",{d:"M12 21h.01"}],["path",{d:"M16 15h.01"}],["path",{d:"M16 19h.01"}]];var X3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M3 20a5 5 0 1 1 8.9-4H13a3 3 0 0 1 2 5.24"}],["path",{d:"M11 20v2"}],["path",{d:"M7 19v2"}]];var W3=[["path",{d:"M12 2v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"M20 12h2"}],["path",{d:"m19.07 4.93-1.41 1.41"}],["path",{d:"M15.947 12.65a4 4 0 0 0-5.925-4.128"}],["path",{d:"M13 22H7a5 5 0 1 1 4.9-6H13a3 3 0 0 1 0 6Z"}]];var b7=[["path",{d:"M12 13v8"}],["path",{d:"M4 14.899A7 7 0 1 1 15.71 8h1.79a4.5 4.5 0 0 1 2.5 8.242"}],["path",{d:"m8 17 4-4 4 4"}]];var Q3=[["path",{d:"M17.5 19H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}]];var V3=[["path",{d:"M17.5 21H9a7 7 0 1 1 6.71-9h1.79a4.5 4.5 0 1 1 0 9Z"}],["path",{d:"M22 10a3 3 0 0 0-3-3h-2.207a5.502 5.502 0 0 0-10.702.5"}]];var G3=[["path",{d:"M16.17 7.83 2 22"}],["path",{d:"M4.02 12a2.827 2.827 0 1 1 3.81-4.17A2.827 2.827 0 1 1 12 4.02a2.827 2.827 0 1 1 4.17 3.81A2.827 2.827 0 1 1 19.98 12a2.827 2.827 0 1 1-3.81 4.17A2.827 2.827 0 1 1 12 19.98a2.827 2.827 0 1 1-4.17-3.81A1 1 0 1 1 4 12"}],["path",{d:"m7.83 7.83 8.34 8.34"}]];var I3=[["path",{d:"M17.28 9.05a5.5 5.5 0 1 0-10.56 0A5.5 5.5 0 1 0 12 17.66a5.5 5.5 0 1 0 5.28-8.6Z"}],["path",{d:"M12 17.66L12 22"}]];var h7=[["path",{d:"m18 16 4-4-4-4"}],["path",{d:"m6 8-4 4 4 4"}],["path",{d:"m14.5 4-5 16"}]];var z3=[["path",{d:"m16 18 6-6-6-6"}],["path",{d:"m8 6-6 6 6 6"}]];var N3=[["polygon",{points:"12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"15.5"}],["polyline",{points:"22 8.5 12 15.5 2 8.5"}],["polyline",{points:"2 15.5 12 8.5 22 15.5"}],["line",{x1:"12",x2:"12",y1:"2",y2:"8.5"}]];var F3=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}],["polyline",{points:"7.5 4.21 12 6.81 16.5 4.21"}],["polyline",{points:"7.5 19.79 7.5 14.6 3 12"}],["polyline",{points:"21 12 16.5 14.6 16.5 19.79"}],["polyline",{points:"3.27 6.96 12 12.01 20.73 6.96"}],["line",{x1:"12",x2:"12",y1:"22.08",y2:"12"}]];var H3=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v2"}],["path",{d:"M16 8a1 1 0 0 1 1 1v8a4 4 0 0 1-4 4H7a4 4 0 0 1-4-4V9a1 1 0 0 1 1-1h14a4 4 0 1 1 0 8h-1"}],["path",{d:"M6 2v2"}]];var D3=[["path",{d:"M11 10.27 7 3.34"}],["path",{d:"m11 13.73-4 6.93"}],["path",{d:"M12 22v-2"}],["path",{d:"M12 2v2"}],["path",{d:"M14 12h8"}],["path",{d:"m17 20.66-1-1.73"}],["path",{d:"m17 3.34-1 1.73"}],["path",{d:"M2 12h2"}],["path",{d:"m20.66 17-1.73-1"}],["path",{d:"m20.66 7-1.73 1"}],["path",{d:"m3.34 17 1.73-1"}],["path",{d:"m3.34 7 1.73 1"}],["circle",{cx:"12",cy:"12",r:"2"}],["circle",{cx:"12",cy:"12",r:"8"}]];var B3=[["circle",{cx:"8",cy:"8",r:"6"}],["path",{d:"M18.09 10.37A6 6 0 1 1 10.34 18"}],["path",{d:"M7 6h1v4"}],["path",{d:"m16.71 13.88.7.71-2.82 2.82"}]];var v7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 3v18"}]];var X5=[["path",{d:"M10.5 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v5.5"}],["path",{d:"m14.3 19.6 1-.4"}],["path",{d:"M15 3v7.5"}],["path",{d:"m15.2 16.9-.9-.3"}],["path",{d:"m16.6 21.7.3-.9"}],["path",{d:"m16.8 15.3-.4-1"}],["path",{d:"m19.1 15.2.3-.9"}],["path",{d:"m19.6 21.7-.4-1"}],["path",{d:"m20.7 16.8 1-.4"}],["path",{d:"m21.7 19.4-.9-.3"}],["path",{d:"M9 3v18"}],["circle",{cx:"18",cy:"18",r:"3"}]];var $7=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var O3=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7.5 3v18"}],["path",{d:"M12 3v18"}],["path",{d:"M16.5 3v18"}]];var T3=[["path",{d:"M14 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M19 3a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"m7 15 3 3"}],["path",{d:"m7 21 3-3H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"14",y:"14",width:"7",height:"7",rx:"1"}],["rect",{x:"3",y:"3",width:"7",height:"7",rx:"1"}]];var P3=[["path",{d:"m16.24 7.76-1.804 5.411a2 2 0 0 1-1.265 1.265L7.76 16.24l1.804-5.411a2 2 0 0 1 1.265-1.265z"}],["circle",{cx:"12",cy:"12",r:"10"}]];var S3=[["path",{d:"M15 6v12a3 3 0 1 0 3-3H6a3 3 0 1 0 3 3V6a3 3 0 1 0-3 3h12a3 3 0 1 0-3-3"}]];var A3=[["path",{d:"M15.536 11.293a1 1 0 0 0 0 1.414l2.376 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}],["path",{d:"M2.297 11.293a1 1 0 0 0 0 1.414l2.377 2.377a1 1 0 0 0 1.414 0l2.377-2.377a1 1 0 0 0 0-1.414L6.088 8.916a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 17.912a1 1 0 0 0 0 1.415l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.415l-2.377-2.376a1 1 0 0 0-1.414 0z"}],["path",{d:"M8.916 4.674a1 1 0 0 0 0 1.414l2.377 2.376a1 1 0 0 0 1.414 0l2.377-2.376a1 1 0 0 0 0-1.414l-2.377-2.377a1 1 0 0 0-1.414 0z"}]];var q3=[["rect",{width:"14",height:"8",x:"5",y:"2",rx:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h2"}],["path",{d:"M12 18h6"}]];var E3=[["path",{d:"M3 20a1 1 0 0 1-1-1v-1a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1Z"}],["path",{d:"M20 16a8 8 0 1 0-16 0"}],["path",{d:"M12 4v4"}],["path",{d:"M10 4h4"}]];var C3=[["path",{d:"m20.9 18.55-8-15.98a1 1 0 0 0-1.8 0l-8 15.98"}],["ellipse",{cx:"12",cy:"19",rx:"9",ry:"3"}]];var x3=[["rect",{x:"2",y:"6",width:"20",height:"8",rx:"1"}],["path",{d:"M17 14v7"}],["path",{d:"M7 14v7"}],["path",{d:"M17 3v3"}],["path",{d:"M7 3v3"}],["path",{d:"M10 14 2.3 6.3"}],["path",{d:"m14 6 7.7 7.7"}],["path",{d:"m8 6 8 8"}]];var g7=[["path",{d:"M16 2v2"}],["path",{d:"M17.915 22a6 6 0 0 0-12 0"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"12",r:"4"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var w3=[["path",{d:"M22 7.7c0-.6-.4-1.2-.8-1.5l-6.3-3.9a1.72 1.72 0 0 0-1.7 0l-10.3 6c-.5.2-.9.8-.9 1.4v6.6c0 .5.4 1.2.8 1.5l6.3 3.9a1.72 1.72 0 0 0 1.7 0l10.3-6c.5-.3.9-1 .9-1.5Z"}],["path",{d:"M10 21.9V14L2.1 9.1"}],["path",{d:"m10 14 11.9-6.9"}],["path",{d:"M14 19.8v-8.1"}],["path",{d:"M18 17.5V9.4"}]];var U3=[["path",{d:"M16 2v2"}],["path",{d:"M7 22v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}],["path",{d:"M8 2v2"}],["circle",{cx:"12",cy:"11",r:"3"}],["rect",{x:"3",y:"4",width:"18",height:"18",rx:"2"}]];var M3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 18a6 6 0 0 0 0-12v12z"}]];var R3=[["path",{d:"M12 2a10 10 0 1 0 10 10 4 4 0 0 1-5-5 4 4 0 0 1-5-5"}],["path",{d:"M8.5 8.5v.01"}],["path",{d:"M16 15.5v.01"}],["path",{d:"M12 12v.01"}],["path",{d:"M11 17v.01"}],["path",{d:"M7 14v.01"}]];var j3=[["path",{d:"M2 12h20"}],["path",{d:"M20 12v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8"}],["path",{d:"m4 8 16-4"}],["path",{d:"m8.86 6.78-.45-1.81a2 2 0 0 1 1.45-2.43l1.94-.48a2 2 0 0 1 2.43 1.46l.45 1.8"}]];var L3=[["path",{d:"m12 15 2 2 4-4"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var y3=[["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var f3=[["line",{x1:"15",x2:"15",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"15",y2:"15"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var k3=[["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var b3=[["line",{x1:"12",x2:"18",y1:"12",y2:"18"}],["line",{x1:"12",x2:"18",y1:"18",y2:"12"}],["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var h3=[["rect",{width:"14",height:"14",x:"8",y:"8",rx:"2",ry:"2"}],["path",{d:"M4 16c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h10c1.1 0 2 .9 2 2"}]];var v3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M9.17 14.83a4 4 0 1 0 0-5.66"}]];var $3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M14.83 14.83a4 4 0 1 1 0-5.66"}]];var g3=[["path",{d:"m15 10 5 5-5 5"}],["path",{d:"M4 4v7a4 4 0 0 0 4 4h12"}]];var _3=[["path",{d:"M20 4v7a4 4 0 0 1-4 4H4"}],["path",{d:"m9 10-5 5 5 5"}]];var m3=[["path",{d:"m14 15-5 5-5-5"}],["path",{d:"M20 4h-7a4 4 0 0 0-4 4v12"}]];var u3=[["path",{d:"M14 9 9 4 4 9"}],["path",{d:"M20 20h-7a4 4 0 0 1-4-4V4"}]];var d3=[["path",{d:"m10 15 5 5 5-5"}],["path",{d:"M4 4h7a4 4 0 0 1 4 4v12"}]];var c3=[["path",{d:"m10 9 5-5 5 5"}],["path",{d:"M4 20h7a4 4 0 0 0 4-4V4"}]];var p3=[["path",{d:"M20 20v-7a4 4 0 0 0-4-4H4"}],["path",{d:"M9 14 4 9l5-5"}]];var n3=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M4 20v-7a4 4 0 0 1 4-4h12"}]];var i3=[["path",{d:"M12 20v2"}],["path",{d:"M12 2v2"}],["path",{d:"M17 20v2"}],["path",{d:"M17 2v2"}],["path",{d:"M2 12h2"}],["path",{d:"M2 17h2"}],["path",{d:"M2 7h2"}],["path",{d:"M20 12h2"}],["path",{d:"M20 17h2"}],["path",{d:"M20 7h2"}],["path",{d:"M7 20v2"}],["path",{d:"M7 2v2"}],["rect",{x:"4",y:"4",width:"16",height:"16",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var l3=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M10 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}],["path",{d:"M17 9.3a2.8 2.8 0 0 0-3.5 1 3.1 3.1 0 0 0 0 3.4 2.7 2.7 0 0 0 3.5 1"}]];var s3=[["rect",{width:"20",height:"14",x:"2",y:"5",rx:"2"}],["line",{x1:"2",x2:"22",y1:"10",y2:"10"}]];var r3=[["path",{d:"M10.2 18H4.774a1.5 1.5 0 0 1-1.352-.97 11 11 0 0 1 .132-6.487"}],["path",{d:"M18 10.2V4.774a1.5 1.5 0 0 0-.97-1.352 11 11 0 0 0-6.486.132"}],["path",{d:"M18 5a4 3 0 0 1 4 3 2 2 0 0 1-2 2 10 10 0 0 0-5.139 1.42"}],["path",{d:"M5 18a3 4 0 0 0 3 4 2 2 0 0 0 2-2 10 10 0 0 1 1.42-5.14"}],["path",{d:"M8.709 2.554a10 10 0 0 0-6.155 6.155 1.5 1.5 0 0 0 .676 1.626l9.807 5.42a2 2 0 0 0 2.718-2.718l-5.42-9.807a1.5 1.5 0 0 0-1.626-.676"}]];var a3=[["path",{d:"M6 2v14a2 2 0 0 0 2 2h14"}],["path",{d:"M18 22V8a2 2 0 0 0-2-2H2"}]];var t3=[["path",{d:"M4 9a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h4a1 1 0 0 1 1 1v4a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-4a1 1 0 0 1 1-1h4a2 2 0 0 0 2-2v-2a2 2 0 0 0-2-2h-4a1 1 0 0 1-1-1V4a2 2 0 0 0-2-2h-2a2 2 0 0 0-2 2v4a1 1 0 0 1-1 1z"}]];var o3=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"22",x2:"18",y1:"12",y2:"12"}],["line",{x1:"6",x2:"2",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"6",y2:"2"}],["line",{x1:"12",x2:"12",y1:"22",y2:"18"}]];var e3=[["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"}],["path",{d:"M5 21h14"}]];var ZI=[["path",{d:"m21.12 6.4-6.05-4.06a2 2 0 0 0-2.17-.05L2.95 8.41a2 2 0 0 0-.95 1.7v5.82a2 2 0 0 0 .88 1.66l6.05 4.07a2 2 0 0 0 2.17.05l9.95-6.12a2 2 0 0 0 .95-1.7V8.06a2 2 0 0 0-.88-1.66Z"}],["path",{d:"M10 22v-8L2.25 9.15"}],["path",{d:"m10 14 11.77-6.87"}]];var JI=[["path",{d:"m6 8 1.75 12.28a2 2 0 0 0 2 1.72h4.54a2 2 0 0 0 2-1.72L18 8"}],["path",{d:"M5 8h14"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}],["path",{d:"m12 8 1-6h2"}]];var KI=[["circle",{cx:"12",cy:"12",r:"8"}],["line",{x1:"3",x2:"6",y1:"3",y2:"6"}],["line",{x1:"21",x2:"18",y1:"3",y2:"6"}],["line",{x1:"3",x2:"6",y1:"21",y2:"18"}],["line",{x1:"21",x2:"18",y1:"21",y2:"18"}]];var YI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5v14a9 3 0 0 0 18 0V5"}]];var XI=[["path",{d:"M11 11.31c1.17.56 1.54 1.69 3.5 1.69 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M11.75 18c.35.5 1.45 1 2.75 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M2 6h4"}],["path",{d:"M7 3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h4a1 1 0 0 0 1-1L10 4a1 1 0 0 0-1-1z"}]];var WI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 15 21.84"}],["path",{d:"M21 5V8"}],["path",{d:"M21 12L18 17H22L19 22"}],["path",{d:"M3 12A9 3 0 0 0 14.59 14.87"}]];var QI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 12a9 3 0 0 0 5 2.69"}],["path",{d:"M21 9.3V5"}],["path",{d:"M3 5v14a9 3 0 0 0 6.47 2.88"}],["path",{d:"M12 12v4h4"}],["path",{d:"M13 20a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L12 16"}]];var VI=[["path",{d:"m13 21-3-3 3-3"}],["path",{d:"M20 18H10"}],["path",{d:"M3 11h.01"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var GI=[["ellipse",{cx:"12",cy:"5",rx:"9",ry:"3"}],["path",{d:"M3 5V19A9 3 0 0 0 21 19V5"}],["path",{d:"M3 12A9 3 0 0 0 21 12"}]];var II=[["path",{d:"M10 18h10"}],["path",{d:"m17 21 3-3-3-3"}],["path",{d:"M3 11h.01"}],["rect",{x:"15",y:"3",width:"5",height:"8",rx:"2.5"}],["rect",{x:"6",y:"3",width:"5",height:"8",rx:"2.5"}]];var zI=[["path",{d:"M10.162 3.167A10 10 0 0 0 2 13a2 2 0 0 0 4 0v-1a2 2 0 0 1 4 0v4a2 2 0 0 0 4 0v-4a2 2 0 0 1 4 0v1a2 2 0 0 0 4-.006 10 10 0 0 0-8.161-9.826"}],["path",{d:"M20.804 14.869a9 9 0 0 1-17.608 0"}],["circle",{cx:"12",cy:"4",r:"2"}]];var NI=[["path",{d:"M10 5a2 2 0 0 0-1.344.519l-6.328 5.74a1 1 0 0 0 0 1.481l6.328 5.741A2 2 0 0 0 10 19h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2z"}],["path",{d:"m12 9 6 6"}],["path",{d:"m18 9-6 6"}]];var FI=[["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}],["path",{d:"M6.48 3.66a10 10 0 0 1 13.86 13.86"}],["path",{d:"m6.41 6.41 11.18 11.18"}],["path",{d:"M3.66 6.48a10 10 0 0 0 13.86 13.86"}]];var HI=[["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var _7=[["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0Z"}],["path",{d:"M9.2 9.2h.01"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"M14.7 14.8h.01"}]];var DI=[["path",{d:"M12 8v8"}],["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.41L13.7 2.71a2.41 2.41 0 0 0-3.41 0z"}],["path",{d:"M8 12h8"}]];var BI=[["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"}]];var OI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M12 12h.01"}]];var TI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M15 9h.01"}],["path",{d:"M9 15h.01"}]];var PI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M8 16h.01"}]];var SI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}]];var AI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M12 12h.01"}]];var qI=[["rect",{width:"12",height:"12",x:"2",y:"10",rx:"2",ry:"2"}],["path",{d:"m17.92 14 3.5-3.5a2.24 2.24 0 0 0 0-3l-5-4.92a2.24 2.24 0 0 0-3 0L10 6"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 14h.01"}],["path",{d:"M15 6h.01"}],["path",{d:"M18 9h.01"}]];var EI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M16 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M8 8h.01"}],["path",{d:"M8 12h.01"}],["path",{d:"M8 16h.01"}]];var CI=[["path",{d:"M12 3v14"}],["path",{d:"M5 10h14"}],["path",{d:"M5 21h14"}]];var xI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 12h.01"}]];var wI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M6 12c0-1.7.7-3.2 1.8-4.2"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M18 12c0 1.7-.7 3.2-1.8 4.2"}]];var UI=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"5"}],["path",{d:"M12 12h.01"}]];var MI=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"2"}]];var RI=[["circle",{cx:"12",cy:"6",r:"1"}],["line",{x1:"5",x2:"19",y1:"12",y2:"12"}],["circle",{cx:"12",cy:"18",r:"1"}]];var jI=[["path",{d:"M15 2c-1.35 1.5-2.092 3-2.5 4.5L14 8"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c3.333-3 6.667-3 10-3"}],["path",{d:"m2 2 20 20"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M22 9c-1.5 1.35-3 2.092-4.5 2.5l-1-1"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.35-1.5 2.092-3 2.5-4.5L10 16"}]];var LI=[["path",{d:"m10 16 1.5 1.5"}],["path",{d:"m14 8-1.5-1.5"}],["path",{d:"M15 2c-1.798 1.998-2.518 3.995-2.807 5.993"}],["path",{d:"m16.5 10.5 1 1"}],["path",{d:"m17 6-2.891-2.891"}],["path",{d:"M2 15c6.667-6 13.333 0 20-6"}],["path",{d:"m20 9 .891.891"}],["path",{d:"M3.109 14.109 4 15"}],["path",{d:"m6.5 12.5 1 1"}],["path",{d:"m7 18 2.891 2.891"}],["path",{d:"M9 22c1.798-1.998 2.518-3.995 2.807-5.993"}]];var yI=[["path",{d:"M2 8h20"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 16h12"}]];var fI=[["path",{d:"M11.25 16.25h1.5L12 17z"}],["path",{d:"M16 14v.5"}],["path",{d:"M4.42 11.247A13.152 13.152 0 0 0 4 14.556C4 18.728 7.582 21 12 21s8-2.272 8-6.444a11.702 11.702 0 0 0-.493-3.309"}],["path",{d:"M8 14v.5"}],["path",{d:"M8.5 8.5c-.384 1.05-1.083 2.028-2.344 2.5-1.931.722-3.576-.297-3.656-1-.113-.994 1.177-6.53 4-7 1.923-.321 3.651.845 3.651 2.235A7.497 7.497 0 0 1 14 5.277c0-1.39 1.844-2.598 3.767-2.277 2.823.47 4.113 6.006 4 7-.08.703-1.725 1.722-3.656 1-1.261-.472-1.855-1.45-2.239-2.5"}]];var kI=[["line",{x1:"12",x2:"12",y1:"2",y2:"22"}],["path",{d:"M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"}]];var bI=[["path",{d:"M20.5 10a2.5 2.5 0 0 1-2.4-3H18a2.95 2.95 0 0 1-2.6-4.4 10 10 0 1 0 6.3 7.1c-.3.2-.8.3-1.2.3"}],["circle",{cx:"12",cy:"12",r:"3"}]];var hI=[["path",{d:"M10 12h.01"}],["path",{d:"M18 9V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h8"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}],["rect",{x:"14",y:"17",width:"8",height:"5",rx:"1"}]];var vI=[["path",{d:"M10 12h.01"}],["path",{d:"M18 20V6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v14"}],["path",{d:"M2 20h20"}]];var $I=[["path",{d:"M11 20H2"}],["path",{d:"M11 4.562v16.157a1 1 0 0 0 1.242.97L19 20V5.562a2 2 0 0 0-1.515-1.94l-4-1A2 2 0 0 0 11 4.561z"}],["path",{d:"M11 4H8a2 2 0 0 0-2 2v14"}],["path",{d:"M14 12h.01"}],["path",{d:"M22 20h-3"}]];var gI=[["circle",{cx:"12.1",cy:"12.1",r:"1"}]];var _I=[["path",{d:"M12 15V3"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}],["path",{d:"m7 10 5 5 5-5"}]];var mI=[["path",{d:"m12.99 6.74 1.93 3.44"}],["path",{d:"M19.136 12a10 10 0 0 1-14.271 0"}],["path",{d:"m21 21-2.16-3.84"}],["path",{d:"m3 21 8.02-14.26"}],["circle",{cx:"12",cy:"5",r:"2"}]];var uI=[["path",{d:"M10 11h.01"}],["path",{d:"M14 6h.01"}],["path",{d:"M18 6h.01"}],["path",{d:"M6.5 13.1h.01"}],["path",{d:"M22 5c0 9-4 12-6 12s-6-3-6-12c0-2 2-3 6-3s6 1 6 3"}],["path",{d:"M17.4 9.9c-.8.8-2 .8-2.8 0"}],["path",{d:"M10.1 7.1C9 7.2 7.7 7.7 6 8.6c-3.5 2-4.7 3.9-3.7 5.6 4.5 7.8 9.5 8.4 11.2 7.4.9-.5 1.9-2.1 1.9-4.7"}],["path",{d:"M9.1 16.5c.3-1.1 1.4-1.7 2.4-1.4"}]];var dI=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M19.13 5.09C15.22 9.14 10 10.44 2.25 10.94"}],["path",{d:"M21.75 12.84c-6.62-1.41-12.14 1-16.38 6.32"}],["path",{d:"M8.56 2.75c4.37 6 6 9.42 8 17.72"}]];var cI=[["path",{d:"M10 18a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1H5a3 3 0 0 1-3-3 1 1 0 0 1 1-1z"}],["path",{d:"M13 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a1 1 0 0 1 1 1v6a1 1 0 0 1-1 1l-.81 3.242a1 1 0 0 1-.97.758H8"}],["path",{d:"M14 4h3a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-3"}],["path",{d:"M18 6h4"}],["path",{d:"m5 10-2 8"}],["path",{d:"m7 18 2-8"}]];var pI=[["path",{d:"M10 10 7 7"}],["path",{d:"m10 14-3 3"}],["path",{d:"m14 10 3-3"}],["path",{d:"m14 14 3 3"}],["path",{d:"M14.205 4.139a4 4 0 1 1 5.439 5.863"}],["path",{d:"M19.637 14a4 4 0 1 1-5.432 5.868"}],["path",{d:"M4.367 10a4 4 0 1 1 5.438-5.862"}],["path",{d:"M9.795 19.862a4 4 0 1 1-5.429-5.873"}],["rect",{x:"10",y:"8",width:"4",height:"8",rx:"1"}]];var nI=[["path",{d:"M18.715 13.186C18.29 11.858 17.384 10.607 16 9.5c-2-1.6-3.5-4-4-6.5a10.7 10.7 0 0 1-.884 2.586"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.795 8.797A11 11 0 0 1 8 9.5C6 11.1 5 13 5 15a7 7 0 0 0 13.222 3.208"}]];var iI=[["path",{d:"M12 22a7 7 0 0 0 7-7c0-2-1-3.9-3-5.5s-3.5-4-4-6.5c-.5 2.5-2 4.9-4 6.5C6 11.1 5 13 5 15a7 7 0 0 0 7 7z"}]];var lI=[["path",{d:"m2 2 8 8"}],["path",{d:"m22 2-8 8"}],["ellipse",{cx:"12",cy:"9",rx:"10",ry:"5"}],["path",{d:"M7 13.4v7.9"}],["path",{d:"M12 14v8"}],["path",{d:"M17 13.4v7.9"}],["path",{d:"M2 9v8a10 5 0 0 0 20 0V9"}]];var sI=[["path",{d:"M7 16.3c2.2 0 4-1.83 4-4.05 0-1.16-.57-2.26-1.71-3.19S7.29 6.75 7 5.3c-.29 1.45-1.14 2.84-2.29 3.76S3 11.1 3 12.25c0 2.22 1.8 4.05 4 4.05z"}],["path",{d:"M12.56 6.6A10.97 10.97 0 0 0 14 3.02c.5 2.5 2 4.9 4 6.5s3 3.5 3 5.5a6.98 6.98 0 0 1-11.91 4.97"}]];var rI=[["path",{d:"M15.4 15.63a7.875 6 135 1 1 6.23-6.23 4.5 3.43 135 0 0-6.23 6.23"}],["path",{d:"m8.29 12.71-2.6 2.6a2.5 2.5 0 1 0-1.65 4.65A2.5 2.5 0 1 0 8.7 18.3l2.59-2.59"}]];var aI=[["path",{d:"M17.596 12.768a2 2 0 1 0 2.829-2.829l-1.768-1.767a2 2 0 0 0 2.828-2.829l-2.828-2.828a2 2 0 0 0-2.829 2.828l-1.767-1.768a2 2 0 1 0-2.829 2.829z"}],["path",{d:"m2.5 21.5 1.4-1.4"}],["path",{d:"m20.1 3.9 1.4-1.4"}],["path",{d:"M5.343 21.485a2 2 0 1 0 2.829-2.828l1.767 1.768a2 2 0 1 0 2.829-2.829l-6.364-6.364a2 2 0 1 0-2.829 2.829l1.768 1.767a2 2 0 0 0-2.828 2.829z"}],["path",{d:"m9.6 14.4 4.8-4.8"}]];var tI=[["path",{d:"M6 18.5a3.5 3.5 0 1 0 7 0c0-1.57.92-2.52 2.04-3.46"}],["path",{d:"M6 8.5c0-.75.13-1.47.36-2.14"}],["path",{d:"M8.8 3.15A6.5 6.5 0 0 1 19 8.5c0 1.63-.44 2.81-1.09 3.76"}],["path",{d:"M12.5 6A2.5 2.5 0 0 1 15 8.5M10 13a2 2 0 0 0 1.82-1.18"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var oI=[["path",{d:"M7 3.34V5a3 3 0 0 0 3 3"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2 2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M12 2a10 10 0 1 0 9.54 13"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var eI=[["path",{d:"M6 8.5a6.5 6.5 0 1 1 13 0c0 6-6 6-6 10a3.5 3.5 0 1 1-7 0"}],["path",{d:"M15 8.5a2.5 2.5 0 0 0-5 0v1a2 2 0 1 1 0 4"}]];var m7=[["path",{d:"M21.54 15H17a2 2 0 0 0-2 2v4.54"}],["path",{d:"M7 3.34V5a3 3 0 0 0 3 3a2 2 0 0 1 2 2c0 1.1.9 2 2 2a2 2 0 0 0 2-2c0-1.1.9-2 2-2h3.17"}],["path",{d:"M11 21.95V18a2 2 0 0 0-2-2a2 2 0 0 1-2-2v-1a2 2 0 0 0-2-2H2.05"}],["circle",{cx:"12",cy:"12",r:"10"}]];var Zz=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a7 7 0 1 0 10 10"}]];var Jz=[["circle",{cx:"11.5",cy:"12.5",r:"3.5"}],["path",{d:"M3 8c0-3.5 2.5-6 6.5-6 5 0 4.83 3 7.5 5s5 2 5 6c0 4.5-2.5 6.5-7 6.5-2.5 0-2.5 2.5-6 2.5s-7-2-7-5.5c0-3 1.5-3 1.5-5C3.5 10 3 9 3 8Z"}]];var Kz=[["path",{d:"m2 2 20 20"}],["path",{d:"M20 14.347V14c0-6-4-12-8-12-1.078 0-2.157.436-3.157 1.19"}],["path",{d:"M6.206 6.21C4.871 8.4 4 11.2 4 14a8 8 0 0 0 14.568 4.568"}]];var Yz=[["path",{d:"M12 2C8 2 4 8 4 14a8 8 0 0 0 16 0c0-6-4-12-8-12"}]];var u7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}]];var d7=[["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}]];var Xz=[["path",{d:"M5 15a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}],["path",{d:"M5 9a6.5 6.5 0 0 1 7 0 6.5 6.5 0 0 0 7 0"}]];var Wz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}],["line",{x1:"19",x2:"5",y1:"5",y2:"19"}]];var Qz=[["line",{x1:"5",x2:"19",y1:"9",y2:"9"}],["line",{x1:"5",x2:"19",y1:"15",y2:"15"}]];var Vz=[["path",{d:"M21 21H8a2 2 0 0 1-1.42-.587l-3.994-3.999a2 2 0 0 1 0-2.828l10-10a2 2 0 0 1 2.829 0l5.999 6a2 2 0 0 1 0 2.828L12.834 21"}],["path",{d:"m5.082 11.09 8.828 8.828"}]];var Gz=[["path",{d:"m15 20 3-3h2a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v9a2 2 0 0 0 2 2h2l3 3z"}],["path",{d:"M6 8v1"}],["path",{d:"M10 8v1"}],["path",{d:"M14 8v1"}],["path",{d:"M18 8v1"}]];var Iz=[["path",{d:"M4 10h12"}],["path",{d:"M4 14h9"}],["path",{d:"M19 6a7.7 7.7 0 0 0-5.2-2A7.9 7.9 0 0 0 6 12c0 4.4 3.5 8 7.8 8 2 0 3.8-.8 5.2-2"}]];var zz=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 7h11"}],["path",{d:"m9 11-2 3h3l-2 3"}]];var Nz=[["path",{d:"m15 15 6 6"}],["path",{d:"m15 9 6-6"}],["path",{d:"M21 16v5h-5"}],["path",{d:"M21 8V3h-5"}],["path",{d:"M3 16v5h5"}],["path",{d:"m3 21 6-6"}],["path",{d:"M3 8V3h5"}],["path",{d:"M9 9 3 3"}]];var Fz=[["path",{d:"m15 18-.722-3.25"}],["path",{d:"M2 8a10.645 10.645 0 0 0 20 0"}],["path",{d:"m20 15-1.726-2.05"}],["path",{d:"m4 15 1.726-2.05"}],["path",{d:"m9 18 .722-3.25"}]];var Hz=[["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"}],["path",{d:"M14.084 14.158a3 3 0 0 1-4.242-4.242"}],["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"}],["path",{d:"m2 2 20 20"}]];var Dz=[["path",{d:"M15 3h6v6"}],["path",{d:"M10 14 21 3"}],["path",{d:"M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"}]];var Bz=[["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"}],["circle",{cx:"12",cy:"12",r:"3"}]];var Oz=[["path",{d:"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"}]];var Tz=[["path",{d:"M12 16h.01"}],["path",{d:"M16 16h.01"}],["path",{d:"M3 19a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8.5a.5.5 0 0 0-.769-.422l-4.462 2.844A.5.5 0 0 1 15 10.5v-2a.5.5 0 0 0-.769-.422L9.77 10.922A.5.5 0 0 1 9 10.5V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2z"}],["path",{d:"M8 16h.01"}]];var Pz=[["path",{d:"M10.827 16.379a6.082 6.082 0 0 1-8.618-7.002l5.412 1.45a6.082 6.082 0 0 1 7.002-8.618l-1.45 5.412a6.082 6.082 0 0 1 8.618 7.002l-5.412-1.45a6.082 6.082 0 0 1-7.002 8.618l1.45-5.412Z"}],["path",{d:"M12 12v.01"}]];var Sz=[["path",{d:"M12 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 12 18z"}],["path",{d:"M2 6a2 2 0 0 1 3.414-1.414l6 6a2 2 0 0 1 0 2.828l-6 6A2 2 0 0 1 2 18z"}]];var Az=[["path",{d:"M12.67 19a2 2 0 0 0 1.416-.588l6.154-6.172a6 6 0 0 0-8.49-8.49L5.586 9.914A2 2 0 0 0 5 11.328V18a1 1 0 0 0 1 1z"}],["path",{d:"M16 8 2 22"}],["path",{d:"M17.5 15H9"}]];var qz=[["path",{d:"M4 3 2 5v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M6 8h4"}],["path",{d:"M6 18h4"}],["path",{d:"m12 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}],["path",{d:"M14 8h4"}],["path",{d:"M14 18h4"}],["path",{d:"m20 3-2 2v15c0 .6.4 1 1 1h2c.6 0 1-.4 1-1V5Z"}]];var Ez=[["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"M12 2v4"}],["path",{d:"m6.8 15-3.5 2"}],["path",{d:"m20.7 7-3.5 2"}],["path",{d:"M6.8 9 3.3 7"}],["path",{d:"m20.7 17-3.5-2"}],["path",{d:"m9 22 3-8 3 8"}],["path",{d:"M8 22h8"}],["path",{d:"M18 18.7a9 9 0 1 0-12 0"}]];var Cz=[["path",{d:"M5 5.5A3.5 3.5 0 0 1 8.5 2H12v7H8.5A3.5 3.5 0 0 1 5 5.5z"}],["path",{d:"M12 2h3.5a3.5 3.5 0 1 1 0 7H12V2z"}],["path",{d:"M12 12.5a3.5 3.5 0 1 1 7 0 3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 19.5A3.5 3.5 0 0 1 8.5 16H12v3.5a3.5 3.5 0 1 1-7 0z"}],["path",{d:"M5 12.5A3.5 3.5 0 0 1 8.5 9H12v7H8.5A3.5 3.5 0 0 1 5 12.5z"}]];var xz=[["path",{d:"M10 12v-1"}],["path",{d:"M10 18v-2"}],["path",{d:"M10 7V6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 .274 1.01"}],["circle",{cx:"10",cy:"20",r:"2"}]];var wz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"3",cy:"17",r:"1"}],["path",{d:"M2 17v-3a4 4 0 0 1 8 0v3"}],["circle",{cx:"9",cy:"17",r:"1"}]];var Uz=[["path",{d:"M17.5 22h.5a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 19a2 2 0 1 1 4 0v1a2 2 0 1 1-4 0v-4a6 6 0 0 1 12 0v4a2 2 0 1 1-4 0v-1a2 2 0 1 1 4 0"}]];var Mz=[["path",{d:"m13.69 12.479 1.29 4.88a.5.5 0 0 1-.697.591l-1.844-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"10",r:"3"}]];var c7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 18 4-4"}],["path",{d:"M8 10v8h8"}]];var Rz=[["path",{d:"M14.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 13.1a2 2 0 0 0-1 1.76v3.24a2 2 0 0 0 .97 1.78L6 21.7a2 2 0 0 0 2.03.01L11 19.9a2 2 0 0 0 1-1.76V14.9a2 2 0 0 0-.97-1.78L8 11.3a2 2 0 0 0-2.03-.01Z"}],["path",{d:"M7 17v5"}],["path",{d:"M11.7 14.2 7 17l-4.7-2.8"}]];var jz=[["path",{d:"M12 22h6a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.072"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m6.69 16.479 1.29 4.88a.5.5 0 0 1-.698.591l-1.843-.849a1 1 0 0 0-.88.001l-1.846.85a.5.5 0 0 1-.693-.593l1.29-4.88"}],["circle",{cx:"5",cy:"14",r:"3"}]];var p7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-2"}],["path",{d:"M12 18v-4"}],["path",{d:"M16 18v-6"}]];var n7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 18v-1"}],["path",{d:"M12 18v-6"}],["path",{d:"M16 18v-3"}]];var i7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3.5"}],["path",{d:"M4.017 11.512a6 6 0 1 0 8.466 8.475"}],["path",{d:"M9 16a1 1 0 0 1-1-1v-4c0-.552.45-1.008.995-.917a6 6 0 0 1 4.922 4.922c.091.544-.365.995-.917.995z"}]];var l7=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m16 13-3.5 3.5-2-2L8 17"}]];var Lz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m3 15 2 2 4-4"}]];var yz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m9 15 2 2 4-4"}]];var fz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 22h2a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"M8 14v2.2l1.6 1"}],["circle",{cx:"8",cy:"16",r:"6"}]];var kz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m5 12-3 3 3 3"}],["path",{d:"m9 18 3-3-3-3"}]];var bz=[["path",{d:"M10 12.5 8 15l2 2.5"}],["path",{d:"m14 12.5 2 2.5-2 2.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}]];var s7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m2.305 15.53.923-.382"}],["path",{d:"m3.228 12.852-.924-.383"}],["path",{d:"M4.677 21.5a2 2 0 0 0 1.313.5H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v2.5"}],["path",{d:"m4.852 11.228-.383-.923"}],["path",{d:"m4.852 16.772-.383.924"}],["path",{d:"m7.148 11.228.383-.923"}],["path",{d:"m7.53 17.696-.382-.924"}],["path",{d:"m8.772 12.852.923-.383"}],["path",{d:"m8.772 15.148.923.383"}],["circle",{cx:"6",cy:"14",r:"3"}]];var hz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M9 10h6"}],["path",{d:"M12 13V7"}],["path",{d:"M9 17h6"}]];var vz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"4",height:"6",x:"2",y:"12",rx:"2"}],["path",{d:"M10 12h2v6"}],["path",{d:"M10 18h4"}]];var $z=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 18v-6"}],["path",{d:"m9 15 3 3 3-3"}]];var gz=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2.62 13.8A2.25 2.25 0 1 1 6 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M4 6.005V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-1.9-1.376"}]];var _z=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"10",cy:"12",r:"2"}],["path",{d:"m20 17-1.296-1.296a2.41 2.41 0 0 0-3.408 0L9 22"}]];var mz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 15h10"}],["path",{d:"m9 18 3-3-3-3"}]];var uz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M8 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var dz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 12a1 1 0 0 0-1 1v1a1 1 0 0 1-1 1 1 1 0 0 1 1 1v1a1 1 0 0 0 1 1"}],["path",{d:"M14 18a1 1 0 0 0 1-1v-1a1 1 0 0 1 1-1 1 1 0 0 1-1-1v-1a1 1 0 0 0-1-1"}]];var cz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"m10 10-4.5 4.5"}],["path",{d:"m9 11 1 1"}]];var pz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["circle",{cx:"10",cy:"16",r:"2"}],["path",{d:"m16 10-4.5 4.5"}],["path",{d:"m15 11 1 1"}]];var nz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v1"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"5",x:"2",y:"13",rx:"1"}],["path",{d:"M8 13v-2a2 2 0 1 0-4 0v2"}]];var iz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["rect",{width:"8",height:"6",x:"8",y:"12",rx:"1"}],["path",{d:"M10 12v-2a2 2 0 1 1 4 0v2"}]];var lz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}]];var sz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}]];var rz=[["path",{d:"M10.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v8.4"}],["path",{d:"M8 18v-7.7L16 9v7"}],["circle",{cx:"14",cy:"16",r:"2"}],["circle",{cx:"6",cy:"18",r:"2"}]];var az=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 7V4a2 2 0 0 1 2-2 2 2 0 0 0-2 2"}],["path",{d:"M4.063 20.999a2 2 0 0 0 2 1L18 22a2 2 0 0 0 2-2V7l-5-5H6"}],["path",{d:"m5 11-3 3"}],["path",{d:"m5 17-3-3h10"}]];var r7=[["path",{d:"m18 5-2.414-2.414A2 2 0 0 0 14.172 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2"}],["path",{d:"M21.378 12.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M8 18h1"}]];var a7=[["path",{d:"M12.5 22H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v9.5"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M13.378 15.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var t7=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M15.033 13.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56v-4.704a.645.645 0 0 1 .967-.56z"}]];var tz=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 15h6"}],["path",{d:"M12 18v-6"}]];var oz=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M3 15h6"}],["path",{d:"M6 12v6"}]];var o7=[["path",{d:"M12 17h.01"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}]];var ez=[["path",{d:"M20 10V7l-5-5H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M16 14a2 2 0 0 0-2 2"}],["path",{d:"M20 14a2 2 0 0 1 2 2"}],["path",{d:"M20 22a2 2 0 0 0 2-2"}],["path",{d:"M16 22a2 2 0 0 1-2-2"}]];var ZN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["circle",{cx:"11.5",cy:"14.5",r:"2.5"}],["path",{d:"M13.3 16.3 15 18"}]];var JN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4.268 21a2 2 0 0 0 1.727 1H18a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 18-1.5-1.5"}],["circle",{cx:"5",cy:"14",r:"3"}]];var KN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 12h8"}],["path",{d:"M10 11v2"}],["path",{d:"M8 17h8"}],["path",{d:"M14 16v2"}]];var YN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h2"}],["path",{d:"M14 13h2"}],["path",{d:"M8 17h2"}],["path",{d:"M14 17h2"}]];var XN=[["path",{d:"M11 21a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-8a1 1 0 0 1 1-1"}],["path",{d:"M16 16a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1"}],["path",{d:"M21 6a2 2 0 0 0-.586-1.414l-2-2A2 2 0 0 0 17 2h-3a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1z"}]];var WN=[["path",{d:"m10 18 3-3-3-3"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 11V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}]];var QN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 16 2-2-2-2"}],["path",{d:"M12 18h4"}]];var VN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M10 9H8"}],["path",{d:"M16 13H8"}],["path",{d:"M16 17H8"}]];var GN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M2 13v-1h6v1"}],["path",{d:"M5 12v6"}],["path",{d:"M4 18h2"}]];var IN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M9 13v-1h6v1"}],["path",{d:"M12 12v6"}],["path",{d:"M11 18h2"}]];var zN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M12 12v6"}],["path",{d:"m15 15-3-3-3 3"}]];var NN=[["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M15 18a3 3 0 1 0-6 0"}],["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7z"}],["circle",{cx:"12",cy:"13",r:"2"}]];var e7=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"6",x:"2",y:"12",rx:"1"}],["path",{d:"m10 13.843 3.033-1.755a.645.645 0 0 1 .967.56v4.704a.645.645 0 0 1-.967.56L10 16.157"}]];var FN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 15h.01"}],["path",{d:"M11.5 13.5a2.5 2.5 0 0 1 0 3"}],["path",{d:"M15 12a5 5 0 0 1 0 6"}]];var HN=[["path",{d:"M11 11a5 5 0 0 1 0 6"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M4 6.765V4a2 2 0 0 1 2-2h9l5 5v13a2 2 0 0 1-2 2H6a2 2 0 0 1-.93-.23"}],["path",{d:"M7 10.51a.5.5 0 0 0-.826-.38l-1.893 1.628A1 1 0 0 1 3.63 12H2.5a.5.5 0 0 0-.5.5v3a.5.5 0 0 0 .5.5h1.129a1 1 0 0 1 .652.242l1.893 1.63a.5.5 0 0 0 .826-.38z"}]];var DN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var BN=[["path",{d:"M4 22h14a2 2 0 0 0 2-2V7l-5-5H6a2 2 0 0 0-2 2v4"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m8 12.5-5 5"}],["path",{d:"m3 12.5 5 5"}]];var ON=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"m14.5 12.5-5 5"}],["path",{d:"m9.5 12.5 5 5"}]];var TN=[["path",{d:"M15 2a2 2 0 0 1 1.414.586l4 4A2 2 0 0 1 21 8v7a2 2 0 0 1-2 2h-8a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2z"}],["path",{d:"M15 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M5 7a2 2 0 0 0-2 2v11a2 2 0 0 0 2 2h8a2 2 0 0 0 1.732-1"}]];var PN=[["path",{d:"M15 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7Z"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}]];var SN=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 3v18"}],["path",{d:"M3 7.5h4"}],["path",{d:"M3 12h18"}],["path",{d:"M3 16.5h4"}],["path",{d:"M17 3v18"}],["path",{d:"M17 7.5h4"}],["path",{d:"M17 16.5h4"}]];var AN=[["path",{d:"M12 10a2 2 0 0 0-2 2c0 1.02-.1 2.51-.26 4"}],["path",{d:"M14 13.12c0 2.38 0 6.38-1 8.88"}],["path",{d:"M17.29 21.02c.12-.6.43-2.3.5-3.02"}],["path",{d:"M2 12a10 10 0 0 1 18-6"}],["path",{d:"M2 16h.01"}],["path",{d:"M21.8 16c.2-2 .131-5.354 0-6"}],["path",{d:"M5 19.5C5.5 18 6 15 6 12a6 6 0 0 1 .34-2"}],["path",{d:"M8.65 22c.21-.66.45-1.32.57-2"}],["path",{d:"M9 6.8a6 6 0 0 1 9 5.2v2"}]];var qN=[["path",{d:"M15 6.5V3a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v3.5"}],["path",{d:"M9 18h8"}],["path",{d:"M18 3h-3"}],["path",{d:"M11 3a6 6 0 0 0-6 6v11"}],["path",{d:"M5 13h4"}],["path",{d:"M17 10a4 4 0 0 0-8 0v10a2 2 0 0 0 2 2h4a2 2 0 0 0 2-2Z"}]];var EN=[["path",{d:"M18 12.47v.03m0-.5v.47m-.475 5.056A6.744 6.744 0 0 1 15 18c-3.56 0-7.56-2.53-8.5-6 .348-1.28 1.114-2.433 2.121-3.38m3.444-2.088A8.802 8.802 0 0 1 15 6c3.56 0 6.06 2.54 7 6-.309 1.14-.786 2.177-1.413 3.058"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33m7.48-4.372A9.77 9.77 0 0 1 16 6.07m0 11.86a9.77 9.77 0 0 1-1.728-3.618"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98M8.53 3h5.27a2 2 0 0 1 1.98 1.67l.23 1.4M2 2l20 20"}]];var CN=[["path",{d:"M2 16s9-15 20-4C11 23 2 8 2 8"}]];var xN=[["path",{d:"M16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}],["path",{d:"m2 2 20 20"}],["path",{d:"M4 22V4"}],["path",{d:"M7.656 2H8c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10.347"}]];var wN=[["path",{d:"M6.5 12c.94-3.46 4.94-6 8.5-6 3.56 0 6.06 2.54 7 6-.94 3.47-3.44 6-7 6s-7.56-2.53-8.5-6Z"}],["path",{d:"M18 12v.5"}],["path",{d:"M16 17.93a9.77 9.77 0 0 1 0-11.86"}],["path",{d:"M7 10.67C7 8 5.58 5.97 2.73 5.5c-1 1.5-1 5 .23 6.5-1.24 1.5-1.24 5-.23 6.5C5.58 18.03 7 16 7 13.33"}],["path",{d:"M10.46 7.26C10.2 5.88 9.17 4.24 8 3h5.8a2 2 0 0 1 1.98 1.67l.23 1.4"}],["path",{d:"m16.01 17.93-.23 1.4A2 2 0 0 1 13.8 21H9.5a5.96 5.96 0 0 0 1.49-3.98"}]];var UN=[["path",{d:"M18 22V2.8a.8.8 0 0 0-1.17-.71L5.45 7.78a.8.8 0 0 0 0 1.44L18 15.5"}]];var MN=[["path",{d:"M6 22V2.8a.8.8 0 0 1 1.17-.71l11.38 5.69a.8.8 0 0 1 0 1.44L6 15.5"}]];var RN=[["path",{d:"M4 22V4a1 1 0 0 1 .4-.8A6 6 0 0 1 8 2c3 0 5 2 7.333 2q2 0 3.067-.8A1 1 0 0 1 20 4v10a1 1 0 0 1-.4.8A6 6 0 0 1 16 16c-3 0-5-2-8-2a6 6 0 0 0-4 1.528"}]];var jN=[["path",{d:"M12 2c1 3 2.5 3.5 3.5 4.5A5 5 0 0 1 17 10a5 5 0 1 1-10 0c0-.3 0-.6.1-.9a2 2 0 1 0 3.3-2C8 4.5 11 2 12 2Z"}],["path",{d:"m5 22 14-4"}],["path",{d:"m5 18 14 4"}]];var LN=[["path",{d:"M12 3q1 4 4 6.5t3 5.5a1 1 0 0 1-14 0 5 5 0 0 1 1-3 1 1 0 0 0 5 0c0-2-1.5-3-1.5-5q0-2 2.5-4"}]];var yN=[["path",{d:"M16 16v4a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4"}],["path",{d:"M7 2h11v4c0 2-2 2-2 4v1"}],["line",{x1:"11",x2:"18",y1:"6",y2:"6"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var fN=[["path",{d:"M18 6c0 2-2 2-2 4v10a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2V10c0-2-2-2-2-4V2h12z"}],["line",{x1:"6",x2:"18",y1:"6",y2:"6"}],["line",{x1:"12",x2:"12",y1:"12",y2:"12"}]];var kN=[["path",{d:"M10 2v2.343"}],["path",{d:"M14 2v6.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20a2 2 0 0 1-2 2H6a2 2 0 0 1-1.755-2.96l5.227-9.563"}],["path",{d:"M6.453 15H15"}],["path",{d:"M8.5 2h7"}]];var bN=[["path",{d:"M14 2v6a2 2 0 0 0 .245.96l5.51 10.08A2 2 0 0 1 18 22H6a2 2 0 0 1-1.755-2.96l5.51-10.08A2 2 0 0 0 10 8V2"}],["path",{d:"M6.453 15h11.094"}],["path",{d:"M8.5 2h7"}]];var hN=[["path",{d:"M10 2v6.292a7 7 0 1 0 4 0V2"}],["path",{d:"M5 15h14"}],["path",{d:"M8.5 2h7"}]];var vN=[["path",{d:"m3 7 5 5-5 5V7"}],["path",{d:"m21 7-5 5 5 5V7"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var $N=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h3"}],["path",{d:"M16 3h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-3"}],["path",{d:"M12 20v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 2v2"}]];var gN=[["path",{d:"m17 3-5 5-5-5h10"}],["path",{d:"m17 21-5-5-5 5h10"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var _N=[["path",{d:"M21 8V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 16v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-3"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var mN=[["path",{d:"M12 5a3 3 0 1 1 3 3m-3-3a3 3 0 1 0-3 3m3-3v1M9 8a3 3 0 1 0 3 3M9 8h1m5 0a3 3 0 1 1-3 3m3-3h-1m-2 3v-1"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M12 10v12"}],["path",{d:"M12 22c4.2 0 7-1.667 7-5-4.2 0-7 1.667-7 5Z"}],["path",{d:"M12 22c-4.2 0-7-1.667-7-5 4.2 0 7 1.667 7 5Z"}]];var uN=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 16.5A4.5 4.5 0 1 1 7.5 12 4.5 4.5 0 1 1 12 7.5a4.5 4.5 0 1 1 4.5 4.5 4.5 4.5 0 1 1-4.5 4.5"}],["path",{d:"M12 7.5V9"}],["path",{d:"M7.5 12H9"}],["path",{d:"M16.5 12H15"}],["path",{d:"M12 16.5V15"}],["path",{d:"m8 8 1.88 1.88"}],["path",{d:"M14.12 9.88 16 8"}],["path",{d:"m8 16 1.88-1.88"}],["path",{d:"M14.12 14.12 16 16"}]];var dN=[["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var cN=[["path",{d:"M2 12h6"}],["path",{d:"M22 12h-6"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 9-3 3 3 3"}],["path",{d:"m5 15 3-3-3-3"}]];var pN=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3-3-3 3"}],["path",{d:"m15 5-3 3-3-3"}]];var nN=[["circle",{cx:"15",cy:"19",r:"2"}],["path",{d:"M20.9 19.8A2 2 0 0 0 22 18V8a2 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 2h5.1"}],["path",{d:"M15 11v-1"}],["path",{d:"M15 17v-2"}]];var iN=[["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"}],["path",{d:"m9 13 2 2 4-4"}]];var lN=[["path",{d:"M16 14v2.2l1.6 1"}],["path",{d:"M7 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 2"}],["circle",{cx:"16",cy:"16",r:"6"}]];var sN=[["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"}],["path",{d:"M2 10h20"}]];var rN=[["path",{d:"M10 10.5 8 13l2 2.5"}],["path",{d:"m14 10.5 2 2.5-2 2.5"}],["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"}]];var Z6=[["path",{d:"M10.3 20H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h3.98a2 2 0 0 1 1.69.9l.66 1.2A2 2 0 0 0 12 6h8a2 2 0 0 1 2 2v3.3"}],["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"18",cy:"18",r:"3"}]];var aN=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"1"}]];var tN=[["path",{d:"M9 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 2v5"}],["circle",{cx:"13",cy:"12",r:"2"}],["path",{d:"M18 19c-2.8 0-5-2.2-5-5v8"}],["circle",{cx:"20",cy:"19",r:"2"}]];var oN=[["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"}],["path",{d:"M12 10v6"}],["path",{d:"m15 13-3 3-3-3"}]];var eN=[["circle",{cx:"12",cy:"13",r:"2"}],["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"}],["path",{d:"M14 13h3"}],["path",{d:"M7 13h3"}]];var ZF=[["path",{d:"M10.638 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 2v3.417"}],["path",{d:"M14.62 18.8A2.25 2.25 0 1 1 18 15.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}]];var JF=[["path",{d:"M2 9V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-1"}],["path",{d:"M2 13h10"}],["path",{d:"m9 16 3-3-3-3"}]];var KF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["path",{d:"M8 10v4"}],["path",{d:"M12 10v2"}],["path",{d:"M16 10v6"}]];var YF=[["circle",{cx:"16",cy:"20",r:"2"}],["path",{d:"M10 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 2v2"}],["path",{d:"m22 14-4.5 4.5"}],["path",{d:"m21 15 1 1"}]];var XF=[["rect",{width:"8",height:"5",x:"14",y:"17",rx:"1"}],["path",{d:"M10 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 2v2.5"}],["path",{d:"M20 17v-2a2 2 0 1 0-4 0v2"}]];var WF=[["path",{d:"M9 13h6"}],["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"}]];var QF=[["path",{d:"m6 14 1.45-2.9A2 2 0 0 1 9.24 10H20a2 2 0 0 1 1.94 2.5l-1.55 6a2 2 0 0 1-1.94 1.5H4a2 2 0 0 1-2-2V5c0-1.1.9-2 2-2h3.93a2 2 0 0 1 1.66.9l.82 1.2a2 2 0 0 0 1.66.9H18a2 2 0 0 1 2 2v2"}],["circle",{cx:"14",cy:"15",r:"1"}]];var VF=[["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"}]];var GF=[["path",{d:"M2 7.5V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-1.5"}],["path",{d:"M2 13h10"}],["path",{d:"m5 10-3 3 3 3"}]];var J6=[["path",{d:"M2 11.5V5a2 2 0 0 1 2-2h3.9c.7 0 1.3.3 1.7.9l.8 1.2c.4.6 1 .9 1.7.9H20a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-9.5"}],["path",{d:"M11.378 13.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var IF=[["path",{d:"M12 10v6"}],["path",{d:"M9 13h6"}],["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"}]];var zF=[["path",{d:"M4 20h16a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-7.93a2 2 0 0 1-1.66-.9l-.82-1.2A2 2 0 0 0 7.93 3H4a2 2 0 0 0-2 2v13c0 1.1.9 2 2 2Z"}],["circle",{cx:"12",cy:"13",r:"2"}],["path",{d:"M12 15v5"}]];var NF=[["circle",{cx:"11.5",cy:"12.5",r:"2.5"}],["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"}],["path",{d:"M13.3 14.3 15 16"}]];var FF=[["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"}],["path",{d:"m21 21-1.9-1.9"}],["circle",{cx:"17",cy:"17",r:"3"}]];var HF=[["path",{d:"M2 9.35V5a2 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 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h7"}],["path",{d:"m8 16 3-3-3-3"}]];var DF=[["path",{d:"M9 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 2v.5"}],["path",{d:"M12 10v4h4"}],["path",{d:"m12 14 1.535-1.605a5 5 0 0 1 8 1.5"}],["path",{d:"M22 22v-4h-4"}],["path",{d:"m22 18-1.535 1.605a5 5 0 0 1-8-1.5"}]];var BF=[["path",{d:"M20 10a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2.5a1 1 0 0 1-.8-.4l-.9-1.2A1 1 0 0 0 15 3h-2a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M20 21a1 1 0 0 0 1-1v-3a1 1 0 0 0-1-1h-2.9a1 1 0 0 1-.88-.55l-.42-.85a1 1 0 0 0-.92-.6H13a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1Z"}],["path",{d:"M3 5a2 2 0 0 0 2 2h3"}],["path",{d:"M3 3v13a2 2 0 0 0 2 2h3"}]];var OF=[["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"}],["path",{d:"M12 10v6"}],["path",{d:"m9 13 3-3 3 3"}]];var TF=[["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"}],["path",{d:"m9.5 10.5 5 5"}],["path",{d:"m14.5 10.5-5 5"}]];var PF=[["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"}]];var SF=[["path",{d:"M20 5a2 2 0 0 1 2 2v7a2 2 0 0 1-2 2H9a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h2.5a1.5 1.5 0 0 1 1.2.6l.6.8a1.5 1.5 0 0 0 1.2.6z"}],["path",{d:"M3 8.268a2 2 0 0 0-1 1.738V19a2 2 0 0 0 2 2h11a2 2 0 0 0 1.732-1"}]];var AF=[["path",{d:"M4 16v-2.38C4 11.5 2.97 10.5 3 8c.03-2.72 1.49-6 4.5-6C9.37 2 10 3.8 10 5.5c0 3.11-2 5.66-2 8.68V16a2 2 0 1 1-4 0Z"}],["path",{d:"M20 20v-2.38c0-2.12 1.03-3.12 1-5.62-.03-2.72-1.49-6-4.5-6C14.63 6 14 7.8 14 9.5c0 3.11 2 5.66 2 8.68V20a2 2 0 1 0 4 0Z"}],["path",{d:"M16 17h4"}],["path",{d:"M4 13h4"}]];var qF=[["path",{d:"M12 12H5a2 2 0 0 0-2 2v5"}],["circle",{cx:"13",cy:"19",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M8 19h3m5-17v17h6M6 12V7c0-1.1.9-2 2-2h3l5 5"}]];var EF=[["path",{d:"m15 17 5-5-5-5"}],["path",{d:"M4 18v-2a4 4 0 0 1 4-4h12"}]];var CF=[["line",{x1:"22",x2:"2",y1:"6",y2:"6"}],["line",{x1:"22",x2:"2",y1:"18",y2:"18"}],["line",{x1:"6",x2:"6",y1:"2",y2:"22"}],["line",{x1:"18",x2:"18",y1:"2",y2:"22"}]];var xF=[["path",{d:"M5 16V9h14V2H5l14 14h-7m-7 0 7 7v-7m-7 0h7"}]];var wF=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M16 16s-1.5-2-4-2-4 2-4 2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var UF=[["path",{d:"M14 13h2a2 2 0 0 1 2 2v2a2 2 0 0 0 4 0v-6.998a2 2 0 0 0-.59-1.42L18 5"}],["path",{d:"M14 21V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v16"}],["path",{d:"M2 21h13"}],["path",{d:"M3 9h11"}]];var MF=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{width:"10",height:"8",x:"7",y:"8",rx:"1"}]];var RF=[["path",{d:"M13.354 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l1.218-1.348"}],["path",{d:"M16 6h6"}],["path",{d:"M19 3v6"}]];var K6=[["path",{d:"M12.531 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14v6a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341l.427-.473"}],["path",{d:"m16.5 3.5 5 5"}],["path",{d:"m21.5 3.5-5 5"}]];var Y6=[["path",{d:"M10 20a1 1 0 0 0 .553.895l2 1A1 1 0 0 0 14 21v-7a2 2 0 0 1 .517-1.341L21.74 4.67A1 1 0 0 0 21 3H3a1 1 0 0 0-.742 1.67l7.225 7.989A2 2 0 0 1 10 14z"}]];var jF=[["path",{d:"M2 7v10"}],["path",{d:"M6 5v14"}],["rect",{width:"12",height:"18",x:"10",y:"3",rx:"2"}]];var LF=[["path",{d:"M2 3v18"}],["rect",{width:"12",height:"18",x:"6",y:"3",rx:"2"}],["path",{d:"M22 3v18"}]];var yF=[["rect",{width:"18",height:"14",x:"3",y:"3",rx:"2"}],["path",{d:"M4 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}],["path",{d:"M19 21h1"}]];var fF=[["path",{d:"M7 2h10"}],["path",{d:"M5 6h14"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}]];var kF=[["path",{d:"M3 2h18"}],["rect",{width:"18",height:"12",x:"3",y:"6",rx:"2"}],["path",{d:"M3 22h18"}]];var bF=[["line",{x1:"6",x2:"10",y1:"11",y2:"11"}],["line",{x1:"8",x2:"8",y1:"9",y2:"13"}],["line",{x1:"15",x2:"15.01",y1:"12",y2:"12"}],["line",{x1:"18",x2:"18.01",y1:"10",y2:"10"}],["path",{d:"M17.32 5H6.68a4 4 0 0 0-3.978 3.59c-.006.052-.01.101-.017.152C2.604 9.416 2 14.456 2 16a3 3 0 0 0 3 3c1 0 1.5-.5 2-1l1.414-1.414A2 2 0 0 1 9.828 16h4.344a2 2 0 0 1 1.414.586L17 18c.5.5 1 1 2 1a3 3 0 0 0 3-3c0-1.545-.604-6.584-.685-7.258-.007-.05-.011-.1-.017-.151A4 4 0 0 0 17.32 5z"}]];var hF=[["path",{d:"M11.146 15.854a1.207 1.207 0 0 1 1.708 0l1.56 1.56A2 2 0 0 1 15 18.828V21a1 1 0 0 1-1 1h-4a1 1 0 0 1-1-1v-2.172a2 2 0 0 1 .586-1.414z"}],["path",{d:"M18.828 15a2 2 0 0 1-1.414-.586l-1.56-1.56a1.207 1.207 0 0 1 0-1.708l1.56-1.56A2 2 0 0 1 18.828 9H21a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1z"}],["path",{d:"M6.586 14.414A2 2 0 0 1 5.172 15H3a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1h2.172a2 2 0 0 1 1.414.586l1.56 1.56a1.207 1.207 0 0 1 0 1.708z"}],["path",{d:"M9 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v2.172a2 2 0 0 1-.586 1.414l-1.56 1.56a1.207 1.207 0 0 1-1.708 0l-1.56-1.56A2 2 0 0 1 9 5.172z"}]];var vF=[["line",{x1:"6",x2:"10",y1:"12",y2:"12"}],["line",{x1:"8",x2:"8",y1:"10",y2:"14"}],["line",{x1:"15",x2:"15.01",y1:"13",y2:"13"}],["line",{x1:"18",x2:"18.01",y1:"11",y2:"11"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var $F=[["path",{d:"m12 14 4-4"}],["path",{d:"M3.34 19a10 10 0 1 1 17.32 0"}]];var gF=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3l8.384-8.381"}],["path",{d:"m16 16 6-6"}],["path",{d:"m21.5 10.5-8-8"}],["path",{d:"m8 8 6-6"}],["path",{d:"m8.5 7.5 8 8"}]];var _F=[["path",{d:"M10.5 3 8 9l4 13 4-13-2.5-6"}],["path",{d:"M17 3a2 2 0 0 1 1.6.8l3 4a2 2 0 0 1 .013 2.382l-7.99 10.986a2 2 0 0 1-3.247 0l-7.99-10.986A2 2 0 0 1 2.4 7.8l2.998-3.997A2 2 0 0 1 7 3z"}],["path",{d:"M2 9h20"}]];var mF=[["path",{d:"M11.5 21a7.5 7.5 0 1 1 7.35-9"}],["path",{d:"M13 12V3"}],["path",{d:"M4 21h16"}],["path",{d:"M9 12V3"}]];var uF=[["path",{d:"M9 10h.01"}],["path",{d:"M15 10h.01"}],["path",{d:"M12 2a8 8 0 0 0-8 8v12l3-3 2.5 2.5L12 19l2.5 2.5L17 19l3 3V10a8 8 0 0 0-8-8z"}]];var dF=[["rect",{x:"3",y:"8",width:"18",height:"4",rx:"1"}],["path",{d:"M12 8v13"}],["path",{d:"M19 12v7a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2v-7"}],["path",{d:"M7.5 8a2.5 2.5 0 0 1 0-5A4.8 8 0 0 1 12 8a4.8 8 0 0 1 4.5-5 2.5 2.5 0 0 1 0 5"}]];var cF=[["path",{d:"M6 3v12"}],["path",{d:"M18 9a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M6 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6z"}],["path",{d:"M15 6a9 9 0 0 0-9 9"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var pF=[["line",{x1:"6",x2:"6",y1:"3",y2:"15"}],["circle",{cx:"18",cy:"6",r:"3"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M18 9a9 9 0 0 1-9 9"}]];var X6=[["circle",{cx:"12",cy:"12",r:"3"}],["line",{x1:"3",x2:"9",y1:"12",y2:"12"}],["line",{x1:"15",x2:"21",y1:"12",y2:"12"}]];var nF=[["path",{d:"M12 3v6"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"M12 15v6"}]];var iF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}],["path",{d:"m15 9-3-3 3-3"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"M12 18H7a2 2 0 0 1-2-2V9"}],["path",{d:"m9 15 3 3-3 3"}]];var lF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["path",{d:"M11 18H8a2 2 0 0 1-2-2V9"}]];var sF=[["circle",{cx:"12",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["circle",{cx:"18",cy:"6",r:"3"}],["path",{d:"M18 9v2c0 .6-.4 1-1 1H7c-.6 0-1-.4-1-1V9"}],["path",{d:"M12 12v3"}]];var rF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v6"}],["circle",{cx:"5",cy:"18",r:"3"}],["path",{d:"M12 3v18"}],["circle",{cx:"19",cy:"6",r:"3"}],["path",{d:"M16 15.7A9 9 0 0 0 19 9"}]];var aF=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 21V9a9 9 0 0 0 9 9"}]];var tF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["circle",{cx:"19",cy:"18",r:"3"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v7"}]];var oF=[["circle",{cx:"5",cy:"6",r:"3"}],["path",{d:"M5 9v12"}],["path",{d:"m15 9-3-3 3-3"}],["path",{d:"M12 6h5a2 2 0 0 1 2 2v3"}],["path",{d:"M19 15v6"}],["path",{d:"M22 18h-6"}]];var eF=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"m21 3-6 6"}],["path",{d:"m21 9-6-6"}],["path",{d:"M18 11.5V15"}],["circle",{cx:"18",cy:"18",r:"3"}]];var ZH=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M6 9v12"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v3"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}]];var JH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M18 6V5"}],["path",{d:"M18 11v-1"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var KH=[["circle",{cx:"18",cy:"18",r:"3"}],["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M13 6h3a2 2 0 0 1 2 2v7"}],["line",{x1:"6",x2:"6",y1:"9",y2:"21"}]];var YH=[["path",{d:"M15 22v-4a4.8 4.8 0 0 0-1-3.5c3 0 6-2 6-5.5.08-1.25-.27-2.48-1-3.5.28-1.15.28-2.35 0-3.5 0 0-1 0-3 1.5-2.64-.5-5.36-.5-8 0C6 2 5 2 5 2c-.3 1.15-.3 2.35 0 3.5A5.403 5.403 0 0 0 4 9c0 3.5 3 5.5 6 5.5-.39.49-.68 1.05-.85 1.65-.17.6-.22 1.23-.15 1.85v4"}],["path",{d:"M9 18c-4.51 2-5-2-7-2"}]];var XH=[["path",{d:"m22 13.29-3.33-10a.42.42 0 0 0-.14-.18.38.38 0 0 0-.22-.11.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18l-2.26 6.67H8.32L6.1 3.26a.42.42 0 0 0-.1-.18.38.38 0 0 0-.26-.08.39.39 0 0 0-.23.07.42.42 0 0 0-.14.18L2 13.29a.74.74 0 0 0 .27.83L12 21l9.69-6.88a.71.71 0 0 0 .31-.83Z"}]];var WH=[["path",{d:"M5.116 4.104A1 1 0 0 1 6.11 3h11.78a1 1 0 0 1 .994 1.105L17.19 20.21A2 2 0 0 1 15.2 22H8.8a2 2 0 0 1-2-1.79z"}],["path",{d:"M6 12a5 5 0 0 1 6 0 5 5 0 0 0 6 0"}]];var QH=[["circle",{cx:"6",cy:"15",r:"4"}],["circle",{cx:"18",cy:"15",r:"4"}],["path",{d:"M14 15a2 2 0 0 0-2-2 2 2 0 0 0-2 2"}],["path",{d:"M2.5 13 5 7c.7-1.3 1.4-2 3-2"}],["path",{d:"M21.5 13 19 7c-.7-1.3-1.5-2-3-2"}]];var VH=[["path",{d:"M15.686 15A14.5 14.5 0 0 1 12 22a14.5 14.5 0 0 1 0-20 10 10 0 1 0 9.542 13"}],["path",{d:"M2 12h8.5"}],["path",{d:"M20 6V4a2 2 0 1 0-4 0v2"}],["rect",{width:"8",height:"5",x:"14",y:"6",rx:"1"}]];var GH=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"}],["path",{d:"M2 12h20"}]];var IH=[["path",{d:"M12 13V2l8 4-8 4"}],["path",{d:"M20.561 10.222a9 9 0 1 1-12.55-5.29"}],["path",{d:"M8.002 9.997a5 5 0 1 0 8.9 2.02"}]];var zH=[["path",{d:"M2 21V3"}],["path",{d:"M2 5h18a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2.26"}],["path",{d:"M7 17v3a1 1 0 0 0 1 1h5a1 1 0 0 0 1-1v-3"}],["circle",{cx:"16",cy:"11",r:"2"}],["circle",{cx:"8",cy:"11",r:"2"}]];var NH=[["path",{d:"M21.42 10.922a1 1 0 0 0-.019-1.838L12.83 5.18a2 2 0 0 0-1.66 0L2.6 9.08a1 1 0 0 0 0 1.832l8.57 3.908a2 2 0 0 0 1.66 0z"}],["path",{d:"M22 10v6"}],["path",{d:"M6 12.5V16a6 3 0 0 0 12 0v-3.5"}]];var FH=[["path",{d:"M22 5V2l-5.89 5.89"}],["circle",{cx:"16.6",cy:"15.89",r:"3"}],["circle",{cx:"8.11",cy:"7.4",r:"3"}],["circle",{cx:"12.35",cy:"11.65",r:"3"}],["circle",{cx:"13.91",cy:"5.85",r:"3"}],["circle",{cx:"18.15",cy:"10.09",r:"3"}],["circle",{cx:"6.56",cy:"13.2",r:"3"}],["circle",{cx:"10.8",cy:"17.44",r:"3"}],["circle",{cx:"5",cy:"19",r:"3"}]];var W6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 19 2 2 4-4"}]];var Q6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"M16 19h6"}],["path",{d:"M19 22v-6"}]];var V6=[["path",{d:"M12 3v17a1 1 0 0 1-1 1H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v6a1 1 0 0 1-1 1H3"}],["path",{d:"m16 16 5 5"}],["path",{d:"m16 21 5-5"}]];var G6=[["path",{d:"M12 3v18"}],["path",{d:"M3 12h18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var HH=[["path",{d:"M15 3v18"}],["path",{d:"M3 12h18"}],["path",{d:"M9 3v18"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var W5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}],["path",{d:"M9 3v18"}],["path",{d:"M15 3v18"}]];var DH=[["circle",{cx:"12",cy:"9",r:"1"}],["circle",{cx:"19",cy:"9",r:"1"}],["circle",{cx:"5",cy:"9",r:"1"}],["circle",{cx:"12",cy:"15",r:"1"}],["circle",{cx:"19",cy:"15",r:"1"}],["circle",{cx:"5",cy:"15",r:"1"}]];var BH=[["circle",{cx:"9",cy:"12",r:"1"}],["circle",{cx:"9",cy:"5",r:"1"}],["circle",{cx:"9",cy:"19",r:"1"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"15",cy:"5",r:"1"}],["circle",{cx:"15",cy:"19",r:"1"}]];var OH=[["circle",{cx:"12",cy:"5",r:"1"}],["circle",{cx:"19",cy:"5",r:"1"}],["circle",{cx:"5",cy:"5",r:"1"}],["circle",{cx:"12",cy:"12",r:"1"}],["circle",{cx:"19",cy:"12",r:"1"}],["circle",{cx:"5",cy:"12",r:"1"}],["circle",{cx:"12",cy:"19",r:"1"}],["circle",{cx:"19",cy:"19",r:"1"}],["circle",{cx:"5",cy:"19",r:"1"}]];var TH=[["path",{d:"M3 7V5c0-1.1.9-2 2-2h2"}],["path",{d:"M17 3h2c1.1 0 2 .9 2 2v2"}],["path",{d:"M21 17v2c0 1.1-.9 2-2 2h-2"}],["path",{d:"M7 21H5c-1.1 0-2-.9-2-2v-2"}],["rect",{width:"7",height:"5",x:"7",y:"7",rx:"1"}],["rect",{width:"7",height:"5",x:"10",y:"12",rx:"1"}]];var PH=[["path",{d:"m11.9 12.1 4.514-4.514"}],["path",{d:"M20.1 2.3a1 1 0 0 0-1.4 0l-1.114 1.114A2 2 0 0 0 17 4.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 17.828 7h1.344a2 2 0 0 0 1.414-.586L21.7 5.3a1 1 0 0 0 0-1.4z"}],["path",{d:"m6 16 2 2"}],["path",{d:"M8.23 9.85A3 3 0 0 1 11 8a5 5 0 0 1 5 5 3 3 0 0 1-1.85 2.77l-.92.38A2 2 0 0 0 12 18a4 4 0 0 1-4 4 6 6 0 0 1-6-6 4 4 0 0 1 4-4 2 2 0 0 0 1.85-1.23z"}]];var SH=[["path",{d:"M13.144 21.144A7.274 10.445 45 1 0 2.856 10.856"}],["path",{d:"M13.144 21.144A7.274 4.365 45 0 0 2.856 10.856a7.274 4.365 45 0 0 10.288 10.288"}],["path",{d:"M16.565 10.435 18.6 8.4a2.501 2.501 0 1 0 1.65-4.65 2.5 2.5 0 1 0-4.66 1.66l-2.024 2.025"}],["path",{d:"m8.5 16.5-1-1"}]];var AH=[["path",{d:"M12 16H4a2 2 0 1 1 0-4h16a2 2 0 1 1 0 4h-4.25"}],["path",{d:"M5 12a2 2 0 0 1-2-2 9 7 0 0 1 18 0 2 2 0 0 1-2 2"}],["path",{d:"M5 16a2 2 0 0 0-2 2 3 3 0 0 0 3 3h12a3 3 0 0 0 3-3 2 2 0 0 0-2-2q0 0 0 0"}],["path",{d:"m6.67 12 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}]];var qH=[["path",{d:"m15 12-9.373 9.373a1 1 0 0 1-3.001-3L12 9"}],["path",{d:"m18 15 4-4"}],["path",{d:"m21.5 11.5-1.914-1.914A2 2 0 0 1 19 8.172v-.344a2 2 0 0 0-.586-1.414l-1.657-1.657A6 6 0 0 0 12.516 3H9l1.243 1.243A6 6 0 0 1 12 8.485V10l2 2h1.172a2 2 0 0 1 1.414.586L18.5 14.5"}]];var EH=[["path",{d:"M11 15h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 17"}],["path",{d:"m7 21 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 16 6 6"}],["circle",{cx:"16",cy:"9",r:"2.9"}],["circle",{cx:"6",cy:"5",r:"3"}]];var CH=[["path",{d:"M12.035 17.012a3 3 0 0 0-3-3l-.311-.002a.72.72 0 0 1-.505-1.229l1.195-1.195A2 2 0 0 1 10.828 11H12a2 2 0 0 0 0-4H9.243a3 3 0 0 0-2.122.879l-2.707 2.707A4.83 4.83 0 0 0 3 14a8 8 0 0 0 8 8h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v2a2 2 0 1 0 4 0"}],["path",{d:"M13.888 9.662A2 2 0 0 0 17 8V5A2 2 0 1 0 13 5"}],["path",{d:"M9 5A2 2 0 1 0 5 5V10"}],["path",{d:"M9 7V4A2 2 0 1 1 13 4V7.268"}]];var xH=[["path",{d:"M11 14h2a2 2 0 0 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 16"}],["path",{d:"m14.45 13.39 5.05-4.694C20.196 8 21 6.85 21 5.75a2.75 2.75 0 0 0-4.797-1.837.276.276 0 0 1-.406 0A2.75 2.75 0 0 0 11 5.75c0 1.2.802 2.248 1.5 2.946L16 11.95"}],["path",{d:"m2 15 6 6"}],["path",{d:"m7 20 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a1 1 0 0 0-2.75-2.91"}]];var I6=[["path",{d:"M18 11.5V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 10V8a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 9.9V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v5"}],["path",{d:"M6 14a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-4a8 8 0 0 1-8-8 2 2 0 1 1 4 0"}]];var z6=[["path",{d:"M11 12h2a2 2 0 1 0 0-4h-3c-.6 0-1.1.2-1.4.6L3 14"}],["path",{d:"m7 18 1.6-1.4c.3-.4.8-.6 1.4-.6h4c1.1 0 2.1-.4 2.8-1.2l4.6-4.4a2 2 0 0 0-2.75-2.91l-4.2 3.9"}],["path",{d:"m2 13 6 6"}]];var wH=[["path",{d:"M18 12.5V10a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1.4"}],["path",{d:"M14 11V9a2 2 0 1 0-4 0v2"}],["path",{d:"M10 10.5V5a2 2 0 1 0-4 0v9"}],["path",{d:"m7 15-1.76-1.76a2 2 0 0 0-2.83 2.82l3.6 3.6C7.5 21.14 9.2 22 12 22h2a8 8 0 0 0 8-8V7a2 2 0 1 0-4 0v5"}]];var UH=[["path",{d:"M12 3V2"}],["path",{d:"m15.4 17.4 3.2-2.8a2 2 0 1 1 2.8 2.9l-3.6 3.3c-.7.8-1.7 1.2-2.8 1.2h-4c-1.1 0-2.1-.4-2.8-1.2l-1.302-1.464A1 1 0 0 0 6.151 19H5"}],["path",{d:"M2 14h12a2 2 0 0 1 0 4h-2"}],["path",{d:"M4 10h16"}],["path",{d:"M5 10a7 7 0 0 1 14 0"}],["path",{d:"M5 14v6a1 1 0 0 1-1 1H2"}]];var MH=[["path",{d:"M18 11V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v2"}],["path",{d:"M10 10.5V6a2 2 0 0 0-2-2a2 2 0 0 0-2 2v8"}],["path",{d:"M18 8a2 2 0 1 1 4 0v6a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var RH=[["path",{d:"M2.048 18.566A2 2 0 0 0 4 21h16a2 2 0 0 0 1.952-2.434l-2-9A2 2 0 0 0 18 8H6a2 2 0 0 0-1.952 1.566z"}],["path",{d:"M8 11V6a4 4 0 0 1 8 0v5"}]];var jH=[["path",{d:"m11 17 2 2a1 1 0 1 0 3-3"}],["path",{d:"m14 14 2.5 2.5a1 1 0 1 0 3-3l-3.88-3.88a3 3 0 0 0-4.24 0l-.88.88a1 1 0 1 1-3-3l2.81-2.81a5.79 5.79 0 0 1 7.06-.87l.47.28a2 2 0 0 0 1.42.25L21 4"}],["path",{d:"m21 3 1 11h-2"}],["path",{d:"M3 3 2 14l6.5 6.5a1 1 0 1 0 3-3"}],["path",{d:"M3 4h8"}]];var LH=[["path",{d:"M12 2v8"}],["path",{d:"m16 6-4 4-4-4"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var yH=[["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M12 2v8"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6 18h.01"}],["path",{d:"M10 18h.01"}]];var fH=[["line",{x1:"22",x2:"2",y1:"12",y2:"12"}],["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"}],["line",{x1:"6",x2:"6.01",y1:"16",y2:"16"}],["line",{x1:"10",x2:"10.01",y1:"16",y2:"16"}]];var kH=[["path",{d:"M10 10V5a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v5"}],["path",{d:"M14 6a6 6 0 0 1 6 6v3"}],["path",{d:"M4 15v-3a6 6 0 0 1 6-6"}],["rect",{x:"2",y:"15",width:"20",height:"4",rx:"1"}]];var bH=[["line",{x1:"4",x2:"20",y1:"9",y2:"9"}],["line",{x1:"4",x2:"20",y1:"15",y2:"15"}],["line",{x1:"10",x2:"8",y1:"3",y2:"21"}],["line",{x1:"16",x2:"14",y1:"3",y2:"21"}]];var hH=[["path",{d:"M14 18a2 2 0 0 0-4 0"}],["path",{d:"m19 11-2.11-6.657a2 2 0 0 0-2.752-1.148l-1.276.61A2 2 0 0 1 12 4H8.5a2 2 0 0 0-1.925 1.456L5 11"}],["path",{d:"M2 11h20"}],["circle",{cx:"17",cy:"18",r:"3"}],["circle",{cx:"7",cy:"18",r:"3"}]];var vH=[["path",{d:"m5.2 6.2 1.4 1.4"}],["path",{d:"M2 13h2"}],["path",{d:"M20 13h2"}],["path",{d:"m17.4 7.6 1.4-1.4"}],["path",{d:"M22 17H2"}],["path",{d:"M22 21H2"}],["path",{d:"M16 13a4 4 0 0 0-8 0"}],["path",{d:"M12 5V2.5"}]];var $H=[["path",{d:"M22 9a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v4a1 1 0 0 0 1 1h1l2 2h12l2-2h1a1 1 0 0 0 1-1Z"}],["path",{d:"M7.5 12h9"}]];var gH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"m17 12 3-2v8"}]];var _H=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M21 18h-4c0-4 4-3 4-6 0-1.5-2-2.5-4-1"}]];var mH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17.5 10.5c1.7-1 3.5 0 3.5 1.5a2 2 0 0 1-2 2"}],["path",{d:"M17 17.5c2 1.5 4 .3 4-1.5a2 2 0 0 0-2-2"}]];var uH=[["path",{d:"M12 18V6"}],["path",{d:"M17 10v3a1 1 0 0 0 1 1h3"}],["path",{d:"M21 10v8"}],["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}]];var dH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["path",{d:"M17 13v-3h4"}],["path",{d:"M17 17.7c.4.2.8.3 1.3.3 1.5 0 2.7-1.1 2.7-2.5S19.8 13 18.3 13H17"}]];var cH=[["path",{d:"M4 12h8"}],["path",{d:"M4 18V6"}],["path",{d:"M12 18V6"}],["circle",{cx:"19",cy:"16",r:"2"}],["path",{d:"M20 10c-2 2-3 3.5-3 6"}]];var pH=[["path",{d:"M6 12h12"}],["path",{d:"M6 20V4"}],["path",{d:"M18 20V4"}]];var nH=[["path",{d:"M21 14h-1.343"}],["path",{d:"M9.128 3.47A9 9 0 0 1 21 12v3.343"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.414 20.414A2 2 0 0 1 19 21h-1a2 2 0 0 1-2-2v-3"}],["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 2.636-6.364"}]];var iH=[["path",{d:"M3 14h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-7a9 9 0 0 1 18 0v7a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3"}]];var lH=[["path",{d:"M3 11h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-5Zm0 0a9 9 0 1 1 18 0m0 0v5a2 2 0 0 1-2 2h-1a2 2 0 0 1-2-2v-3a2 2 0 0 1 2-2h3Z"}],["path",{d:"M21 16v2a4 4 0 0 1-4 4h-5"}]];var sH=[["path",{d:"M12.409 5.824c-.702.792-1.15 1.496-1.415 2.166l2.153 2.156a.5.5 0 0 1 0 .707l-2.293 2.293a.5.5 0 0 0 0 .707L12 15"}],["path",{d:"M13.508 20.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.677.6.6 0 0 0 .818.001A5.5 5.5 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5z"}]];var rH=[["path",{d:"M19.414 14.414C21 12.828 22 11.5 22 9.5a5.5 5.5 0 0 0-9.591-3.676.6.6 0 0 1-.818.001A5.5 5.5 0 0 0 2 9.5c0 2.3 1.5 4 3 5.5l5.535 5.362a2 2 0 0 0 2.879.052 2.12 2.12 0 0 0-.004-3 2.124 2.124 0 1 0 3-3 2.124 2.124 0 0 0 3.004 0 2 2 0 0 0 0-2.828l-1.881-1.882a2.41 2.41 0 0 0-3.409 0l-1.71 1.71a2 2 0 0 1-2.828 0 2 2 0 0 1 0-2.828l2.823-2.762"}]];var aH=[["path",{d:"m14.876 18.99-1.368 1.323a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.244 1.572"}],["path",{d:"M15 15h6"}]];var tH=[["path",{d:"M10.5 4.893a5.5 5.5 0 0 1 1.091.931.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 1.872-1.002 3.356-2.187 4.655"}],["path",{d:"m16.967 16.967-3.459 3.346a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 2.747-4.761"}],["path",{d:"m2 2 20 20"}]];var oH=[["path",{d:"m14.479 19.374-.971.939a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5a5.2 5.2 0 0 1-.219 1.49"}],["path",{d:"M15 15h6"}],["path",{d:"M18 12v6"}]];var eH=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}],["path",{d:"M3.22 13H9.5l.5-1 2 4.5 2-7 1.5 3.5h5.27"}]];var ZD=[["path",{d:"M2 9.5a5.5 5.5 0 0 1 9.591-3.676.56.56 0 0 0 .818 0A5.49 5.49 0 0 1 22 9.5c0 2.29-1.5 4-3 5.5l-5.492 5.313a2 2 0 0 1-3 .019L5 15c-1.5-1.5-3-3.2-3-5.5"}]];var JD=[["path",{d:"M11 8c2-3-2-3 0-6"}],["path",{d:"M15.5 8c2-3-2-3 0-6"}],["path",{d:"M6 10h.01"}],["path",{d:"M6 14h.01"}],["path",{d:"M10 16v-4"}],["path",{d:"M14 16v-4"}],["path",{d:"M18 16v-4"}],["path",{d:"M20 6a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h3"}],["path",{d:"M5 20v2"}],["path",{d:"M19 20v2"}]];var KD=[["path",{d:"m9 11-6 6v3h9l3-3"}],["path",{d:"m22 12-4.6 4.6a2 2 0 0 1-2.8 0l-5.2-5.2a2 2 0 0 1 0-2.8L14 4"}]];var YD=[["path",{d:"M21 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.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"}]];var XD=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M12 7v5l4 2"}]];var WD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.28.01.53-.09.7-.27"}],["path",{d:"M11.14 20.57c.52.24 2.44 1.12 4.08 1.37.46.06.86-.25.9-.71.12-1.52-.3-3.43-.5-4.28"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .7-.26"}],["path",{d:"M17.99 5.52a20.83 20.83 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-1.17.1-2.5.02-3.9-.25"}],["path",{d:"M20.57 11.14c.24.52 1.12 2.44 1.37 4.08.04.3-.08.59-.31.75"}],["path",{d:"M4.93 4.93a10 10 0 0 0-.67 13.4c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.85.85 0 0 0 .48-.24"}],["path",{d:"M5.52 17.99c1.05.95 2.91 2.42 4.5 3.15a.8.8 0 0 0 1.13-.68c.2-2.34-.33-5.3-1.57-8.28"}],["path",{d:"M8.35 2.68a10 10 0 0 1 9.98 1.58c.43.35.4.96-.12 1.17-1.5.6-4.3.98-6.07 1.05"}],["path",{d:"m2 2 20 20"}]];var QD=[["path",{d:"M10.82 16.12c1.69.6 3.91.79 5.18.85.55.03 1-.42.97-.97-.06-1.27-.26-3.5-.85-5.18"}],["path",{d:"M11.5 6.5c1.64 0 5-.38 6.71-1.07.52-.2.55-.82.12-1.17A10 10 0 0 0 4.26 18.33c.35.43.96.4 1.17-.12.69-1.71 1.07-5.07 1.07-6.71 1.34.45 3.1.9 4.88.62a.88.88 0 0 0 .73-.74c.3-2.14-.15-3.5-.61-4.88"}],["path",{d:"M15.62 16.95c.2.85.62 2.76.5 4.28a.77.77 0 0 1-.9.7 16.64 16.64 0 0 1-4.08-1.36"}],["path",{d:"M16.13 21.05c1.65.63 3.68.84 4.87.91a.9.9 0 0 0 .96-.96 17.68 17.68 0 0 0-.9-4.87"}],["path",{d:"M16.94 15.62c.86.2 2.77.62 4.29.5a.77.77 0 0 0 .7-.9 16.64 16.64 0 0 0-1.36-4.08"}],["path",{d:"M17.99 5.52a20.82 20.82 0 0 1 3.15 4.5.8.8 0 0 1-.68 1.13c-2.33.2-5.3-.32-8.27-1.57"}],["path",{d:"M4.93 4.93 3 3a.7.7 0 0 1 0-1"}],["path",{d:"M9.58 12.18c1.24 2.98 1.77 5.95 1.57 8.28a.8.8 0 0 1-1.13.68 20.82 20.82 0 0 1-4.5-3.15"}]];var VD=[["path",{d:"M12 7v4"}],["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M14 9h-4"}],["path",{d:"M18 11h2a2 2 0 0 1 2 2v6a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-9a2 2 0 0 1 2-2h2"}],["path",{d:"M18 21V5a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16"}]];var GD=[["path",{d:"M10 22v-6.57"}],["path",{d:"M12 11h.01"}],["path",{d:"M12 7h.01"}],["path",{d:"M14 15.43V22"}],["path",{d:"M15 16a5 5 0 0 0-6 0"}],["path",{d:"M16 11h.01"}],["path",{d:"M16 7h.01"}],["path",{d:"M8 11h.01"}],["path",{d:"M8 7h.01"}],["rect",{x:"4",y:"2",width:"16",height:"20",rx:"2"}]];var ID=[["path",{d:"M5 22h14"}],["path",{d:"M5 2h14"}],["path",{d:"M17 22v-4.172a2 2 0 0 0-.586-1.414L12 12l-4.414 4.414A2 2 0 0 0 7 17.828V22"}],["path",{d:"M7 2v4.172a2 2 0 0 0 .586 1.414L12 12l4.414-4.414A2 2 0 0 0 17 6.172V2"}]];var zD=[["path",{d:"M10 12V8.964"}],["path",{d:"M14 12V8.964"}],["path",{d:"M15 12a1 1 0 0 1 1 1v2a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-2a1 1 0 0 1 1-1z"}],["path",{d:"M8.5 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2h-5a2 2 0 0 1-2-2v-2"}]];var ND=[["path",{d:"M8.62 13.8A2.25 2.25 0 1 1 12 10.836a2.25 2.25 0 1 1 3.38 2.966l-2.626 2.856a.998.998 0 0 1-1.507 0z"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var FD=[["path",{d:"M9.5 13.866a4 4 0 0 1 5 .01"}],["path",{d:"M12 17h.01"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}],["path",{d:"M7 10.754a8 8 0 0 1 10 0"}]];var HD=[["path",{d:"M12.35 21H5a2 2 0 0 1-2-2v-9a2 2 0 0 1 .71-1.53l7-6a2 2 0 0 1 2.58 0l7 6A2 2 0 0 1 21 10v2.35"}],["path",{d:"M14.8 12.4A1 1 0 0 0 14 12h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M15 18h6"}],["path",{d:"M18 15v6"}]];var N6=[["path",{d:"M15 21v-8a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v8"}],["path",{d:"M3 10a2 2 0 0 1 .709-1.528l7-6a2 2 0 0 1 2.582 0l7 6A2 2 0 0 1 21 10v9a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z"}]];var F6=[["path",{d:"M12 17c5 0 8-2.69 8-6H4c0 3.31 3 6 8 6m-4 4h8m-4-3v3M5.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M12.14 11a3.5 3.5 0 1 1 6.71 0"}],["path",{d:"M15.5 6.5a3.5 3.5 0 1 0-7 0"}]];var H6=[["path",{d:"m7 11 4.08 10.35a1 1 0 0 0 1.84 0L17 11"}],["path",{d:"M17 7A5 5 0 0 0 7 7"}],["path",{d:"M17 7a2 2 0 0 1 0 4H7a2 2 0 0 1 0-4"}]];var DD=[["path",{d:"M16 10h2"}],["path",{d:"M16 14h2"}],["path",{d:"M6.17 15a3 3 0 0 1 5.66 0"}],["circle",{cx:"9",cy:"11",r:"2"}],["rect",{x:"2",y:"5",width:"20",height:"14",rx:"2"}]];var BD=[["path",{d:"M13.5 8h-3"}],["path",{d:"m15 2-1 2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3"}],["path",{d:"M16.899 22A5 5 0 0 0 7.1 22"}],["path",{d:"m9 2 3 6"}],["circle",{cx:"12",cy:"15",r:"3"}]];var OD=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19 3 3v-5.5"}],["path",{d:"m17 22 3-3"}],["circle",{cx:"9",cy:"9",r:"2"}]];var TD=[["path",{d:"M21 9v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["line",{x1:"16",x2:"22",y1:"5",y2:"5"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var PD=[["line",{x1:"2",x2:"22",y1:"2",y2:"22"}],["path",{d:"M10.41 10.41a2 2 0 1 1-2.83-2.83"}],["line",{x1:"13.5",x2:"6",y1:"13.5",y2:"21"}],["line",{x1:"18",x2:"21",y1:"12",y2:"15"}],["path",{d:"M3.59 3.59A1.99 1.99 0 0 0 3 5v14a2 2 0 0 0 2 2h14c.55 0 1.052-.22 1.41-.59"}],["path",{d:"M21 15V5a2 2 0 0 0-2-2H9"}]];var SD=[["path",{d:"M15 15.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}],["path",{d:"M21 12.17V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m6 21 5-5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var AD=[["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}],["path",{d:"M21 11.5V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7.5"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}],["circle",{cx:"9",cy:"9",r:"2"}]];var qD=[["path",{d:"M10.3 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v10l-3.1-3.1a2 2 0 0 0-2.814.014L6 21"}],["path",{d:"m14 19.5 3-3 3 3"}],["path",{d:"M17 22v-5.5"}],["circle",{cx:"9",cy:"9",r:"2"}]];var ED=[["path",{d:"M16 3h5v5"}],["path",{d:"M17 21h2a2 2 0 0 0 2-2"}],["path",{d:"M21 12v3"}],["path",{d:"m21 3-5 5"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2"}],["path",{d:"m5 21 4.144-4.144a1.21 1.21 0 0 1 1.712 0L13 19"}],["path",{d:"M9 3h3"}],["rect",{x:"3",y:"11",width:"10",height:"10",rx:"1"}]];var CD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["circle",{cx:"9",cy:"9",r:"2"}],["path",{d:"m21 15-3.086-3.086a2 2 0 0 0-2.828 0L6 21"}]];var xD=[["path",{d:"m22 11-1.296-1.296a2.4 2.4 0 0 0-3.408 0L11 16"}],["path",{d:"M4 8a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2"}],["circle",{cx:"13",cy:"7",r:"1",fill:"currentColor"}],["rect",{x:"8",y:"2",width:"14",height:"14",rx:"2"}]];var wD=[["path",{d:"M12 3v12"}],["path",{d:"m8 11 4 4 4-4"}],["path",{d:"M8 5H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-4"}]];var UD=[["polyline",{points:"22 12 16 12 14 15 10 15 8 12 2 12"}],["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"}]];var MD=[["path",{d:"M6 3h12"}],["path",{d:"M6 8h12"}],["path",{d:"m6 13 8.5 8"}],["path",{d:"M6 13h3"}],["path",{d:"M9 13c6.667 0 6.667-10 0-10"}]];var RD=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M12 16v-4"}],["path",{d:"M12 8h.01"}]];var jD=[["path",{d:"M6 16c5 0 7-8 12-8a4 4 0 0 1 0 8c-5 0-7-8-12-8a4 4 0 1 0 0 8"}]];var LD=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h.01"}],["path",{d:"M17 7h.01"}],["path",{d:"M7 17h.01"}],["path",{d:"M17 17h.01"}]];var yD=[["line",{x1:"19",x2:"10",y1:"4",y2:"4"}],["line",{x1:"14",x2:"5",y1:"20",y2:"20"}],["line",{x1:"15",x2:"9",y1:"4",y2:"20"}]];var fD=[["path",{d:"m16 14 4 4-4 4"}],["path",{d:"M20 10a8 8 0 1 0-8 8h8"}]];var kD=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"5",ry:"5"}],["path",{d:"M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"}],["line",{x1:"17.5",x2:"17.51",y1:"6.5",y2:"6.5"}]];var bD=[["path",{d:"M4 10a8 8 0 1 1 8 8H4"}],["path",{d:"m8 22-4-4 4-4"}]];var hD=[["path",{d:"M12 9.5V21m0-11.5L6 3m6 6.5L18 3"}],["path",{d:"M6 15h12"}],["path",{d:"M6 11h12"}]];var vD=[["path",{d:"M21 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-2Z"}],["path",{d:"M6 15v-2"}],["path",{d:"M12 15V9"}],["circle",{cx:"12",cy:"6",r:"3"}]];var $D=[["path",{d:"M5 3v14"}],["path",{d:"M12 3v8"}],["path",{d:"M19 3v18"}]];var gD=[["path",{d:"M18 17a1 1 0 0 0-1 1v1a2 2 0 1 0 2-2z"}],["path",{d:"M20.97 3.61a.45.45 0 0 0-.58-.58C10.2 6.6 6.6 10.2 3.03 20.39a.45.45 0 0 0 .58.58C13.8 17.4 17.4 13.8 20.97 3.61"}],["path",{d:"m6.707 6.707 10.586 10.586"}],["path",{d:"M7 5a2 2 0 1 0-2 2h1a1 1 0 0 0 1-1z"}]];var _D=[["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"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}]];var mD=[["path",{d:"M12.4 2.7a2.5 2.5 0 0 1 3.4 0l5.5 5.5a2.5 2.5 0 0 1 0 3.4l-3.7 3.7a2.5 2.5 0 0 1-3.4 0L8.7 9.8a2.5 2.5 0 0 1 0-3.4z"}],["path",{d:"m14 7 3 3"}],["path",{d:"m9.4 10.6-6.814 6.814A2 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-.814"}]];var uD=[["path",{d:"m15.5 7.5 2.3 2.3a1 1 0 0 0 1.4 0l2.1-2.1a1 1 0 0 0 0-1.4L19 4"}],["path",{d:"m21 2-9.6 9.6"}],["circle",{cx:"7.5",cy:"15.5",r:"5.5"}]];var dD=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M6 8h4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M2 12h20"}],["path",{d:"M6 12v4"}],["path",{d:"M10 12v4"}],["path",{d:"M14 12v4"}],["path",{d:"M18 12v4"}]];var cD=[["path",{d:"M 20 4 A2 2 0 0 1 22 6"}],["path",{d:"M 22 6 L 22 16.41"}],["path",{d:"M 7 16 L 16 16"}],["path",{d:"M 9.69 4 L 20 4"}],["path",{d:"M14 8h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M6 8h.01"}],["path",{d:"M8 12h.01"}]];var pD=[["path",{d:"M10 8h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M14 8h.01"}],["path",{d:"M16 12h.01"}],["path",{d:"M18 8h.01"}],["path",{d:"M6 8h.01"}],["path",{d:"M7 16h10"}],["path",{d:"M8 12h.01"}],["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}]];var nD=[["path",{d:"M12 2v5"}],["path",{d:"M14.829 15.998a3 3 0 1 1-5.658 0"}],["path",{d:"M20.92 14.606A1 1 0 0 1 20 16H4a1 1 0 0 1-.92-1.394l3-7A1 1 0 0 1 7 7h10a1 1 0 0 1 .92.606z"}]];var iD=[["path",{d:"M10.293 2.293a1 1 0 0 1 1.414 0l2.5 2.5 5.994 1.227a1 1 0 0 1 .506 1.687l-7 7a1 1 0 0 1-1.687-.506l-1.227-5.994-2.5-2.5a1 1 0 0 1 0-1.414z"}],["path",{d:"m14.207 4.793-3.414 3.414"}],["path",{d:"M3 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1z"}],["path",{d:"m9.086 6.5-4.793 4.793a1 1 0 0 0-.18 1.17L7 18"}]];var lD=[["path",{d:"M12 10v12"}],["path",{d:"M17.929 7.629A1 1 0 0 1 17 9H7a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 9 2h6a1 1 0 0 1 .928.629z"}],["path",{d:"M9 22h6"}]];var sD=[["path",{d:"M19.929 18.629A1 1 0 0 1 19 20H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 13h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 3a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1z"}],["path",{d:"M8 6h4a2 2 0 0 1 2 2v5"}]];var rD=[["path",{d:"M19.929 9.629A1 1 0 0 1 19 11H9a1 1 0 0 1-.928-1.371l2-5A1 1 0 0 1 11 4h6a1 1 0 0 1 .928.629z"}],["path",{d:"M6 15a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2H5a1 1 0 0 1-1-1v-4a1 1 0 0 1 1-1z"}],["path",{d:"M8 18h4a2 2 0 0 0 2-2v-5"}]];var aD=[["path",{d:"M12 12v6"}],["path",{d:"M4.077 10.615A1 1 0 0 0 5 12h14a1 1 0 0 0 .923-1.385l-3.077-7.384A2 2 0 0 0 15 2H9a2 2 0 0 0-1.846 1.23Z"}],["path",{d:"M8 20a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1z"}]];var tD=[["path",{d:"m12 8 6-3-6-3v10"}],["path",{d:"m8 11.99-5.5 3.14a1 1 0 0 0 0 1.74l8.5 4.86a2 2 0 0 0 2 0l8.5-4.86a1 1 0 0 0 0-1.74L16 12"}],["path",{d:"m6.49 12.85 11.02 6.3"}],["path",{d:"M17.51 12.85 6.5 19.15"}]];var oD=[["path",{d:"M10 18v-7"}],["path",{d:"M11.12 2.198a2 2 0 0 1 1.76.006l7.866 3.847c.476.233.31.949-.22.949H3.474c-.53 0-.695-.716-.22-.949z"}],["path",{d:"M14 18v-7"}],["path",{d:"M18 18v-7"}],["path",{d:"M3 22h18"}],["path",{d:"M6 18v-7"}]];var eD=[["path",{d:"m5 8 6 6"}],["path",{d:"m4 14 6-6 2-3"}],["path",{d:"M2 5h12"}],["path",{d:"M7 2h1"}],["path",{d:"m22 22-5-10-5 10"}],["path",{d:"M14 18h6"}]];var ZB=[["path",{d:"M2 20h20"}],["path",{d:"m9 10 2 2 4-4"}],["rect",{x:"3",y:"4",width:"18",height:"12",rx:"2"}]];var D6=[["rect",{width:"18",height:"12",x:"3",y:"4",rx:"2",ry:"2"}],["line",{x1:"2",x2:"22",y1:"20",y2:"20"}]];var JB=[["path",{d:"M18 5a2 2 0 0 1 2 2v8.526a2 2 0 0 0 .212.897l1.068 2.127a1 1 0 0 1-.9 1.45H3.62a1 1 0 0 1-.9-1.45l1.068-2.127A2 2 0 0 0 4 15.526V7a2 2 0 0 1 2-2z"}],["path",{d:"M20.054 15.987H3.946"}]];var KB=[["path",{d:"M7 22a5 5 0 0 1-2-4"}],["path",{d:"M7 16.93c.96.43 1.96.74 2.99.91"}],["path",{d:"M3.34 14A6.8 6.8 0 0 1 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8a7.19 7.19 0 0 1-.33 2"}],["path",{d:"M5 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"}],["path",{d:"M14.33 22h-.09a.35.35 0 0 1-.24-.32v-10a.34.34 0 0 1 .33-.34c.08 0 .15.03.21.08l7.34 6a.33.33 0 0 1-.21.59h-4.49l-2.57 3.85a.35.35 0 0 1-.28.14z"}]];var YB=[["path",{d:"M3.704 14.467A10 8 0 0 1 2 10a10 8 0 0 1 20 0 10 8 0 0 1-10 8 10 8 0 0 1-5.181-1.158"}],["path",{d:"M7 22a5 5 0 0 1-2-3.994"}],["circle",{cx:"5",cy:"16",r:"2"}]];var XB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M18 13a6 6 0 0 1-6 5 6 6 0 0 1-6-5h12Z"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var WB=[["path",{d:"M13 13.74a2 2 0 0 1-2 0L2.5 8.87a1 1 0 0 1 0-1.74L11 2.26a2 2 0 0 1 2 0l8.5 4.87a1 1 0 0 1 0 1.74z"}],["path",{d:"m20 14.285 1.5.845a1 1 0 0 1 0 1.74L13 21.74a2 2 0 0 1-2 0l-8.5-4.87a1 1 0 0 1 0-1.74l1.5-.845"}]];var B6=[["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"}],["path",{d:"M2 12a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 12"}],["path",{d:"M2 17a1 1 0 0 0 .58.91l8.6 3.91a2 2 0 0 0 1.65 0l8.58-3.9A1 1 0 0 0 22 17"}]];var QB=[["rect",{width:"7",height:"9",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"5",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"9",x:"14",y:"12",rx:"1"}],["rect",{width:"7",height:"5",x:"3",y:"16",rx:"1"}]];var VB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}]];var GB=[["rect",{width:"7",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["path",{d:"M14 4h7"}],["path",{d:"M14 9h7"}],["path",{d:"M14 15h7"}],["path",{d:"M14 20h7"}]];var IB=[["rect",{width:"7",height:"18",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var zB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"7",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"7",height:"7",x:"14",y:"14",rx:"1"}]];var NB=[["rect",{width:"18",height:"7",x:"3",y:"3",rx:"1"}],["rect",{width:"9",height:"7",x:"3",y:"14",rx:"1"}],["rect",{width:"5",height:"7",x:"16",y:"14",rx:"1"}]];var FB=[["path",{d:"M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19 2c1 2 2 4.18 2 8 0 5.5-4.78 10-10 10Z"}],["path",{d:"M2 21c0-3 1.85-5.36 5.08-6C9.5 14.52 12 13 13 12"}]];var HB=[["path",{d:"M2 22c1.25-.987 2.27-1.975 3.9-2.2a5.56 5.56 0 0 1 3.8 1.5 4 4 0 0 0 6.187-2.353 3.5 3.5 0 0 0 3.69-5.116A3.5 3.5 0 0 0 20.95 8 3.5 3.5 0 1 0 16 3.05a3.5 3.5 0 0 0-5.831 1.373 3.5 3.5 0 0 0-5.116 3.69 4 4 0 0 0-2.348 6.155C3.499 15.42 4.409 16.712 4.2 18.1 3.926 19.743 3.014 20.732 2 22"}],["path",{d:"M2 22 17 7"}]];var DB=[["path",{d:"M16 12h3a2 2 0 0 0 1.902-1.38l1.056-3.333A1 1 0 0 0 21 6H3a1 1 0 0 0-.958 1.287l1.056 3.334A2 2 0 0 0 5 12h3"}],["path",{d:"M18 6V3a1 1 0 0 0-1-1h-3"}],["rect",{width:"8",height:"12",x:"8",y:"10",rx:"1"}]];var BB=[["rect",{width:"8",height:"18",x:"3",y:"3",rx:"1"}],["path",{d:"M7 3v18"}],["path",{d:"M20.4 18.9c.2.5-.1 1.1-.6 1.3l-1.9.7c-.5.2-1.1-.1-1.3-.6L11.1 5.1c-.2-.5.1-1.1.6-1.3l1.9-.7c.5-.2 1.1.1 1.3.6Z"}]];var OB=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"m4.93 4.93 4.24 4.24"}],["path",{d:"m14.83 9.17 4.24-4.24"}],["path",{d:"m14.83 14.83 4.24 4.24"}],["path",{d:"m9.17 14.83-4.24 4.24"}],["circle",{cx:"12",cy:"12",r:"4"}]];var TB=[["path",{d:"m16 6 4 14"}],["path",{d:"M12 6v14"}],["path",{d:"M8 8v12"}],["path",{d:"M4 4v16"}]];var PB=[["path",{d:"M14 12h2v8"}],["path",{d:"M14 20h4"}],["path",{d:"M6 12h4"}],["path",{d:"M6 20h4"}],["path",{d:"M8 20V8a4 4 0 0 1 7.464-2"}]];var SB=[["path",{d:"M16.8 11.2c.8-.9 1.2-2 1.2-3.2a6 6 0 0 0-9.3-5"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6.3 6.3a4.67 4.67 0 0 0 1.2 5.2c.7.7 1.3 1.5 1.5 2.5"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var AB=[["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"}],["path",{d:"M9 18h6"}],["path",{d:"M10 22h4"}]];var qB=[["path",{d:"M7 3.5c5-2 7 2.5 3 4C1.5 10 2 15 5 16c5 2 9-10 14-7s.5 13.5-4 12c-5-2.5.5-11 6-2"}]];var EB=[["path",{d:"M9 17H7A5 5 0 0 1 7 7"}],["path",{d:"M15 7h2a5 5 0 0 1 4 8"}],["line",{x1:"8",x2:"12",y1:"12",y2:"12"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var CB=[["path",{d:"M9 17H7A5 5 0 0 1 7 7h2"}],["path",{d:"M15 7h2a5 5 0 1 1 0 10h-2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}]];var xB=[["path",{d:"M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"}],["path",{d:"M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"}]];var wB=[["path",{d:"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"}],["rect",{width:"4",height:"12",x:"2",y:"9"}],["circle",{cx:"4",cy:"4",r:"2"}]];var UB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"m15 18 2 2 4-4"}]];var MB=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["path",{d:"m3 7 2 2 4-4"}]];var RB=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 5 3 3 3-3"}],["path",{d:"m15 19 3-3 3 3"}]];var jB=[["path",{d:"M3 5h8"}],["path",{d:"M3 12h8"}],["path",{d:"M3 19h8"}],["path",{d:"m15 8 3-3 3 3"}],["path",{d:"m15 16 3 3 3-3"}]];var LB=[["path",{d:"M10 5h11"}],["path",{d:"M10 12h11"}],["path",{d:"M10 19h11"}],["path",{d:"m3 10 3-3-3-3"}],["path",{d:"m3 20 3-3-3-3"}]];var yB=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M9 19H3"}],["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M21 5v12a2 2 0 0 1-2 2h-6"}]];var fB=[["path",{d:"M2 5h20"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}]];var kB=[["path",{d:"M12 5H2"}],["path",{d:"M6 12h12"}],["path",{d:"M9 19h6"}],["path",{d:"M16 5h6"}],["path",{d:"M19 8V2"}]];var Q5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m7 8-4 4 4 4"}]];var V5=[["path",{d:"M21 5H11"}],["path",{d:"M21 12H11"}],["path",{d:"M21 19H11"}],["path",{d:"m3 8 4 4-4 4"}]];var bB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 12h-6"}]];var hB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M11 19H3"}],["path",{d:"M21 16V5"}],["circle",{cx:"18",cy:"16",r:"3"}]];var vB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M18 9v6"}],["path",{d:"M21 12h-6"}]];var $B=[["path",{d:"M21 5H3"}],["path",{d:"M7 12H3"}],["path",{d:"M7 19H3"}],["path",{d:"M12 18a5 5 0 0 0 9-3 4.5 4.5 0 0 0-4.5-4.5c-1.33 0-2.54.54-3.41 1.41L11 14"}],["path",{d:"M11 10v4h4"}]];var gB=[["path",{d:"M11 5h10"}],["path",{d:"M11 12h10"}],["path",{d:"M11 19h10"}],["path",{d:"M4 4h1v5"}],["path",{d:"M4 9h2"}],["path",{d:"M6.5 20H3.4c0-1 2.6-1.925 2.6-3.5a1.5 1.5 0 0 0-2.6-1.02"}]];var _B=[["path",{d:"M3 5h6"}],["path",{d:"M3 12h13"}],["path",{d:"M3 19h13"}],["path",{d:"m16 8-3-3 3-3"}],["path",{d:"M21 19V7a2 2 0 0 0-2-2h-6"}]];var mB=[["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"m3 17 2 2 4-4"}],["rect",{x:"3",y:"4",width:"6",height:"6",rx:"1"}]];var uB=[["path",{d:"M8 5h13"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}],["path",{d:"M3 10a2 2 0 0 0 2 2h3"}],["path",{d:"M3 5v12a2 2 0 0 0 2 2h3"}]];var dB=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["path",{d:"M15 12.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997a1 1 0 0 1-1.517-.86z"}]];var cB=[["path",{d:"M16 5H3"}],["path",{d:"M11 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"m15.5 9.5 5 5"}],["path",{d:"m20.5 9.5-5 5"}]];var pB=[["path",{d:"M3 5h.01"}],["path",{d:"M3 12h.01"}],["path",{d:"M3 19h.01"}],["path",{d:"M8 5h13"}],["path",{d:"M8 12h13"}],["path",{d:"M8 19h13"}]];var O6=[["path",{d:"M21 12a9 9 0 1 1-6.219-8.56"}]];var nB=[["path",{d:"M22 12a1 1 0 0 1-10 0 1 1 0 0 0-10 0"}],["path",{d:"M7 20.7a1 1 0 1 1 5-8.7 1 1 0 1 0 5-8.6"}],["path",{d:"M7 3.3a1 1 0 1 1 5 8.6 1 1 0 1 0 5 8.6"}],["circle",{cx:"12",cy:"12",r:"10"}]];var iB=[["path",{d:"M12 2v4"}],["path",{d:"m16.2 7.8 2.9-2.9"}],["path",{d:"M18 12h4"}],["path",{d:"m16.2 16.2 2.9 2.9"}],["path",{d:"M12 18v4"}],["path",{d:"m4.9 19.1 2.9-2.9"}],["path",{d:"M2 12h4"}],["path",{d:"m4.9 4.9 2.9 2.9"}]];var lB=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}],["circle",{cx:"12",cy:"12",r:"3"}]];var sB=[["path",{d:"M12 19v3"}],["path",{d:"M12 2v3"}],["path",{d:"M18.89 13.24a7 7 0 0 0-8.13-8.13"}],["path",{d:"M19 12h3"}],["path",{d:"M2 12h3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M7.05 7.05a7 7 0 0 0 9.9 9.9"}]];var rB=[["line",{x1:"2",x2:"5",y1:"12",y2:"12"}],["line",{x1:"19",x2:"22",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"2",y2:"5"}],["line",{x1:"12",x2:"12",y1:"19",y2:"22"}],["circle",{cx:"12",cy:"12",r:"7"}]];var T6=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{width:"18",height:"12",x:"3",y:"10",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 9.33-2.5"}]];var aB=[["circle",{cx:"12",cy:"16",r:"1"}],["rect",{x:"3",y:"10",width:"18",height:"12",rx:"2"}],["path",{d:"M7 10V7a5 5 0 0 1 10 0v3"}]];var P6=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 9.9-1"}]];var tB=[["rect",{width:"18",height:"11",x:"3",y:"11",rx:"2",ry:"2"}],["path",{d:"M7 11V7a5 5 0 0 1 10 0v4"}]];var oB=[["path",{d:"m10 17 5-5-5-5"}],["path",{d:"M15 12H3"}],["path",{d:"M15 3h4a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-4"}]];var eB=[["path",{d:"m16 17 5-5-5-5"}],["path",{d:"M21 12H9"}],["path",{d:"M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var ZO=[["path",{d:"M3 5h1"}],["path",{d:"M3 12h1"}],["path",{d:"M3 19h1"}],["path",{d:"M8 5h1"}],["path",{d:"M8 12h1"}],["path",{d:"M8 19h1"}],["path",{d:"M13 5h8"}],["path",{d:"M13 12h8"}],["path",{d:"M13 19h8"}]];var JO=[["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M11 11a2 2 0 0 0 4 0 4 4 0 0 0-8 0 6 6 0 0 0 12 0"}]];var KO=[["path",{d:"M6 20a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2"}],["path",{d:"M8 18V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v14"}],["path",{d:"M10 20h4"}],["circle",{cx:"16",cy:"20",r:"2"}],["circle",{cx:"8",cy:"20",r:"2"}]];var YO=[["path",{d:"m12 15 4 4"}],["path",{d:"M2.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.029-6.029a1 1 0 1 1 3 3l-6.029 6.029a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l6.365-6.367A1 1 0 0 0 8.716 4.282z"}],["path",{d:"m5 8 4 4"}]];var XO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m16 19 2 2 4-4"}]];var WO=[["path",{d:"M22 15V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M16 19h6"}]];var QO=[["path",{d:"M21.2 8.4c.5.38.8.97.8 1.6v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V10a2 2 0 0 1 .8-1.6l8-6a2 2 0 0 1 2.4 0l8 6Z"}],["path",{d:"m22 10-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 10"}]];var VO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h8"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M19 16v6"}],["path",{d:"M16 19h6"}]];var S6=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 15.28c.2-.4.5-.8.9-1a2.1 2.1 0 0 1 2.6.4c.3.4.5.8.5 1.3 0 1.3-2 2-2 2"}],["path",{d:"M20 22v.01"}]];var GO=[["path",{d:"M22 12.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h7.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M18 21a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.5-1.5"}]];var IO=[["path",{d:"M22 10.5V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h12.5"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"M20 14v4"}],["path",{d:"M20 22v.01"}]];var zO=[["path",{d:"M22 13V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v12c0 1.1.9 2 2 2h9"}],["path",{d:"m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7"}],["path",{d:"m17 17 4 4"}],["path",{d:"m21 17-4 4"}]];var NO=[["path",{d:"m22 7-8.991 5.727a2 2 0 0 1-2.009 0L2 7"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var FO=[["path",{d:"M22 17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V9.5C2 7 4 5 6.5 5H18c2.2 0 4 1.8 4 4v8Z"}],["polyline",{points:"15,9 18,9 18,11"}],["path",{d:"M6.5 5C9 5 11 7 11 9.5V17a2 2 0 0 1-2 2"}],["line",{x1:"6",x2:"7",y1:"10",y2:"10"}]];var HO=[["path",{d:"M17 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 1-1.732"}],["path",{d:"m22 5.5-6.419 4.179a2 2 0 0 1-2.162 0L7 5.5"}],["rect",{x:"7",y:"3",width:"15",height:"12",rx:"2"}]];var DO=[["path",{d:"m11 19-1.106-.552a2 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 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V14"}],["path",{d:"M15 5.764V14"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var BO=[["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"}],["path",{d:"m9 10 2 2 4-4"}]];var OO=[["path",{d:"M19.43 12.935c.357-.967.57-1.955.57-2.935a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32.197 32.197 0 0 0 .813-.728"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m16 18 2 2 4-4"}]];var TO=[["path",{d:"M15 22a1 1 0 0 1-1-1v-4a1 1 0 0 1 .445-.832l3-2a1 1 0 0 1 1.11 0l3 2A1 1 0 0 1 22 17v4a1 1 0 0 1-1 1z"}],["path",{d:"M18 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 .601.2"}],["path",{d:"M18 22v-3"}],["circle",{cx:"10",cy:"10",r:"3"}]];var PO=[["path",{d:"M18.977 14C19.6 12.701 20 11.343 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}]];var SO=[["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"}],["path",{d:"M9 10h6"}]];var AO=[["path",{d:"M12.75 7.09a3 3 0 0 1 2.16 2.16"}],["path",{d:"M17.072 17.072c-1.634 2.17-3.527 3.912-4.471 4.727a1 1 0 0 1-1.202 0C9.539 20.193 4 14.993 4 10a8 8 0 0 1 1.432-4.568"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.475 2.818A8 8 0 0 1 20 10c0 1.183-.31 2.377-.81 3.533"}],["path",{d:"M9.13 9.13a3 3 0 0 0 3.74 3.74"}]];var A6=[["path",{d:"M17.97 9.304A8 8 0 0 0 2 10c0 4.69 4.887 9.562 7.022 11.468"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"10",r:"3"}]];var qO=[["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"}],["path",{d:"M12 7v6"}],["path",{d:"M9 10h6"}]];var EO=[["path",{d:"M19.914 11.105A7.298 7.298 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 32 32 0 0 0 .824-.738"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M16 18h6"}],["path",{d:"M19 15v6"}]];var CO=[["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"}],["path",{d:"m14.5 7.5-5 5"}],["path",{d:"m9.5 7.5 5 5"}]];var xO=[["path",{d:"M19.752 11.901A7.78 7.78 0 0 0 20 10a8 8 0 0 0-16 0c0 4.993 5.539 10.193 7.399 11.799a1 1 0 0 0 1.202 0 19 19 0 0 0 .09-.077"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"m21.5 15.5-5 5"}],["path",{d:"m21.5 20.5-5-5"}]];var wO=[["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"}],["circle",{cx:"12",cy:"10",r:"3"}]];var UO=[["path",{d:"M18 8c0 3.613-3.869 7.429-5.393 8.795a1 1 0 0 1-1.214 0C9.87 15.429 6 11.613 6 8a6 6 0 0 1 12 0"}],["circle",{cx:"12",cy:"8",r:"2"}],["path",{d:"M8.714 14h-3.71a1 1 0 0 0-.948.683l-2.004 6A1 1 0 0 0 3 22h18a1 1 0 0 0 .948-1.316l-2-6a1 1 0 0 0-.949-.684h-3.712"}]];var MO=[["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"}],["path",{d:"M15 5.764v15"}],["path",{d:"M9 3.236v15"}]];var RO=[["path",{d:"m11 19-1.106-.552a2 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 0l4.212 2.106a2 2 0 0 0 1.788 0l3.659-1.83A1 1 0 0 1 21 4.619V12"}],["path",{d:"M15 5.764V12"}],["path",{d:"M18 15v6"}],["path",{d:"M21 18h-6"}],["path",{d:"M9 3.236v15"}]];var jO=[["path",{d:"m14 6 4 4"}],["path",{d:"M17 3h4v4"}],["path",{d:"m21 3-7.75 7.75"}],["circle",{cx:"9",cy:"15",r:"6"}]];var LO=[["path",{d:"M16 3h5v5"}],["path",{d:"m21 3-6.75 6.75"}],["circle",{cx:"10",cy:"14",r:"6"}]];var yO=[["path",{d:"M8 22h8"}],["path",{d:"M12 11v11"}],["path",{d:"m19 3-7 8-7-8Z"}]];var fO=[["path",{d:"M15 3h6v6"}],["path",{d:"m21 3-7 7"}],["path",{d:"m3 21 7-7"}],["path",{d:"M9 21H3v-6"}]];var kO=[["path",{d:"M8 3H5a2 2 0 0 0-2 2v3"}],["path",{d:"M21 8V5a2 2 0 0 0-2-2h-3"}],["path",{d:"M3 16v3a2 2 0 0 0 2 2h3"}],["path",{d:"M16 21h3a2 2 0 0 0 2-2v-3"}]];var bO=[["path",{d:"M7.21 15 2.66 7.14a2 2 0 0 1 .13-2.2L4.4 2.8A2 2 0 0 1 6 2h12a2 2 0 0 1 1.6.8l1.6 2.14a2 2 0 0 1 .14 2.2L16.79 15"}],["path",{d:"M11 12 5.12 2.2"}],["path",{d:"m13 12 5.88-9.8"}],["path",{d:"M8 7h8"}],["circle",{cx:"12",cy:"17",r:"5"}],["path",{d:"M12 18v-2h-.5"}]];var hO=[["path",{d:"M11.636 6A13 13 0 0 0 19.4 3.2 1 1 0 0 1 21 4v11.344"}],["path",{d:"M14.378 14.357A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h1"}],["path",{d:"m2 2 20 20"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 8v6"}]];var vO=[["path",{d:"M11 6a13 13 0 0 0 8.4-2.8A1 1 0 0 1 21 4v12a1 1 0 0 1-1.6.8A13 13 0 0 0 11 14H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}],["path",{d:"M6 14a12 12 0 0 0 2.4 7.2 2 2 0 0 0 3.2-2.4A8 8 0 0 1 10 14"}],["path",{d:"M8 6v8"}]];var $O=[["circle",{cx:"12",cy:"12",r:"10"}],["line",{x1:"8",x2:"16",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var gO=[["path",{d:"M6 19v-3"}],["path",{d:"M10 19v-3"}],["path",{d:"M14 19v-3"}],["path",{d:"M18 19v-3"}],["path",{d:"M8 11V9"}],["path",{d:"M16 11V9"}],["path",{d:"M12 11V9"}],["path",{d:"M2 15h20"}],["path",{d:"M2 7a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v1.1a2 2 0 0 0 0 3.837V17a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-5.1a2 2 0 0 0 0-3.837Z"}]];var _O=[["path",{d:"M4 5h16"}],["path",{d:"M4 12h16"}],["path",{d:"M4 19h16"}]];var mO=[["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M12 2v10.3a4 4 0 0 1-1.172 2.872L4 22"}],["path",{d:"m20 22-5-5"}]];var uO=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var dO=[["path",{d:"M10.1 2.182a10 10 0 0 1 3.8 0"}],["path",{d:"M13.9 21.818a10 10 0 0 1-3.8 0"}],["path",{d:"M17.609 3.72a10 10 0 0 1 2.69 2.7"}],["path",{d:"M2.182 13.9a10 10 0 0 1 0-3.8"}],["path",{d:"M20.28 17.61a10 10 0 0 1-2.7 2.69"}],["path",{d:"M21.818 10.1a10 10 0 0 1 0 3.8"}],["path",{d:"M3.721 6.391a10 10 0 0 1 2.7-2.69"}],["path",{d:"m6.163 21.117-2.906.85a1 1 0 0 1-1.236-1.169l.965-2.98"}]];var cO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 5.004 2.224 3 3 0 0 1-.832 2.083l-3.447 3.62a1 1 0 0 1-1.45-.001z"}]];var pO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var nO=[["path",{d:"m2 2 20 20"}],["path",{d:"M4.93 4.929a10 10 0 0 0-1.938 11.412 2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 0 0 11.302-1.989"}],["path",{d:"M8.35 2.69A10 10 0 0 1 21.3 15.65"}]];var iO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var q6=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var lO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m10 15-3-3 3-3"}],["path",{d:"M7 12h8a2 2 0 0 1 2 2v1"}]];var sO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var rO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var aO=[["path",{d:"M2.992 16.342a2 2 0 0 1 .094 1.167l-1.065 3.29a1 1 0 0 0 1.236 1.168l3.413-.998a2 2 0 0 1 1.099.092 10 10 0 1 0-4.777-4.719"}]];var tO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"m14 14 3-3-3-3"}]];var oO=[["path",{d:"M12 19h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M16 19h.01"}],["path",{d:"M16 3h.01"}],["path",{d:"M2 13h.01"}],["path",{d:"M2 17v4.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H8"}],["path",{d:"M2 5a2 2 0 0 1 2-2"}],["path",{d:"M2 9h.01"}],["path",{d:"M20 3a2 2 0 0 1 2 2"}],["path",{d:"M22 13h.01"}],["path",{d:"M22 17a2 2 0 0 1-2 2"}],["path",{d:"M22 9h.01"}],["path",{d:"M8 3h.01"}]];var eO=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M10 15h4"}],["path",{d:"M10 9h4"}],["path",{d:"M12 7v4"}]];var Z2=[["path",{d:"M12.7 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4.7"}],["circle",{cx:"19",cy:"6",r:"3"}]];var J2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7.5 9.5c0 .687.265 1.383.697 1.844l3.009 3.264a1.14 1.14 0 0 0 .407.314 1 1 0 0 0 .783-.004 1.14 1.14 0 0 0 .398-.31l3.008-3.264A2.77 2.77 0 0 0 16.5 9.5 2.5 2.5 0 0 0 12 8a2.5 2.5 0 0 0-4.5 1.5"}]];var K2=[["path",{d:"M22 8.5V5a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H10"}],["path",{d:"M20 15v-2a2 2 0 0 0-4 0v2"}],["rect",{x:"14",y:"15",width:"8",height:"5",rx:"1"}]];var Y2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 11h.01"}],["path",{d:"M16 11h.01"}],["path",{d:"M8 11h.01"}]];var X2=[["path",{d:"M19 19H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.7.7 0 0 1 2 21.286V5a2 2 0 0 1 1.184-1.826"}],["path",{d:"m2 2 20 20"}],["path",{d:"M8.656 3H20a2 2 0 0 1 2 2v11.344"}]];var W2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 8v6"}],["path",{d:"M9 11h6"}]];var Q2=[["path",{d:"M14 14a2 2 0 0 0 2-2V8h-2"}],["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M8 14a2 2 0 0 0 2-2V8H8"}]];var V2=[["path",{d:"M12 3H4a2 2 0 0 0-2 2v16.286a.71.71 0 0 0 1.212.502l2.202-2.202A2 2 0 0 1 6.828 19H20a2 2 0 0 0 2-2v-4"}],["path",{d:"M16 3h6v6"}],["path",{d:"m16 9 6-6"}]];var G2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m10 8-3 3 3 3"}],["path",{d:"M17 14v-1a2 2 0 0 0-2-2H7"}]];var I2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M7 11h10"}],["path",{d:"M7 15h6"}],["path",{d:"M7 7h8"}]];var z2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"M12 15h.01"}],["path",{d:"M12 7v4"}]];var N2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}],["path",{d:"m14.5 8.5-5 5"}],["path",{d:"m9.5 8.5 5 5"}]];var F2=[["path",{d:"M22 17a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 21.286V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2z"}]];var H2=[["path",{d:"M16 10a2 2 0 0 1-2 2H6.828a2 2 0 0 0-1.414.586l-2.202 2.202A.71.71 0 0 1 2 14.286V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z"}],["path",{d:"M20 9a2 2 0 0 1 2 2v10.286a.71.71 0 0 1-1.212.502l-2.202-2.202A2 2 0 0 0 17.172 19H10a2 2 0 0 1-2-2v-1"}]];var D2=[["path",{d:"M12 19v3"}],["path",{d:"M15 9.34V5a3 3 0 0 0-5.68-1.33"}],["path",{d:"M16.95 16.95A7 7 0 0 1 5 12v-2"}],["path",{d:"M18.89 13.23A7 7 0 0 0 19 12v-2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v3a3 3 0 0 0 5.12 2.12"}]];var E6=[["path",{d:"m11 7.601-5.994 8.19a1 1 0 0 0 .1 1.298l.817.818a1 1 0 0 0 1.314.087L15.09 12"}],["path",{d:"M16.5 21.174C15.5 20.5 14.372 20 13 20c-2.058 0-3.928 2.356-6 2-2.072-.356-2.775-3.369-1.5-4.5"}],["circle",{cx:"16",cy:"7",r:"5"}]];var B2=[["path",{d:"M12 19v3"}],["path",{d:"M19 10v2a7 7 0 0 1-14 0v-2"}],["rect",{x:"9",y:"2",width:"6",height:"13",rx:"3"}]];var O2=[["path",{d:"M18 12h2"}],["path",{d:"M18 16h2"}],["path",{d:"M18 20h2"}],["path",{d:"M18 4h2"}],["path",{d:"M18 8h2"}],["path",{d:"M4 12h2"}],["path",{d:"M4 16h2"}],["path",{d:"M4 20h2"}],["path",{d:"M4 4h2"}],["path",{d:"M4 8h2"}],["path",{d:"M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z"}]];var T2=[["path",{d:"M6 18h8"}],["path",{d:"M3 22h18"}],["path",{d:"M14 22a7 7 0 1 0 0-14h-1"}],["path",{d:"M9 14h2"}],["path",{d:"M9 12a2 2 0 0 1-2-2V6h6v4a2 2 0 0 1-2 2Z"}],["path",{d:"M12 6V3a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var P2=[["rect",{width:"20",height:"15",x:"2",y:"4",rx:"2"}],["rect",{width:"8",height:"7",x:"6",y:"8",rx:"1"}],["path",{d:"M18 8v7"}],["path",{d:"M6 19v2"}],["path",{d:"M18 19v2"}]];var S2=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M4 6a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h13a2 2 0 0 0 1.152-.365l3.424-2.317a1 1 0 0 0 0-1.635l-3.424-2.318A2 2 0 0 0 17 6z"}]];var A2=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v2.789a4 4 0 0 1-.672 2.219l-.656.984A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-9.789a4 4 0 0 0-.672-2.219l-.656-.984A4 4 0 0 1 15 4.788V2"}],["path",{d:"M7 15a6.472 6.472 0 0 1 5 0 6.47 6.47 0 0 0 5 0"}]];var q2=[["path",{d:"M8 2h8"}],["path",{d:"M9 2v1.343M15 2v2.789a4 4 0 0 0 .672 2.219l.656.984a4 4 0 0 1 .672 2.22v1.131M7.8 7.8l-.128.192A4 4 0 0 0 7 10.212V20a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2v-3"}],["path",{d:"M7 15a6.47 6.47 0 0 1 5 0 6.472 6.472 0 0 0 3.435.435"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var E2=[["path",{d:"m14 10 7-7"}],["path",{d:"M20 10h-6V4"}],["path",{d:"m3 21 7-7"}],["path",{d:"M4 14h6v6"}]];var C2=[["path",{d:"M8 3v3a2 2 0 0 1-2 2H3"}],["path",{d:"M21 8h-3a2 2 0 0 1-2-2V3"}],["path",{d:"M3 16h3a2 2 0 0 1 2 2v3"}],["path",{d:"M16 21v-3a2 2 0 0 1 2-2h3"}]];var x2=[["path",{d:"M5 12h14"}]];var w2=[["path",{d:"m9 10 2 2 4-4"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var U2=[["path",{d:"M11 13a3 3 0 1 1 2.83-4H14a2 2 0 0 1 0 4z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var M2=[["path",{d:"M12 17v4"}],["path",{d:"m14.305 7.53.923-.382"}],["path",{d:"m15.228 4.852-.923-.383"}],["path",{d:"m16.852 3.228-.383-.924"}],["path",{d:"m16.852 8.772-.383.923"}],["path",{d:"m19.148 3.228.383-.924"}],["path",{d:"m19.53 9.696-.382-.924"}],["path",{d:"m20.772 4.852.924-.383"}],["path",{d:"m20.772 7.148.924.383"}],["path",{d:"M22 13v2a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h7"}],["path",{d:"M8 21h8"}],["circle",{cx:"18",cy:"6",r:"3"}]];var R2=[["path",{d:"M12 17v4"}],["path",{d:"M22 12.307V15a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h8.693"}],["path",{d:"M8 21h8"}],["circle",{cx:"19",cy:"6",r:"3"}]];var j2=[["path",{d:"M12 13V7"}],["path",{d:"m15 10-3 3-3-3"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var L2=[["path",{d:"M17 17H4a2 2 0 0 1-2-2V5c0-1.5 1-2 1-2"}],["path",{d:"M22 15V5a2 2 0 0 0-2-2H9"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m2 2 20 20"}]];var y2=[["path",{d:"M10 13V7"}],["path",{d:"M14 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var f2=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var k2=[["path",{d:"M18 8V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8"}],["path",{d:"M10 19v-3.96 3.15"}],["path",{d:"M7 19h5"}],["rect",{width:"6",height:"10",x:"16",y:"12",rx:"2"}]];var b2=[["path",{d:"M5.5 20H8"}],["path",{d:"M17 9h.01"}],["rect",{width:"10",height:"16",x:"12",y:"4",rx:"2"}],["path",{d:"M8 6H4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h4"}],["circle",{cx:"17",cy:"15",r:"1"}]];var h2=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}],["rect",{x:"9",y:"7",width:"6",height:"6",rx:"1"}]];var v2=[["path",{d:"m9 10 3-3 3 3"}],["path",{d:"M12 13V7"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var $2=[["path",{d:"m14.5 12.5-5-5"}],["path",{d:"m9.5 12.5 5-5"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}]];var g2=[["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}],["line",{x1:"8",x2:"16",y1:"21",y2:"21"}],["line",{x1:"12",x2:"12",y1:"17",y2:"21"}]];var _2=[["path",{d:"M18 5h4"}],["path",{d:"M20 3v4"}],["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var m2=[["path",{d:"M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"}]];var u2=[["path",{d:"m18 14-1-3"}],["path",{d:"m3 9 6 2a2 2 0 0 1 2-2h2a2 2 0 0 1 1.99 1.81"}],["path",{d:"M8 17h3a1 1 0 0 0 1-1 6 6 0 0 1 6-6 1 1 0 0 0 1-1v-.75A5 5 0 0 0 17 5"}],["circle",{cx:"19",cy:"17",r:"3"}],["circle",{cx:"5",cy:"17",r:"3"}]];var d2=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}],["path",{d:"M4.14 15.08c2.62-1.57 5.24-1.43 7.86.42 2.74 1.94 5.49 2 8.23.19"}]];var c2=[["path",{d:"m8 3 4 8 5-5 5 15H2L8 3z"}]];var p2=[["path",{d:"M12 6v.343"}],["path",{d:"M18.218 18.218A7 7 0 0 1 5 15V9a7 7 0 0 1 .782-3.218"}],["path",{d:"M19 13.343V9A7 7 0 0 0 8.56 2.902"}],["path",{d:"M22 22 2 2"}]];var n2=[["path",{d:"M4.037 4.688a.495.495 0 0 1 .651-.651l16 6.5a.5.5 0 0 1-.063.947l-6.124 1.58a2 2 0 0 0-1.438 1.435l-1.579 6.126a.5.5 0 0 1-.947.063z"}]];var i2=[["path",{d:"M2.034 2.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.944L8.204 7.545a1 1 0 0 0-.66.66l-1.066 3.443a.5.5 0 0 1-.944.033z"}],["circle",{cx:"16",cy:"16",r:"6"}],["path",{d:"m11.8 11.8 8.4 8.4"}]];var l2=[["path",{d:"M14 4.1 12 6"}],["path",{d:"m5.1 8-2.9-.8"}],["path",{d:"m6 12-1.9 2"}],["path",{d:"M7.2 2.2 8 5.1"}],["path",{d:"M9.037 9.69a.498.498 0 0 1 .653-.653l11 4.5a.5.5 0 0 1-.074.949l-4.349 1.041a1 1 0 0 0-.74.739l-1.04 4.35a.5.5 0 0 1-.95.074z"}]];var s2=[["path",{d:"M12.586 12.586 19 19"}],["path",{d:"M3.688 3.037a.497.497 0 0 0-.651.651l6.5 15.999a.501.501 0 0 0 .947-.062l1.569-6.083a2 2 0 0 1 1.448-1.479l6.124-1.579a.5.5 0 0 0 .063-.947z"}]];var r2=[["rect",{x:"5",y:"2",width:"14",height:"20",rx:"7"}],["path",{d:"M12 6v4"}]];var C6=[["path",{d:"M5 3v16h16"}],["path",{d:"m5 19 6-6"}],["path",{d:"m2 6 3-3 3 3"}],["path",{d:"m18 16 3 3-3 3"}]];var a2=[["path",{d:"M19 13v6h-6"}],["path",{d:"M5 11V5h6"}],["path",{d:"m5 5 14 14"}]];var t2=[["path",{d:"M11 19H5v-6"}],["path",{d:"M13 5h6v6"}],["path",{d:"M19 5 5 19"}]];var o2=[["path",{d:"M11 19H5V13"}],["path",{d:"M19 5L5 19"}]];var e2=[["path",{d:"M19 13V19H13"}],["path",{d:"M5 5L19 19"}]];var ZT=[["path",{d:"M8 18L12 22L16 18"}],["path",{d:"M12 2V22"}]];var JT=[["path",{d:"m18 8 4 4-4 4"}],["path",{d:"M2 12h20"}],["path",{d:"m6 8-4 4 4 4"}]];var KT=[["path",{d:"M6 8L2 12L6 16"}],["path",{d:"M2 12H22"}]];var YT=[["path",{d:"M18 8L22 12L18 16"}],["path",{d:"M2 12H22"}]];var XT=[["path",{d:"M5 11V5H11"}],["path",{d:"M5 5L19 19"}]];var WT=[["path",{d:"M13 5H19V11"}],["path",{d:"M19 5L5 19"}]];var QT=[["path",{d:"M8 6L12 2L16 6"}],["path",{d:"M12 2V22"}]];var VT=[["path",{d:"M12 2v20"}],["path",{d:"m8 18 4 4 4-4"}],["path",{d:"m8 6 4-4 4 4"}]];var GT=[["path",{d:"M12 2v20"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m19 9 3 3-3 3"}],["path",{d:"M2 12h20"}],["path",{d:"m5 9-3 3 3 3"}],["path",{d:"m9 5 3-3 3 3"}]];var IT=[["circle",{cx:"8",cy:"18",r:"4"}],["path",{d:"M12 18V2l7 4"}]];var zT=[["circle",{cx:"12",cy:"18",r:"4"}],["path",{d:"M16 18V2"}]];var NT=[["path",{d:"M9 18V5l12-2v13"}],["path",{d:"m9 9 12-2"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var FT=[["path",{d:"M9 18V5l12-2v13"}],["circle",{cx:"6",cy:"18",r:"3"}],["circle",{cx:"18",cy:"16",r:"3"}]];var HT=[["path",{d:"M9.31 9.31 5 21l7-4 7 4-1.17-3.17"}],["path",{d:"M14.53 8.88 12 2l-1.17 3.17"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var DT=[["polygon",{points:"12 2 19 21 12 17 5 21 12 2"}]];var BT=[["path",{d:"M8.43 8.43 3 11l8 2 2 8 2.57-5.43"}],["path",{d:"M17.39 11.73 22 2l-9.73 4.61"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var OT=[["polygon",{points:"3 11 22 2 13 21 11 13 3 11"}]];var TT=[["rect",{x:"16",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"2",y:"16",width:"6",height:"6",rx:"1"}],["rect",{x:"9",y:"2",width:"6",height:"6",rx:"1"}],["path",{d:"M5 16v-3a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1v3"}],["path",{d:"M12 12V8"}]];var PT=[["path",{d:"M15 18h-5"}],["path",{d:"M18 14h-8"}],["path",{d:"M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-4 0v-9a2 2 0 0 1 2-2h2"}],["rect",{width:"8",height:"4",x:"10",y:"6",rx:"1"}]];var ST=[["path",{d:"M6 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M9.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M12.91 4.1a15.91 15.91 0 0 1 .01 15.8"}],["path",{d:"M16.37 2a20.16 20.16 0 0 1 0 20"}]];var AT=[["path",{d:"M12 2v10"}],["path",{d:"m8.5 4 7 4"}],["path",{d:"m8.5 8 7-4"}],["circle",{cx:"12",cy:"17",r:"5"}]];var qT=[["path",{d:"M13.4 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-7.4"}],["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["path",{d:"M21.378 5.626a1 1 0 1 0-3.004-3.004l-5.01 5.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}]];var ET=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M15 2v20"}],["path",{d:"M15 7h5"}],["path",{d:"M15 12h5"}],["path",{d:"M15 17h5"}]];var CT=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M9.5 8h5"}],["path",{d:"M9.5 12H16"}],["path",{d:"M9.5 16H14"}]];var xT=[["path",{d:"M2 6h4"}],["path",{d:"M2 10h4"}],["path",{d:"M2 14h4"}],["path",{d:"M2 18h4"}],["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M16 2v20"}]];var wT=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["path",{d:"M16 4h2a2 2 0 0 1 2 2v2"}],["path",{d:"M20 12v2"}],["path",{d:"M20 18v2a2 2 0 0 1-2 2h-1"}],["path",{d:"M13 22h-2"}],["path",{d:"M7 22H6a2 2 0 0 1-2-2v-2"}],["path",{d:"M4 14v-2"}],["path",{d:"M4 8V6a2 2 0 0 1 2-2h2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var UT=[["path",{d:"M8 2v4"}],["path",{d:"M12 2v4"}],["path",{d:"M16 2v4"}],["rect",{width:"16",height:"18",x:"4",y:"4",rx:"2"}],["path",{d:"M8 10h6"}],["path",{d:"M8 14h8"}],["path",{d:"M8 18h5"}]];var MT=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592a7.01 7.01 0 0 0 4.125-2.939"}],["path",{d:"M19 10v3.343"}],["path",{d:"M12 12c-1.349-.573-1.905-1.005-2.5-2-.546.902-1.048 1.353-2.5 2-1.018-.644-1.46-1.08-2-2-1.028.71-1.69.918-3 1 1.081-1.048 1.757-2.03 2-3 .194-.776.84-1.551 1.79-2.21m11.654 5.997c.887-.457 1.28-.891 1.556-1.787 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4-.74 0-1.461.068-2.15.192"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var RT=[["path",{d:"M12 4V2"}],["path",{d:"M5 10v4a7.004 7.004 0 0 0 5.277 6.787c.412.104.802.292 1.102.592L12 22l.621-.621c.3-.3.69-.488 1.102-.592A7.003 7.003 0 0 0 19 14v-4"}],["path",{d:"M12 4C8 4 4.5 6 4 8c-.243.97-.919 1.952-2 3 1.31-.082 1.972-.29 3-1 .54.92.982 1.356 2 2 1.452-.647 1.954-1.098 2.5-2 .595.995 1.151 1.427 2.5 2 1.31-.621 1.862-1.058 2.5-2 .629.977 1.162 1.423 2.5 2 1.209-.548 1.68-.967 2-2 1.032.916 1.683 1.157 3 1-1.297-1.036-1.758-2.03-2-3-.5-2-4-4-8-4Z"}]];var x6=[["path",{d:"M12 16h.01"}],["path",{d:"M12 8v4"}],["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"}]];var jT=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}],["path",{d:"M8 12h8"}]];var w6=[["path",{d:"M10 15V9"}],["path",{d:"M14 15V9"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}]];var U6=[["path",{d:"m15 9-6 6"}],["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}],["path",{d:"m9 9 6 6"}]];var LT=[["path",{d:"M2.586 16.726A2 2 0 0 1 2 15.312V8.688a2 2 0 0 1 .586-1.414l4.688-4.688A2 2 0 0 1 8.688 2h6.624a2 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-.586z"}]];var yT=[["path",{d:"M3 20h4.5a.5.5 0 0 0 .5-.5v-.282a.52.52 0 0 0-.247-.437 8 8 0 1 1 8.494-.001.52.52 0 0 0-.247.438v.282a.5.5 0 0 0 .5.5H21"}]];var fT=[["path",{d:"M3 3h6l6 18h6"}],["path",{d:"M14 3h7"}]];var kT=[["path",{d:"M20.341 6.484A10 10 0 0 1 10.266 21.85"}],["path",{d:"M3.659 17.516A10 10 0 0 1 13.74 2.152"}],["circle",{cx:"12",cy:"12",r:"3"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var bT=[["path",{d:"M12 12V4a1 1 0 0 1 1-1h6.297a1 1 0 0 1 .651 1.759l-4.696 4.025"}],["path",{d:"m12 21-7.414-7.414A2 2 0 0 1 4 12.172V6.415a1.002 1.002 0 0 1 1.707-.707L20 20.009"}],["path",{d:"m12.214 3.381 8.414 14.966a1 1 0 0 1-.167 1.199l-1.168 1.163a1 1 0 0 1-.706.291H6.351a1 1 0 0 1-.625-.219L3.25 18.8a1 1 0 0 1 .631-1.781l4.165.027"}]];var hT=[["path",{d:"M12 3v6"}],["path",{d:"M16.76 3a2 2 0 0 1 1.8 1.1l2.23 4.479a2 2 0 0 1 .21.891V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V9.472a2 2 0 0 1 .211-.894L5.45 4.1A2 2 0 0 1 7.24 3z"}],["path",{d:"M3.054 9.013h17.893"}]];var vT=[["path",{d:"m16 16 2 2 4-4"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var $T=[["path",{d:"M16 16h6"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var gT=[["path",{d:"M12 22v-9"}],["path",{d:"M15.17 2.21a1.67 1.67 0 0 1 1.63 0L21 4.57a1.93 1.93 0 0 1 0 3.36L8.82 14.79a1.655 1.655 0 0 1-1.64 0L3 12.43a1.93 1.93 0 0 1 0-3.36z"}],["path",{d:"M20 13v3.87a2.06 2.06 0 0 1-1.11 1.83l-6 3.08a1.93 1.93 0 0 1-1.78 0l-6-3.08A2.06 2.06 0 0 1 4 16.87V13"}],["path",{d:"M21 12.43a1.93 1.93 0 0 0 0-3.36L8.83 2.2a1.64 1.64 0 0 0-1.63 0L3 4.57a1.93 1.93 0 0 0 0 3.36l12.18 6.86a1.636 1.636 0 0 0 1.63 0z"}]];var _T=[["path",{d:"M16 16h6"}],["path",{d:"M19 13v6"}],["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}]];var mT=[["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["circle",{cx:"18.5",cy:"15.5",r:"2.5"}],["path",{d:"M20.27 17.27 22 19"}]];var uT=[["path",{d:"M21 10V8a2 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.73l7 4a2 2 0 0 0 2 0l2-1.14"}],["path",{d:"m7.5 4.27 9 5.15"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["line",{x1:"12",x2:"12",y1:"22",y2:"12"}],["path",{d:"m17 13 5 5m-5 0 5-5"}]];var dT=[["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"}],["path",{d:"M12 22V12"}],["polyline",{points:"3.29 7 12 12 20.71 7"}],["path",{d:"m7.5 4.27 9 5.15"}]];var cT=[["path",{d:"m19 11-8-8-8.6 8.6a2 2 0 0 0 0 2.8l5.2 5.2c.8.8 2 .8 2.8 0L19 11Z"}],["path",{d:"m5 2 5 5"}],["path",{d:"M2 13h15"}],["path",{d:"M22 20a2 2 0 1 1-4 0c0-1.6 1.7-2.4 2-4 .3 1.6 2 2.4 2 4Z"}]];var pT=[["rect",{width:"16",height:"6",x:"2",y:"2",rx:"2"}],["path",{d:"M10 16v-2a2 2 0 0 1 2-2h8a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}],["rect",{width:"4",height:"6",x:"8",y:"16",rx:"1"}]];var M6=[["path",{d:"M10 2v2"}],["path",{d:"M14 2v4"}],["path",{d:"M17 2a1 1 0 0 1 1 1v9H6V3a1 1 0 0 1 1-1z"}],["path",{d:"M6 12a1 1 0 0 0-1 1v1a2 2 0 0 0 2 2h2a1 1 0 0 1 1 1v2.9a2 2 0 1 0 4 0V17a1 1 0 0 1 1-1h2a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1"}]];var nT=[["path",{d:"m14.622 17.897-10.68-2.913"}],["path",{d:"M18.376 2.622a1 1 0 1 1 3.002 3.002L17.36 9.643a.5.5 0 0 0 0 .707l.944.944a2.41 2.41 0 0 1 0 3.408l-.944.944a.5.5 0 0 1-.707 0L8.354 7.348a.5.5 0 0 1 0-.707l.944-.944a2.41 2.41 0 0 1 3.408 0l.944.944a.5.5 0 0 0 .707 0z"}],["path",{d:"M9 8c-1.804 2.71-3.97 3.46-6.583 3.948a.507.507 0 0 0-.302.819l7.32 8.883a1 1 0 0 0 1.185.204C12.735 20.405 16 16.792 16 15"}]];var iT=[["path",{d:"M12 22a1 1 0 0 1 0-20 10 9 0 0 1 10 9 5 5 0 0 1-5 5h-2.25a1.75 1.75 0 0 0-1.4 2.8l.3.4a1.75 1.75 0 0 1-1.4 2.8z"}],["circle",{cx:"13.5",cy:"6.5",r:".5",fill:"currentColor"}],["circle",{cx:"17.5",cy:"10.5",r:".5",fill:"currentColor"}],["circle",{cx:"6.5",cy:"12.5",r:".5",fill:"currentColor"}],["circle",{cx:"8.5",cy:"7.5",r:".5",fill:"currentColor"}]];var lT=[["path",{d:"M11.25 17.25h1.5L12 18z"}],["path",{d:"m15 12 2 2"}],["path",{d:"M18 6.5a.5.5 0 0 0-.5-.5"}],["path",{d:"M20.69 9.67a4.5 4.5 0 1 0-7.04-5.5 8.35 8.35 0 0 0-3.3 0 4.5 4.5 0 1 0-7.04 5.5C2.49 11.2 2 12.88 2 14.5 2 19.47 6.48 22 12 22s10-2.53 10-7.5c0-1.62-.48-3.3-1.3-4.83"}],["path",{d:"M6 6.5a.495.495 0 0 1 .5-.5"}],["path",{d:"m9 12-2 2"}]];var sT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m15 8-3 3-3-3"}]];var R6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 15h1"}],["path",{d:"M19 15h2"}],["path",{d:"M3 15h2"}],["path",{d:"M9 15h1"}]];var rT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}],["path",{d:"m9 10 3-3 3 3"}]];var aT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h18"}]];var j6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m16 15-3-3 3-3"}]];var L6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 14v1"}],["path",{d:"M9 19v2"}],["path",{d:"M9 3v2"}],["path",{d:"M9 9v1"}]];var y6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"m14 9 3 3-3 3"}]];var tT=[["path",{d:"M15 10V9"}],["path",{d:"M15 15v-1"}],["path",{d:"M15 21v-2"}],["path",{d:"M15 5V3"}],["path",{d:"M9 10V9"}],["path",{d:"M9 15v-1"}],["path",{d:"M9 21v-2"}],["path",{d:"M9 5V3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var f6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}]];var oT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m8 9 3 3-3 3"}]];var eT=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}]];var ZP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 3v18"}],["path",{d:"m10 15-3-3 3-3"}]];var k6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M15 14v1"}],["path",{d:"M15 19v2"}],["path",{d:"M15 3v2"}],["path",{d:"M15 9v1"}]];var JP=[["path",{d:"M14 15h1"}],["path",{d:"M14 9h1"}],["path",{d:"M19 15h2"}],["path",{d:"M19 9h2"}],["path",{d:"M3 15h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 15h1"}],["path",{d:"M9 9h1"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var KP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m9 16 3-3 3 3"}]];var b6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M14 9h1"}],["path",{d:"M19 9h2"}],["path",{d:"M3 9h2"}],["path",{d:"M9 9h1"}]];var YP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"m15 14-3 3-3-3"}]];var XP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 3v18"}],["path",{d:"M9 15h12"}]];var WP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}]];var QP=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 15h12"}],["path",{d:"M15 3v18"}]];var h6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M9 21V9"}]];var VP=[["path",{d:"m16 6-8.414 8.586a2 2 0 0 0 2.829 2.829l8.414-8.586a4 4 0 1 0-5.657-5.657l-8.379 8.551a6 6 0 1 0 8.485 8.485l8.379-8.551"}]];var GP=[["path",{d:"M11 15h2"}],["path",{d:"M12 12v3"}],["path",{d:"M12 19v3"}],["path",{d:"M15.282 19a1 1 0 0 0 .948-.68l2.37-6.988a7 7 0 1 0-13.2 0l2.37 6.988a1 1 0 0 0 .948.68z"}],["path",{d:"M9 9a3 3 0 1 1 6 0"}]];var IP=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}]];var zP=[["path",{d:"M5.8 11.3 2 22l10.7-3.79"}],["path",{d:"M4 3h.01"}],["path",{d:"M22 8h.01"}],["path",{d:"M15 2h.01"}],["path",{d:"M22 20h.01"}],["path",{d:"m22 2-2.24.75a2.9 2.9 0 0 0-1.96 3.12c.1.86-.57 1.63-1.45 1.63h-.38c-.86 0-1.6.6-1.76 1.44L14 10"}],["path",{d:"m22 13-.82-.33c-.86-.34-1.82.2-1.98 1.11c-.11.7-.72 1.22-1.43 1.22H17"}],["path",{d:"m11 2 .33.82c.34.86-.2 1.82-1.11 1.98C9.52 4.9 9 5.52 9 6.23V7"}],["path",{d:"M11 13c1.93 1.93 2.83 4.17 2 5-.83.83-3.07-.07-5-2-1.93-1.93-2.83-4.17-2-5 .83-.83 3.07.07 5 2Z"}]];var NP=[["rect",{x:"14",y:"3",width:"5",height:"18",rx:"1"}],["rect",{x:"5",y:"3",width:"5",height:"18",rx:"1"}]];var FP=[["circle",{cx:"11",cy:"4",r:"2"}],["circle",{cx:"18",cy:"8",r:"2"}],["circle",{cx:"20",cy:"16",r:"2"}],["path",{d:"M9 10a5 5 0 0 1 5 5v3.5a3.5 3.5 0 0 1-6.84 1.045Q6.52 17.48 4.46 16.84A3.5 3.5 0 0 1 5.5 10Z"}]];var HP=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2"}],["path",{d:"M15 14h.01"}],["path",{d:"M9 6h6"}],["path",{d:"M9 10h6"}]];var v6=[["path",{d:"M13 21h8"}],["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"}]];var DP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m2 2 20 20"}]];var BP=[["path",{d:"M15.707 21.293a1 1 0 0 1-1.414 0l-1.586-1.586a1 1 0 0 1 0-1.414l5.586-5.586a1 1 0 0 1 1.414 0l1.586 1.586a1 1 0 0 1 0 1.414z"}],["path",{d:"m18 13-1.375-6.874a1 1 0 0 0-.746-.776L3.235 2.028a1 1 0 0 0-1.207 1.207L5.35 15.879a1 1 0 0 0 .776.746L13 18"}],["path",{d:"m2.3 2.3 7.286 7.286"}],["circle",{cx:"11",cy:"11",r:"2"}]];var $6=[["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"}]];var OP=[["path",{d:"M13 21h8"}],["path",{d:"m15 5 4 4"}],["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"}]];var TP=[["path",{d:"m10 10-6.157 6.162a2 2 0 0 0-.5.833l-1.322 4.36a.5.5 0 0 0 .622.624l4.358-1.323a2 2 0 0 0 .83-.5L14 13.982"}],["path",{d:"m12.829 7.172 4.359-4.346a1 1 0 1 1 3.986 3.986l-4.353 4.353"}],["path",{d:"m15 5 4 4"}],["path",{d:"m2 2 20 20"}]];var PP=[["path",{d:"M13 7 8.7 2.7a2.41 2.41 0 0 0-3.4 0L2.7 5.3a2.41 2.41 0 0 0 0 3.4L7 13"}],["path",{d:"m8 6 2-2"}],["path",{d:"m18 16 2-2"}],["path",{d:"m17 11 4.3 4.3c.94.94.94 2.46 0 3.4l-2.6 2.6c-.94.94-2.46.94-3.4 0L11 17"}],["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"}],["path",{d:"m15 5 4 4"}]];var SP=[["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"}],["path",{d:"m15 5 4 4"}]];var AP=[["path",{d:"M10.83 2.38a2 2 0 0 1 2.34 0l8 5.74a2 2 0 0 1 .73 2.25l-3.04 9.26a2 2 0 0 1-1.9 1.37H7.04a2 2 0 0 1-1.9-1.37L2.1 10.37a2 2 0 0 1 .73-2.25z"}]];var qP=[["line",{x1:"19",x2:"5",y1:"5",y2:"19"}],["circle",{cx:"6.5",cy:"6.5",r:"2.5"}],["circle",{cx:"17.5",cy:"17.5",r:"2.5"}]];var EP=[["circle",{cx:"12",cy:"5",r:"1"}],["path",{d:"m9 20 3-6 3 6"}],["path",{d:"m6 8 6 2 6-2"}],["path",{d:"M12 10v4"}]];var CP=[["path",{d:"M20 11H4"}],["path",{d:"M20 7H4"}],["path",{d:"M7 21V4a1 1 0 0 1 1-1h4a1 1 0 0 1 0 12H7"}]];var xP=[["path",{d:"M13 2a9 9 0 0 1 9 9"}],["path",{d:"M13 6a5 5 0 0 1 5 5"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var wP=[["path",{d:"M14 6h8"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var UP=[["path",{d:"M16 2v6h6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var MP=[["path",{d:"m16 2 6 6"}],["path",{d:"m22 2-6 6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var RP=[["path",{d:"M10.1 13.9a14 14 0 0 0 3.732 2.668 1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2 18 18 0 0 1-12.728-5.272"}],["path",{d:"M22 2 2 22"}],["path",{d:"M4.76 13.582A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 .244.473"}]];var jP=[["path",{d:"m16 8 6-6"}],["path",{d:"M22 8V2h-6"}],["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var LP=[["path",{d:"M13.832 16.568a1 1 0 0 0 1.213-.303l.355-.465A2 2 0 0 1 17 15h3a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2A18 18 0 0 1 2 4a2 2 0 0 1 2-2h3a2 2 0 0 1 2 2v3a2 2 0 0 1-.8 1.6l-.468.351a1 1 0 0 0-.292 1.233 14 14 0 0 0 6.392 6.384"}]];var yP=[["line",{x1:"9",x2:"9",y1:"4",y2:"20"}],["path",{d:"M4 7c0-1.7 1.3-3 3-3h13"}],["path",{d:"M18 20c-1.7 0-3-1.3-3-3V4"}]];var fP=[["path",{d:"M18.5 8c-1.4 0-2.6-.8-3.2-2A6.87 6.87 0 0 0 2 9v11a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-8.5C22 9.6 20.4 8 18.5 8"}],["path",{d:"M2 14h20"}],["path",{d:"M6 14v4"}],["path",{d:"M10 14v4"}],["path",{d:"M14 14v4"}],["path",{d:"M18 14v4"}]];var kP=[["path",{d:"m14 13-8.381 8.38a1 1 0 0 1-3.001-3L11 9.999"}],["path",{d:"M15.973 4.027A13 13 0 0 0 5.902 2.373c-1.398.342-1.092 2.158.277 2.601a19.9 19.9 0 0 1 5.822 3.024"}],["path",{d:"M16.001 11.999a19.9 19.9 0 0 1 3.024 5.824c.444 1.369 2.26 1.676 2.603.278A13 13 0 0 0 20 8.069"}],["path",{d:"M18.352 3.352a1.205 1.205 0 0 0-1.704 0l-5.296 5.296a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l5.296-5.296a1.205 1.205 0 0 0 0-1.704z"}]];var bP=[["path",{d:"M21 9V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10c0 1.1.9 2 2 2h4"}],["rect",{width:"10",height:"7",x:"12",y:"13",rx:"2"}]];var hP=[["path",{d:"M2 10h6V4"}],["path",{d:"m2 4 6 6"}],["path",{d:"M21 10V7a2 2 0 0 0-2-2h-7"}],["path",{d:"M3 14v2a2 2 0 0 0 2 2h3"}],["rect",{x:"12",y:"14",width:"10",height:"7",rx:"1"}]];var vP=[["path",{d:"M14 3v11"}],["path",{d:"M14 9h-3a3 3 0 0 1 0-6h9"}],["path",{d:"M18 3v11"}],["path",{d:"M22 18H2l4-4"}],["path",{d:"m6 22-4-4"}]];var $P=[["path",{d:"M11 17h3v2a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a3.16 3.16 0 0 0 2-2h1a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-1a5 5 0 0 0-2-4V3a4 4 0 0 0-3.2 1.6l-.3.4H11a6 6 0 0 0-6 6v1a5 5 0 0 0 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1z"}],["path",{d:"M16 10h.01"}],["path",{d:"M2 8v1a2 2 0 0 0 2 2h1"}]];var gP=[["path",{d:"M10 3v11"}],["path",{d:"M10 9H7a1 1 0 0 1 0-6h8"}],["path",{d:"M14 3v11"}],["path",{d:"m18 14 4 4H2"}],["path",{d:"m22 18-4 4"}]];var _P=[["path",{d:"M13 4v16"}],["path",{d:"M17 4v16"}],["path",{d:"M19 4H9.5a4.5 4.5 0 0 0 0 9H13"}]];var mP=[["path",{d:"M18 11h-4a1 1 0 0 0-1 1v5a1 1 0 0 0 1 1h4"}],["path",{d:"M6 7v13a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V7"}],["rect",{width:"16",height:"5",x:"4",y:"2",rx:"1"}]];var uP=[["path",{d:"m10.5 20.5 10-10a4.95 4.95 0 1 0-7-7l-10 10a4.95 4.95 0 1 0 7 7Z"}],["path",{d:"m8.5 8.5 7 7"}]];var dP=[["path",{d:"M12 17v5"}],["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"}]];var cP=[["path",{d:"m12 9-8.414 8.414A2 2 0 0 0 3 18.828v1.344a2 2 0 0 1-.586 1.414A2 2 0 0 1 3.828 21h1.344a2 2 0 0 0 1.414-.586L15 12"}],["path",{d:"m18 9 .4.4a1 1 0 1 1-3 3l-3.8-3.8a1 1 0 1 1 3-3l.4.4 3.4-3.4a1 1 0 1 1 3 3z"}],["path",{d:"m2 22 .414-.414"}]];var pP=[["path",{d:"M12 17v5"}],["path",{d:"M15 9.34V7a1 1 0 0 1 1-1 2 2 0 0 0 0-4H7.89"}],["path",{d:"m2 2 20 20"}],["path",{d:"M9 9v1.76a2 2 0 0 1-1.11 1.79l-1.78.9A2 2 0 0 0 5 15.24V16a1 1 0 0 0 1 1h11"}]];var nP=[["path",{d:"m12 14-1 1"}],["path",{d:"m13.75 18.25-1.25 1.42"}],["path",{d:"M17.775 5.654a15.68 15.68 0 0 0-12.121 12.12"}],["path",{d:"M18.8 9.3a1 1 0 0 0 2.1 7.7"}],["path",{d:"M21.964 20.732a1 1 0 0 1-1.232 1.232l-18-5a1 1 0 0 1-.695-1.232A19.68 19.68 0 0 1 15.732 2.037a1 1 0 0 1 1.232.695z"}]];var iP=[["path",{d:"M2 22h20"}],["path",{d:"M3.77 10.77 2 9l2-4.5 1.1.55c.55.28.9.84.9 1.45s.35 1.17.9 1.45L8 8.5l3-6 1.05.53a2 2 0 0 1 1.09 1.52l.72 5.4a2 2 0 0 0 1.09 1.52l4.4 2.2c.42.22.78.55 1.01.96l.6 1.03c.49.88-.06 1.98-1.06 2.1l-1.18.15c-.47.06-.95-.02-1.37-.24L4.29 11.15a2 2 0 0 1-.52-.38Z"}]];var lP=[["path",{d:"M2 22h20"}],["path",{d:"M6.36 17.4 4 17l-2-4 1.1-.55a2 2 0 0 1 1.8 0l.17.1a2 2 0 0 0 1.8 0L8 12 5 6l.9-.45a2 2 0 0 1 2.09.2l4.02 3a2 2 0 0 0 2.1.2l4.19-2.06a2.41 2.41 0 0 1 1.73-.17L21 7a1.4 1.4 0 0 1 .87 1.99l-.38.76c-.23.46-.6.84-1.07 1.08L7.58 17.2a2 2 0 0 1-1.22.18Z"}]];var sP=[["path",{d:"M17.8 19.2 16 11l3.5-3.5C21 6 21.5 4 21 3c-1-.5-3 0-4.5 1.5L13 8 4.8 6.2c-.5-.1-.9.1-1.1.5l-.3.5c-.2.5-.1 1 .3 1.3L9 12l-2 3H4l-1 1 3 2 2 3 1-1v-3l3-2 3.5 5.3c.3.4.8.5 1.3.3l.5-.2c.4-.3.6-.7.5-1.2z"}]];var rP=[["path",{d:"M5 5a2 2 0 0 1 3.008-1.728l11.997 6.998a2 2 0 0 1 .003 3.458l-12 7A2 2 0 0 1 5 19z"}]];var aP=[["path",{d:"M9 2v6"}],["path",{d:"M15 2v6"}],["path",{d:"M12 17v5"}],["path",{d:"M5 8h14"}],["path",{d:"M6 11V8h12v3a6 6 0 1 1-12 0Z"}]];var g6=[["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"m2 22 3-3"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m18 3-4 4h6l-4 4"}]];var tP=[["path",{d:"M12 22v-5"}],["path",{d:"M9 8V2"}],["path",{d:"M15 8V2"}],["path",{d:"M18 8v5a4 4 0 0 1-4 4h-4a4 4 0 0 1-4-4V8Z"}]];var oP=[["path",{d:"M5 12h14"}],["path",{d:"M12 5v14"}]];var eP=[["path",{d:"M3 2v1c0 1 2 1 2 2S3 6 3 7s2 1 2 2-2 1-2 2 2 1 2 2"}],["path",{d:"M18 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"M20.83 8.83a4 4 0 0 0-5.66-5.66l-12 12a4 4 0 1 0 5.66 5.66Z"}],["path",{d:"M18 11.66V22a4 4 0 0 0 4-4V6"}]];var ZS=[["path",{d:"M20 3a2 2 0 0 1 2 2v6a1 1 0 0 1-20 0V5a2 2 0 0 1 2-2z"}],["path",{d:"m8 10 4 4 4-4"}]];var JS=[["path",{d:"M13 17a1 1 0 1 0-2 0l.5 4.5a0.5 0.5 0 0 0 1 0z",fill:"currentColor"}],["path",{d:"M16.85 18.58a9 9 0 1 0-9.7 0"}],["path",{d:"M8 14a5 5 0 1 1 8 0"}],["circle",{cx:"12",cy:"11",r:"1",fill:"currentColor"}]];var KS=[["path",{d:"M10 4.5V4a2 2 0 0 0-2.41-1.957"}],["path",{d:"M13.9 8.4a2 2 0 0 0-1.26-1.295"}],["path",{d:"M21.7 16.2A8 8 0 0 0 22 14v-3a2 2 0 1 0-4 0v-1a2 2 0 0 0-3.63-1.158"}],["path",{d:"m7 15-1.8-1.8a2 2 0 0 0-2.79 2.86L6 19.7a7.74 7.74 0 0 0 6 2.3h2a8 8 0 0 0 5.657-2.343"}],["path",{d:"M6 6v8"}],["path",{d:"m2 2 20 20"}]];var YS=[["path",{d:"M22 14a8 8 0 0 1-8 8"}],["path",{d:"M18 11v-1a2 2 0 0 0-2-2a2 2 0 0 0-2 2"}],["path",{d:"M14 10V9a2 2 0 0 0-2-2a2 2 0 0 0-2 2v1"}],["path",{d:"M10 9.5V4a2 2 0 0 0-2-2a2 2 0 0 0-2 2v10"}],["path",{d:"M18 11a2 2 0 1 1 4 0v3a8 8 0 0 1-8 8h-2c-2.8 0-4.5-.86-5.99-2.34l-3.6-3.6a2 2 0 0 1 2.83-2.82L7 15"}]];var XS=[["path",{d:"M18 8a2 2 0 0 0 0-4 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0-4 0 2 2 0 0 0 0 4"}],["path",{d:"M10 22 9 8"}],["path",{d:"m14 22 1-14"}],["path",{d:"M20 8c.5 0 .9.4.8 1l-2.6 12c-.1.5-.7 1-1.2 1H7c-.6 0-1.1-.4-1.2-1L3.2 9c-.1-.6.3-1 .8-1Z"}]];var WS=[["path",{d:"M18.6 14.4c.8-.8.8-2 0-2.8l-8.1-8.1a4.95 4.95 0 1 0-7.1 7.1l8.1 8.1c.9.7 2.1.7 2.9-.1Z"}],["path",{d:"m22 22-5.5-5.5"}]];var QS=[["path",{d:"M18 7c0-5.333-8-5.333-8 0"}],["path",{d:"M10 7v14"}],["path",{d:"M6 21h12"}],["path",{d:"M6 13h10"}]];var VS=[["path",{d:"M18.36 6.64A9 9 0 0 1 20.77 15"}],["path",{d:"M6.16 6.16a9 9 0 1 0 12.68 12.68"}],["path",{d:"M12 2v4"}],["path",{d:"m2 2 20 20"}]];var GS=[["path",{d:"M12 2v10"}],["path",{d:"M18.4 6.6a9 9 0 1 1-12.77.04"}]];var IS=[["path",{d:"M2 3h20"}],["path",{d:"M21 3v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V3"}],["path",{d:"m7 21 5-5 5 5"}]];var zS=[["path",{d:"M13.5 22H7a1 1 0 0 1-1-1v-6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v.5"}],["path",{d:"m16 19 2 2 4-4"}],["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}]];var NS=[["path",{d:"M6 18H4a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 9V3a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v6"}],["rect",{x:"6",y:"14",width:"12",height:"8",rx:"1"}]];var FS=[["path",{d:"M5 7 3 5"}],["path",{d:"M9 6V3"}],["path",{d:"m13 7 2-2"}],["circle",{cx:"9",cy:"13",r:"3"}],["path",{d:"M11.83 12H20a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h2.17"}],["path",{d:"M16 16h2"}]];var HS=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M12 9v11"}],["path",{d:"M2 9h13a2 2 0 0 1 2 2v9"}]];var DS=[["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"}]];var BS=[["rect",{width:"5",height:"5",x:"3",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"16",y:"3",rx:"1"}],["rect",{width:"5",height:"5",x:"3",y:"16",rx:"1"}],["path",{d:"M21 16h-3a2 2 0 0 0-2 2v3"}],["path",{d:"M21 21v.01"}],["path",{d:"M12 7v3a2 2 0 0 1-2 2H7"}],["path",{d:"M3 12h.01"}],["path",{d:"M12 3h.01"}],["path",{d:"M12 16v.01"}],["path",{d:"M16 12h1"}],["path",{d:"M21 12v.01"}],["path",{d:"M12 21v-1"}]];var OS=[["path",{d:"M2.5 16.88a1 1 0 0 1-.32-1.43l9-13.02a1 1 0 0 1 1.64 0l9 13.01a1 1 0 0 1-.32 1.44l-8.51 4.86a2 2 0 0 1-1.98 0Z"}],["path",{d:"M12 2v20"}]];var TS=[["path",{d:"M16 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}],["path",{d:"M5 3a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2 1 1 0 0 1 1 1v1a2 2 0 0 1-2 2 1 1 0 0 0-1 1v2a1 1 0 0 0 1 1 6 6 0 0 0 6-6V5a2 2 0 0 0-2-2z"}]];var PS=[["path",{d:"M13 16a3 3 0 0 1 2.24 5"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 21h-8a4 4 0 0 1-4-4 7 7 0 0 1 7-7h.2L9.6 6.4a1 1 0 1 1 2.8-2.8L15.8 7h.2c3.3 0 6 2.7 6 6v1a2 2 0 0 1-2 2h-1a3 3 0 0 0-3 3"}],["path",{d:"M20 8.54V4a2 2 0 1 0-4 0v3"}],["path",{d:"M7.612 12.524a3 3 0 1 0-1.6 4.3"}]];var SS=[["path",{d:"M19.07 4.93A10 10 0 0 0 6.99 3.34"}],["path",{d:"M4 6h.01"}],["path",{d:"M2.29 9.62A10 10 0 1 0 21.31 8.35"}],["path",{d:"M16.24 7.76A6 6 0 1 0 8.23 16.67"}],["path",{d:"M12 18h.01"}],["path",{d:"M17.99 11.66A6 6 0 0 1 15.77 16.67"}],["circle",{cx:"12",cy:"12",r:"2"}],["path",{d:"m13.41 10.59 5.66-5.66"}]];var AS=[["path",{d:"M12 12h.01"}],["path",{d:"M14 15.4641a4 4 0 0 1-4 0L7.52786 19.74597 A 1 1 0 0 0 7.99303 21.16211 10 10 0 0 0 16.00697 21.16211 1 1 0 0 0 16.47214 19.74597z"}],["path",{d:"M16 12a4 4 0 0 0-2-3.464l2.472-4.282a1 1 0 0 1 1.46-.305 10 10 0 0 1 4.006 6.94A1 1 0 0 1 21 12z"}],["path",{d:"M8 12a4 4 0 0 1 2-3.464L7.528 4.254a1 1 0 0 0-1.46-.305 10 10 0 0 0-4.006 6.94A1 1 0 0 0 3 12z"}]];var qS=[["path",{d:"M3 12h3.28a1 1 0 0 1 .948.684l2.298 7.934a.5.5 0 0 0 .96-.044L13.82 4.771A1 1 0 0 1 14.792 4H21"}]];var ES=[["path",{d:"M5 16v2"}],["path",{d:"M19 16v2"}],["rect",{width:"20",height:"8",x:"2",y:"8",rx:"2"}],["path",{d:"M18 12h.01"}]];var CS=[["path",{d:"M4.9 16.1C1 12.2 1 5.8 4.9 1.9"}],["path",{d:"M7.8 4.7a6.14 6.14 0 0 0-.8 7.5"}],["circle",{cx:"12",cy:"9",r:"2"}],["path",{d:"M16.2 4.8c2 2 2.26 5.11.8 7.47"}],["path",{d:"M19.1 1.9a9.96 9.96 0 0 1 0 14.1"}],["path",{d:"M9.5 18h5"}],["path",{d:"m8 22 4-11 4 11"}]];var xS=[["path",{d:"M16.247 7.761a6 6 0 0 1 0 8.478"}],["path",{d:"M19.075 4.933a10 10 0 0 1 0 14.134"}],["path",{d:"M4.925 19.067a10 10 0 0 1 0-14.134"}],["path",{d:"M7.753 16.239a6 6 0 0 1 0-8.478"}],["circle",{cx:"12",cy:"12",r:"2"}]];var wS=[["path",{d:"M20.34 17.52a10 10 0 1 0-2.82 2.82"}],["circle",{cx:"19",cy:"19",r:"2"}],["path",{d:"m13.41 13.41 4.18 4.18"}],["circle",{cx:"12",cy:"12",r:"2"}]];var US=[["path",{d:"M5 15h14"}],["path",{d:"M5 9h14"}],["path",{d:"m14 20-5-5 6-6-5-5"}]];var MS=[["path",{d:"M13 22H4a2 2 0 0 1 0-4h12"}],["path",{d:"M13.236 18a3 3 0 0 0-2.2-5"}],["path",{d:"M16 9h.01"}],["path",{d:"M16.82 3.94a3 3 0 1 1 3.237 4.868l1.815 2.587a1.5 1.5 0 0 1-1.5 2.1l-2.872-.453a3 3 0 0 0-3.5 3"}],["path",{d:"M17 4.988a3 3 0 1 0-5.2 2.052A7 7 0 0 0 4 14.015 4 4 0 0 0 8 18"}]];var RS=[["path",{d:"M22 17a10 10 0 0 0-20 0"}],["path",{d:"M6 17a6 6 0 0 1 12 0"}],["path",{d:"M10 17a2 2 0 0 1 4 0"}]];var jS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}],["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var LS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M12 6.5v11"}],["path",{d:"M15 9.4a4 4 0 1 0 0 5.2"}]];var yS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 12h5"}],["path",{d:"M16 9.5a4 4 0 1 0 0 5.2"}]];var fS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 7h8"}],["path",{d:"M12 17.5 8 15h1a4 4 0 0 0 0-8"}],["path",{d:"M8 11h8"}]];var kS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"m12 10 3-3"}],["path",{d:"m9 7 3 3v7.5"}],["path",{d:"M9 11h6"}],["path",{d:"M9 15h6"}]];var bS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 13h5"}],["path",{d:"M10 17V9.5a2.5 2.5 0 0 1 5 0"}],["path",{d:"M8 17h7"}]];var hS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M8 15h5"}],["path",{d:"M8 11h5a2 2 0 1 0 0-4h-3v10"}]];var vS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M10 17V7h5"}],["path",{d:"M10 11h4"}],["path",{d:"M8 15h5"}]];var $S=[["path",{d:"M13 16H8"}],["path",{d:"M14 8H8"}],["path",{d:"M16 12H8"}],["path",{d:"M4 3a1 1 0 0 1 1-1 1.3 1.3 0 0 1 .7.2l.933.6a1.3 1.3 0 0 0 1.4 0l.934-.6a1.3 1.3 0 0 1 1.4 0l.933.6a1.3 1.3 0 0 0 1.4 0l.933-.6a1.3 1.3 0 0 1 1.4 0l.934.6a1.3 1.3 0 0 0 1.4 0l.933-.6A1.3 1.3 0 0 1 19 2a1 1 0 0 1 1 1v18a1 1 0 0 1-1 1 1.3 1.3 0 0 1-.7-.2l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.934.6a1.3 1.3 0 0 1-1.4 0l-.933-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-1.4 0l-.934-.6a1.3 1.3 0 0 0-1.4 0l-.933.6a1.3 1.3 0 0 1-.7.2 1 1 0 0 1-1-1z"}]];var gS=[["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1Z"}],["path",{d:"M16 8h-6a2 2 0 1 0 0 4h4a2 2 0 1 1 0 4H8"}],["path",{d:"M12 17.5v-11"}]];var _S=[["path",{d:"M10 6.5v11a5.5 5.5 0 0 0 5.5-5.5"}],["path",{d:"m14 8-6 3"}],["path",{d:"M4 2v20l2-1 2 1 2-1 2 1 2-1 2 1 2-1 2 1V2l-2 1-2-1-2 1-2-1-2 1-2-1-2 1z"}]];var mS=[["path",{d:"M14 4v16H3a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1z"}],["circle",{cx:"14",cy:"12",r:"8"}]];var _6=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}],["path",{d:"M12 12h.01"}],["path",{d:"M17 12h.01"}],["path",{d:"M7 12h.01"}]];var uS=[["path",{d:"M20 6a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-4a2 2 0 0 1-1.6-.8l-1.6-2.13a1 1 0 0 0-1.6 0L9.6 17.2A2 2 0 0 1 8 18H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2z"}]];var dS=[["rect",{width:"20",height:"12",x:"2",y:"6",rx:"2"}]];var cS=[["rect",{width:"12",height:"20",x:"6",y:"2",rx:"2"}]];var pS=[["path",{d:"M7 19H4.815a1.83 1.83 0 0 1-1.57-.881 1.785 1.785 0 0 1-.004-1.784L7.196 9.5"}],["path",{d:"M11 19h8.203a1.83 1.83 0 0 0 1.556-.89 1.784 1.784 0 0 0 0-1.775l-1.226-2.12"}],["path",{d:"m14 16-3 3 3 3"}],["path",{d:"M8.293 13.596 7.196 9.5 3.1 10.598"}],["path",{d:"m9.344 5.811 1.093-1.892A1.83 1.83 0 0 1 11.985 3a1.784 1.784 0 0 1 1.546.888l3.943 6.843"}],["path",{d:"m13.378 9.633 4.096 1.098 1.097-4.096"}]];var nS=[["path",{d:"m15 14 5-5-5-5"}],["path",{d:"M20 9H9.5A5.5 5.5 0 0 0 4 14.5A5.5 5.5 0 0 0 9.5 20H13"}]];var iS=[["circle",{cx:"12",cy:"17",r:"1"}],["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var lS=[["path",{d:"M21 7v6h-6"}],["path",{d:"M3 17a9 9 0 0 1 9-9 9 9 0 0 1 6 2.3l3 2.7"}]];var sS=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}],["circle",{cx:"12",cy:"12",r:"1"}]];var rS=[["path",{d:"M21 12a9 9 0 0 0-9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["path",{d:"M3 12a9 9 0 0 0 9 9 9.75 9.75 0 0 0 6.74-2.74L21 16"}],["path",{d:"M16 16h5v5"}]];var aS=[["path",{d:"M21 8L18.74 5.74A9.75 9.75 0 0 0 12 3C11 3 10.03 3.16 9.13 3.47"}],["path",{d:"M8 16H3v5"}],["path",{d:"M3 12C3 9.51 4 7.26 5.64 5.64"}],["path",{d:"m3 16 2.26 2.26A9.75 9.75 0 0 0 12 21c2.49 0 4.74-1 6.36-2.64"}],["path",{d:"M21 12c0 1-.16 1.97-.47 2.87"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M22 22 2 2"}]];var tS=[["path",{d:"M3 12a9 9 0 0 1 9-9 9.75 9.75 0 0 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}],["path",{d:"M21 12a9 9 0 0 1-9 9 9.75 9.75 0 0 1-6.74-2.74L3 16"}],["path",{d:"M8 16H3v5"}]];var oS=[["path",{d:"M5 6a4 4 0 0 1 4-4h6a4 4 0 0 1 4 4v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6Z"}],["path",{d:"M5 10h14"}],["path",{d:"M15 7v6"}]];var eS=[["path",{d:"M17 3v10"}],["path",{d:"m12.67 5.5 8.66 5"}],["path",{d:"m12.67 10.5 8.66-5"}],["path",{d:"M9 17a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-2z"}]];var ZA=[["path",{d:"M4 7V4h16v3"}],["path",{d:"M5 20h6"}],["path",{d:"M13 4 8 20"}],["path",{d:"m15 15 5 5"}],["path",{d:"m20 15-5 5"}]];var JA=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}],["path",{d:"M11 10h1v4"}]];var KA=[["path",{d:"m2 9 3-3 3 3"}],["path",{d:"M13 18H7a2 2 0 0 1-2-2V6"}],["path",{d:"m22 15-3 3-3-3"}],["path",{d:"M11 6h6a2 2 0 0 1 2 2v10"}]];var YA=[["path",{d:"m17 2 4 4-4 4"}],["path",{d:"M3 11v-1a4 4 0 0 1 4-4h14"}],["path",{d:"m7 22-4-4 4-4"}],["path",{d:"M21 13v1a4 4 0 0 1-4 4H3"}]];var XA=[["path",{d:"M14 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M19 14a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var WA=[["path",{d:"M14 4a1 1 0 0 1 1-1"}],["path",{d:"M15 10a1 1 0 0 1-1-1"}],["path",{d:"M21 4a1 1 0 0 0-1-1"}],["path",{d:"M21 9a1 1 0 0 1-1 1"}],["path",{d:"m3 7 3 3 3-3"}],["path",{d:"M6 10V5a2 2 0 0 1 2-2h2"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}]];var QA=[["path",{d:"m12 17-5-5 5-5"}],["path",{d:"M22 18v-2a4 4 0 0 0-4-4H7"}],["path",{d:"m7 17-5-5 5-5"}]];var VA=[["path",{d:"M20 18v-2a4 4 0 0 0-4-4H4"}],["path",{d:"m9 17-5-5 5-5"}]];var GA=[["path",{d:"M12 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 12 18z"}],["path",{d:"M22 6a2 2 0 0 0-3.414-1.414l-6 6a2 2 0 0 0 0 2.828l6 6A2 2 0 0 0 22 18z"}]];var IA=[["path",{d:"M12 11.22C11 9.997 10 9 10 8a2 2 0 0 1 4 0c0 1-.998 2.002-2.01 3.22"}],["path",{d:"m12 18 2.57-3.5"}],["path",{d:"M6.243 9.016a7 7 0 0 1 11.507-.009"}],["path",{d:"M9.35 14.53 12 11.22"}],["path",{d:"M9.35 14.53C7.728 12.246 6 10.221 6 7a6 5 0 0 1 12 0c-.005 3.22-1.778 5.235-3.43 7.5l3.557 4.527a1 1 0 0 1-.203 1.43l-1.894 1.36a1 1 0 0 1-1.384-.215L12 18l-2.679 3.593a1 1 0 0 1-1.39.213l-1.865-1.353a1 1 0 0 1-.203-1.422z"}]];var zA=[["path",{d:"M4.5 16.5c-1.5 1.26-2 5-2 5s3.74-.5 5-2c.71-.84.7-2.13-.09-2.91a2.18 2.18 0 0 0-2.91-.09z"}],["path",{d:"m12 15-3-3a22 22 0 0 1 2-3.95A12.88 12.88 0 0 1 22 2c0 2.72-.78 7.5-6 11a22.35 22.35 0 0 1-4 2z"}],["path",{d:"M9 12H4s.55-3.03 2-4c1.62-1.08 5 0 5 0"}],["path",{d:"M12 15v5s3.03-.55 4-2c1.08-1.62 0-5 0-5"}]];var NA=[["polyline",{points:"3.5 2 6.5 12.5 18 12.5"}],["line",{x1:"9.5",x2:"5.5",y1:"12.5",y2:"20"}],["line",{x1:"15",x2:"18.5",y1:"12.5",y2:"20"}],["path",{d:"M2.75 18a13 13 0 0 0 18.5 0"}]];var FA=[["path",{d:"M6 19V5"}],["path",{d:"M10 19V6.8"}],["path",{d:"M14 19v-7.8"}],["path",{d:"M18 5v4"}],["path",{d:"M18 19v-6"}],["path",{d:"M22 19V9"}],["path",{d:"M2 19V9a4 4 0 0 1 4-4c2 0 4 1.33 6 4s4 4 6 4a4 4 0 1 0-3-6.65"}]];var HA=[["path",{d:"M17 10h-1a4 4 0 1 1 4-4v.534"}],["path",{d:"M17 6h1a4 4 0 0 1 1.42 7.74l-2.29.87a6 6 0 0 1-5.339-10.68l2.069-1.31"}],["path",{d:"M4.5 17c2.8-.5 4.4 0 5.5.8s1.8 2.2 2.3 3.7c-2 .4-3.5.4-4.8-.3-1.2-.6-2.3-1.9-3-4.2"}],["path",{d:"M9.77 12C4 15 2 22 2 22"}],["circle",{cx:"17",cy:"8",r:"2"}]];var m6=[["path",{d:"M16.466 7.5C15.643 4.237 13.952 2 12 2 9.239 2 7 6.477 7 12s2.239 10 5 10c.342 0 .677-.069 1-.2"}],["path",{d:"m15.194 13.707 3.814 1.86-1.86 3.814"}],["path",{d:"M19 15.57c-1.804.885-4.274 1.43-7 1.43-5.523 0-10-2.239-10-5s4.477-5 10-5c4.838 0 8.873 1.718 9.8 4"}]];var DA=[["path",{d:"m14.5 9.5 1 1"}],["path",{d:"m15.5 8.5-4 4"}],["path",{d:"M3 12a9 9 0 1 0 9-9 9.74 9.74 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}],["circle",{cx:"10",cy:"14",r:"2"}]];var BA=[["path",{d:"M20 9V7a2 2 0 0 0-2-2h-6"}],["path",{d:"m15 2-3 3 3 3"}],["path",{d:"M20 13v5a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h2"}]];var OA=[["path",{d:"M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8"}],["path",{d:"M3 3v5h5"}]];var TA=[["path",{d:"M12 5H6a2 2 0 0 0-2 2v3"}],["path",{d:"m9 8 3-3-3-3"}],["path",{d:"M4 14v4a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2"}]];var PA=[["path",{d:"M21 12a9 9 0 1 1-9-9c2.52 0 4.93 1 6.74 2.74L21 8"}],["path",{d:"M21 3v5h-5"}]];var SA=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5c.4 0 .9-.1 1.3-.2"}],["path",{d:"M5.2 5.2A3.5 3.53 0 0 0 6.5 12H12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M21 15.3a3.5 3.5 0 0 0-3.3-3.3"}],["path",{d:"M15 5h-4.3"}],["circle",{cx:"18",cy:"5",r:"3"}]];var AA=[["circle",{cx:"6",cy:"19",r:"3"}],["path",{d:"M9 19h8.5a3.5 3.5 0 0 0 0-7h-11a3.5 3.5 0 0 1 0-7H15"}],["circle",{cx:"18",cy:"5",r:"3"}]];var qA=[["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2"}],["path",{d:"M6.01 18H6"}],["path",{d:"M10.01 18H10"}],["path",{d:"M15 10v4"}],["path",{d:"M17.84 7.17a4 4 0 0 0-5.66 0"}],["path",{d:"M20.66 4.34a8 8 0 0 0-11.31 0"}]];var u6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 12h18"}]];var d6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var EA=[["path",{d:"M4 11a9 9 0 0 1 9 9"}],["path",{d:"M4 4a16 16 0 0 1 16 16"}],["circle",{cx:"5",cy:"19",r:"1"}]];var CA=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 7.5H3"}],["path",{d:"M21 12H3"}],["path",{d:"M21 16.5H3"}]];var xA=[["path",{d:"M12 15v-3.014"}],["path",{d:"M16 15v-3.014"}],["path",{d:"M20 6H4"}],["path",{d:"M20 8V4"}],["path",{d:"M4 8V4"}],["path",{d:"M8 15v-3.014"}],["rect",{x:"3",y:"12",width:"18",height:"7",rx:"1"}]];var wA=[["path",{d:"M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z"}],["path",{d:"m14.5 12.5 2-2"}],["path",{d:"m11.5 9.5 2-2"}],["path",{d:"m8.5 6.5 2-2"}],["path",{d:"m17.5 15.5 2-2"}]];var UA=[["path",{d:"M6 11h8a4 4 0 0 0 0-8H9v18"}],["path",{d:"M6 15h8"}]];var MA=[["path",{d:"M10 2v15"}],["path",{d:"M7 22a4 4 0 0 1-4-4 1 1 0 0 1 1-1h16a1 1 0 0 1 1 1 4 4 0 0 1-4 4z"}],["path",{d:"M9.159 2.46a1 1 0 0 1 1.521-.193l9.977 8.98A1 1 0 0 1 20 13H4a1 1 0 0 1-.824-1.567z"}]];var RA=[["path",{d:"M7 21h10"}],["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M11.38 12a2.4 2.4 0 0 1-.4-4.77 2.4 2.4 0 0 1 3.2-2.77 2.4 2.4 0 0 1 3.47-.63 2.4 2.4 0 0 1 3.37 3.37 2.4 2.4 0 0 1-1.1 3.7 2.51 2.51 0 0 1 .03 1.1"}],["path",{d:"m13 12 4-4"}],["path",{d:"M10.9 7.25A3.99 3.99 0 0 0 4 10c0 .73.2 1.41.54 2"}]];var jA=[["path",{d:"m2.37 11.223 8.372-6.777a2 2 0 0 1 2.516 0l8.371 6.777"}],["path",{d:"M21 15a1 1 0 0 1 1 1v2a1 1 0 0 1-1 1h-5.25"}],["path",{d:"M3 15a1 1 0 0 0-1 1v2a1 1 0 0 0 1 1h9"}],["path",{d:"m6.67 15 6.13 4.6a2 2 0 0 0 2.8-.4l3.15-4.2"}],["rect",{width:"20",height:"4",x:"2",y:"11",rx:"1"}]];var LA=[["path",{d:"M4 10a7.31 7.31 0 0 0 10 10Z"}],["path",{d:"m9 15 3-3"}],["path",{d:"M17 13a6 6 0 0 0-6-6"}],["path",{d:"M21 13A10 10 0 0 0 11 3"}]];var yA=[["path",{d:"m13.5 6.5-3.148-3.148a1.205 1.205 0 0 0-1.704 0L6.352 5.648a1.205 1.205 0 0 0 0 1.704L9.5 10.5"}],["path",{d:"M16.5 7.5 19 5"}],["path",{d:"m17.5 10.5 3.148 3.148a1.205 1.205 0 0 1 0 1.704l-2.296 2.296a1.205 1.205 0 0 1-1.704 0L13.5 14.5"}],["path",{d:"M9 21a6 6 0 0 0-6-6"}],["path",{d:"M9.352 10.648a1.205 1.205 0 0 0 0 1.704l2.296 2.296a1.205 1.205 0 0 0 1.704 0l4.296-4.296a1.205 1.205 0 0 0 0-1.704l-2.296-2.296a1.205 1.205 0 0 0-1.704 0z"}]];var fA=[["path",{d:"m20 19.5-5.5 1.2"}],["path",{d:"M14.5 4v11.22a1 1 0 0 0 1.242.97L20 15.2"}],["path",{d:"m2.978 19.351 5.549-1.363A2 2 0 0 0 10 16V2"}],["path",{d:"M20 10 4 13.5"}]];var kA=[["path",{d:"M10 2v3a1 1 0 0 0 1 1h5"}],["path",{d:"M18 18v-6a1 1 0 0 0-1-1h-6a1 1 0 0 0-1 1v6"}],["path",{d:"M18 22H4a2 2 0 0 1-2-2V6"}],["path",{d:"M8 18a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9.172a2 2 0 0 1 1.414.586l2.828 2.828A2 2 0 0 1 22 6.828V16a2 2 0 0 1-2.01 2z"}]];var bA=[["path",{d:"M13 13H8a1 1 0 0 0-1 1v7"}],["path",{d:"M14 8h1"}],["path",{d:"M17 21v-4"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20.41 20.41A2 2 0 0 1 19 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 .59-1.41"}],["path",{d:"M29.5 11.5s5 5 4 5"}],["path",{d:"M9 3h6.2a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V15"}]];var hA=[["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"}],["path",{d:"M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"}],["path",{d:"M7 3v4a1 1 0 0 0 1 1h7"}]];var c6=[["path",{d:"M5 7v11a1 1 0 0 0 1 1h11"}],["path",{d:"M5.293 18.707 11 13"}],["circle",{cx:"19",cy:"19",r:"2"}],["circle",{cx:"5",cy:"5",r:"2"}]];var vA=[["path",{d:"m16 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"m2 16 3-8 3 8c-.87.65-1.92 1-3 1s-2.13-.35-3-1Z"}],["path",{d:"M7 21h10"}],["path",{d:"M12 3v18"}],["path",{d:"M3 7h2c2 0 5-1 7-2 2 1 5 2 7 2h2"}]];var $A=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["path",{d:"M14 15H9v-5"}],["path",{d:"M16 3h5v5"}],["path",{d:"M21 3 9 15"}]];var gA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 7v10"}],["path",{d:"M12 7v10"}],["path",{d:"M17 7v10"}]];var _A=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var mA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 9h.01"}]];var uA=[["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7.828 13.07A3 3 0 0 1 12 8.764a3 3 0 0 1 4.172 4.306l-3.447 3.62a1 1 0 0 1-1.449 0z"}]];var dA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 12h10"}]];var cA=[["path",{d:"M17 12v4a1 1 0 0 1-1 1h-4"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M17 8V7"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M7 17h.01"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["rect",{x:"7",y:"7",width:"5",height:"5",rx:"1"}]];var pA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m16 16-1.9-1.9"}]];var nA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M7 8h8"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}]];var iA=[["path",{d:"M3 7V5a2 2 0 0 1 2-2h2"}],["path",{d:"M17 3h2a2 2 0 0 1 2 2v2"}],["path",{d:"M21 17v2a2 2 0 0 1-2 2h-2"}],["path",{d:"M7 21H5a2 2 0 0 1-2-2v-2"}]];var lA=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 5v16"}],["path",{d:"m4 6 7.106-3.79a2 2 0 0 1 1.788 0L20 6"}],["path",{d:"m6 11-3.52 2.147a1 1 0 0 0-.48.854V19a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a1 1 0 0 0-.48-.853L18 11"}],["path",{d:"M6 5v16"}],["circle",{cx:"12",cy:"9",r:"2"}]];var sA=[["path",{d:"M5.42 9.42 8 12"}],["circle",{cx:"4",cy:"8",r:"2"}],["path",{d:"m14 6-8.58 8.58"}],["circle",{cx:"4",cy:"16",r:"2"}],["path",{d:"M10.8 14.8 14 18"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}]];var rA=[["circle",{cx:"6",cy:"6",r:"3"}],["path",{d:"M8.12 8.12 12 12"}],["path",{d:"M20 4 8.12 15.88"}],["circle",{cx:"6",cy:"18",r:"3"}],["path",{d:"M14.8 14.8 20 20"}]];var aA=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m22 3-5 5"}],["path",{d:"m17 3 5 5"}]];var tA=[["path",{d:"M13 3H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-3"}],["path",{d:"M8 21h8"}],["path",{d:"M12 17v4"}],["path",{d:"m17 8 5-5"}],["path",{d:"M17 3h5v5"}]];var oA=[["path",{d:"M15 12h-5"}],["path",{d:"M15 8h-5"}],["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var eA=[["path",{d:"M19 17V5a2 2 0 0 0-2-2H4"}],["path",{d:"M8 21h12a2 2 0 0 0 2-2v-1a1 1 0 0 0-1-1H11a1 1 0 0 0-1 1v1a2 2 0 1 1-4 0V5a2 2 0 1 0-4 0v2a1 1 0 0 0 1 1h3"}]];var Zq=[["path",{d:"m13 13.5 2-2.5-2-2.5"}],["path",{d:"m21 21-4.3-4.3"}],["path",{d:"M9 8.5 7 11l2 2.5"}],["circle",{cx:"11",cy:"11",r:"8"}]];var Jq=[["path",{d:"m8 11 2 2 4-4"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Kq=[["path",{d:"m13.5 8.5-5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Yq=[["path",{d:"m13.5 8.5-5 5"}],["path",{d:"m8.5 8.5 5 5"}],["circle",{cx:"11",cy:"11",r:"8"}],["path",{d:"m21 21-4.3-4.3"}]];var Xq=[["path",{d:"m21 21-4.34-4.34"}],["circle",{cx:"11",cy:"11",r:"8"}]];var Wq=[["path",{d:"M16 5a4 3 0 0 0-8 0c0 4 8 3 8 7a4 3 0 0 1-8 0"}],["path",{d:"M8 19a4 3 0 0 0 8 0c0-4-8-3-8-7a4 3 0 0 1 8 0"}]];var p6=[["path",{d:"M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"}],["path",{d:"M6 12h16"}]];var Qq=[["rect",{x:"14",y:"14",width:"8",height:"8",rx:"2"}],["rect",{x:"2",y:"2",width:"8",height:"8",rx:"2"}],["path",{d:"M7 14v1a2 2 0 0 0 2 2h1"}],["path",{d:"M14 7h1a2 2 0 0 1 2 2v1"}]];var Vq=[["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"}],["path",{d:"m21.854 2.147-10.94 10.939"}]];var Gq=[["path",{d:"m16 16-4 4-4-4"}],["path",{d:"M3 12h18"}],["path",{d:"m8 8 4-4 4 4"}]];var Iq=[["path",{d:"m10.852 14.772-.383.923"}],["path",{d:"M13.148 14.772a3 3 0 1 0-2.296-5.544l-.383-.923"}],["path",{d:"m13.148 9.228.383-.923"}],["path",{d:"m13.53 15.696-.382-.924a3 3 0 1 1-2.296-5.544"}],["path",{d:"m14.772 10.852.923-.383"}],["path",{d:"m14.772 13.148.923.383"}],["path",{d:"M4.5 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-.5"}],["path",{d:"M4.5 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-.5"}],["path",{d:"M6 18h.01"}],["path",{d:"M6 6h.01"}],["path",{d:"m9.228 10.852-.923-.383"}],["path",{d:"m9.228 13.148-.923.383"}]];var zq=[["path",{d:"M12 3v18"}],["path",{d:"m16 16 4-4-4-4"}],["path",{d:"m8 8-4 4 4 4"}]];var Nq=[["path",{d:"M6 10H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-2"}],["path",{d:"M6 14H4a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-4a2 2 0 0 0-2-2h-2"}],["path",{d:"M6 6h.01"}],["path",{d:"M6 18h.01"}],["path",{d:"m13 6-4 6h6l-4 6"}]];var Fq=[["path",{d:"M7 2h13a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-5"}],["path",{d:"M10 10 2.5 2.5C2 2 2 2.5 2 5v3a2 2 0 0 0 2 2h6z"}],["path",{d:"M22 17v-1a2 2 0 0 0-2-2h-1"}],["path",{d:"M4 14a2 2 0 0 0-2 2v4a2 2 0 0 0 2 2h16.5l1-.5.5.5-8-8H4z"}],["path",{d:"M6 18h.01"}],["path",{d:"m2 2 20 20"}]];var Hq=[["rect",{width:"20",height:"8",x:"2",y:"2",rx:"2",ry:"2"}],["rect",{width:"20",height:"8",x:"2",y:"14",rx:"2",ry:"2"}],["line",{x1:"6",x2:"6.01",y1:"6",y2:"6"}],["line",{x1:"6",x2:"6.01",y1:"18",y2:"18"}]];var Dq=[["path",{d:"M14 17H5"}],["path",{d:"M19 7h-9"}],["circle",{cx:"17",cy:"17",r:"3"}],["circle",{cx:"7",cy:"7",r:"3"}]];var Bq=[["path",{d:"M9.671 4.136a2.34 2.34 0 0 1 4.659 0 2.34 2.34 0 0 0 3.319 1.915 2.34 2.34 0 0 1 2.33 4.033 2.34 2.34 0 0 0 0 3.831 2.34 2.34 0 0 1-2.33 4.033 2.34 2.34 0 0 0-3.319 1.915 2.34 2.34 0 0 1-4.659 0 2.34 2.34 0 0 0-3.32-1.915 2.34 2.34 0 0 1-2.33-4.033 2.34 2.34 0 0 0 0-3.831A2.34 2.34 0 0 1 6.35 6.051a2.34 2.34 0 0 0 3.319-1.915"}],["circle",{cx:"12",cy:"12",r:"3"}]];var Oq=[["path",{d:"M8.3 10a.7.7 0 0 1-.626-1.079L11.4 3a.7.7 0 0 1 1.198-.043L16.3 8.9a.7.7 0 0 1-.572 1.1Z"}],["rect",{x:"3",y:"14",width:"7",height:"7",rx:"1"}],["circle",{cx:"17.5",cy:"17.5",r:"3.5"}]];var Tq=[["circle",{cx:"18",cy:"5",r:"3"}],["circle",{cx:"6",cy:"12",r:"3"}],["circle",{cx:"18",cy:"19",r:"3"}],["line",{x1:"8.59",x2:"15.42",y1:"13.51",y2:"17.49"}],["line",{x1:"15.41",x2:"8.59",y1:"6.51",y2:"10.49"}]];var Pq=[["path",{d:"M12 2v13"}],["path",{d:"m16 6-4-4-4 4"}],["path",{d:"M4 12v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8"}]];var Sq=[["path",{d:"M14 11a2 2 0 1 1-4 0 4 4 0 0 1 8 0 6 6 0 0 1-12 0 8 8 0 0 1 16 0 10 10 0 1 1-20 0 11.93 11.93 0 0 1 2.42-7.22 2 2 0 1 1 3.16 2.44"}]];var Aq=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"3",x2:"21",y1:"9",y2:"9"}],["line",{x1:"3",x2:"21",y1:"15",y2:"15"}],["line",{x1:"9",x2:"9",y1:"9",y2:"21"}],["line",{x1:"15",x2:"15",y1:"9",y2:"21"}]];var qq=[["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"}],["path",{d:"m4.243 5.21 14.39 12.472"}]];var Eq=[["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"}],["path",{d:"M12 8v4"}],["path",{d:"M12 16h.01"}]];var Cq=[["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"}],["path",{d:"m9 12 2 2 4-4"}]];var xq=[["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"}],["path",{d:"M8 12h.01"}],["path",{d:"M12 12h.01"}],["path",{d:"M16 12h.01"}]];var wq=[["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"}],["path",{d:"M12 22V2"}]];var Uq=[["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"}],["path",{d:"M9 12h6"}]];var Mq=[["path",{d:"m2 2 20 20"}],["path",{d:"M5 5a1 1 0 0 0-1 1v7c0 5 3.5 7.5 7.67 8.94a1 1 0 0 0 .67.01c2.35-.82 4.48-1.97 5.9-3.71"}],["path",{d:"M9.309 3.652A12.252 12.252 0 0 0 11.24 2.28a1.17 1.17 0 0 1 1.52 0C14.51 3.81 17 5 19 5a1 1 0 0 1 1 1v7a9.784 9.784 0 0 1-.08 1.264"}]];var Rq=[["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"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var n6=[["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"}],["path",{d:"M9.1 9a3 3 0 0 1 5.82 1c0 2-3 3-3 3"}],["path",{d:"M12 17h.01"}]];var jq=[["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"}],["path",{d:"M6.376 18.91a6 6 0 0 1 11.249.003"}],["circle",{cx:"12",cy:"11",r:"4"}]];var i6=[["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"}],["path",{d:"m14.5 9.5-5 5"}],["path",{d:"m9.5 9.5 5 5"}]];var Lq=[["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"}]];var yq=[["circle",{cx:"12",cy:"12",r:"8"}],["path",{d:"M12 2v7.5"}],["path",{d:"m19 5-5.23 5.23"}],["path",{d:"M22 12h-7.5"}],["path",{d:"m19 19-5.23-5.23"}],["path",{d:"M12 14.5V22"}],["path",{d:"M10.23 13.77 5 19"}],["path",{d:"M9.5 12H2"}],["path",{d:"M10.23 10.23 5 5"}],["circle",{cx:"12",cy:"12",r:"2.5"}]];var fq=[["path",{d:"M12 10.189V14"}],["path",{d:"M12 2v3"}],["path",{d:"M19 13V7a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2v6"}],["path",{d:"M19.38 20A11.6 11.6 0 0 0 21 14l-8.188-3.639a2 2 0 0 0-1.624 0L3 14a11.6 11.6 0 0 0 2.81 7.76"}],["path",{d:"M2 21c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1s1.2 1 2.5 1c2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var kq=[["path",{d:"M20.38 3.46 16 2a4 4 0 0 1-8 0L3.62 3.46a2 2 0 0 0-1.34 2.23l.58 3.47a1 1 0 0 0 .99.84H6v10c0 1.1.9 2 2 2h8a2 2 0 0 0 2-2V10h2.15a1 1 0 0 0 .99-.84l.58-3.47a2 2 0 0 0-1.34-2.23z"}]];var bq=[["path",{d:"M16 10a4 4 0 0 1-8 0"}],["path",{d:"M3.103 6.034h17.794"}],["path",{d:"M3.4 5.467a2 2 0 0 0-.4 1.2V20a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6.667a2 2 0 0 0-.4-1.2l-2-2.667A2 2 0 0 0 17 2H7a2 2 0 0 0-1.6.8z"}]];var hq=[["path",{d:"m15 11-1 9"}],["path",{d:"m19 11-4-7"}],["path",{d:"M2 11h20"}],["path",{d:"m3.5 11 1.6 7.4a2 2 0 0 0 2 1.6h9.8a2 2 0 0 0 2-1.6l1.7-7.4"}],["path",{d:"M4.5 15.5h15"}],["path",{d:"m5 11 4-7"}],["path",{d:"m9 11 1 9"}]];var vq=[["circle",{cx:"8",cy:"21",r:"1"}],["circle",{cx:"19",cy:"21",r:"1"}],["path",{d:"M2.05 2.05h2l2.66 12.42a2 2 0 0 0 2 1.58h9.78a2 2 0 0 0 1.95-1.57l1.65-7.43H5.12"}]];var $q=[["path",{d:"M21.56 4.56a1.5 1.5 0 0 1 0 2.122l-.47.47a3 3 0 0 1-4.212-.03 3 3 0 0 1 0-4.243l.44-.44a1.5 1.5 0 0 1 2.121 0z"}],["path",{d:"M3 22a1 1 0 0 1-1-1v-3.586a1 1 0 0 1 .293-.707l3.355-3.355a1.205 1.205 0 0 1 1.704 0l3.296 3.296a1.205 1.205 0 0 1 0 1.704l-3.355 3.355a1 1 0 0 1-.707.293z"}],["path",{d:"m9 15 7.879-7.878"}]];var gq=[["path",{d:"m4 4 2.5 2.5"}],["path",{d:"M13.5 6.5a4.95 4.95 0 0 0-7 7"}],["path",{d:"M15 5 5 15"}],["path",{d:"M14 17v.01"}],["path",{d:"M10 16v.01"}],["path",{d:"M13 13v.01"}],["path",{d:"M16 10v.01"}],["path",{d:"M11 20v.01"}],["path",{d:"M17 14v.01"}],["path",{d:"M20 11v.01"}]];var _q=[["path",{d:"M10 22v-5"}],["path",{d:"M14 19v-2"}],["path",{d:"M14 2v4a2 2 0 0 0 2 2h4"}],["path",{d:"M18 20v-3"}],["path",{d:"M2 13h20"}],["path",{d:"M20 13V7l-5-5H6a2 2 0 0 0-2 2v9"}],["path",{d:"M6 20v-3"}]];var mq=[["path",{d:"M11 12h.01"}],["path",{d:"M13 22c.5-.5 1.12-1 2.5-1-1.38 0-2-.5-2.5-1"}],["path",{d:"M14 2a3.28 3.28 0 0 1-3.227 1.798l-6.17-.561A2.387 2.387 0 1 0 4.387 8H15.5a1 1 0 0 1 0 13 1 1 0 0 0 0-5H12a7 7 0 0 1-7-7V8"}],["path",{d:"M14 8a8.5 8.5 0 0 1 0 8"}],["path",{d:"M16 16c2 0 4.5-4 4-6"}]];var uq=[["path",{d:"m15 15 6 6m-6-6v4.8m0-4.8h4.8"}],["path",{d:"M9 19.8V15m0 0H4.2M9 15l-6 6"}],["path",{d:"M15 4.2V9m0 0h4.8M15 9l6-6"}],["path",{d:"M9 4.2V9m0 0H4.2M9 9 3 3"}]];var dq=[["path",{d:"M12 22v-5.172a2 2 0 0 0-.586-1.414L9.5 13.5"}],["path",{d:"M14.5 14.5 12 17"}],["path",{d:"M17 8.8A6 6 0 0 1 13.8 20H10A6.5 6.5 0 0 1 7 8a5 5 0 0 1 10 0z"}]];var cq=[["path",{d:"m18 14 4 4-4 4"}],["path",{d:"m18 2 4 4-4 4"}],["path",{d:"M2 18h1.973a4 4 0 0 0 3.3-1.7l5.454-8.6a4 4 0 0 1 3.3-1.7H22"}],["path",{d:"M2 6h1.972a4 4 0 0 1 3.6 2.2"}],["path",{d:"M22 18h-6.041a4 4 0 0 1-3.3-1.8l-.359-.45"}]];var pq=[["path",{d:"M18 7V5a1 1 0 0 0-1-1H6.5a.5.5 0 0 0-.4.8l4.5 6a2 2 0 0 1 0 2.4l-4.5 6a.5.5 0 0 0 .4.8H17a1 1 0 0 0 1-1v-2"}]];var nq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}]];var iq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}]];var lq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}]];var sq=[["path",{d:"M2 20h.01"}]];var rq=[["path",{d:"M2 20h.01"}],["path",{d:"M7 20v-4"}],["path",{d:"M12 20v-8"}],["path",{d:"M17 20V8"}],["path",{d:"M22 4v16"}]];var aq=[["path",{d:"m21 17-2.156-1.868A.5.5 0 0 0 18 15.5v.5a1 1 0 0 1-1 1h-2a1 1 0 0 1-1-1c0-2.545-3.991-3.97-8.5-4a1 1 0 0 0 0 5c4.153 0 4.745-11.295 5.708-13.5a2.5 2.5 0 1 1 3.31 3.284"}],["path",{d:"M3 21h18"}]];var tq=[["path",{d:"M10 9H4L2 7l2-2h6"}],["path",{d:"M14 5h6l2 2-2 2h-6"}],["path",{d:"M10 22V4a2 2 0 1 1 4 0v18"}],["path",{d:"M8 22h8"}]];var oq=[["path",{d:"M12 13v8"}],["path",{d:"M12 3v3"}],["path",{d:"M18 6a2 2 0 0 1 1.387.56l2.307 2.22a1 1 0 0 1 0 1.44l-2.307 2.22A2 2 0 0 1 18 13H6a2 2 0 0 1-1.387-.56l-2.306-2.22a1 1 0 0 1 0-1.44l2.306-2.22A2 2 0 0 1 6 6z"}]];var eq=[["path",{d:"M7 18v-6a5 5 0 1 1 10 0v6"}],["path",{d:"M5 21a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-1a2 2 0 0 0-2-2H7a2 2 0 0 0-2 2z"}],["path",{d:"M21 12h1"}],["path",{d:"M18.5 4.5 18 5"}],["path",{d:"M2 12h1"}],["path",{d:"M12 2v1"}],["path",{d:"m4.929 4.929.707.707"}],["path",{d:"M12 12v6"}]];var ZE=[["path",{d:"M17.971 4.285A2 2 0 0 1 21 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M3 20V4"}]];var JE=[["path",{d:"M21 4v16"}],["path",{d:"M6.029 4.285A2 2 0 0 0 3 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}]];var KE=[["path",{d:"m12.5 17-.5-1-.5 1h1z"}],["path",{d:"M15 22a1 1 0 0 0 1-1v-1a2 2 0 0 0 1.56-3.25 8 8 0 1 0-11.12 0A2 2 0 0 0 8 20v1a1 1 0 0 0 1 1z"}],["circle",{cx:"15",cy:"12",r:"1"}],["circle",{cx:"9",cy:"12",r:"1"}]];var YE=[["rect",{width:"3",height:"8",x:"13",y:"2",rx:"1.5"}],["path",{d:"M19 8.5V10h1.5A1.5 1.5 0 1 0 19 8.5"}],["rect",{width:"3",height:"8",x:"8",y:"14",rx:"1.5"}],["path",{d:"M5 15.5V14H3.5A1.5 1.5 0 1 0 5 15.5"}],["rect",{width:"8",height:"3",x:"14",y:"13",rx:"1.5"}],["path",{d:"M15.5 19H14v1.5a1.5 1.5 0 1 0 1.5-1.5"}],["rect",{width:"8",height:"3",x:"2",y:"8",rx:"1.5"}],["path",{d:"M8.5 5H10V3.5A1.5 1.5 0 1 0 8.5 5"}]];var XE=[["path",{d:"M22 2 2 22"}]];var WE=[["path",{d:"M11 16.586V19a1 1 0 0 1-1 1H2L18.37 3.63a1 1 0 1 1 3 3l-9.663 9.663a1 1 0 0 1-1.414 0L8 14"}]];var QE=[["path",{d:"M10 5H3"}],["path",{d:"M12 19H3"}],["path",{d:"M14 3v4"}],["path",{d:"M16 17v4"}],["path",{d:"M21 12h-9"}],["path",{d:"M21 19h-5"}],["path",{d:"M21 5h-7"}],["path",{d:"M8 10v4"}],["path",{d:"M8 12H3"}]];var VE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12.667 8 10 12h4l-2.667 4"}]];var l6=[["path",{d:"M10 8h4"}],["path",{d:"M12 21v-9"}],["path",{d:"M12 8V3"}],["path",{d:"M17 16h4"}],["path",{d:"M19 12V3"}],["path",{d:"M19 21v-5"}],["path",{d:"M3 14h4"}],["path",{d:"M5 10V3"}],["path",{d:"M5 21v-7"}]];var GE=[["rect",{width:"7",height:"12",x:"2",y:"6",rx:"1"}],["path",{d:"M13 8.32a7.43 7.43 0 0 1 0 7.36"}],["path",{d:"M16.46 6.21a11.76 11.76 0 0 1 0 11.58"}],["path",{d:"M19.91 4.1a15.91 15.91 0 0 1 .01 15.8"}]];var IE=[["rect",{width:"14",height:"20",x:"5",y:"2",rx:"2",ry:"2"}],["path",{d:"M12 18h.01"}]];var zE=[["path",{d:"M22 11v1a10 10 0 1 1-9-10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}],["path",{d:"M16 5h6"}],["path",{d:"M19 2v6"}]];var NE=[["circle",{cx:"12",cy:"12",r:"10"}],["path",{d:"M8 14s1.5 2 4 2 4-2 4-2"}],["line",{x1:"9",x2:"9.01",y1:"9",y2:"9"}],["line",{x1:"15",x2:"15.01",y1:"9",y2:"9"}]];var FE=[["path",{d:"M2 13a6 6 0 1 0 12 0 4 4 0 1 0-8 0 2 2 0 0 0 4 0"}],["circle",{cx:"10",cy:"13",r:"8"}],["path",{d:"M2 21h12c4.4 0 8-3.6 8-8V7a2 2 0 1 0-4 0v6"}],["path",{d:"M18 3 19.1 5.2"}],["path",{d:"M22 3 20.9 5.2"}]];var HE=[["path",{d:"M10.5 2v4"}],["path",{d:"M14 2H7a2 2 0 0 0-2 2"}],["path",{d:"M19.29 14.76A6.67 6.67 0 0 1 17 11a6.6 6.6 0 0 1-2.29 3.76c-1.15.92-1.71 2.04-1.71 3.19 0 2.22 1.8 4.05 4 4.05s4-1.83 4-4.05c0-1.16-.57-2.26-1.71-3.19"}],["path",{d:"M9.607 21H6a2 2 0 0 1-2-2v-7a2 2 0 0 1 2-2h7V7a1 1 0 0 0-1-1H9a1 1 0 0 0-1 1v3"}]];var DE=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6h-4"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"M22 12h-6.5L14 15"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h4"}]];var BE=[["path",{d:"M20 9V6a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v3"}],["path",{d:"M2 16a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-5a2 2 0 0 0-4 0v1.5a.5.5 0 0 1-.5.5h-11a.5.5 0 0 1-.5-.5V11a2 2 0 0 0-4 0z"}],["path",{d:"M4 18v2"}],["path",{d:"M20 18v2"}],["path",{d:"M12 4v9"}]];var OE=[["path",{d:"M12 21a9 9 0 0 0 9-9H3a9 9 0 0 0 9 9Z"}],["path",{d:"M7 21h10"}],["path",{d:"M19.5 12 22 6"}],["path",{d:"M16.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.73 1.62"}],["path",{d:"M11.25 3c.27.1.8.53.74 1.36-.05.83-.93 1.2-.98 2.02-.06.78.33 1.24.72 1.62"}],["path",{d:"M6.25 3c.27.1.8.53.75 1.36-.06.83-.93 1.2-1 2.02-.05.78.34 1.24.74 1.62"}]];var TE=[["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var PE=[["path",{d:"M12 18v4"}],["path",{d:"M2 14.499a5.5 5.5 0 0 0 9.591 3.675.6.6 0 0 1 .818.001A5.5 5.5 0 0 0 22 14.5c0-2.29-1.5-4-3-5.5l-5.492-5.312a2 2 0 0 0-3-.02L5 8.999c-1.5 1.5-3 3.2-3 5.5"}]];var SE=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}]];var s6=[["path",{d:"M11.017 2.814a1 1 0 0 1 1.966 0l1.051 5.558a2 2 0 0 0 1.594 1.594l5.558 1.051a1 1 0 0 1 0 1.966l-5.558 1.051a2 2 0 0 0-1.594 1.594l-1.051 5.558a1 1 0 0 1-1.966 0l-1.051-5.558a2 2 0 0 0-1.594-1.594l-5.558-1.051a1 1 0 0 1 0-1.966l5.558-1.051a2 2 0 0 0 1.594-1.594z"}],["path",{d:"M20 2v4"}],["path",{d:"M22 4h-4"}],["circle",{cx:"4",cy:"20",r:"2"}]];var AE=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2"}],["path",{d:"M12 6h.01"}],["circle",{cx:"12",cy:"14",r:"4"}],["path",{d:"M12 14h.01"}]];var qE=[["path",{d:"M8.8 20v-4.1l1.9.2a2.3 2.3 0 0 0 2.164-2.1V8.3A5.37 5.37 0 0 0 2 8.25c0 2.8.656 3.054 1 4.55a5.77 5.77 0 0 1 .029 2.758L2 20"}],["path",{d:"M19.8 17.8a7.5 7.5 0 0 0 .003-10.603"}],["path",{d:"M17 15a3.5 3.5 0 0 0-.025-4.975"}]];var EE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"M4 21c1.1 0 1.1-1 2.3-1s1.1 1 2.3 1c1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1 1.1 0 1.1 1 2.3 1 1.1 0 1.1-1 2.3-1"}]];var CE=[["path",{d:"m6 16 6-12 6 12"}],["path",{d:"M8 12h8"}],["path",{d:"m16 20 2 2 4-4"}]];var xE=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}],["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}]];var wE=[["circle",{cx:"19",cy:"5",r:"2"}],["circle",{cx:"5",cy:"19",r:"2"}],["path",{d:"M5 17A12 12 0 0 1 17 5"}]];var UE=[["path",{d:"M16 3h5v5"}],["path",{d:"M8 3H3v5"}],["path",{d:"M12 22v-8.3a4 4 0 0 0-1.172-2.872L3 3"}],["path",{d:"m15 9 6-6"}]];var ME=[["path",{d:"M17 13.44 4.442 17.082A2 2 0 0 0 4.982 21H19a2 2 0 0 0 .558-3.921l-1.115-.32A2 2 0 0 1 17 14.837V7.66"}],["path",{d:"m7 10.56 12.558-3.642A2 2 0 0 0 19.018 3H5a2 2 0 0 0-.558 3.921l1.115.32A2 2 0 0 1 7 9.163v7.178"}]];var RE=[["path",{d:"M15.295 19.562 16 22"}],["path",{d:"m17 16 3.758 2.098"}],["path",{d:"m19 12.5 3.026-.598"}],["path",{d:"M7.61 6.3a3 3 0 0 0-3.92 1.3l-1.38 2.79a3 3 0 0 0 1.3 3.91l6.89 3.597a1 1 0 0 0 1.342-.447l3.106-6.211a1 1 0 0 0-.447-1.341z"}],["path",{d:"M8 9V2"}]];var jE=[["path",{d:"M3 3h.01"}],["path",{d:"M7 5h.01"}],["path",{d:"M11 7h.01"}],["path",{d:"M3 7h.01"}],["path",{d:"M7 9h.01"}],["path",{d:"M3 11h.01"}],["rect",{width:"4",height:"4",x:"15",y:"5"}],["path",{d:"m19 9 2 2v10c0 .6-.4 1-1 1h-6c-.6 0-1-.4-1-1V11l2-2"}],["path",{d:"m13 14 8-2"}],["path",{d:"m13 19 8-2"}]];var LE=[["path",{d:"M14 9.536V7a4 4 0 0 1 4-4h1.5a.5.5 0 0 1 .5.5V5a4 4 0 0 1-4 4 4 4 0 0 0-4 4c0 2 1 3 1 5a5 5 0 0 1-1 3"}],["path",{d:"M4 9a5 5 0 0 1 8 4 5 5 0 0 1-8-4"}],["path",{d:"M5 21h14"}]];var r6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M17 12h-2l-2 5-2-10-2 5H7"}]];var a6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 8-8 8"}],["path",{d:"M16 16H8V8"}]];var t6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 8 8 8"}],["path",{d:"M16 8v8H8"}]];var o6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8 12 4 4 4-4"}]];var e6=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m12 8-4 4 4 4"}],["path",{d:"M16 12H8"}]];var Z9=[["path",{d:"M13 21h6a2 2 0 0 0 2-2V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v6"}],["path",{d:"m3 21 9-9"}],["path",{d:"M9 21H3v-6"}]];var J9=[["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}],["path",{d:"m21 21-9-9"}],["path",{d:"M21 15v6h-6"}]];var K9=[["path",{d:"M13 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-6"}],["path",{d:"m3 3 9 9"}],["path",{d:"M3 9V3h6"}]];var Y9=[["path",{d:"M21 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h6"}],["path",{d:"m21 3-9 9"}],["path",{d:"M15 3h6v6"}]];var X9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"m12 16 4-4-4-4"}]];var W9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 16V8h8"}],["path",{d:"M16 16 8 8"}]];var Q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 8h8v8"}],["path",{d:"m8 16 8-8"}]];var V9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 12-4-4-4 4"}],["path",{d:"M12 16V8"}]];var G9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 8v8"}],["path",{d:"m8.5 14 7-4"}],["path",{d:"m8.5 10 7 4"}]];var I9=[["path",{d:"M4 22a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2"}],["path",{d:"M10 22H8"}],["path",{d:"M16 22h-2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var G5=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 8h7"}],["path",{d:"M8 12h6"}],["path",{d:"M11 16h5"}]];var z9=[["path",{d:"M21 10.656V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h12.344"}],["path",{d:"m9 11 3 3L22 4"}]];var N9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m9 12 2 2 4-4"}]];var F9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m16 10-4 4-4-4"}]];var H9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m14 16-4-4 4-4"}]];var D9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m10 8 4 4-4 4"}]];var B9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m8 14 4-4 4 4"}]];var O9=[["path",{d:"m10 9-3 3 3 3"}],["path",{d:"m14 15 3-3-3-3"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var yE=[["path",{d:"M10 9.5 8 12l2 2.5"}],["path",{d:"M14 21h1"}],["path",{d:"m14 9.5 2 2.5-2 2.5"}],["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}]];var fE=[["path",{d:"M5 21a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2"}],["path",{d:"M9 21h1"}],["path",{d:"M14 21h1"}]];var T9=[["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M9 3h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M14 21h1"}],["path",{d:"M9 21h1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}]];var P9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h2"}],["path",{d:"M14 3h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v2"}],["path",{d:"M3 14v1"}]];var S9=[["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 3h1"}],["path",{d:"M9 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M14 21h1"}],["path",{d:"M3 9v1"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M21 14v1"}]];var kE=[["path",{d:"M14 21h1"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M9 21h1"}]];var A9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["line",{x1:"8",x2:"16",y1:"12",y2:"12"}],["line",{x1:"12",x2:"12",y1:"16",y2:"16"}],["line",{x1:"12",x2:"12",y1:"8",y2:"8"}]];var q9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"12",r:"1"}]];var E9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 10h10"}],["path",{d:"M7 14h10"}]];var C9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"M9 17c2 0 2.8-1 2.8-2.8V10c0-2 1-3.3 3.2-3"}],["path",{d:"M9 11.2h5.7"}]];var x9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 7v7"}],["path",{d:"M12 7v4"}],["path",{d:"M16 7v9"}]];var w9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7v10"}],["path",{d:"M11 7v10"}],["path",{d:"m15 7 2 10"}]];var U9=[["path",{d:"M8 16V8.5a.5.5 0 0 1 .9-.3l2.7 3.599a.5.5 0 0 0 .8 0l2.7-3.6a.5.5 0 0 1 .9.3V16"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var M9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 8h10"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h10"}]];var R9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}]];var j9=[["path",{d:"M12.034 12.681a.498.498 0 0 1 .647-.647l9 3.5a.5.5 0 0 1-.033.943l-3.444 1.068a1 1 0 0 0-.66.66l-1.067 3.443a.5.5 0 0 1-.943.033z"}],["path",{d:"M21 11V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h6"}]];var L9=[["path",{d:"M3.6 3.6A2 2 0 0 1 5 3h14a2 2 0 0 1 2 2v14a2 2 0 0 1-.59 1.41"}],["path",{d:"M3 8.7V19a2 2 0 0 0 2 2h10.3"}],["path",{d:"m2 2 20 20"}],["path",{d:"M13 13a3 3 0 1 0 0-6H9v2"}],["path",{d:"M9 17v-2.3"}]];var y9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M9 17V7h4a3 3 0 0 1 0 6H9"}]];var S8=[["path",{d:"M12 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-7"}],["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"}]];var bE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"10",x2:"10",y1:"15",y2:"9"}],["line",{x1:"14",x2:"14",y1:"15",y2:"9"}]];var f9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"M9 9h.01"}],["path",{d:"M15 15h.01"}]];var k9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M7 7h10"}],["path",{d:"M10 7v10"}],["path",{d:"M16 17a2 2 0 0 1-2-2V7"}]];var b9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M12 12H9.5a2.5 2.5 0 0 1 0-5H17"}],["path",{d:"M12 7v10"}],["path",{d:"M16 7v10"}]];var h9=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["path",{d:"M9 9.003a1 1 0 0 1 1.517-.859l4.997 2.997a1 1 0 0 1 0 1.718l-4.997 2.997A1 1 0 0 1 9 14.996z"}]];var v9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M8 12h8"}],["path",{d:"M12 8v8"}]];var $9=[["path",{d:"M12 7v4"}],["path",{d:"M7.998 9.003a5 5 0 1 0 8-.005"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var hE=[["path",{d:"M7 12h2l2 5 2-10h4"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var g9=[["rect",{width:"20",height:"20",x:"2",y:"2",rx:"2"}],["circle",{cx:"8",cy:"8",r:"2"}],["path",{d:"M9.414 9.414 12 12"}],["path",{d:"M14.8 14.8 18 18"}],["circle",{cx:"8",cy:"16",r:"2"}],["path",{d:"m18 6-8.586 8.586"}]];var vE=[["path",{d:"M21 11a8 8 0 0 0-8-8"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4"}]];var _9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M16 8.9V7H8l4 5-4 5h8v-1.9"}]];var m9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["line",{x1:"9",x2:"15",y1:"15",y2:"9"}]];var u9=[["path",{d:"M8 19H5c-1 0-2-1-2-2V7c0-1 1-2 2-2h3"}],["path",{d:"M16 5h3c1 0 2 1 2 2v10c0 1-1 2-2 2h-3"}],["line",{x1:"12",x2:"12",y1:"4",y2:"20"}]];var d9=[["path",{d:"M5 8V5c0-1 1-2 2-2h10c1 0 2 1 2 2v3"}],["path",{d:"M19 16v3c0 1-1 2-2 2H7c-1 0-2-1-2-2v-3"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var $E=[["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}],["rect",{x:"8",y:"8",width:"8",height:"8",rx:"1"}]];var gE=[["path",{d:"M4 10c-1.1 0-2-.9-2-2V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["path",{d:"M10 16c-1.1 0-2-.9-2-2v-4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2"}],["rect",{width:"8",height:"8",x:"14",y:"14",rx:"2"}]];var _E=[["path",{d:"M11.035 7.69a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["rect",{x:"3",y:"3",width:"18",height:"18",rx:"2"}]];var mE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["rect",{x:"9",y:"9",width:"6",height:"6",rx:"1"}]];var c9=[["path",{d:"m7 11 2-2-2-2"}],["path",{d:"M11 13h4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}]];var p9=[["path",{d:"M18 21a6 6 0 0 0-12 0"}],["circle",{cx:"12",cy:"11",r:"4"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var n9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 21v-2a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2"}]];var i9=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["path",{d:"m15 9-6 6"}],["path",{d:"m9 9 6 6"}]];var uE=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var dE=[["path",{d:"M16 12v2a2 2 0 0 1-2 2H9a1 1 0 0 0-1 1v3a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V10a2 2 0 0 0-2-2h0"}],["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 1-1 1h-5a2 2 0 0 0-2 2v2"}]];var cE=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M16 22h-2"}],["path",{d:"M16 4a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v10a2 2 0 0 0 2 2h3a1 1 0 0 0 1-1v-5a2 2 0 0 1 2-2h5a1 1 0 0 0 1-1z"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}]];var pE=[["path",{d:"M10 22a2 2 0 0 1-2-2"}],["path",{d:"M14 2a2 2 0 0 1 2 2"}],["path",{d:"M16 22h-2"}],["path",{d:"M2 10V8"}],["path",{d:"M2 4a2 2 0 0 1 2-2"}],["path",{d:"M20 8a2 2 0 0 1 2 2"}],["path",{d:"M22 14v2"}],["path",{d:"M22 20a2 2 0 0 1-2 2"}],["path",{d:"M4 16a2 2 0 0 1-2-2"}],["path",{d:"M8 10a2 2 0 0 1 2-2h5a1 1 0 0 1 1 1v5a2 2 0 0 1-2 2H9a1 1 0 0 1-1-1z"}],["path",{d:"M8 2h2"}]];var nE=[["path",{d:"M4 16a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2v3a1 1 0 0 0 1 1h3a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H10a2 2 0 0 1-2-2v-3a1 1 0 0 0-1-1z"}]];var iE=[["path",{d:"M13.77 3.043a34 34 0 0 0-3.54 0"}],["path",{d:"M13.771 20.956a33 33 0 0 1-3.541.001"}],["path",{d:"M20.18 17.74c-.51 1.15-1.29 1.93-2.439 2.44"}],["path",{d:"M20.18 6.259c-.51-1.148-1.291-1.929-2.44-2.438"}],["path",{d:"M20.957 10.23a33 33 0 0 1 0 3.54"}],["path",{d:"M3.043 10.23a34 34 0 0 0 .001 3.541"}],["path",{d:"M6.26 20.179c-1.15-.508-1.93-1.29-2.44-2.438"}],["path",{d:"M6.26 3.82c-1.149.51-1.93 1.291-2.44 2.44"}]];var lE=[["path",{d:"M12 3c7.2 0 9 1.8 9 9s-1.8 9-9 9-9-1.8-9-9 1.8-9 9-9"}]];var sE=[["path",{d:"M15.236 22a3 3 0 0 0-2.2-5"}],["path",{d:"M16 20a3 3 0 0 1 3-3h1a2 2 0 0 0 2-2v-2a4 4 0 0 0-4-4V4"}],["path",{d:"M18 13h.01"}],["path",{d:"M18 6a4 4 0 0 0-4 4 7 7 0 0 0-7 7c0-5 4-5 4-10.5a4.5 4.5 0 1 0-9 0 2.5 2.5 0 0 0 5 0C7 10 3 11 3 17c0 2.8 2.2 5 5 5h10"}]];var rE=[["path",{d:"M14 13V8.5C14 7 15 7 15 5a3 3 0 0 0-6 0c0 2 1 2 1 3.5V13"}],["path",{d:"M20 15.5a2.5 2.5 0 0 0-2.5-2.5h-11A2.5 2.5 0 0 0 4 15.5V17a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1z"}],["path",{d:"M5 22h14"}]];var aE=[["path",{d:"M12 18.338a2.1 2.1 0 0 0-.987.244L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.12 2.12 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.12 2.12 0 0 0 1.597-1.16l2.309-4.679A.53.53 0 0 1 12 2"}]];var tE=[["path",{d:"M8.34 8.34 2 9.27l5 4.87L5.82 21 12 17.77 18.18 21l-.59-3.43"}],["path",{d:"M18.42 12.76 22 9.27l-6.91-1L12 2l-1.44 2.91"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var oE=[["path",{d:"M11.525 2.295a.53.53 0 0 1 .95 0l2.31 4.679a2.123 2.123 0 0 0 1.595 1.16l5.166.756a.53.53 0 0 1 .294.904l-3.736 3.638a2.123 2.123 0 0 0-.611 1.878l.882 5.14a.53.53 0 0 1-.771.56l-4.618-2.428a2.122 2.122 0 0 0-1.973 0L6.396 21.01a.53.53 0 0 1-.77-.56l.881-5.139a2.122 2.122 0 0 0-.611-1.879L2.16 9.795a.53.53 0 0 1 .294-.906l5.165-.755a2.122 2.122 0 0 0 1.597-1.16z"}]];var eE=[["path",{d:"M13.971 4.285A2 2 0 0 1 17 6v12a2 2 0 0 1-3.029 1.715l-9.997-5.998a2 2 0 0 1-.003-3.432z"}],["path",{d:"M21 20V4"}]];var ZC=[["path",{d:"M10.029 4.285A2 2 0 0 0 7 6v12a2 2 0 0 0 3.029 1.715l9.997-5.998a2 2 0 0 0 .003-3.432z"}],["path",{d:"M3 4v16"}]];var JC=[["path",{d:"M11 2v2"}],["path",{d:"M5 2v2"}],["path",{d:"M5 3H4a2 2 0 0 0-2 2v4a6 6 0 0 0 12 0V5a2 2 0 0 0-2-2h-1"}],["path",{d:"M8 15a6 6 0 0 0 12 0v-3"}],["circle",{cx:"20",cy:"10",r:"2"}]];var KC=[["path",{d:"M15.5 3H5a2 2 0 0 0-2 2v14c0 1.1.9 2 2 2h14a2 2 0 0 0 2-2V8.5L15.5 3Z"}],["path",{d:"M14 3v4a2 2 0 0 0 2 2h4"}],["path",{d:"M8 13h.01"}],["path",{d:"M16 13h.01"}],["path",{d:"M10 16s.8 1 2 1c1.3 0 2-1 2-1"}]];var YC=[["path",{d:"M16 3H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V8Z"}],["path",{d:"M15 3v4a2 2 0 0 0 2 2h4"}]];var XC=[["path",{d:"M15 21v-5a1 1 0 0 0-1-1h-4a1 1 0 0 0-1 1v5"}],["path",{d:"M17.774 10.31a1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.451 0 1.12 1.12 0 0 0-1.548 0 2.5 2.5 0 0 1-3.452 0 1.12 1.12 0 0 0-1.549 0 2.5 2.5 0 0 1-3.77-3.248l2.889-4.184A2 2 0 0 1 7 2h10a2 2 0 0 1 1.653.873l2.895 4.192a2.5 2.5 0 0 1-3.774 3.244"}],["path",{d:"M4 10.95V19a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-8.05"}]];var WC=[["rect",{width:"20",height:"6",x:"2",y:"4",rx:"2"}],["rect",{width:"20",height:"6",x:"2",y:"14",rx:"2"}]];var QC=[["rect",{width:"6",height:"20",x:"4",y:"2",rx:"2"}],["rect",{width:"6",height:"20",x:"14",y:"2",rx:"2"}]];var VC=[["path",{d:"M16 4H9a3 3 0 0 0-2.83 4"}],["path",{d:"M14 12a4 4 0 0 1 0 8H6"}],["line",{x1:"4",x2:"20",y1:"12",y2:"12"}]];var GC=[["path",{d:"m4 5 8 8"}],["path",{d:"m12 5-8 8"}],["path",{d:"M20 19h-4c0-1.5.44-2 1.5-2.5S20 15.33 20 14c0-.47-.17-.93-.48-1.29a2.11 2.11 0 0 0-2.62-.44c-.42.24-.74.62-.9 1.07"}]];var IC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 4h.01"}],["path",{d:"M20 12h.01"}],["path",{d:"M12 20h.01"}],["path",{d:"M4 12h.01"}],["path",{d:"M17.657 6.343h.01"}],["path",{d:"M17.657 17.657h.01"}],["path",{d:"M6.343 17.657h.01"}],["path",{d:"M6.343 6.343h.01"}]];var zC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 3v1"}],["path",{d:"M12 20v1"}],["path",{d:"M3 12h1"}],["path",{d:"M20 12h1"}],["path",{d:"m18.364 5.636-.707.707"}],["path",{d:"m6.343 17.657-.707.707"}],["path",{d:"m5.636 5.636.707.707"}],["path",{d:"m17.657 17.657.707.707"}]];var NC=[["path",{d:"M12 2v2"}],["path",{d:"M14.837 16.385a6 6 0 1 1-7.223-7.222c.624-.147.97.66.715 1.248a4 4 0 0 0 5.26 5.259c.589-.255 1.396.09 1.248.715"}],["path",{d:"M16 12a4 4 0 0 0-4-4"}],["path",{d:"m19 5-1.256 1.256"}],["path",{d:"M20 12h2"}]];var FC=[["path",{d:"M10 21v-1"}],["path",{d:"M10 4V3"}],["path",{d:"M10 9a3 3 0 0 0 0 6"}],["path",{d:"m14 20 1.25-2.5L18 18"}],["path",{d:"m14 4 1.25 2.5L18 6"}],["path",{d:"m17 21-3-6 1.5-3H22"}],["path",{d:"m17 3-3 6 1.5 3"}],["path",{d:"M2 12h1"}],["path",{d:"m20 10-1.5 2 1.5 2"}],["path",{d:"m3.64 18.36.7-.7"}],["path",{d:"m4.34 6.34-.7-.7"}]];var HC=[["circle",{cx:"12",cy:"12",r:"4"}],["path",{d:"M12 2v2"}],["path",{d:"M12 20v2"}],["path",{d:"m4.93 4.93 1.41 1.41"}],["path",{d:"m17.66 17.66 1.41 1.41"}],["path",{d:"M2 12h2"}],["path",{d:"M20 12h2"}],["path",{d:"m6.34 17.66-1.41 1.41"}],["path",{d:"m19.07 4.93-1.41 1.41"}]];var DC=[["path",{d:"M12 2v8"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m8 6 4-4 4 4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var BC=[["path",{d:"M12 10V2"}],["path",{d:"m4.93 10.93 1.41 1.41"}],["path",{d:"M2 18h2"}],["path",{d:"M20 18h2"}],["path",{d:"m19.07 10.93-1.41 1.41"}],["path",{d:"M22 22H2"}],["path",{d:"m16 6-4 4-4-4"}],["path",{d:"M16 18a4 4 0 0 0-8 0"}]];var OC=[["path",{d:"m4 19 8-8"}],["path",{d:"m12 19-8-8"}],["path",{d:"M20 12h-4c0-1.5.442-2 1.5-2.5S20 8.334 20 7.002c0-.472-.17-.93-.484-1.29a2.105 2.105 0 0 0-2.617-.436c-.42.239-.738.614-.899 1.06"}]];var TC=[["path",{d:"M11 17a4 4 0 0 1-8 0V5a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2Z"}],["path",{d:"M16.7 13H19a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2H7"}],["path",{d:"M 7 17h.01"}],["path",{d:"m11 8 2.3-2.3a2.4 2.4 0 0 1 3.404.004L18.6 7.6a2.4 2.4 0 0 1 .026 3.434L9.9 19.8"}]];var PC=[["path",{d:"M10 21V3h8"}],["path",{d:"M6 16h9"}],["path",{d:"M10 9.5h7"}]];var SC=[["path",{d:"M11 19H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5"}],["path",{d:"M13 5h7a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-5"}],["circle",{cx:"12",cy:"12",r:"3"}],["path",{d:"m18 22-3-3 3-3"}],["path",{d:"m6 2 3 3-3 3"}]];var AC=[["path",{d:"m11 19-6-6"}],["path",{d:"m5 21-2-2"}],["path",{d:"m8 16-4 4"}],["path",{d:"M9.5 17.5 21 6V3h-3L6.5 14.5"}]];var qC=[["polyline",{points:"14.5 17.5 3 6 3 3 6 3 17.5 14.5"}],["line",{x1:"13",x2:"19",y1:"19",y2:"13"}],["line",{x1:"16",x2:"20",y1:"16",y2:"20"}],["line",{x1:"19",x2:"21",y1:"21",y2:"19"}],["polyline",{points:"14.5 6.5 18 3 21 3 21 6 17.5 9.5"}],["line",{x1:"5",x2:"9",y1:"14",y2:"18"}],["line",{x1:"7",x2:"4",y1:"17",y2:"20"}],["line",{x1:"3",x2:"5",y1:"19",y2:"21"}]];var EC=[["path",{d:"m18 2 4 4"}],["path",{d:"m17 7 3-3"}],["path",{d:"M19 9 8.7 19.3c-1 1-2.5 1-3.4 0l-.6-.6c-1-1-1-2.5 0-3.4L15 5"}],["path",{d:"m9 11 4 4"}],["path",{d:"m5 19-3 3"}],["path",{d:"m14 4 6 6"}]];var CC=[["path",{d:"M9 3H5a2 2 0 0 0-2 2v4m6-6h10a2 2 0 0 1 2 2v4M9 3v18m0 0h10a2 2 0 0 0 2-2V9M9 21H5a2 2 0 0 1-2-2V9m0 0h18"}]];var xC=[["path",{d:"M12 21v-6"}],["path",{d:"M12 9V3"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var wC=[["path",{d:"M12 15V9"}],["path",{d:"M3 15h18"}],["path",{d:"M3 9h18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}]];var UC=[["path",{d:"M14 14v2"}],["path",{d:"M14 20v2"}],["path",{d:"M14 2v2"}],["path",{d:"M14 8v2"}],["path",{d:"M2 15h8"}],["path",{d:"M2 3h6a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H2"}],["path",{d:"M2 9h8"}],["path",{d:"M22 15h-4"}],["path",{d:"M22 3h-2a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h2"}],["path",{d:"M22 9h-4"}],["path",{d:"M5 3v18"}]];var MC=[["path",{d:"M16 5H3"}],["path",{d:"M16 12H3"}],["path",{d:"M16 19H3"}],["path",{d:"M21 5h.01"}],["path",{d:"M21 12h.01"}],["path",{d:"M21 19h.01"}]];var RC=[["path",{d:"M15 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M21 9H3"}],["path",{d:"M21 15H3"}]];var jC=[["path",{d:"M14 10h2"}],["path",{d:"M15 22v-8"}],["path",{d:"M15 2v4"}],["path",{d:"M2 10h2"}],["path",{d:"M20 10h2"}],["path",{d:"M3 19h18"}],["path",{d:"M3 22v-6a2 2 135 0 1 2-2h14a2 2 45 0 1 2 2v6"}],["path",{d:"M3 2v2a2 2 45 0 0 2 2h14a2 2 135 0 0 2-2V2"}],["path",{d:"M8 10h2"}],["path",{d:"M9 22v-8"}],["path",{d:"M9 2v4"}]];var LC=[["path",{d:"M12 3v18"}],["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9h18"}],["path",{d:"M3 15h18"}]];var yC=[["rect",{width:"10",height:"14",x:"3",y:"8",rx:"2"}],["path",{d:"M5 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v16a2 2 0 0 1-2 2h-2.4"}],["path",{d:"M8 18h.01"}]];var fC=[["rect",{width:"16",height:"20",x:"4",y:"2",rx:"2",ry:"2"}],["line",{x1:"12",x2:"12.01",y1:"18",y2:"18"}]];var kC=[["circle",{cx:"7",cy:"7",r:"5"}],["circle",{cx:"17",cy:"17",r:"5"}],["path",{d:"M12 17h10"}],["path",{d:"m3.46 10.54 7.08-7.08"}]];var bC=[["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"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}]];var hC=[["path",{d:"M13.172 2a2 2 0 0 1 1.414.586l6.71 6.71a2.4 2.4 0 0 1 0 3.408l-4.592 4.592a2.4 2.4 0 0 1-3.408 0l-6.71-6.71A2 2 0 0 1 6 9.172V3a1 1 0 0 1 1-1z"}],["path",{d:"M2 7v6.172a2 2 0 0 0 .586 1.414l6.71 6.71a2.4 2.4 0 0 0 3.191.193"}],["circle",{cx:"10.5",cy:"6.5",r:".5",fill:"currentColor"}]];var vC=[["path",{d:"M4 4v16"}]];var $C=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}]];var gC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}]];var _C=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}]];var mC=[["path",{d:"M4 4v16"}],["path",{d:"M9 4v16"}],["path",{d:"M14 4v16"}],["path",{d:"M19 4v16"}],["path",{d:"M22 6 2 18"}]];var uC=[["circle",{cx:"12",cy:"12",r:"10"}],["circle",{cx:"12",cy:"12",r:"6"}],["circle",{cx:"12",cy:"12",r:"2"}]];var dC=[["circle",{cx:"17",cy:"4",r:"2"}],["path",{d:"M15.59 5.41 5.41 15.59"}],["circle",{cx:"4",cy:"17",r:"2"}],["path",{d:"M12 22s-4-9-1.5-11.5S22 12 22 12"}]];var cC=[["path",{d:"m10.065 12.493-6.18 1.318a.934.934 0 0 1-1.108-.702l-.537-2.15a1.07 1.07 0 0 1 .691-1.265l13.504-4.44"}],["path",{d:"m13.56 11.747 4.332-.924"}],["path",{d:"m16 21-3.105-6.21"}],["path",{d:"M16.485 5.94a2 2 0 0 1 1.455-2.425l1.09-.272a1 1 0 0 1 1.212.727l1.515 6.06a1 1 0 0 1-.727 1.213l-1.09.272a2 2 0 0 1-2.425-1.455z"}],["path",{d:"m6.158 8.633 1.114 4.456"}],["path",{d:"m8 21 3.105-6.21"}],["circle",{cx:"12",cy:"13",r:"2"}]];var pC=[["circle",{cx:"4",cy:"4",r:"2"}],["path",{d:"m14 5 3-3 3 3"}],["path",{d:"m14 10 3-3 3 3"}],["path",{d:"M17 14V2"}],["path",{d:"M17 14H7l-5 8h20Z"}],["path",{d:"M8 14v8"}],["path",{d:"m9 14 5 8"}]];var nC=[["path",{d:"M3.5 21 14 3"}],["path",{d:"M20.5 21 10 3"}],["path",{d:"M15.5 21 12 15l-3.5 6"}],["path",{d:"M2 21h20"}]];var iC=[["path",{d:"M12 19h8"}],["path",{d:"m4 17 6-6-6-6"}]];var l9=[["path",{d:"M21 7 6.82 21.18a2.83 2.83 0 0 1-3.99-.01a2.83 2.83 0 0 1 0-4L17 3"}],["path",{d:"m16 2 6 6"}],["path",{d:"M12 16H4"}]];var lC=[["path",{d:"M9 2v17.5A2.5 2.5 0 0 1 6.5 22A2.5 2.5 0 0 1 4 19.5V2"}],["path",{d:"M20 2v17.5a2.5 2.5 0 0 1-2.5 2.5a2.5 2.5 0 0 1-2.5-2.5V2"}],["path",{d:"M3 2h7"}],["path",{d:"M14 2h7"}],["path",{d:"M9 16H4"}],["path",{d:"M20 16h-5"}]];var sC=[["path",{d:"M14.5 2v17.5c0 1.4-1.1 2.5-2.5 2.5c-1.4 0-2.5-1.1-2.5-2.5V2"}],["path",{d:"M8.5 2h7"}],["path",{d:"M14.5 16h-5"}]];var s9=[["path",{d:"M21 5H3"}],["path",{d:"M17 12H7"}],["path",{d:"M19 19H5"}]];var r9=[["path",{d:"M3 5h18"}],["path",{d:"M3 12h18"}],["path",{d:"M3 19h18"}]];var a9=[["path",{d:"M21 5H3"}],["path",{d:"M21 12H9"}],["path",{d:"M21 19H7"}]];var I5=[["path",{d:"M21 5H3"}],["path",{d:"M15 12H3"}],["path",{d:"M17 19H3"}]];var rC=[["path",{d:"M12 20h-1a2 2 0 0 1-2-2 2 2 0 0 1-2 2H6"}],["path",{d:"M13 8h7a2 2 0 0 1 2 2v4a2 2 0 0 1-2 2h-7"}],["path",{d:"M5 16H4a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2h1"}],["path",{d:"M6 4h1a2 2 0 0 1 2 2 2 2 0 0 1 2-2h1"}],["path",{d:"M9 6v12"}]];var t9=[["path",{d:"M15 5h6"}],["path",{d:"M15 12h6"}],["path",{d:"M3 19h18"}],["path",{d:"m3 12 3.553-7.724a.5.5 0 0 1 .894 0L11 12"}],["path",{d:"M3.92 10h6.16"}]];var aC=[["path",{d:"M17 22h-1a4 4 0 0 1-4-4V6a4 4 0 0 1 4-4h1"}],["path",{d:"M7 22h1a4 4 0 0 0 4-4v-1"}],["path",{d:"M7 2h1a4 4 0 0 1 4 4v1"}]];var tC=[["path",{d:"M17 5H3"}],["path",{d:"M21 12H8"}],["path",{d:"M21 19H8"}],["path",{d:"M3 12v7"}]];var oC=[["path",{d:"M21 5H3"}],["path",{d:"M10 12H3"}],["path",{d:"M10 19H3"}],["circle",{cx:"17",cy:"15",r:"3"}],["path",{d:"m21 19-1.9-1.9"}]];var o9=[["path",{d:"M14 21h1"}],["path",{d:"M14 3h1"}],["path",{d:"M19 3a2 2 0 0 1 2 2"}],["path",{d:"M21 14v1"}],["path",{d:"M21 19a2 2 0 0 1-2 2"}],["path",{d:"M21 9v1"}],["path",{d:"M3 14v1"}],["path",{d:"M3 9v1"}],["path",{d:"M5 21a2 2 0 0 1-2-2"}],["path",{d:"M5 3a2 2 0 0 0-2 2"}],["path",{d:"M7 12h10"}],["path",{d:"M7 16h6"}],["path",{d:"M7 8h8"}],["path",{d:"M9 21h1"}],["path",{d:"M9 3h1"}]];var e9=[["path",{d:"m16 16-3 3 3 3"}],["path",{d:"M3 12h14.5a1 1 0 0 1 0 7H13"}],["path",{d:"M3 19h6"}],["path",{d:"M3 5h18"}]];var eC=[["path",{d:"M2 10s3-3 3-8"}],["path",{d:"M22 10s-3-3-3-8"}],["path",{d:"M10 2c0 4.4-3.6 8-8 8"}],["path",{d:"M14 2c0 4.4 3.6 8 8 8"}],["path",{d:"M2 10s2 2 2 5"}],["path",{d:"M22 10s-2 2-2 5"}],["path",{d:"M8 15h8"}],["path",{d:"M2 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}],["path",{d:"M14 22v-1a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v1"}]];var Zx=[["path",{d:"m10 20-1.25-2.5L6 18"}],["path",{d:"M10 4 8.75 6.5 6 6"}],["path",{d:"M10.585 15H10"}],["path",{d:"M2 12h6.5L10 9"}],["path",{d:"M20 14.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0z"}],["path",{d:"m4 10 1.5 2L4 14"}],["path",{d:"m7 21 3-6-1.5-3"}],["path",{d:"m7 3 3 6h2"}]];var Jx=[["path",{d:"M12 9a4 4 0 0 0-2 7.5"}],["path",{d:"M12 3v2"}],["path",{d:"m6.6 18.4-1.4 1.4"}],["path",{d:"M20 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}],["path",{d:"M4 13H2"}],["path",{d:"M6.34 7.34 4.93 5.93"}]];var Kx=[["path",{d:"M14 4v10.54a4 4 0 1 1-4 0V4a2 2 0 0 1 4 0Z"}]];var Yx=[["path",{d:"M17 14V2"}],["path",{d:"M9 18.12 10 14H4.17a2 2 0 0 1-1.92-2.56l2.33-8A2 2 0 0 1 6.5 2H20a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2h-2.76a2 2 0 0 0-1.79 1.11L12 22a3.13 3.13 0 0 1-3-3.88Z"}]];var Xx=[["path",{d:"M7 10v12"}],["path",{d:"M15 5.88 14 10h5.83a2 2 0 0 1 1.92 2.56l-2.33 8A2 2 0 0 1 17.5 22H4a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h2.76a2 2 0 0 0 1.79-1.11L12 2a3.13 3.13 0 0 1 3 3.88Z"}]];var Wx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9 12 2 2 4-4"}]];var Qx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}]];var Vx=[["path",{d:"M2 9a3 3 0 1 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 1 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 9h.01"}],["path",{d:"m15 9-6 6"}],["path",{d:"M15 15h.01"}]];var Gx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M9 12h6"}],["path",{d:"M12 9v6"}]];var Ix=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}]];var zx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"m9.5 14.5 5-5"}],["path",{d:"m9.5 9.5 5 5"}]];var Nx=[["path",{d:"M2 9a3 3 0 0 1 0 6v2a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2v-2a3 3 0 0 1 0-6V7a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2Z"}],["path",{d:"M13 5v2"}],["path",{d:"M13 17v2"}],["path",{d:"M13 11v2"}]];var Fx=[["path",{d:"M10.5 17h1.227a2 2 0 0 0 1.345-.52L18 12"}],["path",{d:"m12 13.5 3.75.5"}],["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var Hx=[["path",{d:"m4.5 8 10.58-5.06a1 1 0 0 1 1.342.488L18.5 8"}],["path",{d:"M6 10V8"}],["path",{d:"M6 14v1"}],["path",{d:"M6 19v2"}],["rect",{x:"2",y:"8",width:"20",height:"13",rx:"2"}]];var Dx=[["path",{d:"M10 2h4"}],["path",{d:"M4.6 11a8 8 0 0 0 1.7 8.7 8 8 0 0 0 8.7 1.7"}],["path",{d:"M7.4 7.4a8 8 0 0 1 10.3 1 8 8 0 0 1 .9 10.2"}],["path",{d:"m2 2 20 20"}],["path",{d:"M12 12v-2"}]];var Bx=[["path",{d:"M10 2h4"}],["path",{d:"M12 14v-4"}],["path",{d:"M4 13a8 8 0 0 1 8-7 8 8 0 1 1-5.3 14L4 17.6"}],["path",{d:"M9 17H4v5"}]];var Ox=[["line",{x1:"10",x2:"14",y1:"2",y2:"2"}],["line",{x1:"12",x2:"15",y1:"14",y2:"11"}],["circle",{cx:"12",cy:"14",r:"8"}]];var Tx=[["circle",{cx:"9",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Px=[["circle",{cx:"15",cy:"12",r:"3"}],["rect",{width:"20",height:"14",x:"2",y:"5",rx:"7"}]];var Sx=[["path",{d:"M7 12h13a1 1 0 0 1 1 1 5 5 0 0 1-5 5h-.598a.5.5 0 0 0-.424.765l1.544 2.47a.5.5 0 0 1-.424.765H5.402a.5.5 0 0 1-.424-.765L7 18"}],["path",{d:"M8 18a5 5 0 0 1-5-5V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v8"}]];var Ax=[["path",{d:"M10 15h4"}],["path",{d:"m14.817 10.995-.971-1.45 1.034-1.232a2 2 0 0 0-2.025-3.238l-1.82.364L9.91 3.885a2 2 0 0 0-3.625.748L6.141 6.55l-1.725.426a2 2 0 0 0-.19 3.756l.657.27"}],["path",{d:"m18.822 10.995 2.26-5.38a1 1 0 0 0-.557-1.318L16.954 2.9a1 1 0 0 0-1.281.533l-.924 2.122"}],["path",{d:"M4 12.006A1 1 0 0 1 4.994 11H19a1 1 0 0 1 1 1v7a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2z"}]];var qx=[["path",{d:"M21 4H3"}],["path",{d:"M18 8H6"}],["path",{d:"M19 12H9"}],["path",{d:"M16 16h-6"}],["path",{d:"M11 20H9"}]];var Ex=[["path",{d:"M12 20v-6"}],["path",{d:"M19.656 14H22"}],["path",{d:"M2 14h12"}],["path",{d:"m2 2 20 20"}],["path",{d:"M20 20H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2"}],["path",{d:"M9.656 4H20a2 2 0 0 1 2 2v10.344"}]];var Cx=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 14h20"}],["path",{d:"M12 20v-6"}]];var xx=[["ellipse",{cx:"12",cy:"11",rx:"3",ry:"2"}],["ellipse",{cx:"12",cy:"12.5",rx:"10",ry:"8.5"}]];var wx=[["path",{d:"M18.2 12.27 20 6H4l1.8 6.27a1 1 0 0 0 .95.73h10.5a1 1 0 0 0 .96-.73Z"}],["path",{d:"M8 13v9"}],["path",{d:"M16 22v-9"}],["path",{d:"m9 6 1 7"}],["path",{d:"m15 6-1 7"}],["path",{d:"M12 6V2"}],["path",{d:"M13 2h-2"}]];var Ux=[["rect",{width:"18",height:"12",x:"3",y:"8",rx:"1"}],["path",{d:"M10 8V5c0-.6-.4-1-1-1H6a1 1 0 0 0-1 1v3"}],["path",{d:"M19 8V5c0-.6-.4-1-1-1h-3a1 1 0 0 0-1 1v3"}]];var Mx=[["path",{d:"m10 11 11 .9a1 1 0 0 1 .8 1.1l-.665 4.158a1 1 0 0 1-.988.842H20"}],["path",{d:"M16 18h-5"}],["path",{d:"M18 5a1 1 0 0 0-1 1v5.573"}],["path",{d:"M3 4h8.129a1 1 0 0 1 .99.863L13 11.246"}],["path",{d:"M4 11V4"}],["path",{d:"M7 15h.01"}],["path",{d:"M8 10.1V4"}],["circle",{cx:"18",cy:"18",r:"2"}],["circle",{cx:"7",cy:"15",r:"5"}]];var Rx=[["path",{d:"M16.05 10.966a5 2.5 0 0 1-8.1 0"}],["path",{d:"m16.923 14.049 4.48 2.04a1 1 0 0 1 .001 1.831l-8.574 3.9a2 2 0 0 1-1.66 0l-8.574-3.91a1 1 0 0 1 0-1.83l4.484-2.04"}],["path",{d:"M16.949 14.14a5 2.5 0 1 1-9.9 0L10.063 3.5a2 2 0 0 1 3.874 0z"}],["path",{d:"M9.194 6.57a5 2.5 0 0 0 5.61 0"}]];var jx=[["path",{d:"M8 3.1V7a4 4 0 0 0 8 0V3.1"}],["path",{d:"m9 15-1-1"}],["path",{d:"m15 15 1-1"}],["path",{d:"M9 19c-2.8 0-5-2.2-5-5v-4a8 8 0 0 1 16 0v4c0 2.8-2.2 5-5 5Z"}],["path",{d:"m8 19-2 3"}],["path",{d:"m16 19 2 3"}]];var Lx=[["path",{d:"M2 22V12a10 10 0 1 1 20 0v10"}],["path",{d:"M15 6.8v1.4a3 2.8 0 1 1-6 0V6.8"}],["path",{d:"M10 15h.01"}],["path",{d:"M14 15h.01"}],["path",{d:"M10 19a4 4 0 0 1-4-4v-3a6 6 0 1 1 12 0v3a4 4 0 0 1-4 4Z"}],["path",{d:"m9 19-2 3"}],["path",{d:"m15 19 2 3"}]];var ZZ=[["rect",{width:"16",height:"16",x:"4",y:"3",rx:"2"}],["path",{d:"M4 11h16"}],["path",{d:"M12 3v8"}],["path",{d:"m8 19-2 3"}],["path",{d:"m18 22-2-3"}],["path",{d:"M8 15h.01"}],["path",{d:"M16 15h.01"}]];var yx=[["path",{d:"M2 17 17 2"}],["path",{d:"m2 14 8 8"}],["path",{d:"m5 11 8 8"}],["path",{d:"m8 8 8 8"}],["path",{d:"m11 5 8 8"}],["path",{d:"m14 2 8 8"}],["path",{d:"M7 22 22 7"}]];var fx=[["path",{d:"M12 16v6"}],["path",{d:"M14 20h-4"}],["path",{d:"M18 2h4v4"}],["path",{d:"m2 2 7.17 7.17"}],["path",{d:"M2 5.355V2h3.357"}],["path",{d:"m22 2-7.17 7.17"}],["path",{d:"M8 5 5 8"}],["circle",{cx:"12",cy:"12",r:"4"}]];var kx=[["path",{d:"M10 11v6"}],["path",{d:"M14 11v6"}],["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var bx=[["path",{d:"M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6"}],["path",{d:"M3 6h18"}],["path",{d:"M8 6V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"}]];var hx=[["path",{d:"M8 19a4 4 0 0 1-2.24-7.32A3.5 3.5 0 0 1 9 6.03V6a3 3 0 1 1 6 0v.04a3.5 3.5 0 0 1 3.24 5.65A4 4 0 0 1 16 19Z"}],["path",{d:"M12 19v3"}]];var JZ=[["path",{d:"M13 8c0-2.76-2.46-5-5.5-5S2 5.24 2 8h2l1-1 1 1h4"}],["path",{d:"M13 7.14A5.82 5.82 0 0 1 16.5 6c3.04 0 5.5 2.24 5.5 5h-3l-1-1-1 1h-3"}],["path",{d:"M5.89 9.71c-2.15 2.15-2.3 5.47-.35 7.43l4.24-4.25.7-.7.71-.71 2.12-2.12c-1.95-1.96-5.27-1.8-7.42.35"}],["path",{d:"M11 15.5c.5 2.5-.17 4.5-1 6.5h4c2-5.5-.5-12-1-14"}]];var vx=[["path",{d:"m17 14 3 3.3a1 1 0 0 1-.7 1.7H4.7a1 1 0 0 1-.7-1.7L7 14h-.3a1 1 0 0 1-.7-1.7L9 9h-.2A1 1 0 0 1 8 7.3L12 3l4 4.3a1 1 0 0 1-.8 1.7H15l3 3.3a1 1 0 0 1-.7 1.7H17Z"}],["path",{d:"M12 22v-3"}]];var $x=[["path",{d:"M10 10v.2A3 3 0 0 1 8.9 16H5a3 3 0 0 1-1-5.8V10a3 3 0 0 1 6 0Z"}],["path",{d:"M7 16v6"}],["path",{d:"M13 19v3"}],["path",{d:"M12 19h8.3a1 1 0 0 0 .7-1.7L18 14h.3a1 1 0 0 0 .7-1.7L16 9h.2a1 1 0 0 0 .8-1.7L13 3l-1.4 1.5"}]];var gx=[["path",{d:"M16 17h6v-6"}],["path",{d:"m22 17-8.5-8.5-5 5L2 7"}]];var _x=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2",ry:"2"}],["rect",{width:"3",height:"9",x:"7",y:"7"}],["rect",{width:"3",height:"5",x:"14",y:"7"}]];var mx=[["path",{d:"M14.828 14.828 21 21"}],["path",{d:"M21 16v5h-5"}],["path",{d:"m21 3-9 9-4-4-6 6"}],["path",{d:"M21 8V3h-5"}]];var ux=[["path",{d:"M16 7h6v6"}],["path",{d:"m22 7-8.5 8.5-5-5L2 17"}]];var KZ=[["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"}],["path",{d:"M12 9v4"}],["path",{d:"M12 17h.01"}]];var dx=[["path",{d:"M10.17 4.193a2 2 0 0 1 3.666.013"}],["path",{d:"M14 21h2"}],["path",{d:"m15.874 7.743 1 1.732"}],["path",{d:"m18.849 12.952 1 1.732"}],["path",{d:"M21.824 18.18a2 2 0 0 1-1.835 2.824"}],["path",{d:"M4.024 21a2 2 0 0 1-1.839-2.839"}],["path",{d:"m5.136 12.952-1 1.732"}],["path",{d:"M8 21h2"}],["path",{d:"m8.102 7.743-1 1.732"}]];var cx=[["path",{d:"M13.73 4a2 2 0 0 0-3.46 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z"}]];var px=[["path",{d:"M22 18a2 2 0 0 1-2 2H3c-1.1 0-1.3-.6-.4-1.3L20.4 4.3c.9-.7 1.6-.4 1.6.7Z"}]];var nx=[["path",{d:"M10 14.66v1.626a2 2 0 0 1-.976 1.696A5 5 0 0 0 7 21.978"}],["path",{d:"M14 14.66v1.626a2 2 0 0 0 .976 1.696A5 5 0 0 1 17 21.978"}],["path",{d:"M18 9h1.5a1 1 0 0 0 0-5H18"}],["path",{d:"M4 22h16"}],["path",{d:"M6 9a6 6 0 0 0 12 0V3a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1z"}],["path",{d:"M6 9H4.5a1 1 0 0 1 0-5H6"}]];var ix=[["path",{d:"M14 19V7a2 2 0 0 0-2-2H9"}],["path",{d:"M15 19H9"}],["path",{d:"M19 19h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.62L18.3 9.38a1 1 0 0 0-.78-.38H14"}],["path",{d:"M2 13v5a1 1 0 0 0 1 1h2"}],["path",{d:"M4 3 2.15 5.15a.495.495 0 0 0 .35.86h2.15a.47.47 0 0 1 .35.86L3 9.02"}],["circle",{cx:"17",cy:"19",r:"2"}],["circle",{cx:"7",cy:"19",r:"2"}]];var lx=[["path",{d:"M14 18V6a2 2 0 0 0-2-2H4a2 2 0 0 0-2 2v11a1 1 0 0 0 1 1h2"}],["path",{d:"M15 18H9"}],["path",{d:"M19 18h2a1 1 0 0 0 1-1v-3.65a1 1 0 0 0-.22-.624l-3.48-4.35A1 1 0 0 0 17.52 8H14"}],["circle",{cx:"17",cy:"18",r:"2"}],["circle",{cx:"7",cy:"18",r:"2"}]];var sx=[["path",{d:"M15 4 5 9"}],["path",{d:"m15 8.5-10 5"}],["path",{d:"M18 12a9 9 0 0 1-9 9V3"}]];var rx=[["path",{d:"M10 12.01h.01"}],["path",{d:"M18 8v4a8 8 0 0 1-1.07 4"}],["circle",{cx:"10",cy:"12",r:"4"}],["rect",{x:"2",y:"4",width:"20",height:"16",rx:"2"}]];var ax=[["path",{d:"m12 10 2 4v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3a8 8 0 1 0-16 0v3a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-3l2-4h4Z"}],["path",{d:"M4.82 7.9 8 10"}],["path",{d:"M15.18 7.9 12 10"}],["path",{d:"M16.93 10H20a2 2 0 0 1 0 4H2"}]];var tx=[["path",{d:"M15.033 9.44a.647.647 0 0 1 0 1.12l-4.065 2.352a.645.645 0 0 1-.968-.56V7.648a.645.645 0 0 1 .967-.56z"}],["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var YZ=[["path",{d:"M7 21h10"}],["rect",{width:"20",height:"14",x:"2",y:"3",rx:"2"}]];var ox=[["path",{d:"M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"}]];var ex=[["path",{d:"m17 2-5 5-5-5"}],["rect",{width:"20",height:"15",x:"2",y:"7",rx:"2"}]];var Zw=[["path",{d:"M22 4s-.7 2.1-2 3.4c1.6 10-9.4 17.3-18 11.6 2.2.1 4.4-.6 6-2C3 15.5.5 9.6 3 5c2.2 2.6 5.6 4.1 9 4-.9-4.2 4-6.6 7-3.8 1.1 0 3-1.2 3-1.2z"}]];var Jw=[["path",{d:"M14 16.5a.5.5 0 0 0 .5.5h.5a2 2 0 0 1 0 4H9a2 2 0 0 1 0-4h.5a.5.5 0 0 0 .5-.5v-9a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5V8a2 2 0 0 1-4 0V5a2 2 0 0 1 2-2h16a2 2 0 0 1 2 2v3a2 2 0 0 1-4 0v-.5a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5Z"}]];var Kw=[["path",{d:"M12 4v16"}],["path",{d:"M4 7V5a1 1 0 0 1 1-1h14a1 1 0 0 1 1 1v2"}],["path",{d:"M9 20h6"}]];var Yw=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M18.656 13h2.336a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-12.07-7.51"}],["path",{d:"m2 2 20 20"}],["path",{d:"M5.961 5.957a10.28 10.28 0 0 0-3.922 5.769A1 1 0 0 0 3 13h10"}]];var Xw=[["path",{d:"M12 13v7a2 2 0 0 0 4 0"}],["path",{d:"M12 2v2"}],["path",{d:"M20.992 13a1 1 0 0 0 .97-1.274 10.284 10.284 0 0 0-19.923 0A1 1 0 0 0 3 13z"}]];var Ww=[["path",{d:"M6 4v6a6 6 0 0 0 12 0V4"}],["line",{x1:"4",x2:"20",y1:"20",y2:"20"}]];var Qw=[["path",{d:"M9 14 4 9l5-5"}],["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"}]];var Vw=[["path",{d:"M3 7v6h6"}],["path",{d:"M21 17a9 9 0 0 0-9-9 9 9 0 0 0-6 2.3L3 13"}]];var Gw=[["path",{d:"M21 17a9 9 0 0 0-15-6.7L3 13"}],["path",{d:"M3 7v6h6"}],["circle",{cx:"12",cy:"17",r:"1"}]];var Iw=[["path",{d:"M16 12h6"}],["path",{d:"M8 12H2"}],["path",{d:"M12 2v2"}],["path",{d:"M12 8v2"}],["path",{d:"M12 14v2"}],["path",{d:"M12 20v2"}],["path",{d:"m19 15 3-3-3-3"}],["path",{d:"m5 9-3 3 3 3"}]];var zw=[["path",{d:"M12 22v-6"}],["path",{d:"M12 8V2"}],["path",{d:"M4 12H2"}],["path",{d:"M10 12H8"}],["path",{d:"M16 12h-2"}],["path",{d:"M22 12h-2"}],["path",{d:"m15 19-3 3-3-3"}],["path",{d:"m15 5-3-3-3 3"}]];var Nw=[["rect",{width:"8",height:"6",x:"5",y:"4",rx:"1"}],["rect",{width:"8",height:"6",x:"11",y:"14",rx:"1"}]];var XZ=[["path",{d:"M14 21v-3a2 2 0 0 0-4 0v3"}],["path",{d:"M18 12h.01"}],["path",{d:"M18 16h.01"}],["path",{d:"M22 7a1 1 0 0 0-1-1h-2a2 2 0 0 1-1.143-.359L13.143 2.36a2 2 0 0 0-2.286-.001L6.143 5.64A2 2 0 0 1 5 6H3a1 1 0 0 0-1 1v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2z"}],["path",{d:"M6 12h.01"}],["path",{d:"M6 16h.01"}],["circle",{cx:"12",cy:"10",r:"2"}]];var Fw=[["path",{d:"M15 7h2a5 5 0 0 1 0 10h-2m-6 0H7A5 5 0 0 1 7 7h2"}]];var Hw=[["path",{d:"m18.84 12.25 1.72-1.71h-.02a5.004 5.004 0 0 0-.12-7.07 5.006 5.006 0 0 0-6.95 0l-1.72 1.71"}],["path",{d:"m5.17 11.75-1.71 1.71a5.004 5.004 0 0 0 .12 7.07 5.006 5.006 0 0 0 6.95 0l1.71-1.71"}],["line",{x1:"8",x2:"8",y1:"2",y2:"5"}],["line",{x1:"2",x2:"5",y1:"8",y2:"8"}],["line",{x1:"16",x2:"16",y1:"19",y2:"22"}],["line",{x1:"19",x2:"22",y1:"16",y2:"16"}]];var Dw=[["path",{d:"M12 3v12"}],["path",{d:"m17 8-5-5-5 5"}],["path",{d:"M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"}]];var Bw=[["path",{d:"m19 5 3-3"}],["path",{d:"m2 22 3-3"}],["path",{d:"M6.3 20.3a2.4 2.4 0 0 0 3.4 0L12 18l-6-6-2.3 2.3a2.4 2.4 0 0 0 0 3.4Z"}],["path",{d:"M7.5 13.5 10 11"}],["path",{d:"M10.5 16.5 13 14"}],["path",{d:"m12 6 6 6 2.3-2.3a2.4 2.4 0 0 0 0-3.4l-2.6-2.6a2.4 2.4 0 0 0-3.4 0Z"}]];var Ow=[["path",{d:"m16 11 2 2 4-4"}],["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}]];var Tw=[["circle",{cx:"10",cy:"7",r:"1"}],["circle",{cx:"4",cy:"20",r:"1"}],["path",{d:"M4.7 19.3 19 5"}],["path",{d:"m21 3-3 1 2 2Z"}],["path",{d:"M9.26 7.68 5 12l2 5"}],["path",{d:"m10 14 5 2 3.5-3.5"}],["path",{d:"m18 12 1-1 1 1-1 1Z"}]];var Pw=[["path",{d:"M10 15H6a4 4 0 0 0-4 4v2"}],["path",{d:"m14.305 16.53.923-.382"}],["path",{d:"m15.228 13.852-.923-.383"}],["path",{d:"m16.852 12.228-.383-.923"}],["path",{d:"m16.852 17.772-.383.924"}],["path",{d:"m19.148 12.228.383-.923"}],["path",{d:"m19.53 18.696-.382-.924"}],["path",{d:"m20.772 13.852.924-.383"}],["path",{d:"m20.772 16.148.924.383"}],["circle",{cx:"18",cy:"15",r:"3"}],["circle",{cx:"9",cy:"7",r:"4"}]];var Sw=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M15 15.5V14a2 2 0 0 1 4 0v1.5"}],["rect",{width:"8",height:"5",x:"13",y:"16",rx:".899"}]];var Aw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var qw=[["path",{d:"M11.5 15H7a4 4 0 0 0-4 4v2"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"7",r:"4"}]];var Ew=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"19",x2:"19",y1:"8",y2:"14"}],["line",{x1:"22",x2:"16",y1:"11",y2:"11"}]];var WZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m16 19 2 2 4-4"}]];var QZ=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["circle",{cx:"10",cy:"8",r:"5"}],["circle",{cx:"18",cy:"18",r:"3"}]];var VZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 19h-6"}]];var Cw=[["path",{d:"M2 21a8 8 0 0 1 10.821-7.487"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["circle",{cx:"10",cy:"8",r:"5"}]];var GZ=[["path",{d:"M2 21a8 8 0 0 1 13.292-6"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M19 16v6"}],["path",{d:"M22 19h-6"}]];var xw=[["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M2 21a8 8 0 0 1 10.434-7.62"}],["circle",{cx:"18",cy:"18",r:"3"}],["path",{d:"m22 22-1.9-1.9"}]];var IZ=[["path",{d:"M2 21a8 8 0 0 1 11.873-7"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"m17 17 5 5"}],["path",{d:"m22 17-5 5"}]];var zZ=[["circle",{cx:"12",cy:"8",r:"5"}],["path",{d:"M20 21a8 8 0 0 0-16 0"}]];var ww=[["circle",{cx:"10",cy:"7",r:"4"}],["path",{d:"M10.3 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"17",cy:"17",r:"3"}],["path",{d:"m21 21-1.9-1.9"}]];var Uw=[["path",{d:"M16.051 12.616a1 1 0 0 1 1.909.024l.737 1.452a1 1 0 0 0 .737.535l1.634.256a1 1 0 0 1 .588 1.806l-1.172 1.168a1 1 0 0 0-.282.866l.259 1.613a1 1 0 0 1-1.541 1.134l-1.465-.75a1 1 0 0 0-.912 0l-1.465.75a1 1 0 0 1-1.539-1.133l.258-1.613a1 1 0 0 0-.282-.866l-1.156-1.153a1 1 0 0 1 .572-1.822l1.633-.256a1 1 0 0 0 .737-.535z"}],["path",{d:"M8 15H7a4 4 0 0 0-4 4v2"}],["circle",{cx:"10",cy:"7",r:"4"}]];var Mw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["circle",{cx:"9",cy:"7",r:"4"}],["line",{x1:"17",x2:"22",y1:"8",y2:"13"}],["line",{x1:"22",x2:"17",y1:"8",y2:"13"}]];var Rw=[["path",{d:"M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"}],["circle",{cx:"12",cy:"7",r:"4"}]];var NZ=[["path",{d:"M18 21a8 8 0 0 0-16 0"}],["circle",{cx:"10",cy:"8",r:"5"}],["path",{d:"M22 20c0-3.37-2-6.5-4-8a5 5 0 0 0-.45-8.3"}]];var jw=[["path",{d:"M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2"}],["path",{d:"M16 3.128a4 4 0 0 1 0 7.744"}],["path",{d:"M22 21v-2a4 4 0 0 0-3-3.87"}],["circle",{cx:"9",cy:"7",r:"4"}]];var FZ=[["path",{d:"m16 2-2.3 2.3a3 3 0 0 0 0 4.2l1.8 1.8a3 3 0 0 0 4.2 0L22 8"}],["path",{d:"M15 15 3.3 3.3a4.2 4.2 0 0 0 0 6l7.3 7.3c.7.7 2 .7 2.8 0L15 15Zm0 0 7 7"}],["path",{d:"m2.1 21.8 6.4-6.3"}],["path",{d:"m19 5-7 7"}]];var HZ=[["path",{d:"M3 2v7c0 1.1.9 2 2 2h4a2 2 0 0 0 2-2V2"}],["path",{d:"M7 2v20"}],["path",{d:"M21 15V2a5 5 0 0 0-5 5v6c0 1.1.9 2 2 2h3Zm0 0v7"}]];var Lw=[["path",{d:"M8 21s-4-3-4-9 4-9 4-9"}],["path",{d:"M16 3s4 3 4 9-4 9-4 9"}],["line",{x1:"15",x2:"9",y1:"9",y2:"15"}],["line",{x1:"9",x2:"15",y1:"9",y2:"15"}]];var yw=[["path",{d:"M12 2v20"}],["path",{d:"M2 5h20"}],["path",{d:"M3 3v2"}],["path",{d:"M7 3v2"}],["path",{d:"M17 3v2"}],["path",{d:"M21 3v2"}],["path",{d:"m19 5-7 7-7-7"}]];var fw=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["circle",{cx:"7.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 7.9 2.7 2.7"}],["circle",{cx:"16.5",cy:"7.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 10.6 2.7-2.7"}],["circle",{cx:"7.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m7.9 16.1 2.7-2.7"}],["circle",{cx:"16.5",cy:"16.5",r:".5",fill:"currentColor"}],["path",{d:"m13.4 13.4 2.7 2.7"}],["circle",{cx:"12",cy:"12",r:"2"}]];var kw=[["path",{d:"M19.5 7a24 24 0 0 1 0 10"}],["path",{d:"M4.5 7a24 24 0 0 0 0 10"}],["path",{d:"M7 19.5a24 24 0 0 0 10 0"}],["path",{d:"M7 4.5a24 24 0 0 1 10 0"}],["rect",{x:"17",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"17",y:"2",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"17",width:"5",height:"5",rx:"1"}],["rect",{x:"2",y:"2",width:"5",height:"5",rx:"1"}]];var bw=[["path",{d:"M16 8q6 0 6-6-6 0-6 6"}],["path",{d:"M17.41 3.59a10 10 0 1 0 3 3"}],["path",{d:"M2 2a26.6 26.6 0 0 1 10 20c.9-6.82 1.5-9.5 4-14"}]];var hw=[["path",{d:"M18 11c-1.5 0-2.5.5-3 2"}],["path",{d:"M4 6a2 2 0 0 0-2 2v4a5 5 0 0 0 5 5 8 8 0 0 1 5 2 8 8 0 0 1 5-2 5 5 0 0 0 5-5V8a2 2 0 0 0-2-2h-3a8 8 0 0 0-5 2 8 8 0 0 0-5-2z"}],["path",{d:"M6 11c1.5 0 2.5.5 3 2"}]];var vw=[["path",{d:"M10 20h4"}],["path",{d:"M12 16v6"}],["path",{d:"M17 2h4v4"}],["path",{d:"m21 2-5.46 5.46"}],["circle",{cx:"12",cy:"11",r:"5"}]];var $w=[["path",{d:"M12 15v7"}],["path",{d:"M9 19h6"}],["circle",{cx:"12",cy:"9",r:"6"}]];var gw=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["path",{d:"M8 8v10c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2"}],["path",{d:"M16 10.34V6c0-.55-.45-1-1-1h-4.34"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var _w=[["path",{d:"m2 8 2 2-2 2 2 2-2 2"}],["path",{d:"m22 8-2 2 2 2-2 2 2 2"}],["rect",{width:"8",height:"14",x:"8",y:"5",rx:"1"}]];var mw=[["path",{d:"M10.66 6H14a2 2 0 0 1 2 2v2.5l5.248-3.062A.5.5 0 0 1 22 7.87v8.196"}],["path",{d:"M16 16a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h2"}],["path",{d:"m2 2 20 20"}]];var uw=[["path",{d:"m16 13 5.223 3.482a.5.5 0 0 0 .777-.416V7.87a.5.5 0 0 0-.752-.432L16 10.5"}],["rect",{x:"2",y:"6",width:"14",height:"12",rx:"2"}]];var dw=[["rect",{width:"20",height:"16",x:"2",y:"4",rx:"2"}],["path",{d:"M2 8h20"}],["circle",{cx:"8",cy:"14",r:"2"}],["path",{d:"M8 12h8"}],["circle",{cx:"16",cy:"14",r:"2"}]];var cw=[["path",{d:"M21 17v2a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-2"}],["path",{d:"M21 7V5a2 2 0 0 0-2-2H5a2 2 0 0 0-2 2v2"}],["circle",{cx:"12",cy:"12",r:"1"}],["path",{d:"M18.944 12.33a1 1 0 0 0 0-.66 7.5 7.5 0 0 0-13.888 0 1 1 0 0 0 0 .66 7.5 7.5 0 0 0 13.888 0"}]];var pw=[["circle",{cx:"6",cy:"12",r:"4"}],["circle",{cx:"18",cy:"12",r:"4"}],["line",{x1:"6",x2:"18",y1:"16",y2:"16"}]];var nw=[["path",{d:"M11.1 7.1a16.55 16.55 0 0 1 10.9 4"}],["path",{d:"M12 12a12.6 12.6 0 0 1-8.7 5"}],["path",{d:"M16.8 13.6a16.55 16.55 0 0 1-9 7.5"}],["path",{d:"M20.7 17a12.8 12.8 0 0 0-8.7-5 13.3 13.3 0 0 1 0-10"}],["path",{d:"M6.3 3.8a16.55 16.55 0 0 0 1.9 11.5"}],["circle",{cx:"12",cy:"12",r:"10"}]];var iw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}]];var lw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["path",{d:"M16 9a5 5 0 0 1 0 6"}],["path",{d:"M19.364 18.364a9 9 0 0 0 0-12.728"}]];var sw=[["path",{d:"M16 9a5 5 0 0 1 .95 2.293"}],["path",{d:"M19.364 5.636a9 9 0 0 1 1.889 9.96"}],["path",{d:"m2 2 20 20"}],["path",{d:"m7 7-.587.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298V11"}],["path",{d:"M9.828 4.172A.686.686 0 0 1 11 4.657v.686"}]];var rw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}],["line",{x1:"22",x2:"16",y1:"9",y2:"15"}],["line",{x1:"16",x2:"22",y1:"9",y2:"15"}]];var aw=[["path",{d:"M11 4.702a.705.705 0 0 0-1.203-.498L6.413 7.587A1.4 1.4 0 0 1 5.416 8H3a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h2.416a1.4 1.4 0 0 1 .997.413l3.383 3.384A.705.705 0 0 0 11 19.298z"}]];var tw=[["path",{d:"m9 12 2 2 4-4"}],["path",{d:"M5 7c0-1.1.9-2 2-2h10a2 2 0 0 1 2 2v12H5V7Z"}],["path",{d:"M22 19H2"}]];var ow=[["rect",{width:"18",height:"18",x:"3",y:"3",rx:"2"}],["path",{d:"M3 9a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2"}],["path",{d:"M3 11h3c.8 0 1.6.3 2.1.9l1.1.9c1.6 1.6 4.1 1.6 5.7 0l1.1-.9c.5-.5 1.3-.9 2.1-.9H21"}]];var DZ=[["path",{d:"M17 14h.01"}],["path",{d:"M7 7h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14"}]];var ew=[["path",{d:"M19 7V4a1 1 0 0 0-1-1H5a2 2 0 0 0 0 4h15a1 1 0 0 1 1 1v4h-3a2 2 0 0 0 0 4h3a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1"}],["path",{d:"M3 5v14a2 2 0 0 0 2 2h15a1 1 0 0 0 1-1v-4"}]];var BZ=[["path",{d:"m21.64 3.64-1.28-1.28a1.21 1.21 0 0 0-1.72 0L2.36 18.64a1.21 1.21 0 0 0 0 1.72l1.28 1.28a1.2 1.2 0 0 0 1.72 0L21.64 5.36a1.2 1.2 0 0 0 0-1.72"}],["path",{d:"m14 7 3 3"}],["path",{d:"M5 6v4"}],["path",{d:"M19 14v4"}],["path",{d:"M10 2v2"}],["path",{d:"M7 8H3"}],["path",{d:"M21 16h-4"}],["path",{d:"M11 3H9"}]];var ZU=[["path",{d:"M12 17v4"}],["path",{d:"M8 21h8"}],["path",{d:"m9 17 6.1-6.1a2 2 0 0 1 2.81.01L22 15"}],["circle",{cx:"8",cy:"9",r:"2"}],["rect",{x:"2",y:"3",width:"20",height:"14",rx:"2"}]];var JU=[["path",{d:"M15 4V2"}],["path",{d:"M15 16v-2"}],["path",{d:"M8 9h2"}],["path",{d:"M20 9h2"}],["path",{d:"M17.8 11.8 19 13"}],["path",{d:"M15 9h.01"}],["path",{d:"M17.8 6.2 19 5"}],["path",{d:"m3 21 9-9"}],["path",{d:"M12.2 6.2 11 5"}]];var KU=[["path",{d:"M18 21V10a1 1 0 0 0-1-1H7a1 1 0 0 0-1 1v11"}],["path",{d:"M22 19a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V8a2 2 0 0 1 1.132-1.803l7.95-3.974a2 2 0 0 1 1.837 0l7.948 3.974A2 2 0 0 1 22 8z"}],["path",{d:"M6 13h12"}],["path",{d:"M6 17h12"}]];var YU=[["path",{d:"M3 6h3"}],["path",{d:"M17 6h.01"}],["rect",{width:"18",height:"20",x:"3",y:"2",rx:"2"}],["circle",{cx:"12",cy:"13",r:"5"}],["path",{d:"M12 18a2.5 2.5 0 0 0 0-5 2.5 2.5 0 0 1 0-5"}]];var XU=[["path",{d:"M12 10v2.2l1.6 1"}],["path",{d:"m16.13 7.66-.81-4.05a2 2 0 0 0-2-1.61h-2.68a2 2 0 0 0-2 1.61l-.78 4.05"}],["path",{d:"m7.88 16.36.8 4a2 2 0 0 0 2 1.61h2.72a2 2 0 0 0 2-1.61l.81-4.05"}],["circle",{cx:"12",cy:"12",r:"6"}]];var WU=[["path",{d:"M19 5a2 2 0 0 0-2 2v11"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M7 13h10"}],["path",{d:"M7 9h10"}],["path",{d:"M9 5a2 2 0 0 0-2 2v11"}]];var QU=[["circle",{cx:"12",cy:"4.5",r:"2.5"}],["path",{d:"m10.2 6.3-3.9 3.9"}],["circle",{cx:"4.5",cy:"12",r:"2.5"}],["path",{d:"M7 12h10"}],["circle",{cx:"19.5",cy:"12",r:"2.5"}],["path",{d:"m13.8 17.7 3.9-3.9"}],["circle",{cx:"12",cy:"19.5",r:"2.5"}]];var VU=[["path",{d:"M2 6c.6.5 1.2 1 2.5 1C7 7 7 5 9.5 5c2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 12c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}],["path",{d:"M2 18c.6.5 1.2 1 2.5 1 2.5 0 2.5-2 5-2 2.6 0 2.4 2 5 2 2.5 0 2.5-2 5-2 1.3 0 1.9.5 2.5 1"}]];var GU=[["circle",{cx:"12",cy:"10",r:"8"}],["circle",{cx:"12",cy:"10",r:"3"}],["path",{d:"M7 22h10"}],["path",{d:"M12 22v-4"}]];var IU=[["path",{d:"M17 17h-5c-1.09-.02-1.94.92-2.5 1.9A3 3 0 1 1 2.57 15"}],["path",{d:"M9 3.4a4 4 0 0 1 6.52.66"}],["path",{d:"m6 17 3.1-5.8a2.5 2.5 0 0 0 .057-2.05"}],["path",{d:"M20.3 20.3a4 4 0 0 1-2.3.7"}],["path",{d:"M18.6 13a4 4 0 0 1 3.357 3.414"}],["path",{d:"m12 6 .6 1"}],["path",{d:"m2 2 20 20"}]];var zU=[["path",{d:"M18 16.98h-5.99c-1.1 0-1.95.94-2.48 1.9A4 4 0 0 1 2 17c.01-.7.2-1.4.57-2"}],["path",{d:"m6 17 3.13-5.78c.53-.97.1-2.18-.5-3.1a4 4 0 1 1 6.89-4.06"}],["path",{d:"m12 6 3.13 5.73C15.66 12.7 16.9 13 18 13a4 4 0 0 1 0 8"}]];var NU=[["circle",{cx:"12",cy:"5",r:"3"}],["path",{d:"M6.5 8a2 2 0 0 0-1.905 1.46L2.1 18.5A2 2 0 0 0 4 21h16a2 2 0 0 0 1.925-2.54L19.4 9.5A2 2 0 0 0 17.48 8Z"}]];var FU=[["path",{d:"m2 22 10-10"}],["path",{d:"m16 8-1.17 1.17"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"m8 8-.53.53a3.5 3.5 0 0 0 0 4.94L9 15l1.53-1.53c.55-.55.88-1.25.98-1.97"}],["path",{d:"M10.91 5.26c.15-.26.34-.51.56-.73L13 3l1.53 1.53a3.5 3.5 0 0 1 .28 4.62"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"m16 16-.53.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.49 3.49 0 0 1 1.97-.98"}],["path",{d:"M18.74 13.09c.26-.15.51-.34.73-.56L21 11l-1.53-1.53a3.5 3.5 0 0 0-4.62-.28"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var HU=[["path",{d:"M2 22 16 8"}],["path",{d:"M3.47 12.53 5 11l1.53 1.53a3.5 3.5 0 0 1 0 4.94L5 19l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M7.47 8.53 9 7l1.53 1.53a3.5 3.5 0 0 1 0 4.94L9 15l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M11.47 4.53 13 3l1.53 1.53a3.5 3.5 0 0 1 0 4.94L13 11l-1.53-1.53a3.5 3.5 0 0 1 0-4.94Z"}],["path",{d:"M20 2h2v2a4 4 0 0 1-4 4h-2V6a4 4 0 0 1 4-4Z"}],["path",{d:"M11.47 17.47 13 19l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L5 19l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M15.47 13.47 17 15l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L9 15l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}],["path",{d:"M19.47 9.47 21 11l-1.53 1.53a3.5 3.5 0 0 1-4.94 0L13 11l1.53-1.53a3.5 3.5 0 0 1 4.94 0Z"}]];var DU=[["circle",{cx:"7",cy:"12",r:"3"}],["path",{d:"M10 9v6"}],["circle",{cx:"17",cy:"12",r:"3"}],["path",{d:"M14 7v8"}],["path",{d:"M22 17v1c0 .5-.5 1-1 1H3c-.5 0-1-.5-1-1v-1"}]];var BU=[["path",{d:"m14.305 19.53.923-.382"}],["path",{d:"m15.228 16.852-.923-.383"}],["path",{d:"m16.852 15.228-.383-.923"}],["path",{d:"m16.852 20.772-.383.924"}],["path",{d:"m19.148 15.228.383-.923"}],["path",{d:"m19.53 21.696-.382-.924"}],["path",{d:"M2 7.82a15 15 0 0 1 20 0"}],["path",{d:"m20.772 16.852.924-.383"}],["path",{d:"m20.772 19.148.924.383"}],["path",{d:"M5 11.858a10 10 0 0 1 11.5-1.785"}],["path",{d:"M8.5 15.429a5 5 0 0 1 2.413-1.31"}],["circle",{cx:"18",cy:"18",r:"3"}]];var OU=[["path",{d:"M12 20h.01"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var TU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var PU=[["path",{d:"M12 20h.01"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}],["path",{d:"M5 12.859a10 10 0 0 1 5.17-2.69"}],["path",{d:"M19 12.859a10 10 0 0 0-2.007-1.523"}],["path",{d:"M2 8.82a15 15 0 0 1 4.177-2.643"}],["path",{d:"M22 8.82a15 15 0 0 0-11.288-3.764"}],["path",{d:"m2 2 20 20"}]];var SU=[["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.378 16.626a1 1 0 0 0-3.004-3.004l-4.01 4.012a2 2 0 0 0-.506.854l-.837 2.87a.5.5 0 0 0 .62.62l2.87-.837a2 2 0 0 0 .854-.506z"}],["path",{d:"M5 12.859a10 10 0 0 1 10.5-2.222"}],["path",{d:"M8.5 16.429a5 5 0 0 1 3-1.406"}]];var AU=[["path",{d:"M12 20h.01"}]];var qU=[["path",{d:"M11.965 10.105v4L13.5 12.5a5 5 0 0 1 8 1.5"}],["path",{d:"M11.965 14.105h4"}],["path",{d:"M17.965 18.105h4L20.43 19.71a5 5 0 0 1-8-1.5"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M21.965 22.105v-4"}],["path",{d:"M5 12.86a10 10 0 0 1 3-2.032"}],["path",{d:"M8.5 16.429h.01"}]];var EU=[["path",{d:"M12 20h.01"}],["path",{d:"M2 8.82a15 15 0 0 1 20 0"}],["path",{d:"M5 12.859a10 10 0 0 1 14 0"}],["path",{d:"M8.5 16.429a5 5 0 0 1 7 0"}]];var CU=[["path",{d:"M10 2v8"}],["path",{d:"M12.8 21.6A2 2 0 1 0 14 18H2"}],["path",{d:"M17.5 10a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"m6 6 4 4 4-4"}]];var xU=[["path",{d:"M12.8 19.6A2 2 0 1 0 14 16H2"}],["path",{d:"M17.5 8a2.5 2.5 0 1 1 2 4H2"}],["path",{d:"M9.8 4.4A2 2 0 1 1 11 8H2"}]];var wU=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h3m7 0h-1.343"}],["path",{d:"M12 15v7"}],["path",{d:"M7.307 7.307A12.33 12.33 0 0 0 7 10a5 5 0 0 0 7.391 4.391M8.638 2.981C8.75 2.668 8.872 2.34 9 2h6c1.5 4 2 6 2 8 0 .407-.05.809-.145 1.198"}],["line",{x1:"2",x2:"22",y1:"2",y2:"22"}]];var UU=[["path",{d:"M8 22h8"}],["path",{d:"M7 10h10"}],["path",{d:"M12 15v7"}],["path",{d:"M12 15a5 5 0 0 0 5-5c0-2-.5-4-2-8H9c-1.5 4-2 6-2 8a5 5 0 0 0 5 5Z"}]];var MU=[["rect",{width:"8",height:"8",x:"3",y:"3",rx:"2"}],["path",{d:"M7 11v4a2 2 0 0 0 2 2h4"}],["rect",{width:"8",height:"8",x:"13",y:"13",rx:"2"}]];var RU=[["path",{d:"M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.106-3.105c.32-.322.863-.22.983.218a6 6 0 0 1-8.259 7.057l-7.91 7.91a1 1 0 0 1-2.999-3l7.91-7.91a6 6 0 0 1 7.057-8.259c.438.12.54.662.219.984z"}]];var jU=[["path",{d:"M18 6 6 18"}],["path",{d:"m6 6 12 12"}]];var LU=[["path",{d:"m19 12-1.5 3"}],["path",{d:"M19.63 18.81 22 20"}],["path",{d:"M6.47 8.23a1.68 1.68 0 0 1 2.44 1.93l-.64 2.08a6.76 6.76 0 0 0 10.16 7.67l.42-.27a1 1 0 1 0-2.73-4.21l-.42.27a1.76 1.76 0 0 1-2.63-1.99l.64-2.08A6.66 6.66 0 0 0 3.94 3.9l-.7.4a1 1 0 1 0 2.55 4.34z"}]];var yU=[["path",{d:"M2.5 17a24.12 24.12 0 0 1 0-10 2 2 0 0 1 1.4-1.4 49.56 49.56 0 0 1 16.2 0A2 2 0 0 1 21.5 7a24.12 24.12 0 0 1 0 10 2 2 0 0 1-1.4 1.4 49.55 49.55 0 0 1-16.2 0A2 2 0 0 1 2.5 17"}],["path",{d:"m10 15 5-3-5-3z"}]];var fU=[["path",{d:"M10.513 4.856 13.12 2.17a.5.5 0 0 1 .86.46l-1.377 4.317"}],["path",{d:"M15.656 10H20a1 1 0 0 1 .78 1.63l-1.72 1.773"}],["path",{d:"M16.273 16.273 10.88 21.83a.5.5 0 0 1-.86-.46l1.92-6.02A1 1 0 0 0 11 14H4a1 1 0 0 1-.78-1.63l4.507-4.643"}],["path",{d:"m2 2 20 20"}]];var kU=[["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"}]];var bU=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"11",x2:"11",y1:"8",y2:"14"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var hU=[["circle",{cx:"11",cy:"11",r:"8"}],["line",{x1:"21",x2:"16.65",y1:"21",y2:"16.65"}],["line",{x1:"8",x2:"14",y1:"11",y2:"11"}]];var ak=({icons:Z={},nameAttr:J="data-lucide",attrs:K={},root:X=document,inTemplates:W}={})=>{if(!Object.values(Z).length)throw Error(`Please provide an icons object. 14 14 If you want to use all the icons you can import it like: 15 15 \`import { createIcons, icons } from 'lucide'; 16 - lucide.createIcons({icons});\``);if(typeof Y>"u")throw Error("`createIcons()` only works in a browser environment.");if(Array.from(Y.querySelectorAll(`[${J}]`)).forEach((V)=>Sj(V,{nameAttr:J,icons:Z,attrs:K})),X)Array.from(Y.querySelectorAll("template")).forEach((G)=>fk({icons:Z,nameAttr:J,attrs:K,root:G.content,inTemplates:X}));if(J==="data-lucide"){let V=Y.querySelectorAll("[icon-name]");if(V.length>0)console.warn("[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide"),Array.from(V).forEach((G)=>Sj(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var LU="http://www.w3.org/2000/svg";function a$(Z){let J=Q([]);for(let K=Z.length-1;K>=0;K--){let[Y,X]=Z[K],W=Q([]);for(let[G,I]of Object.entries(X))W=C(M(G,I),W);let V=f1(LU,Y,W,Q([]));J=C(V,J)}return J}function kk(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),Y=qj[K];if(!Y)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),f1(LU,"svg",J,Q([]));let X=a$(Y),W=!1,V=!1,G=J;while(G&&G.head!==void 0){let F=G.head;if(F&&F.kind===0){if(F.name==="width")W=!0;if(F.name==="height")V=!0}G=G.tail}let I=[M("xmlns",LU),M("viewBox","0 0 24 24"),M("fill","none"),M("stroke","currentColor"),M("stroke-width","2"),M("stroke-linecap","round"),M("stroke-linejoin","round")];if(!W)I.push(M("width","24"));if(!V)I.push(M("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=C(G.head,N),G=G.tail;return f1(LU,"svg",N,X)}class bk extends O{}class yU extends O{}class mZ extends O{}class vk extends O{}function uZ(Z,J,K){let Y;if(J instanceof bk)Y=["12","12"];else if(J instanceof yU)Y=["16","16"];else if(J instanceof mZ)Y=["20","20"];else if(J instanceof vk)Y=["24","24"];else Y=["32","32"];let X=Y,W,V;return W=X[0],V=X[1],kk(Z,C(M("width",W),C(M("height",V),K)))}function fU(Z){return D7(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([VK(Q([]),Q([B7(Q([z8("board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([B8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),B8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),B7(Q([z8("board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([B8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),B8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))]))])),f5(Q([M("transform","translate(64, 64)")]),Q([t8(Q([M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#board1)")])),t8(Q([M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#board2)")])),t8(Q([M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32")]))]))]))}function t$(Z,J,K,Y,X,W,V){if(Z instanceof L){let G=Z[0][0],I=Z[0][1],z=Q([b1(Q([L1("/"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([w("Home")]))]),N;if(I)N=k0(z,Q([b1(Q([L1("/settings"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([w("Settings")]))]));else N=z;return k0(N,Q([d(Q([H("px-3 py-1 text-zinc-400")]),Q([w(G)])),q5(Q([O5("POST"),B5("/logout")]),Q([S0(Q([b0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([w("Logout")]))]))]))}else return Q([q5(Q([O5("POST"),B5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([gZ(J,"login-hint-desktop","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-2 py-1 text-xs text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-48",K,Y,X,W,V),S0(Q([b0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([w("Login")]))]))])}function o$(Z,J,K,Y,X,W,V){return R(Q([H("sm:hidden mt-4 pb-4 border-b border-zinc-800 flex flex-col gap-3")]),(()=>{if(Z instanceof L){let G=Z[0][1],I=Q([b1(Q([L1("/"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([w("Home")]))]),z;if(G)z=k0(I,Q([b1(Q([L1("/settings"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([w("Settings")]))]));else z=I;return k0(z,Q([q5(Q([O5("POST"),B5("/logout")]),Q([S0(Q([b0("submit"),H("w-full text-left px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors cursor-pointer")]),Q([w("Logout")]))]))]))}else return Q([q5(Q([O5("POST"),B5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([gZ(J,"login-hint-mobile","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-3 py-2 text-sm text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-full",K,Y,X,W,V),S0(Q([b0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([w("Login")]))]))])})())}function gk(Z,J,K,Y,X,W,V,G,I,z){return R(Q([H("mb-8")]),Q([R(Q([H("flex items-center justify-between border-b border-zinc-800 pb-3")]),Q([b1(Q([L1("/"),H("flex items-center gap-3 hover:opacity-80 transition-opacity ml-1")]),Q([R(Q([H("overflow-visible")]),Q([(()=>{if(J)return Lk("w-10 h-10");else return fU("w-10 h-10")})()])),k1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([w("quickslice")]))])),R(Q([H("flex items-center gap-2")]),Q([(()=>{if(Z instanceof L){let N=Z[0][0];return d(Q([H("sm:hidden text-xs text-zinc-400 px-2 truncate max-w-[150px]")]),Q([w("@"+N)]))}else return z0()})(),R(Q([H("hidden sm:flex gap-4 text-xs items-center")]),t$(Z,X,W,V,G,I,z)),S0(Q([H("sm:hidden p-2 text-zinc-400 hover:text-zinc-300 transition-colors"),w0(Y)]),Q([(()=>{if(K)return uZ("x",new mZ,Q([]));else return uZ("menu",new mZ,Q([]))})()]))]))])),(()=>{if(K)return o$(Z,X,W,V,G,I,z);else return z0()})()]))}function Ej(Z,J){let K=document.getElementById(Z);if(!K){J(new v("File input not found"));return}let Y=K.files?.[0];if(!Y){console.log("[readFileAsBase64] No file selected"),J(new v("No file selected"));return}let X=new FileReader;X.onload=(W)=>{try{let V=W.target.result.split(",")[1];J(new E(V))}catch(V){J(new v(`Failed to encode file: ${V.message}`))}},X.onerror=()=>{J(new v("Failed to read file"))},X.readAsDataURL(Y)}function Cj(Z){let J=document.getElementById(Z);if(J)J.value=""}function _k(){let Z=cf(),J=a0(Z,"TriggerBackfill",`mutation TriggerBackfill { 16 + lucide.createIcons({icons});\``);if(typeof X>"u")throw Error("`createIcons()` only works in a browser environment.");if(Array.from(X.querySelectorAll(`[${J}]`)).forEach((V)=>vj(V,{nameAttr:J,icons:Z,attrs:K})),W)Array.from(X.querySelectorAll("template")).forEach((G)=>ak({icons:Z,nameAttr:J,attrs:K,root:G.content,inTemplates:W}));if(J==="data-lucide"){let V=X.querySelectorAll("[icon-name]");if(V.length>0)console.warn("[Lucide] Some icons were found with the now deprecated icon-name attribute. These will still be replaced for backwards compatibility, but will no longer be supported in v1.0 and you should switch to data-lucide"),Array.from(V).forEach((G)=>vj(G,{nameAttr:"icon-name",icons:Z,attrs:K}))}};var vU="http://www.w3.org/2000/svg";function Bg(Z){let J=Q([]);for(let K=Z.length-1;K>=0;K--){let[X,W]=Z[K],Y=Q([]);for(let[G,I]of Object.entries(W))Y=A(M(G,I),Y);let V=g1(vU,X,Y,Q([]));J=A(V,J)}return J}function tk(Z,J){let K=Z.split("-").map((F)=>F.charAt(0).toUpperCase()+F.slice(1)).join(""),X=gj[K];if(!X)return console.warn(`Icon "${Z}" (${K}) not found in lucide package`),g1(vU,"svg",J,Q([]));let W=Bg(X),Y=!1,V=!1,G=J;while(G&&G.head!==void 0){let F=G.head;if(F&&F.kind===0){if(F.name==="width")Y=!0;if(F.name==="height")V=!0}G=G.tail}let I=[M("xmlns",vU),M("viewBox","0 0 24 24"),M("fill","none"),M("stroke","currentColor"),M("stroke-width","2"),M("stroke-linecap","round"),M("stroke-linejoin","round")];if(!Y)I.push(M("width","24"));if(!V)I.push(M("height","24"));let N=Q(I);G=J;while(G&&G.head!==void 0)N=A(G.head,N),G=G.tail;return g1(vU,"svg",N,W)}class ok extends O{}class $U extends O{}class sZ extends O{}class ek extends O{}function rZ(Z,J,K){let X;if(J instanceof ok)X=["12","12"];else if(J instanceof $U)X=["16","16"];else if(J instanceof sZ)X=["20","20"];else if(J instanceof ek)X=["24","24"];else X=["32","32"];let W=X,Y,V;return Y=W[0],V=W[1],tk(Z,A(M("width",Y),A(M("height",V),K)))}function gU(Z){return E4(Q([M("viewBox","0 0 128 128"),M("xmlns","http://www.w3.org/2000/svg"),H(Z)]),Q([HK(Q([]),Q([C4(Q([H8("board1"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#FF6347"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#FF4500"),M("stop-opacity","1")]))])),C4(Q([H8("board2"),M("x1","0%"),M("y1","0%"),M("x2","100%"),M("y2","100%")]),Q([P8(Q([M("offset","0%"),M("stop-color","#00CED1"),M("stop-opacity","1")])),P8(Q([M("offset","100%"),M("stop-color","#4682B4"),M("stop-opacity","1")]))]))])),m5(Q([M("transform","translate(64, 64)")]),Q([K5(Q([M("cx","0"),M("cy","-28"),M("rx","50"),M("ry","20"),M("fill","url(#board1)")])),K5(Q([M("cx","0"),M("cy","0"),M("rx","60"),M("ry","20"),M("fill","url(#board2)")])),K5(Q([M("cx","0"),M("cy","28"),M("rx","40"),M("ry","20"),M("fill","#32CD32")]))]))]))}function Og(Z,J,K,X,W,Y,V){if(Z instanceof y){let G=Z[0][0],I=Z[0][1],z=Q([m1(Q([v1("/"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([x("Home")]))]),N;if(I)N=_0(z,Q([m1(Q([v1("/settings"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors")]),Q([x("Settings")]))]));else N=z;return _0(N,Q([p(Q([H("px-3 py-1 text-zinc-400")]),Q([x(G)])),v8(Q([w5("POST"),x5("/logout")]),Q([q0(Q([M0("submit"),H("px-3 py-1 text-zinc-400 hover:text-zinc-300 transition-colors cursor-pointer")]),Q([x("Logout")]))]))]))}else return Q([v8(Q([w5("POST"),x5("/admin/oauth/authorize"),H("flex gap-2 items-center")]),Q([iZ(J,"login-hint-desktop","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-2 py-1 text-xs text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-48",K,X,W,Y,V),q0(Q([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-3 py-1 rounded transition-colors")]),Q([x("Login")]))]))])}function Tg(Z,J,K,X,W,Y,V){return j(Q([H("sm:hidden mt-4 pb-4 border-b border-zinc-800 flex flex-col gap-3")]),(()=>{if(Z instanceof y){let G=Z[0][1],I=Q([m1(Q([v1("/"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([x("Home")]))]),z;if(G)z=_0(I,Q([m1(Q([v1("/settings"),H("block px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors")]),Q([x("Settings")]))]));else z=I;return _0(z,Q([v8(Q([w5("POST"),x5("/logout")]),Q([q0(Q([M0("submit"),H("w-full text-left px-3 py-2 text-sm text-zinc-400 hover:text-zinc-300 hover:bg-zinc-800/50 rounded transition-colors cursor-pointer")]),Q([x("Logout")]))]))]))}else return Q([v8(Q([w5("POST"),x5("/admin/oauth/authorize"),H("flex flex-col gap-3")]),Q([iZ(J,"login-hint-mobile","login_hint","handle.bsky.social","bg-zinc-900 border border-zinc-700 rounded px-3 py-2 text-sm text-zinc-300 placeholder-zinc-600 focus:border-zinc-500 focus:outline-none w-full",K,X,W,Y,V),q0(Q([M0("submit"),H("bg-zinc-800 hover:bg-zinc-700 text-zinc-300 px-4 py-2 rounded transition-colors w-full text-sm")]),Q([x("Login")]))]))])})())}function Kb(Z,J,K,X,W,Y,V,G,I,z){return j(Q([H("mb-8")]),Q([j(Q([H("flex items-center justify-between border-b border-zinc-800 pb-3")]),Q([m1(Q([v1("/"),H("flex items-center gap-3 hover:opacity-80 transition-opacity ml-1")]),Q([j(Q([H("overflow-visible")]),Q([(()=>{if(J)return sk("w-10 h-10");else return gU("w-10 h-10")})()])),_1(Q([H("text-xs font-medium uppercase tracking-wider text-zinc-500")]),Q([x("quickslice")]))])),j(Q([H("flex items-center gap-2")]),Q([(()=>{if(Z instanceof y){let N=Z[0][0];return p(Q([H("sm:hidden text-xs text-zinc-400 px-2 truncate max-w-[150px]")]),Q([x("@"+N)]))}else return z0()})(),j(Q([H("hidden sm:flex gap-4 text-xs items-center")]),Og(Z,W,Y,V,G,I,z)),q0(Q([H("sm:hidden p-2 text-zinc-400 hover:text-zinc-300 transition-colors"),f0(X)]),Q([(()=>{if(K)return rZ("x",new sZ,Q([]));else return rZ("menu",new sZ,Q([]))})()]))]))])),(()=>{if(K)return Tg(Z,W,Y,V,G,I,z);else return z0()})()]))}function _j(Z,J){let K=document.getElementById(Z);if(!K){J(new $("File input not found"));return}let X=K.files?.[0];if(!X){console.log("[readFileAsBase64] No file selected"),J(new $("No file selected"));return}let W=new FileReader;W.onload=(Y)=>{try{let V=Y.target.result.split(",")[1];J(new C(V))}catch(V){J(new $(`Failed to encode file: ${V.message}`))}},W.onerror=()=>{J(new $("Failed to read file"))},W.readAsDataURL(X)}function mj(Z){let J=document.getElementById(Z);if(J)J.value=""}function Yb(){let Z=Ik(),J=e0(Z,"TriggerBackfill",`mutation TriggerBackfill { 17 17 triggerBackfill 18 - }`,"generated/queries/trigger_backfill"),K=a0(J,"IsBackfilling",`query IsBackfilling { 18 + }`,"generated/queries/trigger_backfill"),K=e0(J,"IsBackfilling",`query IsBackfilling { 19 19 isBackfilling 20 - }`,"generated/queries/is_backfilling"),Y=a0(K,"GetCurrentSession",`query GetCurrentSession { 20 + }`,"generated/queries/is_backfilling"),X=e0(K,"GetCurrentSession",`query GetCurrentSession { 21 21 currentSession { 22 22 __typename 23 23 did 24 24 handle 25 25 isAdmin 26 26 } 27 - }`,"generated/queries/get_current_session"),X=a0(Y,"CreateOAuthClient",`mutation CreateOAuthClient($clientName: String!, $clientType: String!, $redirectUris: [String!]!) { 27 + }`,"generated/queries/get_current_session"),W=e0(X,"CreateOAuthClient",`mutation CreateOAuthClient($clientName: String!, $clientType: String!, $redirectUris: [String!]!) { 28 28 createOAuthClient(clientName: $clientName, clientType: $clientType, redirectUris: $redirectUris) { 29 29 __typename 30 30 clientId ··· 34 34 redirectUris 35 35 createdAt 36 36 } 37 - }`,"generated/queries/create_o_auth_client"),W=a0(X,"UpdateOAuthClient",`mutation UpdateOAuthClient($clientId: String!, $clientName: String!, $redirectUris: [String!]!) { 37 + }`,"generated/queries/create_o_auth_client"),Y=e0(W,"UpdateOAuthClient",`mutation UpdateOAuthClient($clientId: String!, $clientName: String!, $redirectUris: [String!]!) { 38 38 updateOAuthClient(clientId: $clientId, clientName: $clientName, redirectUris: $redirectUris) { 39 39 __typename 40 40 clientId ··· 44 44 redirectUris 45 45 createdAt 46 46 } 47 - }`,"generated/queries/update_o_auth_client"),V=a0(W,"GetActivityBuckets",`query GetActivityBuckets($range: TimeRange!) { 47 + }`,"generated/queries/update_o_auth_client"),V=e0(Y,"GetActivityBuckets",`query GetActivityBuckets($range: TimeRange!) { 48 48 activityBuckets(range: $range) { 49 49 __typename 50 50 timestamp ··· 53 53 updates 54 54 deletes 55 55 } 56 - }`,"generated/queries/get_activity_buckets"),G=a0(V,"GetRecentActivity",`query GetRecentActivity($hours: Int!) { 56 + }`,"generated/queries/get_activity_buckets"),G=e0(V,"GetRecentActivity",`query GetRecentActivity($hours: Int!) { 57 57 recentActivity(hours: $hours) { 58 58 __typename 59 59 id ··· 65 65 errorMessage 66 66 eventJson 67 67 } 68 - }`,"generated/queries/get_recent_activity"),I=a0(G,"GetStatistics",`query GetStatistics { 68 + }`,"generated/queries/get_recent_activity"),I=e0(G,"GetStatistics",`query GetStatistics { 69 69 statistics { 70 70 __typename 71 71 recordCount 72 72 actorCount 73 73 lexiconCount 74 74 } 75 - }`,"generated/queries/get_statistics"),z=a0(I,"GetSettings",`query GetSettings { 75 + }`,"generated/queries/get_statistics"),z=e0(I,"GetSettings",`query GetSettings { 76 76 settings { 77 77 __typename 78 78 id 79 79 domainAuthority 80 80 adminDids 81 + relayUrl 82 + plcDirectoryUrl 83 + jetstreamUrl 84 + oauthSupportedScopes 81 85 } 82 - }`,"generated/queries/get_settings"),N=a0(z,"UpdateSettings",`mutation UpdateSettings($domainAuthority: String, $adminDids: [String!]) { 83 - updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids) { 86 + }`,"generated/queries/get_settings"),N=e0(z,"UpdateSettings",`mutation UpdateSettings($domainAuthority: String, $adminDids: [String!], $relayUrl: String, $plcDirectoryUrl: String, $jetstreamUrl: String, $oauthSupportedScopes: String) { 87 + updateSettings(domainAuthority: $domainAuthority, adminDids: $adminDids, relayUrl: $relayUrl, plcDirectoryUrl: $plcDirectoryUrl, jetstreamUrl: $jetstreamUrl, oauthSupportedScopes: $oauthSupportedScopes) { 84 88 __typename 85 89 id 86 90 domainAuthority 87 91 adminDids 92 + relayUrl 93 + plcDirectoryUrl 94 + jetstreamUrl 95 + oauthSupportedScopes 88 96 } 89 - }`,"generated/queries/update_settings"),F=a0(N,"UploadLexicons",`mutation UploadLexicons($zipBase64: String!) { 97 + }`,"generated/queries/update_settings"),F=e0(N,"UploadLexicons",`mutation UploadLexicons($zipBase64: String!) { 90 98 uploadLexicons(zipBase64: $zipBase64) 91 - }`,"generated/queries/upload_lexicons"),D=a0(F,"ResetAll",`mutation ResetAll($confirm: String!) { 99 + }`,"generated/queries/upload_lexicons"),D=e0(F,"ResetAll",`mutation ResetAll($confirm: String!) { 92 100 resetAll(confirm: $confirm) 93 - }`,"generated/queries/reset_all"),B=a0(D,"GetOAuthClients",`query GetOAuthClients { 101 + }`,"generated/queries/reset_all"),B=e0(D,"GetOAuthClients",`query GetOAuthClients { 94 102 oauthClients { 95 103 __typename 96 104 clientId ··· 101 109 scope 102 110 createdAt 103 111 } 104 - }`,"generated/queries/get_o_auth_clients"),P=a0(B,"CreateOAuthClient",`mutation CreateOAuthClient($clientName: String!, $clientType: String!, $redirectUris: [String!]!, $scope: String!) { 112 + }`,"generated/queries/get_o_auth_clients"),T=e0(B,"CreateOAuthClient",`mutation CreateOAuthClient($clientName: String!, $clientType: String!, $redirectUris: [String!]!, $scope: String!) { 105 113 createOAuthClient(clientName: $clientName, clientType: $clientType, redirectUris: $redirectUris, scope: $scope) { 106 114 __typename 107 115 clientId ··· 112 120 scope 113 121 createdAt 114 122 } 115 - }`,"generated/queries/create_o_auth_client"),T=a0(P,"UpdateOAuthClient",`mutation UpdateOAuthClient($clientId: String!, $clientName: String!, $redirectUris: [String!]!, $scope: String!) { 123 + }`,"generated/queries/create_o_auth_client"),P=e0(T,"UpdateOAuthClient",`mutation UpdateOAuthClient($clientId: String!, $clientName: String!, $redirectUris: [String!]!, $scope: String!) { 116 124 updateOAuthClient(clientId: $clientId, clientName: $clientName, redirectUris: $redirectUris, scope: $scope) { 117 125 __typename 118 126 clientId ··· 123 131 scope 124 132 createdAt 125 133 } 126 - }`,"generated/queries/update_o_auth_client"),S=a0(T,"DeleteOAuthClient",`mutation DeleteOAuthClient($clientId: String!) { 134 + }`,"generated/queries/update_o_auth_client"),S=e0(P,"DeleteOAuthClient",`mutation DeleteOAuthClient($clientId: String!) { 127 135 deleteOAuthClient(clientId: $clientId) 128 - }`,"generated/queries/delete_o_auth_client"),A=a0(S,"BackfillActor",`mutation BackfillActor($did: String!) { 136 + }`,"generated/queries/delete_o_auth_client"),q=e0(S,"BackfillActor",`mutation BackfillActor($did: String!) { 129 137 backfillActor(did: $did) 130 - }`,"generated/queries/backfill_actor");return a0(A,"GetLexicons",`query GetLexicons { 138 + }`,"generated/queries/backfill_actor");return e0(q,"GetLexicons",`query GetLexicons { 131 139 lexicons { 132 140 __typename 133 141 id 134 142 json 135 143 createdAt 136 144 } 137 - }`,"generated/queries/get_lexicons")}class mk extends O{constructor(Z){super();this.backfill_actor=Z}}function Kg(){return g("backfillActor",W1,(Z)=>{return i(new mk(Z))})}function uk(Z){return B0(Z,Kg())}class dk extends O{constructor(Z,J,K,Y,X,W,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=Y,this.redirect_uris=X,this.scope=W,this.created_at=V}}class ck extends O{constructor(Z){super();this.create_o_auth_client=Z}}function Xg(){return g("clientId",u,(Z)=>{return g("clientSecret",S1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(Y)=>{return g("redirectUris",E0(u),(X)=>{return g("scope",S1(u),(W)=>{return g("createdAt",d0,(V)=>{return i(new dk(Z,J,K,Y,X,W,V))})})})})})})})}function Wg(){return g("createOAuthClient",Xg(),(Z)=>{return i(new ck(Z))})}function pk(Z){return B0(Z,Wg())}class nk extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function Vg(){return g("deleteOAuthClient",W1,(Z)=>{return i(new nk(Z))})}function lk(Z){return B0(Z,Vg())}class dZ extends O{}class cZ extends O{}class pZ extends O{}class k5 extends O{}class nZ extends O{}class ik extends O{constructor(Z,J,K,Y,X){super();this.timestamp=Z,this.total=J,this.creates=K,this.updates=Y,this.deletes=X}}class rk extends O{constructor(Z){super();this.activity_buckets=Z}}function W5(Z){if(Z instanceof dZ)return"ONE_HOUR";else if(Z instanceof cZ)return"THREE_HOURS";else if(Z instanceof pZ)return"SIX_HOURS";else if(Z instanceof k5)return"ONE_DAY";else return"SEVEN_DAYS"}function Ig(){return g("timestamp",u,(Z)=>{return g("total",d0,(J)=>{return g("creates",d0,(K)=>{return g("updates",d0,(Y)=>{return g("deletes",d0,(X)=>{return i(new ik(Z,J,K,Y,X))})})})})})}function zg(){return g("activityBuckets",E0(Ig()),(Z)=>{return i(new rk(Z))})}function b5(Z){return B0(Z,zg())}class sk extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class ak extends O{constructor(Z){super();this.current_session=Z}}function Ng(){return g("did",u,(Z)=>{return g("handle",u,(J)=>{return g("isAdmin",W1,(K)=>{return i(new sk(Z,J,K))})})})}function Fg(){return g("currentSession",S1(Ng()),(Z)=>{return i(new ak(Z))})}function wj(Z){return B0(Z,Fg())}class tk extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class ok extends O{constructor(Z){super();this.lexicons=Z}}function Dg(){return g("id",u,(Z)=>{return g("json",u,(J)=>{return g("createdAt",u,(K)=>{return i(new tk(Z,J,K))})})})}function Bg(){return g("lexicons",E0(Dg()),(Z)=>{return i(new ok(Z))})}function lZ(Z){return B0(Z,Bg())}class Zb extends O{constructor(Z,J,K,Y,X,W,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=Y,this.redirect_uris=X,this.scope=W,this.created_at=V}}class Jb extends O{constructor(Z){super();this.oauth_clients=Z}}function Og(){return g("clientId",u,(Z)=>{return g("clientSecret",S1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(Y)=>{return g("redirectUris",E0(u),(X)=>{return g("scope",S1(u),(W)=>{return g("createdAt",d0,(V)=>{return i(new Zb(Z,J,K,Y,X,W,V))})})})})})})})}function Tg(){return g("oauthClients",E0(Og()),(Z)=>{return i(new Jb(Z))})}function v8(Z){return B0(Z,Tg())}class Yb extends O{constructor(Z,J,K,Y,X,W,V,G){super();this.id=Z,this.timestamp=J,this.operation=K,this.collection=Y,this.did=X,this.status=W,this.error_message=V,this.event_json=G}}class Xb extends O{constructor(Z){super();this.recent_activity=Z}}function Pg(){return g("id",d0,(Z)=>{return g("timestamp",u,(J)=>{return g("operation",u,(K)=>{return g("collection",u,(Y)=>{return g("did",u,(X)=>{return g("status",u,(W)=>{return g("errorMessage",S1(u),(V)=>{return g("eventJson",S1(u),(G)=>{return i(new Yb(Z,J,K,Y,X,W,V,G))})})})})})})})})}function Sg(){return g("recentActivity",E0(Pg()),(Z)=>{return i(new Xb(Z))})}function GZ(Z){return B0(Z,Sg())}class Qb extends O{constructor(Z,J,K){super();this.id=Z,this.domain_authority=J,this.admin_dids=K}}class Vb extends O{constructor(Z){super();this.settings=Z}}function Ag(){return g("id",u,(Z)=>{return g("domainAuthority",u,(J)=>{return g("adminDids",E0(u),(K)=>{return i(new Qb(Z,J,K))})})})}function qg(){return g("settings",Ag(),(Z)=>{return i(new Vb(Z))})}function N1(Z){return B0(Z,qg())}class Gb extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class Ib extends O{constructor(Z){super();this.statistics=Z}}function Eg(){return g("recordCount",d0,(Z)=>{return g("actorCount",d0,(J)=>{return g("lexiconCount",d0,(K)=>{return i(new Gb(Z,J,K))})})})}function Cg(){return g("statistics",Eg(),(Z)=>{return i(new Ib(Z))})}function Q5(Z){return B0(Z,Cg())}class zb extends O{constructor(Z){super();this.reset_all=Z}}function xg(){return g("resetAll",W1,(Z)=>{return i(new zb(Z))})}function Nb(Z){return B0(Z,xg())}class Fb extends O{constructor(Z){super();this.trigger_backfill=Z}}function Ug(){return g("triggerBackfill",W1,(Z)=>{return i(new Fb(Z))})}function Hb(Z){return B0(Z,Ug())}class Db extends O{constructor(Z,J,K,Y,X,W,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=Y,this.redirect_uris=X,this.scope=W,this.created_at=V}}class Bb extends O{constructor(Z){super();this.update_o_auth_client=Z}}function Rg(){return g("clientId",u,(Z)=>{return g("clientSecret",S1(u),(J)=>{return g("clientName",u,(K)=>{return g("clientType",u,(Y)=>{return g("redirectUris",E0(u),(X)=>{return g("scope",S1(u),(W)=>{return g("createdAt",d0,(V)=>{return i(new Db(Z,J,K,Y,X,W,V))})})})})})})})}function jg(){return g("updateOAuthClient",Rg(),(Z)=>{return i(new Bb(Z))})}function Ob(Z){return B0(Z,jg())}class Tb extends O{constructor(Z,J,K){super();this.id=Z,this.domain_authority=J,this.admin_dids=K}}class Pb extends O{constructor(Z){super();this.update_settings=Z}}function yg(){return g("id",u,(Z)=>{return g("domainAuthority",u,(J)=>{return g("adminDids",E0(u),(K)=>{return i(new Tb(Z,J,K))})})})}function fg(){return g("updateSettings",yg(),(Z)=>{return i(new Pb(Z))})}function bU(Z){return B0(Z,fg())}class Sb extends O{constructor(Z){super();this.upload_lexicons=Z}}function bg(){return g("uploadLexicons",W1,(Z)=>{return i(new Sb(Z))})}function Ab(Z){return B0(Z,bg())}function Rj(Z){globalThis.location.href=Z}class h8 extends O{}class $8 extends O{}class K8 extends O{}class jj extends O{}function IZ(Z,J){let K;if(Z instanceof h8)K=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof $8)K=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof K8)K=["bg-blue-900/30","border-blue-800","text-blue-300","ℹ"];else K=["bg-yellow-900/30","border-yellow-800","text-yellow-300","⚠"];let Y=K,X,W,V,G;return X=Y[0],W=Y[1],V=Y[2],G=Y[3],R(Q([H("mb-6 p-4 rounded border "+X+" "+W)]),Q([R(Q([H("flex items-center gap-3")]),Q([d(Q([H("text-lg "+V)]),Q([w(G)])),d(Q([H("text-sm "+V)]),Q([w(J)]))]))]))}function Lj(Z,J,K,Y){let X;if(Z instanceof h8)X=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof $8)X=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof K8)X=["bg-blue-900/30","border-blue-800","text-blue-300","ℹ"];else X=["bg-yellow-900/30","border-yellow-800","text-yellow-300","⚠"];let W=X,V,G,I,z;return V=W[0],G=W[1],I=W[2],z=W[3],R(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([R(Q([H("flex items-center gap-3")]),Q([d(Q([H("text-lg "+I)]),Q([w(z)])),d(Q([H("text-sm "+I)]),Q([w(J+" "),b1(Q([L1(Y),H("underline hover:no-underline")]),Q([w(K)]))]))]))]))}var qb="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-800 hover:bg-zinc-700 rounded transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:bg-zinc-800";function h1(Z,J,K){return S0(Q([b0("button"),H(qb),qZ(Z),w0(J)]),Q([n0(K)]))}function Eb(Z,J){return S0(Q([b0("submit"),H(qb+" w-full"),qZ(Z)]),Q([n0(J)]))}class hU extends O{constructor(Z){super();this[0]=Z}}class Cb extends O{}class V5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function xb(){return new V5("",!1,new h)}function fj(Z,J,K){return new V5(Z.did_input,Z.is_submitting,new L([J,K]))}function $U(Z){return new V5(Z.did_input,Z.is_submitting,new h)}function gU(Z,J){return new V5(Z.did_input,J,Z.alert)}function wb(Z){let J="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",K="block text-sm font-medium text-zinc-400 mb-2";return R(Q([H("space-y-6")]),Q([R(Q([]),Q([k1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([n0("Backfill Actor")])),f0(Q([H("text-zinc-400 text-sm")]),Q([n0("Sync all collections for a specific actor via CAR file repository sync.")]))])),(()=>{let Y=Z.alert;if(Y instanceof L){let X=Y[0][0],W=Y[0][1],V;if(X==="success")V=new h8;else if(X==="error")V=new $8;else V=new K8;return IZ(V,W)}else return z0()})(),R(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([R(Q([H("mb-4")]),Q([z1(Q([H(K)]),Q([n0("Actor DID")])),v1(Q([b0("text"),H(J),e1("did:plc:... or did:web:..."),D1(Z.did_input),P1((Y)=>{return new hU(Y)})])),f0(Q([H("text-xs text-zinc-500 mt-1")]),Q([n0("Enter the DID of the actor whose records you want to sync.")]))])),R(Q([H("flex items-center gap-4")]),Q([h1(Z.is_submitting||Z.did_input==="",new Cb,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function gg(Z,J){let K=(Y)=>{let X="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(O0(Y,Z))return X+" bg-zinc-700 text-zinc-100";else return X+" bg-zinc-800/50 text-zinc-400 hover:bg-zinc-700/50 hover:text-zinc-300"};return R(Q([H("flex gap-2 mb-4")]),Q([S0(Q([H(K(new dZ)),w0(J(new dZ))]),Q([w("1hr")])),S0(Q([H(K(new cZ)),w0(J(new cZ))]),Q([w("3hr")])),S0(Q([H(K(new pZ)),w0(J(new pZ))]),Q([w("6hr")])),S0(Q([H(K(new k5)),w0(J(new k5))]),Q([w("1 day")])),S0(Q([H(K(new nZ)),w0(J(new nZ))]),Q([w("7 day")]))]))}function _g(Z){let K=I0(Z,(X)=>{return X.creates+X.updates+X.deletes}),Y=PL(K,TJ);return a5(Y,1)}function mg(Z,J,K,Y,X,W){let V=V0(J)*(K+Y);if(Z.creates+Z.updates+Z.deletes===0){let I=4,z=X-I;return f5(Q([]),Q([_Z(Q([M("x",g0(V)),M("y",g0(z)),M("width",g0(K)),M("height",g0(I)),M("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=WJ(X,V0(W)),z=V0(Z.deletes)*I,N=V0(Z.updates)*I,F=V0(Z.creates)*I,D=X-z,B=D-N,P=B-F;return f5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return _Z(Q([M("x",g0(V)),M("y",g0(D)),M("width",g0(K)),M("height",g0(z)),M("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.updates>0)return _Z(Q([M("x",g0(V)),M("y",g0(B)),M("width",g0(K)),M("height",g0(N)),M("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.creates>0)return _Z(Q([M("x",g0(V)),M("y",g0(P)),M("width",g0(K)),M("height",g0(F)),M("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})()]))}}function ug(Z,J){let K=_g(Z),Y;if(J instanceof nZ)Y=[160,12];else Y=[30,4];let X=Y,W,V;W=X[0],V=X[1];let G=V8(Z),I=V0(G)*W+V0(G-1)*V,z=120;return R(Q([H("w-full")]),Q([D7(Q([M("viewBox","0 0 "+g0(I)+" "+g0(z)),M("width","100%"),M("height",g0(z)),M("style","min-height: 120px"),M("preserveAspectRatio","none")]),zJ(Z,(N,F)=>{return mg(N,F,W,V,z,K)}))]))}function dg(Z,J){let K=b(Q([["range",n(W5(J))]])),Y=a(Z,"GetActivityBuckets",K,b5),X;if(X=Y[1],X instanceof C1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([w("Loading activity data...")]));else if(X instanceof x1){let W=X[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([w("Error: "+W)]))}else{let V=X[0].activity_buckets;if(V instanceof U)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([w("No activity data available")]));else return ug(V,J)}}function Ub(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([gg(J,K),dg(Z,J)]))}function kj(Z){try{return new Date(Z).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function bj(Z){try{return new Date(Z).toLocaleString("en-US",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function _U(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return _U(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(_U);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,Y]of Object.entries(Z))J[K]=_U(Y);return J}return Z}function vj(Z){try{let J=JSON.parse(Z),K=_U(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function lg(Z){return R(Q([]),I0(Z,(J)=>{let K,Y=J.status;if(Y==="success")K="text-green-500";else if(Y==="validation_error")K="text-yellow-500";else if(Y==="error")K="text-red-500";else if(Y==="processing")K="text-blue-500";else K="text-zinc-500";let X=K,W,V=J.status;if(V==="success")W="✓";else if(V==="validation_error")W="⚠";else if(V==="error")W="✗";else if(V==="processing")W="⋯";else W="•";let G=W,I,z=J.operation;if(z==="create")I="text-green-400";else if(z==="update")I="text-blue-400";else if(z==="delete")I="text-red-400";else I="text-zinc-400";let N=I,F="activity-"+J1(J.id);return R(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),M("data-entry-id",F)]),Q([R(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),M("onclick","this.parentElement.classList.toggle('expanded')")]),Q([d(Q([H("text-zinc-600 group-hover:text-zinc-400 shrink-0 select-none transition-transform caret"),M("data-caret","")]),Q([w("›")])),d(Q([H("text-zinc-600 shrink-0 w-16"),M("data-timestamp",J.timestamp)]),Q([w(kj(J.timestamp))])),d(Q([H(X+" shrink-0 w-4")]),Q([w(G)])),d(Q([H(N+" shrink-0 w-12")]),Q([w(J.operation)])),d(Q([H("text-purple-400 shrink-0")]),Q([w(J.collection)])),d(Q([H("text-zinc-500 truncate")]),Q([w(J.did)]))])),R(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),M("data-details","")]),Q([R(Q([H("flex gap-2")]),Q([d(Q([H("text-zinc-600 w-20")]),Q([w("Timestamp:")])),d(Q([H("text-zinc-400")]),Q([w(bj(J.timestamp))]))])),R(Q([H("flex gap-2")]),Q([d(Q([H("text-zinc-600 w-20")]),Q([w("DID:")])),d(Q([H("text-zinc-400 font-mono break-all")]),Q([w(J.did)]))])),R(Q([H("flex gap-2")]),Q([d(Q([H("text-zinc-600 w-20")]),Q([w("Status:")])),d(Q([H((()=>{let D=J.status;if(D==="success")return"text-green-400";else if(D==="validation_error")return"text-yellow-400";else if(D==="error")return"text-red-400";else return"text-zinc-400"})())]),Q([w(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof L){let B=D[0];return R(Q([H("flex gap-2")]),Q([d(Q([H("text-zinc-600 w-20")]),Q([w("Error:")])),d(Q([H("text-red-400")]),Q([w(B)]))]))}else return z0()})(),(()=>{let D=J.event_json;if(D instanceof L){let B=D[0],P=vj(B);return R(Q([H("mt-2")]),Q([R(Q([H("text-zinc-600 mb-1")]),Q([w("Event JSON:")])),vJ(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),M("data-json",B)]),Q([w(P)]))]))}else return z0()})()]))]))}))}function Mb(Z,J){let K=b(Q([["hours",K1(J)]])),Y=a(Z,"GetRecentActivity",K,GZ),X;return X=Y[1],R(Q([H("font-mono mb-8")]),Q([q0("style",Q([]),Q([w(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 138 - [data-entry-id].expanded [data-details] { display: block !important; }`)])),R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("flex items-center justify-between mb-3")]),Q([R(Q([H("text-sm text-zinc-500")]),Q([w("Jetstream Activity")])),(()=>{if(X instanceof w1){let W=X[0];return d(Q([H("text-xs text-zinc-600")]),Q([w(J1(V8(W.recent_activity))+" events ("+J1(J)+"h)")]))}else return d(Q([H("text-xs text-zinc-600")]),Q([w("("+J1(J)+"h)")]))})()])),R(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(X instanceof C1)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([w("Loading activity...")]));else if(X instanceof x1){let W=X[0];return R(Q([H("py-8 text-center text-red-400 text-xs")]),Q([w("Error: "+W)]))}else{let V=X[0].recent_activity;if(V instanceof U)return R(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([w("No activity in the last "+J1(J)+" hours")]));else return lg(V)}})()]))]))]))}function iZ(Z){return new Intl.NumberFormat("en-US").format(Z)}function hj(Z,J,K,Y){if(K)return b1(Q([L1(Y),H("bg-zinc-800/50 rounded p-4 block hover:bg-zinc-800 transition-colors cursor-pointer")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([n0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([n0(J)]))]));else return R(Q([H("bg-zinc-800/50 rounded p-4")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([n0(Z)])),R(Q([H("text-2xl font-semibold text-zinc-200")]),Q([n0(J)]))]))}function $j(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([R(Q([H("text-sm text-zinc-500 mb-1")]),Q([n0(Z)])),R(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function Rb(Z){let J=a(Z,"GetStatistics",b(Q([])),Q5),K;if(K=J[1],K instanceof C1)return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([$j("Total Records"),$j("Total Actors"),$j("Total Lexicons")]));else if(K instanceof x1){let Y=K[0];return R(Q([H("mb-8")]),Q([R(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([n0("Error loading statistics: "+Y)]))]))}else{let X=K[0].statistics;return R(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([hj("Total Records",iZ(X.record_count),!1,""),hj("Total Actors",iZ(X.actor_count),!1,""),hj("Total Lexicons",iZ(X.lexicon_count),!0,"/lexicons")]))}}class mU extends O{constructor(Z){super();this[0]=Z}}class uU extends O{}class gj extends O{}function ag(Z,J){let K;if(Z==="")K=Lj(new jj,"No domain authority configured.","Settings","/settings");else K=z0();let Y=K,X;if(J===0)X=Lj(new K8,"No lexicons loaded.","Settings","/settings");else X=z0();let W=X;return R(Q([]),Q([Y,W]))}function jb(Z,J,K,Y,X){let W=a(Z,"GetStatistics",b(Q([])),Q5),V;V=W[1];let G=a(Z,"GetSettings",b(Q([])),N1),I;I=G[1];let z;if(V instanceof w1&&I instanceof w1){let F=V[0],D=I[0];z=ag(D.settings.domain_authority,F.statistics.lexicon_count)}else z=z0();let N=z;return R(Q([]),Q([N,(()=>{if(X)return R(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(Y)return Q([h1(!1,new gj,"Open GraphiQL"),R(Q([H("flex items-center gap-3")]),Q([h1(j5(K),new uU,(()=>{if(K instanceof b8)return"Backfilling...";else if(K instanceof F8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof R5)return f0(Q([H("text-sm text-green-600")]),Q([n0("Backfill complete!")]));else return z0()})()]))]);else return Q([h1(!1,new gj,"Open GraphiQL")])})());else return z0()})(),Rb(Z),Ub(Z,J,(F)=>{return new mU(F)}),Mb(Z,24)]))}function Lb(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function _j(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function og(Z,J,K,Y){while(!0){let X=Z,W=J,V=K,G=Y;if(X instanceof U)return G;else{let I=X.head;if(I==='"'){let z=X.tail,N;if(W)if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];else if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];let F=N,D,B;D=F[0],B=F[1];let P=d(Q([H(D)]),Q([w('"')])),T;if(W)T=!1;else T=B;let S=T;Z=z,J=!W,K=S,Y=C(P,G)}else if(I==="{"&&!W){let z=X.tail,N;if(X instanceof U)N="";else N=X.head;let F=N,D=d(Q([H("text-zinc-400")]),Q([w(F)]));Z=z,J=W,K=!1,Y=C(D,G)}else if(I==="}"&&!W){let z=X.tail,N;if(X instanceof U)N="";else N=X.head;let F=N,D=d(Q([H("text-zinc-400")]),Q([w(F)]));Z=z,J=W,K=!1,Y=C(D,G)}else if(I==="["&&!W){let z=X.tail,N;if(X instanceof U)N="";else N=X.head;let F=N,D=d(Q([H("text-zinc-400")]),Q([w(F)]));Z=z,J=W,K=!1,Y=C(D,G)}else if(I==="]"&&!W){let z=X.tail,N;if(X instanceof U)N="";else N=X.head;let F=N,D=d(Q([H("text-zinc-400")]),Q([w(F)]));Z=z,J=W,K=!1,Y=C(D,G)}else if(I===":"&&!W){let z=X.tail,N=d(Q([H("text-zinc-400")]),Q([w(":")]));Z=z,J=W,K=!0,Y=C(N,G)}else if(I===","&&!W){let z=X.tail,N=d(Q([H("text-zinc-400")]),Q([w(",")]));Z=z,J=W,K=!1,Y=C(N,G)}else if(I===" "&&!W){let z=X.tail,N=w((()=>{if(X instanceof U)return"";else{let F=X.head;if(F===" ")return" ";else if(F===` 145 + }`,"generated/queries/get_lexicons")}class Xb extends O{constructor(Z){super();this.backfill_actor=Z}}function qg(){return h("backfillActor",G1,(Z)=>{return s(new Xb(Z))})}function Wb(Z){return T0(Z,qg())}class Qb extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class Vb extends O{constructor(Z){super();this.create_o_auth_client=Z}}function Cg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new Qb(Z,J,K,X,W,Y,V))})})})})})})})}function xg(){return h("createOAuthClient",Cg(),(Z)=>{return s(new Vb(Z))})}function Gb(Z){return T0(Z,xg())}class Ib extends O{constructor(Z){super();this.delete_o_auth_client=Z}}function Ug(){return h("deleteOAuthClient",G1,(Z)=>{return s(new Ib(Z))})}function zb(Z){return T0(Z,Ug())}class aZ extends O{}class tZ extends O{}class oZ extends O{}class u5 extends O{}class eZ extends O{}class Nb extends O{constructor(Z,J,K,X,W){super();this.timestamp=Z,this.total=J,this.creates=K,this.updates=X,this.deletes=W}}class Fb extends O{constructor(Z){super();this.activity_buckets=Z}}function z5(Z){if(Z instanceof aZ)return"ONE_HOUR";else if(Z instanceof tZ)return"THREE_HOURS";else if(Z instanceof oZ)return"SIX_HOURS";else if(Z instanceof u5)return"ONE_DAY";else return"SEVEN_DAYS"}function Rg(){return h("timestamp",u,(Z)=>{return h("total",p0,(J)=>{return h("creates",p0,(K)=>{return h("updates",p0,(X)=>{return h("deletes",p0,(W)=>{return s(new Nb(Z,J,K,X,W))})})})})})}function jg(){return h("activityBuckets",U0(Rg()),(Z)=>{return s(new Fb(Z))})}function d5(Z){return T0(Z,jg())}class Hb extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class Db extends O{constructor(Z){super();this.current_session=Z}}function Lg(){return h("did",u,(Z)=>{return h("handle",u,(J)=>{return h("isAdmin",G1,(K)=>{return s(new Hb(Z,J,K))})})})}function yg(){return h("currentSession",U1(Lg()),(Z)=>{return s(new Db(Z))})}function dj(Z){return T0(Z,yg())}class Bb extends O{constructor(Z,J,K){super();this.id=Z,this.json=J,this.created_at=K}}class Ob extends O{constructor(Z){super();this.lexicons=Z}}function kg(){return h("id",u,(Z)=>{return h("json",u,(J)=>{return h("createdAt",u,(K)=>{return s(new Bb(Z,J,K))})})})}function bg(){return h("lexicons",U0(kg()),(Z)=>{return s(new Ob(Z))})}function ZJ(Z){return T0(Z,bg())}class Pb extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class Sb extends O{constructor(Z){super();this.oauth_clients=Z}}function hg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new Pb(Z,J,K,X,W,Y,V))})})})})})})})}function vg(){return h("oauthClients",U0(hg()),(Z)=>{return s(new Sb(Z))})}function d8(Z){return T0(Z,vg())}class qb extends O{constructor(Z,J,K,X,W,Y,V,G){super();this.id=Z,this.timestamp=J,this.operation=K,this.collection=X,this.did=W,this.status=Y,this.error_message=V,this.event_json=G}}class Eb extends O{constructor(Z){super();this.recent_activity=Z}}function $g(){return h("id",p0,(Z)=>{return h("timestamp",u,(J)=>{return h("operation",u,(K)=>{return h("collection",u,(X)=>{return h("did",u,(W)=>{return h("status",u,(Y)=>{return h("errorMessage",U1(u),(V)=>{return h("eventJson",U1(u),(G)=>{return s(new qb(Z,J,K,X,W,Y,V,G))})})})})})})})})}function gg(){return h("recentActivity",U0($g()),(Z)=>{return s(new Eb(Z))})}function OZ(Z){return T0(Z,gg())}class xb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class wb extends O{constructor(Z){super();this.settings=Z}}function _g(){return h("id",u,(Z)=>{return h("domainAuthority",u,(J)=>{return h("adminDids",U0(u),(K)=>{return h("relayUrl",u,(X)=>{return h("plcDirectoryUrl",u,(W)=>{return h("jetstreamUrl",u,(Y)=>{return h("oauthSupportedScopes",u,(V)=>{return s(new xb(Z,J,K,X,W,Y,V))})})})})})})})}function mg(){return h("settings",_g(),(Z)=>{return s(new wb(Z))})}function O1(Z){return T0(Z,mg())}class Ub extends O{constructor(Z,J,K){super();this.record_count=Z,this.actor_count=J,this.lexicon_count=K}}class Mb extends O{constructor(Z){super();this.statistics=Z}}function ug(){return h("recordCount",p0,(Z)=>{return h("actorCount",p0,(J)=>{return h("lexiconCount",p0,(K)=>{return s(new Ub(Z,J,K))})})})}function dg(){return h("statistics",ug(),(Z)=>{return s(new Mb(Z))})}function N5(Z){return T0(Z,dg())}class Rb extends O{constructor(Z){super();this.reset_all=Z}}function cg(){return h("resetAll",G1,(Z)=>{return s(new Rb(Z))})}function jb(Z){return T0(Z,cg())}class Lb extends O{constructor(Z){super();this.trigger_backfill=Z}}function ng(){return h("triggerBackfill",G1,(Z)=>{return s(new Lb(Z))})}function yb(Z){return T0(Z,ng())}class fb extends O{constructor(Z,J,K,X,W,Y,V){super();this.client_id=Z,this.client_secret=J,this.client_name=K,this.client_type=X,this.redirect_uris=W,this.scope=Y,this.created_at=V}}class kb extends O{constructor(Z){super();this.update_o_auth_client=Z}}function lg(){return h("clientId",u,(Z)=>{return h("clientSecret",U1(u),(J)=>{return h("clientName",u,(K)=>{return h("clientType",u,(X)=>{return h("redirectUris",U0(u),(W)=>{return h("scope",U1(u),(Y)=>{return h("createdAt",p0,(V)=>{return s(new fb(Z,J,K,X,W,Y,V))})})})})})})})}function sg(){return h("updateOAuthClient",lg(),(Z)=>{return s(new kb(Z))})}function bb(Z){return T0(Z,sg())}class hb extends O{constructor(Z,J,K,X,W,Y,V){super();this.id=Z,this.domain_authority=J,this.admin_dids=K,this.relay_url=X,this.plc_directory_url=W,this.jetstream_url=Y,this.oauth_supported_scopes=V}}class vb extends O{constructor(Z){super();this.update_settings=Z}}function ag(){return h("id",u,(Z)=>{return h("domainAuthority",u,(J)=>{return h("adminDids",U0(u),(K)=>{return h("relayUrl",u,(X)=>{return h("plcDirectoryUrl",u,(W)=>{return h("jetstreamUrl",u,(Y)=>{return h("oauthSupportedScopes",u,(V)=>{return s(new hb(Z,J,K,X,W,Y,V))})})})})})})})}function tg(){return h("updateSettings",ag(),(Z)=>{return s(new vb(Z))})}function JJ(Z){return T0(Z,tg())}class $b extends O{constructor(Z){super();this.upload_lexicons=Z}}function eg(){return h("uploadLexicons",G1,(Z)=>{return s(new $b(Z))})}function gb(Z){return T0(Z,eg())}function nj(Z){globalThis.location.href=Z}class A8 extends O{}class q8 extends O{}class e1 extends O{}class ij extends O{}function c5(Z,J){let K;if(Z instanceof A8)K=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof q8)K=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof e1)K=["bg-blue-900/30","border-blue-800","text-blue-300","ℹ"];else K=["bg-yellow-900/30","border-yellow-800","text-yellow-300","⚠"];let X=K,W,Y,V,G;return W=X[0],Y=X[1],V=X[2],G=X[3],j(Q([H("mb-6 p-4 rounded border "+W+" "+Y)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+V)]),Q([x(G)])),p(Q([H("text-sm "+V)]),Q([x(J)]))]))]))}function lj(Z,J,K,X){let W;if(Z instanceof A8)W=["bg-green-900/30","border-green-800","text-green-300","✓"];else if(Z instanceof q8)W=["bg-red-900/30","border-red-800","text-red-300","✗"];else if(Z instanceof e1)W=["bg-blue-900/30","border-blue-800","text-blue-300","ℹ"];else W=["bg-yellow-900/30","border-yellow-800","text-yellow-300","⚠"];let Y=W,V,G,I,z;return V=Y[0],G=Y[1],I=Y[2],z=Y[3],j(Q([H("mb-6 p-4 rounded border "+V+" "+G)]),Q([j(Q([H("flex items-center gap-3")]),Q([p(Q([H("text-lg "+I)]),Q([x(z)])),p(Q([H("text-sm "+I)]),Q([x(J+" "),m1(Q([v1(X),H("underline hover:no-underline")]),Q([x(K)]))]))]))]))}var _b="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-800 hover:bg-zinc-700 rounded transition-colors cursor-pointer disabled:opacity-50 disabled:cursor-not-allowed disabled:hover:bg-zinc-800";function Z8(Z,J,K){return q0(Q([M0("button"),H(_b),RZ(Z),f0(J)]),Q([l0(K)]))}function mU(Z,J){return q0(Q([M0("submit"),H(_b),RZ(Z)]),Q([l0(J)]))}class dU extends O{constructor(Z){super();this[0]=Z}}class mb extends O{}class F5 extends O{constructor(Z,J,K){super();this.did_input=Z,this.is_submitting=J,this.alert=K}}function ub(){return new F5("",!1,new v)}function rj(Z,J,K){return new F5(Z.did_input,Z.is_submitting,new y([J,K]))}function cU(Z){return new F5(Z.did_input,Z.is_submitting,new v)}function pU(Z,J){return new F5(Z.did_input,J,Z.alert)}function db(Z){let J="font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",K="block text-sm font-medium text-zinc-400 mb-2";return j(Q([H("space-y-6")]),Q([j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-2")]),Q([l0("Backfill Actor")])),x0(Q([H("text-zinc-400 text-sm")]),Q([l0("Sync all collections for a specific actor via CAR file repository sync.")]))])),(()=>{let X=Z.alert;if(X instanceof y){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new A8;else if(W==="error")V=new q8;else V=new e1;return c5(V,Y)}else return z0()})(),j(Q([H("bg-zinc-900/50 border border-zinc-800 rounded-lg p-6 max-w-xl")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H(K)]),Q([l0("Actor DID")])),N1(Q([M0("text"),H(J),q1("did:plc:... or did:web:..."),o0(Z.did_input),K1((X)=>{return new dU(X)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([l0("Enter the DID of the actor whose records you want to sync.")]))])),j(Q([H("flex items-center gap-4")]),Q([Z8(Z.is_submitting||Z.did_input==="",new mb,(()=>{if(Z.is_submitting)return"Syncing...";else return"Sync Actor"})())]))]))]))}function Y_(Z,J){let K=(X)=>{let W="px-3 py-1 text-xs rounded transition-colors cursor-pointer";if(S0(X,Z))return W+" bg-zinc-700 text-zinc-100";else return W+" bg-zinc-800/50 text-zinc-400 hover:bg-zinc-700/50 hover:text-zinc-300"};return j(Q([H("flex gap-2 mb-4")]),Q([q0(Q([H(K(new aZ)),f0(J(new aZ))]),Q([x("1hr")])),q0(Q([H(K(new tZ)),f0(J(new tZ))]),Q([x("3hr")])),q0(Q([H(K(new oZ)),f0(J(new oZ))]),Q([x("6hr")])),q0(Q([H(K(new u5)),f0(J(new u5))]),Q([x("1 day")])),q0(Q([H(K(new eZ)),f0(J(new eZ))]),Q([x("7 day")]))]))}function X_(Z){let K=H0(Z,(W)=>{return W.creates+W.updates+W.deletes}),X=hL(K,CJ);return X4(X,1)}function W_(Z,J,K,X,W,Y){let V=N0(J)*(K+X);if(Z.creates+Z.updates+Z.deletes===0){let I=4,z=W-I;return m5(Q([]),Q([lZ(Q([M("x",c0(V)),M("y",c0(z)),M("width",c0(K)),M("height",c0(I)),M("style","fill: #3f3f46 !important; stroke: none; display: inline")]))]))}else{let I=FJ(W,N0(Y)),z=N0(Z.deletes)*I,N=N0(Z.updates)*I,F=N0(Z.creates)*I,D=W-z,B=D-N,T=B-F;return m5(Q([H("group")]),Q([(()=>{if(Z.deletes>0)return lZ(Q([M("x",c0(V)),M("y",c0(D)),M("width",c0(K)),M("height",c0(z)),M("style","fill: #ef4444 !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.updates>0)return lZ(Q([M("x",c0(V)),M("y",c0(B)),M("width",c0(K)),M("height",c0(N)),M("style","fill: #60a5fa !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})(),(()=>{if(Z.creates>0)return lZ(Q([M("x",c0(V)),M("y",c0(T)),M("width",c0(K)),M("height",c0(F)),M("style","fill: #22c55e !important; stroke: none; display: inline; cursor: pointer; transition: opacity 0.2s"),H("group-hover:opacity-80")]));else return z0()})()]))}}function Q_(Z,J){let K=X_(Z),X;if(J instanceof eZ)X=[160,12];else X=[30,4];let W=X,Y,V;Y=W[0],V=W[1];let G=z8(Z),I=N0(G)*Y+N0(G-1)*V,z=120;return j(Q([H("w-full")]),Q([E4(Q([M("viewBox","0 0 "+c0(I)+" "+c0(z)),M("width","100%"),M("height",c0(z)),M("style","min-height: 120px"),M("preserveAspectRatio","none")]),TJ(Z,(N,F)=>{return W_(N,F,Y,V,z,K)}))]))}function V_(Z,J){let K=b(Q([["range",d(z5(J))]])),X=a(Z,"GetActivityBuckets",K,d5),W;if(W=X[1],W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity data...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].activity_buckets;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity data available")]));else return Q_(V,J)}}function cb(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-4 font-mono mb-8")]),Q([Y_(J,K),V_(Z,J)]))}function aj(Z){try{return new Date(Z).toLocaleTimeString("en-US",{hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function tj(Z){try{return new Date(Z).toLocaleString("en-US",{year:"numeric",month:"2-digit",day:"2-digit",hour:"2-digit",minute:"2-digit",second:"2-digit",hour12:!1})}catch(J){return Z}}function nU(Z){if(typeof Z==="string")try{let J=JSON.parse(Z);return nU(J)}catch(J){return Z}else if(Array.isArray(Z))return Z.map(nU);else if(Z!==null&&typeof Z==="object"){let J={};for(let[K,X]of Object.entries(Z))J[K]=nU(X);return J}return Z}function oj(Z){try{let J=JSON.parse(Z),K=nU(J);return JSON.stringify(K,null,2)}catch(J){return Z}}function N_(Z){return j(Q([]),H0(Z,(J)=>{let K,X=J.status;if(X==="success")K="text-green-500";else if(X==="validation_error")K="text-yellow-500";else if(X==="error")K="text-red-500";else if(X==="processing")K="text-blue-500";else K="text-zinc-500";let W=K,Y,V=J.status;if(V==="success")Y="✓";else if(V==="validation_error")Y="⚠";else if(V==="error")Y="✗";else if(V==="processing")Y="⋯";else Y="•";let G=Y,I,z=J.operation;if(z==="create")I="text-green-400";else if(z==="update")I="text-blue-400";else if(z==="delete")I="text-red-400";else I="text-zinc-400";let N=I,F="activity-"+X1(J.id);return j(Q([H("border-l-2 border-zinc-700/50 hover:border-zinc-600 transition-colors"),M("data-entry-id",F)]),Q([j(Q([H("flex items-start gap-2 py-1 text-xs font-mono hover:bg-zinc-900/30 cursor-pointer group"),M("onclick","this.parentElement.classList.toggle('expanded')")]),Q([p(Q([H("text-zinc-600 group-hover:text-zinc-400 shrink-0 select-none transition-transform caret"),M("data-caret","")]),Q([x("›")])),p(Q([H("text-zinc-600 shrink-0 w-16"),M("data-timestamp",J.timestamp)]),Q([x(aj(J.timestamp))])),p(Q([H(W+" shrink-0 w-4")]),Q([x(G)])),p(Q([H(N+" shrink-0 w-12")]),Q([x(J.operation)])),p(Q([H("text-purple-400 shrink-0")]),Q([x(J.collection)])),p(Q([H("text-zinc-500 truncate")]),Q([x(J.did)]))])),j(Q([H("px-6 py-2 text-xs bg-zinc-900/50 border-t border-zinc-800 hidden space-y-1"),M("data-details","")]),Q([j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Timestamp:")])),p(Q([H("text-zinc-400")]),Q([x(tj(J.timestamp))]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("DID:")])),p(Q([H("text-zinc-400 font-mono break-all")]),Q([x(J.did)]))])),j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Status:")])),p(Q([H((()=>{let D=J.status;if(D==="success")return"text-green-400";else if(D==="validation_error")return"text-yellow-400";else if(D==="error")return"text-red-400";else return"text-zinc-400"})())]),Q([x(J.status)]))])),(()=>{let D=J.error_message;if(D instanceof y){let B=D[0];return j(Q([H("flex gap-2")]),Q([p(Q([H("text-zinc-600 w-20")]),Q([x("Error:")])),p(Q([H("text-red-400")]),Q([x(B)]))]))}else return z0()})(),(()=>{let D=J.event_json;if(D instanceof y){let B=D[0],T=oj(B);return j(Q([H("mt-2")]),Q([j(Q([H("text-zinc-600 mb-1")]),Q([x("Event JSON:")])),dJ(Q([H("text-zinc-400 bg-black/40 p-2 rounded text-[10px] whitespace-pre-wrap block"),M("data-json",B)]),Q([x(T)]))]))}else return z0()})()]))]))}))}function pb(Z,J){let K=b(Q([["hours",W1(J)]])),X=a(Z,"GetRecentActivity",K,OZ),W;return W=X[1],j(Q([H("font-mono mb-8")]),Q([R0("style",Q([]),Q([x(`[data-entry-id].expanded [data-caret] { transform: rotate(90deg); } 146 + [data-entry-id].expanded [data-details] { display: block !important; }`)])),j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("flex items-center justify-between mb-3")]),Q([j(Q([H("text-sm text-zinc-500")]),Q([x("Jetstream Activity")])),(()=>{if(W instanceof y1){let Y=W[0];return p(Q([H("text-xs text-zinc-600")]),Q([x(X1(z8(Y.recent_activity))+" events ("+X1(J)+"h)")]))}else return p(Q([H("text-xs text-zinc-600")]),Q([x("("+X1(J)+"h)")]))})()])),j(Q([H("max-h-80 overflow-y-auto")]),Q([(()=>{if(W instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("Loading activity...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-8 text-center text-red-400 text-xs")]),Q([x("Error: "+Y)]))}else{let V=W[0].recent_activity;if(V instanceof U)return j(Q([H("py-8 text-center text-zinc-600 text-xs")]),Q([x("No activity in the last "+X1(J)+" hours")]));else return N_(V)}})()]))]))]))}function KJ(Z){return new Intl.NumberFormat("en-US").format(Z)}function ej(Z,J,K,X){if(K)return m1(Q([v1(X),H("bg-zinc-800/50 rounded p-4 block hover:bg-zinc-800 transition-colors cursor-pointer")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([l0(J)]))]));else return j(Q([H("bg-zinc-800/50 rounded p-4")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("text-2xl font-semibold text-zinc-200")]),Q([l0(J)]))]))}function ZL(Z){return j(Q([H("bg-zinc-800/50 rounded p-4 animate-pulse")]),Q([j(Q([H("text-sm text-zinc-500 mb-1")]),Q([l0(Z)])),j(Q([H("h-8 bg-zinc-700 rounded w-24")]),Q([]))]))}function nb(Z){let J=a(Z,"GetStatistics",b(Q([])),N5),K;if(K=J[1],K instanceof j1)return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([ZL("Total Records"),ZL("Total Actors"),ZL("Total Lexicons")]));else if(K instanceof L1){let X=K[0];return j(Q([H("mb-8")]),Q([j(Q([H("bg-red-800/50 rounded p-4 text-red-200")]),Q([l0("Error loading statistics: "+X)]))]))}else{let W=K[0].statistics;return j(Q([H("mb-8 grid grid-cols-1 sm:grid-cols-3 gap-4")]),Q([ej("Total Records",KJ(W.record_count),!1,""),ej("Total Actors",KJ(W.actor_count),!1,""),ej("Total Lexicons",KJ(W.lexicon_count),!0,"/lexicons")]))}}class iU extends O{constructor(Z){super();this[0]=Z}}class lU extends O{}class JL extends O{}function B_(Z,J){let K;if(Z==="")K=lj(new ij,"No domain authority configured.","Settings","/settings");else K=z0();let X=K,W;if(J===0)W=lj(new e1,"No lexicons loaded.","Settings","/settings");else W=z0();let Y=W;return j(Q([]),Q([X,Y]))}function ib(Z,J,K,X,W){let Y=a(Z,"GetStatistics",b(Q([])),N5),V;V=Y[1];let G=a(Z,"GetSettings",b(Q([])),O1),I;I=G[1];let z;if(V instanceof y1&&I instanceof y1){let F=V[0],D=I[0];z=B_(D.settings.domain_authority,F.statistics.lexicon_count)}else z=z0();let N=z;return j(Q([]),Q([N,(()=>{if(W)return j(Q([H("mb-8 flex gap-3 flex-wrap items-start")]),(()=>{if(X)return Q([Z8(!1,new JL,"Open GraphiQL"),j(Q([H("flex items-center gap-3")]),Q([Z8($5(K),new lU,(()=>{if(K instanceof m8)return"Backfilling...";else if(K instanceof B8)return"Backfilling...";else return"Trigger Backfill"})()),(()=>{if(K instanceof v5)return x0(Q([H("text-sm text-green-600")]),Q([l0("Backfill complete!")]));else return z0()})()]))]);else return Q([Z8(!1,new JL,"Open GraphiQL")])})());else return z0()})(),nb(Z),cb(Z,J,(F)=>{return new iU(F)}),pb(Z,24)]))}function lb(Z){if(navigator.clipboard&&navigator.clipboard.writeText)navigator.clipboard.writeText(Z).catch((J)=>{console.error("Failed to copy to clipboard:",J)})}function KL(Z){try{let J=JSON.parse(Z);return JSON.stringify(J,null,2)}catch(J){return Z}}function T_(Z,J,K,X){while(!0){let W=Z,Y=J,V=K,G=X;if(W instanceof U)return G;else{let I=W.head;if(I==='"'){let z=W.tail,N;if(Y)if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];else if(V)N=["text-green-400",!0];else N=["text-sky-400",!1];let F=N,D,B;D=F[0],B=F[1];let T=p(Q([H(D)]),Q([x('"')])),P;if(Y)P=!1;else P=B;let S=P;Z=z,J=!Y,K=S,X=A(T,G)}else if(I==="{"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="}"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="["&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I==="]"&&!Y){let z=W.tail,N;if(W instanceof U)N="";else N=W.head;let F=N,D=p(Q([H("text-zinc-400")]),Q([x(F)]));Z=z,J=Y,K=!1,X=A(D,G)}else if(I===":"&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([x(":")]));Z=z,J=Y,K=!0,X=A(N,G)}else if(I===","&&!Y){let z=W.tail,N=p(Q([H("text-zinc-400")]),Q([x(",")]));Z=z,J=Y,K=!1,X=A(N,G)}else if(I===" "&&!Y){let z=W.tail,N=x((()=>{if(W instanceof U)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 139 147 `)return` 140 - `;else return""}})());Z=z,J=W,K=V,Y=C(N,G)}else if(I===` 141 - `&&!W){let z=X.tail,N=w((()=>{if(X instanceof U)return"";else{let F=X.head;if(F===" ")return" ";else if(F===` 148 + `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I===` 149 + `&&!Y){let z=W.tail,N=x((()=>{if(W instanceof U)return"";else{let F=W.head;if(F===" ")return" ";else if(F===` 142 150 `)return` 143 - `;else return""}})());Z=z,J=W,K=V,Y=C(N,G)}else if(I==="t")if(W){let z=I,N=X.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=d(Q([H(F)]),Q([w(z)]));Z=N,J=W,K=V,Y=C(B,G)}else{let z=X.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let P=d(Q([H(D)]),Q([w(N)]));Z=F,J=W,K=V,Y=C(P,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let T=d(Q([H(B)]),Q([w(F)]));Z=D,J=W,K=V,Y=C(T,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,P;if(D==="0")P="text-red-400";else if(D==="1")P="text-red-400";else if(D==="2")P="text-red-400";else if(D==="3")P="text-red-400";else if(D==="4")P="text-red-400";else if(D==="5")P="text-red-400";else if(D==="6")P="text-red-400";else if(D==="7")P="text-red-400";else if(D==="8")P="text-red-400";else if(D==="9")P="text-red-400";else if(D===".")P="text-red-400";else if(D==="-")P="text-red-400";else P="text-zinc-200";let S=d(Q([H(P)]),Q([w(D)]));Z=B,J=W,K=V,Y=C(S,G)}else if(z.head==="r")if(N.head==="u")if(F.head==="e"&&!W){let T;if(X instanceof U)T="";else{let f=X.tail;if(f instanceof U)T="";else{let x=f.tail;if(x instanceof U)T="";else{let y=x.tail;if(y instanceof U)T="";else{let $=X.head;if($==="t")if(f.head==="r")if(x.head==="u")if(y.head==="e")T="true";else T="";else T="";else T="";else if($==="f"){let c=y.tail;if(c instanceof U)T="";else if(f.head==="a")if(x.head==="l")if(y.head==="s")if(c.head==="e")T="false";else T="";else T="";else T="";else T=""}else if($==="n")if(f.head==="u")if(x.head==="l")if(y.head==="l")T="null";else T="";else T="";else T="";else T=""}}}}let S=T,A=t1(S),q=d(Q([H("text-red-400")]),Q([w(S)]));Z=d5(X,A),J=W,K=!1,Y=C(q,G)}else{let T=I,S=z,A;if(T==="0")A="text-red-400";else if(T==="1")A="text-red-400";else if(T==="2")A="text-red-400";else if(T==="3")A="text-red-400";else if(T==="4")A="text-red-400";else if(T==="5")A="text-red-400";else if(T==="6")A="text-red-400";else if(T==="7")A="text-red-400";else if(T==="8")A="text-red-400";else if(T==="9")A="text-red-400";else if(T===".")A="text-red-400";else if(T==="-")A="text-red-400";else A="text-zinc-200";let j=d(Q([H(A)]),Q([w(T)]));Z=S,J=W,K=V,Y=C(j,G)}else{let P=I,T=z,S;if(P==="0")S="text-red-400";else if(P==="1")S="text-red-400";else if(P==="2")S="text-red-400";else if(P==="3")S="text-red-400";else if(P==="4")S="text-red-400";else if(P==="5")S="text-red-400";else if(P==="6")S="text-red-400";else if(P==="7")S="text-red-400";else if(P==="8")S="text-red-400";else if(P==="9")S="text-red-400";else if(P===".")S="text-red-400";else if(P==="-")S="text-red-400";else S="text-zinc-200";let q=d(Q([H(S)]),Q([w(P)]));Z=T,J=W,K=V,Y=C(q,G)}else{let B=I,P=z,T;if(B==="0")T="text-red-400";else if(B==="1")T="text-red-400";else if(B==="2")T="text-red-400";else if(B==="3")T="text-red-400";else if(B==="4")T="text-red-400";else if(B==="5")T="text-red-400";else if(B==="6")T="text-red-400";else if(B==="7")T="text-red-400";else if(B==="8")T="text-red-400";else if(B==="9")T="text-red-400";else if(B===".")T="text-red-400";else if(B==="-")T="text-red-400";else T="text-zinc-200";let A=d(Q([H(T)]),Q([w(B)]));Z=P,J=W,K=V,Y=C(A,G)}}}}else if(I==="f")if(W){let z=I,N=X.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=d(Q([H(F)]),Q([w(z)]));Z=N,J=W,K=V,Y=C(B,G)}else{let z=X.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let P=d(Q([H(D)]),Q([w(N)]));Z=F,J=W,K=V,Y=C(P,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let T=d(Q([H(B)]),Q([w(F)]));Z=D,J=W,K=V,Y=C(T,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,P;if(D==="0")P="text-red-400";else if(D==="1")P="text-red-400";else if(D==="2")P="text-red-400";else if(D==="3")P="text-red-400";else if(D==="4")P="text-red-400";else if(D==="5")P="text-red-400";else if(D==="6")P="text-red-400";else if(D==="7")P="text-red-400";else if(D==="8")P="text-red-400";else if(D==="9")P="text-red-400";else if(D===".")P="text-red-400";else if(D==="-")P="text-red-400";else P="text-zinc-200";let S=d(Q([H(P)]),Q([w(D)]));Z=B,J=W,K=V,Y=C(S,G)}else{let D=F.tail;if(D instanceof U){let B=I,P=z,T;if(B==="0")T="text-red-400";else if(B==="1")T="text-red-400";else if(B==="2")T="text-red-400";else if(B==="3")T="text-red-400";else if(B==="4")T="text-red-400";else if(B==="5")T="text-red-400";else if(B==="6")T="text-red-400";else if(B==="7")T="text-red-400";else if(B==="8")T="text-red-400";else if(B==="9")T="text-red-400";else if(B===".")T="text-red-400";else if(B==="-")T="text-red-400";else T="text-zinc-200";let A=d(Q([H(T)]),Q([w(B)]));Z=P,J=W,K=V,Y=C(A,G)}else if(z.head==="a")if(N.head==="l")if(F.head==="s")if(D.head==="e"&&!W){let A;if(X instanceof U)A="";else{let y=X.tail;if(y instanceof U)A="";else{let $=y.tail;if($ instanceof U)A="";else{let c=$.tail;if(c instanceof U)A="";else{let p=X.head;if(p==="t")if(y.head==="r")if($.head==="u")if(c.head==="e")A="true";else A="";else A="";else A="";else if(p==="f"){let s=c.tail;if(s instanceof U)A="";else if(y.head==="a")if($.head==="l")if(c.head==="s")if(s.head==="e")A="false";else A="";else A="";else A="";else A=""}else if(p==="n")if(y.head==="u")if($.head==="l")if(c.head==="l")A="null";else A="";else A="";else A="";else A=""}}}}let q=A,j=t1(q),f=d(Q([H("text-red-400")]),Q([w(q)]));Z=d5(X,j),J=W,K=!1,Y=C(f,G)}else{let A=I,q=z,j;if(A==="0")j="text-red-400";else if(A==="1")j="text-red-400";else if(A==="2")j="text-red-400";else if(A==="3")j="text-red-400";else if(A==="4")j="text-red-400";else if(A==="5")j="text-red-400";else if(A==="6")j="text-red-400";else if(A==="7")j="text-red-400";else if(A==="8")j="text-red-400";else if(A==="9")j="text-red-400";else if(A===".")j="text-red-400";else if(A==="-")j="text-red-400";else j="text-zinc-200";let x=d(Q([H(j)]),Q([w(A)]));Z=q,J=W,K=V,Y=C(x,G)}else{let S=I,A=z,q;if(S==="0")q="text-red-400";else if(S==="1")q="text-red-400";else if(S==="2")q="text-red-400";else if(S==="3")q="text-red-400";else if(S==="4")q="text-red-400";else if(S==="5")q="text-red-400";else if(S==="6")q="text-red-400";else if(S==="7")q="text-red-400";else if(S==="8")q="text-red-400";else if(S==="9")q="text-red-400";else if(S===".")q="text-red-400";else if(S==="-")q="text-red-400";else q="text-zinc-200";let f=d(Q([H(q)]),Q([w(S)]));Z=A,J=W,K=V,Y=C(f,G)}else{let T=I,S=z,A;if(T==="0")A="text-red-400";else if(T==="1")A="text-red-400";else if(T==="2")A="text-red-400";else if(T==="3")A="text-red-400";else if(T==="4")A="text-red-400";else if(T==="5")A="text-red-400";else if(T==="6")A="text-red-400";else if(T==="7")A="text-red-400";else if(T==="8")A="text-red-400";else if(T==="9")A="text-red-400";else if(T===".")A="text-red-400";else if(T==="-")A="text-red-400";else A="text-zinc-200";let j=d(Q([H(A)]),Q([w(T)]));Z=S,J=W,K=V,Y=C(j,G)}else{let P=I,T=z,S;if(P==="0")S="text-red-400";else if(P==="1")S="text-red-400";else if(P==="2")S="text-red-400";else if(P==="3")S="text-red-400";else if(P==="4")S="text-red-400";else if(P==="5")S="text-red-400";else if(P==="6")S="text-red-400";else if(P==="7")S="text-red-400";else if(P==="8")S="text-red-400";else if(P==="9")S="text-red-400";else if(P===".")S="text-red-400";else if(P==="-")S="text-red-400";else S="text-zinc-200";let q=d(Q([H(S)]),Q([w(P)]));Z=T,J=W,K=V,Y=C(q,G)}}}}}else if(I==="n")if(W){let z=I,N=X.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=d(Q([H(F)]),Q([w(z)]));Z=N,J=W,K=V,Y=C(B,G)}else{let z=X.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let P=d(Q([H(D)]),Q([w(N)]));Z=F,J=W,K=V,Y=C(P,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let T=d(Q([H(B)]),Q([w(F)]));Z=D,J=W,K=V,Y=C(T,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,P;if(D==="0")P="text-red-400";else if(D==="1")P="text-red-400";else if(D==="2")P="text-red-400";else if(D==="3")P="text-red-400";else if(D==="4")P="text-red-400";else if(D==="5")P="text-red-400";else if(D==="6")P="text-red-400";else if(D==="7")P="text-red-400";else if(D==="8")P="text-red-400";else if(D==="9")P="text-red-400";else if(D===".")P="text-red-400";else if(D==="-")P="text-red-400";else P="text-zinc-200";let S=d(Q([H(P)]),Q([w(D)]));Z=B,J=W,K=V,Y=C(S,G)}else if(z.head==="u")if(N.head==="l")if(F.head==="l"&&!W){let T;if(X instanceof U)T="";else{let f=X.tail;if(f instanceof U)T="";else{let x=f.tail;if(x instanceof U)T="";else{let y=x.tail;if(y instanceof U)T="";else{let $=X.head;if($==="t")if(f.head==="r")if(x.head==="u")if(y.head==="e")T="true";else T="";else T="";else T="";else if($==="f"){let c=y.tail;if(c instanceof U)T="";else if(f.head==="a")if(x.head==="l")if(y.head==="s")if(c.head==="e")T="false";else T="";else T="";else T="";else T=""}else if($==="n")if(f.head==="u")if(x.head==="l")if(y.head==="l")T="null";else T="";else T="";else T="";else T=""}}}}let S=T,A=t1(S),q=d(Q([H("text-red-400")]),Q([w(S)]));Z=d5(X,A),J=W,K=!1,Y=C(q,G)}else{let T=I,S=z,A;if(T==="0")A="text-red-400";else if(T==="1")A="text-red-400";else if(T==="2")A="text-red-400";else if(T==="3")A="text-red-400";else if(T==="4")A="text-red-400";else if(T==="5")A="text-red-400";else if(T==="6")A="text-red-400";else if(T==="7")A="text-red-400";else if(T==="8")A="text-red-400";else if(T==="9")A="text-red-400";else if(T===".")A="text-red-400";else if(T==="-")A="text-red-400";else A="text-zinc-200";let j=d(Q([H(A)]),Q([w(T)]));Z=S,J=W,K=V,Y=C(j,G)}else{let P=I,T=z,S;if(P==="0")S="text-red-400";else if(P==="1")S="text-red-400";else if(P==="2")S="text-red-400";else if(P==="3")S="text-red-400";else if(P==="4")S="text-red-400";else if(P==="5")S="text-red-400";else if(P==="6")S="text-red-400";else if(P==="7")S="text-red-400";else if(P==="8")S="text-red-400";else if(P==="9")S="text-red-400";else if(P===".")S="text-red-400";else if(P==="-")S="text-red-400";else S="text-zinc-200";let q=d(Q([H(S)]),Q([w(P)]));Z=T,J=W,K=V,Y=C(q,G)}else{let B=I,P=z,T;if(B==="0")T="text-red-400";else if(B==="1")T="text-red-400";else if(B==="2")T="text-red-400";else if(B==="3")T="text-red-400";else if(B==="4")T="text-red-400";else if(B==="5")T="text-red-400";else if(B==="6")T="text-red-400";else if(B==="7")T="text-red-400";else if(B==="8")T="text-red-400";else if(B==="9")T="text-red-400";else if(B===".")T="text-red-400";else if(B==="-")T="text-red-400";else T="text-zinc-200";let A=d(Q([H(T)]),Q([w(B)]));Z=P,J=W,K=V,Y=C(A,G)}}}}else if(W){let z=I,N=X.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=d(Q([H(F)]),Q([w(z)]));Z=N,J=W,K=V,Y=C(B,G)}else{let z=I,N=X.tail,F;if(z==="0")F="text-red-400";else if(z==="1")F="text-red-400";else if(z==="2")F="text-red-400";else if(z==="3")F="text-red-400";else if(z==="4")F="text-red-400";else if(z==="5")F="text-red-400";else if(z==="6")F="text-red-400";else if(z==="7")F="text-red-400";else if(z==="8")F="text-red-400";else if(z==="9")F="text-red-400";else if(z===".")F="text-red-400";else if(z==="-")F="text-red-400";else F="text-zinc-200";let B=d(Q([H(F)]),Q([w(z)]));Z=N,J=W,K=V,Y=C(B,G)}}}}function eg(Z,J,K){return og(Z,J,!1,K)}function yb(Z){let K=BZ(Z),Y=eg(K,!1,Q([])),X=G0(Y);return $y(X)}class fb extends O{constructor(Z){super();this[0]=Z}}function kb(Z){let J=Z[0];return V1((K)=>{return Lb(J)})}function J_(){return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([w("Loading lexicons...")]))}function K_(Z){return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([w("Error: "+Z)]))}function Y_(){return R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([f0(Q([H("text-zinc-400 mb-2")]),Q([w("No lexicons found.")])),f0(Q([H("text-sm text-zinc-500")]),Q([w("Upload lexicons from the Settings page to get started.")]))]))}function X_(Z){return R(Q([H("bg-zinc-800/50 rounded p-4 relative")]),Q([S0(Q([H("absolute top-4 right-4 p-1.5 rounded hover:bg-zinc-700 text-zinc-400 hover:text-zinc-300 transition-colors"),b0("button"),w0(new fb(Z.json))]),Q([uZ("copy",new yU,Q([]))])),my(Q([H("group")]),Q([uy(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([w(Z.id)])),vJ(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([L8(Q([]),Q([yb(_j(Z.json))]))]))]))]))}function W_(Z){if(Z instanceof U)return Y_();else return R(Q([H("space-y-4")]),Q([f0(Q([H("text-sm text-zinc-500 mb-4")]),Q([w(SJ(V8(Z))+" lexicons")])),R(Q([H("space-y-3")]),I0(Z,X_))]))}function bb(Z){let J=a(Z,"GetLexicons",b(Q([])),lZ),K;return K=J[1],R(Q([H("space-y-6")]),Q([R(Q([H("mb-2")]),Q([b1(Q([L1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([w("← Back")]))])),k1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([w("Lexicons")])),(()=>{if(K instanceof C1)return J_();else if(K instanceof x1){let Y=K[0];return K_(Y)}else{let Y=K[0];return W_(Y.lexicons)}})()]))}function vb(Z,J,K,Y,X,W){return R(Q([H("max-w-md mx-auto mt-12")]),Q([R(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([R(Q([H("flex justify-center mb-6")]),Q([fU("w-16 h-16")])),k1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([w("Welcome to Quickslice")])),f0(Q([H("text-zinc-400 mb-6 text-center")]),Q([w("Set up an administrator account to get started.")])),q5(Q([B5("/admin/oauth/authorize"),O5("POST"),H("space-y-4")]),Q([R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-2")]),Q([w("AT Protocol Handle")])),gZ(Z,"onboarding-handle","login_hint","user.bsky.social","font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",J,K,Y,X,W)])),R(Q([H("pt-2")]),Q([Eb(Z.query==="","Continue")]))]))]))]))}class dU extends O{constructor(Z){super();this[0]=Z}}class cU extends O{}class pU extends O{}class nU extends O{}class lU extends O{constructor(Z){super();this[0]=Z}}class iU extends O{}class sZ extends O{}class rU extends O{constructor(Z){super();this[0]=Z}}class sU extends O{constructor(Z){super();this[0]=Z}}class aU extends O{constructor(Z){super();this[0]=Z}}class tU extends O{constructor(Z){super();this[0]=Z}}class oU extends O{}class eU extends O{constructor(Z){super();this[0]=Z}}class ZM extends O{}class JM extends O{constructor(Z){super();this[0]=Z}}class KM extends O{constructor(Z){super();this[0]=Z}}class YM extends O{constructor(Z){super();this[0]=Z}}class XM extends O{}class WM extends O{constructor(Z){super();this[0]=Z}}class QM extends O{constructor(Z){super();this[0]=Z}}class VM extends O{}class GM extends O{}class IM extends O{constructor(Z){super();this[0]=Z}}class zM extends O{}class rZ extends O{constructor(Z){super();this[0]=Z}}class NM extends O{}class hb extends O{}class X0 extends O{constructor(Z,J,K,Y,X,W,V,G,I,z,N,F,D,B,P,T,S,A,q){super();this.domain_authority_input=Z,this.reset_confirmation=J,this.selected_file=K,this.alert=Y,this.show_new_client_form=X,this.new_client_name=W,this.new_client_type=V,this.new_client_redirect_uris=G,this.new_client_scope=I,this.editing_client_id=z,this.edit_client_name=N,this.edit_client_redirect_uris=F,this.edit_client_scope=D,this.visible_secrets=B,this.delete_confirm_client_id=P,this.oauth_alert=T,this.new_admin_did=S,this.remove_confirm_did=A,this.admin_alert=q}}function Y8(Z,J,K){return new X0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new L([J,K]),Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function $b(Z){return new X0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new h,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function T8(Z,J,K){return new X0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,new L([J,K]),Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function aZ(Z,J,K){return new X0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,new L([J,K]))}function gb(){return new X0("","",new h,new h,!1,"","PUBLIC","","atproto transition:generic",new h,"","","",H5(),new h,new h,"",new h,new h)}function G_(Z){return Ok(Z)}function I_(Z,J,K){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([V7(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([w("Domain Authority")])),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([z1(Q([H("block text-sm text-zinc-400 mb-2")]),Q([w("Domain Authority")])),v1(Q([b0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),e1("e.g. com.example"),D1(J.domain_authority_input),P1((Y)=>{return new dU(Y)})]))])),f0(Q([H("text-sm text-zinc-500 mb-4")]),Q([w('The domain authority is used to determine which collections are considered "primary" vs "external" when backfilling records. For example, if the authority is "xyz.statusphere", then "xyz.statusphere.status" is treated as primary and "app.bsky.actor.profile" is external.')])),R(Q([H("flex gap-3")]),Q([h1(K,new cU,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function z_(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([V7(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([w("Lexicons")])),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([z1(Q([H("block text-sm text-zinc-400 mb-2")]),Q([w("Upload Lexicons (ZIP)")])),v1(Q([b0("file"),Py(Q([".zip"])),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),z8("lexicon-file-input"),P1((J)=>{return new pU})]))])),f0(Q([H("text-sm text-zinc-500 mb-4")]),Q([w("Upload a ZIP file containing lexicon JSON files.")])),R(Q([H("flex gap-3")]),Q([h1(!1,new nU,"Upload")]))]))]))}function N_(Z){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([V7(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([w("Danger Zone")])),f0(Q([H("text-sm text-zinc-400 mb-4")]),Q([w("This will clear all indexed data:")])),hJ(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([A5(Q([]),Q([w("Domain authority configuration")])),A5(Q([]),Q([w("All lexicon definitions")])),A5(Q([]),Q([w("All indexed records")])),A5(Q([]),Q([w("All actors")]))])),f0(Q([H("text-sm text-zinc-400 mb-4")]),Q([w("Records can be re-indexed via backfill.")])),R(Q([H("space-y-4")]),Q([R(Q([H("mb-4")]),Q([z1(Q([H("block text-sm text-zinc-400 mb-2")]),Q([w("Type RESET to confirm")])),v1(Q([b0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),e1("RESET"),D1(Z.reset_confirmation),P1((J)=>{return new lU(J)})]))])),R(Q([H("flex gap-3")]),Q([S0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),qZ(Z.reset_confirmation!=="RESET"),w0(new iU)]),Q([w("Reset Everything")]))]))]))]))}function F_(Z){return R(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([G7(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([w("Register New Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Client Name")])),v1(Q([b0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),e1("My Application"),D1(Z.new_client_name),P1((J)=>{return new rU(J)})]))])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Client Type")])),_y(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),wk((J)=>{return new sU(J)})]),Q([MR(Q([D1("PUBLIC"),IR(Z.new_client_type==="PUBLIC")]),"Public"),MR(Q([D1("CONFIDENTIAL"),IR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),f0(Q([H("text-xs text-zinc-500 mt-1")]),Q([w((()=>{if(Z.new_client_type==="CONFIDENTIAL")return"For server-side apps that can securely store a client secret";else return"For browser apps (SPAs) and mobile apps that cannot securely store a secret"})())]))])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Redirect URIs (one per line)")])),RR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),e1("http://localhost:3000/callback"),D1(Z.new_client_redirect_uris),P1((J)=>{return new aU(J)})]),"")])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Scope")])),v1(Q([b0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),e1("atproto transition:generic"),D1(Z.new_client_scope),P1((J)=>{return new tU(J)})])),f0(Q([H("text-xs text-zinc-500 mt-1")]),Q([w("Space-separated OAuth scopes")]))])),R(Q([H("flex gap-2")]),Q([h1(!1,new oU,"Create"),S0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),w0(new sZ)]),Q([w("Cancel")]))]))]))]))}function H_(Z,J){return R(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([G7(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([w("Edit Client")])),R(Q([H("space-y-3")]),Q([R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Client ID")])),L8(Q([H("text-sm text-zinc-500 font-mono")]),Q([w(Z.client_id)]))])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Client Name")])),v1(Q([b0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),D1(J.edit_client_name),P1((K)=>{return new JM(K)})]))])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Redirect URIs (one per line)")])),RR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),P1((K)=>{return new KM(K)})]),J.edit_client_redirect_uris)])),R(Q([]),Q([z1(Q([H("block text-sm text-zinc-400 mb-1")]),Q([w("Scope")])),v1(Q([b0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),D1(J.edit_client_scope),P1((K)=>{return new YM(K)})]))])),R(Q([H("flex gap-2")]),Q([h1(!1,new XM,"Save"),S0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),w0(new ZM)]),Q([w("Cancel")]))]))]))]))}function D_(Z,J){let K=O0(J.editing_client_id,new L(Z.client_id)),Y=o5(J.visible_secrets,Z.client_id);if(K)return H_(Z,J);else return R(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([R(Q([H("flex justify-between items-start mb-2")]),Q([R(Q([]),Q([d(Q([H("text-zinc-300 font-medium")]),Q([w(Z.client_name)]))])),R(Q([H("flex gap-2")]),Q([S0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),w0(new eU(Z.client_id))]),Q([w("Edit")])),S0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),w0(new QM(Z.client_id))]),Q([w("Delete")]))]))])),R(Q([H("mb-2")]),Q([d(Q([H("text-xs text-zinc-500")]),Q([w("Client ID: ")])),L8(Q([H("text-xs text-zinc-400 font-mono")]),Q([w(Z.client_id)]))])),R(Q([H("mb-2")]),Q([d(Q([H("text-xs text-zinc-500")]),Q([w("Type: ")])),d(Q([H("text-xs text-zinc-400")]),Q([w((()=>{let X=Z.client_type;if(X==="PUBLIC")return"Public";else if(X==="CONFIDENTIAL")return"Confidential";else return Z.client_type})())]))])),(()=>{let X=Z.client_secret;if(X instanceof L){let W=X[0];return R(Q([H("mb-2")]),Q([d(Q([H("text-xs text-zinc-500")]),Q([w("Secret: ")])),(()=>{if(Y)return L8(Q([H("text-xs text-zinc-400 font-mono")]),Q([w(W)]));else return L8(Q([H("text-xs text-zinc-400 font-mono")]),Q([w("••••••••••••••••")]))})(),S0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),w0(new WM(Z.client_id))]),Q([w((()=>{if(Y)return"Hide";else return"Show"})())]))]))}else return z0()})(),(()=>{let X=Z.redirect_uris;if(X instanceof U)return z0();else{let W=X;return R(Q([]),Q([d(Q([H("text-xs text-zinc-500")]),Q([w("Redirect URIs:")])),hJ(Q([H("text-xs text-zinc-400 font-mono ml-4")]),I0(W,(V)=>{return A5(Q([]),Q([w(V)]))}))]))}})(),(()=>{let X=Z.scope;if(X instanceof L){let W=X[0];return R(Q([H("mt-2")]),Q([d(Q([H("text-xs text-zinc-500")]),Q([w("Scope: ")])),L8(Q([H("text-xs text-zinc-400 font-mono")]),Q([w(W)]))]))}else return z0()})()]))}function B_(Z){return R(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([R(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([G7(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([w("Delete Client?")])),f0(Q([H("text-sm text-zinc-400 mb-4")]),Q([w("Are you sure you want to delete client "),L8(Q([H("text-zinc-300")]),Q([w(Z)])),w("? This action cannot be undone.")])),R(Q([H("flex gap-2 justify-end")]),Q([S0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),w0(new VM)]),Q([w("Cancel")])),S0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),w0(new GM)]),Q([w("Delete")]))]))]))]))}function O_(Z,J){let K=b(Q([])),Y=a(Z,"GetOAuthClients",K,v8),X;return X=Y[1],R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([V7(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([w("OAuth Clients")])),(()=>{let W=J.oauth_alert;if(W instanceof L){let V=W[0][0],G=W[0][1],I;if(V==="success")I=new h8;else if(V==="error")I=new $8;else I=new K8;return IZ(I,G)}else return z0()})(),(()=>{if(J.show_new_client_form)return F_(J);else return R(Q([H("mb-4")]),Q([h1(!1,new sZ,"Register New Client")]))})(),(()=>{if(X instanceof C1)return R(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([w("Loading clients...")]));else if(X instanceof x1){let W=X[0];return R(Q([H("py-4 text-center text-red-400 text-sm")]),Q([w("Error: "+W)]))}else{let W=X[0];return R(Q([H("space-y-3")]),I0(W.oauth_clients,(V)=>{return D_(V,J)}))}})(),(()=>{let W=J.delete_confirm_client_id;if(W instanceof L){let V=W[0];return B_(V)}else return z0()})()]))}function T_(Z,J){return R(Q([H("bg-zinc-800/50 rounded p-6")]),Q([V7(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([w("Admin Management")])),(()=>{let K=J.admin_alert;if(K instanceof L){let Y=K[0][0],X=K[0][1],W;if(Y==="success")W=new h8;else if(Y==="error")W=new $8;else W=new K8;return IZ(W,X)}else return z0()})(),R(Q([H("mb-6")]),Q([G7(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([w("Current Admins")])),hJ(Q([H("space-y-2")]),I0(Z.admin_dids,(K)=>{return A5(Q([H("flex items-center justify-between bg-zinc-900/50 px-3 py-2 rounded border border-zinc-800")]),Q([d(Q([H("font-mono text-sm text-zinc-300 truncate")]),Q([w(K)])),(()=>{let Y=J.remove_confirm_did;if(Y instanceof L)if(Y[0]===K)return R(Q([H("flex gap-2")]),Q([S0(Q([H("text-xs px-2 py-1 text-zinc-400 hover:text-zinc-300 cursor-pointer"),w0(new NM)]),Q([w("Cancel")])),S0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),w0(new hb)]),Q([w("Confirm Remove")]))]));else return S0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),w0(new rZ(K))]),Q([w("Remove")]));else return S0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),w0(new rZ(K))]),Q([w("Remove")]))})()]))}))])),R(Q([H("border-t border-zinc-800 pt-4")]),Q([G7(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([w("Add Admin")])),R(Q([H("flex gap-2")]),Q([v1(Q([b0("text"),H("flex-1 font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700"),e1("did:plc:... or did:web:..."),D1(J.new_admin_did),P1((K)=>{return new IM(K)})])),h1(J.new_admin_did==="",new zM,"Add Admin")])),f0(Q([H("text-xs text-zinc-500 mt-2")]),Q([w("Enter the DID of the user you want to make an admin.")]))]))]))}function _b(Z,J,K){if(K){let Y=b(Q([])),X=a(Z,"GetSettings",Y,N1),W;W=X[1];let V=G_(Z);return R(Q([H("max-w-2xl space-y-6")]),Q([k1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([w("Settings")])),(()=>{let G=J.alert;if(G instanceof L){let I=G[0][0],z=G[0][1],N;if(I==="success")N=new h8;else if(I==="error")N=new $8;else N=new K8;return IZ(N,z)}else return z0()})(),(()=>{if(W instanceof C1)return R(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([w("Loading settings...")]));else if(W instanceof x1){let G=W[0];return R(Q([H("py-8 text-center text-red-400 text-sm")]),Q([w("Error: "+G)]))}else{let G=W[0];return R(Q([H("space-y-6")]),Q([I_(G.settings,J,V),z_(J),O_(Z,J),T_(G.settings,J),N_(J)]))}})()]))}else return R(Q([H("max-w-2xl space-y-6")]),Q([k1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([w("Settings")])),R(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([f0(Q([H("text-zinc-400 mb-4")]),Q([w("Access Denied")])),f0(Q([H("text-sm text-zinc-500")]),Q([w("You must be an administrator to access the settings page.")]))]))]))}function mb(){return window.location.origin}function tZ(Z,J){window.setTimeout(()=>J(),Z)}var S_="src/quickslice_client.gleam";class $5 extends O{}class G5 extends O{}class YJ extends O{}class dj extends O{}class JJ extends O{}class h5 extends O{}class P8 extends O{}class ub extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class r extends O{constructor(Z,J,K,Y,X,W,V,G,I,z){super();this.cache=Z,this.registry=J,this.route=K,this.time_range=Y,this.settings_page_model=X,this.backfill_page_model=W,this.backfill_status=V,this.auth_state=G,this.mobile_menu_open=I,this.login_autocomplete=z}}class $0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class oZ extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class eZ extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class cj extends O{constructor(Z){super();this[0]=Z}}class pj extends O{constructor(Z){super();this[0]=Z}}class nj extends O{constructor(Z){super();this[0]=Z}}class FM extends O{constructor(Z){super();this[0]=Z}}class lj extends O{constructor(Z){super();this[0]=Z}}class mj extends O{constructor(Z){super();this[0]=Z}}class ZJ extends O{}class ij extends O{}class KJ extends O{constructor(Z){super();this[0]=Z}}class HM extends O{constructor(Z){super();this[0]=Z}}class DM extends O{constructor(Z){super();this[0]=Z}}class BM extends O{}class OM extends O{}class uj extends O{constructor(Z){super();this[0]=Z}}class db extends O{}function v5(Z){let J=u1(Z,C0);if(J instanceof E){let K=J[0],Y=g("errors",E0(g("message",u,(W)=>{return i(W)})),(W)=>{return i(W)}),X=W0(K,Y);if(X instanceof E){let W=X[0];if(W instanceof U)return new h;else{let V=W.head;return new L(V)}}else return new h}else return new h}function A_(Z,J){if(J instanceof $0){let K=J[2];if(K instanceof E){let Y=J[0],X=J[1],W=K[0],V=Pk(Z.cache,Y,X,W,0),G=h0(V,Z.registry,(m,k,_)=>{return new $0(m,k,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(Y==="IsBackfilling"){let m=bZ(W);if(m instanceof E){let k=m[0],_=Z.backfill_status;if(k.is_backfilling&&_ instanceof YK)N=new F8;else N=Ck(Z.backfill_status,k.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=j5(Z.backfill_status),P=j5(F);if(B)if(P&&Y==="IsBackfilling")D=Q([V1((m)=>{return tZ(1e4,()=>{return m(new ZJ)})})]);else D=Q([]);else if(P&&Y==="IsBackfilling")D=Q([V1((m)=>{return tZ(1e4,()=>{return m(new ZJ)})})]);else D=Q([]);let T=D,S,A=Z.backfill_status;if(A instanceof b8&&F instanceof R5)S=!0;else if(A instanceof F8&&F instanceof R5)S=!0;else S=!1;let q=S,j;if(Y==="GetCurrentSession"){let m=wj(W);if(m instanceof E){let _=m[0].current_session;if(_ instanceof L){let o=_[0];j=new ub(o.did,o.handle,o.is_admin)}else j=new P8}else j=new P8}else j=Z.auth_state;let f=j,x;if(Y==="UpdateDomainAuthority")x=Y8(Z.settings_page_model,"success","Domain authority updated successfully");else if(Y==="UploadLexicons"){Cj("lexicon-file-input");let m=v5(W);if(m instanceof L){let k=m[0];x=Y8(Z.settings_page_model,"error",k)}else x=Y8(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(Y==="ResetAll"){let m,k=Z.settings_page_model;m=new X0("",k.reset_confirmation,k.selected_file,k.alert,k.show_new_client_form,k.new_client_name,k.new_client_type,k.new_client_redirect_uris,k.new_client_scope,k.editing_client_id,k.edit_client_name,k.edit_client_redirect_uris,k.edit_client_scope,k.visible_secrets,k.delete_confirm_client_id,k.oauth_alert,k.new_admin_did,k.remove_confirm_did,k.admin_alert),x=Y8(m,"success","All data has been reset")}else if(Y==="GetSettings"){let m=N1(W);if(m instanceof E){let k=m[0],_=Z.settings_page_model;x=new X0(k.settings.domain_authority,_.reset_confirmation,_.selected_file,_.alert,_.show_new_client_form,_.new_client_name,_.new_client_type,_.new_client_redirect_uris,_.new_client_scope,_.editing_client_id,_.edit_client_name,_.edit_client_redirect_uris,_.edit_client_scope,_.visible_secrets,_.delete_confirm_client_id,_.oauth_alert,_.new_admin_did,_.remove_confirm_did,_.admin_alert)}else x=Z.settings_page_model}else if(Y==="CreateOAuthClient"){let m=v5(W);if(m instanceof L){let k=m[0];x=T8(Z.settings_page_model,"error",k)}else{let k;if(Y==="CreateOAuthClient")k="OAuth client created successfully";else if(Y==="UpdateOAuthClient")k="OAuth client updated successfully";else if(Y==="DeleteOAuthClient")k="OAuth client deleted successfully";else k="Operation completed";let _=k;x=T8(Z.settings_page_model,"success",_)}}else if(Y==="UpdateOAuthClient"){let m=v5(W);if(m instanceof L){let k=m[0];x=T8(Z.settings_page_model,"error",k)}else{let k;if(Y==="CreateOAuthClient")k="OAuth client created successfully";else if(Y==="UpdateOAuthClient")k="OAuth client updated successfully";else if(Y==="DeleteOAuthClient")k="OAuth client deleted successfully";else k="Operation completed";let _=k;x=T8(Z.settings_page_model,"success",_)}}else if(Y==="DeleteOAuthClient"){let m=v5(W);if(m instanceof L){let k=m[0];x=T8(Z.settings_page_model,"error",k)}else{let k;if(Y==="CreateOAuthClient")k="OAuth client created successfully";else if(Y==="UpdateOAuthClient")k="OAuth client updated successfully";else if(Y==="DeleteOAuthClient")k="OAuth client deleted successfully";else k="Operation completed";let _=k;x=T8(Z.settings_page_model,"success",_)}}else if(Y==="AddAdmin"){let m=v5(W);if(m instanceof L){let k=m[0];x=aZ(Z.settings_page_model,"error",k)}else{let k;if(Y==="AddAdmin")k="Admin added successfully";else if(Y==="RemoveAdmin")k="Admin removed successfully";else k="Operation completed";let _=k;x=aZ(Z.settings_page_model,"success",_)}}else if(Y==="RemoveAdmin"){let m=v5(W);if(m instanceof L){let k=m[0];x=aZ(Z.settings_page_model,"error",k)}else{let k;if(Y==="AddAdmin")k="Admin added successfully";else if(Y==="RemoveAdmin")k="Admin removed successfully";else k="Operation completed";let _=k;x=aZ(Z.settings_page_model,"success",_)}}else x=Z.settings_page_model;let y=x,$;if(Y==="BackfillActor"){let m=Z.backfill_page_model,k=gU(m,!1),_=fj(k,"success","Backfill started for "+Z.backfill_page_model.did_input);$=((o)=>{return new V5("",o.is_submitting,o.alert)})(_)}else $=Z.backfill_page_model;let c=$,p;if(Y==="ResetAll"){let m=v0(I,"GetStatistics",b(Q([]))),k=v0(m,"GetActivityBuckets",b(Q([["range",n(W5(Z.time_range))]]))),_=v0(k,"GetRecentActivity",b(Q([["hours",K1(24)]]))),o=a(_,"GetSettings",b(Q([])),N1),e;e=o[0];let Q0=h0(e,Z.registry,(e0,i1,r1)=>{return new $0(e0,i1,r1)},()=>{return 0}),m0,u0;m0=Q0[0],u0=Q0[1],p=[m0,u0]}else if(Y==="UploadLexicons")p=[v0(I,"GetStatistics",b(Q([]))),Q([])];else if(Y==="CreateOAuthClient"){let m=v0(I,"GetOAuthClients",b(Q([]))),k=a(m,"GetOAuthClients",b(Q([])),v8),_;_=k[0];let o=h0(_,Z.registry,(m0,u0,e0)=>{return new $0(m0,u0,e0)},()=>{return 0}),e,Q0;e=o[0],Q0=o[1],p=[e,Q0]}else if(Y==="UpdateOAuthClient"){let m=v0(I,"GetOAuthClients",b(Q([]))),k=a(m,"GetOAuthClients",b(Q([])),v8),_;_=k[0];let o=h0(_,Z.registry,(m0,u0,e0)=>{return new $0(m0,u0,e0)},()=>{return 0}),e,Q0;e=o[0],Q0=o[1],p=[e,Q0]}else if(Y==="DeleteOAuthClient"){let m=v0(I,"GetOAuthClients",b(Q([]))),k=a(m,"GetOAuthClients",b(Q([])),v8),_;_=k[0];let o=h0(_,Z.registry,(m0,u0,e0)=>{return new $0(m0,u0,e0)},()=>{return 0}),e,Q0;e=o[0],Q0=o[1],p=[e,Q0]}else p=[I,Q([])];let s=p,N0,_0;N0=s[0],_0=s[1];let l0;if(q){let m=v0(N0,"GetStatistics",b(Q([]))),k=v0(m,"GetActivityBuckets",b(Q([["range",n(W5(Z.time_range))]]))),_=v0(k,"GetRecentActivity",b(Q([["hours",K1(24)]]))),o=a(_,"GetStatistics",b(Q([])),Q5),e;e=o[0];let Q0=a(e,"GetActivityBuckets",b(Q([["range",n(W5(Z.time_range))]])),b5),m0;m0=Q0[0];let u0=a(m0,"GetRecentActivity",b(Q([["hours",K1(24)]])),GZ),e0;e0=u0[0];let i1=h0(e0,Z.registry,(S8,XJ,TM)=>{return new $0(S8,XJ,TM)},()=>{return 0}),r1,s1;r1=i1[0],s1=i1[1],l0=[r1,s1]}else l0=[N0,Q([])];let A0=l0,U0,P0;U0=A0[0],P0=A0[1];let J0;if(Y==="GetCurrentSession"){let m=Z.route;if(f instanceof P8)if(m instanceof G5)J0=Q([U5("/",new h,new h)]);else J0=Q([]);else if(!f.is_admin&&m instanceof G5)J0=Q([U5("/",new h,new h)]);else J0=Q([])}else if(Y==="GetSettings"){let m=N1(W);if(m instanceof E){let k=m[0],_=HL(k.settings.admin_dids),o=Z.route;if(_)if(o instanceof h5)J0=Q([]);else J0=Q([U5("/onboarding",new h,new h)]);else if(o instanceof h5)J0=Q([U5("/",new h,new h)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new r(U0,Z.registry,Z.route,Z.time_range,y,c,F,f,Z.mobile_menu_open,Z.login_autocomplete),Y1((()=>{let m=Q([z,_0,P0,Z0,T]);return BL(m)})())]}else{let Y=J[0],X=K[0],W;if(Y==="UpdateDomainAuthority")W=Y8(Z.settings_page_model,"error","Error: "+X);else if(Y==="UploadLexicons")W=Y8(Z.settings_page_model,"error","Error: "+X);else if(Y==="ResetAll")W=Y8(Z.settings_page_model,"error","Error: "+X);else if(Y==="TriggerBackfill")W=Y8(Z.settings_page_model,"error","Error: "+X);else if(Y==="CreateOAuthClient")W=T8(Z.settings_page_model,"error","Error: "+X);else if(Y==="UpdateOAuthClient")W=T8(Z.settings_page_model,"error","Error: "+X);else if(Y==="DeleteOAuthClient")W=T8(Z.settings_page_model,"error","Error: "+X);else W=Z.settings_page_model;let V=W,G;if(Y==="BackfillActor"){let z=Z.backfill_page_model,N=gU(z,!1);G=fj(N,"error","Error: "+X)}else G=Z.backfill_page_model;let I=G;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}}else if(J instanceof oZ){let K=J[0],Y=J[1],X=Sk(Z.cache,K,Y),W=Y8(Z.settings_page_model,"success","Domain authority updated successfully");return[new r(X,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(J instanceof eZ){let K=J[0],Y=J[1],X=Bk(Z.cache,K),W,G=a(X,"GetSettings",b(Q([])),N1)[1];if(G instanceof w1)W=G[0].settings.domain_authority;else W=Z.settings_page_model.domain_authority_input;let I=W,z,N=n5(Y,"Response body: ");if(N instanceof E){let T=N[0][1],S=v5(T);if(S instanceof L)z=S[0];else z=Y}else z=Y;let F=z,D,B=Z.settings_page_model;D=new X0(I,B.reset_confirmation,B.selected_file,new L(["error",F]),B.show_new_client_form,B.new_client_name,B.new_client_type,B.new_client_redirect_uris,B.new_client_scope,B.editing_client_id,B.edit_client_name,B.edit_client_redirect_uris,B.edit_client_scope,B.visible_secrets,B.delete_confirm_client_id,B.oauth_alert,B.new_admin_did,B.remove_confirm_did,B.admin_alert);let P=D;return[new r(X,Z.registry,Z.route,Z.time_range,P,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(J instanceof cj){let K=J[0],Y;if(Z.route instanceof G5)Y=$b(Z.settings_page_model);else Y=Z.settings_page_model;let W=Y;if(K instanceof $5){let V=a(Z.cache,"GetStatistics",b(Q([])),Q5),G;G=V[0];let I=a(G,"GetSettings",b(Q([])),N1),z;z=I[0];let N=a(z,"GetActivityBuckets",b(Q([["range",n(W5(Z.time_range))]])),b5),F;F=N[0];let D=a(F,"GetRecentActivity",b(Q([["hours",K1(24)]])),GZ),B;B=D[0];let P=h0(B,Z.registry,(A,q,j)=>{return new $0(A,q,j)},()=>{return 0}),T,S;return T=P[0],S=P[1],[new r(T,Z.registry,K,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Y1(S)]}else if(K instanceof G5){let V,G=Z.auth_state;if(G instanceof P8)V=!1;else V=G.is_admin;if(V){let z=a(Z.cache,"GetSettings",b(Q([])),N1),N;N=z[0];let F=a(N,"GetOAuthClients",b(Q([])),v8),D;D=F[0];let B=h0(D,Z.registry,(S,A,q)=>{return new $0(S,A,q)},()=>{return 0}),P,T;return P=B[0],T=B[1],[new r(P,Z.registry,K,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Y1(T)]}else return[Z,U5("/",new h,new h)]}else if(K instanceof YJ){let V=a(Z.cache,"GetLexicons",b(Q([])),lZ),G;G=V[0];let I=h0(G,Z.registry,(F,D,B)=>{return new $0(F,D,B)},()=>{return 0}),z,N;return z=I[0],N=I[1],[new r(z,Z.registry,K,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Y1(N)]}else if(K instanceof JJ)if(Z.auth_state instanceof P8)return[Z,U5("/",new h,new h)];else{let G=$U(Z.backfill_page_model);return[new r(Z.cache,Z.registry,new JJ,Z.time_range,Z.settings_page_model,G,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),l()]}else if(K instanceof h5)return[new r(Z.cache,Z.registry,new h5,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),l()];else return[new r(Z.cache,Z.registry,K,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),l()]}else if(J instanceof pj){let K=J[0];if(K instanceof mU){let Y=K[0],X=b(Q([["range",n(W5(Y))]])),W=a(Z.cache,"GetActivityBuckets",X,b5),V;V=W[0];let G=h0(V,Z.registry,(N,F,D)=>{return new $0(N,F,D)},()=>{return 0}),I,z;return I=G[0],z=G[1],[new r(I,Z.registry,Z.route,Y,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(z)]}else if(K instanceof uU){let Y=b(Q([])),X=v0(Z.cache,"TriggerBackfill",Y),W=a(X,"TriggerBackfill",Y,Hb),V;V=W[0];let G=h0(V,Z.registry,(F,D,B)=>{return new $0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=V1((F)=>{return tZ(1e4,()=>{return F(new ZJ)})});return[new r(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new b8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(Q([Y1(z),N]))]}else return Rj("/graphiql"),[Z,l()]}else if(J instanceof nj){let K=J[0];if(K instanceof dU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(Y,W.reset_confirmation,W.selected_file,new h,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof cU){let Y,X=Z.settings_page_model;Y=new X0(X.domain_authority_input,X.reset_confirmation,X.selected_file,new h,X.show_new_client_form,X.new_client_name,X.new_client_type,X.new_client_redirect_uris,X.new_client_scope,X.editing_client_id,X.edit_client_name,X.edit_client_redirect_uris,X.edit_client_scope,X.visible_secrets,X.delete_confirm_client_id,X.oauth_alert,X.new_admin_did,X.remove_confirm_did,X.admin_alert);let W=Y,V=b(Q([])),G=a(Z.cache,"GetSettings",V,N1),I;if(I=G[1],I instanceof w1){let z=I[0],N=Z.settings_page_model.domain_authority_input,F=z.settings.admin_dids,D=b(Q([["domainAuthority",n(N)],["adminDids",x0(F,n)]])),B=b(Q([["id",n("Settings:singleton")],["domainAuthority",n(N)],["adminDids",x0(F,n)]])),P=KK(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(A)=>{return B},bU,(A,q,j)=>{if(q instanceof E)return new oZ(A,j);else{let f=q[0];return new eZ(A,f)}}),T,S;return T=P[0],S=P[2],[new r(T,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),S]}else return[new r(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof pU)return[Z,l()];else if(K instanceof nU){F5("[UploadLexicons] Button clicked, creating file effect");let Y=V1((X)=>{return F5("[UploadLexicons] Effect running, calling read_file_as_base64"),Ej("lexicon-file-input",(W)=>{return F5("[UploadLexicons] Callback received result"),X(new mj(W))})});return[Z,Y]}else if(K instanceof lU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,Y,W.selected_file,new h,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof iU){let Y=b(Q([["confirm",n(Z.settings_page_model.reset_confirmation)]])),X=v0(Z.cache,"ResetAll",Y),W=a(X,"ResetAll",Y,Nb),V;V=W[0];let G=h0(V,Z.registry,(B,P,T)=>{return new $0(B,P,T)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new X0(F.domain_authority_input,"",F.selected_file,new h,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,F.editing_client_id,F.edit_client_name,F.edit_client_redirect_uris,F.edit_client_scope,F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert);let D=N;return[new r(I,Z.registry,Z.route,Z.time_range,D,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(z)]}else if(K instanceof sZ){let Y,X=Z.settings_page_model;Y=new X0(X.domain_authority_input,X.reset_confirmation,X.selected_file,X.alert,!Z.settings_page_model.show_new_client_form,X.new_client_name,X.new_client_type,X.new_client_redirect_uris,X.new_client_scope,X.editing_client_id,X.edit_client_name,X.edit_client_redirect_uris,X.edit_client_scope,X.visible_secrets,X.delete_confirm_client_id,X.oauth_alert,X.new_admin_did,X.remove_confirm_did,X.admin_alert);let W=Y;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof rU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,Y,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof sU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,Y,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof aU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,Y,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof tU){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,Y,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof oU){let Y,X=r5(Z.settings_page_model.new_client_redirect_uris,` 144 - `),W=IJ(X,(q)=>{return t1(i5(q))>0});Y=I0(W,i5);let V=Y,G=b(Q([["clientName",n(Z.settings_page_model.new_client_name)],["clientType",n(Z.settings_page_model.new_client_type)],["redirectUris",x0(V,n)],["scope",n(Z.settings_page_model.new_client_scope)]])),I=v0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,pk),N;N=z[0];let F=v0(N,"GetOAuthClients",b(Q([]))),D=h0(F,Z.registry,(q,j,f)=>{return new $0(q,j,f)},()=>{return 0}),B,P;B=D[0],P=D[1];let T,S=Z.settings_page_model;T=new X0(S.domain_authority_input,S.reset_confirmation,S.selected_file,S.alert,!1,"","PUBLIC","","atproto transition:generic",S.editing_client_id,S.edit_client_name,S.edit_client_redirect_uris,S.edit_client_scope,S.visible_secrets,S.delete_confirm_client_id,S.oauth_alert,S.new_admin_did,S.remove_confirm_did,S.admin_alert);let A=T;return[new r(B,Z.registry,Z.route,Z.time_range,A,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(P)]}else if(K instanceof eU){let Y=K[0],X=a(Z.cache,"GetOAuthClients",b(Q([])),v8),W;W=X[1];let V;if(W instanceof w1){let I=W[0],z=hM(I.oauth_clients,(N)=>{return N.client_id===Y});if(z instanceof E){let N=z[0],F=Z.settings_page_model;V=new X0(F.domain_authority_input,F.reset_confirmation,F.selected_file,F.alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,new L(Y),N.client_name,c8(N.redirect_uris,` 145 - `),(()=>{let D=N.scope;if(D instanceof L)return D[0];else return""})(),F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert)}else V=Z.settings_page_model}else V=Z.settings_page_model;let G=V;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,G,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof ZM){let Y,X=Z.settings_page_model;Y=new X0(X.domain_authority_input,X.reset_confirmation,X.selected_file,X.alert,X.show_new_client_form,X.new_client_name,X.new_client_type,X.new_client_redirect_uris,X.new_client_scope,new h,"","","",X.visible_secrets,X.delete_confirm_client_id,X.oauth_alert,X.new_admin_did,X.remove_confirm_did,X.admin_alert);let W=Y;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof JM){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,Y,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof KM){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,Y,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof YM){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,Y,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof XM){let Y=Z.settings_page_model.editing_client_id;if(Y instanceof L){let X=Y[0],W,V=r5(Z.settings_page_model.edit_client_redirect_uris,` 146 - `),G=IJ(V,(f)=>{return t1(i5(f))>0});W=I0(G,i5);let I=W,z=b(Q([["clientId",n(X)],["clientName",n(Z.settings_page_model.edit_client_name)],["redirectUris",x0(I,n)],["scope",n(Z.settings_page_model.edit_client_scope)]])),N=v0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,Ob),D;D=F[0];let B=v0(D,"GetOAuthClients",b(Q([]))),P=h0(B,Z.registry,(f,x,y)=>{return new $0(f,x,y)},()=>{return 0}),T,S;T=P[0],S=P[1];let A,q=Z.settings_page_model;A=new X0(q.domain_authority_input,q.reset_confirmation,q.selected_file,q.alert,q.show_new_client_form,q.new_client_name,q.new_client_type,q.new_client_redirect_uris,q.new_client_scope,new h,"","","",q.visible_secrets,q.delete_confirm_client_id,q.oauth_alert,q.new_admin_did,q.remove_confirm_did,q.admin_alert);let j=A;return[new r(T,Z.registry,Z.route,Z.time_range,j,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(S)]}else return[Z,l()]}else if(K instanceof WM){let Y=K[0],X;if(o5(Z.settings_page_model.visible_secrets,Y))X=Zy(Z.settings_page_model.visible_secrets,Y);else X=TZ(Z.settings_page_model.visible_secrets,Y);let V=X,G,I=Z.settings_page_model;G=new X0(I.domain_authority_input,I.reset_confirmation,I.selected_file,I.alert,I.show_new_client_form,I.new_client_name,I.new_client_type,I.new_client_redirect_uris,I.new_client_scope,I.editing_client_id,I.edit_client_name,I.edit_client_redirect_uris,I.edit_client_scope,V,I.delete_confirm_client_id,I.oauth_alert,I.new_admin_did,I.remove_confirm_did,I.admin_alert);let z=G;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,z,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof QM){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,new L(Y),W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof VM){let Y,X=Z.settings_page_model;Y=new X0(X.domain_authority_input,X.reset_confirmation,X.selected_file,X.alert,X.show_new_client_form,X.new_client_name,X.new_client_type,X.new_client_redirect_uris,X.new_client_scope,X.editing_client_id,X.edit_client_name,X.edit_client_redirect_uris,X.edit_client_scope,X.visible_secrets,new h,X.oauth_alert,X.new_admin_did,X.remove_confirm_did,X.admin_alert);let W=Y;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof GM){let Y=Z.settings_page_model.delete_confirm_client_id;if(Y instanceof L){let X=Y[0],W=b(Q([["clientId",n(X)]])),V=v0(Z.cache,"DeleteOAuthClient",W),G=a(V,"DeleteOAuthClient",W,lk),I;I=G[0];let z=v0(I,"GetOAuthClients",b(Q([]))),N=h0(z,Z.registry,(S,A,q)=>{return new $0(S,A,q)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,P=Z.settings_page_model;B=new X0(P.domain_authority_input,P.reset_confirmation,P.selected_file,P.alert,P.show_new_client_form,P.new_client_name,P.new_client_type,P.new_client_redirect_uris,P.new_client_scope,P.editing_client_id,P.edit_client_name,P.edit_client_redirect_uris,P.edit_client_scope,P.visible_secrets,new h,P.oauth_alert,P.new_admin_did,P.remove_confirm_did,P.admin_alert);let T=B;return[new r(F,Z.registry,Z.route,Z.time_range,T,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(D)]}else return[Z,l()]}else if(K instanceof IM){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,Y,W.remove_confirm_did,W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof zM){let Y=b(Q([])),X=a(Z.cache,"GetSettings",Y,N1),W;if(W=X[1],W instanceof w1){let V=W[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(vM(I,G))N=I;else N=k0(I,Q([G]));let D=N,B=b(Q([["domainAuthority",n(z)],["adminDids",x0(D,n)]])),P=b(Q([["id",n("Settings:singleton")],["domainAuthority",n(z)],["adminDids",x0(D,n)]])),T=KK(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(x)=>{return P},bU,(x,y,$)=>{if(y instanceof E)return new oZ(x,$);else{let c=y[0];return new eZ(x,c)}}),S,A;S=T[0],A=T[2];let q,j=Z.settings_page_model;q=new X0(j.domain_authority_input,j.reset_confirmation,j.selected_file,j.alert,j.show_new_client_form,j.new_client_name,j.new_client_type,j.new_client_redirect_uris,j.new_client_scope,j.editing_client_id,j.edit_client_name,j.edit_client_redirect_uris,j.edit_client_scope,j.visible_secrets,j.delete_confirm_client_id,j.oauth_alert,"",j.remove_confirm_did,j.admin_alert);let f=q;return[new r(S,Z.registry,Z.route,Z.time_range,f,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),A]}else return[Z,l()]}else if(K instanceof rZ){let Y=K[0],X,W=Z.settings_page_model;X=new X0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,new L(Y),W.admin_alert);let V=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else if(K instanceof NM){let Y,X=Z.settings_page_model;Y=new X0(X.domain_authority_input,X.reset_confirmation,X.selected_file,X.alert,X.show_new_client_form,X.new_client_name,X.new_client_type,X.new_client_redirect_uris,X.new_client_scope,X.editing_client_id,X.edit_client_name,X.edit_client_redirect_uris,X.edit_client_scope,X.visible_secrets,X.delete_confirm_client_id,X.oauth_alert,X.new_admin_did,new h,X.admin_alert);let W=Y;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else{let Y=Z.settings_page_model.remove_confirm_did;if(Y instanceof L){let X=Y[0],W=b(Q([])),V=a(Z.cache,"GetSettings",W,N1),G;if(G=V[1],G instanceof w1){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=IJ(z,(f)=>{return f!==X}),D=b(Q([["domainAuthority",n(N)],["adminDids",x0(F,n)]])),B=b(Q([["id",n("Settings:singleton")],["domainAuthority",n(N)],["adminDids",x0(F,n)]])),P=KK(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(f)=>{return B},bU,(f,x,y)=>{if(x instanceof E)return new oZ(f,y);else{let $=x[0];return new eZ(f,$)}}),T,S;T=P[0],S=P[2];let A,q=Z.settings_page_model;A=new X0(q.domain_authority_input,q.reset_confirmation,q.selected_file,q.alert,q.show_new_client_form,q.new_client_name,q.new_client_type,q.new_client_redirect_uris,q.new_client_scope,q.editing_client_id,q.edit_client_name,q.edit_client_redirect_uris,q.edit_client_scope,q.visible_secrets,q.delete_confirm_client_id,q.oauth_alert,q.new_admin_did,new h,q.admin_alert);let j=A;return[new r(T,Z.registry,Z.route,Z.time_range,j,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),S]}else return[Z,l()]}else return[Z,l()]}}else if(J instanceof FM){let K=J[0],Y=kb(K);return[Z,FR(Y,(X)=>{return new FM(X)})]}else if(J instanceof lj){let K=J[0];if(K instanceof hU){let Y=K[0],X,W,V=Z.backfill_page_model;W=new V5(Y,V.is_submitting,V.alert),X=$U(W);let I=X;return[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}else{let Y=Z.backfill_page_model.did_input,X=b(Q([["did",n(Y)]])),W,V=Z.backfill_page_model,G=gU(V,!0);W=$U(G);let I=W,z=v0(Z.cache,"BackfillActor",X),N=a(z,"BackfillActor",X,uk),F;F=N[0];let D=h0(F,Z.registry,(T,S,A)=>{return new $0(T,S,A)},()=>{return 0}),B,P;return B=D[0],P=D[1],[new r(B,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(P)]}}else if(J instanceof mj){let K=J[0];if(K instanceof E){let Y=K[0];F5("[FileRead] Successfully read file, uploading...");let X=b(Q([["zipBase64",n(Y)]])),W=v0(Z.cache,"UploadLexicons",X),V=a(W,"UploadLexicons",X,Ab),G;G=V[0];let I=h0(G,Z.registry,(P,T,S)=>{return new $0(P,T,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new X0(D.domain_authority_input,D.reset_confirmation,new h,D.alert,D.show_new_client_form,D.new_client_name,D.new_client_type,D.new_client_redirect_uris,D.new_client_scope,D.editing_client_id,D.edit_client_name,D.edit_client_redirect_uris,D.edit_client_scope,D.visible_secrets,D.delete_confirm_client_id,D.oauth_alert,D.new_admin_did,D.remove_confirm_did,D.admin_alert);let B=F;return[new r(z,Z.registry,Z.route,Z.time_range,B,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(N)]}else{let Y=K[0];F5("[FileRead] Error reading file: "+Y);let X=Y8(Z.settings_page_model,"error",Y);return[new r(Z.cache,Z.registry,Z.route,Z.time_range,X,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),l()]}}else if(J instanceof ZJ)if(j5(Z.backfill_status)){let Y=Ek(Z.cache,Z.registry,(V,G,I)=>{return new $0(V,G,I)}),X,W;return X=Y[0],W=Y[1],[new r(X,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Y1(W)]}else return[Z,l()];else if(J instanceof ij)return[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!Z.mobile_menu_open,Z.login_autocomplete),l()];else if(J instanceof KJ){let K=J[0],Y=D8(Z.login_autocomplete,new XK(K)),X,W;return X=Y[0],W=Y[1],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),FR(W,(V)=>{if(V instanceof H7){let G=V[0];return new uj(G)}else return new KJ("")})]}else if(J instanceof HM){let K=J[0];if(K==="ArrowDown"){let Y=D8(Z.login_autocomplete,new WK),X;return X=Y[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),l()]}else if(K==="ArrowUp"){let Y=D8(Z.login_autocomplete,new QK),X;return X=Y[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),l()]}else if(K==="Enter"){let Y=jk(Z.login_autocomplete);if(Y instanceof L){let X=Y[0],W=D8(Z.login_autocomplete,new hZ(X)),V;return V=W[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,V),l()]}else return[Z,l()]}else if(K==="Escape"){let Y=D8(Z.login_autocomplete,new $Z),X;return X=Y[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),l()]}else return[Z,l()]}else if(J instanceof DM){let K=J[0],Y,X=hM(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(X instanceof E)Y=X[0];else Y=new vZ("",K,"",new h);let W=Y,V=D8(Z.login_autocomplete,new hZ(W)),G;return G=V[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,G),l()]}else if(J instanceof BM){let K=V1((Y)=>{return tZ(150,()=>{return Y(new db)})});return[Z,K]}else if(J instanceof OM){let K=D8(Z.login_autocomplete,new Oj),Y;return Y=K[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Y),l()]}else if(J instanceof uj){let K=J[0],Y=D8(Z.login_autocomplete,new H7(K)),X;return X=Y[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),l()]}else{let K=D8(Z.login_autocomplete,new $Z),Y;return Y=K[0],[new r(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Y),l()]}}function q_(Z){let J,K=Z.auth_state;if(K instanceof P8)J=[!1,!1];else J=[K.is_admin,!0];let Y=J,X,W;return X=Y[0],W=Y[1],MZ(jb(Z.cache,Z.time_range,Z.backfill_status,X,W),(V)=>{return new pj(V)})}function E_(Z){let J,K=Z.auth_state;if(K instanceof P8)J=!1;else J=K.is_admin;let Y=J;return MZ(_b(Z.cache,Z.settings_page_model,Y),(X)=>{return new nj(X)})}function C_(Z){return MZ(bb(Z.cache),(J)=>{return new FM(J)})}function x_(Z){return R(Q([]),Q([k1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([n0("Upload")])),f0(Q([H("text-zinc-400")]),Q([n0("Upload and manage data")]))]))}function w_(Z){return MZ(wb(Z.backfill_page_model),(J)=>{return new lj(J)})}function U_(Z){return vb(Z.login_autocomplete,(J)=>{return new KJ(J)},(J)=>{return new DM(J)},(J)=>{return new HM(J)},()=>{return new BM},()=>{return new OM})}function M_(Z){let J,K=Z.auth_state;if(K instanceof P8)J=new h;else{let{handle:X,is_admin:W}=K;J=new L([X,W])}let Y=J;return R(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([R(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof h5)return z0();else return gk(Y,j5(Z.backfill_status),Z.mobile_menu_open,new ij,Z.login_autocomplete,(W)=>{return new KJ(W)},(W)=>{return new DM(W)},(W)=>{return new HM(W)},()=>{return new BM},()=>{return new OM})})(),(()=>{let X=Z.route;if(X instanceof $5)return q_(Z);else if(X instanceof G5)return E_(Z);else if(X instanceof YJ)return C_(Z);else if(X instanceof dj)return x_(Z);else if(X instanceof JJ)return w_(Z);else return U_(Z)})()]))]))}function cb(Z){let J=Z.path;if(J==="/")return new $5;else if(J==="/settings")return new G5;else if(J==="/lexicons")return new YJ;else if(J==="/upload")return new dj;else if(J==="/backfill")return new JJ;else if(J==="/onboarding")return new h5;else return new $5}function R_(Z){return new cj(cb(Z))}function j_(Z){let J=mb()+"/admin/graphql",K=Dk(J),Y=_k(),X,W=Zj();if(W instanceof E){let A=W[0];X=cb(A)}else X=new $5;let V=X,G=a(K,"GetCurrentSession",b(Q([])),wj),I;I=G[0];let z=a(I,"IsBackfilling",b(Q([])),bZ),N;N=z[0];let F;if(V instanceof $5){let A=a(N,"GetStatistics",b(Q([])),Q5),q;q=A[0];let j=a(q,"GetSettings",b(Q([])),N1),f;f=j[0];let x=a(f,"GetActivityBuckets",b(Q([["range",n("ONE_DAY")]])),b5),y;y=x[0];let $=a(y,"GetRecentActivity",b(Q([["hours",K1(24)]])),GZ),c;c=$[0];let p=h0(c,Y,(_0,l0,A0)=>{return new $0(_0,l0,A0)},()=>{return 0}),s,N0;s=p[0],N0=p[1],F=[s,N0]}else if(V instanceof G5){let A=a(N,"GetSettings",b(Q([])),N1),q;q=A[0];let j=a(q,"GetOAuthClients",b(Q([])),v8),f;f=j[0];let x=h0(f,Y,(c,p,s)=>{return new $0(c,p,s)},()=>{return 0}),y,$;y=x[0],$=x[1],F=[y,$]}else if(V instanceof YJ){let A=a(N,"GetLexicons",b(Q([])),lZ),q;q=A[0];let j=h0(q,Y,(y,$,c)=>{return new $0(y,$,c)},()=>{return 0}),f,x;f=j[0],x=j[1],F=[f,x]}else F=[N,Q([])];let D=F,B,P;B=D[0],P=D[1];let T=uf(R_),S=Y1(C(T,P));return[new r(B,Y,V,new k5,gb(),xb(),new YK,new P8,!1,Rk()),S]}function pb(){let Z=ff(j_,A_,M_),J=kf(Z,"#app",void 0);if(!(J instanceof E))throw g8("let_assert",S_,"quickslice_client",120,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3346,end:3395,pattern_start:3357,pattern_end:3362});return J}pb(); 151 + `;else return""}})());Z=z,J=Y,K=V,X=A(N,G)}else if(I==="t")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([x(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="r")if(N.head==="u")if(F.head==="e"&&!Y){let P;if(W instanceof U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=K8(S),E=p(Q([H("text-red-400")]),Q([x(S)]));Z=t5(W,q),J=Y,K=!1,X=A(E,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([x(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(I==="f")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([x(D)]));Z=B,J=Y,K=V,X=A(S,G)}else{let D=F.tail;if(D instanceof U){let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([x(B)]));Z=T,J=Y,K=V,X=A(q,G)}else if(z.head==="a")if(N.head==="l")if(F.head==="s")if(D.head==="e"&&!Y){let q;if(W instanceof U)q="";else{let f=W.tail;if(f instanceof U)q="";else{let g=f.tail;if(g instanceof U)q="";else{let c=g.tail;if(c instanceof U)q="";else{let n=W.head;if(n==="t")if(f.head==="r")if(g.head==="u")if(c.head==="e")q="true";else q="";else q="";else q="";else if(n==="f"){let r=c.tail;if(r instanceof U)q="";else if(f.head==="a")if(g.head==="l")if(c.head==="s")if(r.head==="e")q="false";else q="";else q="";else q="";else q=""}else if(n==="n")if(f.head==="u")if(g.head==="l")if(c.head==="l")q="null";else q="";else q="";else q="";else q=""}}}}let E=q,R=K8(E),k=p(Q([H("text-red-400")]),Q([x(E)]));Z=t5(W,R),J=Y,K=!1,X=A(k,G)}else{let q=I,E=z,R;if(q==="0")R="text-red-400";else if(q==="1")R="text-red-400";else if(q==="2")R="text-red-400";else if(q==="3")R="text-red-400";else if(q==="4")R="text-red-400";else if(q==="5")R="text-red-400";else if(q==="6")R="text-red-400";else if(q==="7")R="text-red-400";else if(q==="8")R="text-red-400";else if(q==="9")R="text-red-400";else if(q===".")R="text-red-400";else if(q==="-")R="text-red-400";else R="text-zinc-200";let w=p(Q([H(R)]),Q([x(q)]));Z=E,J=Y,K=V,X=A(w,G)}else{let S=I,q=z,E;if(S==="0")E="text-red-400";else if(S==="1")E="text-red-400";else if(S==="2")E="text-red-400";else if(S==="3")E="text-red-400";else if(S==="4")E="text-red-400";else if(S==="5")E="text-red-400";else if(S==="6")E="text-red-400";else if(S==="7")E="text-red-400";else if(S==="8")E="text-red-400";else if(S==="9")E="text-red-400";else if(S===".")E="text-red-400";else if(S==="-")E="text-red-400";else E="text-zinc-200";let k=p(Q([H(E)]),Q([x(S)]));Z=q,J=Y,K=V,X=A(k,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,G)}}}}}else if(I==="n")if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=W.tail;if(z instanceof U){let N=I,F=z,D;if(N==="0")D="text-red-400";else if(N==="1")D="text-red-400";else if(N==="2")D="text-red-400";else if(N==="3")D="text-red-400";else if(N==="4")D="text-red-400";else if(N==="5")D="text-red-400";else if(N==="6")D="text-red-400";else if(N==="7")D="text-red-400";else if(N==="8")D="text-red-400";else if(N==="9")D="text-red-400";else if(N===".")D="text-red-400";else if(N==="-")D="text-red-400";else D="text-zinc-200";let T=p(Q([H(D)]),Q([x(N)]));Z=F,J=Y,K=V,X=A(T,G)}else{let N=z.tail;if(N instanceof U){let F=I,D=z,B;if(F==="0")B="text-red-400";else if(F==="1")B="text-red-400";else if(F==="2")B="text-red-400";else if(F==="3")B="text-red-400";else if(F==="4")B="text-red-400";else if(F==="5")B="text-red-400";else if(F==="6")B="text-red-400";else if(F==="7")B="text-red-400";else if(F==="8")B="text-red-400";else if(F==="9")B="text-red-400";else if(F===".")B="text-red-400";else if(F==="-")B="text-red-400";else B="text-zinc-200";let P=p(Q([H(B)]),Q([x(F)]));Z=D,J=Y,K=V,X=A(P,G)}else{let F=N.tail;if(F instanceof U){let D=I,B=z,T;if(D==="0")T="text-red-400";else if(D==="1")T="text-red-400";else if(D==="2")T="text-red-400";else if(D==="3")T="text-red-400";else if(D==="4")T="text-red-400";else if(D==="5")T="text-red-400";else if(D==="6")T="text-red-400";else if(D==="7")T="text-red-400";else if(D==="8")T="text-red-400";else if(D==="9")T="text-red-400";else if(D===".")T="text-red-400";else if(D==="-")T="text-red-400";else T="text-zinc-200";let S=p(Q([H(T)]),Q([x(D)]));Z=B,J=Y,K=V,X=A(S,G)}else if(z.head==="u")if(N.head==="l")if(F.head==="l"&&!Y){let P;if(W instanceof U)P="";else{let k=W.tail;if(k instanceof U)P="";else{let w=k.tail;if(w instanceof U)P="";else{let f=w.tail;if(f instanceof U)P="";else{let g=W.head;if(g==="t")if(k.head==="r")if(w.head==="u")if(f.head==="e")P="true";else P="";else P="";else P="";else if(g==="f"){let c=f.tail;if(c instanceof U)P="";else if(k.head==="a")if(w.head==="l")if(f.head==="s")if(c.head==="e")P="false";else P="";else P="";else P="";else P=""}else if(g==="n")if(k.head==="u")if(w.head==="l")if(f.head==="l")P="null";else P="";else P="";else P="";else P=""}}}}let S=P,q=K8(S),E=p(Q([H("text-red-400")]),Q([x(S)]));Z=t5(W,q),J=Y,K=!1,X=A(E,G)}else{let P=I,S=z,q;if(P==="0")q="text-red-400";else if(P==="1")q="text-red-400";else if(P==="2")q="text-red-400";else if(P==="3")q="text-red-400";else if(P==="4")q="text-red-400";else if(P==="5")q="text-red-400";else if(P==="6")q="text-red-400";else if(P==="7")q="text-red-400";else if(P==="8")q="text-red-400";else if(P==="9")q="text-red-400";else if(P===".")q="text-red-400";else if(P==="-")q="text-red-400";else q="text-zinc-200";let R=p(Q([H(q)]),Q([x(P)]));Z=S,J=Y,K=V,X=A(R,G)}else{let T=I,P=z,S;if(T==="0")S="text-red-400";else if(T==="1")S="text-red-400";else if(T==="2")S="text-red-400";else if(T==="3")S="text-red-400";else if(T==="4")S="text-red-400";else if(T==="5")S="text-red-400";else if(T==="6")S="text-red-400";else if(T==="7")S="text-red-400";else if(T==="8")S="text-red-400";else if(T==="9")S="text-red-400";else if(T===".")S="text-red-400";else if(T==="-")S="text-red-400";else S="text-zinc-200";let E=p(Q([H(S)]),Q([x(T)]));Z=P,J=Y,K=V,X=A(E,G)}else{let B=I,T=z,P;if(B==="0")P="text-red-400";else if(B==="1")P="text-red-400";else if(B==="2")P="text-red-400";else if(B==="3")P="text-red-400";else if(B==="4")P="text-red-400";else if(B==="5")P="text-red-400";else if(B==="6")P="text-red-400";else if(B==="7")P="text-red-400";else if(B==="8")P="text-red-400";else if(B==="9")P="text-red-400";else if(B===".")P="text-red-400";else if(B==="-")P="text-red-400";else P="text-zinc-200";let q=p(Q([H(P)]),Q([x(B)]));Z=T,J=Y,K=V,X=A(q,G)}}}}else if(Y){let z=I,N=W.tail,F;if(V)F="text-green-400";else F="text-sky-400";let B=p(Q([H(F)]),Q([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}else{let z=I,N=W.tail,F;if(z==="0")F="text-red-400";else if(z==="1")F="text-red-400";else if(z==="2")F="text-red-400";else if(z==="3")F="text-red-400";else if(z==="4")F="text-red-400";else if(z==="5")F="text-red-400";else if(z==="6")F="text-red-400";else if(z==="7")F="text-red-400";else if(z==="8")F="text-red-400";else if(z==="9")F="text-red-400";else if(z===".")F="text-red-400";else if(z==="-")F="text-red-400";else F="text-zinc-200";let B=p(Q([H(F)]),Q([x(z)]));Z=N,J=Y,K=V,X=A(B,G)}}}}function P_(Z,J,K){return T_(Z,J,!1,K)}function sb(Z){let K=EZ(Z),X=P_(K,!1,Q([])),W=F0(X);return Jf(W)}class rb extends O{constructor(Z){super();this[0]=Z}}function ab(Z){let J=Z[0];return z1((K)=>{return lb(J)})}function A_(){return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading lexicons...")]))}function q_(Z){return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+Z)]))}function E_(){return j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-2")]),Q([x("No lexicons found.")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("Upload lexicons from the Settings page to get started.")]))]))}function C_(Z){return j(Q([H("bg-zinc-800/50 rounded p-4 relative")]),Q([q0(Q([H("absolute top-4 right-4 p-1.5 rounded hover:bg-zinc-700 text-zinc-400 hover:text-zinc-300 transition-colors"),M0("button"),f0(new rb(Z.json))]),Q([rZ("copy",new $U,Q([]))])),Xf(Q([H("group")]),Q([Wf(Q([H("cursor-pointer text-base font-mono text-zinc-300 hover:text-zinc-200 select-none list-none pr-10")]),Q([x(Z.id)])),dJ(Q([H("mt-3 bg-zinc-900 rounded p-3 overflow-x-auto text-xs font-mono")]),Q([h8(Q([]),Q([sb(KL(Z.json))]))]))]))]))}function x_(Z){if(Z instanceof U)return E_();else return j(Q([H("space-y-4")]),Q([x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x(wJ(z8(Z))+" lexicons")])),j(Q([H("space-y-3")]),H0(Z,C_))]))}function tb(Z){let J=a(Z,"GetLexicons",b(Q([])),ZJ),K;return K=J[1],j(Q([H("space-y-6")]),Q([j(Q([H("mb-2")]),Q([m1(Q([v1("/"),H("text-zinc-400 hover:text-zinc-300 transition-colors text-sm")]),Q([x("← Back")]))])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-6")]),Q([x("Lexicons")])),(()=>{if(K instanceof j1)return A_();else if(K instanceof L1){let X=K[0];return q_(X)}else{let X=K[0];return x_(X.lexicons)}})()]))}function ob(Z,J,K,X,W,Y){return j(Q([H("max-w-md mx-auto mt-12")]),Q([j(Q([H("bg-zinc-800/50 rounded p-8 border border-zinc-700")]),Q([j(Q([H("flex justify-center mb-6")]),Q([gU("w-16 h-16")])),_1(Q([H("text-2xl font-semibold text-zinc-300 mb-2 text-center")]),Q([x("Welcome to Quickslice")])),x0(Q([H("text-zinc-400 mb-6 text-center")]),Q([x("Set up an administrator account to get started.")])),v8(Q([x5("/admin/oauth/authorize"),w5("POST"),H("space-y-4")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("AT Protocol Handle")])),iZ(Z,"onboarding-handle","login_hint","user.bsky.social","font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full",J,K,X,W,Y)])),j(Q([H("pt-2")]),Q([mU(Z.query==="","Continue")]))]))]))]))}class sU extends O{constructor(Z){super();this[0]=Z}}class rU extends O{}class aU extends O{}class tU extends O{constructor(Z){super();this[0]=Z}}class oU extends O{}class eU extends O{constructor(Z){super();this[0]=Z}}class ZM extends O{constructor(Z){super();this[0]=Z}}class JM extends O{constructor(Z){super();this[0]=Z}}class KM extends O{constructor(Z){super();this[0]=Z}}class YM extends O{}class XJ extends O{}class XM extends O{constructor(Z){super();this[0]=Z}}class WM extends O{constructor(Z){super();this[0]=Z}}class QM extends O{constructor(Z){super();this[0]=Z}}class VM extends O{constructor(Z){super();this[0]=Z}}class GM extends O{}class IM extends O{constructor(Z){super();this[0]=Z}}class zM extends O{}class NM extends O{constructor(Z){super();this[0]=Z}}class FM extends O{constructor(Z){super();this[0]=Z}}class HM extends O{constructor(Z){super();this[0]=Z}}class DM extends O{}class BM extends O{constructor(Z){super();this[0]=Z}}class OM extends O{constructor(Z){super();this[0]=Z}}class TM extends O{}class PM extends O{}class SM extends O{constructor(Z){super();this[0]=Z}}class AM extends O{}class YJ extends O{constructor(Z){super();this[0]=Z}}class qM extends O{}class eb extends O{}class Y0 extends O{constructor(Z,J,K,X,W,Y,V,G,I,z,N,F,D,B,T,P,S,q,E,R,k,w,f,g){super();this.domain_authority_input=Z,this.reset_confirmation=J,this.selected_file=K,this.alert=X,this.relay_url_input=W,this.plc_directory_url_input=Y,this.jetstream_url_input=V,this.oauth_supported_scopes_input=G,this.lexicons_alert=I,this.show_new_client_form=z,this.new_client_name=N,this.new_client_type=F,this.new_client_redirect_uris=D,this.new_client_scope=B,this.editing_client_id=T,this.edit_client_name=P,this.edit_client_redirect_uris=S,this.edit_client_scope=q,this.visible_secrets=E,this.delete_confirm_client_id=R,this.oauth_alert=k,this.new_admin_did=w,this.remove_confirm_did=f,this.admin_alert=g}}function p5(Z,J,K){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new y([J,K]),Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function Zh(Z){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,new v,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function E8(Z,J,K){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,new y([J,K]),Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function n5(Z,J,K){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,Z.lexicons_alert,Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,new y([J,K]))}function WJ(Z,J,K){return new Y0(Z.domain_authority_input,Z.reset_confirmation,Z.selected_file,Z.alert,Z.relay_url_input,Z.plc_directory_url_input,Z.jetstream_url_input,Z.oauth_supported_scopes_input,new y([J,K]),Z.show_new_client_form,Z.new_client_name,Z.new_client_type,Z.new_client_redirect_uris,Z.new_client_scope,Z.editing_client_id,Z.edit_client_name,Z.edit_client_redirect_uris,Z.edit_client_scope,Z.visible_secrets,Z.delete_confirm_client_id,Z.oauth_alert,Z.new_admin_did,Z.remove_confirm_did,Z.admin_alert)}function Jh(){return new Y0("","",new v,new v,"","","","",new v,!1,"","PUBLIC","","atproto transition:generic",new v,"","","",E5(),new v,new v,"",new v,new v)}function M_(Z){return bk(Z)}function R_(Z,J,K){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Basic Settings")])),(()=>{let X=J.alert;if(X instanceof y){let W=X[0][0],Y=X[0][1],V;if(W==="success")V=new A8;else if(W==="error")V=new q8;else V=new e1;return c5(V,Y)}else return z0()})(),v8(Q([H("space-y-6"),ck((X)=>{return new YM})]),Q([j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Domain Authority")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1("e.g. com.example"),o0(J.domain_authority_input),t8(!0),K1((X)=>{return new sU(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x('Determines which collections are considered "primary" vs "external" when backfilling records.')]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Relay URL")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1(Z.relay_url),o0(J.relay_url_input),t8(!0),K1((X)=>{return new eU(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("AT Protocol relay URL for backfill operations.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("PLC Directory URL")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1(Z.plc_directory_url),o0(J.plc_directory_url_input),t8(!0),K1((X)=>{return new ZM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("PLC directory URL for DID resolution.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Jetstream URL")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1(Z.jetstream_url),o0(J.jetstream_url_input),t8(!0),K1((X)=>{return new JM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Jetstream WebSocket endpoint for real-time indexing.")]))])),j(Q([H("space-y-2")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("OAuth Supported Scopes")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1(Z.oauth_supported_scopes),o0(J.oauth_supported_scopes_input),t8(!0),K1((X)=>{return new KM(X)})])),x0(Q([H("text-xs text-zinc-500")]),Q([x("Space-separated OAuth scopes supported by this server.")]))])),j(Q([H("flex gap-3 pt-4")]),Q([mU(K,(()=>{if(K)return"Saving...";else return"Save"})())]))]))]))}function j_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Lexicons")])),(()=>{let J=Z.lexicons_alert;if(J instanceof y){let K=J[0][0],X=J[0][1],W;if(K==="success")W=new A8;else if(K==="error")W=new q8;else W=new e1;return c5(W,X)}else return z0()})(),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Upload Lexicons (ZIP)")])),N1(Q([M0("file"),$y(Q([".zip"])),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),H8("lexicon-file-input"),K1((J)=>{return new rU})]))])),x0(Q([H("text-sm text-zinc-500 mb-4")]),Q([x("Upload a ZIP file containing lexicon JSON files.")])),j(Q([H("flex gap-3")]),Q([Z8(!1,new aU,"Upload")]))]))]))}function L_(Z){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Danger Zone")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("This will clear all indexed data:")])),cJ(Q([H("text-sm text-zinc-400 mb-4 ml-4 list-disc")]),Q([j5(Q([]),Q([x("Domain authority configuration")])),j5(Q([]),Q([x("All lexicon definitions")])),j5(Q([]),Q([x("All indexed records")])),j5(Q([]),Q([x("All actors")]))])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Records can be re-indexed via backfill.")])),j(Q([H("space-y-4")]),Q([j(Q([H("mb-4")]),Q([s0(Q([H("block text-sm text-zinc-400 mb-2")]),Q([x("Type RESET to confirm")])),N1(Q([M0("text"),H("font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700 w-full"),q1("RESET"),o0(Z.reset_confirmation),K1((J)=>{return new tU(J)})]))])),j(Q([H("flex gap-3")]),Q([q0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),RZ(Z.reset_confirmation!=="RESET"),f0(new oU)]),Q([x("Reset Everything")]))]))]))]))}function y_(Z){return j(Q([H("bg-zinc-900 rounded p-4 mb-4 border border-zinc-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Register New Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("My Application"),o0(Z.new_client_name),K1((J)=>{return new XM(J)})]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Type")])),Yf(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),dk((J)=>{return new WM(J)})]),Q([dR(Q([o0("PUBLIC"),xR(Z.new_client_type==="PUBLIC")]),"Public"),dR(Q([o0("CONFIDENTIAL"),xR(Z.new_client_type==="CONFIDENTIAL")]),"Confidential")])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x((()=>{if(Z.new_client_type==="CONFIDENTIAL")return"For server-side apps that can securely store a client secret";else return"For browser apps (SPAs) and mobile apps that cannot securely store a secret"})())]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),cR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),q1("http://localhost:3000/callback"),o0(Z.new_client_redirect_uris),K1((J)=>{return new QM(J)})]),"")])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),q1("atproto transition:generic"),o0(Z.new_client_scope),K1((J)=>{return new VM(J)})])),x0(Q([H("text-xs text-zinc-500 mt-1")]),Q([x("Space-separated OAuth scopes")]))])),j(Q([H("flex gap-2")]),Q([Z8(!1,new GM,"Create"),q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new XJ)]),Q([x("Cancel")]))]))]))]))}function f_(Z,J){return j(Q([H("bg-zinc-900 rounded p-4 border border-amber-700")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Edit Client")])),j(Q([H("space-y-3")]),Q([j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client ID")])),h8(Q([H("text-sm text-zinc-500 font-mono")]),Q([x(Z.client_id)]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Client Name")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_name),K1((K)=>{return new NM(K)})]))])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Redirect URIs (one per line)")])),cR(Q([H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full h-20"),K1((K)=>{return new FM(K)})]),J.edit_client_redirect_uris)])),j(Q([]),Q([s0(Q([H("block text-sm text-zinc-400 mb-1")]),Q([x("Scope")])),N1(Q([M0("text"),H("font-mono px-3 py-2 text-sm text-zinc-300 bg-zinc-800 border border-zinc-700 rounded w-full"),o0(J.edit_client_scope),K1((K)=>{return new HM(K)})]))])),j(Q([H("flex gap-2")]),Q([Z8(!1,new DM,"Save"),q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new zM)]),Q([x("Cancel")]))]))]))]))}function k_(Z,J){let K=S0(J.editing_client_id,new y(Z.client_id)),X=Q4(J.visible_secrets,Z.client_id);if(K)return f_(Z,J);else return j(Q([H("bg-zinc-900 rounded p-4 border border-zinc-700")]),Q([j(Q([H("flex justify-between items-start mb-2")]),Q([j(Q([]),Q([p(Q([H("text-zinc-300 font-medium")]),Q([x(Z.client_name)]))])),j(Q([H("flex gap-2")]),Q([q0(Q([H("text-sm text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new IM(Z.client_id))]),Q([x("Edit")])),q0(Q([H("text-sm text-red-400 hover:text-red-300 cursor-pointer"),f0(new OM(Z.client_id))]),Q([x("Delete")]))]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Client ID: ")])),h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Z.client_id)]))])),j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Type: ")])),p(Q([H("text-xs text-zinc-400")]),Q([x((()=>{let W=Z.client_type;if(W==="PUBLIC")return"Public";else if(W==="CONFIDENTIAL")return"Confidential";else return Z.client_type})())]))])),(()=>{let W=Z.client_secret;if(W instanceof y){let Y=W[0];return j(Q([H("mb-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Secret: ")])),(()=>{if(X)return h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]));else return h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x("••••••••••••••••")]))})(),q0(Q([H("ml-2 text-xs text-zinc-500 hover:text-zinc-400 cursor-pointer"),f0(new BM(Z.client_id))]),Q([x((()=>{if(X)return"Hide";else return"Show"})())]))]))}else return z0()})(),(()=>{let W=Z.redirect_uris;if(W instanceof U)return z0();else{let Y=W;return j(Q([]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Redirect URIs:")])),cJ(Q([H("text-xs text-zinc-400 font-mono ml-4")]),H0(Y,(V)=>{return j5(Q([]),Q([x(V)]))}))]))}})(),(()=>{let W=Z.scope;if(W instanceof y){let Y=W[0];return j(Q([H("mt-2")]),Q([p(Q([H("text-xs text-zinc-500")]),Q([x("Scope: ")])),h8(Q([H("text-xs text-zinc-400 font-mono")]),Q([x(Y)]))]))}else return z0()})()]))}function b_(Z){return j(Q([H("fixed inset-0 bg-black/50 flex items-center justify-center z-50")]),Q([j(Q([H("bg-zinc-800 rounded p-6 max-w-md")]),Q([O4(Q([H("text-lg font-semibold text-zinc-300 mb-3")]),Q([x("Delete Client?")])),x0(Q([H("text-sm text-zinc-400 mb-4")]),Q([x("Are you sure you want to delete client "),h8(Q([H("text-zinc-300")]),Q([x(Z)])),x("? This action cannot be undone.")])),j(Q([H("flex gap-2 justify-end")]),Q([q0(Q([H("font-mono px-4 py-2 text-sm text-zinc-400 hover:text-zinc-300 rounded transition-colors cursor-pointer"),f0(new TM)]),Q([x("Cancel")])),q0(Q([H("font-mono px-4 py-2 text-sm text-red-400 border border-red-900 hover:bg-red-900/30 rounded transition-colors cursor-pointer"),f0(new PM)]),Q([x("Delete")]))]))]))]))}function h_(Z,J){let K=b(Q([])),X=a(Z,"GetOAuthClients",K,d8),W;return W=X[1],j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("OAuth Clients")])),(()=>{let Y=J.oauth_alert;if(Y instanceof y){let V=Y[0][0],G=Y[0][1],I;if(V==="success")I=new A8;else if(V==="error")I=new q8;else I=new e1;return c5(I,G)}else return z0()})(),(()=>{if(J.show_new_client_form)return y_(J);else return j(Q([H("mb-4")]),Q([Z8(!1,new XJ,"Register New Client")]))})(),(()=>{if(W instanceof j1)return j(Q([H("py-4 text-center text-zinc-600 text-sm")]),Q([x("Loading clients...")]));else if(W instanceof L1){let Y=W[0];return j(Q([H("py-4 text-center text-red-400 text-sm")]),Q([x("Error: "+Y)]))}else{let Y=W[0];return j(Q([H("space-y-3")]),H0(Y.oauth_clients,(V)=>{return k_(V,J)}))}})(),(()=>{let Y=J.delete_confirm_client_id;if(Y instanceof y){let V=Y[0];return b_(V)}else return z0()})()]))}function v_(Z,J){return j(Q([H("bg-zinc-800/50 rounded p-6")]),Q([B4(Q([H("text-xl font-semibold text-zinc-300 mb-4")]),Q([x("Admin Management")])),(()=>{let K=J.admin_alert;if(K instanceof y){let X=K[0][0],W=K[0][1],Y;if(X==="success")Y=new A8;else if(X==="error")Y=new q8;else Y=new e1;return c5(Y,W)}else return z0()})(),j(Q([H("mb-6")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Current Admins")])),cJ(Q([H("space-y-2")]),H0(Z.admin_dids,(K)=>{return j5(Q([H("flex items-center justify-between bg-zinc-900/50 px-3 py-2 rounded border border-zinc-800")]),Q([p(Q([H("font-mono text-sm text-zinc-300 truncate")]),Q([x(K)])),(()=>{let X=J.remove_confirm_did;if(X instanceof y)if(X[0]===K)return j(Q([H("flex gap-2")]),Q([q0(Q([H("text-xs px-2 py-1 text-zinc-400 hover:text-zinc-300 cursor-pointer"),f0(new qM)]),Q([x("Cancel")])),q0(Q([H("text-xs px-2 py-1 text-red-400 hover:bg-red-900/30 rounded cursor-pointer"),f0(new eb)]),Q([x("Confirm Remove")]))]));else return q0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new YJ(K))]),Q([x("Remove")]));else return q0(Q([H("text-xs px-2 py-1 text-zinc-500 hover:text-red-400 transition-colors cursor-pointer"),f0(new YJ(K))]),Q([x("Remove")]))})()]))}))])),j(Q([H("border-t border-zinc-800 pt-4")]),Q([O4(Q([H("text-sm font-medium text-zinc-400 mb-2")]),Q([x("Add Admin")])),j(Q([H("flex gap-2")]),Q([N1(Q([M0("text"),H("flex-1 font-mono px-4 py-2 text-sm text-zinc-300 bg-zinc-900 border border-zinc-800 rounded focus:outline-none focus:border-zinc-700"),q1("did:plc:... or did:web:..."),o0(J.new_admin_did),K1((K)=>{return new SM(K)})])),Z8(J.new_admin_did==="",new AM,"Add Admin")])),x0(Q([H("text-xs text-zinc-500 mt-2")]),Q([x("Enter the DID of the user you want to make an admin.")]))]))]))}function Kh(Z,J,K){if(K){let X=b(Q([])),W=a(Z,"GetSettings",X,O1),Y;Y=W[1];let V=M_(Z);return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),(()=>{if(Y instanceof j1)return j(Q([H("py-8 text-center text-zinc-600 text-sm")]),Q([x("Loading settings...")]));else if(Y instanceof L1){let G=Y[0];return j(Q([H("py-8 text-center text-red-400 text-sm")]),Q([x("Error: "+G)]))}else{let G=Y[0];return j(Q([H("space-y-6")]),Q([R_(G.settings,J,V),j_(J),h_(Z,J),v_(G.settings,J),L_(J)]))}})()]))}else return j(Q([H("max-w-2xl space-y-6")]),Q([_1(Q([H("text-2xl font-semibold text-zinc-300 mb-8")]),Q([x("Settings")])),j(Q([H("bg-zinc-800/50 rounded p-8 text-center border border-zinc-700")]),Q([x0(Q([H("text-zinc-400 mb-4")]),Q([x("Access Denied")])),x0(Q([H("text-sm text-zinc-500")]),Q([x("You must be an administrator to access the settings page.")]))]))]))}function Yh(){return window.location.origin}function QJ(Z,J){window.setTimeout(()=>J(),Z)}var g_="src/quickslice_client.gleam";class l5 extends O{}class D5 extends O{}class zJ extends O{}class WL extends O{}class GJ extends O{}class i5 extends O{}class C8 extends O{}class Xh extends O{constructor(Z,J,K){super();this.did=Z,this.handle=J,this.is_admin=K}}class l extends O{constructor(Z,J,K,X,W,Y,V,G,I,z){super();this.cache=Z,this.registry=J,this.route=K,this.time_range=X,this.settings_page_model=W,this.backfill_page_model=Y,this.backfill_status=V,this.auth_state=G,this.mobile_menu_open=I,this.login_autocomplete=z}}class d0 extends O{constructor(Z,J,K){super();this[0]=Z,this[1]=J,this[2]=K}}class EM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class CM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class xM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class wM extends O{constructor(Z,J){super();this[0]=Z,this[1]=J}}class QL extends O{constructor(Z){super();this[0]=Z}}class VL extends O{constructor(Z){super();this[0]=Z}}class GL extends O{constructor(Z){super();this[0]=Z}}class UM extends O{constructor(Z){super();this[0]=Z}}class IL extends O{constructor(Z){super();this[0]=Z}}class YL extends O{constructor(Z){super();this[0]=Z}}class VJ extends O{}class zL extends O{}class IJ extends O{constructor(Z){super();this[0]=Z}}class MM extends O{constructor(Z){super();this[0]=Z}}class RM extends O{constructor(Z){super();this[0]=Z}}class jM extends O{}class LM extends O{}class XL extends O{constructor(Z){super();this[0]=Z}}class Wh extends O{}function H5(Z){let J=l1(Z,y0);if(J instanceof C){let K=J[0],X=h("errors",U0(h("message",u,(Y)=>{return s(Y)})),(Y)=>{return s(Y)}),W=I0(K,X);if(W instanceof C){let Y=W[0];if(Y instanceof U)return new v;else{let V=Y.head;return new y(V)}}else return new v}else return new v}function __(Z,J){if(J instanceof d0){let K=J[2];if(K instanceof C){let X=J[0],W=J[1],Y=K[0],V=vk(Z.cache,X,W,Y,0),G=u0(V,Z.registry,(m,L,_)=>{return new d0(m,L,_)},()=>{return 0}),I,z;I=G[0],z=G[1];let N;if(X==="IsBackfilling"){let m=dZ(Y);if(m instanceof C){let L=m[0],_=Z.backfill_status;if(L.is_backfilling&&_ instanceof IK)N=new B8;else N=mk(Z.backfill_status,L.is_backfilling)}else N=Z.backfill_status}else N=Z.backfill_status;let F=N,D,B=$5(Z.backfill_status),T=$5(F);if(B)if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return QJ(1e4,()=>{return m(new VJ)})})]);else D=Q([]);else if(T&&X==="IsBackfilling")D=Q([z1((m)=>{return QJ(1e4,()=>{return m(new VJ)})})]);else D=Q([]);let P=D,S,q=Z.backfill_status;if(q instanceof m8&&F instanceof v5)S=!0;else if(q instanceof B8&&F instanceof v5)S=!0;else S=!1;let E=S,R;if(X==="GetCurrentSession"){let m=dj(Y);if(m instanceof C){let _=m[0].current_session;if(_ instanceof y){let t=_[0];R=new Xh(t.did,t.handle,t.is_admin)}else R=new C8}else R=new C8}else R=Z.auth_state;let k=R,w;if(X==="UpdateSettings")w=p5(Z.settings_page_model,"success","Settings updated successfully");else if(X==="UploadLexicons"){mj("lexicon-file-input");let m=H5(Y);if(m instanceof y){let L=m[0];w=WJ(Z.settings_page_model,"error",L)}else w=WJ(Z.settings_page_model,"success","Lexicons uploaded successfully")}else if(X==="ResetAll"){let m,L=Z.settings_page_model;m=new Y0("",L.reset_confirmation,L.selected_file,L.alert,L.relay_url_input,L.plc_directory_url_input,L.jetstream_url_input,L.oauth_supported_scopes_input,L.lexicons_alert,L.show_new_client_form,L.new_client_name,L.new_client_type,L.new_client_redirect_uris,L.new_client_scope,L.editing_client_id,L.edit_client_name,L.edit_client_redirect_uris,L.edit_client_scope,L.visible_secrets,L.delete_confirm_client_id,L.oauth_alert,L.new_admin_did,L.remove_confirm_did,L.admin_alert),w=p5(m,"success","All data has been reset")}else if(X==="GetSettings"){let m=O1(Y);if(m instanceof C){let L=m[0],_=Z.settings_page_model;w=new Y0(L.settings.domain_authority,_.reset_confirmation,_.selected_file,_.alert,L.settings.relay_url,L.settings.plc_directory_url,L.settings.jetstream_url,L.settings.oauth_supported_scopes,_.lexicons_alert,_.show_new_client_form,_.new_client_name,_.new_client_type,_.new_client_redirect_uris,_.new_client_scope,_.editing_client_id,_.edit_client_name,_.edit_client_redirect_uris,_.edit_client_scope,_.visible_secrets,_.delete_confirm_client_id,_.oauth_alert,_.new_admin_did,_.remove_confirm_did,_.admin_alert)}else w=Z.settings_page_model}else if(X==="CreateOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="UpdateOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="DeleteOAuthClient"){let m=H5(Y);if(m instanceof y){let L=m[0];w=E8(Z.settings_page_model,"error",L)}else{let L;if(X==="CreateOAuthClient")L="OAuth client created successfully";else if(X==="UpdateOAuthClient")L="OAuth client updated successfully";else if(X==="DeleteOAuthClient")L="OAuth client deleted successfully";else L="Operation completed";let _=L;w=E8(Z.settings_page_model,"success",_)}}else if(X==="AddAdmin"){let m=H5(Y);if(m instanceof y){let L=m[0];w=n5(Z.settings_page_model,"error",L)}else{let L;if(X==="AddAdmin")L="Admin added successfully";else if(X==="RemoveAdmin")L="Admin removed successfully";else L="Operation completed";let _=L;w=n5(Z.settings_page_model,"success",_)}}else if(X==="RemoveAdmin"){let m=H5(Y);if(m instanceof y){let L=m[0];w=n5(Z.settings_page_model,"error",L)}else{let L;if(X==="AddAdmin")L="Admin added successfully";else if(X==="RemoveAdmin")L="Admin removed successfully";else L="Operation completed";let _=L;w=n5(Z.settings_page_model,"success",_)}}else w=Z.settings_page_model;let f=w,g;if(X==="BackfillActor"){let m=Z.backfill_page_model,L=pU(m,!1),_=rj(L,"success","Backfill started for "+Z.backfill_page_model.did_input);g=((t)=>{return new F5("",t.is_submitting,t.alert)})(_)}else g=Z.backfill_page_model;let c=g,n;if(X==="ResetAll"){let m=m0(I,"GetStatistics",b(Q([]))),L=m0(m,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]]))),_=m0(L,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetSettings",b(Q([])),O1),o;o=t[0];let K0=u0(o,Z.registry,(L0,H1,T1)=>{return new d0(L0,H1,T1)},()=>{return 0}),w0,C0;w0=K0[0],C0=K0[1],n=[w0,C0]}else if(X==="UploadLexicons")n=[m0(I,"GetStatistics",b(Q([]))),Q([])];else if(X==="CreateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="UpdateOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else if(X==="DeleteOAuthClient"){let m=m0(I,"GetOAuthClients",b(Q([]))),L=a(m,"GetOAuthClients",b(Q([])),d8),_;_=L[0];let t=u0(_,Z.registry,(w0,C0,L0)=>{return new d0(w0,C0,L0)},()=>{return 0}),o,K0;o=t[0],K0=t[1],n=[o,K0]}else n=[I,Q([])];let r=n,Q0,E0;Q0=r[0],E0=r[1];let k0;if(E){let m=m0(Q0,"GetStatistics",b(Q([]))),L=m0(m,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]]))),_=m0(L,"GetRecentActivity",b(Q([["hours",W1(24)]]))),t=a(_,"GetStatistics",b(Q([])),N5),o;o=t[0];let K0=a(o,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]])),d5),w0;w0=K0[0];let C0=a(w0,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),L0;L0=C0[0];let H1=u0(L0,Z.registry,(w1,Q8,x8)=>{return new d0(w1,Q8,x8)},()=>{return 0}),T1,P1;T1=H1[0],P1=H1[1],k0=[T1,P1]}else k0=[Q0,Q([])];let G0=k0,P0,V0;P0=G0[0],V0=G0[1];let J0;if(X==="GetCurrentSession"){let m=Z.route;if(k instanceof C8)if(m instanceof D5)J0=Q([b5("/",new v,new v)]);else J0=Q([]);else if(!k.is_admin&&m instanceof D5)J0=Q([b5("/",new v,new v)]);else J0=Q([])}else if(X==="GetSettings"){let m=O1(Y);if(m instanceof C){let L=m[0],_=LL(L.settings.admin_dids),t=Z.route;if(_)if(t instanceof i5)J0=Q([]);else J0=Q([b5("/onboarding",new v,new v)]);else if(t instanceof i5)J0=Q([b5("/",new v,new v)]);else J0=Q([])}else J0=Q([])}else J0=Q([]);let Z0=J0;return[new l(P0,Z.registry,Z.route,Z.time_range,f,c,F,k,Z.mobile_menu_open,Z.login_autocomplete),Q1((()=>{let m=Q([z,E0,V0,Z0,P]);return fL(m)})())]}else{let X=J[0],W=K[0],Y;if(X==="UpdateSettings")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="ResetAll")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="TriggerBackfill")Y=p5(Z.settings_page_model,"error","Error: "+W);else if(X==="UploadLexicons")Y=WJ(Z.settings_page_model,"error","Error: "+W);else if(X==="CreateOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else if(X==="UpdateOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else if(X==="DeleteOAuthClient")Y=E8(Z.settings_page_model,"error","Error: "+W);else Y=Z.settings_page_model;let V=Y,G;if(X==="BackfillActor"){let z=Z.backfill_page_model,N=pU(z,!1);G=rj(N,"error","Error: "+W)}else G=Z.backfill_page_model;let I=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}}else if(J instanceof EM){let K=J[0],X=J[1],W=fj(Z.cache,K,X),Y=p5(Z.settings_page_model,"success","Settings updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(J instanceof CM){let K=J[0],X=J[1],W=Lj(Z.cache,K),Y,G=a(W,"GetSettings",b(Q([])),O1)[1];if(G instanceof y1)Y=G[0].settings.domain_authority;else Y=Z.settings_page_model.domain_authority_input;let I=Y,z,N=A5(X,"Response body: ");if(N instanceof C){let P=N[0][1],S=H5(P);if(S instanceof y)z=S[0];else z=X}else z=X;let F=z,D,B=Z.settings_page_model;D=new Y0(I,B.reset_confirmation,B.selected_file,new y(["error",F]),B.relay_url_input,B.plc_directory_url_input,B.jetstream_url_input,B.oauth_supported_scopes_input,B.lexicons_alert,B.show_new_client_form,B.new_client_name,B.new_client_type,B.new_client_redirect_uris,B.new_client_scope,B.editing_client_id,B.edit_client_name,B.edit_client_redirect_uris,B.edit_client_scope,B.visible_secrets,B.delete_confirm_client_id,B.oauth_alert,B.new_admin_did,B.remove_confirm_did,B.admin_alert);let T=D;return[new l(W,Z.registry,Z.route,Z.time_range,T,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(J instanceof xM){let K=J[0],X=J[1],W=fj(Z.cache,K,X),Y=n5(Z.settings_page_model,"success","Admin updated successfully");return[new l(W,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(J instanceof wM){let K=J[0],X=J[1],W=Lj(Z.cache,K),Y,V=A5(X,"Response body: ");if(V instanceof C){let z=V[0][1],N=H5(z);if(N instanceof y)Y=N[0];else Y=X}else Y=X;let G=Y,I=n5(Z.settings_page_model,"error",G);return[new l(W,Z.registry,Z.route,Z.time_range,I,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(J instanceof QL){let K=J[0],X;if(Z.route instanceof D5)X=Zh(Z.settings_page_model);else X=Z.settings_page_model;let Y=X;if(K instanceof l5){let V=a(Z.cache,"GetStatistics",b(Q([])),N5),G;G=V[0];let I=a(G,"GetSettings",b(Q([])),O1),z;z=I[0];let N=a(z,"GetActivityBuckets",b(Q([["range",d(z5(Z.time_range))]])),d5),F;F=N[0];let D=a(F,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),B;B=D[0];let T=u0(B,Z.registry,(q,E,R)=>{return new d0(q,E,R)},()=>{return 0}),P,S;return P=T[0],S=T[1],[new l(P,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Q1(S)]}else if(K instanceof D5){let V,G=Z.auth_state;if(G instanceof C8)V=!1;else V=G.is_admin;if(V){let z=a(Z.cache,"GetSettings",b(Q([])),O1),N;N=z[0];let F=a(N,"GetOAuthClients",b(Q([])),d8),D;D=F[0];let B=u0(D,Z.registry,(S,q,E)=>{return new d0(S,q,E)},()=>{return 0}),T,P;return T=B[0],P=B[1],[new l(T,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Q1(P)]}else return[Z,b5("/",new v,new v)]}else if(K instanceof zJ){let V=a(Z.cache,"GetLexicons",b(Q([])),ZJ),G;G=V[0];let I=u0(G,Z.registry,(F,D,B)=>{return new d0(F,D,B)},()=>{return 0}),z,N;return z=I[0],N=I[1],[new l(z,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),Q1(N)]}else if(K instanceof GJ)if(Z.auth_state instanceof C8)return[Z,b5("/",new v,new v)];else{let G=cU(Z.backfill_page_model);return[new l(Z.cache,Z.registry,new GJ,Z.time_range,Z.settings_page_model,G,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),i()]}else if(K instanceof i5)return[new l(Z.cache,Z.registry,new i5,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),i()];else return[new l(Z.cache,Z.registry,K,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!1,Z.login_autocomplete),i()]}else if(J instanceof VL){let K=J[0];if(K instanceof iU){let X=K[0],W=b(Q([["range",d(z5(X))]])),Y=a(Z.cache,"GetActivityBuckets",W,d5),V;V=Y[0];let G=u0(V,Z.registry,(N,F,D)=>{return new d0(N,F,D)},()=>{return 0}),I,z;return I=G[0],z=G[1],[new l(I,Z.registry,Z.route,X,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(z)]}else if(K instanceof lU){let X=b(Q([])),W=m0(Z.cache,"TriggerBackfill",X),Y=a(W,"TriggerBackfill",X,yb),V;V=Y[0];let G=u0(V,Z.registry,(F,D,B)=>{return new d0(F,D,B)},()=>{return 0}),I,z;I=G[0],z=G[1];let N=z1((F)=>{return QJ(1e4,()=>{return F(new VJ)})});return[new l(I,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,new m8,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(Q([Q1(z),N]))]}else return nj("/graphiql"),[Z,i()]}else if(J instanceof GL){let K=J[0];if(K instanceof sU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(X,Y.reset_confirmation,Y.selected_file,new v,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof rU)return[Z,i()];else if(K instanceof aU){q5("[UploadLexicons] Button clicked, creating file effect");let X=z1((W)=>{return q5("[UploadLexicons] Effect running, calling read_file_as_base64"),_j("lexicon-file-input",(Y)=>{return q5("[UploadLexicons] Callback received result"),W(new YL(Y))})});return[Z,X]}else if(K instanceof tU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,X,Y.selected_file,new v,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof oU){let X=b(Q([["confirm",d(Z.settings_page_model.reset_confirmation)]])),W=m0(Z.cache,"ResetAll",X),Y=a(W,"ResetAll",X,jb),V;V=Y[0];let G=u0(V,Z.registry,(B,T,P)=>{return new d0(B,T,P)},()=>{return 0}),I,z;I=G[0],z=G[1];let N,F=Z.settings_page_model;N=new Y0(F.domain_authority_input,"",F.selected_file,new v,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,F.editing_client_id,F.edit_client_name,F.edit_client_redirect_uris,F.edit_client_scope,F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert);let D=N;return[new l(I,Z.registry,Z.route,Z.time_range,D,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(z)]}else if(K instanceof eU){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,X,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof ZM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,Y.relay_url_input,X,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof JM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,Y.relay_url_input,Y.plc_directory_url_input,X,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof KM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,new v,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,X,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof YM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,new v,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let Y=X,V=b(Q([])),G=a(Z.cache,"GetSettings",V,O1),I;if(I=G[1],I instanceof y1){let N=I[0].settings.admin_dids,F=Q([]),D,B=Z.settings_page_model.domain_authority_input;if(B==="")D=F;else D=A(["domainAuthority",d(B)],F);let T=D,P,S=Z.settings_page_model.relay_url_input;if(S==="")P=T;else P=A(["relayUrl",d(S)],T);let q=P,E,R=Z.settings_page_model.plc_directory_url_input;if(R==="")E=q;else E=A(["plcDirectoryUrl",d(R)],q);let k=E,w,f=Z.settings_page_model.jetstream_url_input;if(f==="")w=k;else w=A(["jetstreamUrl",d(f)],k);let g=w,c,n=Z.settings_page_model.oauth_supported_scopes_input;if(n==="")c=g;else c=A(["oauthSupportedScopes",d(n)],g);let r=c,Q0=A(["adminDids",j0(N,d)],r);if(Q0 instanceof U){let E0=b(Q0),k0=Q([["id",d("Settings:singleton")]]),G0,P0=Z.settings_page_model.domain_authority_input;if(P0==="")G0=k0;else G0=A(["domainAuthority",d(P0)],k0);let V0=G0,J0,Z0=Z.settings_page_model.relay_url_input;if(Z0==="")J0=V0;else J0=A(["relayUrl",d(Z0)],V0);let m=J0,L,_=Z.settings_page_model.plc_directory_url_input;if(_==="")L=m;else L=A(["plcDirectoryUrl",d(_)],m);let t=L,o,K0=Z.settings_page_model.jetstream_url_input;if(K0==="")o=t;else o=A(["jetstreamUrl",d(K0)],t);let w0=o,C0,L0=Z.settings_page_model.oauth_supported_scopes_input;if(L0==="")C0=w0;else C0=A(["oauthSupportedScopes",d(L0)],w0);let H1=C0,T1=A(["adminDids",j0(N,d)],H1),P1=b(T1),w1=uZ(Z.cache,Z.registry,"UpdateSettings",E0,"Settings:singleton",(u1)=>{return P1},JJ,(u1,d1,NJ)=>{if(d1 instanceof C)return new EM(u1,NJ);else{let yM=d1[0];return new CM(u1,yM)}}),Q8,x8;return Q8=w1[0],x8=w1[2],[new l(Q8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),x8]}else if(Q0.tail instanceof U)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()];else{let k0=b(Q0),G0=Q([["id",d("Settings:singleton")]]),P0,V0=Z.settings_page_model.domain_authority_input;if(V0==="")P0=G0;else P0=A(["domainAuthority",d(V0)],G0);let J0=P0,Z0,m=Z.settings_page_model.relay_url_input;if(m==="")Z0=J0;else Z0=A(["relayUrl",d(m)],J0);let L=Z0,_,t=Z.settings_page_model.plc_directory_url_input;if(t==="")_=L;else _=A(["plcDirectoryUrl",d(t)],L);let o=_,K0,w0=Z.settings_page_model.jetstream_url_input;if(w0==="")K0=o;else K0=A(["jetstreamUrl",d(w0)],o);let C0=K0,L0,H1=Z.settings_page_model.oauth_supported_scopes_input;if(H1==="")L0=C0;else L0=A(["oauthSupportedScopes",d(H1)],C0);let T1=L0,P1=A(["adminDids",j0(N,d)],T1),w1=b(P1),Q8=uZ(Z.cache,Z.registry,"UpdateSettings",k0,"Settings:singleton",(d1)=>{return w1},JJ,(d1,NJ,yM)=>{if(NJ instanceof C)return new EM(d1,yM);else{let Gh=NJ[0];return new CM(d1,Gh)}}),x8,u1;return x8=Q8[0],u1=Q8[2],[new l(x8,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),u1]}}else return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof XJ){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,!Z.settings_page_model.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof XM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,X,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof WM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,X,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof QM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,X,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof VM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,X,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof GM){let X,W=K4(Z.settings_page_model.new_client_redirect_uris,` 152 + `),Y=OJ(W,(E)=>{return K8(J4(E))>0});X=H0(Y,J4);let V=X,G=b(Q([["clientName",d(Z.settings_page_model.new_client_name)],["clientType",d(Z.settings_page_model.new_client_type)],["redirectUris",j0(V,d)],["scope",d(Z.settings_page_model.new_client_scope)]])),I=m0(Z.cache,"CreateOAuthClient",G),z=a(I,"CreateOAuthClient",G,Gb),N;N=z[0];let F=m0(N,"GetOAuthClients",b(Q([]))),D=u0(F,Z.registry,(E,R,k)=>{return new d0(E,R,k)},()=>{return 0}),B,T;B=D[0],T=D[1];let P,S=Z.settings_page_model;P=new Y0(S.domain_authority_input,S.reset_confirmation,S.selected_file,S.alert,S.relay_url_input,S.plc_directory_url_input,S.jetstream_url_input,S.oauth_supported_scopes_input,S.lexicons_alert,!1,"","PUBLIC","","atproto transition:generic",S.editing_client_id,S.edit_client_name,S.edit_client_redirect_uris,S.edit_client_scope,S.visible_secrets,S.delete_confirm_client_id,S.oauth_alert,S.new_admin_did,S.remove_confirm_did,S.admin_alert);let q=P;return[new l(B,Z.registry,Z.route,Z.time_range,q,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(T)]}else if(K instanceof IM){let X=K[0],W=a(Z.cache,"GetOAuthClients",b(Q([])),d8),Y;Y=W[1];let V;if(Y instanceof y1){let I=Y[0],z=aM(I.oauth_clients,(N)=>{return N.client_id===X});if(z instanceof C){let N=z[0],F=Z.settings_page_model;V=new Y0(F.domain_authority_input,F.reset_confirmation,F.selected_file,F.alert,F.relay_url_input,F.plc_directory_url_input,F.jetstream_url_input,F.oauth_supported_scopes_input,F.lexicons_alert,F.show_new_client_form,F.new_client_name,F.new_client_type,F.new_client_redirect_uris,F.new_client_scope,new y(X),N.client_name,s8(N.redirect_uris,` 153 + `),(()=>{let D=N.scope;if(D instanceof y)return D[0];else return""})(),F.visible_secrets,F.delete_confirm_client_id,F.oauth_alert,F.new_admin_did,F.remove_confirm_did,F.admin_alert)}else V=Z.settings_page_model}else V=Z.settings_page_model;let G=V;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,G,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof zM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,new v,"","","",W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof NM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,X,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof FM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,X,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof HM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,X,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof DM){let X=Z.settings_page_model.editing_client_id;if(X instanceof y){let W=X[0],Y,V=K4(Z.settings_page_model.edit_client_redirect_uris,` 154 + `),G=OJ(V,(k)=>{return K8(J4(k))>0});Y=H0(G,J4);let I=Y,z=b(Q([["clientId",d(W)],["clientName",d(Z.settings_page_model.edit_client_name)],["redirectUris",j0(I,d)],["scope",d(Z.settings_page_model.edit_client_scope)]])),N=m0(Z.cache,"UpdateOAuthClient",z),F=a(N,"UpdateOAuthClient",z,bb),D;D=F[0];let B=m0(D,"GetOAuthClients",b(Q([]))),T=u0(B,Z.registry,(k,w,f)=>{return new d0(k,w,f)},()=>{return 0}),P,S;P=T[0],S=T[1];let q,E=Z.settings_page_model;q=new Y0(E.domain_authority_input,E.reset_confirmation,E.selected_file,E.alert,E.relay_url_input,E.plc_directory_url_input,E.jetstream_url_input,E.oauth_supported_scopes_input,E.lexicons_alert,E.show_new_client_form,E.new_client_name,E.new_client_type,E.new_client_redirect_uris,E.new_client_scope,new v,"","","",E.visible_secrets,E.delete_confirm_client_id,E.oauth_alert,E.new_admin_did,E.remove_confirm_did,E.admin_alert);let R=q;return[new l(P,Z.registry,Z.route,Z.time_range,R,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(S)]}else return[Z,i()]}else if(K instanceof BM){let X=K[0],W;if(Q4(Z.settings_page_model.visible_secrets,X))W=Ty(Z.settings_page_model.visible_secrets,X);else W=xZ(Z.settings_page_model.visible_secrets,X);let V=W,G,I=Z.settings_page_model;G=new Y0(I.domain_authority_input,I.reset_confirmation,I.selected_file,I.alert,I.relay_url_input,I.plc_directory_url_input,I.jetstream_url_input,I.oauth_supported_scopes_input,I.lexicons_alert,I.show_new_client_form,I.new_client_name,I.new_client_type,I.new_client_redirect_uris,I.new_client_scope,I.editing_client_id,I.edit_client_name,I.edit_client_redirect_uris,I.edit_client_scope,V,I.delete_confirm_client_id,I.oauth_alert,I.new_admin_did,I.remove_confirm_did,I.admin_alert);let z=G;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,z,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof OM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,new y(X),Y.oauth_alert,Y.new_admin_did,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof TM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,new v,W.oauth_alert,W.new_admin_did,W.remove_confirm_did,W.admin_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof PM){let X=Z.settings_page_model.delete_confirm_client_id;if(X instanceof y){let W=X[0],Y=b(Q([["clientId",d(W)]])),V=m0(Z.cache,"DeleteOAuthClient",Y),G=a(V,"DeleteOAuthClient",Y,zb),I;I=G[0];let z=m0(I,"GetOAuthClients",b(Q([]))),N=u0(z,Z.registry,(S,q,E)=>{return new d0(S,q,E)},()=>{return 0}),F,D;F=N[0],D=N[1];let B,T=Z.settings_page_model;B=new Y0(T.domain_authority_input,T.reset_confirmation,T.selected_file,T.alert,T.relay_url_input,T.plc_directory_url_input,T.jetstream_url_input,T.oauth_supported_scopes_input,T.lexicons_alert,T.show_new_client_form,T.new_client_name,T.new_client_type,T.new_client_redirect_uris,T.new_client_scope,T.editing_client_id,T.edit_client_name,T.edit_client_redirect_uris,T.edit_client_scope,T.visible_secrets,new v,T.oauth_alert,T.new_admin_did,T.remove_confirm_did,T.admin_alert);let P=B;return[new l(F,Z.registry,Z.route,Z.time_range,P,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(D)]}else return[Z,i()]}else if(K instanceof SM){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,X,Y.remove_confirm_did,Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof AM){let X=b(Q([])),W=a(Z.cache,"GetSettings",X,O1),Y;if(Y=W[1],Y instanceof y1){let V=Y[0],G=Z.settings_page_model.new_admin_did,I=V.settings.admin_dids,z=V.settings.domain_authority,N;if(rM(I,G))N=I;else N=_0(I,Q([G]));let D=N,B=b(Q([["domainAuthority",d(z)],["adminDids",j0(D,d)]])),T=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(z)],["adminDids",j0(D,d)]])),P=uZ(Z.cache,Z.registry,"UpdateSettings",B,"Settings:singleton",(w)=>{return T},JJ,(w,f,g)=>{if(f instanceof C)return new xM(w,g);else{let c=f[0];return new wM(w,c)}}),S,q;S=P[0],q=P[2];let E,R=Z.settings_page_model;E=new Y0(R.domain_authority_input,R.reset_confirmation,R.selected_file,R.alert,R.relay_url_input,R.plc_directory_url_input,R.jetstream_url_input,R.oauth_supported_scopes_input,R.lexicons_alert,R.show_new_client_form,R.new_client_name,R.new_client_type,R.new_client_redirect_uris,R.new_client_scope,R.editing_client_id,R.edit_client_name,R.edit_client_redirect_uris,R.edit_client_scope,R.visible_secrets,R.delete_confirm_client_id,R.oauth_alert,"",R.remove_confirm_did,R.admin_alert);let k=E;return[new l(S,Z.registry,Z.route,Z.time_range,k,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),q]}else return[Z,i()]}else if(K instanceof YJ){let X=K[0],W,Y=Z.settings_page_model;W=new Y0(Y.domain_authority_input,Y.reset_confirmation,Y.selected_file,Y.alert,Y.relay_url_input,Y.plc_directory_url_input,Y.jetstream_url_input,Y.oauth_supported_scopes_input,Y.lexicons_alert,Y.show_new_client_form,Y.new_client_name,Y.new_client_type,Y.new_client_redirect_uris,Y.new_client_scope,Y.editing_client_id,Y.edit_client_name,Y.edit_client_redirect_uris,Y.edit_client_scope,Y.visible_secrets,Y.delete_confirm_client_id,Y.oauth_alert,Y.new_admin_did,new y(X),Y.admin_alert);let V=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,V,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else if(K instanceof qM){let X,W=Z.settings_page_model;X=new Y0(W.domain_authority_input,W.reset_confirmation,W.selected_file,W.alert,W.relay_url_input,W.plc_directory_url_input,W.jetstream_url_input,W.oauth_supported_scopes_input,W.lexicons_alert,W.show_new_client_form,W.new_client_name,W.new_client_type,W.new_client_redirect_uris,W.new_client_scope,W.editing_client_id,W.edit_client_name,W.edit_client_redirect_uris,W.edit_client_scope,W.visible_secrets,W.delete_confirm_client_id,W.oauth_alert,W.new_admin_did,new v,W.admin_alert);let Y=X;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Y,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else{let X=Z.settings_page_model.remove_confirm_did;if(X instanceof y){let W=X[0],Y=b(Q([])),V=a(Z.cache,"GetSettings",Y,O1),G;if(G=V[1],G instanceof y1){let I=G[0],z=I.settings.admin_dids,N=I.settings.domain_authority,F=OJ(z,(k)=>{return k!==W}),D=b(Q([["domainAuthority",d(N)],["adminDids",j0(F,d)]])),B=b(Q([["id",d("Settings:singleton")],["domainAuthority",d(N)],["adminDids",j0(F,d)]])),T=uZ(Z.cache,Z.registry,"UpdateSettings",D,"Settings:singleton",(k)=>{return B},JJ,(k,w,f)=>{if(w instanceof C)return new xM(k,f);else{let g=w[0];return new wM(k,g)}}),P,S;P=T[0],S=T[2];let q,E=Z.settings_page_model;q=new Y0(E.domain_authority_input,E.reset_confirmation,E.selected_file,E.alert,E.relay_url_input,E.plc_directory_url_input,E.jetstream_url_input,E.oauth_supported_scopes_input,E.lexicons_alert,E.show_new_client_form,E.new_client_name,E.new_client_type,E.new_client_redirect_uris,E.new_client_scope,E.editing_client_id,E.edit_client_name,E.edit_client_redirect_uris,E.edit_client_scope,E.visible_secrets,E.delete_confirm_client_id,E.oauth_alert,E.new_admin_did,new v,E.admin_alert);let R=q;return[new l(P,Z.registry,Z.route,Z.time_range,R,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),S]}else return[Z,i()]}else return[Z,i()]}}else if(J instanceof UM){let K=J[0],X=ab(K);return[Z,MR(X,(W)=>{return new UM(W)})]}else if(J instanceof IL){let K=J[0];if(K instanceof dU){let X=K[0],W,Y,V=Z.backfill_page_model;Y=new F5(X,V.is_submitting,V.alert),W=cU(Y);let I=W;return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}else{let X=Z.backfill_page_model.did_input,W=b(Q([["did",d(X)]])),Y,V=Z.backfill_page_model,G=pU(V,!0);Y=cU(G);let I=Y,z=m0(Z.cache,"BackfillActor",W),N=a(z,"BackfillActor",W,Wb),F;F=N[0];let D=u0(F,Z.registry,(P,S,q)=>{return new d0(P,S,q)},()=>{return 0}),B,T;return B=D[0],T=D[1],[new l(B,Z.registry,Z.route,Z.time_range,Z.settings_page_model,I,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(T)]}}else if(J instanceof YL){let K=J[0];if(K instanceof C){let X=K[0];q5("[FileRead] Successfully read file, uploading...");let W=b(Q([["zipBase64",d(X)]])),Y=m0(Z.cache,"UploadLexicons",W),V=a(Y,"UploadLexicons",W,gb),G;G=V[0];let I=u0(G,Z.registry,(T,P,S)=>{return new d0(T,P,S)},()=>{return 0}),z,N;z=I[0],N=I[1];let F,D=Z.settings_page_model;F=new Y0(D.domain_authority_input,D.reset_confirmation,new v,D.alert,D.relay_url_input,D.plc_directory_url_input,D.jetstream_url_input,D.oauth_supported_scopes_input,D.lexicons_alert,D.show_new_client_form,D.new_client_name,D.new_client_type,D.new_client_redirect_uris,D.new_client_scope,D.editing_client_id,D.edit_client_name,D.edit_client_redirect_uris,D.edit_client_scope,D.visible_secrets,D.delete_confirm_client_id,D.oauth_alert,D.new_admin_did,D.remove_confirm_did,D.admin_alert);let B=F;return[new l(z,Z.registry,Z.route,Z.time_range,B,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(N)]}else{let X=K[0];q5("[FileRead] Error reading file: "+X);let W=WJ(Z.settings_page_model,"error",X);return[new l(Z.cache,Z.registry,Z.route,Z.time_range,W,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),i()]}}else if(J instanceof VJ)if($5(Z.backfill_status)){let X=_k(Z.cache,Z.registry,(V,G,I)=>{return new d0(V,G,I)}),W,Y;return W=X[0],Y=X[1],[new l(W,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,Z.login_autocomplete),Q1(Y)]}else return[Z,i()];else if(J instanceof zL)return[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,!Z.mobile_menu_open,Z.login_autocomplete),i()];else if(J instanceof IJ){let K=J[0],X=T8(Z.login_autocomplete,new zK(K)),W,Y;return W=X[0],Y=X[1],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W),MR(Y,(V)=>{if(V instanceof q4){let G=V[0];return new XL(G)}else return new IJ("")})]}else if(J instanceof MM){let K=J[0];if(K==="ArrowDown"){let X=T8(Z.login_autocomplete,new NK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W),i()]}else if(K==="ArrowUp"){let X=T8(Z.login_autocomplete,new FK),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W),i()]}else if(K==="Enter"){let X=lk(Z.login_autocomplete);if(X instanceof y){let W=X[0],Y=T8(Z.login_autocomplete,new pZ(W)),V;return V=Y[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,V),i()]}else return[Z,i()]}else if(K==="Escape"){let X=T8(Z.login_autocomplete,new nZ),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W),i()]}else return[Z,i()]}else if(J instanceof RM){let K=J[0],X,W=aM(Z.login_autocomplete.actors,(I)=>{return I.handle===K});if(W instanceof C)X=W[0];else X=new cZ("",K,"",new v);let Y=X,V=T8(Z.login_autocomplete,new pZ(Y)),G;return G=V[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,G),i()]}else if(J instanceof jM){let K=z1((X)=>{return QJ(150,()=>{return X(new Wh)})});return[Z,K]}else if(J instanceof LM){let K=T8(Z.login_autocomplete,new kj),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),i()]}else if(J instanceof XL){let K=J[0],X=T8(Z.login_autocomplete,new q4(K)),W;return W=X[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,W),i()]}else{let K=T8(Z.login_autocomplete,new nZ),X;return X=K[0],[new l(Z.cache,Z.registry,Z.route,Z.time_range,Z.settings_page_model,Z.backfill_page_model,Z.backfill_status,Z.auth_state,Z.mobile_menu_open,X),i()]}}function m_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=[!1,!1];else J=[K.is_admin,!0];let X=J,W,Y;return W=X[0],Y=X[1],bZ(ib(Z.cache,Z.time_range,Z.backfill_status,W,Y),(V)=>{return new VL(V)})}function u_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=!1;else J=K.is_admin;let X=J;return bZ(Kh(Z.cache,Z.settings_page_model,X),(W)=>{return new GL(W)})}function d_(Z){return bZ(tb(Z.cache),(J)=>{return new UM(J)})}function c_(Z){return j(Q([]),Q([_1(Q([H("text-xl font-bold text-zinc-100 mb-4")]),Q([l0("Upload")])),x0(Q([H("text-zinc-400")]),Q([l0("Upload and manage data")]))]))}function p_(Z){return bZ(db(Z.backfill_page_model),(J)=>{return new IL(J)})}function n_(Z){return ob(Z.login_autocomplete,(J)=>{return new IJ(J)},(J)=>{return new RM(J)},(J)=>{return new MM(J)},()=>{return new jM},()=>{return new LM})}function i_(Z){let J,K=Z.auth_state;if(K instanceof C8)J=new v;else{let{handle:W,is_admin:Y}=K;J=new y([W,Y])}let X=J;return j(Q([H("bg-zinc-950 text-zinc-300 font-mono min-h-screen")]),Q([j(Q([H("max-w-4xl mx-auto px-4 py-6 sm:px-6 sm:py-12")]),Q([(()=>{if(Z.route instanceof i5)return z0();else return Kb(X,$5(Z.backfill_status),Z.mobile_menu_open,new zL,Z.login_autocomplete,(Y)=>{return new IJ(Y)},(Y)=>{return new RM(Y)},(Y)=>{return new MM(Y)},()=>{return new jM},()=>{return new LM})})(),(()=>{let W=Z.route;if(W instanceof l5)return m_(Z);else if(W instanceof D5)return u_(Z);else if(W instanceof zJ)return d_(Z);else if(W instanceof WL)return c_(Z);else if(W instanceof GJ)return p_(Z);else return n_(Z)})()]))]))}function Qh(Z){let J=Z.path;if(J==="/")return new l5;else if(J==="/settings")return new D5;else if(J==="/lexicons")return new zJ;else if(J==="/upload")return new WL;else if(J==="/backfill")return new GJ;else if(J==="/onboarding")return new i5;else return new l5}function l_(Z){return new QL(Qh(Z))}function s_(Z){let J=Yh()+"/admin/graphql",K=kk(J),X=Yb(),W,Y=Bj();if(Y instanceof C){let q=Y[0];W=Qh(q)}else W=new l5;let V=W,G=a(K,"GetCurrentSession",b(Q([])),dj),I;I=G[0];let z=a(I,"IsBackfilling",b(Q([])),dZ),N;N=z[0];let F;if(V instanceof l5){let q=a(N,"GetStatistics",b(Q([])),N5),E;E=q[0];let R=a(E,"GetSettings",b(Q([])),O1),k;k=R[0];let w=a(k,"GetActivityBuckets",b(Q([["range",d("ONE_DAY")]])),d5),f;f=w[0];let g=a(f,"GetRecentActivity",b(Q([["hours",W1(24)]])),OZ),c;c=g[0];let n=u0(c,X,(E0,k0,G0)=>{return new d0(E0,k0,G0)},()=>{return 0}),r,Q0;r=n[0],Q0=n[1],F=[r,Q0]}else if(V instanceof D5){let q=a(N,"GetSettings",b(Q([])),O1),E;E=q[0];let R=a(E,"GetOAuthClients",b(Q([])),d8),k;k=R[0];let w=u0(k,X,(c,n,r)=>{return new d0(c,n,r)},()=>{return 0}),f,g;f=w[0],g=w[1],F=[f,g]}else if(V instanceof zJ){let q=a(N,"GetLexicons",b(Q([])),ZJ),E;E=q[0];let R=u0(E,X,(f,g,c)=>{return new d0(f,g,c)},()=>{return 0}),k,w;k=R[0],w=R[1],F=[k,w]}else F=[N,Q([])];let D=F,B,T;B=D[0],T=D[1];let P=Vk(l_),S=Q1(A(P,T));return[new l(B,X,V,new u5,Jh(),ub(),new IK,new C8,!1,ik()),S]}function Vh(){let Z=tf(s_,__,i_),J=of(Z,"#app",void 0);if(!(J instanceof C))throw c8("let_assert",g_,"quickslice_client",120,"main","Pattern match failed, no pattern matched the value.",{value:J,start:3346,end:3395,pattern_start:3357,pattern_end:3362});return J}Vh();
+16 -16
server/src/backfill.gleam
··· 1 1 import car/car 2 2 import car/cid 3 3 import database/repositories/actors 4 + import database/repositories/config as config_repo 4 5 import database/repositories/lexicons 5 6 import database/repositories/records 6 7 import database/types.{type Record, Record} ··· 58 59 } 59 60 60 61 /// Creates a default backfill configuration 61 - pub fn default_config() -> BackfillConfig { 62 - // Get PLC directory URL from environment variable or use default 63 - let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 64 - Ok(url) -> url 65 - Error(_) -> "https://plc.directory" 66 - } 62 + pub fn default_config(db: sqlight.Connection) -> BackfillConfig { 63 + // Get PLC directory URL from database config 64 + let plc_url = config_repo.get_plc_directory_url(db) 67 65 68 66 // Get max concurrent per PDS from environment or use default of 4 69 67 let max_pds_concurrent = case envoy.get("BACKFILL_PDS_CONCURRENCY") { ··· 124 122 } 125 123 126 124 /// Creates a backfill configuration with a DID cache 127 - pub fn config_with_cache(cache: Subject(did_cache.Message)) -> BackfillConfig { 128 - let config = default_config() 125 + pub fn config_with_cache( 126 + cache: Subject(did_cache.Message), 127 + db: sqlight.Connection, 128 + ) -> BackfillConfig { 129 + let config = default_config(db) 129 130 BackfillConfig(..config, did_cache: Some(cache)) 130 131 } 131 132 ··· 1175 1176 /// Fetch repos that have records for a specific collection from the relay with pagination 1176 1177 fn fetch_repos_for_collection( 1177 1178 collection: String, 1179 + db: sqlight.Connection, 1178 1180 ) -> Result(List(String), String) { 1179 - fetch_repos_paginated(collection, None, []) 1181 + fetch_repos_paginated(collection, None, [], db) 1180 1182 } 1181 1183 1182 1184 /// Helper function for paginated repo fetching ··· 1184 1186 collection: String, 1185 1187 cursor: Option(String), 1186 1188 acc: List(String), 1189 + db: sqlight.Connection, 1187 1190 ) -> Result(List(String), String) { 1188 - // Get relay URL from environment variable or use default 1189 - let relay_url = case envoy.get("RELAY_URL") { 1190 - Ok(url) -> url 1191 - Error(_) -> "https://relay1.us-west.bsky.network" 1192 - } 1191 + // Get relay URL from database config 1192 + let relay_url = config_repo.get_relay_url(db) 1193 1193 1194 1194 // Build URL with large limit and cursor 1195 1195 let base_url = ··· 1217 1217 let new_acc = list.append(acc, repos) 1218 1218 case next_cursor { 1219 1219 Some(c) -> 1220 - fetch_repos_paginated(collection, Some(c), new_acc) 1220 + fetch_repos_paginated(collection, Some(c), new_acc, db) 1221 1221 None -> { 1222 1222 logging.log( 1223 1223 logging.Info, ··· 1347 1347 let fetched_repos = 1348 1348 collections 1349 1349 |> list.filter_map(fn(collection) { 1350 - case fetch_repos_for_collection(collection) { 1350 + case fetch_repos_for_collection(collection, conn) { 1351 1351 Ok(repos) -> Ok(repos) 1352 1352 Error(err) -> { 1353 1353 logging.log(logging.Error, "[backfill] " <> err)
+378 -29
server/src/client_schema.gleam
··· 12 12 import database/repositories/oauth_clients 13 13 import database/repositories/records 14 14 import database/types.{type ActivityBucket, type ActivityEntry, type Lexicon} 15 - import envoy 16 15 import gleam/erlang/process.{type Subject} 17 16 import gleam/list 18 17 import gleam/option.{type Option, None, Some} ··· 21 20 import importer 22 21 import jetstream_consumer 23 22 import lib/oauth/did_cache 23 + import lib/oauth/scopes/validator as scope_validator 24 24 import lib/oauth/token_generator 25 25 import lib/oauth/validator 26 26 import logging ··· 400 400 } 401 401 }, 402 402 ), 403 + schema.field( 404 + "relayUrl", 405 + schema.non_null(schema.string_type()), 406 + "AT Protocol relay URL for backfill operations", 407 + fn(ctx) { 408 + case ctx.data { 409 + Some(value.Object(fields)) -> { 410 + case list.key_find(fields, "relayUrl") { 411 + Ok(url) -> Ok(url) 412 + Error(_) -> Ok(value.Null) 413 + } 414 + } 415 + _ -> Ok(value.Null) 416 + } 417 + }, 418 + ), 419 + schema.field( 420 + "plcDirectoryUrl", 421 + schema.non_null(schema.string_type()), 422 + "PLC directory URL for DID resolution", 423 + fn(ctx) { 424 + case ctx.data { 425 + Some(value.Object(fields)) -> { 426 + case list.key_find(fields, "plcDirectoryUrl") { 427 + Ok(url) -> Ok(url) 428 + Error(_) -> Ok(value.Null) 429 + } 430 + } 431 + _ -> Ok(value.Null) 432 + } 433 + }, 434 + ), 435 + schema.field( 436 + "jetstreamUrl", 437 + schema.non_null(schema.string_type()), 438 + "Jetstream WebSocket endpoint for real-time indexing", 439 + fn(ctx) { 440 + case ctx.data { 441 + Some(value.Object(fields)) -> { 442 + case list.key_find(fields, "jetstreamUrl") { 443 + Ok(url) -> Ok(url) 444 + Error(_) -> Ok(value.Null) 445 + } 446 + } 447 + _ -> Ok(value.Null) 448 + } 449 + }, 450 + ), 451 + schema.field( 452 + "oauthSupportedScopes", 453 + schema.non_null(schema.string_type()), 454 + "Space-separated OAuth scopes supported by this server", 455 + fn(ctx) { 456 + case ctx.data { 457 + Some(value.Object(fields)) -> { 458 + case list.key_find(fields, "oauthSupportedScopes") { 459 + Ok(scopes) -> Ok(scopes) 460 + Error(_) -> Ok(value.Null) 461 + } 462 + } 463 + _ -> Ok(value.Null) 464 + } 465 + }, 466 + ), 403 467 ]) 404 468 } 405 469 ··· 686 750 fn settings_to_value( 687 751 domain_authority: String, 688 752 admin_dids: List(String), 753 + relay_url: String, 754 + plc_directory_url: String, 755 + jetstream_url: String, 756 + oauth_supported_scopes: String, 689 757 ) -> value.Value { 690 758 value.Object([ 691 759 #("id", value.String("Settings:singleton")), 692 760 #("domainAuthority", value.String(domain_authority)), 693 761 #("adminDids", value.List(list.map(admin_dids, value.String))), 762 + #("relayUrl", value.String(relay_url)), 763 + #("plcDirectoryUrl", value.String(plc_directory_url)), 764 + #("jetstreamUrl", value.String(jetstream_url)), 765 + #("oauthSupportedScopes", value.String(oauth_supported_scopes)), 694 766 ]) 695 767 } 696 768 ··· 778 850 Error(_) -> "" 779 851 } 780 852 let admin_dids = config_repo.get_admin_dids(conn) 853 + let relay_url = config_repo.get_relay_url(conn) 854 + let plc_directory_url = config_repo.get_plc_directory_url(conn) 855 + let jetstream_url = config_repo.get_jetstream_url(conn) 856 + let oauth_supported_scopes = 857 + config_repo.get_oauth_supported_scopes(conn) 781 858 782 - Ok(settings_to_value(domain_authority, admin_dids)) 859 + Ok(settings_to_value( 860 + domain_authority, 861 + admin_dids, 862 + relay_url, 863 + plc_directory_url, 864 + jetstream_url, 865 + oauth_supported_scopes, 866 + )) 783 867 }, 784 868 ), 785 869 // isBackfilling query ··· 944 1028 "New admin DIDs list (optional)", 945 1029 None, 946 1030 ), 1031 + schema.argument( 1032 + "relayUrl", 1033 + schema.string_type(), 1034 + "New relay URL (optional)", 1035 + None, 1036 + ), 1037 + schema.argument( 1038 + "plcDirectoryUrl", 1039 + schema.string_type(), 1040 + "New PLC directory URL (optional)", 1041 + None, 1042 + ), 1043 + schema.argument( 1044 + "jetstreamUrl", 1045 + schema.string_type(), 1046 + "New Jetstream URL (optional)", 1047 + None, 1048 + ), 1049 + schema.argument( 1050 + "oauthSupportedScopes", 1051 + schema.string_type(), 1052 + "New OAuth supported scopes space-separated (optional)", 1053 + None, 1054 + ), 947 1055 ], 948 1056 fn(ctx) { 949 1057 // Check admin privileges ··· 958 1066 schema.get_argument(ctx, "domainAuthority") 959 1067 { 960 1068 Some(value.String(authority)) -> { 961 - case config_repo.set(conn, "domain_authority", authority) { 962 - Ok(_) -> { 963 - // Restart Jetstream consumer 964 - case jetstream_subject { 965 - Some(consumer) -> { 966 - logging.log( 967 - logging.Info, 968 - "[updateSettings] Restarting Jetstream consumer...", 969 - ) 970 - let _ = jetstream_consumer.restart(consumer) 971 - Nil 1069 + // Validate not empty 1070 + case string.trim(authority) { 1071 + "" -> Error("Domain authority cannot be empty") 1072 + trimmed_authority -> { 1073 + case 1074 + config_repo.set( 1075 + conn, 1076 + "domain_authority", 1077 + trimmed_authority, 1078 + ) 1079 + { 1080 + Ok(_) -> { 1081 + // Restart Jetstream consumer 1082 + case jetstream_subject { 1083 + Some(consumer) -> { 1084 + logging.log( 1085 + logging.Info, 1086 + "[updateSettings] Restarting Jetstream consumer...", 1087 + ) 1088 + let _ = jetstream_consumer.restart(consumer) 1089 + Nil 1090 + } 1091 + None -> Nil 1092 + } 1093 + Ok(Nil) 972 1094 } 973 - None -> Nil 1095 + Error(_) -> Error("Failed to update domain authority") 974 1096 } 975 - Ok(Nil) 976 1097 } 977 - Error(_) -> Error("Failed to update domain authority") 978 1098 } 979 1099 } 980 1100 _ -> Ok(Nil) ··· 1030 1150 case admin_dids_result { 1031 1151 Error(err) -> Error(err) 1032 1152 Ok(_) -> { 1033 - // Return updated settings 1034 - let final_authority = case 1035 - config_repo.get(conn, "domain_authority") 1153 + // Update relay URL if provided 1154 + let relay_url_result = case 1155 + schema.get_argument(ctx, "relayUrl") 1036 1156 { 1037 - Ok(a) -> a 1038 - Error(_) -> "" 1157 + Some(value.String(url)) -> { 1158 + case string.trim(url) { 1159 + "" -> Error("Relay URL cannot be empty") 1160 + trimmed_url -> { 1161 + case 1162 + config_repo.set_relay_url(conn, trimmed_url) 1163 + { 1164 + Ok(_) -> Ok(Nil) 1165 + Error(_) -> 1166 + Error("Failed to update relay URL") 1167 + } 1168 + } 1169 + } 1170 + } 1171 + _ -> Ok(Nil) 1172 + } 1173 + 1174 + case relay_url_result { 1175 + Error(err) -> Error(err) 1176 + Ok(_) -> { 1177 + // Update PLC directory URL if provided 1178 + let plc_url_result = case 1179 + schema.get_argument(ctx, "plcDirectoryUrl") 1180 + { 1181 + Some(value.String(url)) -> { 1182 + case string.trim(url) { 1183 + "" -> 1184 + Error("PLC directory URL cannot be empty") 1185 + trimmed_url -> { 1186 + case 1187 + config_repo.set_plc_directory_url( 1188 + conn, 1189 + trimmed_url, 1190 + ) 1191 + { 1192 + Ok(_) -> Ok(True) 1193 + Error(_) -> 1194 + Error( 1195 + "Failed to update PLC directory URL", 1196 + ) 1197 + } 1198 + } 1199 + } 1200 + } 1201 + _ -> Ok(False) 1202 + } 1203 + 1204 + case plc_url_result { 1205 + Error(err) -> Error(err) 1206 + Ok(plc_changed) -> { 1207 + // Restart Jetstream if PLC URL changed 1208 + case plc_changed { 1209 + True -> { 1210 + case jetstream_subject { 1211 + Some(consumer) -> { 1212 + logging.log( 1213 + logging.Info, 1214 + "[updateSettings] Restarting Jetstream consumer due to PLC URL change", 1215 + ) 1216 + case 1217 + jetstream_consumer.restart(consumer) 1218 + { 1219 + Ok(_) -> 1220 + logging.log( 1221 + logging.Info, 1222 + "[updateSettings] Jetstream consumer restarted", 1223 + ) 1224 + Error(err) -> 1225 + logging.log( 1226 + logging.Error, 1227 + "[updateSettings] Failed to restart Jetstream: " 1228 + <> err, 1229 + ) 1230 + } 1231 + } 1232 + None -> Nil 1233 + } 1234 + } 1235 + False -> Nil 1236 + } 1237 + // Update Jetstream URL if provided and restart consumer 1238 + let jetstream_url_result = case 1239 + schema.get_argument(ctx, "jetstreamUrl") 1240 + { 1241 + Some(value.String(url)) -> { 1242 + case string.trim(url) { 1243 + "" -> 1244 + Error("Jetstream URL cannot be empty") 1245 + trimmed_url -> { 1246 + case 1247 + config_repo.set_jetstream_url( 1248 + conn, 1249 + trimmed_url, 1250 + ) 1251 + { 1252 + Ok(_) -> Ok(True) 1253 + Error(_) -> 1254 + Error( 1255 + "Failed to update Jetstream URL", 1256 + ) 1257 + } 1258 + } 1259 + } 1260 + } 1261 + _ -> Ok(False) 1262 + } 1263 + 1264 + case jetstream_url_result { 1265 + Error(err) -> Error(err) 1266 + Ok(jetstream_url_changed) -> { 1267 + // If Jetstream URL changed, restart consumer 1268 + case jetstream_url_changed { 1269 + True -> { 1270 + case jetstream_subject { 1271 + Some(consumer) -> { 1272 + logging.log( 1273 + logging.Info, 1274 + "[updateSettings] Restarting Jetstream consumer due to URL change", 1275 + ) 1276 + case 1277 + jetstream_consumer.restart( 1278 + consumer, 1279 + ) 1280 + { 1281 + Ok(_) -> 1282 + logging.log( 1283 + logging.Info, 1284 + "[updateSettings] Jetstream consumer restarted", 1285 + ) 1286 + Error(err) -> 1287 + logging.log( 1288 + logging.Error, 1289 + "[updateSettings] Failed to restart Jetstream: " 1290 + <> err, 1291 + ) 1292 + } 1293 + } 1294 + None -> Nil 1295 + } 1296 + } 1297 + False -> Nil 1298 + } 1299 + 1300 + // Update OAuth supported scopes if provided (with validation) 1301 + let oauth_scopes_result = case 1302 + schema.get_argument( 1303 + ctx, 1304 + "oauthSupportedScopes", 1305 + ) 1306 + { 1307 + Some(value.String(scopes)) -> { 1308 + case string.trim(scopes) { 1309 + "" -> 1310 + Error( 1311 + "OAuth supported scopes cannot be empty", 1312 + ) 1313 + trimmed_scopes -> { 1314 + // Validate scope format (accepts any valid ATProto scope) 1315 + case 1316 + scope_validator.validate_scope_format( 1317 + trimmed_scopes, 1318 + ) 1319 + { 1320 + Ok(_) -> { 1321 + // Validation passed, save to database 1322 + case 1323 + config_repo.set_oauth_supported_scopes( 1324 + conn, 1325 + trimmed_scopes, 1326 + ) 1327 + { 1328 + Ok(_) -> Ok(Nil) 1329 + Error(_) -> 1330 + Error( 1331 + "Failed to save OAuth scopes", 1332 + ) 1333 + } 1334 + } 1335 + Error(err) -> { 1336 + logging.log( 1337 + logging.Error, 1338 + "[updateSettings] Invalid OAuth scope: " 1339 + <> string.inspect(err), 1340 + ) 1341 + Error("Invalid OAuth scope") 1342 + } 1343 + } 1344 + } 1345 + } 1346 + } 1347 + _ -> Ok(Nil) 1348 + } 1349 + 1350 + case oauth_scopes_result { 1351 + Error(err) -> Error(err) 1352 + Ok(_) -> { 1353 + // Return updated settings 1354 + let final_authority = case 1355 + config_repo.get( 1356 + conn, 1357 + "domain_authority", 1358 + ) 1359 + { 1360 + Ok(a) -> a 1361 + Error(_) -> "" 1362 + } 1363 + let final_admin_dids = 1364 + config_repo.get_admin_dids(conn) 1365 + let final_relay_url = 1366 + config_repo.get_relay_url(conn) 1367 + let final_plc_directory_url = 1368 + config_repo.get_plc_directory_url( 1369 + conn, 1370 + ) 1371 + let final_jetstream_url = 1372 + config_repo.get_jetstream_url(conn) 1373 + let final_oauth_scopes = 1374 + config_repo.get_oauth_supported_scopes( 1375 + conn, 1376 + ) 1377 + 1378 + Ok(settings_to_value( 1379 + final_authority, 1380 + final_admin_dids, 1381 + final_relay_url, 1382 + final_plc_directory_url, 1383 + final_jetstream_url, 1384 + final_oauth_scopes, 1385 + )) 1386 + } 1387 + } 1388 + } 1389 + } 1390 + } 1391 + } 1392 + } 1039 1393 } 1040 - let final_admin_dids = config_repo.get_admin_dids(conn) 1041 - Ok(settings_to_value(final_authority, final_admin_dids)) 1042 1394 } 1043 1395 } 1044 1396 } ··· 1215 1567 }) 1216 1568 1217 1569 // Run backfill with default config and empty repo list (fetches from relay) 1218 - let config = backfill.default_config() 1570 + let config = backfill.default_config(conn) 1219 1571 backfill.backfill_collections( 1220 1572 [], 1221 1573 primary_collections, ··· 1288 1640 ) 1289 1641 }) 1290 1642 1291 - // Get PLC URL from environment 1292 - let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 1293 - Ok(url) -> url 1294 - Error(_) -> "https://plc.directory" 1295 - } 1643 + // Get PLC URL from database config 1644 + let plc_url = config_repo.get_plc_directory_url(conn) 1296 1645 1297 1646 // Spawn background process to run backfill for this actor 1298 1647 process.spawn_unlinked(fn() {
-97
server/src/config.gleam
··· 1 - import database/repositories/config as config_repo 2 - import gleam/erlang/process 3 - import gleam/option.{type Option, None, Some} 4 - import gleam/otp/actor 5 - import logging 6 - import sqlight 7 - 8 - // ===== Config Cache Actor ===== 9 - 10 - pub type ConfigCache { 11 - ConfigCache(domain_authority: Option(String)) 12 - } 13 - 14 - pub type Message { 15 - GetDomainAuthority(reply_with: process.Subject(Option(String))) 16 - SetDomainAuthority(value: String, reply_with: process.Subject(Nil)) 17 - Reload(db: sqlight.Connection, reply_with: process.Subject(Nil)) 18 - } 19 - 20 - fn handle_message( 21 - state: ConfigCache, 22 - message: Message, 23 - ) -> actor.Next(ConfigCache, Message) { 24 - case message { 25 - GetDomainAuthority(client) -> { 26 - process.send(client, state.domain_authority) 27 - actor.continue(state) 28 - } 29 - SetDomainAuthority(value, client) -> { 30 - process.send(client, Nil) 31 - actor.continue(ConfigCache(domain_authority: Some(value))) 32 - } 33 - Reload(db, client) -> { 34 - let new_state = case config_repo.get(db, "domain_authority") { 35 - Ok(value) -> ConfigCache(domain_authority: Some(value)) 36 - Error(_) -> ConfigCache(domain_authority: None) 37 - } 38 - process.send(client, Nil) 39 - actor.continue(new_state) 40 - } 41 - } 42 - } 43 - 44 - /// Start the config cache actor 45 - pub fn start( 46 - db: sqlight.Connection, 47 - ) -> Result(process.Subject(Message), actor.StartError) { 48 - // Load initial domain authority from database 49 - let initial_state = case config_repo.get(db, "domain_authority") { 50 - Ok(value) -> ConfigCache(domain_authority: Some(value)) 51 - Error(_) -> { 52 - logging.log( 53 - logging.Info, 54 - "[config] No domain_authority found in database", 55 - ) 56 - ConfigCache(domain_authority: None) 57 - } 58 - } 59 - 60 - let result = 61 - actor.new(initial_state) 62 - |> actor.on_message(handle_message) 63 - |> actor.start 64 - 65 - case result { 66 - Ok(started) -> Ok(started.data) 67 - Error(err) -> Error(err) 68 - } 69 - } 70 - 71 - /// Get the current domain authority from cache 72 - pub fn get_domain_authority(config: process.Subject(Message)) -> Option(String) { 73 - actor.call(config, waiting: 100, sending: GetDomainAuthority) 74 - } 75 - 76 - /// Set the domain authority (updates both database and cache) 77 - pub fn set_domain_authority( 78 - config: process.Subject(Message), 79 - db: sqlight.Connection, 80 - value: String, 81 - ) -> Result(Nil, sqlight.Error) { 82 - // Update database first 83 - case config_repo.set(db, "domain_authority", value) { 84 - Ok(_) -> { 85 - // Update cache 86 - actor.call(config, waiting: 100, sending: SetDomainAuthority(value, _)) 87 - logging.log(logging.Info, "[config] Updated domain_authority: " <> value) 88 - Ok(Nil) 89 - } 90 - Error(err) -> Error(err) 91 - } 92 - } 93 - 94 - /// Reload config from database (useful after external updates) 95 - pub fn reload(config: process.Subject(Message), db: sqlight.Connection) -> Nil { 96 - actor.call(config, waiting: 100, sending: Reload(db, _)) 97 - }
+150
server/src/database/repositories/config.gleam
··· 1 + import gleam/dict.{type Dict} 1 2 import gleam/dynamic/decode 2 3 import gleam/list 3 4 import gleam/result 4 5 import gleam/string 5 6 import sqlight 7 + 8 + // ===== Default Values ===== 9 + 10 + pub const default_relay_url = "https://relay1.us-west.bsky.network" 11 + 12 + pub const default_plc_directory_url = "https://plc.directory" 13 + 14 + pub const default_jetstream_url = "wss://jetstream2.us-west.bsky.network/subscribe" 15 + 16 + pub const default_oauth_supported_scopes = "atproto transition:generic" 6 17 7 18 // ===== Config Functions ===== 8 19 ··· 34 45 -1, 35 46 )) 36 47 Error(err) -> Error(err) 48 + } 49 + } 50 + 51 + /// Get all config values as a dictionary 52 + pub fn get_all(conn: sqlight.Connection) -> Dict(String, String) { 53 + let sql = "SELECT key, value FROM config" 54 + 55 + let decoder = { 56 + use key <- decode.field(0, decode.string) 57 + use value <- decode.field(1, decode.string) 58 + decode.success(#(key, value)) 59 + } 60 + 61 + case sqlight.query(sql, on: conn, with: [], expecting: decoder) { 62 + Ok(rows) -> dict.from_list(rows) 63 + Error(_) -> dict.new() 37 64 } 38 65 } 39 66 ··· 169 196 _ -> True 170 197 } 171 198 } 199 + 200 + // ===== External Services Configuration ===== 201 + 202 + /// Get relay URL from config, with default fallback 203 + pub fn get_relay_url(conn: sqlight.Connection) -> String { 204 + case get(conn, "relay_url") { 205 + Ok(url) -> url 206 + Error(_) -> default_relay_url 207 + } 208 + } 209 + 210 + /// Get PLC directory URL from config, with default fallback 211 + pub fn get_plc_directory_url(conn: sqlight.Connection) -> String { 212 + case get(conn, "plc_directory_url") { 213 + Ok(url) -> url 214 + Error(_) -> default_plc_directory_url 215 + } 216 + } 217 + 218 + /// Get Jetstream URL from config, with default fallback 219 + pub fn get_jetstream_url(conn: sqlight.Connection) -> String { 220 + case get(conn, "jetstream_url") { 221 + Ok(url) -> url 222 + Error(_) -> default_jetstream_url 223 + } 224 + } 225 + 226 + /// Get OAuth supported scopes from config, with default fallback 227 + /// Returns space-separated string 228 + pub fn get_oauth_supported_scopes(conn: sqlight.Connection) -> String { 229 + case get(conn, "oauth_supported_scopes") { 230 + Ok(scopes) -> scopes 231 + Error(_) -> default_oauth_supported_scopes 232 + } 233 + } 234 + 235 + /// Parse OAuth supported scopes into List(String) 236 + pub fn get_oauth_supported_scopes_list(conn: sqlight.Connection) -> List(String) { 237 + let scopes_str = get_oauth_supported_scopes(conn) 238 + scopes_str 239 + |> string.split(" ") 240 + |> list.map(string.trim) 241 + |> list.filter(fn(s) { !string.is_empty(s) }) 242 + } 243 + 244 + /// Set relay URL 245 + pub fn set_relay_url( 246 + conn: sqlight.Connection, 247 + url: String, 248 + ) -> Result(Nil, sqlight.Error) { 249 + set(conn, "relay_url", url) 250 + } 251 + 252 + /// Set PLC directory URL 253 + pub fn set_plc_directory_url( 254 + conn: sqlight.Connection, 255 + url: String, 256 + ) -> Result(Nil, sqlight.Error) { 257 + set(conn, "plc_directory_url", url) 258 + } 259 + 260 + /// Set Jetstream URL 261 + pub fn set_jetstream_url( 262 + conn: sqlight.Connection, 263 + url: String, 264 + ) -> Result(Nil, sqlight.Error) { 265 + set(conn, "jetstream_url", url) 266 + } 267 + 268 + /// Set OAuth supported scopes (space-separated string) 269 + pub fn set_oauth_supported_scopes( 270 + conn: sqlight.Connection, 271 + scopes: String, 272 + ) -> Result(Nil, sqlight.Error) { 273 + set(conn, "oauth_supported_scopes", scopes) 274 + } 275 + 276 + /// Initialize config with defaults if not already set 277 + /// Should be called once during server startup 278 + pub fn initialize_config_defaults( 279 + conn: sqlight.Connection, 280 + ) -> Result(Nil, sqlight.Error) { 281 + // Only set if the key doesn't exist (don't overwrite user settings) 282 + 283 + // Relay URL 284 + case get(conn, "relay_url") { 285 + Error(_) -> { 286 + let _ = set(conn, "relay_url", default_relay_url) 287 + Nil 288 + } 289 + Ok(_) -> Nil 290 + } 291 + 292 + // PLC Directory URL 293 + case get(conn, "plc_directory_url") { 294 + Error(_) -> { 295 + let _ = set(conn, "plc_directory_url", default_plc_directory_url) 296 + Nil 297 + } 298 + Ok(_) -> Nil 299 + } 300 + 301 + // Jetstream URL 302 + case get(conn, "jetstream_url") { 303 + Error(_) -> { 304 + let _ = set(conn, "jetstream_url", default_jetstream_url) 305 + Nil 306 + } 307 + Ok(_) -> Nil 308 + } 309 + 310 + // OAuth Supported Scopes 311 + case get(conn, "oauth_supported_scopes") { 312 + Error(_) -> { 313 + let _ = 314 + set(conn, "oauth_supported_scopes", default_oauth_supported_scopes) 315 + Nil 316 + } 317 + Ok(_) -> Nil 318 + } 319 + 320 + Ok(Nil) 321 + }
+5 -6
server/src/graphql_gleam.gleam
··· 3 3 /// This module provides GraphQL schema building and query execution 4 4 import atproto_auth 5 5 import backfill 6 - import config 7 6 import cursor 8 7 import database/queries/aggregates 9 8 import database/queries/pagination 10 9 import database/repositories/actors 10 + import database/repositories/config as config_repo 11 11 import database/repositories/lexicons 12 12 import database/repositories/records 13 13 import database/types ··· 492 492 signing_key: option.Option(String), 493 493 plc_url: String, 494 494 ) -> Result(String, String) { 495 - // Start config cache actor to get domain authority 496 - let assert Ok(config_subject) = config.start(db) 497 - let domain_authority = case config.get_domain_authority(config_subject) { 498 - option.Some(authority) -> authority 499 - option.None -> "" 495 + // Get domain authority from database 496 + let domain_authority = case config_repo.get(db, "domain_authority") { 497 + Ok(authority) -> authority 498 + Error(_) -> "" 500 499 } 501 500 502 501 // Build the schema
+3 -8
server/src/handlers/settings.gleam
··· 1 1 import admin_session as session 2 - import config 3 2 import database/repositories/actors 4 3 import database/repositories/config as config_repo 5 4 import database/repositories/lexicons ··· 23 22 pub type Context { 24 23 Context( 25 24 db: sqlight.Connection, 26 - config: process.Subject(config.Message), 27 25 jetstream_consumer: option.Option( 28 26 process.Subject(jetstream_consumer.ManagerMessage), 29 27 ), ··· 93 91 // Validate domain authority format 94 92 case validate_domain_authority(domain_authority) { 95 93 Ok(_) -> { 96 - // Save domain_authority to database and update cache 94 + // Save domain_authority to database 97 95 case 98 - config.set_domain_authority( 99 - ctx.config, 96 + config_repo.set( 100 97 ctx.db, 98 + "domain_authority", 101 99 domain_authority, 102 100 ) 103 101 { ··· 363 361 364 362 case domain_result, lexicons_result, records_result, actors_result { 365 363 Ok(_), Ok(_), Ok(_), Ok(_) -> { 366 - // Reload config cache 367 - let _ = config.reload(ctx.config, ctx.db) 368 - 369 364 // Restart Jetstream consumer if it exists 370 365 let restart_message = case ctx.jetstream_consumer { 371 366 option.Some(consumer) -> {
+9 -18
server/src/jetstream_consumer.gleam
··· 1 1 import backfill 2 - import config 3 2 import database/jetstream 3 + import database/repositories/config as config_repo 4 4 import database/repositories/lexicons 5 5 import envoy 6 6 import event_handler ··· 559 559 logging.log(logging.Info, "") 560 560 logging.log(logging.Info, "[jetstream] Starting Jetstream consumer...") 561 561 562 - // Get PLC directory URL from environment variable or use default 563 - let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 564 - Ok(url) -> url 565 - Error(_) -> "https://plc.directory" 566 - } 567 - 568 - // Start config cache actor to get domain authority 569 - let assert Ok(config_subject) = config.start(db) 562 + // Get PLC directory URL from database config 563 + let plc_url = config_repo.get_plc_directory_url(db) 570 564 571 - // Get domain authority from config 572 - let domain_authority = case config.get_domain_authority(config_subject) { 573 - option.Some(authority) -> authority 574 - option.None -> "" 565 + // Get domain authority from database 566 + let domain_authority = case config_repo.get(db, "domain_authority") { 567 + Ok(authority) -> authority 568 + Error(_) -> "" 575 569 } 576 570 577 571 // Get all record-type lexicons from the database ··· 629 623 } 630 624 } 631 625 632 - // Get Jetstream URL from environment variable or use default 633 - let jetstream_url = case envoy.get("JETSTREAM_URL") { 634 - Ok(url) -> url 635 - Error(_) -> "wss://jetstream2.us-west.bsky.network/subscribe" 636 - } 626 + // Get Jetstream URL from database config 627 + let jetstream_url = config_repo.get_jetstream_url(db) 637 628 638 629 // Check if cursor tracking is disabled via environment variable 639 630 let disable_cursor = case envoy.get("JETSTREAM_DISABLE_CURSOR") {
+53 -1
server/src/lib/mcp/tools/capabilities.gleam
··· 1 + import database/repositories/config 1 2 import database/repositories/lexicons 3 + import database/repositories/records 4 + import gleam/dict 2 5 import gleam/json 6 + import gleam/list 7 + import gleam/option.{None, Some} 3 8 import gleam/result 9 + import gleam/string 4 10 import sqlight 5 11 6 12 /// Get server capabilities 7 13 pub fn get_server_capabilities( 8 14 db: sqlight.Connection, 9 15 ) -> Result(json.Json, String) { 10 - // Get lexicon count for status 16 + // Get counts for status 11 17 let lexicon_count = 12 18 lexicons.get_count(db) 13 19 |> result.unwrap(0) 20 + let record_count = 21 + records.get_count(db) 22 + |> result.unwrap(0) 23 + 24 + // Get all config values in a single query 25 + let cfg = config.get_all(db) 26 + 27 + let relay_url = 28 + dict.get(cfg, "relay_url") 29 + |> result.unwrap(config.default_relay_url) 30 + let jetstream_url = 31 + dict.get(cfg, "jetstream_url") 32 + |> result.unwrap(config.default_jetstream_url) 33 + let plc_directory_url = 34 + dict.get(cfg, "plc_directory_url") 35 + |> result.unwrap(config.default_plc_directory_url) 36 + let oauth_supported_scopes = 37 + dict.get(cfg, "oauth_supported_scopes") 38 + |> result.unwrap(config.default_oauth_supported_scopes) 39 + let admin_dids = case dict.get(cfg, "admin_dids") { 40 + Ok(value) -> 41 + value 42 + |> string.split(",") 43 + |> list.map(string.trim) 44 + |> list.filter(fn(did) { !string.is_empty(did) }) 45 + Error(_) -> [] 46 + } 47 + let domain_authority = case dict.get(cfg, "domain_authority") { 48 + Ok(value) -> Some(value) 49 + Error(_) -> None 50 + } 14 51 15 52 Ok( 16 53 json.object([ ··· 27 64 #( 28 65 "status", 29 66 json.object([ 67 + #("recordCount", json.int(record_count)), 30 68 #("lexiconCount", json.int(lexicon_count)), 31 69 #("databaseConnected", json.bool(True)), 70 + ]), 71 + ), 72 + #( 73 + "config", 74 + json.object([ 75 + #("relayUrl", json.string(relay_url)), 76 + #("jetstreamUrl", json.string(jetstream_url)), 77 + #("plcDirectoryUrl", json.string(plc_directory_url)), 78 + #("oauthSupportedScopes", json.string(oauth_supported_scopes)), 79 + #("adminDids", json.array(admin_dids, json.string)), 80 + #("domainAuthority", case domain_authority { 81 + Some(value) -> json.string(value) 82 + None -> json.null() 83 + }), 32 84 ]), 33 85 ), 34 86 ]),
+26 -74
server/src/server.gleam
··· 2 2 import argv 3 3 import backfill 4 4 import backfill_state 5 - import config 6 5 import database/connection 6 + import database/repositories/config as config_repo 7 7 import database/repositories/lexicons 8 8 import dotenv_gleam 9 9 import envoy ··· 39 39 import importer 40 40 import jetstream_consumer 41 41 import lib/oauth/did_cache 42 - import lib/oauth/scopes/validator as scope_validator 43 - import lib/oauth/types/error 44 42 import logging 45 43 import mist 46 44 import pubsub ··· 53 51 Context( 54 52 db: sqlight.Connection, 55 53 external_base_url: String, 56 - plc_url: String, 57 54 backfill_state: process.Subject(backfill_state.Message), 58 - config: process.Subject(config.Message), 59 55 jetstream_consumer: option.Option( 60 56 process.Subject(jetstream_consumer.ManagerMessage), 61 57 ), 62 58 did_cache: process.Subject(did_cache.Message), 63 59 oauth_signing_key: option.Option(String), 64 - oauth_supported_scopes: List(String), 65 60 oauth_loopback_mode: Bool, 66 61 ) 67 62 } ··· 135 130 // Initialize the database 136 131 let assert Ok(db) = connection.initialize(database_url) 137 132 138 - // Start config cache actor 139 - let assert Ok(config_subject) = config.start(db) 140 - 141 - // Get domain authority from config 142 - let domain_authority = case config.get_domain_authority(config_subject) { 143 - option.Some(authority) -> authority 144 - option.None -> { 133 + // Get domain authority from database 134 + let domain_authority = case config_repo.get(db, "domain_authority") { 135 + Ok(authority) -> authority 136 + Error(_) -> { 145 137 logging.log( 146 138 logging.Warning, 147 139 "No domain_authority configured. All collections will be treated as external.", ··· 204 196 } 205 197 206 198 logging.log(logging.Info, "") 207 - let config = backfill.default_config() 199 + let config = backfill.default_config(db) 208 200 backfill.backfill_collections( 209 201 [], 210 202 collections, ··· 238 230 // Initialize the database 239 231 let assert Ok(db) = connection.initialize(database_url) 240 232 241 - // Note: Lexicon import has been moved to the settings page (ZIP upload) 242 - // Use the /settings page to upload a ZIP file containing lexicon JSON files 233 + // Initialize config defaults 234 + let _ = config_repo.initialize_config_defaults(db) 235 + 236 + // Initialize HTTP connection pool for backfill/DID resolution 237 + backfill.configure_hackney_pool(150) 243 238 244 239 // Initialize PubSub registry for subscriptions 245 240 pubsub.start() ··· 343 338 Error(_) -> "http://" <> host <> ":" <> int.to_string(port) 344 339 } 345 340 346 - // Get PLC directory URL from environment variable or use default 347 - let plc_url = case envoy.get("PLC_DIRECTORY_URL") { 348 - Ok(url) -> url 349 - Error(_) -> "https://plc.directory" 350 - } 351 - 352 341 // Get OAuth signing key from environment variable (multibase format) 353 342 let oauth_signing_key = case envoy.get("OAUTH_SIGNING_KEY") { 354 343 Ok(key) if key != "" -> { ··· 367 356 } 368 357 } 369 358 370 - // Get OAuth supported scopes from environment variable (space-separated) 371 - // Validate format at startup - panic on invalid configuration 372 - let oauth_supported_scopes = case envoy.get("OAUTH_SUPPORTED_SCOPES") { 373 - Ok(scopes_str) -> { 374 - // Strip surrounding quotes if present (dotenv doesn't strip them) 375 - let scopes_str = case string.starts_with(scopes_str, "\"") { 376 - True -> 377 - scopes_str 378 - |> string.drop_start(1) 379 - |> string.drop_end(1) 380 - False -> scopes_str 381 - } 382 - case scope_validator.validate_scope_format(scopes_str) { 383 - Ok(_) -> { 384 - scopes_str 385 - |> string.split(" ") 386 - |> list.map(string.trim) 387 - |> list.filter(fn(s) { !string.is_empty(s) }) 388 - } 389 - Error(e) -> { 390 - let msg = 391 - "Invalid OAUTH_SUPPORTED_SCOPES: " <> error.error_description(e) 392 - logging.log(logging.Error, msg) 393 - panic as msg 394 - } 395 - } 396 - } 397 - Error(_) -> ["atproto", "transition:generic"] 398 - } 399 - 400 359 // Get OAuth loopback mode from environment variable 401 360 // When true, uses loopback client IDs (http://localhost/?redirect_uri=...) 402 361 // instead of client metadata URLs, allowing local development without ngrok ··· 415 374 let assert Ok(backfill_state_subject) = backfill_state.start() 416 375 logging.log(logging.Info, "[server] Backfill state actor initialized") 417 376 418 - // Start config cache actor 419 - let assert Ok(config_subject) = config.start(db) 420 - logging.log(logging.Info, "[server] Config cache actor initialized") 421 - 422 377 // Start DID cache actor 423 378 let assert Ok(did_cache_subject) = did_cache.start() 424 379 logging.log(logging.Info, "[server] DID cache actor initialized") ··· 427 382 Context( 428 383 db: db, 429 384 external_base_url: external_base_url, 430 - plc_url: plc_url, 431 385 backfill_state: backfill_state_subject, 432 - config: config_subject, 433 386 jetstream_consumer: jetstream_subject, 434 387 did_cache: did_cache_subject, 435 388 oauth_signing_key: oauth_signing_key, 436 - oauth_supported_scopes: oauth_supported_scopes, 437 389 oauth_loopback_mode: oauth_loopback_mode, 438 390 ) 439 391 ··· 464 416 "[server] Handling WebSocket upgrade for /graphql", 465 417 ) 466 418 let domain_authority = case 467 - config.get_domain_authority(ctx.config) 419 + config_repo.get(ctx.db, "domain_authority") 468 420 { 469 - option.Some(authority) -> authority 470 - option.None -> "" 421 + Ok(authority) -> authority 422 + Error(_) -> "" 471 423 } 472 424 graphql_ws_handler.handle_websocket( 473 425 req, 474 426 ctx.db, 475 427 ctx.did_cache, 476 428 ctx.oauth_signing_key, 477 - ctx.plc_url, 429 + config_repo.get_plc_directory_url(ctx.db), 478 430 domain_authority, 479 431 ) 480 432 } ··· 527 479 True -> 528 480 build_loopback_client_id( 529 481 redirect_uri, 530 - string.join(ctx.oauth_supported_scopes, " "), 482 + config_repo.get_oauth_supported_scopes(ctx.db), 531 483 ) 532 484 False -> ctx.external_base_url <> "/oauth-client-metadata.json" 533 485 } ··· 538 490 redirect_uri, 539 491 client_id, 540 492 ctx.oauth_signing_key, 541 - ctx.oauth_supported_scopes, 493 + config_repo.get_oauth_supported_scopes_list(ctx.db), 542 494 ) 543 495 } 544 496 ["admin", "oauth", "callback"] -> { ··· 547 499 True -> 548 500 build_loopback_client_id( 549 501 redirect_uri, 550 - string.join(ctx.oauth_supported_scopes, " "), 502 + config_repo.get_oauth_supported_scopes(ctx.db), 551 503 ) 552 504 False -> ctx.external_base_url <> "/oauth-client-metadata.json" 553 505 } ··· 566 518 ctx.db, 567 519 ctx.jetstream_consumer, 568 520 ctx.did_cache, 569 - ctx.oauth_supported_scopes, 521 + config_repo.get_oauth_supported_scopes_list(ctx.db), 570 522 ctx.backfill_state, 571 523 ) 572 524 ["graphql"] -> ··· 575 527 ctx.db, 576 528 ctx.did_cache, 577 529 ctx.oauth_signing_key, 578 - ctx.plc_url, 530 + config_repo.get_plc_directory_url(ctx.db), 579 531 ) 580 532 ["graphiql"] -> 581 533 graphiql_handler.handle_graphiql_request(req, ctx.db, ctx.did_cache) ··· 589 541 external_base_url: ctx.external_base_url, 590 542 did_cache: ctx.did_cache, 591 543 signing_key: ctx.oauth_signing_key, 592 - plc_url: ctx.plc_url, 593 - supported_scopes: ctx.oauth_supported_scopes, 544 + plc_url: config_repo.get_plc_directory_url(ctx.db), 545 + supported_scopes: config_repo.get_oauth_supported_scopes_list(ctx.db), 594 546 ) 595 547 mcp_handler.handle(req, mcp_ctx) 596 548 } ··· 598 550 [".well-known", "oauth-authorization-server"] -> 599 551 oauth_metadata_handler.handle( 600 552 ctx.external_base_url, 601 - ctx.oauth_supported_scopes, 553 + config_repo.get_oauth_supported_scopes_list(ctx.db), 602 554 ) 603 555 [".well-known", "jwks.json"] -> 604 556 oauth_jwks_handler.handle(ctx.oauth_signing_key) ··· 610 562 ctx.external_base_url <> "/admin/oauth/callback", 611 563 ctx.external_base_url <> "/oauth/atp/callback", 612 564 ], 613 - string.join(ctx.oauth_supported_scopes, " "), 565 + config_repo.get_oauth_supported_scopes(ctx.db), 614 566 option.None, 615 567 option.Some(ctx.external_base_url <> "/.well-known/jwks.json"), 616 568 ) ··· 623 575 True -> 624 576 build_loopback_client_id( 625 577 redirect_uri, 626 - string.join(ctx.oauth_supported_scopes, " "), 578 + config_repo.get_oauth_supported_scopes(ctx.db), 627 579 ) 628 580 False -> ctx.external_base_url <> "/oauth-client-metadata.json" 629 581 } ··· 644 596 True -> 645 597 build_loopback_client_id( 646 598 redirect_uri, 647 - string.join(ctx.oauth_supported_scopes, " "), 599 + config_repo.get_oauth_supported_scopes(ctx.db), 648 600 ) 649 601 False -> ctx.external_base_url <> "/oauth-client-metadata.json" 650 602 }