added flutter icons files and intl packages

This commit is contained in:
AlcalaJulian
2025-11-24 12:55:20 +01:00
parent 4225f7510b
commit d381908ff1
45 changed files with 1679 additions and 18 deletions

View File

@@ -1 +1 @@
{"version":2,"entries":[{"package":"design_system","rootUri":"../packages/design_system/","packageUri":"lib/"},{"package":"sf_shared","rootUri":"../sf_shared/","packageUri":"lib/"},{"package":"sf_app_platform_mono_repo","rootUri":"../","packageUri":"lib/"},{"package":"navigation","rootUri":"../packages/navigation/","packageUri":"lib/"},{"package":"auth","rootUri":"../modules/auth/","packageUri":"lib/"},{"package":"home","rootUri":"../modules/home/","packageUri":"lib/"},{"package":"profile","rootUri":"../modules/profile/","packageUri":"lib/"},{"package":"notifications","rootUri":"../modules/notifications/","packageUri":"lib/"},{"package":"dashboard_shell","rootUri":"../modules/dashboard_shell/","packageUri":"lib/"}]}
{"version":2,"entries":[{"package":"sf_app_platform_mono_repo","rootUri":"../","packageUri":"lib/"}]}

1
.idea/modules.xml generated
View File

@@ -10,6 +10,7 @@
<module fileurl="file://$PROJECT_DIR$/modules/notifications/melos_notifications.iml" filepath="$PROJECT_DIR$/modules/notifications/melos_notifications.iml" />
<module fileurl="file://$PROJECT_DIR$/modules/profile/melos_profile.iml" filepath="$PROJECT_DIR$/modules/profile/melos_profile.iml" />
<module fileurl="file://$PROJECT_DIR$/apps/mobile_app/melos_sf_app_platform.iml" filepath="$PROJECT_DIR$/apps/mobile_app/melos_sf_app_platform.iml" />
<module fileurl="file://$PROJECT_DIR$/packages/sf_localizations/melos_sf_localizations.iml" filepath="$PROJECT_DIR$/packages/sf_localizations/melos_sf_localizations.iml" />
<module fileurl="file://$PROJECT_DIR$/packages/sf_shared/melos_sf_shared.iml" filepath="$PROJECT_DIR$/packages/sf_shared/melos_sf_shared.iml" />
<module fileurl="file://$PROJECT_DIR$/packages/utils/melos_utils.iml" filepath="$PROJECT_DIR$/packages/utils/melos_utils.iml" />
<module fileurl="file://$PROJECT_DIR$/melos_sf-app-platform.iml" filepath="$PROJECT_DIR$/melos_sf-app-platform.iml" />

View File

@@ -1,8 +1,10 @@
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:design_system/design_system.dart';
import 'package:sf_app_platform/navigation/app_router.dart';
import 'package:navigation/navigation_module.dart';
import 'package:sf_localizations/sf_localizations.dart';
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
@@ -25,6 +27,14 @@ class PlatformApp extends ConsumerWidget {
),
routerConfig: appRouter,
debugShowCheckedModeBanner: false,
localizationsDelegates: const [
SFLocalizations.delegate,
DefaultWidgetsLocalizations.delegate,
DefaultMaterialLocalizations.delegate,
DefaultCupertinoLocalizations.delegate,
],
supportedLocales: [for (final lang in supportedLanguages) Locale(lang)],
);
}
}

View File

@@ -388,6 +388,14 @@ packages:
url: "https://pub.dev"
source: hosted
version: "4.1.2"
intl:
dependency: transitive
description:
name: intl
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
url: "https://pub.dev"
source: hosted
version: "0.20.2"
io:
dependency: transitive
description:
@@ -577,6 +585,13 @@ packages:
url: "https://pub.dev"
source: hosted
version: "3.0.3"
sf_localizations:
dependency: "direct main"
description:
path: "../../packages/sf_localizations"
relative: true
source: path
version: "0.0.1"
sf_shared:
dependency: "direct overridden"
description:
@@ -749,6 +764,13 @@ packages:
url: "https://pub.dev"
source: hosted
version: "1.4.0"
utils:
dependency: "direct overridden"
description:
path: "../../packages/utils"
relative: true
source: path
version: "0.0.1"
vector_graphics:
dependency: transitive
description:

View File

@@ -50,7 +50,9 @@ dependencies:
navigation:
path: ../../packages/navigation
design_system:
path: ../../packages/design_system
path: ../../packages/design_system
sf_localizations:
path: ../../packages/sf_localizations
#dependencies go here
cupertino_icons: ^1.0.8

View File

@@ -1,4 +1,4 @@
# melos_managed_dependency_overrides: auth,dashboard_shell,design_system,home,navigation,notifications,profile,sf_shared
# melos_managed_dependency_overrides: auth,dashboard_shell,design_system,home,navigation,notifications,profile,sf_shared,utils
dependency_overrides:
auth:
path: ../../modules/auth
@@ -16,3 +16,5 @@ dependency_overrides:
path: ../../modules/profile
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -3,6 +3,7 @@ import 'package:auth/src/sign_up/signup_screen.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:navigation/navigation.dart';
import 'package:sf_localizations/sf_localizations.dart';
class LoginScreen extends ConsumerWidget {
final NavigationContract navigationContract;
@@ -22,6 +23,7 @@ class LoginScreen extends ConsumerWidget {
children: [
Icon(Icons.check, color: Color(0xFF329e95), size: 50),
Text(
// context.translate(I18n.example) // example to use Intl package
"¡Te damos la bienvenida!",
style: TextStyle(fontSize: 30, fontWeight: FontWeight.bold),
),

View File

@@ -20,6 +20,8 @@ dependencies:
path: ../../packages/design_system
navigation:
path: ../../packages/navigation
sf_localizations:
path: ../../packages/sf_localizations
#dependencies go here
flutter_svg: ^2.2.1
get_it: ^9.0.5

View File

@@ -1,4 +1,4 @@
# melos_managed_dependency_overrides: dashboard_shell,design_system,home,notifications,profile,sf_shared,navigation
# melos_managed_dependency_overrides: dashboard_shell,design_system,home,notifications,profile,sf_shared,navigation,utils
dependency_overrides:
dashboard_shell:
path: ../dashboard_shell
@@ -14,3 +14,5 @@ dependency_overrides:
path: ../profile
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -3,13 +3,12 @@ import 'package:dashboard_shell/src/presentation/main_shell_view_state.dart';
import 'package:design_system/design_system.dart';
import 'package:flutter/material.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_riverpod/legacy.dart';
import 'package:go_router/go_router.dart';
import 'package:navigation/navigation.dart';
final mainShellViewModelProvider =
StateNotifierProvider.autoDispose<MainShellViewModel, MainShellViewState>(
(ref) => MainShellViewModel(ref: ref),
NotifierProvider.autoDispose<MainShellViewModel, MainShellViewState>(
() => MainShellViewModel(),
);
class DashboardScreen extends ConsumerWidget {

View File

@@ -1,11 +1,11 @@
import 'package:dashboard_shell/src/presentation/main_shell_view_state.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:flutter_riverpod/legacy.dart';
class MainShellViewModel extends StateNotifier<MainShellViewState> {
MainShellViewModel({required this.ref}) : super(MainShellViewState());
final Ref ref;
class MainShellViewModel extends Notifier<MainShellViewState> {
@override
MainShellViewState build() {
return MainShellViewState();
}
void onTabChanged(int index) {
state = state.copyWith(selectedIndex: index);

View File

@@ -1,4 +1,4 @@
# melos_managed_dependency_overrides: auth,design_system,home,notifications,profile,sf_shared,navigation
# melos_managed_dependency_overrides: auth,design_system,home,notifications,profile,sf_shared,navigation,utils
dependency_overrides:
auth:
path: ../auth
@@ -14,3 +14,5 @@ dependency_overrides:
path: ../profile
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -1,4 +1,4 @@
# melos_managed_dependency_overrides: auth,dashboard_shell,design_system,notifications,profile,sf_shared,navigation
# melos_managed_dependency_overrides: auth,dashboard_shell,design_system,notifications,profile,sf_shared,navigation,utils
dependency_overrides:
auth:
path: ../auth
@@ -14,3 +14,5 @@ dependency_overrides:
path: ../profile
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -1,6 +1,8 @@
# melos_managed_dependency_overrides: design_system,sf_shared
# melos_managed_dependency_overrides: design_system,sf_shared,utils
dependency_overrides:
design_system:
path: ../../packages/design_system
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -1,4 +1,4 @@
# melos_managed_dependency_overrides: design_system,notifications,sf_shared
# melos_managed_dependency_overrides: design_system,notifications,sf_shared,utils
dependency_overrides:
design_system:
path: ../../packages/design_system
@@ -6,3 +6,5 @@ dependency_overrides:
path: ../notifications
sf_shared:
path: ../../packages/sf_shared
utils:
path: ../../packages/utils

View File

@@ -1,2 +1,3 @@
export 'src/theme/theme_port.dart';
export 'src/theme/theme_sf_adapter.dart';
export 'src/icons/sf_icons.dart';

Binary file not shown.

View File

@@ -0,0 +1,828 @@
{
"name": "SFIcons",
"css_prefix_text": "",
"css_use_suffix": false,
"hinting": true,
"units_per_em": 1000,
"ascent": 850,
"glyphs": [
{
"uid": "80467896abfe490373668bdb4909ddd7",
"css": "back",
"code": 59392,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M791.7 458.3H326.2L529.6 255C545.8 238.7 545.8 212.1 529.6 195.8 513.3 179.6 487.1 179.6 470.8 195.8L196.2 470.4C180 486.7 180 512.9 196.2 529.2L470.8 803.7C487.1 820 513.3 820 529.6 803.7 545.8 787.5 545.8 761.2 529.6 745L326.2 541.7H791.7C814.6 541.7 833.3 522.9 833.3 500 833.3 477.1 814.6 458.3 791.7 458.3Z",
"width": 1000
},
"search": [
"back"
]
},
{
"uid": "7020f118c6f162d5002177079f20969f",
"css": "close",
"code": 59396,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M762.5 237.9C746.2 221.7 720 221.7 703.7 237.9L500 441.2 296.2 237.5C280 221.2 253.7 221.2 237.5 237.5 221.2 253.7 221.2 280 237.5 296.2L441.2 500 237.5 703.8C221.2 720 221.2 746.3 237.5 762.5 253.7 778.8 280 778.8 296.2 762.5L500 558.8 703.7 762.5C720 778.8 746.2 778.8 762.5 762.5 778.7 746.3 778.7 720 762.5 703.8L558.7 500 762.5 296.2C778.3 280.4 778.3 253.7 762.5 237.9Z",
"width": 1000
},
"search": [
"close"
]
},
{
"uid": "a73f3bb9665babbc258fa0098f8be4a5",
"css": "search",
"code": 59400,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M645.8 583.3H612.9L601.3 572.1C651.3 513.7 677.1 434.2 662.9 349.6 643.3 233.7 546.7 141.2 430 127.1 253.7 105.4 105.4 253.7 127.1 430 141.2 546.7 233.7 643.3 349.6 662.9 434.2 677.1 513.7 651.3 572.1 601.3L583.3 612.9V645.8L760.4 822.9C777.5 840 805.4 840 822.5 822.9 839.6 805.8 839.6 777.9 822.5 760.8L645.8 583.3ZM395.8 583.3C292.1 583.3 208.3 499.6 208.3 395.8 208.3 292.1 292.1 208.3 395.8 208.3 499.6 208.3 583.3 292.1 583.3 395.8 583.3 499.6 499.6 583.3 395.8 583.3Z",
"width": 1000
},
"search": [
"search"
]
},
{
"uid": "1c154f180fc24294989ee9933d22f2fd",
"css": "location",
"code": 59394,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M350 21.8C156.5 21.8 0 178.3 0 371.8 0 580.3 221 867.8 312 977.3 332 1001.3 368.5 1001.3 388.5 977.3 479 867.8 700 580.3 700 371.8 700 178.3 543.5 21.8 350 21.8ZM350 496.8C281 496.8 225 440.8 225 371.8 225 302.8 281 246.8 350 246.8 419 246.8 475 302.8 475 371.8 475 440.8 419 496.8 350 496.8Z",
"width": 700
},
"search": [
"vector"
]
},
{
"uid": "1dc6465d446812f557c185a3c06faa2a",
"css": "alert",
"code": 59395,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 291.7C522.9 291.7 541.7 310.4 541.7 333.3V500C541.7 522.9 522.9 541.7 500 541.7 477.1 541.7 458.3 522.9 458.3 500V333.3C458.3 310.4 477.1 291.7 500 291.7ZM499.6 83.3C269.6 83.3 83.3 270 83.3 500 83.3 730 269.6 916.7 499.6 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 499.6 83.3ZM500 833.3C315.8 833.3 166.7 684.2 166.7 500 166.7 315.8 315.8 166.7 500 166.7 684.2 166.7 833.3 315.8 833.3 500 833.3 684.2 684.2 833.3 500 833.3ZM541.7 708.3H458.3V625H541.7V708.3Z",
"width": 1000
},
"search": [
"alert"
]
},
{
"uid": "9096ef3bce8ed7879cf4ba44f3754f8b",
"css": "forward",
"code": 59398,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M208.3 541.6H673.8L470.4 745C454.2 761.2 454.2 787.9 470.4 804.1 486.7 820.4 512.9 820.4 529.2 804.1L803.8 529.5C820 513.3 820 487 803.8 470.8L529.6 195.8C513.3 179.5 487.1 179.5 470.8 195.8 454.6 212 454.6 238.3 470.8 254.5L673.8 458.3H208.3C185.4 458.3 166.7 477 166.7 499.9 166.7 522.9 185.4 541.6 208.3 541.6Z",
"width": 1000
},
"search": [
"icon"
]
},
{
"uid": "8e0c0151ef7dcb62d2d883630704859b",
"css": "email",
"code": 59408,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M833.3 166.7H166.7C120.8 166.7 83.8 204.2 83.8 250L83.3 750C83.3 795.8 120.8 833.3 166.7 833.3H833.3C879.2 833.3 916.7 795.8 916.7 750V250C916.7 204.2 879.2 166.7 833.3 166.7ZM816.7 343.8L522.1 527.9C508.8 536.3 491.3 536.3 477.9 527.9L183.3 343.8C172.9 337.1 166.7 325.8 166.7 313.8 166.7 285.8 197.1 269.2 220.8 283.8L500 458.3 779.2 283.8C802.9 269.2 833.3 285.8 833.3 313.8 833.3 325.8 827.1 337.1 816.7 343.8Z",
"width": 1000
},
"search": [
"email"
]
},
{
"uid": "511685198096daf1cee473ff96a455c7",
"css": "video",
"code": 59409,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M708.3 437.5V291.7C708.3 268.8 689.6 250 666.7 250H166.7C143.8 250 125 268.8 125 291.7V708.3C125 731.3 143.8 750 166.7 750H666.7C689.6 750 708.3 731.3 708.3 708.3V562.5L803.8 657.9C830 684.2 875 665.4 875 628.3V371.3C875 334.2 830 315.4 803.8 341.7L708.3 437.5Z",
"width": 1000
},
"search": [
"video"
]
},
{
"uid": "1b88a0b309ea853a54ddc7c2a57cd523",
"css": "phone",
"code": 59410,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M801.3 635.8L695.4 623.7C670 620.8 645 629.6 627.1 647.5L550.4 724.2C432.5 664.2 335.8 567.9 275.8 449.6L352.9 372.5C370.8 354.6 379.6 329.6 376.7 304.2L364.6 199.2C359.6 157.1 324.2 125.4 281.7 125.4H209.6C162.5 125.4 123.3 164.6 126.3 211.7 148.3 567.5 432.9 851.7 788.3 873.7 835.4 876.7 874.6 837.5 874.6 790.4V718.3C875 676.2 843.3 640.8 801.3 635.8Z",
"width": 1000
},
"search": [
"phone"
]
},
{
"uid": "ffa2149028e63b1492e2570309d8639d",
"css": "checkCircle",
"code": 59412,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM387.1 678.7L237.5 529.2C221.2 512.9 221.2 486.7 237.5 470.4 253.7 454.2 280 454.2 296.3 470.4L416.7 590.4 703.3 303.8C719.6 287.5 745.8 287.5 762.1 303.8 778.3 320 778.3 346.3 762.1 362.5L445.8 678.7C430 695 403.3 695 387.1 678.7Z",
"width": 1000
},
"search": [
"check_circle"
]
},
{
"uid": "9ce455fa589eb12f4d351d1590c2ea7b",
"css": "filter",
"code": 59401,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M648.3 450.4L550.4 576.3 485.4 497.9C477.1 487.5 461.3 487.9 452.9 498.3L380.4 591.3C369.6 605 379.6 625 396.7 625H770.8C787.9 625 797.9 605.4 787.5 591.7L681.3 450.4C673.3 439.6 656.7 439.6 648.3 450.4ZM83.3 208.3C60.4 208.3 41.7 227.1 41.7 250V875C41.7 920.8 79.2 958.3 125 958.3H750C772.9 958.3 791.7 939.6 791.7 916.7 791.7 893.7 772.9 875 750 875H166.7C143.8 875 125 856.3 125 833.3V250C125 227.1 106.2 208.3 83.3 208.3ZM875 41.7H291.7C245.8 41.7 208.3 79.2 208.3 125V708.3C208.3 754.2 245.8 791.7 291.7 791.7H875C920.8 791.7 958.3 754.2 958.3 708.3V125C958.3 79.2 920.8 41.7 875 41.7ZM833.3 708.3H333.3C310.4 708.3 291.7 689.6 291.7 666.7V166.7C291.7 143.8 310.4 125 333.3 125H833.3C856.3 125 875 143.8 875 166.7V666.7C875 689.6 856.3 708.3 833.3 708.3Z",
"width": 1000
},
"search": [
"filter"
]
},
{
"uid": "9617871d36cf88e402ea69d0fae9a57e",
"css": "cookie",
"code": 59407,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 916.7C442.4 916.7 388.2 905.8 337.5 883.9 286.8 862 242.7 832.4 205.2 794.9 167.7 757.4 138 713.3 116.1 662.6 94.3 611.9 83.3 557.7 83.3 500.1 83.3 448 93.4 396.9 113.5 346.9 133.7 296.9 161.8 252.3 197.9 213.1 234 173.8 277.4 142.3 328.1 118.3 378.8 94.3 434.4 82.4 494.8 82.4 509.4 82.4 524.3 83.1 539.6 84.4 554.9 85.8 570.5 88.3 586.5 91.7 580.2 123 582.3 152.5 592.7 180.3 603.1 208.1 618.8 231.1 639.6 249.5 660.4 267.9 685.2 280.6 714.1 287.6 742.9 294.5 772.6 292.8 803.1 282.4 785.1 323.3 787.7 362.6 810.9 400.1 834.2 437.6 868.8 457 914.6 458.4 915.3 466 915.8 473.2 916.1 479.8 916.5 486.3 916.7 493.5 916.7 501.1 916.7 558 905.7 611.7 883.9 662 862 712.4 832.3 756.5 794.8 794.3 757.3 832.2 713.2 862 662.5 883.9 611.8 905.8 557.6 916.7 500 916.7ZM437.5 416.7C454.9 416.7 469.6 410.7 481.8 398.5 493.9 386.3 500 371.6 500 354.2 500 336.9 493.9 322.1 481.8 310 469.6 297.8 454.9 291.7 437.5 291.7 420.1 291.7 405.4 297.8 393.2 310 381.1 322.1 375 336.9 375 354.2 375 371.6 381.1 386.3 393.2 398.5 405.4 410.7 420.1 416.7 437.5 416.7ZM354.2 625.1C371.5 625.1 386.3 619 398.4 606.8 410.6 594.7 416.7 579.9 416.7 562.6 416.7 545.2 410.6 530.4 398.4 518.3 386.3 506.1 371.5 500.1 354.2 500.1 336.8 500.1 322 506.1 309.9 518.3 297.7 530.4 291.7 545.2 291.7 562.6 291.7 579.9 297.7 594.7 309.9 606.8 322 619 336.8 625.1 354.2 625.1ZM625 666.7C636.8 666.7 646.7 662.7 654.7 654.8 662.7 646.8 666.7 636.9 666.7 625.1 666.7 613.3 662.7 603.4 654.7 595.4 646.7 587.4 636.8 583.4 625 583.4 613.2 583.4 603.3 587.4 595.3 595.4 587.3 603.4 583.3 613.3 583.3 625.1 583.3 636.9 587.3 646.8 595.3 654.8 603.3 662.7 613.2 666.7 625 666.7Z",
"width": 1000
},
"search": [
"cookie"
]
},
{
"uid": "6a3f9d6be8d628faa2dc67f8f60a2469",
"css": "filterList",
"code": 59402,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M177.1 233.7C273.8 357.9 416.7 541.7 416.7 541.7V750C416.7 795.8 454.2 833.3 500 833.3 545.8 833.3 583.3 795.8 583.3 750V541.7C583.3 541.7 726.3 357.9 822.9 233.7 844.2 206.3 824.6 166.7 789.6 166.7H210C175.4 166.7 155.8 206.3 177.1 233.7Z",
"width": 1000
},
"search": [
"filter_list"
]
},
{
"uid": "d9d1602b64bb2a2f6e856ef6245c1307",
"css": "offline",
"code": 59418,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M856.6 422.5C880 441.7 914.1 440 935.4 418.8 960 394.2 958.3 353.3 931.2 331.3 781.6 208.8 589.5 163.3 408.3 195.4L516.2 303.3C636.6 302.1 757.9 341.7 856.6 422.5ZM762 498.8C729.5 475 694.1 457.1 657 444.6L780 567.5C790 543.3 784.1 514.6 762 498.8ZM602 676.3C551.2 650 490.4 650 439.1 676.3 414.5 689.2 410 722.9 429.5 742.5L490.8 803.8C507 820 533.3 820 549.5 803.8L610.8 742.5C631.2 722.9 627 689.2 602 676.3ZM840.8 745.8L192.5 97.5C176.2 81.3 150 81.3 133.7 97.5 117.5 113.8 117.5 140 133.7 156.3L231.2 254.2C189.1 275 148.3 300.4 110.8 331.3 83.7 353.3 82 394.2 106.6 418.8 127.9 440 161.6 442.1 184.5 422.9 226.2 388.8 272 362.1 320 342.5L412.9 435.4C365.8 447.9 320.8 468.8 280 498.3 251.2 519.2 249.5 561.3 274.5 586.3L275 586.7C295.4 607.1 327.5 609.2 351.2 592.1 400.8 557.1 458.7 539.6 516.6 538.3L782 803.8C798.3 820 824.5 820 840.8 803.8 857 788.3 857 762.1 840.8 745.8Z",
"width": 1042
},
"search": [
"offline"
]
},
{
"uid": "c5b66a88331fa921322690fbc3c304b2",
"css": "euro",
"code": 59393,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 770.8C520.4 770.8 430 711.7 385 625H583.3C606.3 625 625 606.3 625 583.3 625 560.4 606.3 541.7 583.3 541.7H357.5C355.4 527.9 354.2 514.2 354.2 500 354.2 485.8 355.4 472.1 357.5 458.3H583.3C606.3 458.3 625 439.6 625 416.7 625 393.7 606.3 375 583.3 375H385C430 288.3 520.8 229.2 625 229.2 677.1 229.2 725.8 244.2 767.5 269.6 788.3 282.5 815.4 280.4 832.9 262.9 857.1 238.8 851.7 199.2 822.5 181.2 765 145.8 697.1 125 625 125 461.7 125 323.3 229.6 271.7 375H166.7C143.8 375 125 393.7 125 416.7 125 439.6 143.8 458.3 166.7 458.3H252.5C250.8 472.1 250 485.8 250 500 250 514.2 250.8 527.9 252.5 541.7H166.7C143.8 541.7 125 560.4 125 583.3 125 606.3 143.8 625 166.7 625H271.7C323.3 770.4 461.7 875 625 875 697.5 875 765 854.6 822.5 818.7 851.2 800.8 856.7 760.8 832.5 736.7 815 719.2 787.9 717.1 767.1 730.4 725.8 756.2 677.5 770.8 625 770.8Z",
"width": 1000
},
"search": [
"euro"
]
},
{
"uid": "a88e3aed58026ea015a5bec40dc8227d",
"css": "arrowRightAlt",
"code": 59417,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M687.9 458.3H229.2C206.3 458.3 187.5 477.1 187.5 500 187.5 522.9 206.3 541.6 229.2 541.6H687.9V616.2C687.9 635 710.4 644.1 723.3 630.8L839.2 514.6C847.1 506.2 847.1 493.3 839.2 485L723.3 368.7C710.4 355.4 687.9 365 687.9 383.3V458.3Z",
"width": 1042
},
"search": [
"arrow_right_alt"
]
},
{
"uid": "2741dd87b57f503e1e0345e4581f3970",
"css": "infoCircle",
"code": 59436,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM500 541.7C477.1 541.7 458.3 522.9 458.3 500V333.3C458.3 310.4 477.1 291.7 500 291.7 522.9 291.7 541.7 310.4 541.7 333.3V500C541.7 522.9 522.9 541.7 500 541.7ZM541.7 708.3H458.3V625H541.7V708.3Z",
"width": 1000
},
"search": [
"infocircle"
]
},
{
"uid": "2206661a36ad3359642b55909c3dc855",
"css": "cursorClick",
"code": 59419,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M332.9 45.7C325.2 17.1 295.9 0.1 267.3 7.8 238.7 15.4 221.8 44.8 229.4 73.4L261.4 192.9C269.1 221.5 298.5 238.4 327 230.8 355.6 223.1 372.6 193.7 364.9 165.2L332.9 45.7ZM19.7 255.4C12 284 29 313.3 57.6 321L177.1 353C205.6 360.7 235 343.7 242.7 315.1 250.3 286.6 233.4 257.2 204.8 249.5L85.3 217.5C56.7 209.9 27.3 226.8 19.7 255.4ZM84.3 594.6C105.2 615.6 139.1 615.6 160 594.6L247.5 507.2C268.4 486.2 268.4 452.3 247.5 431.4 226.6 410.5 192.7 410.5 171.8 431.4L84.3 518.9C63.4 539.8 63.4 573.7 84.3 594.6ZM606.5 72.4C627.4 93.3 627.4 127.2 606.5 148.2L519 235.6C498.1 256.5 464.2 256.5 443.3 235.6 422.4 214.7 422.4 180.8 443.3 159.9L530.8 72.4C551.7 51.5 585.6 51.5 606.5 72.4ZM559.1 948.6C401.2 758.8 365.5 525.7 376.3 410.9 378.7 385.9 397.8 366.7 422.9 364.4 537.6 353.6 770.7 389.3 960.5 547.2 989.8 571.6 987.1 611.6 952.2 626.9 912.5 644.2 860.5 662.5 815.7 677.2L955.9 817.4C990.9 852.3 990.9 909 955.9 944 920.9 979 864.2 979 829.3 944L689.1 803.8C674.4 848.6 656.1 900.6 638.8 940.3 623.5 975.2 583.5 977.9 559.1 948.6Z",
"width": 1000
},
"search": [
"cursor_click"
]
},
{
"uid": "aab69ee57b8bbf88d46d9a14fc5a6a79",
"css": "wand",
"code": 59420,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M419.2 67.1C429.3 12.5 488.6-15.8 537.5 9.2 590.7 36.4 637.1 70.8 680 113.1 734.7 83.6 790.4 64.9 851.2 56.6 905.2 49.4 950.8 94.9 943.4 148.9 935.2 209.7 916.4 265.4 886.9 320 929.2 362.9 963.6 409.3 990.8 462.5 1015.8 511.4 987.5 570.6 932.9 580.8 872.8 591.9 814.4 591.4 753.6 579.6 726.1 632.3 692.5 678.2 651.6 720 612.5 759.9 545.8 751.3 519.4 701 501.7 667.4 488.2 633.1 478.7 597.1L91.5 984.3C70.5 1005.2 36.6 1005.2 15.7 984.3-5.2 963.4-5.2 929.5 15.7 908.5L402.9 521.3C366.9 511.7 332.6 498.3 299 480.6 248.7 454.2 240.1 387.5 280 348.4 321.8 307.5 367.6 273.9 420.4 246.4 408.6 185.5 408.1 127.2 419.2 67.1Z",
"width": 1000
},
"search": [
"wand"
]
},
{
"uid": "7adfe7b282a5201d2736987a1c2520af",
"css": "arrowLeftAlt",
"code": 59405,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M323.8 541.3L782.6 541.3C805.5 541.3 824.3 522.6 824.3 499.7 824.3 476.8 805.5 458 782.6 458L323.8 458 323.8 383.4C323.8 364.7 301.3 355.5 288.4 368.8L172.6 485.1C164.7 493.4 164.7 506.3 172.6 514.7L288.4 630.9C301.3 644.3 323.8 634.7 323.8 616.3L323.8 541.3Z",
"width": 1000
},
"search": [
"arrow_left_alt"
]
},
{
"uid": "325cf485696fb7dcdcf448ea54e4c0d0",
"css": "chevronRight",
"code": 59411,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M387.9 279.6C371.7 295.8 371.7 322.1 387.9 338.3L549.6 500 387.9 661.7C371.7 677.9 371.7 704.2 387.9 720.4 404.2 736.7 430.4 736.7 446.7 720.4L637.9 529.2C654.2 512.9 654.2 486.7 637.9 470.4L446.7 279.2C430.8 263.3 404.2 263.3 387.9 279.6Z",
"width": 1000
},
"search": [
"chevron_right"
]
},
{
"uid": "b797f5b7000a5e56b6054b90eea30dc0",
"css": "bank",
"code": 59416,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M732.5 297.5L412.5 122.5C405 117.5 395 117.5 387.5 122.5L67.5 297.5C60 300 55 310 55 320V407.5C55 422.5 65 432.5 80 432.5H722.5C737.5 432.5 747.5 422.5 747.5 407.5V320C745 310 740 300 732.5 297.5ZM695 380H105V332.5L400 172.5 695 335V380ZM162.5 670V495C162.5 480 152.5 470 137.5 470S112.5 480 112.5 495V670C112.5 685 122.5 695 137.5 695S162.5 682.5 162.5 670ZM337.5 670V495C337.5 480 327.5 470 312.5 470S287.5 480 287.5 495V670C287.5 685 297.5 695 312.5 695S337.5 682.5 337.5 670ZM512.5 670V495C512.5 480 502.5 470 487.5 470S462.5 480 462.5 495V670C462.5 685 472.5 695 487.5 695S512.5 682.5 512.5 670ZM687.5 670V495C687.5 480 677.5 470 662.5 470S637.5 480 637.5 495V670C637.5 685 647.5 695 662.5 695S687.5 682.5 687.5 670ZM720 730H80C65 730 55 740 55 755S65 780 80 780H722.5C737.5 780 747.5 770 747.5 755S735 730 720 730ZM370 290C370 305 382.5 320 400 320S430 307.5 430 290C430 275 417.5 260 400 260S370 272.5 370 290Z",
"width": 1000
},
"search": [
"bank"
]
},
{
"uid": "d5236adff579dfb3ddd9aa80808db695",
"css": "notifications",
"code": 59422,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M411.8 960.8C465.7 960.8 509.8 916.7 509.8 862.7H313.7C313.7 916.7 357.3 960.8 411.8 960.8ZM705.9 666.7V421.6C705.9 271.1 625.5 145.1 485.3 111.8V78.4C485.3 37.7 452.4 4.9 411.8 4.9 371.1 4.9 338.2 37.7 338.2 78.4V111.8C197.5 145.1 117.6 270.6 117.6 421.6V666.7L54.4 729.9C23.5 760.8 45.1 813.7 88.7 813.7H734.3C777.9 813.7 800 760.8 769.1 729.9L705.9 666.7Z",
"width": 824
},
"search": [
"notifications"
]
},
{
"uid": "75be9d662d8ef6ae70733508992d1bef",
"css": "loginOutlined",
"code": 59439,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M125 982.1C95.5 982.1 70.3 971.6 49.3 950.7 28.3 929.7 17.9 904.5 17.9 875V125C17.9 95.5 28.3 70.3 49.3 49.3 70.3 28.3 95.5 17.9 125 17.9H446.4C461.6 17.9 474.3 23 484.6 33.3 494.9 43.5 500 56.3 500 71.4 500 86.6 494.9 99.3 484.6 109.6 474.3 119.9 461.6 125 446.4 125H125V875H446.4C461.6 875 474.3 880.1 484.6 890.4 494.9 900.7 500 913.4 500 928.6 500 943.8 494.9 956.5 484.6 966.7 474.3 977 461.6 982.1 446.4 982.1H125ZM777.2 553.6H392.9C377.7 553.6 365 548.4 354.7 538.2 344.4 527.9 339.3 515.2 339.3 500 339.3 484.8 344.4 472.1 354.7 461.8 365 451.6 377.7 446.4 392.9 446.4H777.2L676.8 346C667 336.2 662.1 324.1 662.1 309.8 662.1 295.5 667 283 676.8 272.3 686.6 261.6 699.1 256 714.3 255.6 729.5 255.1 742.4 260.3 753.1 271L944.6 462.5C955.4 473.2 960.7 485.7 960.7 500 960.7 514.3 955.4 526.8 944.6 537.5L753.1 729C742.4 739.7 729.7 744.9 715 744.4 700.2 744 687.5 738.4 676.8 727.7 667 717 662.3 704.2 662.7 689.5 663.2 674.8 668.3 662.5 678.1 652.7L777.2 553.6Z",
"width": 1000
},
"search": [
"login_outlined"
]
},
{
"uid": "cc6c6674b6bb2c5946bcc08a3f69a3ae",
"css": "helpOutlined",
"code": 59423,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM500 833.3C316.3 833.3 166.7 683.8 166.7 500 166.7 316.3 316.3 166.7 500 166.7 683.8 166.7 833.3 316.3 833.3 500 833.3 683.8 683.8 833.3 500 833.3ZM458.3 666.7H541.7V750H458.3V666.7ZM525.4 251.7C439.6 239.2 363.8 292.1 340.8 367.9 333.3 392.1 351.7 416.7 377.1 416.7H385.4C402.5 416.7 416.3 404.6 422.1 388.8 435.4 351.7 475 326.3 517.9 335.4 557.5 343.8 586.7 382.5 583.3 422.9 579.2 478.8 515.8 490.8 481.3 542.9 481.3 543.3 480.8 543.3 480.8 543.8 480.4 544.6 480 545 479.6 545.8 475.8 552.1 472.1 559.2 469.2 566.7 468.8 567.9 467.9 568.8 467.5 570 467.1 570.8 467.1 571.7 466.7 572.9 461.7 587.1 458.3 604.2 458.3 625H541.7C541.7 607.5 546.3 592.9 553.3 580.4 554.2 579.2 554.6 577.9 555.4 576.7 558.8 570.8 562.9 565.4 567.1 560.4 567.5 560 567.9 559.2 568.3 558.8 572.5 553.8 577.1 549.2 582.1 544.6 622.1 506.7 676.3 475.8 665 396.3 655 323.8 597.9 262.5 525.4 251.7Z",
"width": 1000
},
"search": [
"help_outline"
]
},
{
"uid": "e15c5154b2960472d77047189fa122aa",
"css": "externalLink",
"code": 59414,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M821.4 875H178.6C149.1 875 125 850.9 125 821.4V178.6C125 149.1 149.1 125 178.6 125H446.4C475.9 125 500 100.9 500 71.4 500 42 475.9 17.9 446.4 17.9H125C65.5 17.9 17.9 66.1 17.9 125V875C17.9 933.9 66.1 982.1 125 982.1H875C933.9 982.1 982.1 933.9 982.1 875V553.6C982.1 524.1 958 500 928.6 500 899.1 500 875 524.1 875 553.6V821.4C875 850.9 850.9 875 821.4 875ZM607.1 71.4C607.1 100.9 631.3 125 660.7 125H799.5L310.4 614.1C289.5 635 289.5 668.8 310.4 689.6 331.3 710.5 365 710.5 385.9 689.6L875 200.5V339.3C875 368.8 899.1 392.9 928.6 392.9 958 392.9 982.1 368.8 982.1 339.3V17.9H660.7C631.3 17.9 607.1 42 607.1 71.4Z",
"width": 1000
},
"search": [
"external_link"
]
},
{
"uid": "a02a88e9845483cb9b4242e4993c2c07",
"css": "contentCopy",
"code": 59424,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M625 833.3H208.3V291.7C208.3 268.8 189.6 250 166.7 250 143.8 250 125 268.8 125 291.7V833.3C125 879.2 162.5 916.7 208.3 916.7H625C647.9 916.7 666.7 897.9 666.7 875 666.7 852.1 647.9 833.3 625 833.3ZM833.3 666.7V166.7C833.3 120.8 795.8 83.3 750 83.3H375C329.2 83.3 291.7 120.8 291.7 166.7V666.7C291.7 712.5 329.2 750 375 750H750C795.8 750 833.3 712.5 833.3 666.7ZM750 666.7H375V166.7H750V666.7Z",
"width": 1000
},
"search": [
"content_copy"
]
},
{
"uid": "87dd15d5862aa9b7aec5c97da6cfffba",
"css": "favoriteOutlined",
"code": 59481,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M819.2 166.3C709.2 91.3 573.3 126.3 500 212.1 426.7 126.3 290.8 90.9 180.8 166.3 122.5 206.3 85.8 273.8 83.3 345 77.5 506.7 220.8 636.3 439.6 835L443.8 838.8C475.4 867.5 524.2 867.5 555.8 838.4L560.4 834.2C779.2 635.9 922.1 506.3 916.7 344.6 914.2 273.8 877.5 206.3 819.2 166.3ZM504.2 772.9L500 777.1 495.8 772.9C297.5 593.4 166.7 474.6 166.7 354.2 166.7 270.9 229.2 208.4 312.5 208.4 376.7 208.4 439.2 249.6 461.3 306.7H539.2C560.8 249.6 623.3 208.4 687.5 208.4 770.8 208.4 833.3 270.9 833.3 354.2 833.3 474.6 702.5 593.4 504.2 772.9Z",
"width": 1000
},
"search": [
"favorite_border"
]
},
{
"uid": "fee413ab50aa94061b2dea5dfb2378f6",
"css": "walletAddMoney",
"code": 59426,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M740.5 17.9C675.2 4.6 529.7 0 445.4 0 374.5 0 306 11.3 236.9 25.4 154.7 42.2 99.5 125.8 87.7 215.9 77.6 292.5 71.4 368.7 71.4 445.9 71.4 463.4 71.6 479.5 72 494.6 71.6 506.1 71.4 518.3 71.4 531.3 71.4 552.7 72 571.7 72.9 588.9 97.7 546.4 143.7 517.9 196.4 517.9 275.3 517.9 339.3 581.8 339.3 660.7 418.2 660.7 482.1 724.7 482.1 803.6 482.1 840.8 467.9 874.8 444.5 900.2 465.8 901.2 488.6 901.8 513.5 901.8 612.7 901.8 679.4 892.5 748.7 882.9L760.2 881.3C831.9 871.3 893.8 825.6 922.6 762.3 932.1 741.4 914.2 720.2 891.2 720.1 882.8 720 874.4 719.9 866 719.9 854.9 719.7 843.8 719.6 832.7 719.6 728.9 719.6 644.8 637.3 644.8 535.7 644.8 434.1 728.9 351.8 832.7 351.8 843.7 351.8 854.7 351.7 865.7 351.6 873 351.6 880.4 351.5 887.7 351.5 911.2 351.4 928.8 329.3 917.9 308.5 900.6 275.2 873.5 247.3 840.3 227.8 786.2 199.9 716.3 194 617.6 194 538.2 194 461.8 200 402.8 204.6 386.8 205.9 372.1 207 359 207.9 334.7 209.6 313.7 191.7 312 168 310.3 144.2 328.5 123.6 352.8 122 364.8 121.2 378.6 120.1 394 118.9 453 114.2 534.2 107.9 617.6 107.9 675.4 107.9 730.8 109.5 782.1 119 807.3 123.7 831.3 103.3 819.6 80.5 803.8 49.8 776.5 25.3 740.5 17.9ZM832.7 633.5H929.6C968.5 633.5 1000 602.7 1000 564.6V506.9C1000 468.9 968.5 438 929.6 438H832.7C777.5 438 732.8 481.8 732.8 535.8 732.8 589.8 777.5 633.5 832.7 633.5ZM196.4 607.1C226 607.1 250 631.1 250 660.7V750H339.3C368.9 750 392.9 774 392.9 803.6 392.9 833.2 368.9 857.1 339.3 857.1H250V946.4C250 976 226 1000 196.4 1000 166.8 1000 142.9 976 142.9 946.4V857.1H53.6C24 857.1 0 833.2 0 803.6 0 774 24 750 53.6 750H142.9V660.7C142.9 631.1 166.8 607.1 196.4 607.1Z",
"width": 1000
},
"search": [
"income_icon"
]
},
{
"uid": "8936a65b272aef1d00194728f05f3074",
"css": "walletSubtractMoney",
"code": 59427,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M735.8 75.7C671.8 62.7 529.1 58.1 446.5 58.1 377.1 58.1 309.9 69.2 242.2 83 161.7 99.4 107.5 181.4 95.9 269.7 86.1 344.8 80 419.4 80 495.1 80 512.2 80.2 528.1 80.6 542.9 80.2 554.1 80 566 80 578.8 80 633.3 83.6 671.9 88.6 705.6H342.5C419.8 705.6 482.5 768.3 482.5 845.6 482.5 882.1 468.5 915.4 445.7 940.3 466.5 941.3 488.9 941.9 513.2 941.9 610.4 941.9 675.8 932.8 743.7 923.3L755 921.8C825.3 912 886 867.2 914.2 805.2 923.5 784.6 906 763.9 883.4 763.8 875.2 763.8 866.9 763.7 858.7 763.6 847.8 763.4 836.9 763.3 826.1 763.3 724.4 763.3 642 682.6 642 583.1 642 483.6 724.4 402.9 826.1 402.9 836.8 402.9 847.6 402.8 858.4 402.7 865.6 402.7 872.8 402.6 880 402.6 903 402.5 920.3 380.8 909.6 360.4 892.6 327.9 866 300.5 833.5 281.4 780.5 254 712 248.2 615.2 248.2 537.5 248.2 462.6 254.1 404.7 258.6 389.1 259.9 374.7 261 361.8 261.9 338 263.5 317.4 246 315.8 222.7 314.1 199.5 332 179.3 355.7 177.7 367.5 176.8 381.1 175.8 396.1 174.6 454 170.1 533.6 163.8 615.2 163.8 671.9 163.8 726.2 165.4 776.5 174.7 801.2 179.3 824.7 159.4 813.3 137.1 797.8 106.9 771 82.9 735.8 75.7ZM826 679H921C959.1 679 990 648.7 990 611.4V554.9C990 517.6 959.1 487.4 921 487.4H826C772 487.4 728.2 530.3 728.2 583.2 728.2 636.1 772 679 826 679ZM62.5 793.1C33.5 793.1 10 816.6 10 845.6 10 874.6 33.5 898.1 62.5 898.1H342.5C371.5 898.1 395 874.6 395 845.6 395 816.6 371.5 793.1 342.5 793.1H62.5Z",
"width": 1000
},
"search": [
"expense_icon"
]
},
{
"uid": "234e08e0ba62aae4b87aac29b77f7189",
"css": "preferences",
"code": 59415,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M53.6 821.4C53.6 850.9 77.7 875 107.1 875H375V767.9H107.1C77.7 767.9 53.6 792 53.6 821.4ZM53.6 178.6C53.6 208 77.7 232.1 107.1 232.1H589.3V125H107.1C77.7 125 53.6 149.1 53.6 178.6ZM589.3 928.6V875H964.3C993.8 875 1017.9 850.9 1017.9 821.4 1017.9 792 993.8 767.9 964.3 767.9H589.3V714.3C589.3 684.8 565.2 660.7 535.7 660.7 506.3 660.7 482.1 684.8 482.1 714.3V928.6C482.1 958 506.3 982.1 535.7 982.1 565.2 982.1 589.3 958 589.3 928.6ZM267.9 392.9V446.4H107.1C77.7 446.4 53.6 470.5 53.6 500 53.6 529.5 77.7 553.6 107.1 553.6H267.9V607.1C267.9 636.6 292 660.7 321.4 660.7 350.9 660.7 375 636.6 375 607.1V392.9C375 363.4 350.9 339.3 321.4 339.3 292 339.3 267.9 363.4 267.9 392.9ZM1017.9 500C1017.9 470.5 993.8 446.4 964.3 446.4H482.1V553.6H964.3C993.8 553.6 1017.9 529.5 1017.9 500ZM750 339.3C779.5 339.3 803.6 315.2 803.6 285.7V232.1H964.3C993.8 232.1 1017.9 208 1017.9 178.6 1017.9 149.1 993.8 125 964.3 125H803.6V71.4C803.6 42 779.5 17.9 750 17.9 720.5 17.9 696.4 42 696.4 71.4V285.7C696.4 315.2 720.5 339.3 750 339.3Z",
"width": 1071
},
"search": [
"preferences"
]
},
{
"uid": "2d02314f37b222850d4a6c12340c7954",
"css": "home",
"code": 59450,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M416.7 791.7V583.3H583.3V791.7C583.3 814.6 602.1 833.3 625 833.3H750C772.9 833.3 791.6 814.6 791.6 791.7V500H862.5C881.6 500 890.8 476.2 876.2 463.8L527.9 150C512.1 135.8 487.9 135.8 472.1 150L123.7 463.8C109.6 476.2 118.3 500 137.5 500H208.3V791.7C208.3 814.6 227.1 833.3 250 833.3H375C397.9 833.3 416.7 814.6 416.7 791.7Z",
"width": 1000
},
"search": [
"home"
]
},
{
"uid": "09bb61c642f4a5bfcbe8fb7ee5e24023",
"css": "apartment",
"code": 59451,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M708.3 458.3V208.3C708.3 162.5 670.8 125 625 125H375C329.2 125 291.7 162.5 291.7 208.3V291.7H208.3C162.5 291.7 125 329.2 125 375V791.7C125 837.5 162.5 875 208.3 875H416.7C439.6 875 458.3 856.3 458.3 833.3V708.3H541.7V833.3C541.7 856.3 560.4 875 583.3 875H791.7C837.5 875 875 837.5 875 791.7V541.7C875 495.8 837.5 458.3 791.7 458.3H708.3ZM291.7 791.7H208.3V708.3H291.7V791.7ZM291.7 625H208.3V541.7H291.7V625ZM291.7 458.3H208.3V375H291.7V458.3ZM458.3 625H375V541.7H458.3V625ZM458.3 458.3H375V375H458.3V458.3ZM458.3 291.7H375V208.3H458.3V291.7ZM625 625H541.7V541.7H625V625ZM625 458.3H541.7V375H625V458.3ZM625 291.7H541.7V208.3H625V291.7ZM791.7 791.7H708.3V708.3H791.7V791.7ZM791.7 625H708.3V541.7H791.7V625Z",
"width": 1000
},
"search": [
"apartment"
]
},
{
"uid": "cf2354d9a3f105613ba97943d75ef620",
"css": "radioButtonUncheckedRounded",
"code": 59452,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM500 833.3C315.8 833.3 166.7 684.2 166.7 500 166.7 315.8 315.8 166.7 500 166.7 684.2 166.7 833.3 315.8 833.3 500 833.3 684.2 684.2 833.3 500 833.3Z",
"width": 1000
},
"search": [
"radio_button_unchecked_rounded"
]
},
{
"uid": "116e3fb0c5393bed77dd56897408d886",
"css": "radioButtonCheckedRounded",
"code": 59453,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM500 833.3C315.8 833.3 166.7 684.2 166.7 500 166.7 315.8 315.8 166.7 500 166.7 684.2 166.7 833.3 315.8 833.3 500 833.3 684.2 684.2 833.3 500 833.3ZM500 708.3C615.1 708.3 708.3 615.1 708.3 500 708.3 384.9 615.1 291.7 500 291.7 384.9 291.7 291.7 384.9 291.7 500 291.7 615.1 384.9 708.3 500 708.3Z",
"width": 1000
},
"search": [
"radio_button_checked_rounded"
]
},
{
"uid": "6eff87c591df2f015ffd8c0ccd46bd4d",
"css": "share",
"code": 59480,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M750 670C718.3 670 690 682.5 668.3 702.1L371.3 529.2C373.3 519.6 375 510 375 500 375 490 373.3 480.4 371.3 470.8L665 299.6C687.5 320.4 717.1 333.3 750 333.3 819.2 333.3 875 277.5 875 208.3 875 139.2 819.2 83.3 750 83.3 680.8 83.3 625 139.2 625 208.3 625 218.3 626.7 227.9 628.8 237.5L335 408.8C312.5 387.9 282.9 375 250 375 180.8 375 125 430.8 125 500 125 569.2 180.8 625 250 625 282.9 625 312.5 612.1 335 591.3L631.7 764.6C629.6 773.3 628.3 782.5 628.3 791.7 628.3 858.7 682.9 913.3 750 913.3 817.1 913.3 871.7 858.7 871.7 791.7 871.7 724.6 817.1 670 750 670Z",
"width": 1000
},
"search": [
"share-(1)"
]
},
{
"uid": "67897933d14dccc8984781dbdaff21af",
"css": "edit",
"code": 59406,
"src": "material"
},
{
"uid": "a78660671887c492073e542fdce08e52",
"css": "favorite",
"code": 59399,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M556.3 838.8C524.6 867.5 475.8 867.5 444.2 838.3L439.6 834.2C220.8 636.3 77.9 506.7 83.3 345 85.8 274.2 122.1 206.3 180.8 166.3 290.8 91.3 426.7 126.3 500 212.1 573.3 126.3 709.2 90.8 819.2 166.3 877.9 206.3 914.2 274.2 916.7 345 922.5 506.7 779.2 636.3 560.4 835L556.3 838.8Z",
"width": 1000
},
"search": [
"heart"
]
},
{
"uid": "7fea598763ae669e50c0a2349103e9cb",
"css": "apartmentScene",
"code": 59425,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M833.3 958.3V333.3C833.3 310.4 825.2 290.8 808.9 274.5 792.5 258.2 772.9 250 750 250H708.3V304.2C708.3 312.5 705.6 319.4 700 325 694.4 330.6 687.5 333.3 679.2 333.3H445.8C436.1 333.3 428.3 328.1 422.4 317.7 416.5 307.3 416 297.2 420.8 287.5L500 116.7C504.9 106.2 512 98.1 521.4 92.2 530.7 86.3 541.7 83.3 554.2 83.3H650C666.7 83.3 680.6 89.6 691.7 102.1 702.8 114.6 708.3 129.2 708.3 145.8V166.7H750C795.8 166.7 835.1 183 867.7 215.6 900.3 248.3 916.7 287.5 916.7 333.3V958.3H833.3ZM208.3 958.3C172.9 958.3 143.2 946.4 119.3 922.4 95.3 898.4 83.3 868.8 83.3 833.3V729.2C83.3 711.8 89.4 697 101.6 684.9 113.7 672.7 128.5 666.7 145.8 666.7 163.2 666.7 178 672.7 190.1 684.9 202.3 697 208.3 711.8 208.3 729.2V833.3H625V729.2C625 711.8 631.1 697 643.2 684.9 655.4 672.7 670.1 666.7 687.5 666.7 704.9 666.7 719.6 672.7 731.8 684.9 743.9 697 750 711.8 750 729.2V833.3C750 868.8 738 898.4 714.1 922.4 690.1 946.4 660.4 958.3 625 958.3H208.3ZM250 791.7V729.2C250 706.9 242.7 685.8 228.1 665.6 213.5 645.5 193.1 632.6 166.7 627.1V541.7C166.7 518.7 174.8 499.1 191.1 482.8 207.5 466.5 227.1 458.3 250 458.3H583.3C606.3 458.3 625.9 466.5 642.2 482.8 658.5 499.1 666.7 518.7 666.7 541.7V627.1C640.3 632.6 619.8 645.5 605.2 665.6 590.6 685.8 583.3 706.9 583.3 729.2V791.7H250Z",
"width": 1000
},
"search": [
"apartment_scene"
]
},
{
"uid": "080acd76b242057625e38e4c10e9eccb",
"css": "star",
"code": 59434,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M538.5 842.5L777.9 987.3C821.7 1013.8 875.4 974.6 863.9 925L800.4 652.7 1012.1 469.2C1050.8 435.8 1030 372.3 979.2 368.3L700.6 344.6 591.6 87.3C571.9 40.6 505 40.6 485.4 87.3L376.4 344 97.7 367.7C46.9 371.7 26.2 435.2 64.8 468.7L276.6 652.1 213.1 924.4C201.6 974 255.2 1013.3 299.1 986.7L538.5 842.5Z",
"width": 1077
},
"search": [
"star"
]
},
{
"uid": "695c8c6b6e326fb4af934a49c22699f8",
"css": "infoOutlined",
"code": 59404,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M458.3 291.7H541.7V375H458.3V291.7ZM500 708.3C522.9 708.3 541.7 689.6 541.7 666.7V500C541.7 477.1 522.9 458.3 500 458.3 477.1 458.3 458.3 477.1 458.3 500V666.7C458.3 689.6 477.1 708.3 500 708.3ZM500 83.3C270 83.3 83.3 270 83.3 500 83.3 730 270 916.7 500 916.7 730 916.7 916.7 730 916.7 500 916.7 270 730 83.3 500 83.3ZM500 833.3C316.3 833.3 166.7 683.8 166.7 500 166.7 316.3 316.3 166.7 500 166.7 683.8 166.7 833.3 316.3 833.3 500 833.3 683.8 683.8 833.3 500 833.3Z",
"width": 1000
},
"search": [
"infooutline"
]
},
{
"uid": "047074ef7962a4fe82ed66c7c3122891",
"css": "immo",
"code": 59433,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M710.9 93.8H1148.4C1165.6 93.8 1179.7 107.8 1179.7 125V875C1179.7 892.2 1165.6 906.3 1148.4 906.3H835.9C835.9 941.4 824.2 973.8 804.7 1000H1148.4C1217.4 1000 1273.4 943.9 1273.4 875V125C1273.4 56.1 1217.4 0 1148.4 0H710.9C642 0 585.9 56.1 585.9 125V243.4L679.7 329.3V125C679.7 107.8 693.8 93.8 710.9 93.8ZM830.5 500H867.2C884.4 500 898.4 485.9 898.4 468.8V406.3C898.4 389.1 884.4 375 867.2 375H804.7C787.5 375 773.4 389.1 773.4 406.3V415.2L785.4 426.2C807.2 446.3 822.9 471.9 830.5 500.2V500ZM835.9 687.5H867.2C884.4 687.5 898.4 673.4 898.4 656.3V593.8C898.4 576.6 884.4 562.5 867.2 562.5H835.9V687.5ZM960.9 406.3V468.8C960.9 485.9 975 500 992.2 500H1054.7C1071.9 500 1085.9 485.9 1085.9 468.8V406.3C1085.9 389.1 1071.9 375 1054.7 375H992.2C975 375 960.9 389.1 960.9 406.3ZM992.2 562.5C975 562.5 960.9 576.6 960.9 593.8V656.3C960.9 673.4 975 687.5 992.2 687.5H1054.7C1071.9 687.5 1085.9 673.4 1085.9 656.3V593.8C1085.9 576.6 1071.9 562.5 1054.7 562.5H992.2ZM804.7 187.5C787.5 187.5 773.4 201.6 773.4 218.8V281.3C773.4 298.4 787.5 312.5 804.7 312.5H867.2C884.4 312.5 898.4 298.4 898.4 281.3V218.8C898.4 201.6 884.4 187.5 867.2 187.5H804.7ZM960.9 218.8V281.3C960.9 298.4 975 312.5 992.2 312.5H1054.7C1071.9 312.5 1085.9 298.4 1085.9 281.3V218.8C1085.9 201.6 1071.9 187.5 1054.7 187.5H992.2C975 187.5 960.9 201.6 960.9 218.8ZM64.1 462.9C38.1 486.5 23.4 519.9 23.4 555.1V875C23.4 943.9 79.5 1000 148.4 1000H648.4C717.4 1000 773.4 943.9 773.4 875V555.1C773.4 520.1 758.8 486.5 732.8 462.9L482.8 233.8C435 190 361.7 190 313.9 233.8L64.1 462.9ZM117.2 555.1C117.2 546.3 120.9 537.9 127.3 532L377.3 302.7C389.3 291.8 407.6 291.8 419.5 302.7L669.5 531.8C676 537.7 679.7 546.1 679.7 554.9V875C679.7 892.2 665.6 906.3 648.4 906.3H148.4C131.3 906.3 117.2 892.2 117.2 875V555.1ZM304.7 578.1V671.9C304.7 697.9 325.6 718.8 351.6 718.8H445.3C471.3 718.8 492.2 697.9 492.2 671.9V578.1C492.2 552.1 471.3 531.3 445.3 531.3H351.6C325.6 531.3 304.7 552.1 304.7 578.1Z",
"width": 1313
},
"search": [
"immo"
]
},
{
"uid": "a848537497d1a7a3c38bd63d215da682",
"css": "immoSelected",
"code": 59397,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M742.2 0C690.4 0 648.4 42 648.4 93.8V300.6L773.4 415.2V406.3C773.4 389.1 787.5 375 804.7 375H867.2C884.4 375 898.4 389.1 898.4 406.3V468.8C898.4 485.9 884.4 500 867.2 500H830.5C834.2 513.3 835.9 527.1 835.9 541.2V562.5H867.2C884.4 562.5 898.4 576.6 898.4 593.8V656.3C898.4 673.4 884.4 687.5 867.2 687.5H835.9V906.3C835.9 941.4 824.2 973.8 804.7 1000H1179.7C1231.4 1000 1273.4 958 1273.4 906.3V93.8C1273.4 42 1231.4 0 1179.7 0H742.2ZM1023.4 406.3C1023.4 389.1 1037.5 375 1054.7 375H1117.2C1134.4 375 1148.4 389.1 1148.4 406.3V468.8C1148.4 485.9 1134.4 500 1117.2 500H1054.7C1037.5 500 1023.4 485.9 1023.4 468.8V406.3ZM1054.7 562.5H1117.2C1134.4 562.5 1148.4 576.6 1148.4 593.8V656.3C1148.4 673.4 1134.4 687.5 1117.2 687.5H1054.7C1037.5 687.5 1023.4 673.4 1023.4 656.3V593.8C1023.4 576.6 1037.5 562.5 1054.7 562.5ZM804.7 187.5H867.2C884.4 187.5 898.4 201.6 898.4 218.8V281.3C898.4 298.4 884.4 312.5 867.2 312.5H804.7C787.5 312.5 773.4 298.4 773.4 281.3V218.8C773.4 201.6 787.5 187.5 804.7 187.5ZM1023.4 218.8C1023.4 201.6 1037.5 187.5 1054.7 187.5H1117.2C1134.4 187.5 1148.4 201.6 1148.4 218.8V281.3C1148.4 298.4 1134.4 312.5 1117.2 312.5H1054.7C1037.5 312.5 1023.4 298.4 1023.4 281.3V218.8ZM23.4 541.2V906.3C23.4 958 65.4 1000 117.2 1000H679.7C731.4 1000 773.4 958 773.4 906.3V541.2C773.4 514.8 762.5 489.8 743 472.1L461.7 214.3C425.8 181.4 370.9 181.4 335 214.3L53.7 472.1C34.4 489.8 23.4 515 23.4 541.2ZM304.7 578.1C304.7 552.1 325.6 531.3 351.6 531.3H445.3C471.3 531.3 492.2 552.1 492.2 578.1V671.9C492.2 697.9 471.3 718.8 445.3 718.8H351.6C325.6 718.8 304.7 697.9 304.7 671.9V578.1Z",
"width": 1313
},
"search": [
"immo_selected"
]
},
{
"uid": "5baa679d976c1b815a462dd5eac8df61",
"css": "startSelected",
"code": 59435,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1179.2 499C1179.2 534.2 1149.9 561.7 1116.7 561.7H1054.2L1055.6 874.6C1055.6 879.9 1055.2 885.2 1054.6 890.4V922.1C1054.6 965.2 1019.7 1000.2 976.5 1000.2H945.2C943.1 1000.2 940.9 1000.2 938.8 1000 936.1 1000.2 933.3 1000.2 930.6 1000.2L867.1 1000H820.2C777.1 1000 742.1 965 742.1 921.9V875 750C742.1 715.4 714.2 687.5 679.6 687.5H554.6C520 687.5 492.1 715.4 492.1 750V875 921.9C492.1 965 457.2 1000 414 1000H367.1 304.8C301.9 1000 298.9 999.8 296 999.6 293.7 999.8 291.3 1000 289 1000H257.7C214.6 1000 179.6 965 179.6 921.9V703.1C179.6 701.4 179.6 699.4 179.8 697.7V561.5H117.3C82.2 561.5 54.8 534.2 54.8 498.8 54.8 481.3 60.7 465.6 74.3 452L574.9 15.6C588.6 2 604.2 0 617.9 0 631.6 0 647.2 3.9 658.9 13.7L1157.7 452.1C1173.4 465.8 1181.2 481.4 1179.2 499Z",
"width": 1188
},
"search": [
"home_selected"
]
},
{
"uid": "238167a2279361a96ea0cea82934e3d4",
"css": "start",
"code": 59432,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M647.6 11.1C630-3.7 604.4-3.7 586.8 11.1L71.2 448.6C51.5 465.4 49.1 494.9 65.7 514.6 82.3 534.4 112 536.7 131.7 520.1L179.8 479.5V843.8C179.8 930.1 249.7 1000 336 1000H898.5C984.9 1000 1054.8 930.1 1054.8 843.8V479.5L1102.6 520.1C1122.4 536.9 1152.1 534.4 1168.7 514.6 1185.3 494.9 1182.9 465.2 1163.2 448.6L647.6 11.1ZM273.5 843.8V400L617.3 108.4 961 400V843.8C961 878.3 933.1 906.3 898.5 906.3H804.8V609.4C804.8 566.2 769.8 531.3 726.7 531.3H507.9C464.8 531.3 429.8 566.2 429.8 609.4V906.3H336C301.5 906.3 273.5 878.3 273.5 843.8ZM523.5 906.3V625H711V906.3H523.5Z",
"width": 1188
},
"search": [
"home"
]
},
{
"uid": "d754a4bdbfb614f66897dcaca4f9edbb",
"css": "finance",
"code": 59403,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M382.8 171.9C382.8 172.1 383 173 384 174.8 385.2 177.1 387.9 180.9 393.2 185.5 393.9 186.1 394.7 186.9 395.5 187.5 359 188.3 323.4 190.8 289.3 195.5L289.1 171.9C289.1 136.7 308 108.6 330.3 88.5 352.5 68.4 382.4 52.3 415.2 39.8 481.3 14.6 569.3 0 664.1 0 758.8 0 846.9 14.6 912.7 39.6 945.5 52.1 975.4 68.2 997.7 88.3 1019.9 108.4 1039.1 136.7 1039.1 171.9V375 578.1C1039.1 613.3 1020.1 641.4 997.9 661.5 975.6 681.6 945.7 697.7 912.9 710.2 894.1 717.4 873.6 723.6 851.8 728.9V631.8C861.7 628.9 870.9 625.8 879.5 622.5 906.1 612.3 924.4 601.4 935.2 591.8 940.4 587.1 943.2 583.4 944.3 581.1 945.5 578.9 945.5 578.1 945.5 578.1V493C935.2 498 924.2 502.7 912.9 507 894.1 514.3 873.6 520.5 851.8 525.8V428.7C861.7 425.8 870.9 422.7 879.5 419.3 906.1 409.2 924.4 398.2 935.2 388.7 940.4 384 943.2 380.3 944.3 377.9 945.3 376.2 945.5 375.2 945.5 375V289.8C935.2 294.9 924.2 299.6 912.9 303.9 886.1 314.1 855.5 322.7 822.5 329.1 812.5 314.5 801 302 789.6 291.8 769.9 274 747.1 259.6 723.2 247.7 785.2 243.2 839.1 231.6 879.5 216.2 906.1 206.1 924.4 195.1 935.2 185.5 940.4 180.9 943.2 177.1 944.3 174.8 945.3 173 945.5 172.1 945.5 171.9 945.5 171.9 945.5 170.9 944.3 168.9 943.2 166.6 940.4 162.9 935.2 158.2 924.4 148.4 906.1 137.5 879.5 127.5 826.6 107.2 750.4 93.8 664.1 93.8 577.7 93.8 501.6 107.2 448.8 127.3 422.3 137.5 403.9 148.4 393.2 158 387.9 162.7 385.2 166.4 384 168.8 382.8 170.9 382.8 171.7 382.8 171.7V171.9ZM132.8 421.9C132.8 422.1 133 423 134 424.8 135.2 427.1 137.9 430.9 143.2 435.5 153.9 445.3 172.3 456.3 198.8 466.2 251.6 486.3 327.7 499.8 414.1 499.8 500.4 499.8 576.6 486.3 629.3 466.2 655.9 456.1 674.2 445.1 685 435.5 690.2 430.9 693 427.1 694.1 424.8 695.1 423 695.3 422.1 695.3 421.9 695.3 421.9 695.3 420.9 694.1 418.9 693 416.6 690.2 412.9 685 408.2 674.2 398.4 655.9 387.5 629.3 377.5 576.6 357.4 500.4 343.9 414.1 343.9 327.7 343.9 251.6 357.4 198.8 377.5 172.3 387.7 153.9 398.6 143.2 408.2 137.9 412.9 135.2 416.6 134 418.9 132.8 421.1 132.8 421.9 132.8 421.9ZM39.1 421.9C39.1 386.7 58 358.6 80.3 338.5 102.5 318.4 132.4 302.3 165.2 289.8 231.3 264.6 319.3 250 414.1 250 508.8 250 596.9 264.6 662.7 289.6 695.5 302.1 725.4 318.2 747.7 338.3 769.9 358.4 789.1 386.7 789.1 421.9V625 828.1C789.1 863.3 770.1 891.4 747.9 911.5 725.6 931.6 695.7 947.7 662.9 960.2 596.9 985.3 508.8 1000 414.1 1000 319.3 1000 231.3 985.3 165.4 960.4 132.6 947.9 102.9 931.8 80.5 911.7 58 891.6 39.1 863.3 39.1 828.1V625 421.9ZM695.3 625V539.8C685 544.9 674 549.6 662.7 553.9 596.9 579.1 508.8 593.8 414.1 593.8 319.3 593.8 231.3 579.1 165.4 554.1 154.1 549.8 143.2 545.1 132.8 540V625C132.8 625.2 133 626.2 134 627.9 135.2 630.3 137.9 634 143.2 638.7 153.9 648.4 172.3 659.4 198.8 669.3 251.6 689.5 327.7 702.9 414.1 702.9 500.4 702.9 576.6 689.5 629.3 669.3 655.9 659.2 674.2 648.2 685 638.7 690.2 634 693 630.3 694.1 627.9 695.1 626.2 695.3 625.2 695.3 625ZM165.4 757.2C154.1 752.9 143.2 748.2 132.8 743.2V828.1C132.8 828.1 132.8 829.1 134 831.1 135.2 833.4 137.9 837.1 143.2 841.8 153.9 851.6 172.3 862.5 198.8 872.5 251.6 892.6 327.7 906.1 414.1 906.1 500.4 906.1 576.6 892.6 629.3 872.5 655.9 862.3 674.2 851.4 685 841.8 690.2 837.1 693 833.4 694.1 831.1 695.3 828.9 695.3 828.1 695.3 828.1V743C685 748 674 752.7 662.7 757 596.9 782.2 508.8 796.9 414.1 796.9 319.3 796.9 231.3 782.2 165.4 757.2Z",
"width": 1063
},
"search": [
"finance"
]
},
{
"uid": "c57c4305310ea4a975783c93b5cf8f68",
"css": "financeSelected",
"code": 59437,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M1039.1 156.3C1039.1 191.4 1011.1 223.8 964.1 250 907.2 281.4 822.5 303.7 725.2 310.4 718 306.8 710.7 303.5 703.1 300.6 626.2 268.4 523.8 250 414.1 250 397.9 250 382 250.4 366.2 251.2L364.1 250C317 223.8 289.1 191.4 289.1 156.3 289.1 69.9 457 0 664.1 0 871.1 0 1039.1 69.9 1039.1 156.3ZM352.9 314.6C372.9 313.3 393.4 312.5 414.1 312.5 535.5 312.5 643.4 336.5 711.9 373.8 760.4 400.2 789.1 433 789.1 468.8 789.1 476.6 787.7 484.2 785 491.6 776 517.4 751.8 541 716.6 560.9 716.4 561.1 716 561.1 715.8 561.3 715.2 561.7 714.6 561.9 714.1 562.3 645.7 600.2 536.7 624.8 414.1 624.8 297.7 624.8 193.6 602.7 124.6 568 120.9 566.2 117.4 564.3 113.9 562.3 67 536.3 39.1 503.9 39.1 468.8 39.1 400.8 143.4 342.8 289.1 321.5 309.6 318.6 330.9 316.2 352.9 314.6ZM851.6 468.8C851.6 426 830.9 390.8 804.5 364.5 859.8 355.9 910.4 342.2 953.3 324.4 985.2 311.1 1014.8 294.7 1039.1 274.6V343.8C1039.1 381.4 1006.8 416.2 953.5 443.2 925 457.6 890.2 469.9 851.2 479.3 851.4 475.8 851.6 472.5 851.6 468.9V468.8ZM789.1 656.3C789.1 691.4 761.1 723.8 714.1 750 710.6 752 707 753.7 703.3 755.7 634.6 790.4 530.5 812.5 414.1 812.5 291.4 812.5 182.4 787.9 114.1 750 67 723.8 39.1 691.4 39.1 656.3V587.1C63.5 607.2 93 623.6 124.8 636.9 202 669.1 304.3 687.5 414.1 687.5 523.8 687.5 626.2 669.1 703.3 636.9 718.6 630.7 733.2 623.4 747.1 615.6 759 609 770.1 601.6 780.7 593.8 783.6 591.6 786.3 589.3 789.1 587.1V593.8 604.9 656.3ZM851.6 656.3V593.8 543.2C888.7 535 922.8 524.6 953.3 511.9 985.2 498.6 1014.8 482.2 1039.1 462.1V531.3C1039.1 551.8 1029.3 572.3 1010 591.6 978.1 623.4 922.1 649.6 851.2 666.6 851.4 663.3 851.6 659.8 851.6 656.3ZM414.1 875C523.8 875 626.2 856.6 703.3 824.4 735.2 811.1 764.8 794.7 789.1 774.6V843.8C789.1 930.1 621.1 1000 414.1 1000 207 1000 39.1 930.1 39.1 843.8V774.6C63.5 794.7 93 811.1 124.8 824.4 202 856.6 304.3 875 414.1 875Z",
"width": 1063
},
"search": [
"finance_selected"
]
},
{
"uid": "df40d4c78c91faf1e3e0fb9ef9dd0f8e",
"css": "lightbulbOn",
"code": 59413,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M108.3 131.3C91.1 119.8 67.8 124.5 56.3 141.7 44.7 158.9 49.4 182.2 66.7 193.8L141.7 243.7C158.9 255.3 182.2 250.6 193.8 233.3 205.3 215.9 200.6 192.8 183.3 181.2L108.3 131.3ZM933.3 193.8C950.5 182.2 955.2 158.9 943.7 141.7 932.3 124.5 908.9 119.8 891.7 131.3L816.7 181.2C799.5 192.8 794.8 216.1 806.3 233.3 817.7 250.5 841.1 255.2 858.3 243.7L933.3 193.8ZM37.5 375C16.7 375 0 391.7 0 412.5 0 433.3 16.7 450 37.5 450H137.5C158.3 450 175 433.3 175 412.5 175 391.7 158.3 375 137.5 375H37.5ZM862.5 375C841.7 375 825 391.7 825 412.5 825 433.3 841.7 450 862.5 450H962.5C983.3 450 1000 433.3 1000 412.5 1000 391.7 983.3 375 962.5 375H862.5ZM183.3 643.7C200.5 632.2 205.2 608.9 193.8 591.7 182.3 574.5 158.9 569.8 141.7 581.2L66.7 631.3C49.5 642.8 44.8 666.1 56.3 683.3 67.7 700.5 91.1 705.2 108.3 693.7L183.3 643.7ZM858.3 581.4C841.1 569.8 817.8 574.5 806.3 591.9 794.7 609.2 799.4 632.3 816.7 643.9L891.7 693.9C908.9 705.5 932.2 700.8 943.7 683.4 955.3 666.1 950.6 643 933.3 631.4L858.3 581.4ZM700 400C700 442.5 686.9 481.7 664.4 513.9 658.6 522.2 651.9 531.6 644.5 541.6 624.4 569.2 600.3 602.3 582.3 635 566.1 664.7 557.8 695.6 553.7 724.8H629.7C633.1 706.1 638.9 687.8 648.1 670.9 663.6 642.8 682.8 616.4 702 590 710.2 578.9 718.3 567.8 726.1 556.6 757 512 775.2 458.1 775.2 399.8 775 248.1 651.9 125 500 125 348.1 125 225 248.1 225 400 225 458.3 243.1 512.3 274.1 556.7 281.9 568 290 579.1 298.1 590.2 317.3 616.4 336.6 642.8 352 671.1 361.3 688 367 706.2 370.5 725H446.4C442.3 695.8 434.1 664.7 417.8 635.2 399.8 602.5 375.8 569.4 355.6 541.7 348.3 531.7 341.6 522.3 335.6 514.1 313.1 481.7 300 442.5 300 400 300 289.5 389.5 200 500 200 610.5 200 700 289.5 700 400ZM425 400C425 358.6 458.6 325 500 325 513.8 325 525 313.8 525 300 525 286.3 513.8 275 500 275 430.9 275 375 330.9 375 400 375 413.7 386.2 425 400 425 413.7 425 425 413.7 425 400ZM625 800V775H375V800C375 869.1 430.9 925 500 925 569.1 925 625 869.1 625 800Z",
"width": 1000
},
"search": [
"lightbulb-on"
]
},
{
"uid": "e5565dff486f85800c858518ff12d4e4",
"css": "help",
"code": 59421,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M192.6 192.6C265.5 119.8 370.7 83.3 500 83.3 629.3 83.3 734.5 119.8 807.4 192.6 880.2 265.5 916.7 370.7 916.7 500 916.7 629.3 880.2 734.5 807.4 807.4 734.5 880.2 629.3 916.7 500 916.7 370.7 916.7 265.5 880.2 192.6 807.4 119.8 734.5 83.3 629.3 83.3 500 83.3 370.7 119.8 265.5 192.6 192.6ZM509 362.1C481.4 356.6 454 379.1 454 407.3 454 431.9 434 451.9 409.3 451.9 384.7 451.9 364.7 431.9 364.7 407.3 364.7 322.8 443.6 258 526.5 274.5 579.4 285 622.3 327.9 632.8 380.9 638.1 407.5 635 433 623.4 456 612.1 478.2 594.3 494.9 575.3 507.7 567.3 513 561 517.3 555.7 521.2 550.5 525.2 547.3 528 545.4 530 545.1 530.3 544.8 530.6 544.6 530.8 543.3 554.3 523.8 572.9 500 572.9 475.4 572.9 455.4 552.9 455.4 528.2 455.4 502.4 466.8 482.9 481 468.1 493.5 455.1 510.3 443.7 525.6 433.4 536.4 426.2 541.5 420.1 543.8 415.6 545.6 411.8 547 406.9 545.2 398.3 541.8 380.8 526.5 365.5 509 362.1ZM500 623.3C524.7 623.3 544.6 643.3 544.6 667.9V683.4C544.6 708.1 524.7 728.1 500 728.1 475.4 728.1 455.4 708.1 455.4 683.4V667.9C455.4 643.3 475.4 623.3 500 623.3Z",
"width": 1000
},
"search": [
"help"
]
},
{
"uid": "53bb81b7880f1ae77287e75a4ff62db1",
"css": "bank1",
"code": 59440,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M522.7 5.9C508.6-2 491.4-2 477.3 5.9L34.4 250.2C13.1 261.9 0 284.2 0 308.4 0 345.3 29.7 375 66.6 375H933.6C970.3 375 1000.2 345.3 1000.2 308.4 1000.2 284.2 987.1 261.9 965.8 250.2L522.7 5.9ZM445.9 281.3H172.3L500 100.4 827.7 281.3H554.1C559.4 272.1 562.5 261.3 562.5 250 562.5 215.4 534.6 187.5 500 187.5 465.4 187.5 437.5 215.4 437.5 250 437.5 261.3 440.6 272.1 445.9 281.3ZM125 437.5V750C99 750 78.1 770.9 78.1 796.9 78.1 822.8 99 843.8 125 843.8H890.6C916.6 843.8 937.5 822.8 937.5 796.9 937.5 770.9 916.6 750 890.6 750H875V437.5H781.3V750H656.3V437.5H562.5V750H437.5V437.5H343.8V750H218.8V437.5H125ZM62.5 906.3C36.5 906.3 15.6 927.1 15.6 953.1 15.6 979.1 36.5 1000 62.5 1000H953.1C979.1 1000 1000 979.1 1000 953.1 1000 927.1 979.1 906.3 953.1 906.3H62.5Z",
"width": 1000
},
"search": [
"bank"
]
},
{
"uid": "f6617fea4dab46c0d0e25e9b1859d6a1",
"css": "gavel",
"code": 59441,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M611.3 13.7C629.5 31.8 629.7 61.1 611.7 79.5L920.5 388.3C938.9 370.3 968.2 370.5 986.3 388.7 1004.7 407 1004.7 436.7 986.3 454.9L953.7 487.7 767.6 673.8 736.3 705.1C718 723.4 688.3 723.4 670.1 705.1 652.5 687.5 651.8 659.2 668.4 640.8L359.4 331.8C341 348.2 312.7 347.7 295.1 330.1 276.8 311.7 276.8 282 295.1 263.9L326.4 232.6 512.3 46.5 544.9 13.7C563.3-4.7 593-4.7 611.1 13.7H611.3ZM545.3 145.9L425.6 265.6 734.4 574.4 854.1 454.7 545.3 145.9ZM436.3 497.3L502.5 563.5 405.3 660.7 418.9 674.4C443.4 698.8 443.4 738.5 418.9 762.9L200.2 981.6C175.8 1006 136.1 1006 111.7 981.6L18 887.9C-6.4 863.5-6.4 823.8 18 799.4L236.7 580.7C261.1 556.2 300.8 556.2 325.2 580.7L338.9 594.3 436.1 497.1 436.3 497.3ZM281.2 669.1L106.6 843.7 156.2 893.4 330.9 718.7 281.2 669.1Z",
"width": 1000
},
"search": [
"gavel"
]
},
{
"uid": "7879d17e0928290a1b24d980f9b10a9d",
"css": "timer",
"code": 59442,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M453.1 46.9C453.1 20.9 474 0 500 0 776.2 0 1000 223.8 1000 500 1000 776.2 776.2 1000 500 1000 223.8 1000 0 776.2 0 500 0 426 16 355.9 44.9 292.8 56.6 267 70.5 242.4 86.3 219.3L86.5 218.9C104.3 192.8 124.2 168.6 146.5 146.5 164.8 128.1 194.5 128.1 212.7 146.5 230.9 164.8 231.1 194.5 212.7 212.7 194.7 230.7 178.3 250.4 163.9 271.5L163.7 271.9C122.3 332.8 96.9 405.7 93.9 484.2 93.8 489.5 93.6 494.7 93.6 500 93.6 724.4 275.4 906.3 499.8 906.3 724.2 906.3 906.1 724.4 906.1 500 906.1 291.4 749 119.7 546.7 96.5V203.1C546.7 229.1 525.8 250 499.8 250 473.8 250 452.9 229.1 452.9 203.1V46.9H453.1ZM310.5 310.5C328.9 292.2 358.6 292.2 376.8 310.5L533 466.8C551.4 485.2 551.4 514.8 533 533 514.6 551.2 485 551.4 466.8 533L310.5 376.8C292.2 358.4 292.2 328.7 310.5 310.5Z",
"width": 1000
},
"search": [
"timer"
]
},
{
"uid": "a9a1d224245a7c5ffe11f279a633b702",
"css": "renovationSelected",
"code": 59490,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M276 166.7C172.5 166.7 88.5 250.7 88.5 354.2 88.5 361.3 92.3 368.1 98.4 371.9 104.6 375.7 112.2 376 118.8 372.8L185.5 339.5C203.6 361.7 230.9 375 260.3 375H346.6C375.1 375 401.3 358.9 414.1 333.3H463.7C463.7 356.4 482.3 375 505.3 375 528.4 375 547 356.4 547 333.3V208.3C547 185.3 528.4 166.7 505.3 166.7 482.3 166.7 463.7 185.3 463.7 208.3H414.1C401.2 182.8 375 166.7 346.5 166.7H276ZM234.4 416.7L217.7 750.1C215.5 795.4 251.6 833.3 296.9 833.3 342.2 833.3 378.3 795.4 376 750.1L359.4 416.7H234.4ZM633.1 824.7L660 743.9C663.8 732.4 679.9 732.4 683.7 743.9L710.7 824.7C712.4 829.8 717.2 833.3 722.5 833.3H859.4C893.9 833.3 921.9 805.3 921.9 770.8V583.3H546.9V770.8C546.9 805.3 574.9 833.3 609.4 833.3H621.2C626.6 833.3 631.4 829.9 633.1 824.7ZM584 475.3C561.6 490.2 547.9 515 546.9 541.7H921.9C921 515 907.2 490.2 884.8 475.3L800 418.8C799 418.1 797.9 417.6 796.9 417.2V229.2C796.9 194.7 768.9 166.7 734.4 166.7 699.9 166.7 671.9 194.7 671.9 229.2V417.3C670.7 417.7 669.7 418.2 668.8 418.9L584 475.3ZM734.4 250C728.8 250 723.6 247.8 719.6 243.9 715.7 240 713.5 234.7 713.5 229.2 713.5 223.6 715.7 218.3 719.6 214.4 723.6 210.5 728.8 208.3 734.4 208.3 739.9 208.3 745.2 210.5 749.1 214.4 753 218.3 755.2 223.6 755.2 229.2 755.2 234.7 753 240 749.1 243.9 745.2 247.8 739.9 250 734.4 250Z",
"width": 1042
},
"search": [
"renovation"
]
},
{
"uid": "f37f4a3c21356f0858cfcd9311d0e83e",
"css": "renovation",
"code": 59496,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M286.5 166.7C177.2 166.7 88.5 255.3 88.5 364.6V385.4C88.5 396.2 94.1 406.3 103.4 412 112.6 417.7 124.1 418.2 133.9 413.4L193.4 383.6C206.6 397.5 223.6 407.7 242.2 412.9L219.3 750.1C216.1 795.2 251.8 833.3 296.9 833.3 341.9 833.3 377.6 795.2 374.5 750.1L351.8 416.4C382.3 414.2 410.3 399 428.6 375H484.4V385.4C484.4 402.7 498.3 416.7 515.6 416.7 532.9 416.7 546.9 402.7 546.9 385.4V344 343.8 239.6 239.3 197.9C546.9 180.6 532.9 166.7 515.6 166.7 498.3 166.7 484.4 180.6 484.4 197.9V208.3H428.6C408.6 182.4 377.5 166.7 344 166.7H286.5ZM484.4 312.5H411.5C399.6 312.5 388.8 319.1 383.5 329.8 376 344.8 360.7 354.2 344 354.2H270.6C253.9 354.2 238.5 344.7 231.1 329.8 223.4 314.3 204.7 308.1 189.2 315.9L154.7 332.9C169 273.4 222.5 229.2 286.5 229.2H344C360.7 229.2 376 238.7 383.5 253.5 388.8 264.2 399.6 270.8 411.5 270.8H484.4V312.5ZM859.4 770.8H713.5V708.3C713.5 696.9 704.2 687.5 692.7 687.5 681.3 687.5 671.9 696.9 671.9 708.3V770.8H609.4V583.3H859.4V770.8ZM584 475.3C560.8 490.8 546.9 516.8 546.9 544.7V770.8C546.9 805.3 574.9 833.3 609.4 833.3H859.4C893.9 833.3 921.9 805.3 921.9 770.8V544.7C921.9 516.8 907.9 490.8 884.8 475.3L796.9 416.7V229.2C796.9 194.7 768.9 166.7 734.4 166.7 699.9 166.7 671.9 194.7 671.9 229.2V416.7L584 475.3ZM713.5 229.2C713.5 223.6 715.7 218.3 719.6 214.4 723.6 210.5 728.8 208.3 734.4 208.3 739.9 208.3 745.2 210.5 749.1 214.4 753 218.3 755.2 223.6 755.2 229.2 755.2 234.7 753 240 749.1 243.9 745.2 247.8 739.9 250 734.4 250 728.8 250 723.6 247.8 719.6 243.9 715.7 240 713.5 234.7 713.5 229.2Z",
"width": 1042
},
"search": [
"renovation"
]
},
{
"uid": "b36ccfefe052983d49cfd7ae7f58b3a5",
"css": "rotate_left",
"code": 59445,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M301.1 332.5C281.9 313.3 249 316.7 236.1 340.4 224.4 361.7 215.3 383.3 208.2 406.3 200.3 432.5 221.1 458.3 248.2 458.3H248.6C266.5 458.3 282.8 446.7 287.8 429.2 292.8 412.5 299.4 396.3 307.8 380.4 316.9 365 314 345.4 301.1 332.5ZM249 541.7H248.2C221.1 541.7 200.3 567.5 208.2 593.8 214.9 616.3 224 638.3 235.7 659.6 248.6 683.3 281.9 687.1 301.1 667.9 313.6 655 316.9 635.8 308.2 620 299.9 604.6 293.2 588.3 288.2 571.7 283.2 553.3 266.9 541.7 249 541.7ZM367.8 792.5C389 804.2 411.1 813.3 434 820 459.9 827.5 485.7 806.7 485.7 780V778.8C485.7 760.8 474 744.6 456.5 739.6 439.9 734.6 424 727.9 408.6 719.6 392.8 710.8 372.8 713.8 360.3 726.7L359 727.9C340.3 746.7 344 779.6 367.8 792.5ZM569.4 169.6V142.1C569.4 105 524.4 86.3 498.2 112.5L409.9 201.3C393.2 217.9 393.2 244.6 409.9 260.8L498.6 347.5C524.9 373.3 569.4 354.6 569.4 317.5V253.8C687.8 273.8 777.8 376.3 777.8 500 777.8 613.8 701.9 709.2 597.8 739.6 580.7 744.6 569.4 760.8 569.4 778.8V779.6C569.4 806.7 594.9 827.1 620.7 819.6 759.9 779.6 861.1 651.7 861.1 500 861.1 330 734 190 569.4 169.6Z",
"width": 1056
},
"search": [
"rotate_left"
]
},
{
"uid": "cabeacc899655d5d6aa14c91a35a4aaf",
"css": "options",
"code": 59503,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M93.8 875V125C93.8 107.8 107.8 93.8 125 93.8H437.5V250C437.5 284.6 465.4 312.5 500 312.5H656.3V875C656.3 892.2 642.2 906.3 625 906.3H125C107.8 906.3 93.8 892.2 93.8 875ZM125 0C56.1 0 0 56.1 0 125V875C0 943.9 56.1 1000 125 1000H625C693.9 1000 750 943.9 750 875V301.8C750 268.6 736.9 236.7 713.5 213.3L536.5 36.5C513.1 13.1 481.4 0 448.2 0H125ZM421.9 546.9C421.9 520.9 401 500 375 500 349 500 328.1 520.9 328.1 546.9V796.9C328.1 822.9 349 843.8 375 843.8 401 843.8 421.9 822.9 421.9 796.9V546.9ZM593.8 609.4C593.8 583.4 572.9 562.5 546.9 562.5 520.9 562.5 500 583.4 500 609.4V796.9C500 822.9 520.9 843.8 546.9 843.8 572.9 843.8 593.8 822.9 593.8 796.9V609.4ZM250 671.9C250 645.9 229.1 625 203.1 625 177.1 625 156.3 645.9 156.3 671.9V796.9C156.3 822.9 177.1 843.8 203.1 843.8 229.1 843.8 250 822.9 250 796.9V671.9Z",
"width": 750
},
"search": [
"options"
]
},
{
"uid": "00e8cd1fee80bcc3b395780158908b42",
"css": "service",
"code": 59504,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M53.7 91.6L245.5 379.1C266.5 357.3 289.9 338 315.4 321.7L174.2 110H295.2L398.1 281.6C427.7 271.2 458.9 264.5 491.1 261.7L479.7 242.7 363.4 49.1C352.6 31.1 333.1 20 312.1 20H92.1C66.6 20 46 40.6 46 66.1 46 75.1 48.6 84.1 53.7 91.6ZM572.3 242.6L560.9 261.5C593.1 264.3 624.2 271.2 653.9 281.4L757 110H877.9L736.7 321.7C762.2 338 785.7 357.3 806.7 379.1L998.3 91.6C1003.4 84.1 1006 75.1 1006 66.1 1006 40.6 985.4 20 959.9 20H739.9C718.9 20 699.2 31.1 688.6 49.1L572.5 242.6H572.3ZM526 410C589.6 410 650.7 435.3 695.7 480.3 740.7 525.3 766 586.3 766 650 766 713.6 740.7 774.7 695.7 819.7 650.7 864.7 589.6 890 526 890 462.3 890 401.3 864.7 356.3 819.7 311.3 774.7 286 713.6 286 650 286 586.3 311.3 525.3 356.3 480.3 401.3 435.3 462.3 410 526 410ZM526 980C613.5 980 697.5 945.2 759.3 883.3 821.2 821.5 856 737.5 856 650 856 562.5 821.2 478.5 759.3 416.7 697.5 354.8 613.5 320 526 320 438.5 320 354.5 354.8 292.7 416.7 230.8 478.5 196 562.5 196 650 196 737.5 230.8 821.5 292.7 883.3 354.5 945.2 438.5 980 526 980ZM539.5 497.2C534.1 486.1 518.1 486.1 512.7 497.2L476.7 570.1C474.4 574.6 470.3 577.6 465.4 578.4L384.8 590C372.4 591.9 367.6 606.9 376.6 615.5L434.7 672.1C438.2 675.5 439.7 680.6 439 685.4L425.3 765.5C423.2 777.7 436 787.1 447.1 781.2L519.1 743.7C523.4 741.5 528.6 741.5 532.9 743.7L604.9 781.6C616 787.4 628.7 778.1 626.7 765.9L613 685.6C612.2 680.7 613.7 675.9 617.3 672.3L675.4 615.7C684.2 607.1 679.4 591.9 667.2 590.2L586.7 578.6C581.9 577.8 577.6 574.8 575.5 570.3L539.5 497.4V497.2Z",
"width": 1050
},
"search": [
"service"
]
},
{
"uid": "a5aeb93d77f3fda0baac09a354c218f3",
"css": "question",
"code": 59505,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M165.3 619.6C183.7 585.3 178.1 543.1 151.3 514.9 111.3 472.9 89.9 422.5 89.9 370 89.9 250.9 209.6 130 389.9 130 570.3 130 689.9 250.9 689.9 370 689.9 489.1 570.3 610 389.9 610 365.4 610 341.6 607.6 319.1 603.3 299.6 599.5 279.3 602.1 261.5 611.1 253.8 615.1 245.9 618.8 237.9 622.4 207.9 635.9 176.2 647.7 144.3 656.1 149.6 647.5 154.4 639.1 159.1 630.6 161.2 627.1 163.3 623.3 165.1 619.6H165.3ZM389.9 700C605.4 700 779.9 552.3 779.9 370 779.9 187.8 605.4 40 389.9 40 174.5 40-0.1 187.8-0.1 370-0.1 448.4 32.2 520.2 86 576.8 84.3 580 82.4 583.4 80.8 586.4 61.4 620.9 38.9 654.8 12.1 684.1-0.2 697.2-3.4 716.3 3.5 732.6 10.8 749.3 26.9 760 44.9 760 125.6 760 207.1 735.1 275 704.3 284 700.2 293 695.9 301.6 691.6 329.9 697.2 359.6 700 389.9 700ZM809.9 940C840.3 940 869.8 937 898.3 931.6 906.9 935.9 915.9 940.2 924.9 944.3 992.8 975.1 1074.3 1000 1154.9 1000 1172.9 1000 1189.1 989.3 1196.2 972.8 1203.3 956.3 1199.9 937.2 1187.6 924.3 1160.9 895 1138.4 861.1 1118.9 826.6 1117.3 823.4 1115.4 820.2 1113.7 817 1167.7 760.2 1199.9 688.4 1199.9 610 1199.9 433 1035.1 288.4 828.3 280.4 836 308.9 839.9 338.9 839.9 370V371.1C1003.4 383.7 1109.9 497.7 1109.9 610 1109.9 662.5 1088.6 712.9 1048.6 754.8 1021.8 782.9 1016.2 825.3 1034.6 859.4 1036.6 863.1 1038.7 866.9 1040.6 870.4 1045.3 878.9 1050.3 887.3 1055.4 895.9 1023.5 887.5 991.8 875.9 961.8 862.2 953.8 858.6 945.9 854.9 938.2 850.9 920.4 841.9 900.1 839.3 880.6 843.1 857.9 847.6 834.1 849.8 809.8 849.8 694.1 849.8 603.5 800.1 553.3 733 523.3 743.1 491.8 750.6 459.5 755.1 523.1 864.6 656.2 940 809.9 940ZM345.5 201.8C314.8 201.8 287.4 221.1 277.3 250L276.7 251.7C271.1 267.3 279.3 284.5 294.9 289.9 310.4 295.4 327.7 287.3 333.1 271.8L333.7 270.1C335.4 265 340.3 261.8 345.5 261.8H422.9C435.1 261.8 444.9 271.8 444.9 283.8 444.9 291.6 440.8 298.9 433.8 302.9L374.9 336.6C365.6 342.1 359.9 351.8 359.9 362.7V380.5C359.9 397 373.4 410.5 389.9 410.5 406.4 410.5 419.9 397 419.9 380.5V379.9L463.8 355C489.3 340.4 505.1 313.2 505.1 283.9 505.1 238.6 468.3 202 423.1 202H345.7L345.5 201.8ZM389.9 540.1C395.8 540.4 401.6 539.6 407.1 537.7 412.6 535.7 417.6 532.7 421.8 528.7 426.1 524.7 429.5 519.9 431.8 514.5 434.1 509.2 435.3 503.4 435.3 497.6 435.3 491.8 434.1 486 431.8 480.7 429.5 475.3 426.1 470.5 421.8 466.5 417.6 462.5 412.6 459.5 407.1 457.5 401.6 455.6 395.8 454.7 389.9 455.1 384.1 454.7 378.3 455.6 372.8 457.5 367.3 459.5 362.3 462.5 358 466.5 353.8 470.5 350.4 475.3 348.1 480.7 345.8 486 344.6 491.8 344.6 497.6 344.6 503.4 345.8 509.2 348.1 514.5 350.4 519.9 353.8 524.7 358 528.7 362.3 532.7 367.3 535.7 372.8 537.7 378.3 539.6 384.1 540.4 389.9 540.1ZM1011.1 581.3C1022.8 569.7 1022.8 550.6 1011.1 538.9 999.5 527.3 980.4 527.3 968.8 538.9L830 677.7 771.1 618.8C759.5 607.2 740.4 607.2 728.8 618.8 717.1 630.4 717.1 649.6 728.8 661.2L808.8 741.3C820.4 752.9 839.6 752.9 851.2 741.3L1011.1 581.3Z",
"width": 1200
},
"search": [
"question"
]
},
{
"uid": "7d3bd648eb78250690b1fe3b70e5dd92",
"css": "lightbulb_outline",
"code": 59560,
"src": "custom_icons",
"selected": true,
"svg": {
"path": "M375 875C375 897.9 393.7 916.7 416.7 916.7H583.3C606.3 916.7 625 897.9 625 875V833.3H375V875ZM500 83.3C339.2 83.3 208.3 214.2 208.3 375 208.3 474.2 257.9 561.3 333.3 614.2V708.3C333.3 731.3 352.1 750 375 750H625C647.9 750 666.7 731.3 666.7 708.3V614.2C742.1 561.3 791.7 474.2 791.7 375 791.7 214.2 660.8 83.3 500 83.3ZM618.8 545.8L583.3 570.8V666.7H416.7V570.8L381.3 545.8C325 506.7 291.7 442.9 291.7 375 291.7 260 385 166.7 500 166.7 615 166.7 708.3 260 708.3 375 708.3 442.9 675 506.7 618.8 545.8Z",
"width": 1000
},
"search": [
"lightbulb_outline"
]
}
]
}

View File

@@ -0,0 +1,326 @@
/// Flutter icons SFIcons
/// Copyright (C) 2025 by original authors @ fluttericon.com, fontello.com
/// This font was generated by FlutterIcon.com, which is derived from Fontello.
///
/// To use this font, place it in your fonts/ directory and include the
/// following in your pubspec.yaml
///
/// flutter:
/// fonts:
/// - family: SFIcons
/// fonts:
/// - asset: fonts/SFIcons.ttf
///
///
/// * Material Design Icons, Copyright (C) Google, Inc
/// Author: Google
/// License: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
/// Homepage: https://design.google.com/icons/
///
library;
import 'package:flutter/widgets.dart';
import 'package:utils/utils.dart';
class SFIcons {
SFIcons._();
static const _kFontFam = 'SFIcons';
static const _kFontPkg = isTest ? null : 'sf_components_package';
static const IconData back = IconData(
0xe800,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData euro = IconData(
0xe801,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData location = IconData(
0xe802,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData alert = IconData(
0xe803,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData close = IconData(
0xe804,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData immoSelected = IconData(
0xe805,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData forward = IconData(
0xe806,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData favorite = IconData(
0xe807,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData search = IconData(
0xe808,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData filter = IconData(
0xe809,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData filterList = IconData(
0xe80a,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData finance = IconData(
0xe80b,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData infoOutlined = IconData(
0xe80c,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData arrowLeftAlt = IconData(
0xe80d,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData edit = IconData(
0xe80e,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData cookie = IconData(
0xe80f,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData email = IconData(
0xe810,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData video = IconData(
0xe811,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData phone = IconData(
0xe812,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData chevronRight = IconData(
0xe813,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData checkCircle = IconData(
0xe814,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData lightbulbOn = IconData(
0xe815,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData externalLink = IconData(
0xe816,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData preferences = IconData(
0xe817,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData bank = IconData(
0xe818,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData arrowRightAlt = IconData(
0xe819,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData offline = IconData(
0xe81a,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData cursorClick = IconData(
0xe81b,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData wand = IconData(
0xe81c,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData help = IconData(
0xe81d,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData notifications = IconData(
0xe81e,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData helpOutlined = IconData(
0xe81f,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData contentCopy = IconData(
0xe820,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData apartmentScene = IconData(
0xe821,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData walletAddMoney = IconData(
0xe822,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData walletSubtractMoney = IconData(
0xe823,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData start = IconData(
0xe828,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData immo = IconData(
0xe829,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData star = IconData(
0xe82a,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData startSelected = IconData(
0xe82b,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData infoCircle = IconData(
0xe82c,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData financeSelected = IconData(
0xe82d,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData loginOutlined = IconData(
0xe82f,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData bank1 = IconData(
0xe830,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData gavel = IconData(
0xe831,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData timer = IconData(
0xe832,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData home = IconData(
0xe83a,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData apartment = IconData(
0xe83b,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData radioButtonUncheckedRounded = IconData(
0xe83c,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData radioButtonCheckedRounded = IconData(
0xe83d,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData share = IconData(
0xe858,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData favoriteOutlined = IconData(
0xe859,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData renovationSelected = IconData(
0xe862,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData renovation = IconData(
0xe868,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData rotateLeft = IconData(
0xe835,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData options = IconData(
0xe86f,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData service = IconData(
0xe870,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData question = IconData(
0xe871,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
static const IconData lightbulbOutline = IconData(
0xe8a8,
fontFamily: _kFontFam,
fontPackage: _kFontPkg,
);
}

View File

@@ -3,7 +3,7 @@ name: design_system
description: "A new Flutter package project."
version: 0.0.1
homepage:
publish_to: "none"
environment:
sdk: ^3.9.2
flutter: ">=1.17.0"
@@ -11,6 +11,9 @@ environment:
dependencies:
flutter:
sdk: flutter
utils:
path: ../utils
flutter_riverpod: ^3.0.3
get_it: ^9.0.5

View File

@@ -0,0 +1,4 @@
# melos_managed_dependency_overrides: utils
dependency_overrides:
utils:
path: ../utils

29
packages/sf_localizations/.gitignore vendored Executable file
View File

@@ -0,0 +1,29 @@
# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/
# IntelliJ related
*.iml
*.ipr
*.iws
.idea/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
build/

View File

@@ -0,0 +1,10 @@
# This file tracks properties of this Flutter project.
# Used by Flutter tool to assess capabilities and perform upgrades etc.
#
# This file should be version controlled and should not be manually edited.
version:
revision: "2663184aa79047d0a33a14a3b607954f8fdd8730"
channel: "stable"
project_type: package

View File

@@ -0,0 +1,3 @@
## 0.0.1
* TODO: Describe initial release.

View File

@@ -0,0 +1 @@
TODO: Add your license here.

View File

@@ -0,0 +1,39 @@
<!--
This README describes the package. If you publish this package to pub.dev,
this README's contents appear on the landing page for your package.
For information about how to write a good package README, see the guide for
[writing package pages](https://dart.dev/tools/pub/writing-package-pages).
For general information about developing packages, see the Dart guide for
[creating packages](https://dart.dev/guides/libraries/create-packages)
and the Flutter guide for
[developing packages and plugins](https://flutter.dev/to/develop-packages).
-->
TODO: Put a short description of the package here that helps potential users
know whether this package might be useful for them.
## Features
TODO: List what your package can do. Maybe include images, gifs, or videos.
## Getting started
TODO: List prerequisites and provide or point to information on how to
start using the package.
## Usage
TODO: Include short and useful examples for package users. Add longer examples
to `/example` folder.
```dart
const like = 'sample';
```
## Additional information
TODO: Tell users more about the package: where to find more information, how to
contribute to the package, how to file issues, what response they can expect
from the package authors, and more.

View File

@@ -0,0 +1,6 @@
# include: package:utils/analysis_options.yaml
# # Additional information about this file can be found at
# # https://dart.dev/guides/language/analysis-options

View File

@@ -0,0 +1,3 @@
{
"example": "example"
}

View File

@@ -0,0 +1,3 @@
{
"example": "ejemplo"
}

View File

@@ -0,0 +1,5 @@
export 'src/sf_delegate.dart';
export 'src/generated/i18n.dart';
export 'src/utils/constants.dart';
export 'src/utils/context_extension.dart';
export 'src/utils/string_extension.dart';

View File

@@ -0,0 +1,14 @@
import 'dart:ui';
import 'package:flutter/foundation.dart';
import '../utils/locale_extension.dart';
abstract class AssetLoader {
const AssetLoader();
Future<Map<String, dynamic>> load(Locale locale);
@protected
String getAssetPath(Locale locale) =>
'packages/sf_localizations/assets/l10n/${locale.fileName}.json';
}

View File

@@ -0,0 +1,18 @@
import 'dart:convert';
import 'dart:ui';
import 'package:flutter/services.dart';
import 'asset_loader.dart';
class RootBundleAssetLoader extends AssetLoader {
const RootBundleAssetLoader();
@override
Future<Map<String, dynamic>> load(Locale locale) async {
final assetAsString = await rootBundle.loadString(getAssetPath(locale));
final translations = jsonDecode(assetAsString) as Map<String, dynamic>;
return translations;
}
}

View File

@@ -0,0 +1,20 @@
import 'dart:convert';
import 'dart:ui';
import 'package:flutter/services.dart';
import 'asset_loader.dart';
class TestAssetLoader extends AssetLoader {
const TestAssetLoader();
@override
Future<Map<String, dynamic>> load(Locale locale) async {
final data = await rootBundle.load(getAssetPath(locale));
final bytes =
data.buffer.asUint8List(data.offsetInBytes, data.lengthInBytes);
final strings = utf8.decode(bytes);
return json.decode(strings) as Map<String, dynamic>;
}
}

View File

@@ -0,0 +1,7 @@
// Generated code - do not modify by hand
class I18n {
const I18n._();
static const String example = 'example';
}

View File

@@ -0,0 +1,166 @@
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter/widgets.dart';
import 'package:intl/intl.dart';
import 'package:sf_localizations/sf_localizations.dart';
import 'package:sf_localizations/src/asset_loaders/root_bundle_asset_loader.dart';
import 'package:sf_localizations/src/asset_loaders/test_asset_loader.dart';
import 'asset_loaders/asset_loader.dart';
import 'package:utils/utils.dart';
class SFLocalizations {
SFLocalizations._init(this._locale) {
_instance = this;
}
@visibleForTesting
SFLocalizations.testInit() : _locale = const Locale('es') {
_instance = this;
}
static SFLocalizations? _instance;
final _translationCache = <String, dynamic>{};
final Locale _locale;
Locale get locale => _locale;
// Static getter for accessing translations without context
static SFLocalizations get current {
if (_instance == null) {
throw Exception('$SFLocalizations not initialized yet');
}
return _instance!;
}
Future<void> load(AssetLoader assetLoader) async {
_translationCache.clear();
try {
final translations = await assetLoader.load(_locale);
_translationCache.addAll(translations);
} catch (e) {
if (kDebugMode) print('Error loading locale $_locale: $e');
}
}
String tr(String key, [Map<String, dynamic>? args]) => _resolve(key, args);
String plural(String key, [Map<String, dynamic>? args, int? howMany]) =>
_resolvePlural(key, args, howMany);
static SFLocalizations of(BuildContext context) {
final translator = Localizations.of<SFLocalizations>(
context,
SFLocalizations,
);
if (translator == null) {
throw Exception('$SFLocalizations not in the context');
}
return translator;
}
// Add support for more languages by adding their respective message files
static const LocalizationsDelegate<SFLocalizations> delegate =
_SFLocalizationsDelegate();
String _resolve(String key, [Map<String, dynamic>? args]) {
if (!_translationCache.containsKey(key)) {
return key;
}
final translationValue = _translationCache[key] as String;
return _format(translationValue, args);
}
String _resolvePlural(
String key, [
Map<String, dynamic>? args,
int? howMany,
]) {
if (!_translationCache.containsKey(key)) {
return key;
}
final translationValue = _translationCache[key]!;
if (translationValue is! Map) {
return key;
}
if (!translationValue.containsKey('other')) {
return key;
}
if (howMany == null) {
return _format(translationValue['other'] as String, args);
}
return _format(
Intl.withLocale<String>(
_locale.languageCode,
() => Intl.plural(
howMany,
zero: _getPluralValue(translationValue, 'zero'),
one: _getPluralValue(translationValue, 'one'),
two: _getPluralValue(translationValue, 'two'),
few: _getPluralValue(translationValue, 'few'),
many: _getPluralValue(translationValue, 'many'),
other: translationValue['other'] as String,
),
)
as String,
args,
);
}
String _getPluralValue(Map<dynamic, dynamic> translationValue, String key) {
if (translationValue[key] != null &&
(translationValue[key] as String).isEmpty) {
return translationValue['other'] as String;
}
return translationValue[key] as String;
}
String _format(String value, [Map<String, dynamic>? args]) {
return (args?.isNotEmpty ?? false) ? _sprintf(value, args!) : value;
}
String _sprintf(String format, Map<String, dynamic> values) {
return format.replaceAllMapped(RegExp(r'\{(\w+)\}'), (match) {
final key = match.group(1)!;
if (!values.containsKey(key)) {
throw ArgumentError('Missing value for placeholder {$key}');
}
return values[key].toString();
});
}
}
class _SFLocalizationsDelegate extends LocalizationsDelegate<SFLocalizations> {
const _SFLocalizationsDelegate();
static const _assetLoader = isTest
? TestAssetLoader()
: RootBundleAssetLoader();
@override
bool isSupported(Locale locale) {
return supportedLanguages.contains(locale.languageCode);
}
@override
Future<SFLocalizations> load(Locale locale) async {
final localizations = SFLocalizations._init(locale);
await localizations.load(_assetLoader);
return localizations;
}
@override
bool shouldReload(_SFLocalizationsDelegate old) => false;
}

View File

@@ -0,0 +1 @@
const supportedLanguages = ['en', 'es'];

View File

@@ -0,0 +1,11 @@
import 'package:flutter/widgets.dart';
import '../sf_delegate.dart';
extension LocalizationContextExtension on BuildContext {
Locale get locale => translator.locale;
String translate(String key, {Map<String, dynamic>? args}) =>
translator.tr(key, args);
SFLocalizations get translator => SFLocalizations.of(this);
}

View File

@@ -0,0 +1,5 @@
import 'dart:ui' show Locale;
extension ExpandLocale on Locale {
String get fileName => countryCode != null ? '$languageCode-$countryCode' : languageCode;
}

View File

@@ -0,0 +1,9 @@
import 'package:flutter/cupertino.dart';
import '../sf_delegate.dart';
extension StringLocalizationExtension on String {
String tr({BuildContext? context, Map<String, dynamic>? args}) =>
context != null
? SFLocalizations.of(context).tr(this, args)
: SFLocalizations.current.tr(this, args);
}

View File

@@ -0,0 +1,28 @@
name: sf_localizations
description: "A new Flutter package project."
version: 0.0.1
homepage: none
publish_to: none
environment:
sdk: ^3.8.0
flutter: ">=1.17.0"
# resolution: workspace
dependencies:
flutter:
sdk: flutter
intl: ^0.20.2
utils:
path: ../utils
build_runner: ^2.7.1
dev_dependencies:
flutter_test:
sdk: flutter
flutter:
assets:
- assets/l10n/

View File

@@ -0,0 +1,4 @@
# melos_managed_dependency_overrides: utils
dependency_overrides:
utils:
path: ../utils

View File

@@ -0,0 +1,58 @@
// ignore_for_file: avoid_print
import 'dart:convert';
import 'dart:io';
const inputPath = 'assets/l10n/en.json';
const outputPath = 'lib/src/generated/i18n.dart';
void main() {
try {
generateI18n();
} catch (e) {
print('Error generating I18n: $e');
exit(1);
}
}
void generateI18n() {
// Ensure input file exists
final inputFile = File(inputPath);
if (!inputFile.existsSync()) {
throw 'Input file not found: $inputPath';
}
// Create output directory if it doesn't exist
final outputDir = Directory(outputPath.substring(0, outputPath.lastIndexOf('/')));
if (!outputDir.existsSync()) {
outputDir.createSync(recursive: true);
}
// Read and parse JSON
final jsonString = inputFile.readAsStringSync();
final jsonMap = json.decode(jsonString) as Map<String, dynamic>;
// Generate Dart class
final buffer = StringBuffer();
buffer.writeln('// Generated code - do not modify by hand');
buffer.writeln();
buffer.writeln('class I18n {');
buffer.writeln(' const I18n._();');
buffer.writeln();
// Process JSON and write parent keys
final parentKeys = jsonMap.keys.toList()..sort();
for (final key in parentKeys) {
final keyName = key[0].toLowerCase() + key.substring(1);
buffer.writeln(" static const String $keyName = '$key';");
}
buffer.writeln('}');
// Write to output file
final outputFile = File(outputPath);
outputFile.writeAsStringSync(buffer.toString());
print('Successfully generated I18n class at: $outputPath');
}

View File

@@ -1,4 +1,6 @@
# melos_managed_dependency_overrides: design_system
# melos_managed_dependency_overrides: design_system,utils
dependency_overrides:
design_system:
path: ../design_system
utils:
path: ../utils

View File

@@ -0,0 +1,6 @@
import 'package:flutter/foundation.dart';
const isTest =
!kIsWeb &&
!kProfileMode &&
bool.fromEnvironment('FLUTTER_TEST', defaultValue: false);

View File

@@ -1 +1,2 @@
export 'src/size_utils.dart';
export 'src/test.dart';