From d55ec42b1783a2857b8be67a87a27229fadca850 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Wed, 27 Apr 2022 13:11:02 +0300 Subject: Simplify SettingChimes code --- src/displayapp/screens/settings/SettingChimes.cpp | 53 ++++++----------------- src/displayapp/screens/settings/SettingChimes.h | 16 ++++++- 2 files changed, 27 insertions(+), 42 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/settings/SettingChimes.cpp b/src/displayapp/screens/settings/SettingChimes.cpp index d53d4da6..7f519f75 100644 --- a/src/displayapp/screens/settings/SettingChimes.cpp +++ b/src/displayapp/screens/settings/SettingChimes.cpp @@ -14,6 +14,8 @@ namespace { } } +constexpr std::array SettingChimes::options; + SettingChimes::SettingChimes(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController) : Screen(app), settingsController {settingsController} { @@ -40,37 +42,16 @@ SettingChimes::SettingChimes(Pinetime::Applications::DisplayApp* app, Pinetime:: lv_label_set_align(icon, LV_LABEL_ALIGN_CENTER); lv_obj_align(icon, title, LV_ALIGN_OUT_LEFT_MID, -10, 0); - optionsTotal = 0; - cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Off"); - cbOption[optionsTotal]->user_data = this; - lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); - SetRadioButtonStyle(cbOption[optionsTotal]); - if (settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::None) { - lv_checkbox_set_checked(cbOption[optionsTotal], true); - } - - optionsTotal++; - cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Every hour"); - cbOption[optionsTotal]->user_data = this; - lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); - SetRadioButtonStyle(cbOption[optionsTotal]); - if (settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::Hours) { - lv_checkbox_set_checked(cbOption[optionsTotal], true); - } - - optionsTotal++; - cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Every 30 mins"); - cbOption[optionsTotal]->user_data = this; - lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); - SetRadioButtonStyle(cbOption[optionsTotal]); - if (settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::HalfHours) { - lv_checkbox_set_checked(cbOption[optionsTotal], true); + for (unsigned int i = 0; i < options.size(); i++) { + cbOption[i] = lv_checkbox_create(container1, nullptr); + lv_checkbox_set_text(cbOption[i], options[i].name); + if (settingsController.GetChimeOption() == options[i].chimesOption) { + lv_checkbox_set_checked(cbOption[i], true); + } + cbOption[i]->user_data = this; + lv_obj_set_event_cb(cbOption[i], event_handler); + SetRadioButtonStyle(cbOption[i]); } - - optionsTotal++; } SettingChimes::~SettingChimes() { @@ -80,18 +61,10 @@ SettingChimes::~SettingChimes() { void SettingChimes::UpdateSelected(lv_obj_t* object, lv_event_t event) { if (event == LV_EVENT_VALUE_CHANGED) { - for (uint8_t i = 0; i < optionsTotal; i++) { + for (uint8_t i = 0; i < options.size(); i++) { if (object == cbOption[i]) { lv_checkbox_set_checked(cbOption[i], true); - if (i == 0) { - settingsController.SetChimeOption(Controllers::Settings::ChimesOption::None); - } - if (i == 1) { - settingsController.SetChimeOption(Controllers::Settings::ChimesOption::Hours); - } - if (i == 2) { - settingsController.SetChimeOption(Controllers::Settings::ChimesOption::HalfHours); - } + settingsController.SetChimeOption(options[i].chimesOption); } else { lv_checkbox_set_checked(cbOption[i], false); } diff --git a/src/displayapp/screens/settings/SettingChimes.h b/src/displayapp/screens/settings/SettingChimes.h index a251e95b..70b080a8 100644 --- a/src/displayapp/screens/settings/SettingChimes.h +++ b/src/displayapp/screens/settings/SettingChimes.h @@ -4,6 +4,7 @@ #include #include "components/settings/Settings.h" #include "displayapp/screens/Screen.h" +#include namespace Pinetime { @@ -12,15 +13,26 @@ namespace Pinetime { class SettingChimes : public Screen { public: + struct Option { + Controllers::Settings::ChimesOption chimesOption; + const char* name; + }; + SettingChimes(DisplayApp* app, Pinetime::Controllers::Settings& settingsController); ~SettingChimes() override; void UpdateSelected(lv_obj_t* object, lv_event_t event); private: + static constexpr std::array options = {{ + {Controllers::Settings::ChimesOption::None, " Off"}, + {Controllers::Settings::ChimesOption::Hours, " Every hour"}, + {Controllers::Settings::ChimesOption::HalfHours, " Every 30 mins"} + }}; + + lv_obj_t* cbOption[options.size()]; + Controllers::Settings& settingsController; - uint8_t optionsTotal; - lv_obj_t* cbOption[3]; }; } } -- cgit v1.2.3 From ecb3cd3e315ebd88fb4eb031562f60491d1765eb Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Sun, 1 May 2022 20:21:37 +0200 Subject: SettingChimes: private Option struct, use std::array for cbOption --- src/displayapp/screens/settings/SettingChimes.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/settings/SettingChimes.h b/src/displayapp/screens/settings/SettingChimes.h index 70b080a8..e48432c6 100644 --- a/src/displayapp/screens/settings/SettingChimes.h +++ b/src/displayapp/screens/settings/SettingChimes.h @@ -13,24 +13,23 @@ namespace Pinetime { class SettingChimes : public Screen { public: - struct Option { - Controllers::Settings::ChimesOption chimesOption; - const char* name; - }; - SettingChimes(DisplayApp* app, Pinetime::Controllers::Settings& settingsController); ~SettingChimes() override; void UpdateSelected(lv_obj_t* object, lv_event_t event); private: + struct Option { + Controllers::Settings::ChimesOption chimesOption; + const char* name; + }; static constexpr std::array options = {{ {Controllers::Settings::ChimesOption::None, " Off"}, {Controllers::Settings::ChimesOption::Hours, " Every hour"}, {Controllers::Settings::ChimesOption::HalfHours, " Every 30 mins"} }}; - lv_obj_t* cbOption[options.size()]; + std::array cbOption; Controllers::Settings& settingsController; }; -- cgit v1.2.3 From 10ca036ffb09e1921b7ea684816b7cd9f5b0f510 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 16 Jun 2022 18:05:55 +0300 Subject: Patch hole in the letter M in jetbrains_mono_bold_20 (#1175) --- src/displayapp/fonts/CMakeLists.txt | 2 ++ src/displayapp/fonts/fonts.json | 2 +- src/displayapp/fonts/jetbrains_mono_bold_20.c_M.patch | 8 ++++++++ 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 src/displayapp/fonts/jetbrains_mono_bold_20.c_M.patch (limited to 'src/displayapp') diff --git a/src/displayapp/fonts/CMakeLists.txt b/src/displayapp/fonts/CMakeLists.txt index d00c802b..84830cc0 100644 --- a/src/displayapp/fonts/CMakeLists.txt +++ b/src/displayapp/fonts/CMakeLists.txt @@ -6,6 +6,8 @@ find_program(LV_FONT_CONV "lv_font_conv" NO_CACHE REQUIRED message(STATUS "Using ${LV_FONT_CONV} to generate font files") configure_file(${CMAKE_CURRENT_LIST_DIR}/jetbrains_mono_bold_20.c_zero.patch ${CMAKE_CURRENT_BINARY_DIR}/jetbrains_mono_bold_20.c_zero.patch COPYONLY) +configure_file(${CMAKE_CURRENT_LIST_DIR}/jetbrains_mono_bold_20.c_M.patch + ${CMAKE_CURRENT_BINARY_DIR}/jetbrains_mono_bold_20.c_M.patch COPYONLY) if(CMAKE_VERSION VERSION_GREATER_EQUAL 3.12) # FindPython3 module introduces with CMake 3.12 # https://cmake.org/cmake/help/latest/module/FindPython3.html diff --git a/src/displayapp/fonts/fonts.json b/src/displayapp/fonts/fonts.json index ac68ea3c..abdb4512 100644 --- a/src/displayapp/fonts/fonts.json +++ b/src/displayapp/fonts/fonts.json @@ -12,7 +12,7 @@ ], "bpp": 1, "size": 20, - "patches": ["jetbrains_mono_bold_20.c_zero.patch"] + "patches": ["jetbrains_mono_bold_20.c_zero.patch", "jetbrains_mono_bold_20.c_M.patch"] }, "jetbrains_mono_42": { "sources": [ diff --git a/src/displayapp/fonts/jetbrains_mono_bold_20.c_M.patch b/src/displayapp/fonts/jetbrains_mono_bold_20.c_M.patch new file mode 100644 index 00000000..31f243ad --- /dev/null +++ b/src/displayapp/fonts/jetbrains_mono_bold_20.c_M.patch @@ -0,0 +1,8 @@ +@@ -217,7 +217,7 @@ + 0xc0, 0xe0, 0x70, 0x38, 0x1c, 0xf, 0xff, 0xfc, + + /* U+004D "M" */ +- 0xf3, 0xfc, 0xfd, 0x3f, 0xcf, 0xff, 0xff, 0xfe, ++ 0xf3, 0xfc, 0xff, 0x3f, 0xcf, 0xff, 0xff, 0xfe, + 0xdf, 0xb7, 0xe1, 0xf8, 0x7e, 0x1f, 0x87, 0xe1, + 0xf8, 0x70, -- cgit v1.2.3 From 9b775c6a91b91531edda67892b93041e5fb3f882 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 16 Jun 2022 22:41:54 +0300 Subject: Automatically create screens for applist and settings (#1153) Apps and settings are now stored in a single array (two arrays in total). Replace magic values with appsPerScreen and entriesPerScreen. --- src/displayapp/screens/ApplicationList.cpp | 72 +++++++----------------- src/displayapp/screens/ApplicationList.h | 31 +++++++++-- src/displayapp/screens/settings/Settings.cpp | 83 +++++++--------------------- src/displayapp/screens/settings/Settings.h | 41 +++++++++++--- 4 files changed, 101 insertions(+), 126 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index 9798a861..9fd408e1 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -1,13 +1,23 @@ #include "displayapp/screens/ApplicationList.h" #include -#include -#include "displayapp/screens/Symbols.h" -#include "displayapp/screens/Tile.h" +#include #include "displayapp/Apps.h" #include "displayapp/DisplayApp.h" using namespace Pinetime::Applications::Screens; +constexpr std::array ApplicationList::applications; + +auto ApplicationList::CreateScreenList() const { + std::array()>, nScreens> screens; + for (size_t i = 0; i < screens.size(); i++) { + screens[i] = [this, i]() -> std::unique_ptr { + return CreateScreen(i); + }; + } + return screens; +} + ApplicationList::ApplicationList(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController, Pinetime::Controllers::Battery& batteryController, @@ -16,18 +26,7 @@ ApplicationList::ApplicationList(Pinetime::Applications::DisplayApp* app, settingsController {settingsController}, batteryController {batteryController}, dateTimeController {dateTimeController}, - screens {app, - settingsController.GetAppMenu(), - { - [this]() -> std::unique_ptr { - return CreateScreen1(); - }, - [this]() -> std::unique_ptr { - return CreateScreen2(); - }, - //[this]() -> std::unique_ptr { return CreateScreen3(); } - }, - Screens::ScreenListModes::UpDown} { + screens {app, settingsController.GetAppMenu(), CreateScreenList(), Screens::ScreenListModes::UpDown} { } ApplicationList::~ApplicationList() { @@ -38,42 +37,11 @@ bool ApplicationList::OnTouchEvent(Pinetime::Applications::TouchEvents event) { return screens.OnTouchEvent(event); } -std::unique_ptr ApplicationList::CreateScreen1() { - std::array applications {{ - {Symbols::stopWatch, Apps::StopWatch}, - {Symbols::clock, Apps::Alarm}, - {Symbols::hourGlass, Apps::Timer}, - {Symbols::shoe, Apps::Steps}, - {Symbols::heartBeat, Apps::HeartRate}, - {Symbols::music, Apps::Music}, - }}; - - return std::make_unique(0, 2, app, settingsController, batteryController, dateTimeController, applications); -} - -std::unique_ptr ApplicationList::CreateScreen2() { - std::array applications {{ - {Symbols::paintbrush, Apps::Paint}, - {Symbols::paddle, Apps::Paddle}, - {"2", Apps::Twos}, - {Symbols::chartLine, Apps::Motion}, - {Symbols::drum, Apps::Metronome}, - {Symbols::map, Apps::Navigation}, - }}; +std::unique_ptr ApplicationList::CreateScreen(unsigned int screenNum) const { + std::array apps; + for (int i = 0; i < appsPerScreen; i++) { + apps[i] = applications[screenNum * appsPerScreen + i]; + } - return std::make_unique(1, 2, app, settingsController, batteryController, dateTimeController, applications); + return std::make_unique(screenNum, nScreens, app, settingsController, batteryController, dateTimeController, apps); } - -/*std::unique_ptr ApplicationList::CreateScreen3() { - std::array applications { - {{"A", Apps::Meter}, - {"B", Apps::Navigation}, - {"C", Apps::Clock}, - {"D", Apps::Music}, - {"E", Apps::SysInfo}, - {"F", Apps::Brightness} - } - }; - - return std::make_unique(2, 3, app, settingsController, batteryController, dateTimeController, applications); -}*/ diff --git a/src/displayapp/screens/ApplicationList.h b/src/displayapp/screens/ApplicationList.h index f430a89e..14d7623c 100644 --- a/src/displayapp/screens/ApplicationList.h +++ b/src/displayapp/screens/ApplicationList.h @@ -1,5 +1,6 @@ #pragma once +#include #include #include "displayapp/screens/Screen.h" @@ -7,6 +8,8 @@ #include "components/datetime/DateTimeController.h" #include "components/settings/Settings.h" #include "components/battery/BatteryController.h" +#include "displayapp/screens/Symbols.h" +#include "displayapp/screens/Tile.h" namespace Pinetime { namespace Applications { @@ -21,14 +24,34 @@ namespace Pinetime { bool OnTouchEvent(TouchEvents event) override; private: + auto CreateScreenList() const; + std::unique_ptr CreateScreen(unsigned int screenNum) const; + Controllers::Settings& settingsController; Pinetime::Controllers::Battery& batteryController; Controllers::DateTime& dateTimeController; - ScreenList<2> screens; - std::unique_ptr CreateScreen1(); - std::unique_ptr CreateScreen2(); - // std::unique_ptr CreateScreen3(); + static constexpr int appsPerScreen = 6; + + // Increment this when more space is needed + static constexpr int nScreens = 2; + + static constexpr std::array applications {{ + {Symbols::stopWatch, Apps::StopWatch}, + {Symbols::clock, Apps::Alarm}, + {Symbols::hourGlass, Apps::Timer}, + {Symbols::shoe, Apps::Steps}, + {Symbols::heartBeat, Apps::HeartRate}, + {Symbols::music, Apps::Music}, + + {Symbols::paintbrush, Apps::Paint}, + {Symbols::paddle, Apps::Paddle}, + {"2", Apps::Twos}, + {Symbols::chartLine, Apps::Motion}, + {Symbols::drum, Apps::Metronome}, + {Symbols::map, Apps::Navigation}, + }}; + ScreenList screens; }; } } diff --git a/src/displayapp/screens/settings/Settings.cpp b/src/displayapp/screens/settings/Settings.cpp index a91b8f77..ffa01d18 100644 --- a/src/displayapp/screens/settings/Settings.cpp +++ b/src/displayapp/screens/settings/Settings.cpp @@ -1,33 +1,27 @@ #include "displayapp/screens/settings/Settings.h" #include -#include -#include "displayapp/screens/List.h" +#include #include "displayapp/Apps.h" #include "displayapp/DisplayApp.h" -#include "displayapp/screens/Symbols.h" using namespace Pinetime::Applications::Screens; +constexpr std::array Settings::entries; + +auto Settings::CreateScreenList() const { + std::array()>, nScreens> screens; + for (size_t i = 0; i < screens.size(); i++) { + screens[i] = [this, i]() -> std::unique_ptr { + return CreateScreen(i); + }; + } + return screens; +} + Settings::Settings(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController) : Screen(app), settingsController {settingsController}, - screens {app, - settingsController.GetSettingsMenu(), - { - [this]() -> std::unique_ptr { - return CreateScreen1(); - }, - [this]() -> std::unique_ptr { - return CreateScreen2(); - }, - [this]() -> std::unique_ptr { - return CreateScreen3(); - }, - [this]() -> std::unique_ptr { - return CreateScreen4(); - }, - }, - Screens::ScreenListModes::UpDown} { + screens {app, settingsController.GetSettingsMenu(), CreateScreenList(), Screens::ScreenListModes::UpDown} { } Settings::~Settings() { @@ -38,48 +32,11 @@ bool Settings::OnTouchEvent(Pinetime::Applications::TouchEvents event) { return screens.OnTouchEvent(event); } -std::unique_ptr Settings::CreateScreen1() { - std::array applications {{ - {Symbols::sun, "Display", Apps::SettingDisplay}, - {Symbols::eye, "Wake Up", Apps::SettingWakeUp}, - {Symbols::clock, "Time format", Apps::SettingTimeFormat}, - {Symbols::home, "Watch face", Apps::SettingWatchFace}, - }}; - - return std::make_unique(0, 4, app, settingsController, applications); -} - -std::unique_ptr Settings::CreateScreen2() { - std::array applications {{ - {Symbols::shoe, "Steps", Apps::SettingSteps}, - {Symbols::clock, "Set date", Apps::SettingSetDate}, - {Symbols::clock, "Set time", Apps::SettingSetTime}, - {Symbols::batteryHalf, "Battery", Apps::BatteryInfo}, - }}; - - return std::make_unique(1, 4, app, settingsController, applications); -} - -std::unique_ptr Settings::CreateScreen3() { - - std::array applications {{ - {Symbols::clock, "Chimes", Apps::SettingChimes}, - {Symbols::tachometer, "Shake Calib.", Apps::SettingShakeThreshold}, - {Symbols::check, "Firmware", Apps::FirmwareValidation}, - {Symbols::bluetooth, "Bluetooth", Apps::SettingBluetooth}, - }}; - - return std::make_unique(2, 4, app, settingsController, applications); -} - -std::unique_ptr Settings::CreateScreen4() { - - std::array applications {{ - {Symbols::list, "About", Apps::SysInfo}, - {Symbols::none, "None", Apps::None}, - {Symbols::none, "None", Apps::None}, - {Symbols::none, "None", Apps::None}, - }}; +std::unique_ptr Settings::CreateScreen(unsigned int screenNum) const { + std::array screens; + for (int i = 0; i < entriesPerScreen; i++) { + screens[i] = entries[screenNum * entriesPerScreen + i]; + } - return std::make_unique(3, 4, app, settingsController, applications); + return std::make_unique(screenNum, nScreens, app, settingsController, screens); } diff --git a/src/displayapp/screens/settings/Settings.h b/src/displayapp/screens/settings/Settings.h index be090075..a86db44f 100644 --- a/src/displayapp/screens/settings/Settings.h +++ b/src/displayapp/screens/settings/Settings.h @@ -1,8 +1,11 @@ #pragma once -#include +#include +#include #include "displayapp/screens/Screen.h" #include "displayapp/screens/ScreenList.h" +#include "displayapp/screens/Symbols.h" +#include "displayapp/screens/List.h" namespace Pinetime { @@ -17,14 +20,38 @@ namespace Pinetime { bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override; private: - Controllers::Settings& settingsController; + auto CreateScreenList() const; + std::unique_ptr CreateScreen(unsigned int screenNum) const; - ScreenList<4> screens; + Controllers::Settings& settingsController; - std::unique_ptr CreateScreen1(); - std::unique_ptr CreateScreen2(); - std::unique_ptr CreateScreen3(); - std::unique_ptr CreateScreen4(); + static constexpr int entriesPerScreen = 4; + + // Increment this when more space is needed + static constexpr int nScreens = 4; + + static constexpr std::array entries {{ + {Symbols::sun, "Display", Apps::SettingDisplay}, + {Symbols::eye, "Wake Up", Apps::SettingWakeUp}, + {Symbols::clock, "Time format", Apps::SettingTimeFormat}, + {Symbols::home, "Watch face", Apps::SettingWatchFace}, + + {Symbols::shoe, "Steps", Apps::SettingSteps}, + {Symbols::clock, "Set date", Apps::SettingSetDate}, + {Symbols::clock, "Set time", Apps::SettingSetTime}, + {Symbols::batteryHalf, "Battery", Apps::BatteryInfo}, + + {Symbols::clock, "Chimes", Apps::SettingChimes}, + {Symbols::tachometer, "Shake Calib.", Apps::SettingShakeThreshold}, + {Symbols::check, "Firmware", Apps::FirmwareValidation}, + {Symbols::bluetooth, "Bluetooth", Apps::SettingBluetooth}, + + {Symbols::list, "About", Apps::SysInfo}, + {Symbols::none, "None", Apps::None}, + {Symbols::none, "None", Apps::None}, + {Symbols::none, "None", Apps::None}, + }}; + ScreenList screens; }; } } -- cgit v1.2.3 From 95ff285991d399498d9bd7f60a503ef7665822ce Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sat, 18 Jun 2022 12:54:41 +0300 Subject: Remove backup brightness feature (#1180) This feature is not needed and is probably more likely to cause issues. It's better to just use brightnessController.Set(settingsController.GetBrightness()); --- src/components/brightness/BrightnessController.cpp | 10 +--------- src/components/brightness/BrightnessController.h | 4 ---- src/displayapp/DisplayApp.cpp | 21 ++++++++++----------- src/displayapp/screens/FlashLight.cpp | 8 +------- 4 files changed, 12 insertions(+), 31 deletions(-) (limited to 'src/displayapp') diff --git a/src/components/brightness/BrightnessController.cpp b/src/components/brightness/BrightnessController.cpp index 2d9f980a..0392158c 100644 --- a/src/components/brightness/BrightnessController.cpp +++ b/src/components/brightness/BrightnessController.cpp @@ -74,14 +74,6 @@ BrightnessController::Levels BrightnessController::Level() const { return level; } -void BrightnessController::Backup() { - backupLevel = level; -} - -void BrightnessController::Restore() { - Set(backupLevel); -} - void BrightnessController::Step() { switch (level) { case Levels::Low: @@ -123,4 +115,4 @@ const char* BrightnessController::ToString() { default: return "???"; } -} \ No newline at end of file +} diff --git a/src/components/brightness/BrightnessController.h b/src/components/brightness/BrightnessController.h index 0d7ac2ff..7f86759a 100644 --- a/src/components/brightness/BrightnessController.h +++ b/src/components/brightness/BrightnessController.h @@ -15,15 +15,11 @@ namespace Pinetime { void Higher(); void Step(); - void Backup(); - void Restore(); - const char* GetIcon(); const char* ToString(); private: Levels level = Levels::High; - Levels backupLevel = Levels::High; }; } } diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 411497e6..3174a658 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -129,6 +129,11 @@ void DisplayApp::InitHw() { } void DisplayApp::Refresh() { + auto LoadPreviousScreen = [this]() { + brightnessController.Set(settingsController.GetBrightness()); + LoadApp(returnToApp, returnDirection); + }; + TickType_t queueTimeout; switch (state) { case States::Idle: @@ -136,7 +141,7 @@ void DisplayApp::Refresh() { break; case States::Running: if (!currentScreen->IsRunning()) { - LoadApp(returnToApp, returnDirection); + LoadPreviousScreen(); } queueTimeout = lv_task_handler(); break; @@ -149,12 +154,10 @@ void DisplayApp::Refresh() { if (xQueueReceive(msgQueue, &msg, queueTimeout)) { switch (msg) { case Messages::DimScreen: - // Backup brightness is the brightness to return to after dimming or sleeping - brightnessController.Backup(); brightnessController.Set(Controllers::BrightnessController::Levels::Low); break; case Messages::RestoreBrightness: - brightnessController.Restore(); + brightnessController.Set(settingsController.GetBrightness()); break; case Messages::GoToSleep: while (brightnessController.Level() != Controllers::BrightnessController::Levels::Off) { @@ -165,7 +168,7 @@ void DisplayApp::Refresh() { state = States::Idle; break; case Messages::GoToRunning: - brightnessController.Restore(); + brightnessController.Set(settingsController.GetBrightness()); state = States::Running; break; case Messages::UpdateTimeOut: @@ -224,9 +227,7 @@ void DisplayApp::Refresh() { break; } } else if (returnTouchEvent == gesture) { - LoadApp(returnToApp, returnDirection); - brightnessController.Set(settingsController.GetBrightness()); - brightnessController.Backup(); + LoadPreviousScreen(); } } else { touchHandler.CancelTap(); @@ -237,9 +238,7 @@ void DisplayApp::Refresh() { if (currentApp == Apps::Clock) { PushMessageToSystemTask(System::Messages::GoToSleep); } else { - LoadApp(returnToApp, returnDirection); - brightnessController.Set(settingsController.GetBrightness()); - brightnessController.Backup(); + LoadPreviousScreen(); } } break; diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp index 2a1884f6..8a10ee8d 100644 --- a/src/displayapp/screens/FlashLight.cpp +++ b/src/displayapp/screens/FlashLight.cpp @@ -14,12 +14,7 @@ namespace { FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, System::SystemTask& systemTask, Controllers::BrightnessController& brightnessController) - : Screen(app), - systemTask {systemTask}, - brightnessController {brightnessController} - -{ - brightnessController.Backup(); + : Screen(app), systemTask {systemTask}, brightnessController {brightnessController} { brightnessLevel = brightnessController.Level(); @@ -56,7 +51,6 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, FlashLight::~FlashLight() { lv_obj_clean(lv_scr_act()); lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); - brightnessController.Restore(); systemTask.PushMessage(Pinetime::System::Messages::EnableSleeping); } -- cgit v1.2.3 From 2b2aefcf6a3b187c432e90d4b4e951cb10e293ef Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 14 Jun 2022 09:48:00 +0300 Subject: Fix InfiniTime compiler warnings --- src/BootloaderVersion.cpp | 8 ++++---- src/BootloaderVersion.h | 8 ++++---- src/displayapp/screens/WatchFacePineTimeStyle.cpp | 7 ------- 3 files changed, 8 insertions(+), 15 deletions(-) (limited to 'src/displayapp') diff --git a/src/BootloaderVersion.cpp b/src/BootloaderVersion.cpp index 7f7f5c86..16e86962 100644 --- a/src/BootloaderVersion.cpp +++ b/src/BootloaderVersion.cpp @@ -9,15 +9,15 @@ using namespace Pinetime; uint32_t BootloaderVersion::version = 0; char BootloaderVersion::versionString[BootloaderVersion::VERSION_STR_LEN] = "0.0.0"; -const uint32_t BootloaderVersion::Major() { +uint32_t BootloaderVersion::Major() { return (BootloaderVersion::version >> 16u) & 0xff; } -const uint32_t BootloaderVersion::Minor() { +uint32_t BootloaderVersion::Minor() { return (BootloaderVersion::version >> 8u) & 0xff; } -const uint32_t BootloaderVersion::Patch() { +uint32_t BootloaderVersion::Patch() { return BootloaderVersion::version & 0xff; } @@ -25,7 +25,7 @@ const char* BootloaderVersion::VersionString() { return BootloaderVersion::versionString; } -const bool BootloaderVersion::IsValid() { +bool BootloaderVersion::IsValid() { return BootloaderVersion::version >= 0x00010000; } diff --git a/src/BootloaderVersion.h b/src/BootloaderVersion.h index 7ed90fa9..85d5e0ec 100644 --- a/src/BootloaderVersion.h +++ b/src/BootloaderVersion.h @@ -6,11 +6,11 @@ namespace Pinetime { class BootloaderVersion { public: - static const uint32_t Major(); - static const uint32_t Minor(); - static const uint32_t Patch(); + static uint32_t Major(); + static uint32_t Minor(); + static uint32_t Patch(); static const char* VersionString(); - static const bool IsValid(); + static bool IsValid(); static void SetVersion(uint32_t v); private: diff --git a/src/displayapp/screens/WatchFacePineTimeStyle.cpp b/src/displayapp/screens/WatchFacePineTimeStyle.cpp index dad2f4c7..63b421da 100644 --- a/src/displayapp/screens/WatchFacePineTimeStyle.cpp +++ b/src/displayapp/screens/WatchFacePineTimeStyle.cpp @@ -42,13 +42,6 @@ namespace { auto* screen = static_cast(obj->user_data); screen->UpdateSelected(obj, event); } - - bool IsBleIconVisible(bool isRadioEnabled, bool isConnected) { - if (!isRadioEnabled) { - return true; - } - return isConnected; - } } WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app, -- cgit v1.2.3 From 61c2d8dbc77ad909910a28406081e38c72150fce Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Mon, 13 Jun 2022 23:51:05 +0300 Subject: Flashlight default to max brightness and code cleanup --- src/displayapp/screens/FlashLight.cpp | 20 ++++++++++---------- src/displayapp/screens/FlashLight.h | 4 ++-- 2 files changed, 12 insertions(+), 12 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp index 8a10ee8d..b76ff5c0 100644 --- a/src/displayapp/screens/FlashLight.cpp +++ b/src/displayapp/screens/FlashLight.cpp @@ -5,9 +5,11 @@ using namespace Pinetime::Applications::Screens; namespace { - void event_handler(lv_obj_t* obj, lv_event_t event) { - auto* screen = static_cast(obj->user_data); - screen->OnClickEvent(obj, event); + void EventHandler(lv_obj_t* obj, lv_event_t event) { + if (event == LV_EVENT_CLICKED) { + auto* screen = static_cast(obj->user_data); + screen->Toggle(); + } } } @@ -16,7 +18,7 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, Controllers::BrightnessController& brightnessController) : Screen(app), systemTask {systemTask}, brightnessController {brightnessController} { - brightnessLevel = brightnessController.Level(); + brightnessController.Set(brightnessLevel); flashLight = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48); @@ -43,7 +45,7 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, lv_label_set_text_static(backgroundAction, ""); lv_obj_set_click(backgroundAction, true); backgroundAction->user_data = this; - lv_obj_set_event_cb(backgroundAction, event_handler); + lv_obj_set_event_cb(backgroundAction, EventHandler); systemTask.PushMessage(Pinetime::System::Messages::DisableSleeping); } @@ -89,11 +91,9 @@ void FlashLight::SetIndicators() { } } -void FlashLight::OnClickEvent(lv_obj_t* obj, lv_event_t event) { - if (obj == backgroundAction && event == LV_EVENT_CLICKED) { - isOn = !isOn; - SetColors(); - } +void FlashLight::Toggle() { + isOn = !isOn; + SetColors(); } bool FlashLight::OnTouchEvent(Pinetime::Applications::TouchEvents event) { diff --git a/src/displayapp/screens/FlashLight.h b/src/displayapp/screens/FlashLight.h index e91a1032..c885048f 100644 --- a/src/displayapp/screens/FlashLight.h +++ b/src/displayapp/screens/FlashLight.h @@ -17,7 +17,7 @@ namespace Pinetime { ~FlashLight() override; bool OnTouchEvent(Pinetime::Applications::TouchEvents event) override; - void OnClickEvent(lv_obj_t* obj, lv_event_t event); + void Toggle(); private: void SetIndicators(); @@ -26,7 +26,7 @@ namespace Pinetime { Pinetime::System::SystemTask& systemTask; Controllers::BrightnessController& brightnessController; - Controllers::BrightnessController::Levels brightnessLevel; + Controllers::BrightnessController::Levels brightnessLevel = Controllers::BrightnessController::Levels::High; lv_obj_t* flashLight; lv_obj_t* backgroundAction; -- cgit v1.2.3 From bab86633a00c58ff01b7866cc600aabb2208b6e3 Mon Sep 17 00:00:00 2001 From: Christoph Honal Date: Thu, 23 Jun 2022 02:43:04 +0200 Subject: Font generation: Fix patch binary path --- src/displayapp/fonts/generate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/displayapp') diff --git a/src/displayapp/fonts/generate.py b/src/displayapp/fonts/generate.py index c172df0c..5f940bf5 100755 --- a/src/displayapp/fonts/generate.py +++ b/src/displayapp/fonts/generate.py @@ -67,7 +67,7 @@ def main(): subprocess.check_call(line) if patches: for patch in patches: - subprocess.check_call(['/usr/bin/patch', name+'.c', patch]) + subprocess.check_call(['/usr/bin/env', 'patch', name+'.c', patch]) -- cgit v1.2.3 From 2c75e7aad8aa8d7b50dd3ea795bdc2938992aa69 Mon Sep 17 00:00:00 2001 From: Simon Willshire Date: Thu, 19 May 2022 13:59:09 -0400 Subject: Dismiss notifications by swiping right Add a new interface `NotificationManager::Dismiss(id)` to delete a notification with the specified `id`. The animate the notification dismiss the `RightAnim` transition to a black screen is used. After the dismiss the new message is swiped in from below or above. If we dismiss the oldest message (when we are at 5/5, or 3/3), then the new message after a dismiss should appear to come from below. Otherwise (when we are at 2/3) the new message after a dismiss should appear to come from above. Rework the index code to show the index of the currently viewed notification. Instead of calculating the index relative to the oldest `id` introduce a new interface `NotificationManager::IndexOf(id)`. This is done because the `id` of the notifications in the buffer aren't continuous anymore (as some messages could have been dismissed). Rework notification ring buffer to have a beginIdx and a size internally to make the dismissal of notifications easier. Fixes: https://github.com/InfiniTimeOrg/InfiniTime/issues/176 Co-authored-by: Simon Willshire Co-authored-by: Reinhold Gschweicher --- src/components/ble/NotificationManager.cpp | 145 +++++++++++++++--------- src/components/ble/NotificationManager.h | 31 +++-- src/displayapp/screens/Notifications.cpp | 175 +++++++++++++++++++++-------- src/displayapp/screens/Notifications.h | 18 ++- 4 files changed, 255 insertions(+), 114 deletions(-) (limited to 'src/displayapp') diff --git a/src/components/ble/NotificationManager.cpp b/src/components/ble/NotificationManager.cpp index ec99c4ed..223f6221 100644 --- a/src/components/ble/NotificationManager.cpp +++ b/src/components/ble/NotificationManager.cpp @@ -1,6 +1,7 @@ #include "components/ble/NotificationManager.h" #include #include +#include using namespace Pinetime::Controllers; @@ -9,73 +10,117 @@ constexpr uint8_t NotificationManager::MessageSize; void NotificationManager::Push(NotificationManager::Notification&& notif) { notif.id = GetNextId(); notif.valid = true; - notifications[writeIndex] = std::move(notif); - writeIndex = (writeIndex + 1 < TotalNbNotifications) ? writeIndex + 1 : 0; - if (!empty) - readIndex = (readIndex + 1 < TotalNbNotifications) ? readIndex + 1 : 0; - else - empty = false; - newNotification = true; -} - -NotificationManager::Notification NotificationManager::GetLastNotification() { - NotificationManager::Notification notification = notifications[readIndex]; - notification.index = 1; - return notification; + if (beginIdx > 0) { + --beginIdx; + } else { + beginIdx = notifications.size() - 1; + } + notifications[beginIdx] = std::move(notif); + if (size < notifications.size()) { + size++; + } } NotificationManager::Notification::Id NotificationManager::GetNextId() { return nextId++; } -NotificationManager::Notification NotificationManager::GetNext(NotificationManager::Notification::Id id) { - auto currentIterator = std::find_if(notifications.begin(), notifications.end(), [id](const Notification& n) { - return n.valid && n.id == id; - }); - if (currentIterator == notifications.end() || currentIterator->id != id) - return Notification {}; - - auto& lastNotification = notifications[readIndex]; - - NotificationManager::Notification result; - - if (currentIterator == (notifications.end() - 1)) - result = *(notifications.begin()); - else - result = *(currentIterator + 1); - - if (result.id <= id) +NotificationManager::Notification NotificationManager::GetLastNotification() const { + if (this->IsEmpty()) { return {}; + } + return this->At(0); +} - result.index = (lastNotification.id - result.id) + 1; - return result; +const NotificationManager::Notification& NotificationManager::At(NotificationManager::Notification::Idx idx) const { + if (idx >= notifications.size()) { + assert(false); + return notifications.at(beginIdx); // this should not happen + } + size_t read_idx = (beginIdx + idx) % notifications.size(); + return notifications.at(read_idx); } -NotificationManager::Notification NotificationManager::GetPrevious(NotificationManager::Notification::Id id) { - auto currentIterator = std::find_if(notifications.begin(), notifications.end(), [id](const Notification& n) { - return n.valid && n.id == id; - }); - if (currentIterator == notifications.end() || currentIterator->id != id) - return Notification {}; +NotificationManager::Notification& NotificationManager::At(NotificationManager::Notification::Idx idx) { + if (idx >= notifications.size()) { + assert(false); + return notifications.at(beginIdx); // this should not happen + } + size_t read_idx = (beginIdx + idx) % notifications.size(); + return notifications.at(read_idx); +} - auto& lastNotification = notifications[readIndex]; +NotificationManager::Notification::Idx NotificationManager::IndexOf(NotificationManager::Notification::Id id) const { + for (NotificationManager::Notification::Idx idx = 0; idx < this->size; idx++) { + const NotificationManager::Notification& notification = this->At(idx); + if (notification.id == id) { + return idx; + } + } + return size; +} - NotificationManager::Notification result; +NotificationManager::Notification NotificationManager::Get(NotificationManager::Notification::Id id) const { + NotificationManager::Notification::Idx idx = this->IndexOf(id); + if (idx == this->size) { + return {}; + } + return this->At(idx); +} - if (currentIterator == notifications.begin()) - result = *(notifications.end() - 1); - else - result = *(currentIterator - 1); +NotificationManager::Notification NotificationManager::GetNext(NotificationManager::Notification::Id id) const { + NotificationManager::Notification::Idx idx = this->IndexOf(id); + if (idx == this->size) { + return {}; + } + if (idx == 0 || idx > notifications.size()) { + return {}; + } + return this->At(idx - 1); +} - if (result.id >= id) +NotificationManager::Notification NotificationManager::GetPrevious(NotificationManager::Notification::Id id) const { + NotificationManager::Notification::Idx idx = this->IndexOf(id); + if (idx == this->size) { + return {}; + } + if (static_cast(idx + 1) >= notifications.size()) { return {}; + } + return this->At(idx + 1); +} + +void NotificationManager::DismissIdx(NotificationManager::Notification::Idx idx) { + if (this->IsEmpty()) { + return; + } + if (idx >= size) { + assert(false); + return; // this should not happen + } + if (idx == 0) { // just remove the first element, don't need to change the other elements + notifications.at(beginIdx).valid = false; + beginIdx = (beginIdx + 1) % notifications.size(); + } else { + // overwrite the specified entry by moving all later messages one index to the front + for (size_t i = idx; i < size - 1; ++i) { + this->At(i) = this->At(i + 1); + } + this->At(size - 1).valid = false; + } + --size; +} - result.index = (lastNotification.id - result.id) + 1; - return result; +void NotificationManager::Dismiss(NotificationManager::Notification::Id id) { + NotificationManager::Notification::Idx idx = this->IndexOf(id); + if (idx == this->size) { + return; + } + this->DismissIdx(idx); } -bool NotificationManager::AreNewNotificationsAvailable() { +bool NotificationManager::AreNewNotificationsAvailable() const { return newNotification; } @@ -84,9 +129,7 @@ bool NotificationManager::ClearNewNotificationFlag() { } size_t NotificationManager::NbNotifications() const { - return std::count_if(notifications.begin(), notifications.end(), [](const Notification& n) { - return n.valid; - }); + return size; } const char* NotificationManager::Notification::Message() const { diff --git a/src/components/ble/NotificationManager.h b/src/components/ble/NotificationManager.h index 40f174ea..4c199dbf 100644 --- a/src/components/ble/NotificationManager.h +++ b/src/components/ble/NotificationManager.h @@ -26,9 +26,9 @@ namespace Pinetime { struct Notification { using Id = uint8_t; - Id id; + using Idx = uint8_t; + Id id = 0; bool valid = false; - uint8_t index; uint8_t size; std::array message; Categories category = Categories::Unknown; @@ -36,27 +36,38 @@ namespace Pinetime { const char* Message() const; const char* Title() const; }; - Notification::Id nextId {0}; void Push(Notification&& notif); - Notification GetLastNotification(); - Notification GetNext(Notification::Id id); - Notification GetPrevious(Notification::Id id); + Notification GetLastNotification() const; + Notification Get(Notification::Id id) const; + Notification GetNext(Notification::Id id) const; + Notification GetPrevious(Notification::Id id) const; + // Return the index of the notification with the specified id, if not found return NbNotifications() + Notification::Idx IndexOf(Notification::Id id) const; bool ClearNewNotificationFlag(); - bool AreNewNotificationsAvailable(); + bool AreNewNotificationsAvailable() const; + void Dismiss(Notification::Id id); static constexpr size_t MaximumMessageSize() { return MessageSize; }; + bool IsEmpty() const { + return size == 0; + } size_t NbNotifications() const; private: + Notification::Id nextId {0}; Notification::Id GetNextId(); + const Notification& At(Notification::Idx idx) const; + Notification& At(Notification::Idx idx); + void DismissIdx(Notification::Idx idx); + static constexpr uint8_t TotalNbNotifications = 5; std::array notifications; - uint8_t readIndex = 0; - uint8_t writeIndex = 0; - bool empty = true; + size_t beginIdx = TotalNbNotifications - 1; // index of the newest notification + size_t size = 0; // number of valid notifications in buffer + std::atomic newNotification {false}; }; } diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index d7fe93a0..9c0d28a8 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -3,6 +3,7 @@ #include "components/ble/MusicService.h" #include "components/ble/AlertNotificationService.h" #include "displayapp/screens/Symbols.h" +#include using namespace Pinetime::Applications::Screens; extern lv_font_t jetbrains_mono_extrabold_compressed; @@ -20,30 +21,23 @@ Notifications::Notifications(DisplayApp* app, motorController {motorController}, systemTask {systemTask}, mode {mode} { + notificationManager.ClearNewNotificationFlag(); auto notification = notificationManager.GetLastNotification(); if (notification.valid) { currentId = notification.id; currentItem = std::make_unique(notification.Title(), notification.Message(), - notification.index, + 1, notification.category, notificationManager.NbNotifications(), - mode, alertNotificationService, motorController); validDisplay = true; } else { - currentItem = std::make_unique("Notification", - "No notification to display", - 0, - notification.category, - notificationManager.NbNotifications(), - Modes::Preview, - alertNotificationService, - motorController); + currentItem = std::make_unique(alertNotificationService, motorController); + validDisplay = false; } - if (mode == Modes::Preview) { systemTask.PushMessage(System::Messages::DisableSleeping); if (notification.category == Controllers::NotificationManager::Categories::IncomingCall) { @@ -77,7 +71,7 @@ Notifications::~Notifications() { void Notifications::Refresh() { if (mode == Modes::Preview && timeoutLine != nullptr) { TickType_t tick = xTaskGetTickCount(); - int32_t pos = 240 - ((tick - timeoutTickCountStart) / (timeoutLength / 240)); + int32_t pos = LV_HOR_RES - ((tick - timeoutTickCountStart) / (timeoutLength / LV_HOR_RES)); if (pos <= 0) { running = false; } else { @@ -85,6 +79,40 @@ void Notifications::Refresh() { lv_line_set_points(timeoutLine, timeoutLinePoints, 2); } } + + if (dismissingNotification) { + dismissingNotification = false; + auto notification = notificationManager.Get(currentId); + if (!notification.valid) { + notification = notificationManager.GetLastNotification(); + } + currentId = notification.id; + + if (!notification.valid) { + validDisplay = false; + } + + currentItem.reset(nullptr); + if (afterDismissNextMessageFromAbove) { + app->SetFullRefresh(DisplayApp::FullRefreshDirections::Down); + } else { + app->SetFullRefresh(DisplayApp::FullRefreshDirections::Up); + } + + if (validDisplay) { + Controllers::NotificationManager::Notification::Idx currentIdx = notificationManager.IndexOf(currentId); + currentItem = std::make_unique(notification.Title(), + notification.Message(), + currentIdx + 1, + notification.category, + notificationManager.NbNotifications(), + alertNotificationService, + motorController); + } else { + currentItem = std::make_unique(alertNotificationService, motorController); + } + } + running = currentItem->IsRunning() && running; } @@ -108,52 +136,82 @@ bool Notifications::OnTouchEvent(Pinetime::Applications::TouchEvents event) { } switch (event) { + case Pinetime::Applications::TouchEvents::SwipeRight: + if (validDisplay) { + Controllers::NotificationManager::Notification previousNotification; + auto previousMessage = notificationManager.GetPrevious(currentId); + auto nextMessage = notificationManager.GetNext(currentId); + if (!previousMessage.valid) { + // dismissed last message (like 5/5), need to go one message down (like 4/4) + afterDismissNextMessageFromAbove = false; // show next message coming from below + } else { + afterDismissNextMessageFromAbove = true; // show next message coming from above + } + notificationManager.Dismiss(currentId); + if (previousMessage.valid) { + currentId = previousMessage.id; + } else if (nextMessage.valid) { + currentId = nextMessage.id; + } else { + // don't update id, won't be found be refresh and try to load latest message or no message box + } + currentItem.reset(nullptr); + app->SetFullRefresh(DisplayApp::FullRefreshDirections::RightAnim); + // create black "inTransition" screen + currentItem = std::make_unique(alertNotificationService, motorController, true); + dismissingNotification = true; + return true; + } + return false; case Pinetime::Applications::TouchEvents::SwipeDown: { Controllers::NotificationManager::Notification previousNotification; - if (validDisplay) + if (validDisplay) { previousNotification = notificationManager.GetPrevious(currentId); - else + } else { previousNotification = notificationManager.GetLastNotification(); + } - if (!previousNotification.valid) + if (!previousNotification.valid) { return true; + } - validDisplay = true; currentId = previousNotification.id; + Controllers::NotificationManager::Notification::Idx currentIdx = notificationManager.IndexOf(currentId); + validDisplay = true; currentItem.reset(nullptr); app->SetFullRefresh(DisplayApp::FullRefreshDirections::Down); currentItem = std::make_unique(previousNotification.Title(), previousNotification.Message(), - previousNotification.index, + currentIdx + 1, previousNotification.category, notificationManager.NbNotifications(), - mode, alertNotificationService, motorController); } return true; case Pinetime::Applications::TouchEvents::SwipeUp: { Controllers::NotificationManager::Notification nextNotification; - if (validDisplay) + if (validDisplay) { nextNotification = notificationManager.GetNext(currentId); - else + } else { nextNotification = notificationManager.GetLastNotification(); + } if (!nextNotification.valid) { running = false; return false; } - validDisplay = true; currentId = nextNotification.id; + Controllers::NotificationManager::Notification::Idx currentIdx = notificationManager.IndexOf(currentId); + validDisplay = true; currentItem.reset(nullptr); app->SetFullRefresh(DisplayApp::FullRefreshDirections::Up); currentItem = std::make_unique(nextNotification.Title(), nextNotification.Message(), - nextNotification.index, + currentIdx + 1, nextNotification.category, notificationManager.NbNotifications(), - mode, alertNotificationService, motorController); } @@ -170,33 +228,54 @@ namespace { } } +Notifications::NotificationItem::NotificationItem(Pinetime::Controllers::AlertNotificationService& alertNotificationService, + Pinetime::Controllers::MotorController& motorController, + bool isTransition) + : NotificationItem("Notification", + "No notification to display", + 0, + Controllers::NotificationManager::Categories::Unknown, + 0, + alertNotificationService, + motorController, + isTransition) { +} + Notifications::NotificationItem::NotificationItem(const char* title, const char* msg, uint8_t notifNr, Controllers::NotificationManager::Categories category, uint8_t notifNb, - Modes mode, Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController) - : mode {mode}, alertNotificationService {alertNotificationService}, motorController {motorController} { - lv_obj_t* container1 = lv_cont_create(lv_scr_act(), NULL); - - lv_obj_set_style_local_bg_color(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); - lv_obj_set_style_local_pad_all(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 10); - lv_obj_set_style_local_pad_inner(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); - lv_obj_set_style_local_border_width(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); - - lv_obj_set_pos(container1, 0, 50); - lv_obj_set_size(container1, LV_HOR_RES, 190); - - lv_cont_set_layout(container1, LV_LAYOUT_COLUMN_LEFT); - lv_cont_set_fit(container1, LV_FIT_NONE); - - lv_obj_t* alert_count = lv_label_create(lv_scr_act(), nullptr); + Pinetime::Controllers::MotorController& motorController, + bool isTransition) + : alertNotificationService {alertNotificationService}, motorController {motorController} { + if (isTransition) { + return; // nothing to do, just a black box + } + container = lv_cont_create(lv_scr_act(), nullptr); + lv_obj_set_size(container, LV_HOR_RES, LV_VER_RES); + lv_obj_set_style_local_bg_color(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); + lv_obj_set_style_local_pad_all(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); + lv_obj_set_style_local_pad_inner(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); + lv_obj_set_style_local_border_width(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); + + subject_container = lv_cont_create(container, nullptr); + lv_obj_set_style_local_bg_color(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_pad_all(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 10); + lv_obj_set_style_local_pad_inner(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); + lv_obj_set_style_local_border_width(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); + + lv_obj_set_pos(subject_container, 0, 50); + lv_obj_set_size(subject_container, LV_HOR_RES, LV_VER_RES - 50); + lv_cont_set_layout(subject_container, LV_LAYOUT_COLUMN_LEFT); + lv_cont_set_fit(subject_container, LV_FIT_NONE); + + lv_obj_t* alert_count = lv_label_create(container, nullptr); lv_label_set_text_fmt(alert_count, "%i/%i", notifNr, notifNb); lv_obj_align(alert_count, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 16); - lv_obj_t* alert_type = lv_label_create(lv_scr_act(), nullptr); + lv_obj_t* alert_type = lv_label_create(container, nullptr); lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); if (title == nullptr) { lv_label_set_text_static(alert_type, "Notification"); @@ -217,27 +296,27 @@ Notifications::NotificationItem::NotificationItem(const char* title, ///////// switch (category) { default: { - lv_obj_t* alert_subject = lv_label_create(container1, nullptr); + lv_obj_t* alert_subject = lv_label_create(subject_container, nullptr); lv_obj_set_style_local_text_color(alert_subject, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); lv_label_set_long_mode(alert_subject, LV_LABEL_LONG_BREAK); lv_obj_set_width(alert_subject, LV_HOR_RES - 20); lv_label_set_text(alert_subject, msg); } break; case Controllers::NotificationManager::Categories::IncomingCall: { - lv_obj_set_height(container1, 108); - lv_obj_t* alert_subject = lv_label_create(container1, nullptr); + lv_obj_set_height(subject_container, 108); + lv_obj_t* alert_subject = lv_label_create(subject_container, nullptr); lv_obj_set_style_local_text_color(alert_subject, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); lv_label_set_long_mode(alert_subject, LV_LABEL_LONG_BREAK); lv_obj_set_width(alert_subject, LV_HOR_RES - 20); lv_label_set_text_static(alert_subject, "Incoming call from"); - lv_obj_t* alert_caller = lv_label_create(container1, nullptr); + lv_obj_t* alert_caller = lv_label_create(subject_container, nullptr); lv_obj_align(alert_caller, alert_subject, LV_ALIGN_OUT_BOTTOM_LEFT, 0, 0); lv_label_set_long_mode(alert_caller, LV_LABEL_LONG_BREAK); lv_obj_set_width(alert_caller, LV_HOR_RES - 20); lv_label_set_text(alert_caller, msg); - bt_accept = lv_btn_create(lv_scr_act(), nullptr); + bt_accept = lv_btn_create(container, nullptr); bt_accept->user_data = this; lv_obj_set_event_cb(bt_accept, CallEventHandler); lv_obj_set_size(bt_accept, 76, 76); @@ -246,7 +325,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_label_set_text_static(label_accept, Symbols::phone); lv_obj_set_style_local_bg_color(bt_accept, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); - bt_reject = lv_btn_create(lv_scr_act(), nullptr); + bt_reject = lv_btn_create(container, nullptr); bt_reject->user_data = this; lv_obj_set_event_cb(bt_reject, CallEventHandler); lv_obj_set_size(bt_reject, 76, 76); @@ -255,7 +334,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_label_set_text_static(label_reject, Symbols::phoneSlash); lv_obj_set_style_local_bg_color(bt_reject, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_RED); - bt_mute = lv_btn_create(lv_scr_act(), nullptr); + bt_mute = lv_btn_create(container, nullptr); bt_mute->user_data = this; lv_obj_set_event_cb(bt_mute, CallEventHandler); lv_obj_set_size(bt_mute, 76, 76); diff --git a/src/displayapp/screens/Notifications.h b/src/displayapp/screens/Notifications.h index 74160356..d3088f80 100644 --- a/src/displayapp/screens/Notifications.h +++ b/src/displayapp/screens/Notifications.h @@ -33,14 +33,17 @@ namespace Pinetime { class NotificationItem { public: + NotificationItem(Pinetime::Controllers::AlertNotificationService& alertNotificationService, + Pinetime::Controllers::MotorController& motorController, + bool isTransition = false); NotificationItem(const char* title, const char* msg, uint8_t notifNr, Controllers::NotificationManager::Categories, uint8_t notifNb, - Modes mode, Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController); + Pinetime::Controllers::MotorController& motorController, + bool isTransition = false); ~NotificationItem(); bool IsRunning() const { return running; @@ -48,16 +51,17 @@ namespace Pinetime { void OnCallButtonEvent(lv_obj_t*, lv_event_t event); private: - lv_obj_t* container1; + lv_obj_t* container; + lv_obj_t* subject_container; lv_obj_t* bt_accept; lv_obj_t* bt_mute; lv_obj_t* bt_reject; lv_obj_t* label_accept; lv_obj_t* label_mute; lv_obj_t* label_reject; - Modes mode; Pinetime::Controllers::AlertNotificationService& alertNotificationService; Pinetime::Controllers::MotorController& motorController; + bool running = true; }; @@ -68,15 +72,19 @@ namespace Pinetime { System::SystemTask& systemTask; Modes mode = Modes::Normal; std::unique_ptr currentItem; - Controllers::NotificationManager::Notification::Id currentId; + Pinetime::Controllers::NotificationManager::Notification::Id currentId; bool validDisplay = false; + bool afterDismissNextMessageFromAbove = false; lv_point_t timeoutLinePoints[2] {{0, 1}, {239, 1}}; lv_obj_t* timeoutLine = nullptr; TickType_t timeoutTickCountStart; + static const TickType_t timeoutLength = pdMS_TO_TICKS(7000); bool interacted = true; + bool dismissingNotification = false; + lv_task_t* taskRefresh; }; } -- cgit v1.2.3 From 12fad7411de43a6bc52fd7129a3edbd508fab6cc Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Mon, 27 Jun 2022 22:32:03 +0200 Subject: Notifications: no inTransition screen, simple blackbox is enough --- src/displayapp/screens/Notifications.cpp | 18 +++++++----------- src/displayapp/screens/Notifications.h | 6 ++---- 2 files changed, 9 insertions(+), 15 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index 9c0d28a8..1479cf5d 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -157,8 +157,10 @@ bool Notifications::OnTouchEvent(Pinetime::Applications::TouchEvents event) { } currentItem.reset(nullptr); app->SetFullRefresh(DisplayApp::FullRefreshDirections::RightAnim); - // create black "inTransition" screen - currentItem = std::make_unique(alertNotificationService, motorController, true); + // create black transition screen to let the notification dismiss to blackness + lv_obj_t* blackBox = lv_obj_create(lv_scr_act(), nullptr); + lv_obj_set_size(blackBox, LV_HOR_RES, LV_VER_RES); + lv_obj_set_style_local_bg_color(blackBox, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); dismissingNotification = true; return true; } @@ -229,16 +231,14 @@ namespace { } Notifications::NotificationItem::NotificationItem(Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController, - bool isTransition) + Pinetime::Controllers::MotorController& motorController) : NotificationItem("Notification", "No notification to display", 0, Controllers::NotificationManager::Categories::Unknown, 0, alertNotificationService, - motorController, - isTransition) { + motorController) { } Notifications::NotificationItem::NotificationItem(const char* title, @@ -247,12 +247,8 @@ Notifications::NotificationItem::NotificationItem(const char* title, Controllers::NotificationManager::Categories category, uint8_t notifNb, Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController, - bool isTransition) + Pinetime::Controllers::MotorController& motorController) : alertNotificationService {alertNotificationService}, motorController {motorController} { - if (isTransition) { - return; // nothing to do, just a black box - } container = lv_cont_create(lv_scr_act(), nullptr); lv_obj_set_size(container, LV_HOR_RES, LV_VER_RES); lv_obj_set_style_local_bg_color(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); diff --git a/src/displayapp/screens/Notifications.h b/src/displayapp/screens/Notifications.h index d3088f80..9d843a9b 100644 --- a/src/displayapp/screens/Notifications.h +++ b/src/displayapp/screens/Notifications.h @@ -34,16 +34,14 @@ namespace Pinetime { class NotificationItem { public: NotificationItem(Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController, - bool isTransition = false); + Pinetime::Controllers::MotorController& motorController); NotificationItem(const char* title, const char* msg, uint8_t notifNr, Controllers::NotificationManager::Categories, uint8_t notifNb, Pinetime::Controllers::AlertNotificationService& alertNotificationService, - Pinetime::Controllers::MotorController& motorController, - bool isTransition = false); + Pinetime::Controllers::MotorController& motorController); ~NotificationItem(); bool IsRunning() const { return running; -- cgit v1.2.3 From ec8a84505277f2dbaaa957947d432ea03758f9bf Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 5 Jul 2022 08:41:09 +0300 Subject: Add PageIndicator widget to reduce code duplication (#1218) * Move PageIndicator widget to its own files to reduce code duplication * Use uint8_t in PageIndicator --- src/CMakeLists.txt | 2 ++ src/displayapp/screens/Label.cpp | 29 ++--------------------------- src/displayapp/screens/Label.h | 6 ++---- src/displayapp/screens/List.cpp | 27 ++------------------------- src/displayapp/screens/List.h | 6 ++---- src/displayapp/screens/Tile.cpp | 27 ++------------------------- src/displayapp/screens/Tile.h | 9 ++++----- src/displayapp/widgets/PageIndicator.cpp | 31 +++++++++++++++++++++++++++++++ src/displayapp/widgets/PageIndicator.h | 23 +++++++++++++++++++++++ 9 files changed, 70 insertions(+), 90 deletions(-) create mode 100644 src/displayapp/widgets/PageIndicator.cpp create mode 100644 src/displayapp/widgets/PageIndicator.h (limited to 'src/displayapp') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3b7503fd..9de1ca11 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -405,6 +405,7 @@ list(APPEND SOURCE_FILES displayapp/screens/Styles.cpp displayapp/Colors.cpp displayapp/widgets/Counter.cpp + displayapp/widgets/PageIndicator.cpp ## Settings displayapp/screens/settings/QuickSettings.cpp @@ -609,6 +610,7 @@ set(INCLUDE_FILES displayapp/screens/Alarm.h displayapp/Colors.h displayapp/widgets/Counter.h + displayapp/widgets/PageIndicator.h drivers/St7789.h drivers/SpiNorFlash.h drivers/SpiMaster.h diff --git a/src/displayapp/screens/Label.cpp b/src/displayapp/screens/Label.cpp index 4486d6fd..d5a09be9 100644 --- a/src/displayapp/screens/Label.cpp +++ b/src/displayapp/screens/Label.cpp @@ -3,34 +3,9 @@ using namespace Pinetime::Applications::Screens; Label::Label(uint8_t screenID, uint8_t numScreens, Pinetime::Applications::DisplayApp* app, lv_obj_t* labelText) - : Screen(app), labelText {labelText} { + : Screen(app), labelText {labelText}, pageIndicator(screenID, numScreens) { - if (numScreens > 1) { - pageIndicatorBasePoints[0].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[0].y = 0; - pageIndicatorBasePoints[1].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[1].y = LV_VER_RES; - - pageIndicatorBase = lv_line_create(lv_scr_act(), NULL); - lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); - lv_obj_set_style_local_line_rounded(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, true); - lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints, 2); - - uint16_t indicatorSize = LV_VER_RES / numScreens; - uint16_t indicatorPos = indicatorSize * screenID; - - pageIndicatorPoints[0].x = LV_HOR_RES - 1; - pageIndicatorPoints[0].y = indicatorPos; - pageIndicatorPoints[1].x = LV_HOR_RES - 1; - pageIndicatorPoints[1].y = indicatorPos + indicatorSize; - - pageIndicator = lv_line_create(lv_scr_act(), NULL); - lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_obj_set_style_local_line_rounded(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, true); - lv_line_set_points(pageIndicator, pageIndicatorPoints, 2); - } + pageIndicator.Create(); } Label::~Label() { diff --git a/src/displayapp/screens/Label.h b/src/displayapp/screens/Label.h index 3fe5111f..acd8b377 100644 --- a/src/displayapp/screens/Label.h +++ b/src/displayapp/screens/Label.h @@ -1,6 +1,7 @@ #pragma once #include "displayapp/screens/Screen.h" +#include "displayapp/widgets/PageIndicator.h" #include namespace Pinetime { @@ -14,10 +15,7 @@ namespace Pinetime { private: lv_obj_t* labelText = nullptr; - lv_point_t pageIndicatorBasePoints[2]; - lv_point_t pageIndicatorPoints[2]; - lv_obj_t* pageIndicatorBase; - lv_obj_t* pageIndicator; + Widgets::PageIndicator pageIndicator; }; } } diff --git a/src/displayapp/screens/List.cpp b/src/displayapp/screens/List.cpp index 0bc7da80..f44825c7 100644 --- a/src/displayapp/screens/List.cpp +++ b/src/displayapp/screens/List.cpp @@ -16,37 +16,14 @@ List::List(uint8_t screenID, DisplayApp* app, Controllers::Settings& settingsController, std::array& applications) - : Screen(app), settingsController {settingsController} { + : Screen(app), settingsController {settingsController}, pageIndicator(screenID, numScreens) { // Set the background to Black lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, lv_color_make(0, 0, 0)); settingsController.SetSettingsMenu(screenID); - if (numScreens > 1) { - pageIndicatorBasePoints[0].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[0].y = 0; - pageIndicatorBasePoints[1].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[1].y = LV_VER_RES; - - pageIndicatorBase = lv_line_create(lv_scr_act(), NULL); - lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); - lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints, 2); - - const uint16_t indicatorSize = LV_VER_RES / numScreens; - const uint16_t indicatorPos = indicatorSize * screenID; - - pageIndicatorPoints[0].x = LV_HOR_RES - 1; - pageIndicatorPoints[0].y = indicatorPos; - pageIndicatorPoints[1].x = LV_HOR_RES - 1; - pageIndicatorPoints[1].y = indicatorPos + indicatorSize; - - pageIndicator = lv_line_create(lv_scr_act(), NULL); - lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_line_set_points(pageIndicator, pageIndicatorPoints, 2); - } + pageIndicator.Create(); lv_obj_t* container1 = lv_cont_create(lv_scr_act(), nullptr); diff --git a/src/displayapp/screens/List.h b/src/displayapp/screens/List.h index 88ef28ea..b5bc032c 100644 --- a/src/displayapp/screens/List.h +++ b/src/displayapp/screens/List.h @@ -4,6 +4,7 @@ #include #include #include "displayapp/screens/Screen.h" +#include "displayapp/widgets/PageIndicator.h" #include "displayapp/Apps.h" #include "components/settings/Settings.h" @@ -35,10 +36,7 @@ namespace Pinetime { lv_obj_t* itemApps[MAXLISTITEMS]; - lv_point_t pageIndicatorBasePoints[2]; - lv_point_t pageIndicatorPoints[2]; - lv_obj_t* pageIndicatorBase; - lv_obj_t* pageIndicator; + Widgets::PageIndicator pageIndicator; }; } } diff --git a/src/displayapp/screens/Tile.cpp b/src/displayapp/screens/Tile.cpp index cce1d2ed..c633e17b 100644 --- a/src/displayapp/screens/Tile.cpp +++ b/src/displayapp/screens/Tile.cpp @@ -29,7 +29,7 @@ Tile::Tile(uint8_t screenID, Pinetime::Controllers::Battery& batteryController, Controllers::DateTime& dateTimeController, std::array& applications) - : Screen(app), batteryController {batteryController}, dateTimeController {dateTimeController} { + : Screen(app), batteryController {batteryController}, dateTimeController {dateTimeController}, pageIndicator(screenID, numScreens) { settingsController.SetAppMenu(screenID); @@ -42,30 +42,7 @@ Tile::Tile(uint8_t screenID, batteryIcon.Create(lv_scr_act()); lv_obj_align(batteryIcon.GetObject(), nullptr, LV_ALIGN_IN_TOP_RIGHT, -8, 0); - if (numScreens > 1) { - pageIndicatorBasePoints[0].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[0].y = 0; - pageIndicatorBasePoints[1].x = LV_HOR_RES - 1; - pageIndicatorBasePoints[1].y = LV_VER_RES; - - pageIndicatorBase = lv_line_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); - lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints, 2); - - const uint16_t indicatorSize = LV_VER_RES / numScreens; - const uint16_t indicatorPos = indicatorSize * screenID; - - pageIndicatorPoints[0].x = LV_HOR_RES - 1; - pageIndicatorPoints[0].y = indicatorPos; - pageIndicatorPoints[1].x = LV_HOR_RES - 1; - pageIndicatorPoints[1].y = indicatorPos + indicatorSize; - - pageIndicator = lv_line_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_line_set_points(pageIndicator, pageIndicatorPoints, 2); - } + pageIndicator.Create(); uint8_t btIndex = 0; for (uint8_t i = 0; i < 6; i++) { diff --git a/src/displayapp/screens/Tile.h b/src/displayapp/screens/Tile.h index 48747144..ff121376 100644 --- a/src/displayapp/screens/Tile.h +++ b/src/displayapp/screens/Tile.h @@ -9,7 +9,8 @@ #include "components/settings/Settings.h" #include "components/datetime/DateTimeController.h" #include "components/battery/BatteryController.h" -#include +#include "displayapp/screens/BatteryIcon.h" +#include "displayapp/widgets/PageIndicator.h" namespace Pinetime { namespace Applications { @@ -41,12 +42,10 @@ namespace Pinetime { lv_task_t* taskUpdate; lv_obj_t* label_time; - lv_point_t pageIndicatorBasePoints[2]; - lv_point_t pageIndicatorPoints[2]; - lv_obj_t* pageIndicatorBase; - lv_obj_t* pageIndicator; lv_obj_t* btnm1; + Widgets::PageIndicator pageIndicator; + BatteryIcon batteryIcon; const char* btnmMap[8]; diff --git a/src/displayapp/widgets/PageIndicator.cpp b/src/displayapp/widgets/PageIndicator.cpp new file mode 100644 index 00000000..06058beb --- /dev/null +++ b/src/displayapp/widgets/PageIndicator.cpp @@ -0,0 +1,31 @@ +#include "displayapp/widgets/PageIndicator.h" + +using namespace Pinetime::Applications::Widgets; + +PageIndicator::PageIndicator(uint8_t nCurrentScreen, uint8_t nScreens) : nCurrentScreen {nCurrentScreen}, nScreens {nScreens} { +} + +void PageIndicator::Create() { + pageIndicatorBasePoints[0].x = LV_HOR_RES - 1; + pageIndicatorBasePoints[0].y = 0; + pageIndicatorBasePoints[1].x = LV_HOR_RES - 1; + pageIndicatorBasePoints[1].y = LV_VER_RES; + + pageIndicatorBase = lv_line_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); + lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); + lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints, 2); + + const int16_t indicatorSize = LV_VER_RES / nScreens; + const int16_t indicatorPos = indicatorSize * nCurrentScreen; + + pageIndicatorPoints[0].x = LV_HOR_RES - 1; + pageIndicatorPoints[0].y = indicatorPos; + pageIndicatorPoints[1].x = LV_HOR_RES - 1; + pageIndicatorPoints[1].y = indicatorPos + indicatorSize; + + pageIndicator = lv_line_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); + lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_line_set_points(pageIndicator, pageIndicatorPoints, 2); +} diff --git a/src/displayapp/widgets/PageIndicator.h b/src/displayapp/widgets/PageIndicator.h new file mode 100644 index 00000000..8484735e --- /dev/null +++ b/src/displayapp/widgets/PageIndicator.h @@ -0,0 +1,23 @@ +#pragma once +#include + +namespace Pinetime { + namespace Applications { + namespace Widgets { + class PageIndicator { + public: + PageIndicator(uint8_t nCurrentScreen, uint8_t nScreens); + void Create(); + + private: + uint8_t nCurrentScreen; + uint8_t nScreens; + + lv_point_t pageIndicatorBasePoints[2]; + lv_point_t pageIndicatorPoints[2]; + lv_obj_t* pageIndicatorBase; + lv_obj_t* pageIndicator; + }; + } + } +} -- cgit v1.2.3 From 9b9286175322f99ae0265565ae9b0ae49efa2c26 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Wed, 6 Jul 2022 11:29:23 +0300 Subject: Twos code cleanup (#1220) --- src/displayapp/screens/Twos.cpp | 208 ++++++++++++++++++++-------------------- src/displayapp/screens/Twos.h | 11 ++- 2 files changed, 112 insertions(+), 107 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Twos.cpp b/src/displayapp/screens/Twos.cpp index 7e465fcd..5d1f4980 100644 --- a/src/displayapp/screens/Twos.cpp +++ b/src/displayapp/screens/Twos.cpp @@ -1,10 +1,7 @@ #include "displayapp/screens/Twos.h" -#include #include #include #include -#include -#include using namespace Pinetime::Applications::Screens; @@ -21,33 +18,33 @@ Twos::Twos(Pinetime::Applications::DisplayApp* app) : Screen(app) { lv_style_set_border_width(&style_cell1, LV_STATE_DEFAULT, 3); lv_style_set_bg_opa(&style_cell1, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_cell1, LV_STATE_DEFAULT, lv_color_hex(0xcdc0b4)); - lv_style_set_pad_top(&style_cell1, LV_STATE_DEFAULT, 25); + lv_style_set_pad_top(&style_cell1, LV_STATE_DEFAULT, 29); lv_style_set_text_color(&style_cell1, LV_STATE_DEFAULT, LV_COLOR_BLACK); lv_style_set_border_color(&style_cell2, LV_STATE_DEFAULT, lv_color_hex(0xbbada0)); lv_style_set_border_width(&style_cell2, LV_STATE_DEFAULT, 3); lv_style_set_bg_opa(&style_cell2, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_cell2, LV_STATE_DEFAULT, lv_color_hex(0xefdfc6)); - lv_style_set_pad_top(&style_cell2, LV_STATE_DEFAULT, 25); + lv_style_set_pad_top(&style_cell2, LV_STATE_DEFAULT, 29); lv_style_set_text_color(&style_cell2, LV_STATE_DEFAULT, LV_COLOR_BLACK); lv_style_set_border_color(&style_cell3, LV_STATE_DEFAULT, lv_color_hex(0xbbada0)); lv_style_set_border_width(&style_cell3, LV_STATE_DEFAULT, 3); lv_style_set_bg_opa(&style_cell3, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_cell3, LV_STATE_DEFAULT, lv_color_hex(0xef9263)); - lv_style_set_pad_top(&style_cell3, LV_STATE_DEFAULT, 25); + lv_style_set_pad_top(&style_cell3, LV_STATE_DEFAULT, 29); lv_style_set_border_color(&style_cell4, LV_STATE_DEFAULT, lv_color_hex(0xbbada0)); lv_style_set_border_width(&style_cell4, LV_STATE_DEFAULT, 3); lv_style_set_bg_opa(&style_cell4, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_cell4, LV_STATE_DEFAULT, lv_color_hex(0xf76142)); - lv_style_set_pad_top(&style_cell4, LV_STATE_DEFAULT, 25); + lv_style_set_pad_top(&style_cell4, LV_STATE_DEFAULT, 29); lv_style_set_border_color(&style_cell5, LV_STATE_DEFAULT, lv_color_hex(0xbbada0)); lv_style_set_border_width(&style_cell5, LV_STATE_DEFAULT, 3); lv_style_set_bg_opa(&style_cell5, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_cell5, LV_STATE_DEFAULT, lv_color_hex(0x007dc5)); - lv_style_set_pad_top(&style_cell5, LV_STATE_DEFAULT, 25); + lv_style_set_pad_top(&style_cell5, LV_STATE_DEFAULT, 29); // format grid display @@ -57,24 +54,22 @@ Twos::Twos(Pinetime::Applications::DisplayApp* app) : Screen(app) { lv_obj_add_style(gridDisplay, LV_TABLE_PART_CELL3, &style_cell3); lv_obj_add_style(gridDisplay, LV_TABLE_PART_CELL4, &style_cell4); lv_obj_add_style(gridDisplay, LV_TABLE_PART_CELL4 + 1, &style_cell5); - lv_table_set_col_cnt(gridDisplay, 4); - lv_table_set_row_cnt(gridDisplay, 4); - lv_table_set_col_width(gridDisplay, 0, LV_HOR_RES / 4); - lv_table_set_col_width(gridDisplay, 1, LV_HOR_RES / 4); - lv_table_set_col_width(gridDisplay, 2, LV_HOR_RES / 4); - lv_table_set_col_width(gridDisplay, 3, LV_HOR_RES / 4); - lv_obj_align(gridDisplay, NULL, LV_ALIGN_IN_BOTTOM_MID, 0, 0); - - lv_obj_clean_style_list(gridDisplay, LV_TABLE_PART_BG); - - // initialize grid - for (int row = 0; row < 4; row++) { - for (int col = 0; col < 4; col++) { + lv_table_set_col_cnt(gridDisplay, nCols); + lv_table_set_row_cnt(gridDisplay, nRows); + for (int col = 0; col < nCols; col++) { + static constexpr int colWidth = LV_HOR_RES_MAX / nCols; + lv_table_set_col_width(gridDisplay, col, colWidth); + for (int row = 0; row < nRows; row++) { grid[row][col].value = 0; lv_table_set_cell_type(gridDisplay, row, col, 1); lv_table_set_cell_align(gridDisplay, row, col, LV_LABEL_ALIGN_CENTER); } } + // Move one pixel down to remove a gap + lv_obj_align(gridDisplay, nullptr, LV_ALIGN_IN_BOTTOM_MID, 0, 1); + + lv_obj_clean_style_list(gridDisplay, LV_TABLE_PART_BG); + placeNewTile(); placeNewTile(); @@ -82,7 +77,7 @@ Twos::Twos(Pinetime::Applications::DisplayApp* app) : Screen(app) { scoreText = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_width(scoreText, LV_HOR_RES); lv_label_set_align(scoreText, LV_ALIGN_IN_LEFT_MID); - lv_obj_align(scoreText, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 10); + lv_obj_align(scoreText, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); lv_label_set_recolor(scoreText, true); lv_label_set_text_fmt(scoreText, "Score #FFFF00 %i#", score); } @@ -97,39 +92,38 @@ Twos::~Twos() { } bool Twos::placeNewTile() { - std::vector> availableCells; - for (int row = 0; row < 4; row++) { - for (int col = 0; col < 4; col++) { - if (!grid[row][col].value) { - availableCells.push_back(std::make_pair(row, col)); - } + unsigned int emptyCells[nCells]; + unsigned int nEmpty = 0; + for (unsigned int i = 0; i < nCells; i++) { + const unsigned int row = i / nCols; + const unsigned int col = i % nCols; + if (grid[row][col].value == 0) { + emptyCells[nEmpty] = i; + nEmpty++; } } - if (availableCells.size() == 0) { + if (nEmpty == 0) { return false; // game lost } - auto it = availableCells.cbegin(); - int random = rand() % availableCells.size(); - std::advance(it, random); - std::pair newCell = *it; + int random = rand() % nEmpty; - if ((rand() % 100) < 90) - grid[newCell.first][newCell.second].value = 2; - else - grid[newCell.first][newCell.second].value = 4; - updateGridDisplay(grid); + if ((rand() % 100) < 90) { + grid[emptyCells[random] / nCols][emptyCells[random] % nCols].value = 2; + } else { + grid[emptyCells[random] / nCols][emptyCells[random] % nCols].value = 4; + } + updateGridDisplay(); return true; } -bool Twos::tryMerge(TwosTile grid[][4], int& newRow, int& newCol, int oldRow, int oldCol) { +bool Twos::tryMerge(int newRow, int newCol, int oldRow, int oldCol) { if (grid[newRow][newCol].value == grid[oldRow][oldCol].value) { if ((newCol != oldCol) || (newRow != oldRow)) { if (!grid[newRow][newCol].merged) { - unsigned int newVal = grid[oldRow][oldCol].value *= 2; - grid[newRow][newCol].value = newVal; - score += newVal; + grid[newRow][newCol].value *= 2; + score += grid[newRow][newCol].value; lv_label_set_text_fmt(scoreText, "Score #FFFF00 %i#", score); grid[oldRow][oldCol].value = 0; grid[newRow][newCol].merged = true; @@ -140,7 +134,7 @@ bool Twos::tryMerge(TwosTile grid[][4], int& newRow, int& newCol, int oldRow, in return false; } -bool Twos::tryMove(TwosTile grid[][4], int newRow, int newCol, int oldRow, int oldCol) { +bool Twos::tryMove(int newRow, int newCol, int oldRow, int oldCol) { if (((newCol >= 0) && (newCol != oldCol)) || ((newRow >= 0) && (newRow != oldRow))) { grid[newRow][newCol].value = grid[oldRow][oldCol].value; grid[oldRow][oldCol].value = 0; @@ -151,28 +145,30 @@ bool Twos::tryMove(TwosTile grid[][4], int newRow, int newCol, int oldRow, int o bool Twos::OnTouchEvent(Pinetime::Applications::TouchEvents event) { bool validMove = false; - for (int row = 0; row < 4; row++) { - for (int col = 0; col < 4; col++) { - grid[row][col].merged = false; // reinitialize merge state - } + for (unsigned int i = 0; i < nCells; i++) { + const unsigned int row = i / nCols; + const unsigned int col = i % nCols; + grid[row][col].merged = false; // reinitialize merge state } switch (event) { case TouchEvents::SwipeLeft: - for (int col = 1; col < 4; col++) { // ignore tiles already on far left - for (int row = 0; row < 4; row++) { - if (grid[row][col].value) { + for (int col = 1; col < nCols; col++) { // ignore tiles already on far left + for (int row = 0; row < nRows; row++) { + if (grid[row][col].value > 0) { int newCol = -1; for (int potentialNewCol = col - 1; potentialNewCol >= 0; potentialNewCol--) { - if (!grid[row][potentialNewCol].value) { + if (grid[row][potentialNewCol].value == 0) { newCol = potentialNewCol; } else { // blocked by another tile - if (tryMerge(grid, row, potentialNewCol, row, col)) + if (tryMerge(row, potentialNewCol, row, col)) { validMove = true; + } break; } } - if (tryMove(grid, row, newCol, row, col)) + if (tryMove(row, newCol, row, col)) { validMove = true; + } } } } @@ -181,21 +177,23 @@ bool Twos::OnTouchEvent(Pinetime::Applications::TouchEvents event) { } return true; case TouchEvents::SwipeRight: - for (int col = 2; col >= 0; col--) { // ignore tiles already on far right - for (int row = 0; row < 4; row++) { - if (grid[row][col].value) { + for (int col = nCols - 2; col >= 0; col--) { // ignore tiles already on far right + for (int row = 0; row < nRows; row++) { + if (grid[row][col].value > 0) { int newCol = -1; - for (int potentialNewCol = col + 1; potentialNewCol < 4; potentialNewCol++) { - if (!grid[row][potentialNewCol].value) { + for (int potentialNewCol = col + 1; potentialNewCol < nCols; potentialNewCol++) { + if (grid[row][potentialNewCol].value == 0) { newCol = potentialNewCol; } else { // blocked by another tile - if (tryMerge(grid, row, potentialNewCol, row, col)) + if (tryMerge(row, potentialNewCol, row, col)) { validMove = true; + } break; } } - if (tryMove(grid, row, newCol, row, col)) + if (tryMove(row, newCol, row, col)) { validMove = true; + } } } } @@ -204,21 +202,23 @@ bool Twos::OnTouchEvent(Pinetime::Applications::TouchEvents event) { } return true; case TouchEvents::SwipeUp: - for (int row = 1; row < 4; row++) { // ignore tiles already on top - for (int col = 0; col < 4; col++) { - if (grid[row][col].value) { + for (int row = 1; row < nRows; row++) { // ignore tiles already on top + for (int col = 0; col < nCols; col++) { + if (grid[row][col].value > 0) { int newRow = -1; for (int potentialNewRow = row - 1; potentialNewRow >= 0; potentialNewRow--) { - if (!grid[potentialNewRow][col].value) { + if (grid[potentialNewRow][col].value == 0) { newRow = potentialNewRow; } else { // blocked by another tile - if (tryMerge(grid, potentialNewRow, col, row, col)) + if (tryMerge(potentialNewRow, col, row, col)) { validMove = true; + } break; } } - if (tryMove(grid, newRow, col, row, col)) + if (tryMove(newRow, col, row, col)) { validMove = true; + } } } } @@ -227,21 +227,23 @@ bool Twos::OnTouchEvent(Pinetime::Applications::TouchEvents event) { } return true; case TouchEvents::SwipeDown: - for (int row = 2; row >= 0; row--) { // ignore tiles already on bottom - for (int col = 0; col < 4; col++) { - if (grid[row][col].value) { + for (int row = nRows - 2; row >= 0; row--) { // ignore tiles already on bottom + for (int col = 0; col < nCols; col++) { + if (grid[row][col].value > 0) { int newRow = -1; - for (int potentialNewRow = row + 1; potentialNewRow < 4; potentialNewRow++) { - if (!grid[potentialNewRow][col].value) { + for (int potentialNewRow = row + 1; potentialNewRow < nRows; potentialNewRow++) { + if (grid[potentialNewRow][col].value == 0) { newRow = potentialNewRow; } else { // blocked by another tile - if (tryMerge(grid, potentialNewRow, col, row, col)) + if (tryMerge(potentialNewRow, col, row, col)) { validMove = true; + } break; } } - if (tryMove(grid, newRow, col, row, col)) + if (tryMove(newRow, col, row, col)) { validMove = true; + } } } } @@ -255,36 +257,36 @@ bool Twos::OnTouchEvent(Pinetime::Applications::TouchEvents event) { return false; } -void Twos::updateGridDisplay(TwosTile grid[][4]) { - for (int row = 0; row < 4; row++) { - for (int col = 0; col < 4; col++) { - if (grid[row][col].value) { - char buffer[7]; - sprintf(buffer, "%d", grid[row][col].value); - lv_table_set_cell_value(gridDisplay, row, col, buffer); - } else { - lv_table_set_cell_value(gridDisplay, row, col, ""); - } - switch (grid[row][col].value) { - case 0: - lv_table_set_cell_type(gridDisplay, row, col, 1); - break; - case 2: - case 4: - lv_table_set_cell_type(gridDisplay, row, col, 2); - break; - case 8: - case 16: - lv_table_set_cell_type(gridDisplay, row, col, 3); - break; - case 32: - case 64: - lv_table_set_cell_type(gridDisplay, row, col, 4); - break; - default: - lv_table_set_cell_type(gridDisplay, row, col, 5); - break; - } +void Twos::updateGridDisplay() { + for (unsigned int i = 0; i < nCells; i++) { + const unsigned int row = i / nCols; + const unsigned int col = i % nCols; + if (grid[row][col].value > 0) { + char buffer[7]; + sprintf(buffer, "%d", grid[row][col].value); + lv_table_set_cell_value(gridDisplay, row, col, buffer); + } else { + lv_table_set_cell_value(gridDisplay, row, col, ""); + } + switch (grid[row][col].value) { + case 0: + lv_table_set_cell_type(gridDisplay, row, col, 1); + break; + case 2: + case 4: + lv_table_set_cell_type(gridDisplay, row, col, 2); + break; + case 8: + case 16: + lv_table_set_cell_type(gridDisplay, row, col, 3); + break; + case 32: + case 64: + lv_table_set_cell_type(gridDisplay, row, col, 4); + break; + default: + lv_table_set_cell_type(gridDisplay, row, col, 5); + break; } } } diff --git a/src/displayapp/screens/Twos.h b/src/displayapp/screens/Twos.h index 5a0c4350..4a6ada0b 100644 --- a/src/displayapp/screens/Twos.h +++ b/src/displayapp/screens/Twos.h @@ -26,11 +26,14 @@ namespace Pinetime { lv_obj_t* scoreText; lv_obj_t* gridDisplay; - TwosTile grid[4][4]; + static constexpr int nCols = 4; + static constexpr int nRows = 4; + static constexpr int nCells = nCols * nRows; + TwosTile grid[nRows][nCols]; unsigned int score = 0; - void updateGridDisplay(TwosTile grid[][4]); - bool tryMerge(TwosTile grid[][4], int& newRow, int& newCol, int oldRow, int oldCol); - bool tryMove(TwosTile grid[][4], int newRow, int newCol, int oldRow, int oldCol); + void updateGridDisplay(); + bool tryMerge(int newRow, int newCol, int oldRow, int oldCol); + bool tryMove(int newRow, int newCol, int oldRow, int oldCol); bool placeNewTile(); }; } -- cgit v1.2.3 From 463355281a21cfe380aef2068cf765a867b6ad01 Mon Sep 17 00:00:00 2001 From: Christoph Honal Date: Mon, 27 Jun 2022 08:34:01 +0200 Subject: Display target build variant in system info screen --- src/CMakeLists.txt | 1 + src/displayapp/screens/SystemInfo.cpp | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) (limited to 'src/displayapp') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index aa06b2b3..967d498b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -788,6 +788,7 @@ add_definitions(-DMYNEWT_VAL_BLE_LL_RFMGMT_ENABLE_TIME=1500) # Target hardware configuration options add_definitions(-DTARGET_DEVICE_${TARGET_DEVICE}) +add_definitions(-DTARGET_DEVICE_NAME="${TARGET_DEVICE}") if(TARGET_DEVICE STREQUAL "PINETIME") add_definitions(-DDRIVER_PINMAP_PINETIME) add_definitions(-DCLOCK_CONFIG_LF_SRC=1) # XTAL diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index e3983d7c..7e1ae2f8 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -136,6 +136,10 @@ std::unique_ptr SystemInfo::CreateScreen2() { uptimeSeconds = uptimeSeconds % secondsInAMinute; // TODO handle more than 100 days of uptime +#ifndef TARGET_DEVICE_NAME + #define TARGET_DEVICE_NAME "UNKNOWN" +#endif + lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr); lv_label_set_recolor(label, true); lv_label_set_text_fmt(label, @@ -146,7 +150,8 @@ std::unique_ptr SystemInfo::CreateScreen2() { "#808080 Backlight# %s\n" "#808080 Last reset# %s\n" "#808080 Accel.# %s\n" - "#808080 Touch.# %x.%x.%x\n", + "#808080 Touch.# %x.%x.%x\n" + "#808080 Model# %s", dateTimeController.Day(), static_cast(dateTimeController.Month()), dateTimeController.Year(), @@ -164,7 +169,8 @@ std::unique_ptr SystemInfo::CreateScreen2() { ToString(motionController.DeviceType()), touchPanel.GetChipId(), touchPanel.GetVendorId(), - touchPanel.GetFwVersion()); + touchPanel.GetFwVersion(), + TARGET_DEVICE_NAME); lv_obj_align(label, lv_scr_act(), LV_ALIGN_CENTER, 0, 0); return std::make_unique(1, 5, app, label); } -- cgit v1.2.3 From cea81fea9c2892bd9d83ff0ba9ba681db17f718f Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 22:16:55 +0300 Subject: Always restore brightness on app switch (#1213) --- src/displayapp/DisplayApp.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/displayapp') diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 3174a658..731d9c01 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -130,7 +130,6 @@ void DisplayApp::InitHw() { void DisplayApp::Refresh() { auto LoadPreviousScreen = [this]() { - brightnessController.Set(settingsController.GetBrightness()); LoadApp(returnToApp, returnDirection); }; @@ -302,6 +301,8 @@ void DisplayApp::ReturnApp(Apps app, DisplayApp::FullRefreshDirections direction void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction) { touchHandler.CancelTap(); + brightnessController.Set(settingsController.GetBrightness()); + currentScreen.reset(nullptr); SetFullRefresh(direction); -- cgit v1.2.3 From 0f4233003edd9874b98e06cd878fce1b82907e3f Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 22:22:14 +0300 Subject: Limit backlight when flashlight is off (#1212) --- src/displayapp/screens/FlashLight.cpp | 59 ++++++++++++++++++----------------- 1 file changed, 30 insertions(+), 29 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp index b76ff5c0..db3219cf 100644 --- a/src/displayapp/screens/FlashLight.cpp +++ b/src/displayapp/screens/FlashLight.cpp @@ -18,17 +18,17 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, Controllers::BrightnessController& brightnessController) : Screen(app), systemTask {systemTask}, brightnessController {brightnessController} { - brightnessController.Set(brightnessLevel); + brightnessController.Set(Controllers::BrightnessController::Levels::Low); flashLight = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48); lv_label_set_text_static(flashLight, Symbols::highlight); lv_obj_align(flashLight, nullptr, LV_ALIGN_CENTER, 0, 0); - for (auto& i : indicators) { - i = lv_obj_create(lv_scr_act(), nullptr); - lv_obj_set_size(i, 15, 10); - lv_obj_set_style_local_border_width(i, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, 2); + for (auto& indicator : indicators) { + indicator = lv_obj_create(lv_scr_act(), nullptr); + lv_obj_set_size(indicator, 15, 10); + lv_obj_set_style_local_border_width(indicator, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, 2); } lv_obj_align(indicators[1], flashLight, LV_ALIGN_OUT_BOTTOM_MID, 0, 5); @@ -57,22 +57,15 @@ FlashLight::~FlashLight() { } void FlashLight::SetColors() { - if (isOn) { - lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_obj_set_style_local_text_color(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - for (auto& i : indicators) { - lv_obj_set_style_local_bg_color(i, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_obj_set_style_local_bg_color(i, LV_OBJ_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_WHITE); - lv_obj_set_style_local_border_color(i, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - } - } else { - lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); - lv_obj_set_style_local_text_color(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE); - for (auto& i : indicators) { - lv_obj_set_style_local_bg_color(i, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_obj_set_style_local_bg_color(i, LV_OBJ_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_BLACK); - lv_obj_set_style_local_border_color(i, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_WHITE); - } + lv_color_t bgColor = isOn ? LV_COLOR_WHITE : LV_COLOR_BLACK; + lv_color_t fgColor = isOn ? LV_COLOR_MAKE(0xb0, 0xb0, 0xb0) : LV_COLOR_WHITE; + + lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, bgColor); + lv_obj_set_style_local_text_color(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, fgColor); + for (auto& indicator : indicators) { + lv_obj_set_style_local_bg_color(indicator, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, fgColor); + lv_obj_set_style_local_bg_color(indicator, LV_OBJ_PART_MAIN, LV_STATE_DISABLED, bgColor); + lv_obj_set_style_local_border_color(indicator, LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, fgColor); } } @@ -94,32 +87,40 @@ void FlashLight::SetIndicators() { void FlashLight::Toggle() { isOn = !isOn; SetColors(); + if (isOn) { + brightnessController.Set(brightnessLevel); + } else { + brightnessController.Set(Controllers::BrightnessController::Levels::Low); + } } bool FlashLight::OnTouchEvent(Pinetime::Applications::TouchEvents event) { using namespace Pinetime::Controllers; + auto SetState = [this]() { + if (isOn) { + brightnessController.Set(brightnessLevel); + } + SetIndicators(); + }; + if (event == TouchEvents::SwipeLeft) { if (brightnessLevel == BrightnessController::Levels::High) { brightnessLevel = BrightnessController::Levels::Medium; - brightnessController.Set(brightnessLevel); - SetIndicators(); + SetState(); } else if (brightnessLevel == BrightnessController::Levels::Medium) { brightnessLevel = BrightnessController::Levels::Low; - brightnessController.Set(brightnessLevel); - SetIndicators(); + SetState(); } return true; } if (event == TouchEvents::SwipeRight) { if (brightnessLevel == BrightnessController::Levels::Low) { brightnessLevel = BrightnessController::Levels::Medium; - brightnessController.Set(brightnessLevel); - SetIndicators(); + SetState(); } else if (brightnessLevel == BrightnessController::Levels::Medium) { brightnessLevel = BrightnessController::Levels::High; - brightnessController.Set(brightnessLevel); - SetIndicators(); + SetState(); } return true; } -- cgit v1.2.3 From df6557dd311fa9a5aee75c69a3d27ff17afe88af Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 7 Jun 2022 00:30:42 +0300 Subject: Extend Counter functionality Custom fonts, twelve hour mode and Value changed callback. --- src/displayapp/screens/Timer.h | 4 ++-- src/displayapp/widgets/Counter.cpp | 43 +++++++++++++++++++++++++++++++------- src/displayapp/widgets/Counter.h | 13 +++++++++--- 3 files changed, 48 insertions(+), 12 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Timer.h b/src/displayapp/screens/Timer.h index 2797a4fa..29b5e813 100644 --- a/src/displayapp/screens/Timer.h +++ b/src/displayapp/screens/Timer.h @@ -27,7 +27,7 @@ namespace Pinetime::Applications::Screens { lv_obj_t* btnPlayPause; lv_obj_t* txtPlayPause; lv_task_t* taskRefresh; - Widgets::Counter minuteCounter = Widgets::Counter(0, 59); - Widgets::Counter secondCounter = Widgets::Counter(0, 59); + Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_76); + Widgets::Counter secondCounter = Widgets::Counter(0, 59, jetbrains_mono_76); }; } diff --git a/src/displayapp/widgets/Counter.cpp b/src/displayapp/widgets/Counter.cpp index ecf39613..04a275da 100644 --- a/src/displayapp/widgets/Counter.cpp +++ b/src/displayapp/widgets/Counter.cpp @@ -6,35 +6,43 @@ namespace { void upBtnEventHandler(lv_obj_t* obj, lv_event_t event) { auto* widget = static_cast(obj->user_data); if (event == LV_EVENT_SHORT_CLICKED || event == LV_EVENT_LONG_PRESSED_REPEAT) { - widget->Increment(); + widget->UpBtnPressed(); } } void downBtnEventHandler(lv_obj_t* obj, lv_event_t event) { auto* widget = static_cast(obj->user_data); if (event == LV_EVENT_SHORT_CLICKED || event == LV_EVENT_LONG_PRESSED_REPEAT) { - widget->Decrement(); + widget->DownBtnPressed(); } } } -Counter::Counter(int min, int max) : min {min}, max {max} { +Counter::Counter(int min, int max, lv_font_t& font) : min {min}, max {max}, font {font} { } -void Counter::Increment() { +void Counter::UpBtnPressed() { value++; if (value > max) { value = min; } UpdateLabel(); + + if (ValueChangedHandler != nullptr) { + ValueChangedHandler(userData); + } }; -void Counter::Decrement() { +void Counter::DownBtnPressed() { value--; if (value < min) { value = max; } UpdateLabel(); + + if (ValueChangedHandler != nullptr) { + ValueChangedHandler(userData); + } }; void Counter::SetValue(int newValue) { @@ -58,7 +66,28 @@ void Counter::ShowControls() { } void Counter::UpdateLabel() { - lv_label_set_text_fmt(number, "%.2i", value); + if (twelveHourMode) { + if (value == 0) { + lv_label_set_text_static(number, "12"); + } else if (value <= 12) { + lv_label_set_text_fmt(number, "%.2i", value); + } else { + lv_label_set_text_fmt(number, "%.2i", value - 12); + } + } else { + lv_label_set_text_fmt(number, "%.2i", value); + } +} + +// Value is kept between 0 and 23, but the displayed value is converted to 12-hour. +// Make sure to set the max and min values to 0 and 23. Otherwise behaviour is undefined +void Counter::EnableTwelveHourMode() { + twelveHourMode = true; +} + +void Counter::SetValueChangedEventCallback(void* userData, void (*handler)(void* userData)) { + this->userData = userData; + this->ValueChangedHandler = handler; } void Counter::Create() { @@ -68,7 +97,7 @@ void Counter::Create() { lv_obj_set_style_local_bg_color(counterContainer, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); number = lv_label_create(counterContainer, nullptr); - lv_obj_set_style_local_text_font(number, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); + lv_obj_set_style_local_text_font(number, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &font); lv_obj_align(number, nullptr, LV_ALIGN_CENTER, 0, 0); lv_obj_set_auto_realign(number, true); lv_label_set_text_static(number, "00"); diff --git a/src/displayapp/widgets/Counter.h b/src/displayapp/widgets/Counter.h index 3df8b839..13b336ca 100644 --- a/src/displayapp/widgets/Counter.h +++ b/src/displayapp/widgets/Counter.h @@ -6,14 +6,16 @@ namespace Pinetime { namespace Widgets { class Counter { public: - Counter(int min, int max); + Counter(int min, int max, lv_font_t& font); void Create(); - void Increment(); - void Decrement(); + void UpBtnPressed(); + void DownBtnPressed(); void SetValue(int newValue); void HideControls(); void ShowControls(); + void EnableTwelveHourMode(); + void SetValueChangedEventCallback(void* userData, void (*handler)(void* userData)); int GetValue() const { return value; @@ -25,6 +27,7 @@ namespace Pinetime { private: void UpdateLabel(); + void (*ValueChangedHandler)(void* userData) = nullptr; lv_obj_t* counterContainer; lv_obj_t* upBtn; @@ -36,6 +39,10 @@ namespace Pinetime { int value = 0; int min; int max; + bool twelveHourMode = false; + lv_font_t& font; + + void* userData = nullptr; }; } } -- cgit v1.2.3 From 411f2d19e116f3e81f767c1956ec02bdb9142a43 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 7 Jun 2022 00:31:58 +0300 Subject: Use Counter widget in SettingSetTime plus optimizations --- src/displayapp/screens/settings/SettingSetTime.cpp | 190 ++++++--------------- src/displayapp/screens/settings/SettingSetTime.h | 16 +- 2 files changed, 57 insertions(+), 149 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/settings/SettingSetTime.cpp b/src/displayapp/screens/settings/SettingSetTime.cpp index 037611f3..7581f184 100644 --- a/src/displayapp/screens/settings/SettingSetTime.cpp +++ b/src/displayapp/screens/settings/SettingSetTime.cpp @@ -9,17 +9,17 @@ using namespace Pinetime::Applications::Screens; namespace { - constexpr int16_t POS_X_HOURS = -72; - constexpr int16_t POS_X_MINUTES = 0; - constexpr int16_t POS_X_SECONDS = 72; - constexpr int16_t POS_Y_PLUS = -50; - constexpr int16_t POS_Y_TEXT = -6; - constexpr int16_t POS_Y_MINUS = 40; - constexpr int16_t OFS_Y_COLON = -2; + constexpr int16_t POS_Y_TEXT = -7; - void event_handler(lv_obj_t* obj, lv_event_t event) { + void SetTimeEventHandler(lv_obj_t* obj, lv_event_t event) { auto* screen = static_cast(obj->user_data); - screen->HandleButtonPress(obj, event); + if (event == LV_EVENT_CLICKED) { + screen->SetTime(); + } + } + void ValueChangedHandler(void* userData) { + auto* screen = static_cast(userData); + screen->UpdateScreen(); } } @@ -27,6 +27,7 @@ SettingSetTime::SettingSetTime(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::DateTime& dateTimeController, Pinetime::Controllers::Settings& settingsController) : Screen(app), dateTimeController {dateTimeController}, settingsController {settingsController} { + lv_obj_t* title = lv_label_create(lv_scr_act(), nullptr); lv_label_set_text_static(title, "Set current time"); lv_label_set_align(title, LV_LABEL_ALIGN_CENTER); @@ -34,160 +35,73 @@ SettingSetTime::SettingSetTime(Pinetime::Applications::DisplayApp* app, lv_obj_t* icon = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_color(icon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_ORANGE); - lv_label_set_text_static(icon, Symbols::clock); lv_label_set_align(icon, LV_LABEL_ALIGN_CENTER); lv_obj_align(icon, title, LV_ALIGN_OUT_LEFT_MID, -10, 0); - hoursValue = static_cast(dateTimeController.Hours()); - lblHours = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblHours, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); - lv_label_set_text_fmt(lblHours, "%02d", hoursValue); - lv_label_set_align(lblHours, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblHours, lv_scr_act(), LV_ALIGN_CENTER, POS_X_HOURS, POS_Y_TEXT); - lv_obj_set_auto_realign(lblHours, true); - - lv_obj_t* lblColon1 = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblColon1, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); - lv_label_set_text_static(lblColon1, ":"); - lv_label_set_align(lblColon1, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblColon1, lv_scr_act(), LV_ALIGN_CENTER, (POS_X_HOURS + POS_X_MINUTES) / 2, POS_Y_TEXT + OFS_Y_COLON); + lv_obj_t* staticLabel = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_font(staticLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); + lv_label_set_text_static(staticLabel, "00:00:00"); + lv_obj_align(staticLabel, lv_scr_act(), LV_ALIGN_CENTER, 0, POS_Y_TEXT); - minutesValue = static_cast(dateTimeController.Minutes()); - lblMinutes = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblMinutes, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); - lv_label_set_text_fmt(lblMinutes, "%02d", minutesValue); - lv_label_set_align(lblMinutes, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblMinutes, lv_scr_act(), LV_ALIGN_CENTER, POS_X_MINUTES, POS_Y_TEXT); - lv_obj_set_auto_realign(lblMinutes, true); - - lv_obj_t* lblColon2 = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblColon2, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); - lv_label_set_text_static(lblColon2, ":"); - lv_label_set_align(lblColon2, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblColon2, lv_scr_act(), LV_ALIGN_CENTER, (POS_X_MINUTES + POS_X_SECONDS) / 2, POS_Y_TEXT + OFS_Y_COLON); + hourCounter.Create(); + if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) { + hourCounter.EnableTwelveHourMode(); + } + hourCounter.SetValue(dateTimeController.Hours()); + lv_obj_align(hourCounter.GetObject(), nullptr, LV_ALIGN_CENTER, -75, POS_Y_TEXT); + hourCounter.SetValueChangedEventCallback(this, ValueChangedHandler); - lv_obj_t* lblSeconds = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblSeconds, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); - lv_label_set_text_static(lblSeconds, "00"); - lv_label_set_align(lblSeconds, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblSeconds, lv_scr_act(), LV_ALIGN_CENTER, POS_X_SECONDS, POS_Y_TEXT); + minuteCounter.Create(); + minuteCounter.SetValue(dateTimeController.Minutes()); + lv_obj_align(minuteCounter.GetObject(), nullptr, LV_ALIGN_CENTER, 0, POS_Y_TEXT); + minuteCounter.SetValueChangedEventCallback(this, ValueChangedHandler); lblampm = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(lblampm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); lv_label_set_text_static(lblampm, " "); - lv_label_set_align(lblampm, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblampm, lv_scr_act(), LV_ALIGN_CENTER, POS_X_SECONDS, POS_Y_PLUS); - - btnHoursPlus = lv_btn_create(lv_scr_act(), nullptr); - btnHoursPlus->user_data = this; - lv_obj_set_size(btnHoursPlus, 50, 40); - lv_obj_align(btnHoursPlus, lv_scr_act(), LV_ALIGN_CENTER, -72, -50); - lv_obj_set_style_local_value_str(btnHoursPlus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "+"); - lv_obj_set_event_cb(btnHoursPlus, event_handler); - - btnHoursMinus = lv_btn_create(lv_scr_act(), nullptr); - btnHoursMinus->user_data = this; - lv_obj_set_size(btnHoursMinus, 50, 40); - lv_obj_align(btnHoursMinus, lv_scr_act(), LV_ALIGN_CENTER, -72, 40); - lv_obj_set_style_local_value_str(btnHoursMinus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "-"); - lv_obj_set_event_cb(btnHoursMinus, event_handler); - - btnMinutesPlus = lv_btn_create(lv_scr_act(), nullptr); - btnMinutesPlus->user_data = this; - lv_obj_set_size(btnMinutesPlus, 50, 40); - lv_obj_align(btnMinutesPlus, lv_scr_act(), LV_ALIGN_CENTER, 0, -50); - lv_obj_set_style_local_value_str(btnMinutesPlus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "+"); - lv_obj_set_event_cb(btnMinutesPlus, event_handler); - - btnMinutesMinus = lv_btn_create(lv_scr_act(), nullptr); - btnMinutesMinus->user_data = this; - lv_obj_set_size(btnMinutesMinus, 50, 40); - lv_obj_align(btnMinutesMinus, lv_scr_act(), LV_ALIGN_CENTER, 0, 40); - lv_obj_set_style_local_value_str(btnMinutesMinus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "-"); - lv_obj_set_event_cb(btnMinutesMinus, event_handler); + lv_obj_align(lblampm, lv_scr_act(), LV_ALIGN_CENTER, 75, -50); btnSetTime = lv_btn_create(lv_scr_act(), nullptr); btnSetTime->user_data = this; - lv_obj_set_size(btnSetTime, 120, 48); + lv_obj_set_size(btnSetTime, 120, 50); lv_obj_align(btnSetTime, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); lv_obj_set_style_local_value_str(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Set"); - lv_obj_set_event_cb(btnSetTime, event_handler); + lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_MAKE(0x18, 0x18, 0x18)); + lv_obj_set_style_local_value_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_GRAY); + lv_obj_set_event_cb(btnSetTime, SetTimeEventHandler); - SetHourLabels(); + UpdateScreen(); + lv_obj_set_state(btnSetTime, LV_STATE_DISABLED); } SettingSetTime::~SettingSetTime() { lv_obj_clean(lv_scr_act()); } -void SettingSetTime::SetHourLabels() { +void SettingSetTime::UpdateScreen() { if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) { - switch (hoursValue) { - case 0: - lv_label_set_text_static(lblHours, "12"); - lv_label_set_text_static(lblampm, "AM"); - break; - case 1 ... 11: - lv_label_set_text_fmt(lblHours, "%02d", hoursValue); - lv_label_set_text_static(lblampm, "AM"); - break; - case 12: - lv_label_set_text_static(lblHours, "12"); - lv_label_set_text_static(lblampm, "PM"); - break; - case 13 ... 23: - lv_label_set_text_fmt(lblHours, "%02d", hoursValue - 12); - lv_label_set_text_static(lblampm, "PM"); - break; + if (hourCounter.GetValue() >= 12) { + lv_label_set_text_static(lblampm, "PM"); + } else { + lv_label_set_text_static(lblampm, "AM"); } - } else { - lv_label_set_text_fmt(lblHours, "%02d", hoursValue); } + lv_obj_set_state(btnSetTime, LV_STATE_DEFAULT); } -void SettingSetTime::HandleButtonPress(lv_obj_t* object, lv_event_t event) { - if (event != LV_EVENT_CLICKED) - return; - - if (object == btnHoursPlus) { - hoursValue++; - if (hoursValue > 23) { - hoursValue = 0; - } - SetHourLabels(); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnHoursMinus) { - hoursValue--; - if (hoursValue < 0) { - hoursValue = 23; - } - SetHourLabels(); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnMinutesPlus) { - minutesValue++; - if (minutesValue > 59) { - minutesValue = 0; - } - lv_label_set_text_fmt(lblMinutes, "%02d", minutesValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnMinutesMinus) { - minutesValue--; - if (minutesValue < 0) { - minutesValue = 59; - } - lv_label_set_text_fmt(lblMinutes, "%02d", minutesValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnSetTime) { - NRF_LOG_INFO("Setting time (manually) to %02d:%02d:00", hoursValue, minutesValue); - dateTimeController.SetTime(dateTimeController.Year(), - static_cast(dateTimeController.Month()), - dateTimeController.Day(), - static_cast(dateTimeController.DayOfWeek()), - static_cast(hoursValue), - static_cast(minutesValue), - 0, - nrf_rtc_counter_get(portNRF_RTC_REG)); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_DISABLED); - } +void SettingSetTime::SetTime() { + const int hoursValue = hourCounter.GetValue(); + const int minutesValue = minuteCounter.GetValue(); + NRF_LOG_INFO("Setting time (manually) to %02d:%02d:00", hoursValue, minutesValue); + dateTimeController.SetTime(dateTimeController.Year(), + static_cast(dateTimeController.Month()), + dateTimeController.Day(), + static_cast(dateTimeController.DayOfWeek()), + static_cast(hoursValue), + static_cast(minutesValue), + 0, + nrf_rtc_counter_get(portNRF_RTC_REG)); + lv_obj_set_state(btnSetTime, LV_STATE_DISABLED); } diff --git a/src/displayapp/screens/settings/SettingSetTime.h b/src/displayapp/screens/settings/SettingSetTime.h index d02c332e..e0b42bdd 100644 --- a/src/displayapp/screens/settings/SettingSetTime.h +++ b/src/displayapp/screens/settings/SettingSetTime.h @@ -4,6 +4,7 @@ #include #include "components/datetime/DateTimeController.h" #include "components/settings/Settings.h" +#include "displayapp/widgets/Counter.h" #include "displayapp/screens/Screen.h" namespace Pinetime { @@ -16,24 +17,17 @@ namespace Pinetime { Pinetime::Controllers::Settings& settingsController); ~SettingSetTime() override; - void HandleButtonPress(lv_obj_t* object, lv_event_t event); + void SetTime(); + void UpdateScreen(); private: Controllers::DateTime& dateTimeController; Controllers::Settings& settingsController; - void SetHourLabels(); - - int hoursValue; - int minutesValue; - lv_obj_t* lblHours; - lv_obj_t* lblMinutes; lv_obj_t* lblampm; - lv_obj_t* btnHoursPlus; - lv_obj_t* btnHoursMinus; - lv_obj_t* btnMinutesPlus; - lv_obj_t* btnMinutesMinus; lv_obj_t* btnSetTime; + Widgets::Counter hourCounter = Widgets::Counter(0, 23, jetbrains_mono_42); + Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_42); }; } } -- cgit v1.2.3 From 9ee1160578e22e8dfa3da89dfd6405439d374da7 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 22:53:36 +0300 Subject: Reset timer by long pressing on the button (#1214) * Reset timer by long pressing on the button * Consider press_lost as released Otherwise the bar would keep increasing if the finger slid off the button --- src/displayapp/DisplayApp.cpp | 2 +- src/displayapp/screens/Timer.cpp | 100 +++++++++++++++++++++++++++++++-------- src/displayapp/screens/Timer.h | 21 ++++++-- src/libs/lv_conf.h | 2 +- 4 files changed, 99 insertions(+), 26 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 731d9c01..93d7277d 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -183,7 +183,7 @@ void DisplayApp::Refresh() { case Messages::TimerDone: if (currentApp == Apps::Timer) { auto* timer = static_cast(currentScreen.get()); - timer->SetDone(); + timer->Reset(); } else { LoadApp(Apps::Timer, DisplayApp::FullRefreshDirections::Down); } diff --git a/src/displayapp/screens/Timer.cpp b/src/displayapp/screens/Timer.cpp index a1df662a..a25be1c4 100644 --- a/src/displayapp/screens/Timer.cpp +++ b/src/displayapp/screens/Timer.cpp @@ -7,7 +7,13 @@ using namespace Pinetime::Applications::Screens; static void btnEventHandler(lv_obj_t* obj, lv_event_t event) { auto* screen = static_cast(obj->user_data); - screen->OnButtonEvent(obj, event); + if (event == LV_EVENT_PRESSED) { + screen->ButtonPressed(); + } else if (event == LV_EVENT_RELEASED || event == LV_EVENT_PRESS_LOST) { + screen->MaskReset(); + } else if (event == LV_EVENT_SHORT_CLICKED) { + screen->ToggleRunning(); + } } Timer::Timer(DisplayApp* app, Controllers::TimerController& timerController) : Screen(app), timerController {timerController} { @@ -23,14 +29,37 @@ Timer::Timer(DisplayApp* app, Controllers::TimerController& timerController) : S lv_obj_align(minuteCounter.GetObject(), nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); lv_obj_align(secondCounter.GetObject(), nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); - btnPlayPause = lv_btn_create(lv_scr_act(), nullptr); + highlightObjectMask = lv_objmask_create(lv_scr_act(), nullptr); + lv_obj_set_size(highlightObjectMask, 240, 50); + lv_obj_align(highlightObjectMask, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); + + lv_draw_mask_line_param_t tmpMaskLine; + + lv_draw_mask_line_points_init(&tmpMaskLine, 0, 0, 0, 240, LV_DRAW_MASK_LINE_SIDE_LEFT); + highlightMask = lv_objmask_add_mask(highlightObjectMask, &tmpMaskLine); + + lv_obj_t* btnHighlight = lv_obj_create(highlightObjectMask, nullptr); + lv_obj_set_style_local_radius(btnHighlight, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_obj_set_style_local_bg_color(btnHighlight, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_ORANGE); + lv_obj_set_size(btnHighlight, LV_HOR_RES, 50); + lv_obj_align(btnHighlight, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); + + btnObjectMask = lv_objmask_create(lv_scr_act(), nullptr); + lv_obj_set_size(btnObjectMask, 240, 50); + lv_obj_align(btnObjectMask, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); + + lv_draw_mask_line_points_init(&tmpMaskLine, 0, 0, 0, 240, LV_DRAW_MASK_LINE_SIDE_RIGHT); + btnMask = lv_objmask_add_mask(btnObjectMask, &tmpMaskLine); + + btnPlayPause = lv_btn_create(btnObjectMask, nullptr); btnPlayPause->user_data = this; lv_obj_set_style_local_radius(btnPlayPause, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); lv_obj_set_style_local_bg_color(btnPlayPause, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); lv_obj_set_event_cb(btnPlayPause, btnEventHandler); lv_obj_set_size(btnPlayPause, LV_HOR_RES, 50); - lv_obj_align(btnPlayPause, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); - txtPlayPause = lv_label_create(btnPlayPause, nullptr); + + txtPlayPause = lv_label_create(lv_scr_act(), nullptr); + lv_obj_align(txtPlayPause, btnPlayPause, LV_ALIGN_CENTER, 0, 0); if (timerController.IsRunning()) { SetTimerRunning(); @@ -46,11 +75,46 @@ Timer::~Timer() { lv_obj_clean(lv_scr_act()); } +void Timer::ButtonPressed() { + pressTime = xTaskGetTickCount(); + buttonPressing = true; +} + +void Timer::MaskReset() { + buttonPressing = false; + // A click event is processed before a release event, + // so the release event would override the "Pause" text without this check + if (!timerController.IsRunning()) { + lv_label_set_text_static(txtPlayPause, "Start"); + } + maskPosition = 0; + UpdateMask(); +} + +void Timer::UpdateMask() { + lv_draw_mask_line_param_t maskLine; + + lv_draw_mask_line_points_init(&maskLine, maskPosition, 0, maskPosition, 240, LV_DRAW_MASK_LINE_SIDE_LEFT); + lv_objmask_update_mask(highlightObjectMask, highlightMask, &maskLine); + + lv_draw_mask_line_points_init(&maskLine, maskPosition, 0, maskPosition, 240, LV_DRAW_MASK_LINE_SIDE_RIGHT); + lv_objmask_update_mask(btnObjectMask, btnMask, &maskLine); +} + void Timer::Refresh() { if (timerController.IsRunning()) { uint32_t seconds = timerController.GetTimeRemaining() / 1000; minuteCounter.SetValue(seconds / 60); secondCounter.SetValue(seconds % 60); + } else if (buttonPressing && xTaskGetTickCount() > pressTime + pdMS_TO_TICKS(150)) { + lv_label_set_text_static(txtPlayPause, "Reset"); + maskPosition += 15; + if (maskPosition > 240) { + MaskReset(); + Reset(); + } else { + UpdateMask(); + } } } @@ -66,25 +130,21 @@ void Timer::SetTimerStopped() { lv_label_set_text_static(txtPlayPause, "Start"); } -void Timer::OnButtonEvent(lv_obj_t* obj, lv_event_t event) { - if (event == LV_EVENT_CLICKED) { - if (obj == btnPlayPause) { - if (timerController.IsRunning()) { - uint32_t seconds = timerController.GetTimeRemaining() / 1000; - minuteCounter.SetValue(seconds / 60); - secondCounter.SetValue(seconds % 60); - timerController.StopTimer(); - SetTimerStopped(); - } else if (secondCounter.GetValue() + minuteCounter.GetValue() > 0) { - timerController.StartTimer((secondCounter.GetValue() + minuteCounter.GetValue() * 60) * 1000); - Refresh(); - SetTimerRunning(); - } - } +void Timer::ToggleRunning() { + if (timerController.IsRunning()) { + uint32_t seconds = timerController.GetTimeRemaining() / 1000; + minuteCounter.SetValue(seconds / 60); + secondCounter.SetValue(seconds % 60); + timerController.StopTimer(); + SetTimerStopped(); + } else if (secondCounter.GetValue() + minuteCounter.GetValue() > 0) { + timerController.StartTimer((secondCounter.GetValue() + minuteCounter.GetValue() * 60) * 1000); + Refresh(); + SetTimerRunning(); } } -void Timer::SetDone() { +void Timer::Reset() { minuteCounter.SetValue(0); secondCounter.SetValue(0); SetTimerStopped(); diff --git a/src/displayapp/screens/Timer.h b/src/displayapp/screens/Timer.h index 29b5e813..a6b60a17 100644 --- a/src/displayapp/screens/Timer.h +++ b/src/displayapp/screens/Timer.h @@ -5,29 +5,42 @@ #include "systemtask/SystemTask.h" #include "displayapp/LittleVgl.h" #include "displayapp/widgets/Counter.h" +#include #include "components/timer/TimerController.h" namespace Pinetime::Applications::Screens { class Timer : public Screen { public: - enum class Modes { Normal, Done }; - Timer(DisplayApp* app, Controllers::TimerController& timerController); ~Timer() override; void Refresh() override; - void SetDone(); - void OnButtonEvent(lv_obj_t* obj, lv_event_t event); + void Reset(); + void ToggleRunning(); + void ButtonPressed(); + void MaskReset(); private: void SetTimerRunning(); void SetTimerStopped(); + void UpdateMask(); Controllers::TimerController& timerController; + lv_obj_t* msecTime; lv_obj_t* btnPlayPause; lv_obj_t* txtPlayPause; + + lv_obj_t* btnObjectMask; + lv_obj_t* highlightObjectMask; + lv_objmask_mask_t* btnMask; + lv_objmask_mask_t* highlightMask; + lv_task_t* taskRefresh; Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_76); Widgets::Counter secondCounter = Widgets::Counter(0, 59, jetbrains_mono_76); + + bool buttonPressing = false; + int maskPosition = 0; + TickType_t pressTime; }; } diff --git a/src/libs/lv_conf.h b/src/libs/lv_conf.h index 73109c5a..b3ff8f57 100644 --- a/src/libs/lv_conf.h +++ b/src/libs/lv_conf.h @@ -678,7 +678,7 @@ typedef void* lv_obj_user_data_t; #endif /*Mask (dependencies: -)*/ -#define LV_USE_OBJMASK 0 +#define LV_USE_OBJMASK 1 /*Message box (dependencies: lv_rect, lv_btnm, lv_label)*/ #define LV_USE_MSGBOX 0 -- cgit v1.2.3 From d6165e72b7965e587c53221f720b778b0f1cdb12 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 22:56:34 +0300 Subject: Replace icomoon system font with material design icons (#1228) --- src/displayapp/fonts/README.md | 13 +- src/displayapp/fonts/fonts.json | 4 +- src/displayapp/fonts/icons_sys_48.ttf | Bin 2080 -> 0 bytes src/displayapp/fonts/lv_font_sys_48.json | 43685 ------------------- src/displayapp/fonts/material-design-icons/LICENSE | 202 + .../MaterialIcons-Regular.ttf | Bin 0 -> 354932 bytes src/displayapp/screens/FlashLight.cpp | 2 +- src/displayapp/screens/Symbols.h | 15 +- src/displayapp/screens/settings/QuickSettings.cpp | 2 +- 9 files changed, 221 insertions(+), 43702 deletions(-) delete mode 100644 src/displayapp/fonts/icons_sys_48.ttf delete mode 100644 src/displayapp/fonts/lv_font_sys_48.json create mode 100644 src/displayapp/fonts/material-design-icons/LICENSE create mode 100644 src/displayapp/fonts/material-design-icons/MaterialIcons-Regular.ttf (limited to 'src/displayapp') diff --git a/src/displayapp/fonts/README.md b/src/displayapp/fonts/README.md index cfb6079c..9d5ec282 100644 --- a/src/displayapp/fonts/README.md +++ b/src/displayapp/fonts/README.md @@ -1,13 +1,16 @@ # Fonts -* [Jetbrains Mono](https://www.jetbrains.com/fr-fr/lp/mono/) -* [Awesome font from LVGL](https://lvgl.io/assets/others/FontAwesome5-Solid+Brands+Regular.woff) -* [Open Sans Light from Google](https://fonts.google.com/specimen/Open+Sans) +* [Jetbrains Mono](https://www.jetbrains.com/lp/mono/) +* [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) +* [Open Sans Light](https://fonts.google.com/specimen/Open+Sans) +* [Material Symbols](https://fonts.google.com/icons) ### How to add new symbols: -* Browse [this cheatsheet](https://fontawesome.com/cheatsheet/free/solid) and pick symbols -* For each symbol, add its hex code (0xf641 for the 'Ad' icon, for example) to the *Range* list (or the symbol list when its simple enough) in the `fonts.json` file +* Browse the cheat sheets and pick symbols + * [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) + * [Material Symbols](https://fonts.google.com/icons) +* For each symbol, add its hex code (0xf641 for the 'Ad' icon, for example) to the *Range* list in the `fonts.json` file * Convert this hex value into a UTF-8 code using [this site](http://www.ltg.ed.ac.uk/~richard/utf-8.cgi?input=f185&mode=hex) * Define the new symbols in `src/displayapp/screens/Symbols.h`: diff --git a/src/displayapp/fonts/fonts.json b/src/displayapp/fonts/fonts.json index abdb4512..9f228fb6 100644 --- a/src/displayapp/fonts/fonts.json +++ b/src/displayapp/fonts/fonts.json @@ -57,8 +57,8 @@ "lv_font_sys_48": { "sources": [ { - "file": "icons_sys_48.ttf", - "range": "0xe902, 0xe904-0xe907, 0xe90b-0xe90c" + "file": "material-design-icons/MaterialIcons-Regular.ttf", + "range": "0xf00b, 0xe3aa-0xe3ac, 0xe7f6-0xe7f7, 0xe8b8" } ], "bpp": 1, diff --git a/src/displayapp/fonts/icons_sys_48.ttf b/src/displayapp/fonts/icons_sys_48.ttf deleted file mode 100644 index 743ca98e..00000000 Binary files a/src/displayapp/fonts/icons_sys_48.ttf and /dev/null differ diff --git a/src/displayapp/fonts/lv_font_sys_48.json b/src/displayapp/fonts/lv_font_sys_48.json deleted file mode 100644 index fe71c015..00000000 --- a/src/displayapp/fonts/lv_font_sys_48.json +++ /dev/null @@ -1,43685 +0,0 @@ -{ - "metadata": { - "name": "lv_font_sys_48", - "lastOpened": 0, - "created": 1617394657259 - }, - "iconSets": [ - { - "selection": [ - { - "order": 0, - "id": 3, - "name": "grip-horizontal" - }, - { - "order": 0, - "id": 2, - "name": "grip-lines" - }, - { - "order": 0, - "id": 1, - "name": "grip-lines-vertical", - "prevSize": 32, - "code": 59656, - "tempChar": "" - }, - { - "order": 0, - "id": 0, - "name": "grip-vertical" - } - ], - "id": 4, - "metadata": { - "name": "Untitled Set", - "importSize": { - "width": 448, - "height": 512 - } - }, - "height": 1024, - "prevSize": 32, - "icons": [ - { - "id": 3, - "paths": [ - "M192 576h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM512 576h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM832 576h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM192 192h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM512 192h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM832 192h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64z" - ], - "attrs": [ - {} - ], - "width": 896, - "isMulticolor": false, - "isMulticolor2": false, - "grid": 0, - "tags": [ - "grip-horizontal" - ] - }, - { - "id": 2, - "paths": [ - "M992 576h-960c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h960c17.6 0 32-14.4 32-32v-64c0-17.6-14.4-32-32-32zM992 320h-960c-17.6 0-32 14.4-32 32v64c0 17.6 14.4 32 32 32h960c17.6 0 32-14.4 32-32v-64c0-17.6-14.4-32-32-32z" - ], - "attrs": [ - {} - ], - "isMulticolor": false, - "isMulticolor2": false, - "grid": 0, - "tags": [ - "grip-lines" - ] - }, - { - "id": 1, - "paths": [ - "M192 992v-960c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v960c0 17.6 14.4 32 32 32h64c17.6 0 32-14.4 32-32zM448 992v-960c0-17.6-14.4-32-32-32h-64c-17.6 0-32 14.4-32 32v960c0 17.6 14.4 32 32 32h64c17.6 0 32-14.4 32-32z" - ], - "attrs": [ - {} - ], - "width": 512, - "isMulticolor": false, - "isMulticolor2": false, - "grid": 0, - "tags": [ - "grip-lines-vertical" - ] - }, - { - "id": 0, - "paths": [ - "M192 64h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM192 384h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM192 704h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM576 64h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM576 384h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64zM576 704h-128c-35.34 0-64 28.66-64 64v128c0 35.34 28.66 64 64 64h128c35.34 0 64-28.66 64-64v-128c0-35.34-28.66-64-64-64z" - ], - "attrs": [ - {} - ], - "width": 640, - "isMulticolor": false, - "isMulticolor2": false, - "grid": 0, - "tags": [ - "grip-vertical" - ] - } - ], - "invisible": false, - "colorThemes": [] - }, - { - "selection": [ - { - "id": 1, - "order": 0 - }, - { - "id": 2, - "order": 0 - }, - { - "id": 3, - "order": 0 - }, - { - "id": 4, - "order": 0 - }, - { - "id": 5, - "order": 0 - }, - { - "id": 6, - "order": 0 - }, - { - "id": 7, - "order": 0 - }, - { - "id": 8, - "order": 0 - }, - { - "id": 9, - "order": 0 - }, - { - "id": 10, - "order": 0 - }, - { - "id": 11, - "order": 0 - }, - { - "id": 12, - "order": 0 - }, - { - "id": 13, - "order": 0 - }, - { - "id": 14, - "order": 0 - }, - { - "id": 15, - "order": 0 - }, - { - "id": 16, - "order": 0 - }, - { - "id": 17, - "order": 0 - }, - { - "id": 18, - "order": 0 - }, - { - "id": 19, - "order": 0 - }, - { - "id": 20, - "order": 0 - }, - { - "id": 21, - "order": 0 - }, - { - "id": 22, - "order": 0 - }, - { - "id": 23, - "order": 0 - }, - { - "id": 24, - "order": 0 - }, - { - "id": 25, - "order": 0 - }, - { - "id": 26, - "order": 0 - }, - { - "id": 27, - "order": 0 - }, - { - "id": 28, - "order": 0 - }, - { - "id": 29, - "order": 0 - }, - { - "id": 30, - "order": 0 - }, - { - "id": 31, - "order": 0 - }, - { - "id": 32, - "order": 0 - }, - { - "id": 33, - "order": 0 - }, - { - "id": 34, - "order": 0 - }, - { - "id": 35, - "order": 0 - }, - { - "id": 36, - "order": 0 - }, - { - "id": 37, - "order": 0 - }, - { - "id": 38, - "order": 0 - }, - { - "id": 39, - "order": 0 - }, - { - "id": 40, - "order": 0 - }, - { - "id": 41, - "order": 0 - }, - { - "id": 42, - "order": 0 - }, - { - "id": 43, - "order": 0 - }, - { - "id": 44, - "order": 0 - }, - { - "id": 45, - "order": 0 - }, - { - "id": 46, - "order": 0 - }, - { - "id": 47, - "order": 0 - }, - { - "id": 48, - "order": 0 - }, - { - "id": 49, - "order": 0 - }, - { - "id": 50, - "order": 0 - }, - { - "id": 51, - "order": 0 - }, - { - "id": 52, - "order": 0 - }, - { - "id": 53, - "order": 0 - }, - { - "id": 54, - "order": 0 - }, - { - "id": 55, - "order": 0 - }, - { - "id": 56, - "order": 0 - }, - { - "id": 57, - "order": 0 - }, - { - "id": 58, - "order": 0 - }, - { - "id": 59, - "order": 0 - }, - { - "id": 60, - "order": 0 - }, - { - "id": 61, - "order": 0 - }, - { - "id": 62, - "order": 0 - }, - { - "id": 63, - "order": 0 - }, - { - "id": 64, - "order": 0 - }, - { - "id": 65, - "order": 0 - }, - { - "id": 66, - "order": 0 - }, - { - "id": 67, - "order": 0 - }, - { - "id": 68, - "order": 0 - }, - { - "id": 69, - "order": 0 - }, - { - "id": 70, - "order": 0 - }, - { - "id": 71, - "order": 0 - }, - { - "id": 72, - "order": 0 - }, - { - "id": 73, - "order": 0 - }, - { - "id": 74, - "order": 0 - }, - { - "id": 75, - "order": 0 - }, - { - "id": 76, - "order": 0 - }, - { - "id": 77, - "order": 0 - }, - { - "id": 78, - "order": 0 - }, - { - "id": 79, - "order": 0 - }, - { - "id": 80, - "order": 0 - }, - { - "id": 81, - "order": 0 - }, - { - "id": 82, - "order": 0 - }, - { - "id": 83, - "order": 0 - }, - { - "id": 84, - "order": 0 - }, - { - "id": 85, - "order": 0 - }, - { - "id": 86, - "order": 0 - }, - { - "id": 87, - "order": 0 - }, - { - "id": 88, - "order": 0 - }, - { - "id": 89, - "order": 0 - }, - { - "id": 90, - "order": 0 - }, - { - "id": 91, - "order": 0 - }, - { - "id": 92, - "order": 0 - }, - { - "id": 93, - "order": 0 - }, - { - "id": 94, - "order": 0 - }, - { - "id": 95, - "order": 0 - }, - { - "id": 96, - "order": 0 - }, - { - "id": 97, - "order": 0 - }, - { - "id": 98, - "order": 0 - }, - { - "id": 99, - "order": 0 - }, - { - "id": 100, - "order": 0 - }, - { - "id": 101, - "order": 0 - }, - { - "id": 102, - "order": 0 - }, - { - "id": 103, - "order": 0 - }, - { - "id": 104, - "order": 0 - }, - { - "id": 105, - "order": 0 - }, - { - "id": 106, - "order": 0 - }, - { - "id": 107, - "order": 0 - }, - { - "id": 108, - "order": 0 - }, - { - "id": 109, - "order": 0 - }, - { - "id": 110, - "order": 0 - }, - { - "id": 111, - "order": 0 - }, - { - "id": 112, - "order": 0 - }, - { - "id": 113, - "order": 0 - }, - { - "id": 114, - "order": 0 - }, - { - "id": 115, - "order": 0 - }, - { - "id": 116, - "order": 0 - }, - { - "id": 117, - "order": 0 - }, - { - "id": 118, - "order": 0 - }, - { - "id": 119, - "order": 0 - }, - { - "id": 120, - "order": 0 - }, - { - "id": 121, - "order": 0 - }, - { - "id": 122, - "order": 0 - }, - { - "id": 123, - "order": 0 - }, - { - "id": 124, - "order": 0 - }, - { - "id": 125, - "order": 0 - }, - { - "id": 126, - "order": 0 - }, - { - "id": 127, - "order": 0 - }, - { - "id": 128, - "order": 0 - }, - { - "id": 129, - "order": 0 - }, - { - "id": 130, - "order": 0 - }, - { - "id": 131, - "order": 0 - }, - { - "id": 132, - "order": 0 - }, - { - "id": 133, - "order": 0 - }, - { - "id": 134, - "order": 0 - }, - { - "id": 135, - "order": 0 - }, - { - "id": 136, - "order": 0 - }, - { - "id": 137, - "order": 0 - }, - { - "id": 138, - "order": 0 - }, - { - "id": 139, - "order": 0 - }, - { - "id": 140, - "order": 0 - }, - { - "id": 141, - "order": 0 - }, - { - "id": 142, - "order": 0 - }, - { - "id": 143, - "order": 0 - }, - { - "id": 144, - "order": 0 - }, - { - "id": 145, - "order": 0 - }, - { - "id": 146, - "order": 0 - }, - { - "id": 147, - "order": 0 - }, - { - "id": 148, - "order": 0 - }, - { - "id": 149, - "order": 0 - }, - { - "id": 150, - "order": 0 - }, - { - "id": 151, - "order": 0 - }, - { - "id": 152, - "order": 0 - }, - { - "id": 153, - "order": 0 - }, - { - "id": 154, - "order": 0 - }, - { - "id": 155, - "order": 0 - }, - { - "id": 156, - "order": 0 - }, - { - "id": 157, - "order": 0 - }, - { - "id": 158, - "order": 0 - }, - { - "id": 159, - "order": 0 - }, - { - "id": 160, - "order": 0 - }, - { - "id": 161, - "order": 0 - }, - { - "id": 162, - "order": 0 - }, - { - "id": 163, - "order": 0 - }, - { - "id": 164, - "order": 0 - }, - { - "id": 165, - "order": 0 - }, - { - "id": 166, - "order": 0 - }, - { - "id": 167, - "order": 0 - }, - { - "id": 168, - "order": 0 - }, - { - "id": 169, - "order": 0 - }, - { - "id": 170, - "order": 0 - }, - { - "id": 171, - "order": 0 - }, - { - "id": 172, - "order": 0 - }, - { - "id": 173, - "order": 0 - }, - { - "id": 174, - "order": 0 - }, - { - "id": 175, - "order": 0 - }, - { - "id": 176, - "order": 0 - }, - { - "id": 177, - "order": 0 - }, - { - "id": 178, - "order": 0 - }, - { - "id": 179, - "order": 0 - }, - { - "id": 180, - "order": 0 - }, - { - "id": 181, - "order": 0 - }, - { - "id": 182, - "order": 0 - }, - { - "id": 183, - "order": 0 - }, - { - "id": 184, - "order": 0 - }, - { - "id": 185, - "order": 0 - }, - { - "id": 186, - "order": 0 - }, - { - "id": 187, - "order": 0 - }, - { - "id": 188, - "order": 0 - }, - { - "id": 189, - "order": 0 - }, - { - "id": 190, - "order": 0 - }, - { - "id": 191, - "order": 0 - }, - { - "id": 192, - "order": 0 - }, - { - "id": 193, - "order": 0 - }, - { - "id": 194, - "order": 0 - }, - { - "id": 195, - "order": 0 - }, - { - "id": 196, - "order": 0 - }, - { - "id": 197, - "order": 0 - }, - { - "id": 198, - "order": 0 - }, - { - "id": 199, - "order": 0 - }, - { - "id": 200, - "order": 0 - }, - { - "id": 201, - "order": 0 - }, - { - "id": 202, - "order": 0 - }, - { - "id": 203, - "order": 0 - }, - { - "id": 204, - "order": 0 - }, - { - "id": 205, - "order": 0 - }, - { - "id": 206, - "order": 0 - }, - { - "id": 207, - "order": 0 - }, - { - "id": 208, - "order": 0 - }, - { - "id": 209, - "order": 0 - }, - { - "id": 210, - "order": 0 - }, - { - "id": 211, - "order": 0 - }, - { - "id": 212, - "order": 0 - }, - { - "id": 213, - "order": 0 - }, - { - "id": 214, - "order": 0 - }, - { - "id": 215, - "order": 0 - }, - { - "id": 216, - "order": 0 - }, - { - "id": 217, - "order": 0 - }, - { - "id": 218, - "order": 0 - }, - { - "id": 219, - "order": 0 - }, - { - "id": 220, - "order": 0 - }, - { - "id": 221, - "order": 0 - }, - { - "id": 222, - "order": 0 - }, - { - "id": 223, - "order": 0 - }, - { - "id": 224, - "order": 0 - }, - { - "id": 225, - "order": 0 - }, - { - "id": 226, - "order": 0 - }, - { - "id": 227, - "order": 0 - }, - { - "id": 228, - "order": 0 - }, - { - "id": 229, - "order": 0 - }, - { - "id": 230, - "order": 0 - }, - { - "id": 231, - "order": 0 - }, - { - "id": 232, - "order": 0 - }, - { - "id": 233, - "order": 0 - }, - { - "id": 234, - "order": 0 - }, - { - "id": 235, - "order": 0 - }, - { - "id": 236, - "order": 0 - }, - { - "id": 237, - "order": 0 - }, - { - "id": 238, - "order": 0 - }, - { - "id": 239, - "order": 0 - }, - { - "id": 240, - "order": 0 - }, - { - "id": 241, - "order": 0 - }, - { - "id": 242, - "order": 0 - }, - { - "id": 243, - "order": 0 - }, - { - "id": 244, - "order": 0 - }, - { - "id": 245, - "order": 0 - }, - { - "id": 246, - "order": 0 - }, - { - "id": 247, - "order": 0 - }, - { - "id": 248, - "order": 0 - }, - { - "id": 249, - "order": 0 - }, - { - "id": 250, - "order": 0 - }, - { - "id": 251, - "order": 0 - }, - { - "id": 252, - "order": 0 - }, - { - "id": 253, - "order": 0 - }, - { - "id": 254, - "order": 0 - }, - { - "id": 255, - "order": 0 - }, - { - "id": 256, - "order": 0 - }, - { - "id": 257, - "order": 0 - }, - { - "id": 258, - "order": 0 - }, - { - "id": 259, - "order": 0 - }, - { - "id": 260, - "order": 0 - }, - { - "id": 261, - "order": 0 - }, - { - "id": 262, - "order": 0 - }, - { - "id": 263, - "order": 0 - }, - { - "id": 264, - "order": 0 - }, - { - "id": 265, - "order": 0 - }, - { - "id": 266, - "order": 0 - }, - { - "id": 267, - "order": 0 - }, - { - "id": 268, - "order": 0 - }, - { - "id": 269, - "order": 0 - }, - { - "id": 270, - "order": 0 - }, - { - "id": 271, - "order": 0 - }, - { - "id": 272, - "order": 0 - }, - { - "id": 273, - "order": 0 - }, - { - "id": 274, - "order": 0 - }, - { - "id": 275, - "order": 0 - }, - { - "id": 276, - "order": 0 - }, - { - "id": 277, - "order": 0 - }, - { - "id": 278, - "order": 0 - }, - { - "id": 279, - "order": 0 - }, - { - "id": 280, - "order": 0 - }, - { - "id": 281, - "order": 0 - }, - { - "id": 282, - "order": 0 - }, - { - "id": 283, - "order": 0 - }, - { - "id": 284, - "order": 0 - }, - { - "id": 285, - "order": 0 - }, - { - "id": 286, - "order": 0 - }, - { - "id": 287, - "order": 0 - }, - { - "id": 288, - "order": 0 - }, - { - "id": 289, - "order": 0 - }, - { - "id": 290, - "order": 0 - }, - { - "id": 291, - "order": 0 - }, - { - "id": 292, - "order": 0 - }, - { - "id": 293, - "order": 0 - }, - { - "id": 294, - "order": 0 - }, - { - "id": 295, - "order": 0 - }, - { - "id": 296, - "order": 0 - }, - { - "id": 297, - "order": 0 - }, - { - "id": 298, - "order": 0 - }, - { - "id": 299, - "order": 0 - }, - { - "id": 300, - "order": 0 - }, - { - "id": 301, - "order": 0 - }, - { - "id": 302, - "order": 0 - }, - { - "id": 303, - "order": 0 - }, - { - "id": 304, - "order": 0 - }, - { - "id": 305, - "order": 0 - }, - { - "id": 306, - "order": 0 - }, - { - "id": 307, - "order": 0 - }, - { - "id": 308, - "order": 0 - }, - { - "id": 309, - "order": 0 - }, - { - "id": 310, - "order": 0 - }, - { - "id": 311, - "order": 0 - }, - { - "id": 312, - "order": 0 - }, - { - "id": 313, - "order": 0 - }, - { - "id": 314, - "order": 0 - }, - { - "id": 315, - "order": 0 - }, - { - "id": 316, - "order": 0 - }, - { - "id": 317, - "order": 0 - }, - { - "id": 318, - "order": 0 - }, - { - "id": 319, - "order": 0 - }, - { - "id": 320, - "order": 0 - }, - { - "id": 321, - "order": 0 - }, - { - "id": 322, - "order": 0 - }, - { - "id": 323, - "order": 0 - }, - { - "id": 324, - "order": 0 - }, - { - "id": 325, - "order": 0 - }, - { - "id": 326, - "order": 0 - }, - { - "id": 327, - "order": 0 - }, - { - "id": 328, - "order": 0 - }, - { - "id": 329, - "order": 0 - }, - { - "id": 330, - "order": 0 - }, - { - "id": 331, - "order": 0 - }, - { - "id": 332, - "order": 0 - }, - { - "id": 333, - "order": 0 - }, - { - "id": 334, - "order": 0 - }, - { - "id": 335, - "order": 0 - }, - { - "id": 336, - "order": 0 - }, - { - "id": 337, - "order": 0 - }, - { - "id": 338, - "order": 0 - }, - { - "id": 339, - "order": 0, - "prevSize": 32, - "code": 59649, - "name": "tennis-racket1", - "tempChar": "" - }, - { - "id": 340, - "order": 0, - "prevSize": 32, - "code": 59648, - "name": "tennis-racket", - "tempChar": "" - }, - { - "id": 341, - "order": 0 - }, - { - "id": 342, - "order": 0 - }, - { - "id": 343, - "order": 0 - }, - { - "id": 344, - "order": 0, - "prevSize": 32, - "code": 59650, - "name": "table-tennis", - "tempChar": "" - }, - { - "id": 345, - "order": 0 - }, - { - "id": 346, - "order": 0 - }, - { - "id": 347, - "order": 0 - }, - { - "id": 348, - "order": 0 - }, - { - "id": 349, - "order": 0 - }, - { - "id": 350, - "order": 0 - }, - { - "id": 351, - "order": 0 - }, - { - "id": 352, - "order": 0 - }, - { - "id": 353, - "order": 0 - }, - { - "id": 354, - "order": 0 - }, - { - "id": 355, - "order": 0 - }, - { - "id": 356, - "order": 0 - }, - { - "id": 357, - "order": 0 - }, - { - "id": 358, - "order": 0 - }, - { - "id": 359, - "order": 0 - }, - { - "id": 360, - "order": 0 - }, - { - "id": 361, - "order": 0 - }, - { - "id": 362, - "order": 0 - }, - { - "id": 363, - "order": 0 - }, - { - "id": 364, - "order": 0 - }, - { - "id": 365, - "order": 0 - }, - { - "id": 366, - "order": 0 - }, - { - "id": 367, - "order": 0 - }, - { - "id": 368, - "order": 0 - }, - { - "id": 369, - "order": 0 - }, - { - "id": 370, - "order": 0 - }, - { - "id": 371, - "order": 0 - }, - { - "id": 372, - "order": 0 - }, - { - "id": 373, - "order": 0 - }, - { - "id": 374, - "order": 0 - }, - { - "id": 375, - "order": 0 - }, - { - "id": 376, - "order": 0 - }, - { - "id": 377, - "order": 0 - }, - { - "id": 378, - "order": 0 - }, - { - "id": 379, - "order": 0 - }, - { - "id": 380, - "order": 0 - }, - { - "id": 381, - "order": 0 - }, - { - "id": 382, - "order": 0 - }, - { - "id": 383, - "order": 0 - }, - { - "id": 384, - "order": 0 - }, - { - "id": 385, - "order": 0 - }, - { - "id": 386, - "order": 0 - }, - { - "id": 387, - "order": 0 - }, - { - "id": 388, - "order": 0 - }, - { - "id": 389, - "order": 0 - }, - { - "id": 390, - "order": 0 - }, - { - "id": 391, - "order": 0 - }, - { - "id": 392, - "order": 0 - }, - { - "id": 393, - "order": 0 - }, - { - "id": 394, - "order": 0 - }, - { - "id": 395, - "order": 0 - }, - { - "id": 396, - "order": 0 - }, - { - "id": 397, - "order": 0 - }, - { - "id": 398, - "order": 0 - }, - { - "id": 399, - "order": 0 - }, - { - "id": 400, - "order": 0 - }, - { - "id": 401, - "order": 0 - }, - { - "id": 402, - "order": 0 - }, - { - "id": 403, - "order": 0 - }, - { - "id": 404, - "order": 0 - }, - { - "id": 405, - "order": 0 - }, - { - "id": 406, - "order": 0 - }, - { - "id": 407, - "order": 0 - }, - { - "id": 408, - "order": 0 - }, - { - "id": 409, - "order": 0 - }, - { - "id": 410, - "order": 0 - }, - { - "id": 411, - "order": 0 - }, - { - "id": 412, - "order": 0 - }, - { - "id": 413, - "order": 0 - }, - { - "id": 414, - "order": 0 - }, - { - "id": 415, - "order": 0 - }, - { - "id": 416, - "order": 0 - }, - { - "id": 417, - "order": 0 - }, - { - "id": 418, - "order": 0 - }, - { - "id": 419, - "order": 0 - }, - { - "id": 420, - "order": 0 - }, - { - "id": 421, - "order": 0 - }, - { - "id": 422, - "order": 0 - }, - { - "id": 423, - "order": 0 - }, - { - "id": 424, - "order": 0 - }, - { - "id": 425, - "order": 0 - }, - { - "id": 426, - "order": 0 - }, - { - "id": 427, - "order": 0 - }, - { - "id": 428, - "order": 0 - }, - { - "id": 429, - "order": 0 - }, - { - "id": 430, - "order": 0 - }, - { - "id": 431, - "order": 0 - }, - { - "id": 432, - "order": 0 - }, - { - "id": 433, - "order": 0 - }, - { - "id": 434, - "order": 0 - }, - { - "id": 435, - "order": 0 - }, - { - "id": 436, - "order": 0 - }, - { - "id": 437, - "order": 0 - }, - { - "id": 438, - "order": 0 - }, - { - "id": 439, - "order": 0 - }, - { - "id": 440, - "order": 0 - }, - { - "id": 441, - "order": 0 - }, - { - "id": 442, - "order": 0 - }, - { - "id": 443, - "order": 0 - }, - { - "id": 444, - "order": 0 - }, - { - "id": 445, - "order": 0 - }, - { - "id": 446, - "order": 0 - }, - { - "id": 447, - "order": 0 - }, - { - "id": 448, - "order": 0 - }, - { - "id": 449, - "order": 0 - }, - { - "id": 450, - "order": 0 - }, - { - "id": 451, - "order": 0 - }, - { - "id": 452, - "order": 0 - }, - { - "id": 453, - "order": 0 - }, - { - "id": 454, - "order": 0 - }, - { - "id": 455, - "order": 0 - }, - { - "id": 456, - "order": 0 - }, - { - "id": 457, - "order": 0 - }, - { - "id": 458, - "order": 0 - }, - { - "id": 459, - "order": 0 - }, - { - "id": 460, - "order": 0 - }, - { - "id": 461, - "order": 0 - }, - { - "id": 462, - "order": 0 - }, - { - "id": 463, - "order": 0 - }, - { - "id": 464, - "order": 0 - }, - { - "id": 465, - "order": 0 - }, - { - "id": 466, - "order": 0 - }, - { - "id": 467, - "order": 0 - }, - { - "id": 468, - "order": 0 - }, - { - "id": 469, - "order": 0 - }, - { - "id": 470, - "order": 0 - }, - { - "id": 471, - "order": 0 - }, - { - "id": 472, - "order": 0 - }, - { - "id": 473, - "order": 0 - }, - { - "id": 474, - "order": 0 - }, - { - "id": 475, - "order": 0 - }, - { - "id": 476, - "order": 0 - }, - { - "id": 477, - "order": 0 - }, - { - "id": 478, - "order": 0 - }, - { - "id": 479, - "order": 0 - }, - { - "id": 480, - "order": 0 - }, - { - "id": 481, - "order": 0 - }, - { - "id": 482, - "order": 0 - }, - { - "id": 483, - "order": 0 - }, - { - "id": 484, - "order": 0 - }, - { - "id": 485, - "order": 0 - }, - { - "id": 486, - "order": 0 - }, - { - "id": 487, - "order": 0 - }, - { - "id": 488, - "order": 0 - }, - { - "id": 489, - "order": 0, - "prevSize": 32, - "code": 59651, - "name": "ball", - "tempChar": "" - }, - { - "id": 490, - "order": 0 - }, - { - "id": 491, - "order": 0 - }, - { - "id": 492, - "order": 0 - }, - { - "id": 493, - "order": 0 - }, - { - "id": 494, - "order": 0 - }, - { - "id": 495, - "order": 0 - }, - { - "id": 496, - "order": 0 - }, - { - "id": 497, - "order": 0 - }, - { - "id": 498, - "order": 0 - }, - { - "id": 499, - "order": 0 - }, - { - "id": 500, - "order": 0 - }, - { - "id": 501, - "order": 0 - }, - { - "id": 502, - "order": 0 - }, - { - "id": 503, - "order": 0 - }, - { - "id": 504, - "order": 0 - }, - { - "id": 505, - "order": 0 - }, - { - "id": 506, - "order": 0 - }, - { - "id": 507, - "order": 0 - }, - { - "id": 508, - "order": 0 - }, - { - "id": 509, - "order": 0 - }, - { - "id": 510, - "order": 0 - }, - { - "id": 511, - "order": 0 - }, - { - "id": 512, - "order": 0 - }, - { - "id": 513, - "order": 0 - }, - { - "id": 514, - "order": 0 - }, - { - "id": 515, - "order": 0 - }, - { - "id": 516, - "order": 0 - }, - { - "id": 517, - "order": 0 - }, - { - "id": 518, - "order": 0 - }, - { - "id": 519, - "order": 0 - }, - { - "id": 520, - "order": 0 - }, - { - "id": 521, - "order": 0 - }, - { - "id": 522, - "order": 0 - }, - { - "id": 523, - "order": 0 - }, - { - "id": 524, - "order": 0 - }, - { - "id": 525, - "order": 0 - }, - { - "id": 526, - "order": 0 - }, - { - "id": 527, - "order": 0 - }, - { - "id": 528, - "order": 0 - }, - { - "id": 529, - "order": 0 - }, - { - "id": 530, - "order": 0 - }, - { - "id": 531, - "order": 0 - }, - { - "id": 532, - "order": 0 - }, - { - "id": 533, - "order": 0 - }, - { - "id": 534, - "order": 0 - }, - { - "id": 535, - "order": 0 - }, - { - "id": 536, - "order": 0 - }, - { - "id": 537, - "order": 0 - }, - { - "id": 538, - "order": 0 - }, - { - "id": 539, - "order": 0 - }, - { - "id": 540, - "order": 0 - }, - { - "id": 541, - "order": 0 - }, - { - "id": 542, - "order": 0 - }, - { - "id": 543, - "order": 0 - }, - { - "id": 544, - "order": 0 - }, - { - "id": 545, - "order": 0 - }, - { - "id": 546, - "order": 0 - }, - { - "id": 547, - "order": 0 - }, - { - "id": 548, - "order": 0 - }, - { - "id": 549, - "order": 0 - }, - { - "id": 550, - "order": 0 - }, - { - "id": 551, - "order": 0 - }, - { - "id": 552, - "order": 0 - }, - { - "id": 553, - "order": 0 - }, - { - "id": 554, - "order": 0 - }, - { - "id": 555, - "order": 0 - }, - { - "id": 556, - "order": 0 - }, - { - "id": 557, - "order": 0 - }, - { - "id": 558, - "order": 0 - }, - { - "id": 559, - "order": 0 - }, - { - "id": 560, - "order": 0 - }, - { - "id": 561, - "order": 0 - }, - { - "id": 562, - "order": 0 - }, - { - "id": 563, - "order": 0 - }, - { - "id": 564, - "order": 0 - }, - { - "id": 565, - "order": 0 - }, - { - "id": 566, - "order": 0 - }, - { - "id": 567, - "order": 0 - }, - { - "id": 568, - "order": 0 - }, - { - "id": 569, - "order": 0 - }, - { - "id": 570, - "order": 0 - }, - { - "id": 571, - "order": 0 - }, - { - "id": 572, - "order": 0 - }, - { - "id": 573, - "order": 0 - }, - { - "id": 574, - "order": 0 - }, - { - "id": 575, - "order": 0 - }, - { - "id": 576, - "order": 0 - }, - { - "id": 577, - "order": 0 - }, - { - "id": 578, - "order": 0 - }, - { - "id": 579, - "order": 0 - }, - { - "id": 580, - "order": 0 - }, - { - "id": 581, - "order": 0 - }, - { - "id": 582, - "order": 0 - }, - { - "id": 583, - "order": 0 - }, - { - "id": 584, - "order": 0 - }, - { - "id": 585, - "order": 0 - }, - { - "id": 586, - "order": 0 - }, - { - "id": 587, - "order": 0 - }, - { - "id": 588, - "order": 0 - }, - { - "id": 589, - "order": 0 - }, - { - "id": 590, - "order": 0 - }, - { - "id": 591, - "order": 0 - }, - { - "id": 592, - "order": 0 - }, - { - "id": 593, - "order": 0 - }, - { - "id": 594, - "order": 0 - }, - { - "id": 595, - "order": 0 - }, - { - "id": 596, - "order": 0 - }, - { - "id": 597, - "order": 0 - }, - { - "id": 598, - "order": 0 - }, - { - "id": 599, - "order": 0 - }, - { - "id": 600, - "order": 0 - }, - { - "id": 601, - "order": 0 - }, - { - "id": 602, - "order": 0 - }, - { - "id": 603, - "order": 0 - }, - { - "id": 604, - "order": 0 - }, - { - "id": 605, - "order": 0 - }, - { - "id": 606, - "order": 0 - }, - { - "id": 607, - "order": 0 - }, - { - "id": 608, - "order": 0 - }, - { - "id": 609, - "order": 0 - }, - { - "id": 610, - "order": 0 - }, - { - "id": 611, - "order": 0 - }, - { - "id": 612, - "order": 0 - }, - { - "id": 613, - "order": 0 - }, - { - "id": 614, - "order": 0 - }, - { - "id": 615, - "order": 0 - }, - { - "id": 616, - "order": 0 - }, - { - "id": 617, - "order": 0 - }, - { - "id": 618, - "order": 0 - }, - { - "id": 619, - "order": 0 - }, - { - "id": 620, - "order": 0 - }, - { - "id": 621, - "order": 0 - }, - { - "id": 622, - "order": 0 - }, - { - "id": 623, - "order": 0 - }, - { - "id": 624, - "order": 0 - }, - { - "id": 625, - "order": 0 - }, - { - "id": 626, - "order": 0 - }, - { - "id": 627, - "order": 0 - }, - { - "id": 628, - "order": 0 - }, - { - "id": 629, - "order": 0 - }, - { - "id": 630, - "order": 0 - }, - { - "id": 631, - "order": 0 - }, - { - "id": 632, - "order": 0 - }, - { - "id": 633, - "order": 0 - }, - { - "id": 634, - "order": 0 - }, - { - "id": 635, - "order": 0 - }, - { - "id": 636, - "order": 0 - }, - { - "id": 637, - "order": 0 - }, - { - "id": 638, - "order": 0 - }, - { - "id": 639, - "order": 0 - }, - { - "id": 640, - "order": 0 - }, - { - "id": 641, - "order": 0 - }, - { - "id": 642, - "order": 0 - }, - { - "id": 643, - "order": 0 - }, - { - "id": 644, - "order": 0 - }, - { - "id": 645, - "order": 0 - }, - { - "id": 646, - "order": 0 - }, - { - "id": 647, - "order": 0 - }, - { - "id": 648, - "order": 0 - }, - { - "id": 649, - "order": 0 - }, - { - "id": 650, - "order": 0 - }, - { - "id": 651, - "order": 0 - }, - { - "id": 652, - "order": 0 - }, - { - "id": 653, - "order": 0 - }, - { - "id": 654, - "order": 0 - }, - { - "id": 655, - "order": 0 - }, - { - "id": 656, - "order": 0 - }, - { - "id": 657, - "order": 0 - }, - { - "id": 658, - "order": 0 - }, - { - "id": 659, - "order": 0 - }, - { - "id": 660, - "order": 0 - }, - { - "id": 661, - "order": 0 - }, - { - "id": 662, - "order": 0 - }, - { - "id": 663, - "order": 0 - }, - { - "id": 664, - "order": 0 - }, - { - "id": 665, - "order": 0 - }, - { - "id": 666, - "order": 0 - }, - { - "id": 667, - "order": 0 - }, - { - "id": 668, - "order": 0 - }, - { - "id": 669, - "order": 0 - }, - { - "id": 670, - "order": 0 - }, - { - "id": 671, - "order": 0 - }, - { - "id": 672, - "order": 0 - }, - { - "id": 673, - "order": 0 - }, - { - "id": 674, - "order": 0 - }, - { - "id": 675, - "order": 0 - }, - { - "id": 676, - "order": 0 - }, - { - "id": 677, - "order": 0 - }, - { - "id": 678, - "order": 0 - }, - { - "id": 679, - "order": 0 - }, - { - "id": 680, - "order": 0 - }, - { - "id": 681, - "order": 0 - }, - { - "id": 682, - "order": 0 - }, - { - "id": 683, - "order": 0 - }, - { - "id": 684, - "order": 0 - }, - { - "id": 685, - "order": 0 - }, - { - "id": 686, - "order": 0 - }, - { - "id": 687, - "order": 0 - }, - { - "id": 688, - "order": 0 - }, - { - "id": 689, - "order": 0 - }, - { - "id": 690, - "order": 0 - }, - { - "id": 691, - "order": 0 - }, - { - "id": 692, - "order": 0 - }, - { - "id": 693, - "order": 0 - }, - { - "id": 694, - "order": 0 - }, - { - "id": 695, - "order": 0 - }, - { - "id": 696, - "order": 0 - }, - { - "id": 697, - "order": 0 - }, - { - "id": 698, - "order": 0 - }, - { - "id": 699, - "order": 0 - }, - { - "id": 700, - "order": 0 - }, - { - "id": 701, - "order": 0 - }, - { - "id": 702, - "order": 0 - }, - { - "id": 703, - "order": 0 - }, - { - "id": 704, - "order": 0 - }, - { - "id": 705, - "order": 0 - }, - { - "id": 706, - "order": 0 - }, - { - "id": 707, - "order": 0 - }, - { - "id": 708, - "order": 0 - }, - { - "id": 709, - "order": 0 - }, - { - "id": 710, - "order": 0 - }, - { - "id": 711, - "order": 0 - }, - { - "id": 712, - "order": 0 - }, - { - "id": 713, - "order": 0 - }, - { - "id": 714, - "order": 0 - }, - { - "id": 715, - "order": 0 - }, - { - "id": 716, - "order": 0 - }, - { - "id": 717, - "order": 0 - }, - { - "id": 718, - "order": 0 - }, - { - "id": 719, - "order": 0 - }, - { - "id": 720, - "order": 0 - }, - { - "id": 721, - "order": 0 - }, - { - "id": 722, - "order": 0 - }, - { - "id": 723, - "order": 0 - }, - { - "id": 724, - "order": 0 - }, - { - "id": 725, - "order": 0 - }, - { - "id": 726, - "order": 0 - }, - { - "id": 727, - "order": 0 - }, - { - "id": 728, - "order": 0 - }, - { - "id": 729, - "order": 0 - }, - { - "id": 730, - "order": 0 - }, - { - "id": 731, - "order": 0 - }, - { - "id": 732, - "order": 0 - }, - { - "id": 733, - "order": 0 - }, - { - "id": 734, - "order": 0 - }, - { - "id": 735, - "order": 0 - }, - { - "id": 736, - "order": 0 - }, - { - "id": 737, - "order": 0 - }, - { - "id": 738, - "order": 0 - }, - { - "id": 739, - "order": 0 - }, - { - "id": 740, - "order": 0 - }, - { - "id": 741, - "order": 0 - }, - { - "id": 742, - "order": 0 - }, - { - "id": 743, - "order": 0 - }, - { - "id": 744, - "order": 0 - }, - { - "id": 745, - "order": 0 - }, - { - "id": 746, - "order": 0 - }, - { - "id": 747, - "order": 0 - }, - { - "id": 748, - "order": 0 - }, - { - "id": 749, - "order": 0 - }, - { - "id": 750, - "order": 0 - }, - { - "id": 751, - "order": 0 - }, - { - "id": 752, - "order": 0 - }, - { - "id": 753, - "order": 0 - }, - { - "id": 754, - "order": 0 - }, - { - "id": 755, - "order": 0 - }, - { - "id": 756, - "order": 0 - }, - { - "id": 757, - "order": 0 - }, - { - "id": 758, - "order": 0 - }, - { - "id": 759, - "order": 0 - }, - { - "id": 760, - "order": 0 - }, - { - "id": 761, - "order": 0 - }, - { - "id": 762, - "order": 0 - }, - { - "id": 763, - "order": 0 - }, - { - "id": 764, - "order": 0 - }, - { - "id": 765, - "order": 0 - }, - { - "id": 766, - "order": 0 - }, - { - "id": 767, - "order": 0 - }, - { - "id": 768, - "order": 0 - }, - { - "id": 769, - "order": 0 - }, - { - "id": 770, - "order": 0 - }, - { - "id": 771, - "order": 0 - }, - { - "id": 772, - "order": 0 - }, - { - "id": 773, - "order": 0 - }, - { - "id": 774, - "order": 0 - }, - { - "id": 775, - "order": 0 - }, - { - "id": 776, - "order": 0 - }, - { - "id": 777, - "order": 0 - }, - { - "id": 778, - "order": 0 - }, - { - "id": 779, - "order": 0 - }, - { - "id": 780, - "order": 0 - }, - { - "id": 781, - "order": 0 - }, - { - "id": 782, - "order": 0 - }, - { - "id": 783, - "order": 0 - }, - { - "id": 784, - "order": 0 - }, - { - "id": 785, - "order": 0 - }, - { - "id": 786, - "order": 0 - }, - { - "id": 787, - "order": 0 - }, - { - "id": 788, - "order": 0 - }, - { - "id": 789, - "order": 0 - }, - { - "id": 790, - "order": 0 - }, - { - "id": 791, - "order": 0 - }, - { - "id": 792, - "order": 0 - }, - { - "id": 793, - "order": 0 - }, - { - "id": 794, - "order": 0 - }, - { - "id": 795, - "order": 0 - }, - { - "id": 796, - "order": 0 - }, - { - "id": 797, - "order": 0 - }, - { - "id": 798, - "order": 0 - }, - { - "id": 799, - "order": 0 - }, - { - "id": 800, - "order": 0 - }, - { - "id": 801, - "order": 0 - }, - { - "id": 802, - "order": 0 - }, - { - "id": 803, - "order": 0 - }, - { - "id": 804, - "order": 0 - }, - { - "id": 805, - "order": 0 - }, - { - "id": 806, - "order": 0 - }, - { - "id": 807, - "order": 0 - }, - { - "id": 808, - "order": 0 - }, - { - "id": 809, - "order": 0 - }, - { - "id": 810, - "order": 0 - }, - { - "id": 811, - "order": 0 - }, - { - "id": 812, - "order": 0 - }, - { - "id": 813, - "order": 0 - }, - { - "id": 814, - "order": 0 - }, - { - "id": 815, - "order": 0 - }, - { - "id": 816, - "order": 0 - }, - { - "id": 817, - "order": 0 - }, - { - "id": 818, - "order": 0 - }, - { - "id": 819, - "order": 0 - }, - { - "id": 820, - "order": 0 - }, - { - "id": 821, - "order": 0 - }, - { - "id": 822, - "order": 0 - }, - { - "id": 823, - "order": 0 - }, - { - "id": 824, - "order": 0 - }, - { - "id": 825, - "order": 0 - }, - { - "id": 826, - "order": 0 - }, - { - "id": 827, - "order": 0 - }, - { - "id": 828, - "order": 0 - }, - { - "id": 829, - "order": 0 - }, - { - "id": 830, - "order": 0 - }, - { - "id": 831, - "order": 0 - }, - { - "id": 832, - "order": 0 - }, - { - "id": 833, - "order": 0 - }, - { - "id": 834, - "order": 0 - }, - { - "id": 835, - "order": 0 - }, - { - "id": 836, - "order": 0 - }, - { - "id": 837, - "order": 0 - }, - { - "id": 838, - "order": 0 - }, - { - "id": 839, - "order": 0 - }, - { - "id": 840, - "order": 0 - }, - { - "id": 841, - "order": 0 - }, - { - "id": 842, - "order": 0 - }, - { - "id": 843, - "order": 0 - }, - { - "id": 844, - "order": 0 - }, - { - "id": 845, - "order": 0 - }, - { - "id": 846, - "order": 0 - }, - { - "id": 847, - "order": 0 - }, - { - "id": 848, - "order": 0 - }, - { - "id": 849, - "order": 0 - }, - { - "id": 850, - "order": 0 - }, - { - "id": 851, - "order": 0 - }, - { - "id": 852, - "order": 0 - }, - { - "id": 853, - "order": 0 - }, - { - "id": 854, - "order": 0 - }, - { - "id": 855, - "order": 0 - }, - { - "id": 856, - "order": 0 - }, - { - "id": 857, - "order": 0 - }, - { - "id": 858, - "order": 0 - }, - { - "id": 859, - "order": 0 - }, - { - "id": 860, - "order": 0 - }, - { - "id": 861, - "order": 0 - }, - { - "id": 862, - "order": 0 - }, - { - "id": 863, - "order": 0 - }, - { - "id": 864, - "order": 0 - }, - { - "id": 865, - "order": 0 - }, - { - "id": 866, - "order": 0 - }, - { - "id": 867, - "order": 0 - }, - { - "id": 868, - "order": 0 - }, - { - "id": 869, - "order": 0 - }, - { - "id": 870, - "order": 0 - }, - { - "id": 871, - "order": 0 - }, - { - "id": 872, - "order": 0 - }, - { - "id": 873, - "order": 0 - }, - { - "id": 874, - "order": 0 - }, - { - "id": 875, - "order": 0 - }, - { - "id": 876, - "order": 0 - }, - { - "id": 877, - "order": 0 - }, - { - "id": 878, - "order": 0 - }, - { - "id": 879, - "order": 0 - }, - { - "id": 880, - "order": 0 - }, - { - "id": 881, - "order": 0 - }, - { - "id": 882, - "order": 0 - }, - { - "id": 883, - "order": 0 - }, - { - "id": 884, - "order": 0 - }, - { - "id": 885, - "order": 0 - }, - { - "id": 886, - "order": 0 - }, - { - "id": 887, - "order": 0 - }, - { - "id": 888, - "order": 0 - }, - { - "id": 889, - "order": 0 - }, - { - "id": 890, - "order": 0 - }, - { - "id": 891, - "order": 0 - }, - { - "id": 892, - "order": 0 - }, - { - "id": 893, - "order": 0 - }, - { - "id": 894, - "order": 0 - }, - { - "id": 895, - "order": 0 - }, - { - "id": 896, - "order": 0 - }, - { - "id": 897, - "order": 0 - }, - { - "id": 898, - "order": 0 - }, - { - "id": 899, - "order": 0 - }, - { - "id": 900, - "order": 0 - }, - { - "id": 901, - "order": 0 - }, - { - "id": 902, - "order": 0 - }, - { - "id": 903, - "order": 0 - }, - { - "id": 904, - "order": 0 - }, - { - "id": 905, - "order": 0 - }, - { - "id": 906, - "order": 0 - }, - { - "id": 907, - "order": 0 - }, - { - "id": 908, - "order": 0 - }, - { - "id": 909, - "order": 0 - }, - { - "id": 910, - "order": 0 - }, - { - "id": 911, - "order": 0 - }, - { - "id": 912, - "order": 0 - }, - { - "id": 913, - "order": 0 - }, - { - "id": 914, - "order": 0 - }, - { - "id": 915, - "order": 0 - }, - { - "id": 916, - "order": 0 - }, - { - "id": 917, - "order": 0 - }, - { - "id": 918, - "order": 0 - }, - { - "id": 919, - "order": 0 - }, - { - "id": 920, - "order": 0 - }, - { - "id": 921, - "order": 0 - }, - { - "id": 922, - "order": 0 - }, - { - "id": 923, - "order": 0 - }, - { - "id": 924, - "order": 0 - }, - { - "id": 925, - "order": 0 - }, - { - "id": 926, - "order": 0 - }, - { - "id": 927, - "order": 0 - }, - { - "id": 928, - "order": 0 - }, - { - "id": 929, - "order": 0 - }, - { - "id": 930, - "order": 0 - }, - { - "id": 931, - "order": 0 - }, - { - "id": 932, - "order": 0 - }, - { - "id": 933, - "order": 0 - }, - { - "id": 934, - "order": 0 - }, - { - "id": 935, - "order": 0 - }, - { - "id": 936, - "order": 0 - }, - { - "id": 937, - "order": 0 - }, - { - "id": 938, - "order": 0 - }, - { - "id": 939, - "order": 0 - }, - { - "id": 940, - "order": 0 - }, - { - "id": 941, - "order": 0 - }, - { - "id": 942, - "order": 0 - }, - { - "id": 943, - "order": 0 - }, - { - "id": 944, - "order": 0 - }, - { - "id": 945, - "order": 0 - }, - { - "id": 946, - "order": 0 - }, - { - "id": 947, - "order": 0 - }, - { - "id": 948, - "order": 0 - }, - { - "id": 949, - "order": 0 - }, - { - "id": 950, - "order": 0 - }, - { - "id": 951, - "order": 0 - }, - { - "id": 952, - "order": 0 - }, - { - "id": 953, - "order": 0 - }, - { - "id": 954, - "order": 0 - }, - { - "id": 955, - "order": 0 - }, - { - "id": 956, - "order": 0 - }, - { - "id": 957, - "order": 0 - }, - { - "id": 958, - "order": 0 - }, - { - "id": 959, - "order": 0 - }, - { - "id": 960, - "order": 0 - }, - { - "id": 961, - "order": 0 - }, - { - "id": 962, - "order": 0 - }, - { - "id": 963, - "order": 0 - }, - { - "id": 964, - "order": 0 - }, - { - "id": 965, - "order": 0 - }, - { - "id": 966, - "order": 0 - }, - { - "id": 967, - "order": 0 - }, - { - "id": 968, - "order": 0 - }, - { - "id": 969, - "order": 0 - }, - { - "id": 970, - "order": 0 - }, - { - "id": 971, - "order": 0 - }, - { - "id": 972, - "order": 0 - }, - { - "id": 973, - "order": 0 - }, - { - "id": 974, - "order": 0 - }, - { - "id": 975, - "order": 0 - }, - { - "id": 976, - "order": 0 - }, - { - "id": 977, - "order": 0 - }, - { - "id": 978, - "order": 0 - }, - { - "id": 979, - "order": 0 - }, - { - "id": 980, - "order": 0 - }, - { - "id": 981, - "order": 0 - }, - { - "id": 982, - "order": 0 - }, - { - "id": 983, - "order": 0 - }, - { - "id": 984, - "order": 0 - }, - { - "id": 985, - "order": 0 - }, - { - "id": 986, - "order": 0 - }, - { - "id": 987, - "order": 0 - }, - { - "id": 988, - "order": 0 - }, - { - "id": 989, - "order": 0 - }, - { - "id": 990, - "order": 0 - }, - { - "id": 991, - "order": 0 - }, - { - "id": 992, - "order": 0 - }, - { - "id": 993, - "order": 0 - }, - { - "id": 994, - "order": 0 - }, - { - "id": 995, - "order": 0 - }, - { - "id": 996, - "order": 0 - }, - { - "id": 997, - "order": 0 - }, - { - "id": 998, - "order": 0 - }, - { - "id": 999, - "order": 0 - }, - { - "id": 1000, - "order": 0 - }, - { - "id": 1001, - "order": 0 - }, - { - "id": 1002, - "order": 0 - }, - { - "id": 1003, - "order": 0 - }, - { - "id": 1004, - "order": 0 - }, - { - "id": 1005, - "order": 0 - }, - { - "id": 1006, - "order": 0 - }, - { - "id": 1007, - "order": 0 - }, - { - "id": 1008, - "order": 0 - }, - { - "id": 1009, - "order": 0 - }, - { - "id": 1010, - "order": 0 - }, - { - "id": 1011, - "order": 0 - }, - { - "id": 1012, - "order": 0 - }, - { - "id": 1013, - "order": 0 - }, - { - "id": 1014, - "order": 0 - }, - { - "id": 1015, - "order": 0 - }, - { - "id": 1016, - "order": 0 - }, - { - "id": 1017, - "order": 0 - }, - { - "id": 1018, - "order": 0 - }, - { - "id": 1019, - "order": 0 - }, - { - "id": 1020, - "order": 0 - }, - { - "id": 1021, - "order": 0 - }, - { - "id": 1022, - "order": 0 - }, - { - "id": 1023, - "order": 0 - }, - { - "id": 1024, - "order": 0 - }, - { - "id": 1025, - "order": 0 - }, - { - "id": 1026, - "order": 0 - }, - { - "id": 1027, - "order": 0 - }, - { - "id": 1028, - "order": 0 - }, - { - "id": 1029, - "order": 0 - }, - { - "id": 1030, - "order": 0 - }, - { - "id": 1031, - "order": 0 - }, - { - "id": 1032, - "order": 0 - }, - { - "id": 1033, - "order": 0 - }, - { - "id": 1034, - "order": 0 - }, - { - "id": 1035, - "order": 0 - }, - { - "id": 1036, - "order": 0 - } - ], - "id": 3, - "metadata": { - "name": "Hawcons", - "url": "http://hawcons.com/", - "designerURL": "http://www.yanlu.de/", - "designer": "Yannick", - "licenseURL": "http://hawcons.com/faq/", - "license": "Custom" - }, - "height": 1024, - "prevSize": 32, - "icons": [ - { - "id": 0, - "paths": [ - "M192.115 256h671.77c35.643 0 64.115 28.569 64.115 63.81v384.38c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81zM192.098 288c-17.727 0-32.098 14.398-32.098 32.219v383.562c0 17.794 14.045 32.219 32.098 32.219h671.803c17.727 0 32.098-14.398 32.098-32.219v-383.562c0-17.794-14.045-32.219-32.098-32.219h-671.803zM736 352h96v96h-96v-96zM768 384v32h32v-32h-32zM224 576v32h256v-32h-256zM224 352v32h128v-32h-128zM224 640v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope" - ], - "grid": 32 - }, - { - "id": 1, - "paths": [ - "M192.115 256h671.77c35.643 0 64.115 28.569 64.115 63.81v384.38c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81zM224 352v32h128v-32h-128zM736 352v96h96v-96h-96zM768 384v32h32v-32h-32zM224 576v32h256v-32h-256zM224 640v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope" - ], - "grid": 32 - }, - { - "id": 2, - "paths": [ - "M660.421 640h-266.608l71.819 63.37 72.55 0.347-54.294 0.283h108.112l0.638-0.567-3.18 0.017 70.963-63.449zM696.21 608l103.79-92.801v-258.923c0-17.826-14.551-32.276-31.999-32.276h-480.003c-17.672 0-31.999 14.2-31.999 32.066v262.334l101.546 89.6h338.664zM418.909 192l109.091-96 109.091 96h130.992c35.408 0 63.918 28.648 63.918 63.988v107.532l96 84.48v448.19c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-448.19l96-84.48v-107.532c0-35.59 28.617-63.988 63.918-63.988h130.992zM589.691 192l-61.691-54.4-61.691 54.4h123.381zM832 405.673v84.994l48-42.667-48-42.327zM224 490.667v-84.994l-48 42.327 48 42.667zM432 736l-224 192h640l-224-192h-192zM885.924 919.205v0 0c6.203-5.866 10.076-14.145 10.076-23.204v-416.001l-256 224.547 245.924 214.659zM170.076 919.205l245.924-214.659-256-224.547v416.001c0 9.060 3.872 17.338 10.076 23.204v0 0zM320 320v32h416v-32h-416zM320 416v32h416v-32h-416zM320 512v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 3, - "paths": [ - "M361.381 608l-105.381-89.6v-262.334c0-17.867 14.326-32.066 31.999-32.066h480.003c17.448 0 31.999 14.357 31.999 32.066v262.334l-106.659 89.6h-331.96zM399.017 640l57.054 48.51h141.432l57.746-48.51h-256.231zM709.925 644.064l-69.925 59.936 189.538 162.462-25.846 25.846-191.866-164.457-167.149 0.729-0.677-0.58-191.692 164.308-25.846-25.846 189.538-162.462-69.925-59.936-122.075-103.263v-177.281l-96 84.48v448.19c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-448.19l-96-84.48v177.281l-122.075 103.263zM637.091 192l-109.091-96-109.091 96h218.182zM320 320v32h416v-32h-416zM320 416v32h416v-32h-416zM320 512v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 4, - "paths": [ - "M170.080 296.765l357.92 311.235 357.981-311.287c6.206 5.878 10.019 14.235 10.019 23.507v383.562c0 17.821-14.371 32.219-32.098 32.219h-671.803c-18.053 0-32.098-14.425-32.098-32.219v-383.562c0-9.253 3.874-17.582 10.080-23.454zM192.115 256c-35.41 0-64.115 28.624-64.115 63.81v384.38c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-384.38c0-35.241-28.472-63.81-64.115-63.81h-671.77zM528 566.4l-320-278.4h640l-320 278.4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-closed" - ], - "grid": 32 - }, - { - "id": 5, - "paths": [ - "M226.462 349.538l25.846-25.846 275.692 236.308 275.692-236.308 25.846 25.846-301.538 258.462-301.538-258.462zM192.115 256c-35.41 0-64.115 28.624-64.115 63.81v384.38c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-384.38c0-35.241-28.472-63.81-64.115-63.81h-671.77z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-closed" - ], - "grid": 32 - }, - { - "id": 6, - "paths": [ - "M528 137.6l-352 310.4 352 304 352-304-352-310.4zM896 476.16l-368 323.84-368-323.84v419.947c0 17.614 14.045 31.893 32.098 31.893h671.803c17.727 0 32.098-14.395 32.098-31.893v-419.947zM928 896.19c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-448.19l400-352 400 352v448.19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 7, - "paths": [ - "M226.462 541.538l301.538 258.462 301.538-258.462-26.471-26.471-275.067 230.532-275.067-230.532-26.471 26.471zM928 448v448.19c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-448.19l400-352 400 352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 8, - "paths": [ - "M538.182 703.717l-54.294 0.283h108.112l0.638-0.567-3.18 0.017 210.542-188.25v-258.923c0-17.826-14.551-32.276-31.999-32.276h-480.003c-17.672 0-31.999 14.2-31.999 32.066v262.334l209.632 184.97 72.55 0.347zM418.909 192l109.091-96 109.091 96h130.992c35.408 0 63.918 28.648 63.918 63.988v107.532l96 84.48v448.19c0 35.185-28.705 63.81-64.115 63.81h-671.77c-35.643 0-64.115-28.569-64.115-63.81v-448.19l96-84.48v-107.532c0-35.59 28.617-63.988 63.918-63.988h130.992zM589.691 192l-61.691-54.4-61.691 54.4h123.381zM832 405.673v84.994l48-42.667-48-42.327zM224 490.667v-84.994l-48 42.327 48 42.667zM432 736l-224 192h640l-224-192h-192zM885.924 919.205v0 0c6.203-5.866 10.076-14.145 10.076-23.204v-416.001l-256 224.547 245.924 214.659zM170.076 919.205l245.924-214.659-256-224.547v416.001c0 9.060 3.872 17.338 10.076 23.204v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 9, - "paths": [ - "M709.925 644.064l-69.925 59.936 189.538 162.462-25.846 25.846-191.866-164.457-167.149 0.729-0.677-0.58-191.692 164.308-25.846-25.846 189.538-162.462-69.925-59.936-122.075-103.263v-177.281l-96 84.48v448.19c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-448.19l-96-84.48v177.281l-122.075 103.263zM418.909 192l109.091-96 109.091 96h-218.182zM287.999 224c-17.672 0-31.999 14.2-31.999 32.066v262.334l200.070 170.109h141.432l202.498-170.109v-262.334c0-17.71-14.551-32.066-31.999-32.066h-480.003z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 10, - "paths": [ - "M170.080 296.765l247.52 215.235-247.581 215.287v0c-6.206-5.878-10.019-14.235-10.019-23.507v-383.562c0-9.253 3.874-17.582 10.080-23.454zM885.981 296.713c6.206 5.878 10.019 14.235 10.019 23.507v383.562c0 9.252-3.874 17.582-10.080 23.454l-247.52-215.235 247.581-215.287zM614.459 532.819l233.541 203.181h-640l233.541-203.181 86.459 75.181 86.459-75.181zM192.115 256c-35.41 0-64.115 28.624-64.115 63.81v384.38c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-384.38c0-35.241-28.472-63.81-64.115-63.81h-671.77zM528 566.4l-320-278.4h640l-320 278.4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-closed" - ], - "grid": 32 - }, - { - "id": 11, - "paths": [ - "M829.538 674.462l-25.846 25.846-191.692-164.308-84 72-84-72-191.692 164.308-25.846-25.846 189.538-162.462-189.538-162.462 25.846-25.846 275.692 236.308 275.692-236.308 25.846 25.846-189.538 162.462 189.538 162.462zM192.115 256c-35.41 0-64.115 28.624-64.115 63.81v384.38c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-384.38c0-35.241-28.472-63.81-64.115-63.81h-671.77z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-closed" - ], - "grid": 32 - }, - { - "id": 12, - "paths": [ - "M528 96l-400 352v448.19c0 35.241 28.472 63.81 64.115 63.81h671.77c35.41 0 64.115-28.624 64.115-63.81v-448.19l-400-352zM432 736h192l224 192h-640l224-192zM528 137.6l352 310.4-288 256h-128l-288-256 352-310.4zM885.924 919.205l-245.924-214.659 256-224.547v416.001c0 9.060-3.872 17.338-10.076 23.204v0 0zM170.076 919.205v0 0c-6.203-5.866-10.076-14.145-10.076-23.204v-416.001l256 224.547-245.924 214.659z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 13, - "paths": [ - "M528 96l-400 352v448.2c0 35.2 28.5 63.8 64.1 63.8h671.8c35.4 0 64.1-28.6 64.1-63.8v-448.2l-400-352zM829.5 866.5v0l-25.8 25.8-191.7-164.3-84 72-84-72-191.7 164.3-25.8-25.8 189.5-162.5-189.5-162.5 25.8-25.8 275.7 236.3 275.7-236.3 25.8 25.8-189.5 162.5 189.5 162.5z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-envelope-open" - ], - "grid": 32 - }, - { - "id": 14, - "paths": [ - "M832 561.231v-273.012c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 138.456 120.397 71.144-120.397 48 81.231zM696.579 627.943l-146.12-127.125-86.459 75.181-86.459-75.181-233.541 203.181h507.636l44.942-76.057zM632.727 736h-504.612c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v327.575l128 216.615h-416l56.727-96zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4zM784 544l-152 256h304l-152-256zM768 608v96h32v-96h-32zM768 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-error" - ], - "grid": 32 - }, - { - "id": 15, - "paths": [ - "M689.033 576.885l-113.033-96.885 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 122.219 104.759-75.108 127.241h-466.996c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v263.719l-80-135.529-94.967 160.885zM784 480l208 352h-416l208-352zM768 608v96h32v-96h-32zM768 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-error" - ], - "grid": 32 - }, - { - "id": 16, - "paths": [ - "M832 480.717v-192.498c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 93.321 81.148c31.285-48.805 86.005-81.148 148.279-81.148 5.393 0 10.73 0.243 16 0.717v0 0zM652.838 589.889l-102.38-89.070-86.459 75.181-86.459-75.181-233.541 203.181h502.625c-4.316-15.259-6.625-31.36-6.625-48 0-23.382 4.56-45.699 12.838-66.111v0 0zM659.191 736h-531.076c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v198.815c73.872 20.894 128 88.813 128 169.375 0 97.202-78.798 176-176 176-68.395 0-127.678-39.013-156.809-96l-0-0zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4zM816 800c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0 0zM800 743.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-checked" - ], - "grid": 32 - }, - { - "id": 17, - "paths": [ - "M644.309 538.55l-68.309-58.55 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 78.121 66.961c-11.645 25.961-18.121 54.743-18.121 85.039 0 28.349 5.671 55.373 15.941 80h-495.826c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v165.756c-15.409-3.64-31.479-5.566-48-5.566-71.296 0-134.214 35.871-171.691 90.55v0 0zM816 832c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0zM800 743.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-checked" - ], - "grid": 32 - }, - { - "id": 18, - "paths": [ - "M816 678.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM832 480.717v-192.498c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 93.321 81.148c31.285-48.805 86.005-81.148 148.279-81.148 5.393 0 10.73 0.243 16 0.717v0 0zM652.838 589.889l-102.38-89.070-86.459 75.181-86.459-75.181-233.541 203.181h502.625c-4.316-15.259-6.625-31.36-6.625-48 0-23.382 4.56-45.699 12.838-66.111v0 0zM659.191 736h-531.076c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v198.815c73.872 20.894 128 88.813 128 169.375 0 97.202-78.798 176-176 176-68.395 0-127.678-39.013-156.809-96l-0-0zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4zM816 800c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-cancel" - ], - "grid": 32 - }, - { - "id": 19, - "paths": [ - "M816 678.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM644.309 538.55l-68.309-58.55 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 78.121 66.961c-11.645 25.961-18.121 54.743-18.121 85.039 0 28.349 5.671 55.373 15.941 80h-495.826c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v165.756c-15.409-3.64-31.479-5.566-48-5.566-71.296 0-134.214 35.871-171.691 90.55v0 0zM816 832c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-cancel" - ], - "grid": 32 - }, - { - "id": 20, - "paths": [ - "M928.51 566.117l-202.393 202.393c24.635 19.706 55.883 31.49 89.883 31.49 79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883zM905.883 543.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144 0 34 11.784 65.248 31.49 89.883l202.393-202.393zM832 480.717v-192.498c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 93.321 81.148c31.285-48.805 86.005-81.148 148.279-81.148 5.393 0 10.73 0.243 16 0.717v0 0zM652.838 589.889l-102.38-89.070-86.459 75.181-86.459-75.181-233.541 203.181h502.625c-4.316-15.259-6.625-31.36-6.625-48 0-23.382 4.56-45.699 12.838-66.111v0 0zM659.191 736h-531.076c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v198.815c73.872 20.894 128 88.813 128 169.375 0 97.202-78.798 176-176 176-68.395 0-127.678-39.013-156.809-96l-0-0zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail--forbidden" - ], - "grid": 32 - }, - { - "id": 21, - "paths": [ - "M951.252 543.375c25.442 30.52 40.748 69.785 40.748 112.625 0 97.202-78.798 176-176 176-42.84 0-82.105-15.306-112.625-40.748l247.877-247.877zM928.625 520.748c-30.52-25.442-69.785-40.748-112.625-40.748-97.202 0-176 78.798-176 176 0 42.84 15.306 82.105 40.748 112.625l247.877-247.877zM644.309 538.55l-68.309-58.55 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 78.121 66.961c-11.645 25.961-18.121 54.743-18.121 85.039 0 28.349 5.671 55.373 15.941 80h-495.826c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v165.756c-15.409-3.64-31.479-5.566-48-5.566-71.296 0-134.214 35.871-171.691 90.55v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail--forbidden" - ], - "grid": 32 - }, - { - "id": 22, - "paths": [ - "M800 640v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM832 480.717v-192.498c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 93.321 81.148c31.285-48.805 86.005-81.148 148.279-81.148 5.393 0 10.73 0.243 16 0.717v0 0zM652.838 589.889l-102.38-89.070-86.459 75.181-86.459-75.181-233.541 203.181h502.625c-4.316-15.259-6.625-31.36-6.625-48 0-23.382 4.56-45.699 12.838-66.111v0 0zM659.191 736h-531.076c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v198.815c73.872 20.894 128 88.813 128 169.375 0 97.202-78.798 176-176 176-68.395 0-127.678-39.013-156.809-96l-0-0zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4zM816 800c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-add" - ], - "grid": 32 - }, - { - "id": 23, - "paths": [ - "M800 672h-96v-32h96v-96h32v96h96v32h-96v96h-32v-96zM644.309 538.55l-68.309-58.55 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 78.121 66.961c-11.645 25.961-18.121 54.743-18.121 85.039 0 28.349 5.671 55.373 15.941 80h-495.826c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v165.756c-15.409-3.64-31.479-5.566-48-5.566-71.296 0-134.214 35.871-171.691 90.55v0 0zM816 832c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-add" - ], - "grid": 32 - }, - { - "id": 24, - "paths": [ - "M832 480.717v-192.498c0-9.271-3.813-17.628-10.019-23.507v0l-247.581 215.287 93.321 81.148c31.285-48.805 86.005-81.148 148.279-81.148 5.393 0 10.73 0.243 16 0.717v0 0zM652.838 589.889l-102.38-89.070-86.459 75.181-86.459-75.181-233.541 203.181h502.625c-4.316-15.259-6.625-31.36-6.625-48 0-23.382 4.56-45.699 12.838-66.111v0 0zM659.191 736h-531.076c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v198.815c73.872 20.894 128 88.813 128 169.375 0 97.202-78.798 176-176 176-68.395 0-127.678-39.013-156.809-96l-0-0zM106.080 264.765c-6.206 5.871-10.080 14.201-10.080 23.454v383.562c0 9.271 3.813 17.628 10.019 23.507v0l247.581-215.287-247.52-215.235zM464 534.4l320-278.4h-640l320 278.4zM816 800c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0 0zM704 640v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-remove" - ], - "grid": 32 - }, - { - "id": 25, - "paths": [ - "M644.309 538.55l-68.309-58.55 189.538-162.462-25.846-25.846-275.692 236.308-275.692-236.308-25.846 25.846 189.538 162.462-189.538 162.462 25.846 25.846 191.692-164.308 84 72 84-72 78.121 66.961c-11.645 25.961-18.121 54.743-18.121 85.039 0 28.349 5.671 55.373 15.941 80h-495.826c-35.643 0-64.115-28.569-64.115-63.81v-384.38c0-35.185 28.705-63.81 64.115-63.81h671.77c35.643 0 64.115 28.569 64.115 63.81v165.756c-15.409-3.64-31.479-5.566-48-5.566-71.296 0-134.214 35.871-171.691 90.55v0 0zM816 832v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM704 640v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail-remove" - ], - "grid": 32 - }, - { - "id": 26, - "paths": [ - "M256 336v-208c0 0 95.24-71.562 256 0s256-0 256-0v352c0 0-95.275 69.996-256 0-105.964-46.148-183.48-31.446-224-16.071v464.071h-32v-592zM496.66 156.801c-131.145-57.668-208.66-9.602-208.66-9.602v282.805c0 0 100.94-40.532 236.057 20.633 126.559 57.291 212.506 10.891 212.506 10.891v-285.527c0 0-96.734 43.756-239.902-19.199v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 27, - "paths": [ - "M256 335.806v592h32v-464.071c40.52-15.375 118.036-30.077 224 16.071 160.725 69.996 256 0 256 0v-352c0 0-95.24 71.563-256 0s-256 0-256 0v208z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 28, - "paths": [ - "M256 272v-176h512l-176 176 176 176h-480v480h-32v-656zM288 128v288h400l-144-144 144-144h-400z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 29, - "paths": [ - "M256 272v656h32v-480h480l-176-176 176-176h-512v176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 30, - "paths": [ - "M288 304v-208l448 192-416 178.286v461.714h-32v-624zM320 144v288l336-144-336-144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 31, - "paths": [ - "M288 304v624h32v-461.714l416-178.286-448-192v208z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 32, - "paths": [ - "M224 272v-176h512v352h-480v480h-32v-656zM256 128v288h448v-288h-448z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 33, - "paths": [ - "M224 272v656h32v-480h480v-352h-512v176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag" - ], - "grid": 32 - }, - { - "id": 34, - "paths": [ - "M415.909 128h192.182c52.977 0 95.909 42.853 95.909 95.715v672.285l-192-192-192 192v-672.285c0-52.778 42.94-95.715 95.909-95.715zM415.988 160c-35.339 0-63.988 28.749-63.988 63.806v595.393l160-160 160 160v-595.393c0-35.239-28.398-63.806-63.988-63.806h-192.025z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark" - ], - "grid": 32 - }, - { - "id": 35, - "paths": [ - "M415.909 128c-52.969 0-95.909 42.937-95.909 95.715v672.285l192-192 192 192v-672.285c0-52.862-42.932-95.715-95.909-95.715h-192.182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark" - ], - "grid": 32 - }, - { - "id": 36, - "paths": [ - "M608 416v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM640 607.283v0 0c89.704-8.084 160-83.474 160-175.283s-70.296-167.199-160-175.283v-33.003c0-52.862-42.932-95.715-95.909-95.715h-192.182c-52.969 0-95.909 42.937-95.909 95.715v672.285l192-192 192 192v-288.717zM608 607.283v211.917l-160-160-160 160v-595.393c0-35.057 28.648-63.806 63.988-63.806h192.025c35.59 0 63.988 28.567 63.988 63.806v32.912c-89.704 8.084-160 83.474-160 175.283s70.296 167.199 160 175.283v0 0zM624 576v0 0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark-add" - ], - "grid": 32 - }, - { - "id": 37, - "paths": [ - "M608 416v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM640 639.394v256.606l-192-192-192 192v-672.285c0-52.778 42.94-95.715 95.909-95.715h192.182c52.977 0 95.909 42.853 95.909 95.715v0.891c-5.281-0.402-10.616-0.606-16-0.606-114.875 0-208 93.125-208 208s93.125 208 208 208c5.384 0 10.719-0.205 16-0.606v0 0zM624 608c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark-add" - ], - "grid": 32 - }, - { - "id": 38, - "paths": [ - "M640 607.283v0 0c89.704-8.084 160-83.474 160-175.283s-70.296-167.199-160-175.283v-33.003c0-52.862-42.932-95.715-95.909-95.715h-192.182c-52.969 0-95.909 42.937-95.909 95.715v672.285l192-192 192 192v-288.717zM608 607.283v211.917l-160-160-160 160v-595.393c0-35.057 28.648-63.806 63.988-63.806h192.025c35.59 0 63.988 28.567 63.988 63.806v32.912c-89.704 8.084-160 83.474-160 175.283s70.296 167.199 160 175.283v0 0zM624 576v0 0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM512 416v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark-remove" - ], - "grid": 32 - }, - { - "id": 39, - "paths": [ - "M640 639.394v256.606l-192-192-192 192v-672.285c0-52.778 42.94-95.715 95.909-95.715h192.182c52.977 0 95.909 42.853 95.909 95.715v0.891c-5.281-0.402-10.616-0.606-16-0.606-114.875 0-208 93.125-208 208s93.125 208 208 208c5.384 0 10.719-0.205 16-0.606v0 0zM624 608v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM512 416v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark-remove" - ], - "grid": 32 - }, - { - "id": 40, - "paths": [ - "M259.478 668.522c-111.728-65.958-163.478-156.522-163.478-156.522s128-224 416-224c41.744 0 80.127 4.706 115.246 12.754l-27.185 27.185c-27.352-5.057-56.698-7.939-88.061-7.939-256 0-377.602 192-377.602 192s48.473 76.535 148.639 132.962l-23.559 23.559zM396.754 723.246c35.119 8.048 73.502 12.754 115.246 12.754 288-0 416-224 416-224s-51.751-90.564-163.478-156.522l-23.559 23.559c100.166 56.427 148.639 132.962 148.639 132.962s-121.602 192-377.602 192c-31.363 0-60.709-2.882-88.061-7.939l-27.185 27.185zM636.757 483.243c2.122 9.244 3.243 18.869 3.243 28.757 0 70.692-57.308 128-128 128-9.888 0-19.513-1.121-28.757-3.243l28.757-28.757c24.569 0 49.137-9.373 67.882-28.118s28.118-43.314 28.118-67.882l28.757-28.757zM540.757 387.243c-9.244-2.122-18.869-3.243-28.757-3.243-70.692 0-128 57.308-128 128 0 9.888 1.121 19.513 3.243 28.757l28.757-28.757c-0-24.569 9.373-49.137 28.118-67.882s43.314-28.118 67.882-28.118l28.757-28.757zM768 224l-544 544 32 32 544-544-32-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eye-hidden" - ], - "grid": 32 - }, - { - "id": 41, - "paths": [ - "M259.478 668.522c-111.728-65.958-163.478-156.522-163.478-156.522s128-224 416-224c41.744 0 80.127 4.706 115.246 12.754l-86.489 86.489c-9.244-2.122-18.869-3.243-28.757-3.243-70.692 0-128 57.308-128 128 0 9.888 1.121 19.513 3.243 28.757l-127.765 127.765zM396.754 723.246c35.119 8.048 73.502 12.754 115.246 12.754 288-0 416-224 416-224s-51.751-90.564-163.478-156.522l-127.765 127.765c2.122 9.244 3.243 18.869 3.243 28.757 0 70.692-57.308 128-128 128-9.888 0-19.513-1.121-28.757-3.243l-86.489 86.489zM608 512c0 24.569-9.373 49.137-28.118 67.882s-43.314 28.118-67.882 28.118l96-96zM512 416c-24.569-0-49.137 9.373-67.882 28.118s-28.118 43.314-28.118 67.882l96-96zM768 224l-544 544 32 32 544-544-32-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eye-hidden" - ], - "grid": 32 - }, - { - "id": 42, - "paths": [ - "M512 288v0 0c288 0 416 224 416 224s-128 224-416 224c-288 0-416-224-416-224s128-224 416-224zM512 320c-256 0-377.602 192-377.602 192s121.602 192 377.602 192c256-0 377.602-192 377.602-192s-121.602-192-377.602-192v0 0zM512 640v0 0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM512 608c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0 0zM512 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eye" - ], - "grid": 32 - }, - { - "id": 43, - "paths": [ - "M512 288v0c288 0 416 224 416 224s-128 224-416 224c-288 0-416-224-416-224s128-224 416-224zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128v0zM512 608v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM512 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eye" - ], - "grid": 32 - }, - { - "id": 44, - "paths": [ - "M512 736l288 192-128-320 288-192h-320l-128-320-128 320h-320l288 192-128 320 288-192zM512 696.098l-217.6 145.502 102.4-246.399-230.4-147.2h239.998l105.602-272 105.602 272h240l-230.402 147.2 102.402 246.399-217.602-145.502z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star" - ], - "grid": 32 - }, - { - "id": 45, - "paths": [ - "M512 736l-288 192 128-320-288-192h320l128-320 128 320h320l-288 192 128 320z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star" - ], - "grid": 32 - }, - { - "id": 46, - "paths": [ - "M593.037 622.963l-145.037 145.037h-96v96h-96v96h-160v-160l337.037-337.037c-11.016-29.564-17.037-61.56-17.037-94.963 0-150.221 121.779-272 272-272s272 121.779 272 272c0 150.221-121.779 272-272 272-33.403 0-65.399-6.021-94.963-17.037v0 0zM447.96 496.040l-319.96 319.96v112h96v-96h96v-96h112l127.96-127.96c-47.513-25.397-86.603-64.487-112-112v0 0zM928 368c0-132.548-107.452-240-240-240s-240 107.452-240 240c0 132.548 107.452 240 240 240s240-107.452 240-240v0 0zM864 288v0 0c0 53.019-42.981 96-96 96s-96-42.981-96-96c0-53.019 42.981-96 96-96s96 42.981 96 96zM832 288c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "key" - ], - "grid": 32 - }, - { - "id": 47, - "paths": [ - "M593.037 622.963l-145.037 145.037h-96v96h-96v96h-160v-160l337.037-337.037c-11.016-29.564-17.037-61.56-17.037-94.963 0-150.221 121.779-272 272-272s272 121.779 272 272c0 150.221-121.779 272-272 272-33.403 0-65.399-6.021-94.963-17.037v0 0zM864 288c0-53.019-42.981-96-96-96s-96 42.981-96 96c0 53.019 42.981 96 96 96s96-42.981 96-96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "key" - ], - "grid": 32 - }, - { - "id": 48, - "paths": [ - "M545.077 427.772l-406.918 407.548c-13.74 13.761-13.734 36.138-0.067 49.901l0.588 0.593c13.703 13.799 35.8 14.002 49.705 0.104l84.787-84.745 78.827 78.827 48-48-78.815-78.815 96.024-95.976 62.791 62.791 48-48-62.779-62.779 130.624-130.559c30.801 21.036 68.041 33.338 108.154 33.338 106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192 0 39.948 12.2 77.046 33.077 107.772zM416 704l-48 48 80 80-96 96-80-80-60.015 60.015c-26.923 26.923-70.528 27.044-97.348 0.223l1.125 1.125c-26.779-26.779-26.72-70.405 0.223-97.348l389.037-389.037c-15.989-30.831-25.022-65.85-25.022-102.978 0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224-37.129 0-72.147-9.033-102.978-25.022v0l-89.022 89.022 64 64-96 96-64-64zM704 448v0 0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM704 416c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "key" - ], - "grid": 32 - }, - { - "id": 49, - "paths": [ - "M416.273 704l-48 48 80 80-96 96-80-80-60.015 60.015c-26.923 26.923-70.528 27.044-97.348 0.223l1.125 1.125c-26.779-26.779-26.72-70.405 0.223-97.348l389.037-389.037c-15.989-30.831-25.022-65.85-25.022-102.978 0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224-37.129 0-72.147-9.033-102.978-25.022v0l-89.022 89.022 64 64-96 96-64-64zM704.273 448c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "key" - ], - "grid": 32 - }, - { - "id": 50, - "paths": [ - "M672 192h128v32h-544v-32h128v-32c0-35.593 28.616-64 63.917-64h160.167c35.249 0 63.917 28.654 63.917 64v32zM256 256h544v607.956c0 53.066-42.982 96.044-96.004 96.044h-351.992c-53.317 0-96.004-43.001-96.004-96.044v-607.956zM288 288v576.295c0 35.184 28.589 63.705 63.74 63.705h352.519c35.203 0 63.74-28.743 63.74-63.705v-576.295h-480zM384 352v512h32v-512h-32zM512 352v512h32v-512h-32zM640 352v512h32v-512h-32zM448.094 128c-17.725 0-32.094 14.204-32.094 32v32h224v-32c0-17.673-14.012-32-32.094-32h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trash-can" - ], - "grid": 32 - }, - { - "id": 51, - "paths": [ - "M672 192h128v32h-544v-32h128v-32c0-35.593 28.616-64 63.917-64h160.167c35.249 0 63.917 28.654 63.917 64v32zM256 256h544v607.956c0 53.066-42.982 96.044-96.004 96.044h-351.992c-53.317 0-96.004-43.001-96.004-96.044v-607.956zM384 352v512h32v-512h-32zM512 352v512h32v-512h-32zM640 352v512h32v-512h-32zM448.094 128c-17.725 0-32.094 14.204-32.094 32v32h224v-32c0-17.673-14.012-32-32.094-32h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trash-can" - ], - "grid": 32 - }, - { - "id": 52, - "paths": [ - "M736 224h128v32h-64v607.781c0 53.467-42.982 96.219-96.004 96.219h-351.992c-53.317 0-96.004-43.079-96.004-96.219v-607.781h-64v-32h192v-63.844c0-35.551 28.616-64.156 63.917-64.156h160.167c35.249 0 63.917 28.724 63.917 64.156v63.844h64zM288 256v608.174c0 35.25 28.589 63.826 63.74 63.826h352.519c35.203 0 63.74-28.875 63.74-63.826v-608.174h-480zM384 320v544h32v-544h-32zM512 320v544h32v-544h-32zM640 320v544h32v-544h-32zM448.094 128c-17.725 0-32.094 14.165-32.094 31.967v64.033h224v-64.033c0-17.655-14.012-31.967-32.094-31.967h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trash-can" - ], - "grid": 32 - }, - { - "id": 53, - "paths": [ - "M736 224h128v32h-64v607.781c0 53.467-42.982 96.219-96.004 96.219h-351.992c-53.317 0-96.004-43.079-96.004-96.219v-607.781h-64v-32h192v-63.844c0-35.551 28.616-64.156 63.917-64.156h160.167c35.249 0 63.917 28.724 63.917 64.156v63.844h64zM384 320v544h32v-544h-32zM512 320v544h32v-544h-32zM640 320v544h32v-544h-32zM448.094 128c-17.725 0-32.094 14.165-32.094 31.967v64.033h224v-64.033c0-17.655-14.012-31.967-32.094-31.967h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trash-can" - ], - "grid": 32 - }, - { - "id": 54, - "paths": [ - "M544 672v-160h-96v32h64v128h-64v32h160v-32h-64zM528 832v0 0c-167.895 0-304-136.105-304-304s136.105-304 304-304c167.895 0 304 136.105 304 304s-136.105 304-304 304zM528 800c150.221 0 272-121.779 272-272s-121.779-272-272-272c-150.221 0-272 121.779-272 272s121.779 272 272 272v0 0zM528 448c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "information" - ], - "grid": 32 - }, - { - "id": 55, - "paths": [ - "M528 832v0c-167.895 0-304-136.105-304-304s136.105-304 304-304c167.895 0 304 136.105 304 304s-136.105 304-304 304zM544 672v-160h-96v32h64v128h-64v32h160v-32h-64zM528 448c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "information" - ], - "grid": 32 - }, - { - "id": 56, - "paths": [ - "M544 704v-224h-96v32h64v192h-64v32h160v-32h-64zM528 928v0 0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0 0zM528 416c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "information" - ], - "grid": 32 - }, - { - "id": 57, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM544 704v-224h-96v32h64v192h-64v32h160v-32h-64zM528 416c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "information" - ], - "grid": 32 - }, - { - "id": 58, - "paths": [ - "M544 288h-192v608h448v-608h-256zM832 928h-544.186c-52.828 0-95.814-42.973-95.814-95.983v-624.017c0-44.491 35.711-80 79.762-80h560.238v32h-16.15c-26.183 0-47.85 21.49-47.85 48 0 26.694 21.423 48 47.85 48h16.15v672zM320 896v-608h-48.238c-17.899 0-34.439-5.932-47.762-15.945v560.228c0 35.19 28.564 63.717 63.843 63.717h32.157zM271.788 160c-26.392 0-47.788 21.306-47.788 48 0 26.51 21.352 48 47.788 48h480.212c0 0-16-25.264-16-48.846s16-47.154 16-47.154h-480.212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book" - ], - "grid": 32 - }, - { - "id": 59, - "paths": [ - "M287.814 928c-52.828 0-95.814-42.973-95.814-95.983v-624.017c0-44.491 35.711-80 79.762-80h560.238v32h-16.15c-26.183 0-47.85 21.49-47.85 48 0 26.694 21.423 48 47.85 48h16.15v672h-480v-672h400c0 0-16-25.264-16-48.846s16-47.154 16-47.154h-480.212c-26.392 0-47.788 21.306-47.788 48 0 26.51 21.352 48 47.788 48h48.212v672h-32.186z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book" - ], - "grid": 32 - }, - { - "id": 60, - "paths": [ - "M832 928v-672h-16.15c-26.427 0-47.85-21.306-47.85-48 0-26.51 21.667-48 47.85-48h16.15v-32h-560.238c-44.052 0-79.762 35.509-79.762 80v624.017c0 53.010 42.986 95.983 95.814 95.983h544.186zM800 288v608h-448v-608h128v352l96-96 96 96v-352h128zM320 896h-32.157c-35.279 0-63.843-28.527-63.843-63.717v-560.228c13.323 10.013 29.864 15.945 47.762 15.945h48.238v608zM271.788 160h480.212c0 0-16 23.572-16 47.154s16 48.846 16 48.846h-480.212c-26.436 0-47.788-21.49-47.788-48 0-26.694 21.395-48 47.788-48zM512 288h128v275.199l-64-64-64 64v-275.199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book-bookmark" - ], - "grid": 32 - }, - { - "id": 61, - "paths": [ - "M480 256h-128v672h480v-672h-16.15c-26.427 0-47.85-21.306-47.85-48 0-26.51 21.667-48 47.85-48h16.15v-32h-560.238c-44.052 0-79.762 35.509-79.762 80v624.017c0 53.010 42.986 95.983 95.814 95.983h32.186v-672h-48.212c-26.436 0-47.788-21.49-47.788-48 0-26.694 21.395-48 47.788-48h480.212c0 0-16 23.572-16 47.154s16 48.846 16 48.846h-80v384l-96-96-96 96v-384zM512 256v307.199l64-64 64 64v-307.199h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book-bookmark" - ], - "grid": 32 - }, - { - "id": 62, - "paths": [ - "M846.183 420.811l-83.19-83.19-361.347 361.398 83.378 83.378 361.159-361.586zM868.797 398.17l55.334-55.399c12.479-12.494 12.387-32.803-0.153-45.309l-37.754-37.65c-12.564-12.529-32.807-12.627-45.33-0.102l-55.274 55.282 83.178 83.178zM380.919 723.546l-20.465 99.606 100.317-19.755-79.851-79.851zM704 608v319.885c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0.084-35.479 28.745-64 64.088-64h31.912c0.029-53.18 43.131-96 96.296-96h31.408c53.089 0 96.267 42.976 96.296 96h31.912c35.443 0 64.004 28.639 64.088 64v0h32.083c35.408 0 63.918 28.705 63.918 64.115v95.885l114.563-114.563c25.366-25.366 65.641-25.232 90.565-0.309l37.744 37.744c24.846 24.846 24.785 65.471-0.309 90.565l-242.563 242.563zM672 384v-127.902c0-17.727-14.551-32.098-31.999-32.098h-32.001c-0.084 35.479-28.745 64-64.088 64h-287.823c-35.443 0-64.004-28.639-64.088-64h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h480.003c17.672 0 31.999-14.045 31.999-32.098v-287.902l-192 192-160 32 32-160 320-320zM320 160h-64.142c-17.595 0-31.858 14.165-31.858 31.967v32.067c0 17.655 14.235 31.967 31.858 31.967h288.283c17.595 0 31.858-14.165 31.858-31.967v-32.067c0-17.655-14.235-31.967-31.858-31.967h-64.142v-32.067c0-35.309-28.605-63.933-64.156-63.933h-31.688c-35.432 0-64.156 28.744-64.156 63.933v32.067zM400 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-edit" - ], - "grid": 32 - }, - { - "id": 63, - "paths": [ - "M846.183 420.811l-361.159 361.586-83.378-83.378 361.347-361.398 83.19 83.19zM868.797 398.17l-83.178-83.178 55.274-55.282c12.523-12.525 32.766-12.428 45.33 0.102l37.754 37.65c12.541 12.506 12.633 32.815 0.153 45.309l-55.334 55.399zM380.919 723.546l79.851 79.851-100.317 19.755 20.465-99.606zM704 352v-95.885c0-35.41-28.51-64.115-63.918-64.115h-32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.551-28.693 64.156-64.088 64.156h-287.823c-35.495 0-64.088-28.724-64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-319.885l242.563-242.563c25.094-25.094 25.155-65.719 0.309-90.565l-37.744-37.744c-24.924-24.924-65.199-25.057-90.565 0.309l-114.563 114.563zM320 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM400 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-edit" - ], - "grid": 32 - }, - { - "id": 64, - "paths": [ - "M672 832v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM552.229 960h-328.312c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0.084-35.479 28.745-64 64.088-64h31.912c0.029-53.18 43.131-96 96.296-96h31.408c53.089 0 96.267 42.976 96.296 96h31.912c35.443 0 64.004 28.639 64.088 64v0h32.083c35.408 0 63.918 28.705 63.918 64.115v467.076c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM736 678.625v-454.527c0-17.727-14.551-32.098-31.999-32.098h-32.001c-0.084 35.479-28.745 64-64.088 64h-287.823c-35.443 0-64.004-28.639-64.088-64h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h307.192c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v0 0zM384 128h-64.142c-17.595 0-31.858 14.165-31.858 31.967v32.067c0 17.655 14.235 31.967 31.858 31.967h288.283c17.595 0 31.858-14.165 31.858-31.967v-32.067c0-17.655-14.235-31.967-31.858-31.967h-64.142v-32.067c0-35.309-28.605-63.933-64.156-63.933h-31.688c-35.432 0-64.156 28.744-64.156 63.933v32.067zM464 128c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM688 992c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-add" - ], - "grid": 32 - }, - { - "id": 65, - "paths": [ - "M672 864h-96v-32h96v-96h32v96h96v32h-96v96h-32v-96zM768 655.941v-431.826c0-35.41-28.51-64.115-63.918-64.115h-32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.551-28.693 64.156-64.088 64.156h-287.823c-35.495 0-64.088-28.724-64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h288.781c-20.698-32.33-32.698-70.763-32.698-112 0-114.875 93.125-208 208-208 28.349 0 55.373 5.671 80 15.941v0zM384 128v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM464 128c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM688 1024c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-add" - ], - "grid": 32 - }, - { - "id": 66, - "paths": [ - "M552.229 960h-328.312c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0.084-35.479 28.745-64 64.088-64h31.912c0.029-53.18 43.131-96 96.296-96h31.408c53.089 0 96.267 42.976 96.296 96h31.912c35.443 0 64.004 28.639 64.088 64v0h32.083c35.408 0 63.918 28.705 63.918 64.115v467.076c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM736 678.625v-454.527c0-17.727-14.551-32.098-31.999-32.098h-32.001c-0.084 35.479-28.745 64-64.088 64h-287.823c-35.443 0-64.004-28.639-64.088-64h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h307.192c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v0 0zM384 128h-64.142c-17.595 0-31.858 14.165-31.858 31.967v32.067c0 17.655 14.235 31.967 31.858 31.967h288.283c17.595 0 31.858-14.165 31.858-31.967v-32.067c0-17.655-14.235-31.967-31.858-31.967h-64.142v-32.067c0-35.309-28.605-63.933-64.156-63.933h-31.688c-35.432 0-64.156 28.744-64.156 63.933v32.067zM464 128c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM688 992c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM576 832v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-remove" - ], - "grid": 32 - }, - { - "id": 67, - "paths": [ - "M768 655.941v-431.826c0-35.41-28.51-64.115-63.918-64.115h-32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.551-28.693 64.156-64.088 64.156h-287.823c-35.495 0-64.088-28.724-64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h288.781c-20.698-32.33-32.698-70.763-32.698-112 0-114.875 93.125-208 208-208 28.349 0 55.373 5.671 80 15.941v0zM384 128v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM464 128c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM688 1024v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM576 832v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-remove" - ], - "grid": 32 - }, - { - "id": 68, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard" - ], - "grid": 32 - }, - { - "id": 69, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM704 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard" - ], - "grid": 32 - }, - { - "id": 70, - "paths": [ - "M480 769.6l-104-104-24 24 144 144 144-144-24-24-104 104v-353.6h-32v353.6zM416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-download" - ], - "grid": 32 - }, - { - "id": 71, - "paths": [ - "M480 769.6l-104-104-24 24 144 144 144-144-24-24-104 104v-353.6h-32v353.6zM416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM704 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c-0 0.052-0 0.104-0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052-0-0.104-0-0.156v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-download" - ], - "grid": 32 - }, - { - "id": 72, - "paths": [ - "M480 640l-104 104-24-24 144-144 144 144-24 24-104-104v320h-32v-320zM416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-upload" - ], - "grid": 32 - }, - { - "id": 73, - "paths": [ - "M416 160v-32.1c0-35.2 28.7-63.9 64.2-63.9h31.7c35.6 0 64.2 28.6 64.2 63.9v32.1h64.1c17.6 0 31.9 14.3 31.9 32v32c0 17.8-14.3 32-31.9 32h-288.3c-17.6 0-31.9-14.3-31.9-32v-32c0-17.8 14.3-32 31.9-32h64.1zM496 160c8.8 0 16-7.2 16-16s-7.2-16-16-16-16 7.2-16 16 7.2 16 16 16v0z", - "M736.1 192h-32.1v31.8c0 35.6-28.7 64.2-64.1 64.2h-287.8c-35.5 0-64.1-28.7-64.1-64.2v-31.8h-32.1c-35.3 0-63.9 28.5-63.9 64.1v671.8c0 35.4 28.5 64.1 63.9 64.1h224.1v-352l-104 104-24-24 144-144 144 144-24 24-104-104v352h224.1c35.3 0 63.9-28.5 63.9-64.1v-671.8c0-35.4-28.5-64.1-63.9-64.1z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-upload" - ], - "grid": 32 - }, - { - "id": 74, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM456.114 757.929l248.902-248.902-22.627-22.627-226.274 226.274-119.765-119.765-22.627 22.627 142.392 142.392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-checked" - ], - "grid": 32 - }, - { - "id": 75, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM704 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM456.114 757.929l248.902-248.902-22.627-22.627-226.274 226.274-119.765-119.765-22.627 22.627 142.392 142.392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-checked" - ], - "grid": 32 - }, - { - "id": 76, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM288 416v32h416v-32h-416zM288 512v32h416v-32h-416zM288 608v32h416v-32h-416zM288 704v32h416v-32h-416zM288 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-text" - ], - "grid": 32 - }, - { - "id": 77, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM704 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c0 0.052 0 0.104 0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052 0-0.104 0-0.156v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM288 416v32h416v-32h-416zM288 512v32h416v-32h-416zM288 608v32h416v-32h-416zM288 704v32h416v-32h-416zM288 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-text" - ], - "grid": 32 - }, - { - "id": 78, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM384 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM704 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM448 448v32h256v-32h-256zM288 416h96v96h-96v-96zM320 448v32h32v-32h-32zM288 576h96v96h-96v-96zM320 608v32h32v-32h-32zM448 608v32h256v-32h-256zM288 736h96v96h-96v-96zM320 768v32h32v-32h-32zM448 768v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-list" - ], - "grid": 32 - }, - { - "id": 79, - "paths": [ - "M416 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM704 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c-0 0.052-0 0.104-0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052-0-0.104-0-0.156v0 0zM496 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM448 448v32h256v-32h-256zM288 416v96h96v-96h-96zM320 448v32h32v-32h-32zM288 576v96h96v-96h-96zM320 608v32h32v-32h-32zM448 608v32h256v-32h-256zM288 736v96h96v-96h-96zM320 768v32h32v-32h-32zM448 768v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-list" - ], - "grid": 32 - }, - { - "id": 80, - "paths": [ - "M192 352v480.040c0 17.924 14.434 31.96 32.239 31.96h447.761v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-288h-672zM192 320h672v-95.781c0-17.821-14.309-32.219-31.96-32.219h-608.080c-17.924 0-31.96 14.309-31.96 31.96v96.040zM688 896h-463.997c-35.348 0-64.003-28.852-64.003-64.028v-607.945c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.624 64.028 63.81v448.19l-192 224h-16zM704 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note" - ], - "grid": 32 - }, - { - "id": 81, - "paths": [ - "M160 352v479.972c0 35.176 28.569 64.028 63.81 64.028h448.19v-192.061c0-35.565 28.739-63.939 64.189-63.939h159.811v-288h-736zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.589 64.028 63.74v96.26h-736zM704 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note" - ], - "grid": 32 - }, - { - "id": 82, - "paths": [ - "M800 800h-96v-32h96v-96h32v96h96v32h-96v96h-32v-96zM659.191 864h-435.231c-17.651 0-31.96-14.036-31.96-31.96v-480.040h672v262.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80l-0-0zM896 627.191v-403.163c0-35.176-28.666-64.028-64.028-64.028h-607.945c-35.176 0-64.028 28.666-64.028 64.028v607.945c0 35.176 28.666 64.028 64.028 64.028h456.202c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809l-0-0zM192 320v-96.040c0-17.651 14.036-31.96 31.96-31.96h608.080c17.651 0 31.96 14.036 31.96 31.96v96.040h-672zM816 928v0 0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-add" - ], - "grid": 32 - }, - { - "id": 83, - "paths": [ - "M800 800h-96v-32h96v-96h32v96h96v32h-96v96h-32v-96zM640.698 896h-416.671c-35.361 0-64.028-28.852-64.028-64.028v-479.972h736v239.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.852 64.028 64.028v95.972h-736zM816 960c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-add" - ], - "grid": 32 - }, - { - "id": 84, - "paths": [ - "M659.191 864h-435.231c-17.651 0-31.96-14.036-31.96-31.96v-480.040h672v262.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80l-0-0zM896 627.191v-403.163c0-35.176-28.666-64.028-64.028-64.028h-607.945c-35.176 0-64.028 28.666-64.028 64.028v607.945c0 35.176 28.666 64.028 64.028 64.028h456.202c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809l-0-0zM192 320v-96.040c0-17.651 14.036-31.96 31.96-31.96h608.080c17.651 0 31.96 14.036 31.96 31.96v96.040h-672zM816 928v0 0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM704 768v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-remove" - ], - "grid": 32 - }, - { - "id": 85, - "paths": [ - "M640.698 896h-416.671c-35.361 0-64.028-28.852-64.028-64.028v-479.972h736v239.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.852 64.028 64.028v95.972h-736zM816 960v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM704 768v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-remove" - ], - "grid": 32 - }, - { - "id": 86, - "paths": [ - "M192 352v480.040c0 17.924 14.434 31.96 32.239 31.96h447.761v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-288h-672zM192 320h672v-95.781c0-17.821-14.309-32.219-31.96-32.219h-608.080c-17.924 0-31.96 14.309-31.96 31.96v96.040zM688 896h-463.997c-35.348 0-64.003-28.852-64.003-64.028v-607.945c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.624 64.028 63.81v448.19l-192 224h-16zM704 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM256 448v32h544v-32h-544zM256 544v32h544v-32h-544zM256 640v32h352v-32h-352zM256 736v32h352v-32h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-text" - ], - "grid": 32 - }, - { - "id": 87, - "paths": [ - "M160 352h736v288h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-448.19c-35.241 0-63.81-28.852-63.81-64.028v-479.972zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.589 64.028 63.74v96.26h-736zM704 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM256 448v32h544v-32h-544zM256 544v32h544v-32h-544zM256 640v32h352v-32h-352zM256 736v32h352v-32h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-text" - ], - "grid": 32 - }, - { - "id": 88, - "paths": [ - "M688 896h-463.997c-35.348 0-64.003-28.852-64.003-64.028v-607.945c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.624 64.028 63.81v448.19l-192 224h-16zM192 352v480.040c0 17.924 14.434 31.96 32.239 31.96h447.761v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-288h-672zM192 320h672v-95.781c0-17.821-14.309-32.219-31.96-32.219h-608.080c-17.924 0-31.96 14.309-31.96 31.96v96.040zM704 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM416 576v32h224v-32h-224zM256 544h96v96h-96v-96zM288 576v32h32v-32h-32zM416 448v32h384v-32h-384zM256 416h96v96h-96v-96zM288 448v32h32v-32h-32zM416 704v32h192v-32h-192zM256 672h96v96h-96v-96zM288 704v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-list" - ], - "grid": 32 - }, - { - "id": 89, - "paths": [ - "M160 352h736v288h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-448.19c-35.241 0-63.81-28.852-63.81-64.028v-479.972zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.589 64.028 63.74v96.26h-736zM704 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM416 576v32h224v-32h-224zM256 544v96h96v-96h-96zM288 576v32h32v-32h-32zM416 448v32h384v-32h-384zM256 416v96h96v-96h-96zM288 448v32h32v-32h-32zM416 704v32h192v-32h-192zM256 672v96h96v-96h-96zM288 704v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-list" - ], - "grid": 32 - }, - { - "id": 90, - "paths": [ - "M192 352v480.040c0 17.924 14.434 31.96 32.239 31.96h447.761v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-288h-672zM192 320h672v-95.781c0-17.821-14.309-32.219-31.96-32.219h-608.080c-17.924 0-31.96 14.309-31.96 31.96v96.040zM688 896h-463.997c-35.348 0-64.003-28.852-64.003-64.028v-607.945c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.624 64.028 63.81v448.19l-192 224h-16zM704 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM459.314 722.729l248.902-248.902-22.627-22.627-226.274 226.274-119.765-119.765-22.627 22.627 142.392 142.392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-checked" - ], - "grid": 32 - }, - { - "id": 91, - "paths": [ - "M160 352h736v288h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-448.19c-35.241 0-63.81-28.852-63.81-64.028v-479.972zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.589 64.028 63.74v96.26h-736zM704 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM459.314 722.729l248.902-248.902-22.627-22.627-226.274 226.274-119.765-119.765-22.627 22.627 142.392 142.392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-checked" - ], - "grid": 32 - }, - { - "id": 92, - "paths": [ - "M192 352v480.040c0 17.924 14.434 31.96 32.239 31.96h447.761v-159.811c0-35.82 28.624-64.189 63.933-64.189h128.067v-288h-672zM192 320h672v-95.781c0-17.821-14.309-32.219-31.96-32.219h-608.080c-17.924 0-31.96 14.309-31.96 31.96v96.040zM688 896h-463.997c-35.348 0-64.003-28.852-64.003-64.028v-607.945c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.624 64.028 63.81v448.19l-192 224h-16zM704 848l150.398-176h-118.503c-17.475 0-31.896 14.453-31.896 32.281v143.719zM480 416h96v256h-96v-256zM512 448v192h32v-192h-32zM480 704h96v96h-96v-96zM512 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-important" - ], - "grid": 32 - }, - { - "id": 93, - "paths": [ - "M160 352h736v288h-159.811c-35.451 0-64.189 28.375-64.189 63.939v192.061h-448.19c-35.241 0-63.81-28.852-63.81-64.028v-479.972zM160 320v-95.972c0-35.361 28.852-64.028 64.028-64.028h607.945c35.361 0 64.028 28.589 64.028 63.74v96.26h-736zM704 896v-191.906c0-17.725 14.431-32.094 31.705-32.094h160.295l-192 224zM512 448v192h32v-192h-32zM512 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note-important" - ], - "grid": 32 - }, - { - "id": 94, - "paths": [ - "M224 608h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-31.765c0-35.488 28.617-64.235 63.918-64.235h480.165c35.408 0 63.918 28.759 63.918 64.235v735.531c0 35.488-28.617 64.235-63.918 64.235h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-31.765h-32v-32h32v-96h-32v-32h32v-96zM256 608v96h32v32h-32v96h32v32h-32v32.145c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855v-736.291c0-17.593-14.551-31.855-31.999-31.855h-480.003c-17.672 0-31.999 14.568-31.999 31.855v32.145h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32zM352 256v32h352v-32h-352zM384 384v32h288v-32h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 95, - "paths": [ - "M160 576h64v32h-64v-32z", - "M160 448h64v32h-64v-32z", - "M160 704h64v32h-64v-32z", - "M160 832h64v32h-64v-32z", - "M160 320h64v32h-64v-32z", - "M160 192h64v32h-64v-32z", - "M768.1 96h-480.2c-35.3 0-63.9 28.7-63.9 64.2v31.8h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v31.8c0 35.5 28.5 64.2 63.9 64.2h480.2c35.3 0 63.9-28.7 63.9-64.2v-735.6c0-35.4-28.5-64.2-63.9-64.2zM672 416h-288v-32h288v32zM704 288h-352v-32h352v32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 96, - "paths": [ - "M224 608h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-96h-32v-32h32v-31.765c0-35.488 28.617-64.235 63.918-64.235h480.165c35.408 0 63.918 28.759 63.918 64.235v735.531c0 35.488-28.617 64.235-63.918 64.235h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-31.765h-32v-32h32v-96h-32v-32h32v-96zM256 608v96h32v32h-32v96h32v32h-32v32.145c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855v-736.291c0-17.593-14.551-31.855-31.999-31.855h-480.003c-17.672 0-31.999 14.568-31.999 31.855v32.145h32v32h-32v96h32v32h-32v96h32v32h-32v96h32v32h-32zM384 256h288v160h-288v-160zM416 288v96h224v-96h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 97, - "paths": [ - "M160 576h64v32h-64v-32z", - "M160 832h64v32h-64v-32z", - "M160 704h64v32h-64v-32z", - "M160 448h64v32h-64v-32z", - "M160 320h64v32h-64v-32z", - "M160 192h64v32h-64v-32z", - "M416 288h224v96h-224v-96z", - "M768.1 96h-480.2c-35.3 0-63.9 28.7-63.9 64.2v31.8h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v96h64v32h-64v31.8c0 35.5 28.5 64.2 63.9 64.2h480.2c35.3 0 63.9-28.7 63.9-64.2v-735.6c0-35.4-28.5-64.2-63.9-64.2zM672 416h-288v-160h288v160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 98, - "paths": [ - "M704 128h64.001c17.448 0 31.999 14.262 31.999 31.855v736.291c0 17.286-14.326 31.855-31.999 31.855h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-32.145h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-96h32v-32h-32v-32.145c0-17.286 14.326-31.855 31.999-31.855h224.001v384l96-96 96 96v-384zM224 608v96h-32v32h32v96h-32v32h32v31.765c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.747 63.918-64.235v-735.531c0-35.476-28.51-64.235-63.918-64.235h-480.165c-35.301 0-63.918 28.747-63.918 64.235v31.765h-32v32h32v96h-32v32h32v96h-32v32h32v96h-32v32h32zM544 128h128v307.199l-64-64-64 64v-307.199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 99, - "paths": [ - "M704 96h64.082c35.408 0 63.918 28.759 63.918 64.235v735.531c0 35.488-28.617 64.235-63.918 64.235h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.617-64.235 63.918-64.235h224.082v416l96-96 96 96v-416zM160 320v32h64v-32h-64zM160 448v32h64v-32h-64zM160 192v32h64v-32h-64zM160 704v32h64v-32h-64zM160 832v32h64v-32h-64zM160 576v32h64v-32h-64zM224 320v32h64v-32h-64zM224 448v32h64v-32h-64zM224 192v32h64v-32h-64zM224 704v32h64v-32h-64zM224 832v32h64v-32h-64zM224 576v32h64v-32h-64zM544 96v339.199l64-64 64 64v-339.199h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 100, - "paths": [ - "M672 128v-32h32v32h32.082c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.082v-32h32v32h96v-32h32v32h96v-32h32v32h96zM672 160h-96v32h-32v-32h-96v32h-32v-32h-96v32h-32v-32h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h480.003c17.672 0 31.999-14.045 31.999-32.098v-671.803c0-17.727-14.551-32.098-31.999-32.098h-32.001v32h-32v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 101, - "paths": [ - "M416 64h32v64h-32v-64z", - "M544 64h32v64h-32v-64z", - "M672 64h32v64h-32v-64z", - "M288 64h32v64h-32v-64z", - "M736.1 128c0 0-28.1 0-32.1 0v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64c-4 0-32.1 0-32.1 0-35.3 0-63.9 28.5-63.9 64.1v671.8c0 35.4 28.5 64.1 63.9 64.1h480.2c35.3 0 63.9-28.5 63.9-64.1v-671.8c0-35.4-28.5-64.1-63.9-64.1z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook" - ], - "grid": 32 - }, - { - "id": 102, - "paths": [ - "M672 128v-32h32v32h32.082c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.082v-32h32v32h96v-32h32v32h96v-32h32v32h96zM672 160h-96v32h-32v-32h-96v32h-32v-32h-96v32h-32v-32h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h480.003c17.672 0 31.999-14.045 31.999-32.098v-671.803c0-17.727-14.551-32.098-31.999-32.098h-32.001v32h-32v-32zM288 288v32h416v-32h-416zM288 384v32h416v-32h-416zM288 480v32h416v-32h-416zM288 576v32h416v-32h-416zM288 672v32h416v-32h-416zM288 768v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook-text" - ], - "grid": 32 - }, - { - "id": 103, - "paths": [ - "M736.1 128c0 0-28.1 0-32.1 0v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64c-4 0-32.1 0-32.1 0-35.3 0-63.9 28.5-63.9 64.1v671.8c0 35.4 28.5 64.1 63.9 64.1h480.2c35.3 0 63.9-28.5 63.9-64.1v-671.8c0-35.4-28.5-64.1-63.9-64.1zM704 800h-416v-32h416v32zM704 704h-416v-32h416v32zM704 608h-416v-32h416v32zM704 512h-416v-32h416v32zM704 416h-416v-32h416v32zM704 320h-416v-32h416v32z", - "M288 64h32v64h-32v-64z", - "M416 64h32v64h-32v-64z", - "M544 64h32v64h-32v-64z", - "M672 64h32v64h-32v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook-text" - ], - "grid": 32 - }, - { - "id": 104, - "paths": [ - "M672 128v-32h32v32h32.082c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.082v-32h32v32h96v-32h32v32h96v-32h32v32h96zM672 160h-96v32h-32v-32h-96v32h-32v-32h-96v32h-32v-32h-32.001c-17.672 0-31.999 14.045-31.999 32.098v671.803c0 17.727 14.551 32.098 31.999 32.098h480.003c17.672 0 31.999-14.045 31.999-32.098v-671.803c0-17.727-14.551-32.098-31.999-32.098h-32.001v32h-32v-32zM448 384v32h256v-32h-256zM288 352h96v96h-96v-96zM320 384v32h32v-32h-32zM288 512h96v96h-96v-96zM320 544v32h32v-32h-32zM448 544v32h256v-32h-256zM288 672h96v96h-96v-96zM320 704v32h32v-32h-32zM448 704v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook-list" - ], - "grid": 32 - }, - { - "id": 105, - "paths": [ - "M288 64h32v64h-32v-64z", - "M416 64h32v64h-32v-64z", - "M544 64h32v64h-32v-64z", - "M672 64h32v64h-32v-64z", - "M320 704h32v32h-32v-32z", - "M320 544h32v32h-32v-32z", - "M320 384h32v32h-32v-32z", - "M736.1 128c0 0-28.1 0-32.1 0v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64h-96v64h-32v-64c-4 0-32.1 0-32.1 0-35.3 0-63.9 28.5-63.9 64.1v671.8c0 35.4 28.5 64.1 63.9 64.1h480.2c35.3 0 63.9-28.5 63.9-64.1v-671.8c0-35.4-28.5-64.1-63.9-64.1zM384 768h-96v-96h96v96zM384 608h-96v-96h96v96zM384 448h-96v-96h96v96zM704 736h-256v-32h256v32zM704 576h-256v-32h256v32zM704 416h-256v-32h256v32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notebook-list" - ], - "grid": 32 - }, - { - "id": 106, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document" - ], - "grid": 32 - }, - { - "id": 107, - "paths": [ - "M608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document" - ], - "grid": 32 - }, - { - "id": 108, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM320 320v32h224v-32h-224zM320 224v32h224v-32h-224zM320 416v32h416v-32h-416zM320 512v32h416v-32h-416zM320 608v32h416v-32h-416zM320 704v32h416v-32h-416zM320 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 109, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM320 320v32h224v-32h-224zM320 224v32h224v-32h-224zM320 416v32h416v-32h-416zM320 512v32h416v-32h-416zM320 608v32h416v-32h-416zM320 704v32h416v-32h-416zM320 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 110, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM320 320v32h160v-32h-160zM320 224v32h224v-32h-224zM320 416v32h416v-32h-416zM320 512v32h320v-32h-320zM320 608v32h416v-32h-416zM320 704v32h288v-32h-288zM320 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 111, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM320 320v32h160v-32h-160zM320 224v32h224v-32h-224zM320 416v32h416v-32h-416zM320 512v32h320v-32h-320zM320 608v32h416v-32h-416zM320 704v32h288v-32h-288zM320 800v32h416v-32h-416zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 112, - "paths": [ - "M512 801.6l-104-104-24 24 144 144 144-144-24-24-104 104v-353.6h-32v353.6zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-download" - ], - "grid": 32 - }, - { - "id": 113, - "paths": [ - "M512 801.6v-353.6h32v353.6l104-104 24 24-144 144-144-144 24-24 104 104zM608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-download" - ], - "grid": 32 - }, - { - "id": 114, - "paths": [ - "M512 928h-224.001c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v544.211c0 17.55-14.326 31.789-31.999 31.789h-224.001v-320l104 104 24-24-144-144-144 144 24 24 104-104v320zM624 96h-335.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-576.295l-192-224h-16zM640 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-upload" - ], - "grid": 32 - }, - { - "id": 115, - "paths": [ - "M512 960h-224.082c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-224.082v-352l104 104 24-24-144-144-144 144 24 24 104-104v352zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-upload" - ], - "grid": 32 - }, - { - "id": 116, - "paths": [ - "M512 128h96v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v544.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h32.142v352l96-96 96 96v-352zM624 96h-335.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-576.295l-192-224h-16zM640 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM352 128h128v275.199l-64-64-64 64v-275.199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-bookmark" - ], - "grid": 32 - }, - { - "id": 117, - "paths": [ - "M512 96h96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h31.727v384l96-96 96 96v-384zM352 96v307.199l64-64 64 64v-307.199h-128zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-bookmark" - ], - "grid": 32 - }, - { - "id": 118, - "paths": [ - "M608 576v-96h-160v160h-128v192h416v-256h-128zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM352 672h96v128h-96v-128zM480 512h96v288h-96v-288zM608 608h96v192h-96v-192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-diagrams" - ], - "grid": 32 - }, - { - "id": 119, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM352 672v128h96v-128h-96zM480 512v288h96v-288h-96zM608 608v192h96v-192h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-diagrams" - ], - "grid": 32 - }, - { - "id": 120, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM416 655.827v-47.827h32v47.764c0 44.313 35.509 80.236 80 80.236 44.183 0 80-35.989 80-80.236v-47.764h32v47.827c0 56.562-41.723 103.27-96 111.038v65.135h64v32h-160v-32h64v-65.14c-54.186-7.788-96-54.532-96-111.033v0zM480 528.054v0c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v127.893c0 26.576-21.49 48.054-48 48.054-26.694 0-48-21.514-48-48.054v-127.893zM528 512c-8.837 0-16 6.875-16 15.926v128.147c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-128.147c0-8.796-7.422-15.926-16-15.926v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-recording" - ], - "grid": 32 - }, - { - "id": 121, - "paths": [ - "M608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM416 655.827v-47.827h32v47.764c0 44.313 35.509 80.236 80 80.236 44.183 0 80-35.989 80-80.236v-47.764h32v47.827c0 56.562-41.723 103.27-96 111.038v65.135h64v32h-160v-32h64v-65.14c-54.186-7.788-96-54.532-96-111.033v0zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM480 528.054v0c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v127.893c0 26.576-21.49 48.054-48 48.054-26.694 0-48-21.514-48-48.054v-127.893zM528 512c-8.837 0-16 6.875-16 15.926v128.147c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-128.147c0-8.796-7.422-15.926-16-15.926v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-recording" - ], - "grid": 32 - }, - { - "id": 122, - "paths": [ - "M512 672v64h-128v-64h128zM544 672h128v64h-128v-64zM512 832h-128v-64h128v64zM544 832v-64h128v64h-128zM512 576v64h-128v-64h128zM544 576h128v64h-128v-64zM512 480v64h-128v-64h128zM544 480h128v64h-128v-64zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM352 416v448h352v-448h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-table" - ], - "grid": 32 - }, - { - "id": 123, - "paths": [ - "M512 672h-128v64h128v-64zM544 672h128v64h-128v-64zM512 832h-128v-64h128v64zM544 832h128v-64h-128v64zM512 576h-128v64h128v-64zM544 576h128v64h-128v-64zM512 480h-128v64h128v-64zM544 480h128v64h-128v-64zM608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM352 416v448h352v-448h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-table" - ], - "grid": 32 - }, - { - "id": 124, - "paths": [ - "M704 487.111v200.883c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80v-304l-288 64v207.994c-13.371-10.043-29.99-15.994-48-15.994-44.183 0-80 35.817-80 80s35.817 80 80 80c44.183 0 80-35.817 80-80v-247.111l224-49.778zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM400 832v0c-26.51 0-48-21.49-48-48s21.49-48 48-48c26.51 0 48 21.49 48 48s-21.49 48-48 48zM656 800v0c-26.51 0-48-21.49-48-48s21.49-48 48-48c26.51 0 48 21.49 48 48s-21.49 48-48 48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-music" - ], - "grid": 32 - }, - { - "id": 125, - "paths": [ - "M704 487.111l-224 49.778v247.111c0 44.183-35.817 80-80 80s-80-35.817-80-80c0-44.183 35.817-80 80-80 18.010 0 34.629 5.951 48 15.994v-207.994l288-64v304c0 44.183-35.817 80-80 80s-80-35.817-80-80c0-44.183 35.817-80 80-80 18.010 0 34.629 5.951 48 15.994v-200.883zM608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM400 832c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM656 800c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-music" - ], - "grid": 32 - }, - { - "id": 126, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM320 512h416v352h-416v-352zM416 544v128h224v-128h-224zM416 704v128h224v-128h-224zM352 544v32h32v-32h-32zM352 608v32h32v-32h-32zM352 672v32h32v-32h-32zM352 736v32h32v-32h-32zM352 800v32h32v-32h-32zM672 544v32h32v-32h-32zM672 608v32h32v-32h-32zM672 672v32h32v-32h-32zM672 736v32h32v-32h-32zM672 800v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-movie" - ], - "grid": 32 - }, - { - "id": 127, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM320 512v352h416v-352h-416zM416 544v128h224v-128h-224zM416 704v128h224v-128h-224zM352 544v32h32v-32h-32zM352 608v32h32v-32h-32zM352 672v32h32v-32h-32zM352 736v32h32v-32h-32zM352 800v32h32v-32h-32zM672 544v32h32v-32h-32zM672 608v32h32v-32h-32zM672 672v32h32v-32h-32zM672 736v32h32v-32h-32zM672 800v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-movie" - ], - "grid": 32 - }, - { - "id": 128, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM384 544l288 144-288 144v-288zM416 595.2v185.6l185.602-92.8-185.602-92.8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-play" - ], - "grid": 32 - }, - { - "id": 129, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM384 544v288l288-144-288-144zM416 595.2v185.6l185.602-92.8-185.602-92.8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-play" - ], - "grid": 32 - }, - { - "id": 130, - "paths": [ - "M478.699 697.647l-94.699 101.552v0.8h320v32h-352v-256h32v176.279l93.12-99.859 70.21 65.472 102.476-109.892h-41.805v-32h96v96h-32v-40.88l-123.091 131.999-70.21-65.472zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-graph" - ], - "grid": 32 - }, - { - "id": 131, - "paths": [ - "M608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM478.699 697.647l-94.699 101.552v0.8h320v32h-352v-256h32v176.279l93.12-99.859 70.21 65.472 102.476-109.892h-41.805v-32h96v96h-32v-40.88l-123.091 131.999-70.21-65.472z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-graph" - ], - "grid": 32 - }, - { - "id": 132, - "paths": [ - "M671.121 672h-127.121v-127.121 0c66.746 7.378 119.743 60.375 127.121 127.121zM671.121 704c-7.959 71.999-69 128-143.121 128-79.529 0-144-64.471-144-144 0-74.121 56.001-135.162 128-143.121v159.121h159.121zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM528 864c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-time" - ], - "grid": 32 - }, - { - "id": 133, - "paths": [ - "M703.283 672h-159.283v-159.283 0c84.434 7.609 151.674 74.848 159.283 159.283zM703.283 704c-8.084 89.704-83.474 160-175.283 160-97.202 0-176-78.798-176-176 0-91.809 70.296-167.199 160-175.283v191.283h191.283zM608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-time" - ], - "grid": 32 - }, - { - "id": 134, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM320 192v64h32v-32h32v128h32v-128h32v32h32v-64h-160zM320 512v32h416v-32h-416zM320 416v32h416v-32h-416zM320 608v32h416v-32h-416zM320 704v32h416v-32h-416zM320 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 135, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM320 192v64h32v-32h32v128h32v-128h32v32h32v-64h-160zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM320 512v32h416v-32h-416zM320 416v32h416v-32h-416zM320 608v32h416v-32h-416zM320 704v32h416v-32h-416zM320 800v32h416v-32h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-text" - ], - "grid": 32 - }, - { - "id": 136, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM544 576l-64 256h32l64-256h-32zM416 800l-96-96 96-96 22.4 22.4-73.6 73.6 73.6 73.6-22.4 22.4zM640 800l96-96-96-96-22.4 22.4 73.6 73.6-73.6 73.6 22.4 22.4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-code" - ], - "grid": 32 - }, - { - "id": 137, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM416 832l22.4-22.4-105.6-105.6 105.6-105.6-22.4-22.4-128 128 128 128zM640 832l128-128-128-128-22.4 22.4 105.6 105.6-105.6 105.6 22.4 22.4zM544 576l-64 256h32l64-256h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-code" - ], - "grid": 32 - }, - { - "id": 138, - "paths": [ - "M513.134 672h-0.947c-35.45 0-64.187 28.407-64.187 64 0 35.346 28.706 64 64.187 64h319.625c35.45 0 64.187-28.407 64.187-64 0-35.346-28.706-64-64.187-64h-1.413c-7.412-36.516-39.696-64-78.4-64-8.724 0-17.122 1.397-24.983 3.978-17.103-39.971-56.789-67.978-103.017-67.978-61.856 0-112 50.144-112 112 0 5.432 0.387 10.774 1.134 16v0zM736 565.483v0 0c2.809 3.471 5.46 7.076 7.942 10.803 2.661-0.189 5.349-0.285 8.058-0.285 45.721 0 85.043 27.396 102.446 66.668 42.404 10.151 73.554 48.086 73.554 93.332 0 52.911-43.116 96-96.303 96h-95.697v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v245.483zM704 536.249v-184.249h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211h-191.697c-53.531 0-96.303-42.981-96.303-96 0-41.781 26.885-77.438 64.383-90.59 5.421-74.584 67.649-133.41 143.617-133.41 29.602 0 57.118 8.932 80 24.249v0 0zM544 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-cloud" - ], - "grid": 32 - }, - { - "id": 139, - "paths": [ - "M743.942 576.285c2.661-0.189 5.349-0.285 8.058-0.285 45.721 0 85.043 27.396 102.446 66.668v0c42.404 10.151 73.554 48.086 73.554 93.332 0 52.911-43.116 96-96.303 96h-319.393c-53.531 0-96.303-42.981-96.303-96 0-41.781 26.885-77.438 64.383-90.59 5.421-74.584 67.649-133.41 143.617-133.41 50.050 0 94.136 25.534 119.942 64.285v0zM736 864v32.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v168.229c-30.43-25.131-69.452-40.229-112-40.229-86.075 0-157.718 61.79-172.993 143.433-39.908 21.695-67.007 64.031-67.007 112.567 0 70.692 57.243 128 127.878 128h224.122zM544 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-cloud" - ], - "grid": 32 - }, - { - "id": 140, - "paths": [ - "M223.918 160.055l0.083-0.055c-0 0-0 0-0.001 0s0-0 0.001-0c0.126-35.38 28.694-64 63.917-64 0.209-35.38 28.854-64 64.171-64h351.912l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705-0.209 35.38-28.777 64-64 64-0.209 35.38-28.777 64-64 64h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.617-64.235 63.918-64.235l0 0.055zM223.999 192c-17.672 0-31.999 14.568-31.999 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855l-448.082-0.145c-35.408 0-63.918-28.759-63.918-64.235v-703.765c-0-0-0-0-0.001-0.001l-0 0.001zM287.999 128c-17.672 0-31.999 14.568-31.999 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855v-0.145h-448.082c-35.408 0-63.918-28.759-63.918-64.235v-703.765h-0.001zM672 64h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM704 80v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "documents" - ], - "grid": 32 - }, - { - "id": 141, - "paths": [ - "M287.918 96c0.209-35.38 28.937-64 64.355-64h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918-0.209 35.38-28.777 64-64 64-0.209 35.38-28.777 64-64 64h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.617-64.235 63.918-64.235 0.082-35.253 28.699-64 64-64v0zM224 895.765l-0.001-703.765c-17.672 0-31.999 14.568-31.999 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855l-448.082-0.145c-35.408 0-63.918-28.759-63.918-64.235zM256 159.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.568 31.999-31.855l-448.082-0.145c-35.408 0-63.918-28.759-63.918-64.235v-703.765c-17.674 0-32 14.568-32 31.855v0zM704 32v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "documents" - ], - "grid": 32 - }, - { - "id": 142, - "paths": [ - "M736 400v432h128.001c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v96.145h192l192 224v16zM320 160v-95.765c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-128.082v96.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h127.912zM736 48v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM512 192h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM544 208v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "documents" - ], - "grid": 32 - }, - { - "id": 143, - "paths": [ - "M736 864h128.082c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-319.727c-35.497 0-64.273 28.747-64.273 64.235v63.765h240l208 243.2v492.8h-32v-448h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-96.082zM736 0v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM544 160v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "documents" - ], - "grid": 32 - }, - { - "id": 144, - "paths": [ - "M553.883 704.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883l171.136 171.136-22.627 22.627-171.136-171.136zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM464 704c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-search" - ], - "grid": 32 - }, - { - "id": 145, - "paths": [ - "M553.883 704.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883l171.136 171.136-22.627 22.627-171.136-171.136zM608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM464 704c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-search" - ], - "grid": 32 - }, - { - "id": 146, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM528 736l-128 96 48-160-128-96h160l48-160 48 160h160l-128 96 48 160-128-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-star" - ], - "grid": 32 - }, - { - "id": 147, - "paths": [ - "M608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM528 736l-128 96 48-160-128-96h160l48-160 48 160h160l-128 96 48 160-128-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-star" - ], - "grid": 32 - }, - { - "id": 148, - "paths": [ - "M768 586.814v-298.814l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h352.082v31.906c0 17.725 14.282 32.094 31.921 32.094h224.157c17.63 0 31.921-14.182 31.921-31.956v-160.116c0-17.633-14.302-31.928-32.078-31.928h-191.922v-80.076c0-43.838 35.817-79.924 80-79.924 44.491 0 80 35.783 80 79.924v16.076h32v-15.899c0-44.697-26.201-83.284-64-101.287v0 0zM576 896h-352.001c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v257.139c-5.227-0.751-10.569-1.139-16-1.139-61.856 0-112 50.201-112 112.101v79.899c-17.673 0-32 14.012-32 32.094v95.906zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM624.11 800h191.781c8.657 0 16.11 7.13 16.11 15.926v128.147c0 9.051-7.212 15.926-16.11 15.926h-191.781c-8.657 0-16.11-7.13-16.11-15.926v-128.147c0-9.051 7.212-15.926 16.11-15.926z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-unlocked" - ], - "grid": 32 - }, - { - "id": 149, - "paths": [ - "M768 320h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h320.082v-128.061c0-23.848 12.872-44.463 32-55.458v-56.735c0-79.203 64.471-143.746 144-143.746 16.82 0 32.978 2.89 48 8.202v-232.202zM576 255.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224v191.906zM816.039 768h16.039c17.639 0 31.921 14.369 31.921 32.094v159.813c0 18.082-14.292 32.094-31.921 32.094h-224.157c-17.639 0-31.921-14.369-31.921-32.094v-159.813c0-18.082 14.292-32.094 32-32.094v-80.080c0-61.92 50.144-111.92 112-111.92 61.73 0 112 50.109 112 111.92v16.080h-32v-15.702c0-44.347-35.509-80.298-80-80.298-44.183 0-80 35.596-80 80.298v79.702h176.039z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-unlocked" - ], - "grid": 32 - }, - { - "id": 150, - "paths": [ - "M576 928v31.906c0 17.725 14.282 32.094 31.921 32.094h224.157c17.63 0 31.921-14.012 31.921-32.094v-159.813c0-17.725-14.282-32.094-31.921-32.094h-0.079v-47.827c0-44.726-26.201-83.338-64-101.352v-330.821l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h352.082zM576 896h-352.001c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v289.14c-5.227-0.751-10.569-1.14-16-1.14-61.856 0-112 50.166-112 112.173v47.827h-0.079c-17.63 0-31.921 14.012-31.921 32.094v95.906zM640 768v-47.702c0-44.702 35.817-80.298 80-80.298 44.491 0 80 35.95 80 80.298v47.702h-160zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM624.11 800h191.781c8.657 0 16.11 7.13 16.11 15.926v128.147c0 9.051-7.212 15.926-16.11 15.926h-191.781c-8.657 0-16.11-7.13-16.11-15.926v-128.147c0-9.051 7.212-15.926 16.11-15.926z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-locked" - ], - "grid": 32 - }, - { - "id": 151, - "paths": [ - "M768 320h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h320.082v-143.946c0-20.914 13.351-38.671 32-45.287v-18.68c0-79.329 64.471-144.086 144-144.086 16.82 0 32.978 2.897 48 8.221v-264.221zM576 255.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224v191.906zM608 720.173l-0.079 47.827c-17.63 0-31.921 14.012-31.921 32.094v159.813c0 17.725 14.282 32.094 31.921 32.094h224.157c17.63 0 31.921-14.012 31.921-32.094v-159.813c0-17.725-14.282-32.094-32-32.094v-47.827c0-61.951-50.27-112.173-112-112.173-61.856 0-112 50.166-112 112.173zM640 720.298c0-44.702 35.817-80.298 80-80.298 44.491 0 80 35.95 80 80.298v47.702h-160v-47.702z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-locked" - ], - "grid": 32 - }, - { - "id": 152, - "paths": [ - "M768 829.538v-541.538l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h261.901l-37.818 64h416l-96-162.462zM504.727 896h-280.729c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v455.385l-80-135.385-151.273 256zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM656 704l152 256h-304l152-256zM640 768v96h32v-96h-32zM640 896v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-error" - ], - "grid": 32 - }, - { - "id": 153, - "paths": [ - "M448.222 928h-224.305c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v445.741l-112-189.741-207.778 352zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM656 640l208 352h-416l208-352zM640 768v96h32v-96h-32zM640 896v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-error" - ], - "grid": 32 - }, - { - "id": 154, - "paths": [ - "M688 838.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM688 960v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-cancel" - ], - "grid": 32 - }, - { - "id": 155, - "paths": [ - "M688 838.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM688 992c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-cancel" - ], - "grid": 32 - }, - { - "id": 156, - "paths": [ - "M552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM688 960v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM672 903.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-checked" - ], - "grid": 32 - }, - { - "id": 157, - "paths": [ - "M512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM688 992c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0zM672 903.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-checked" - ], - "grid": 32 - }, - { - "id": 158, - "paths": [ - "M672 800v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM688 960v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-add" - ], - "grid": 32 - }, - { - "id": 159, - "paths": [ - "M672 800v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM688 992c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-add" - ], - "grid": 32 - }, - { - "id": 160, - "paths": [ - "M552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM688 960v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM576 800v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-remove" - ], - "grid": 32 - }, - { - "id": 161, - "paths": [ - "M512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM688 992v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM576 800v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-remove" - ], - "grid": 32 - }, - { - "id": 162, - "paths": [ - "M800.51 726.117c19.706 24.635 31.49 55.883 31.49 89.883 0 79.529-64.471 144-144 144-34 0-65.248-11.784-89.883-31.49l202.393-202.393zM777.883 703.49l-202.393 202.393c-19.706-24.635-31.49-55.883-31.49-89.883 0-79.529 64.471-144 144-144 34 0 65.248 11.784 89.883 31.49zM552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-forbidden" - ], - "grid": 32 - }, - { - "id": 163, - "paths": [ - "M824.588 704.996c24.641 30.283 39.412 68.918 39.412 111.004 0 97.202-78.798 176-176 176-42.085 0-80.72-14.771-111.004-39.412l247.591-247.591zM802.228 682.101c-30.742-26.251-70.634-42.101-114.228-42.101-97.202 0-176 78.798-176 176 0 43.594 15.85 83.486 42.101 114.228l248.128-248.128zM512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-forbidden" - ], - "grid": 32 - }, - { - "id": 164, - "paths": [ - "M552.229 928v0 0c32.281 39.088 81.117 64 135.771 64 97.202 0 176-78.798 176-176 0-68.395-39.013-127.678-96-156.809v-371.191l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h328.312zM531.191 896h-307.192c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v326.625c-15.259-4.316-31.36-6.625-48-6.625-97.202 0-176 78.798-176 176 0 28.807 6.921 55.998 19.191 80v0 0zM576 112l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM688 960v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM640 800v32h32v32h-32v32h96v-32h-32v-64h-64zM672 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-information" - ], - "grid": 32 - }, - { - "id": 165, - "paths": [ - "M512.698 928h-288.781c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v303.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM576 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM688 992v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM640 800v32h32v32h-32v32h96v-32h-32v-64h-64zM672 736v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-information" - ], - "grid": 32 - }, - { - "id": 166, - "paths": [ - "M691.191 800l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 832h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 384h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM848 864c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM832 640v32h32v-32h-32zM800 704v32h32v32h-32v32h96v-32h-32v-64h-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-information" - ], - "grid": 32 - }, - { - "id": 167, - "paths": [ - "M672.698 832h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v208.098c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 384v32h928v-32h-928zM848 896v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM800 704v32h32v32h-32v32h96v-32h-32v-64h-64zM832 640v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-information" - ], - "grid": 32 - }, - { - "id": 168, - "paths": [ - "M624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM480 448v32h256v-32h-256zM320 416h96v96h-96v-96zM352 448v32h32v-32h-32zM320 576h96v96h-96v-96zM352 608v32h32v-32h-32zM480 608v32h256v-32h-256zM320 736h96v96h-96v-96zM352 768v32h32v-32h-32zM480 768v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-list" - ], - "grid": 32 - }, - { - "id": 169, - "paths": [ - "M608 96v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM480 448v32h256v-32h-256zM320 416v96h96v-96h-96zM352 448v32h32v-32h-32zM320 576v96h96v-96h-96zM352 608v32h32v-32h-32zM480 608v32h256v-32h-256zM320 736v96h96v-96h-96zM352 768v32h32v-32h-32zM480 768v32h256v-32h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-list" - ], - "grid": 32 - }, - { - "id": 170, - "paths": [ - "M704 816.006c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c18.010 0 34.629 5.951 48 15.994v-15.994h32v160h-32v-15.994zM477.714 736h-91.429l-34.286 96h-32l96-256h32l96 256h-32l-34.286-96zM466.286 704l-34.286-96-34.286 96h68.571zM624 96h16l192 224v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h335.912zM608 128h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM656 800c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-font" - ], - "grid": 32 - }, - { - "id": 171, - "paths": [ - "M704 816.006c-13.371 10.043-29.99 15.994-48 15.994-44.183 0-80-35.817-80-80s35.817-80 80-80c18.010 0 34.629 5.951 48 15.994v-15.994h32v160h-32v-15.994zM477.714 736h-91.429l-34.286 96h-32l96-256h32l96 256h-32l-34.286-96zM466.286 704l-34.286-96-34.286 96h68.571zM608 96h-319.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM656 800c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-font" - ], - "grid": 32 - }, - { - "id": 172, - "paths": [ - "M672 512h216.801l-140-224h-441.602l-140 224h216.801v64.067c0 35.309 28.667 63.933 63.917 63.933h160.167c35.3 0 63.917-28.744 63.917-63.933v-64.067zM704 544v48c0 44.491-35.761 80-79.874 80h-192.252c-44.185 0-79.874-35.817-79.874-80v-48h-192v224h736v-224h-192zM128 528v-16l160-256h480l160 256v288h-800v-272z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox" - ], - "grid": 32 - }, - { - "id": 173, - "paths": [ - "M384 512v63.811c0 35.451 28.667 64.189 63.917 64.189h160.167c35.3 0 63.917-28.37 63.917-64.189v-63.811h216.801l-140-224h-441.602l-140 224h216.801zM128 512l160-256h480l160 256v288h-800v-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox" - ], - "grid": 32 - }, - { - "id": 174, - "paths": [ - "M640 384h216.801l-140-224h-441.602l-140 224h216.801v64.067c0 35.309 28.667 63.933 63.917 63.933h160.167c35.3 0 63.917-28.744 63.917-63.933v-64.067zM672 416v48c0 44.491-35.761 80-79.874 80h-192.252c-44.185 0-79.874-35.817-79.874-80v-48h-192v224h736v-224h-192zM896 656v272h-800v-544l160-256h480l160 256v272zM352 672v32.067c0 35.309 28.667 63.933 63.917 63.933h160.167c35.3 0 63.917-28.744 63.917-63.933v-32.067h-288zM672 672v48c0 44.491-35.761 80-79.874 80h-192.252c-44.185 0-79.874-35.817-79.874-80v-48h-192v224h736v-224h-192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inboxes" - ], - "grid": 32 - }, - { - "id": 175, - "paths": [ - "M896 640v-256l-160-256h-480l-160 256v256h800zM352 672h-256v256h800v-256h-256v48.001c0 44.437-28.616 79.999-63.917 79.999h-160.167c-35.249 0-63.917-35.817-63.917-79.999v-48.001zM352 384h-216.801l140-224h441.602l140 224h-216.801v63.811c0 35.82-28.616 64.189-63.917 64.189h-160.167c-35.249 0-63.917-28.739-63.917-64.189v-63.811z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inboxes" - ], - "grid": 32 - }, - { - "id": 176, - "paths": [ - "M640 608h128v-224h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.045-31.858 32.098v415.902h128v64.067c0 35.309 28.667 63.933 63.917 63.933h160.167c35.3 0 63.917-28.744 63.917-63.933v-64.067zM672 640v48c0 44.491-35.761 80-79.874 80h-192.252c-44.185 0-79.874-35.817-79.874-80v-48h-192v224h736v-224h-192zM96 624v-16l96-153.6v-262.242c0-35.453 28.693-64.158 64.088-64.158h351.912l192 224v102.4l96 153.6v288h-800v-272zM192 608v-90.881l-56.801 90.881h56.801zM800 608h56.801l-56.801-90.881v90.881zM608 176v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-document" - ], - "grid": 32 - }, - { - "id": 177, - "paths": [ - "M640 608v64.067c0 35.189-28.616 63.933-63.917 63.933h-160.167c-35.249 0-63.917-28.624-63.917-63.933v-64.067h-128v-415.902c0-18.053 14.264-32.098 31.858-32.098h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v224h-128zM896 656v-48l-96-153.6v-102.4l-192-224h-351.912c-35.395 0-64.088 28.705-64.088 64.158v262.242l-96 153.6v288h800v-240zM192 608h-56.801l56.801-90.881v90.881zM856.801 608h-56.801v-90.881l56.801 90.881zM608 176l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-document" - ], - "grid": 32 - }, - { - "id": 178, - "paths": [ - "M672 640h192v224h-736v-224h192v48c0 44.183 35.689 80 79.874 80h192.252c44.113 0 79.874-35.509 79.874-80v-48zM96 624v272h800v-288l-96-153.6v-102.4l-192-224h-351.912c-35.395 0-64.088 28.705-64.088 64.158v262.242l-96 153.6v16zM192 608h-56.801l56.801-90.881v90.881zM800 608v-90.881l56.801 90.881h-56.801zM224 608v-415.902c0-18.053 14.264-32.098 31.858-32.098h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v224h-544zM608 176l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM352 640h288v48c0 26.694-21.582 48-48.205 48h-191.591c-26.558 0-48.205-21.49-48.205-48v-48zM288 480v32h416v-32h-416zM288 224v32h224v-32h-224zM288 352v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-document-text" - ], - "grid": 32 - }, - { - "id": 179, - "paths": [ - "M896 656v-48l-96-153.6v-102.4l-192-224h-351.912c-35.395 0-64.088 28.705-64.088 64.158v262.242l-96 153.6v288h800v-240zM192 608h-56.801l56.801-90.881v90.881zM856.801 608h-56.801v-90.881l56.801 90.881zM224 608v-415.902c0-18.053 14.264-32.098 31.858-32.098h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v224h-544zM608 176l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM288 480v32h416v-32h-416zM288 224v32h224v-32h-224zM288 352v32h224v-32h-224zM352 672v-32h288v32c0 35.593-28.616 64-63.917 64h-160.167c-35.249 0-63.917-28.654-63.917-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-document-text" - ], - "grid": 32 - }, - { - "id": 180, - "paths": [ - "M480 512l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM544 352h172.801l140 224h-216.801v64.067c0 35.189-28.616 63.933-63.917 63.933h-160.167c-35.249 0-63.917-28.624-63.917-63.933v-64.067h-216.801l140-224h172.801v-32h-192l-160 256v288h800v-288l-160-256h-192v32zM672 608h192v224h-736v-224h192v48c0 44.183 35.689 80 79.874 80h192.252c44.113 0 79.874-35.509 79.874-80v-48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-download" - ], - "grid": 32 - }, - { - "id": 181, - "paths": [ - "M480 512l-104-104-24 24 144 144 144-144-24-24-104 104v-352h-32v352zM640 576h216.801l-140-224h-172.801v-32h192l160 256v288h-800v-288l160-256h192v32h-172.801l-140 224h216.801v64c0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-download" - ], - "grid": 32 - }, - { - "id": 182, - "paths": [ - "M480 160l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM544 352h172.801l140 224h-216.801v64.067c0 35.189-28.616 63.933-63.917 63.933h-160.167c-35.249 0-63.917-28.624-63.917-63.933v-64.067h-216.801l140-224h172.801v-32h-192l-160 256v288h800v-288l-160-256h-192v32zM672 608h192v224h-736v-224h192v48c0 44.183 35.689 80 79.874 80h192.252c44.113 0 79.874-35.509 79.874-80v-48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-upload" - ], - "grid": 32 - }, - { - "id": 183, - "paths": [ - "M480 160l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM640 576h216.801l-140-224h-172.801v-32h192l160 256v288h-800v-288l160-256h192v32h-172.801l-140 224h216.801v64c0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-upload" - ], - "grid": 32 - }, - { - "id": 184, - "paths": [ - "M512 288h383.813c35.482 0 64.187 28.583 64.187 63.843v448.314c0 35.279-28.558 63.843-63.785 63.843h-800.43c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128zM491.52 320l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v576.525c0 17.528 14.275 31.738 31.775 31.738h800.45c17.549 0 31.775-14.228 31.775-32.028v-447.944c0-17.689-14.522-32.028-32.095-32.028h-404.385z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder" - ], - "grid": 32 - }, - { - "id": 185, - "paths": [ - "M512 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder" - ], - "grid": 32 - }, - { - "id": 186, - "paths": [ - "M64 416v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM64 448h864v351.972c0 17.8-14.226 32.028-31.775 32.028h-800.45c-17.499 0-31.775-14.209-31.775-31.738v-352.262zM512 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder" - ], - "grid": 32 - }, - { - "id": 187, - "paths": [ - "M32 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM32 448v352.283c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-352.157h-928z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder" - ], - "grid": 32 - }, - { - "id": 188, - "paths": [ - "M32 480v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM32 512h864v351.972c0 17.8-14.226 32.028-31.775 32.028h-800.45c-17.499 0-31.775-14.209-31.775-31.738v-352.262zM96 192v-32.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v448.314c0 35.279-28.558 63.843-63.785 63.843h-0.215v-32h0.225c17.549 0 31.775-14.228 31.775-32.028v-447.944c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v32.262h-32zM480 352l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folders" - ], - "grid": 32 - }, - { - "id": 189, - "paths": [ - "M0 480v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM0 512v352.283c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-352.157h-928zM96 192v-32.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v448.314c0 35.279-28.558 63.843-63.785 63.843h-0.215v-383.996c0-53.022-42.956-96.004-96.107-96.004h-351.893l-64-128h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folders" - ], - "grid": 32 - }, - { - "id": 190, - "paths": [ - "M512 448h416v351.972c0 17.8-14.226 32.028-31.775 32.028h-800.45c-17.499 0-31.775-14.209-31.775-31.738v-352.262h416v289.6l-104-104-24 24 144 144 144-144-24-24-104 104v-289.6zM64 416v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM512 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-download" - ], - "grid": 32 - }, - { - "id": 191, - "paths": [ - "M512 448h448v352.157c0 35.279-28.558 63.843-63.785 63.843h-800.43c-34.994 0-63.785-28.527-63.785-63.717v-352.283h448v289.6l-104-104-24 24 144 144 144-144-24-24-104 104v-289.6zM32 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-download" - ], - "grid": 32 - }, - { - "id": 192, - "paths": [ - "M480 832h-384.225c-17.499 0-31.775-14.209-31.775-31.738v-352.262h864v351.972c0 17.8-14.226 32.028-31.775 32.028h-384.225v-288l104 104 24-24-144-144-144 144 24 24 104-104v288zM64 416v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM512 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-upload" - ], - "grid": 32 - }, - { - "id": 193, - "paths": [ - "M480 864h-384.215c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v352.157c0 35.279-28.558 63.843-63.785 63.843h-384.215v-288l104 104 24-24-144-144-144 144 24 24 104-104v288zM32 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-upload" - ], - "grid": 32 - }, - { - "id": 194, - "paths": [ - "M736 800h-672.225c-17.499 0-31.775-14.209-31.775-31.738v-352.262h864v65.137c-5.227-0.75-10.569-1.137-16-1.137-61.856 0-112 50-112 111.92v80.080c-17.673 0-32 14.012-32 32.094v95.906zM928 490.796v-170.954c0-35.259-28.706-63.843-64.187-63.843h-383.813l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h672.215v31.906c0 17.725 14.282 32.094 31.921 32.094h224.157c17.63 0 31.921-14.012 31.921-32.094v-159.813c0-17.725-14.165-32.094-31.967-32.094h-192.033v-79.702c0-44.702 35.817-80.298 80-80.298 44.491 0 80 35.95 80 80.298v15.702h32v-16.080c0-44.625-26.201-83.15-64-101.124v0 0zM32 384v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM784.11 704h191.781c8.657 0 16.11 7.13 16.11 15.926v128.147c0 9.051-7.212 15.926-16.11 15.926h-191.781c-8.657 0-16.11-7.13-16.11-15.926v-128.147c0-9.051 7.212-15.926 16.11-15.926z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-unlocked" - ], - "grid": 32 - }, - { - "id": 195, - "paths": [ - "M0 384v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.611 64.187 63.904v64.096h-928zM0 416v352.283c0 35.19 28.47 63.717 63.717 63.717h640.283v-128.083c0-23.626 12.871-44.296 32-55.358v-56.371c0-79.625 64.471-144.188 144-144.188 16.82 0 32.978 2.899 48 8.227v-40.227h-928zM960 672h32.079c17.639 0 31.921 14.369 31.921 32.094v159.813c0 18.082-14.292 32.094-31.921 32.094h-224.157c-17.639 0-31.921-14.369-31.921-32.094v-159.813c0-18.082 14.292-32.094 32-32.094v-80.080c0-61.92 50.144-111.92 112-111.92 61.73 0 112 50.109 112 111.92v16.080h-32v-15.702c0-44.347-35.509-80.298-80-80.298-44.183 0-80 35.596-80 80.298v79.702h160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-unlocked" - ], - "grid": 32 - }, - { - "id": 196, - "paths": [ - "M736 800v-95.906c0-18.082 14.292-32.094 31.921-32.094h0.079v-47.827c0-62.007 50.144-112.173 112-112.173 5.431 0 10.773 0.389 16 1.14v-97.14h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h672.225zM736 832h-672.215c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v202.978c37.799 18.014 64 56.626 64 101.352v47.827h0.079c17.639 0 31.921 14.369 31.921 32.094v159.813c0 18.082-14.292 32.094-31.921 32.094h-224.157c-17.639 0-31.921-14.369-31.921-32.094v-31.906zM800 672h160v-47.702c0-44.347-35.509-80.298-80-80.298-44.183 0-80 35.596-80 80.298v47.702zM32 384h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM784.11 704c-8.897 0-16.11 6.875-16.11 15.926v128.147c0 8.796 7.453 15.926 16.11 15.926h191.781c8.897 0 16.11-6.875 16.11-15.926v-128.147c0-8.796-7.453-15.926-16.11-15.926h-191.781z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-locked" - ], - "grid": 32 - }, - { - "id": 197, - "paths": [ - "M0 384v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.611 64.187 63.904v64.096h-928zM0 416v352.283c0 35.19 28.47 63.717 63.717 63.717h640.283v-128.083c0-23.626 12.871-44.296 32-55.358v-56.371c0-79.625 64.471-144.188 144-144.188 16.82 0 32.978 2.899 48 8.227v-40.227h-928zM768 592.173l-0.079 79.827c-17.63 0-31.921 14.012-31.921 32.094v159.813c0 17.725 14.282 32.094 31.921 32.094h224.157c17.63 0 31.921-14.012 31.921-32.094v-159.813c0-17.725-14.282-32.094-32-32.094v-79.827c0-61.951-50.27-112.173-112-112.173-61.856 0-112 50.166-112 112.173zM800 592.298c0-44.702 35.817-80.298 80-80.298 44.491 0 80 35.95 80 80.298v79.702h-160v-79.702z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-locked" - ], - "grid": 32 - }, - { - "id": 198, - "paths": [ - "M521.883 640.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883l171.136 171.136-22.627 22.627-171.136-171.136zM512 288h383.813c35.482 0 64.187 28.583 64.187 63.843v448.314c0 35.279-28.558 63.843-63.785 63.843h-800.43c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128zM491.52 320l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v576.525c0 17.528 14.275 31.738 31.775 31.738h800.45c17.549 0 31.775-14.228 31.775-32.028v-447.944c0-17.689-14.522-32.028-32.095-32.028h-404.385zM432 640c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-search" - ], - "grid": 32 - }, - { - "id": 199, - "paths": [ - "M521.883 640.51c-24.635 19.706-55.883 31.49-89.883 31.49-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144 0 34-11.784 65.248-31.49 89.883l171.136 171.136-22.627 22.627-171.136-171.136zM512 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813zM432 640c61.856 0 112-50.144 112-112s-50.144-112-112-112c-61.856 0-112 50.144-112 112s50.144 112 112 112v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-search" - ], - "grid": 32 - }, - { - "id": 200, - "paths": [ - "M664.727 832l151.273-256 80 135.385v-263.385h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h600.952zM645.818 864h-582.033c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v413.696l96 162.462h-416l37.818-64zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM816 640l-152 256h304l-152-256zM800 704v96h32v-96h-32zM800 832v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-error" - ], - "grid": 32 - }, - { - "id": 201, - "paths": [ - "M608.222 864h-544.437c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v253.741l-112-189.741-207.778 352zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM816 576l208 352h-416l208-352zM800 704v96h32v-96h-32zM800 832v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-error" - ], - "grid": 32 - }, - { - "id": 202, - "paths": [ - "M848 774.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM691.191 832l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 864h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM848 896c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-cancel" - ], - "grid": 32 - }, - { - "id": 203, - "paths": [ - "M672.698 864h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v111.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM848 928c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176zM848 774.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-cancel" - ], - "grid": 32 - }, - { - "id": 204, - "paths": [ - "M691.191 832l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 864h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM848 896c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM832 839.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-checked" - ], - "grid": 32 - }, - { - "id": 205, - "paths": [ - "M672.698 864h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v111.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM848 928c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0zM832 839.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-checked" - ], - "grid": 32 - }, - { - "id": 206, - "paths": [ - "M832 736v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM691.191 832l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 864h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM848 896c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-add" - ], - "grid": 32 - }, - { - "id": 207, - "paths": [ - "M832 768h-96v-32h96v-96h32v96h96v32h-96v96h-32v-96zM672.698 864h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v111.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM848 928c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-add" - ], - "grid": 32 - }, - { - "id": 208, - "paths": [ - "M691.191 832l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 864h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262zM848 896c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM736 736v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-remove" - ], - "grid": 32 - }, - { - "id": 209, - "paths": [ - "M672.698 864h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v111.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM848 928v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM736 736v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-remove" - ], - "grid": 32 - }, - { - "id": 210, - "paths": [ - "M960.51 662.117l-202.393 202.393c24.635 19.706 55.883 31.49 89.883 31.49 79.529 0 144-64.471 144-144 0-34-11.784-65.248-31.49-89.883zM937.883 639.49c-24.635-19.706-55.883-31.49-89.883-31.49-79.529 0-144 64.471-144 144 0 34 11.784 65.248 31.49 89.883l202.393-202.393zM691.191 832l0 0c-12.27-24.002-19.191-51.193-19.191-80 0-97.202 78.798-176 176-176 16.64 0 32.741 2.309 48 6.625v-134.625h-864v352.262c0 17.528 14.275 31.738 31.775 31.738h627.416zM712.229 864h-648.444c-34.994 0-63.785-28.527-63.785-63.717v-576.566c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v243.348c56.987 29.131 96 88.414 96 156.809 0 97.202-78.798 176-176 176-54.654 0-103.489-24.912-135.771-64v0 0zM32 416h864v-63.972c0-17.689-14.522-32.028-32.095-32.028h-404.385l-62.719-128h-333.065c-17.527 0-31.736 14.57-31.736 31.738v192.262z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-forbidden" - ], - "grid": 32 - }, - { - "id": 211, - "paths": [ - "M984.588 640.996c24.641 30.283 39.412 68.918 39.412 111.004 0 97.202-78.798 176-176 176-42.085 0-80.72-14.771-111.004-39.412l247.591-247.591zM962.228 618.101c-30.742-26.251-70.634-42.101-114.228-42.101-97.202 0-176 78.798-176 176 0 43.594 15.85 83.486 42.101 114.228l248.128-248.128zM672.698 864h-608.913c-34.994 0-63.785-28.527-63.785-63.717v-352.283h928v111.941c-24.627-10.27-51.651-15.941-80-15.941-114.875 0-208 93.125-208 208 0 41.237 12 79.67 32.698 112v0 0zM0 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-forbidden" - ], - "grid": 32 - }, - { - "id": 212, - "paths": [ - "M768 448h192v351.972c0 17.8-14.226 32.028-31.775 32.028h-800.45c-17.499 0-31.775-14.209-31.775-31.738v-352.262h480v288l96-96 96 96v-288zM96 416v-192.262c0-17.168 14.208-31.738 31.736-31.738h333.065l62.719 128h404.385c17.573 0 32.095 14.339 32.095 32.028v63.972h-864zM544 288l-64-128h-351.912c-35.395 0-64.088 28.47-64.088 63.717v576.566c0 35.19 28.791 63.717 63.785 63.717h800.43c35.228 0 63.785-28.564 63.785-63.843v-448.314c0-35.259-28.706-63.843-64.187-63.843h-383.813zM608 448h128v211.199l-64-64-64 64v-211.199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-bookmark" - ], - "grid": 32 - }, - { - "id": 213, - "paths": [ - "M768 448h224v352.157c0 35.279-28.558 63.843-63.785 63.843h-800.43c-34.994 0-63.785-28.527-63.785-63.717v-352.283h512v288l96-96 96 96v-288zM64 416v-192.283c0-35.247 28.693-63.717 64.088-63.717h351.912l64 128h383.813c35.482 0 64.187 28.583 64.187 63.843v64.157h-928zM608 448v211.199l64-64 64 64v-211.199h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder-bookmark" - ], - "grid": 32 - }, - { - "id": 214, - "paths": [ - "M416 577.588v-33.588h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h-96.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-544.211h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-160v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v65.583c36.709 7.378 64 39.683 64 78.417 0 44.491-35.817 80-80 80-44.491 0-80-35.817-80-80 0-38.973 27.484-71.054 64-78.412v0 0zM832 320v576.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM432 608c-26.51 0-48 21.306-48 48 0 26.51 21.306 48 48 48 26.51 0 48-21.306 48-48 0-26.51-21.306-48-48-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-zip" - ], - "grid": 32 - }, - { - "id": 215, - "paths": [ - "M416 577.588v-33.588h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-127.727c-35.497 0-64.273 28.747-64.273 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.51 63.918-63.918v-544.082h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-128v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v65.583c36.709 7.378 64 39.683 64 78.417 0 44.491-35.817 80-80 80-44.491 0-80-35.817-80-80 0-38.973 27.484-71.054 64-78.412v0 0zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM432 608c-26.51 0-48 21.306-48 48 0 26.51 21.306 48 48 48 26.51 0 48-21.306 48-48 0-26.51-21.306-48-48-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-zip" - ], - "grid": 32 - }, - { - "id": 216, - "paths": [ - "M512 560.794v16.794c-36.516 7.358-64 39.439-64 78.412 0 44.183 35.509 80 80 80 44.183 0 80-35.509 80-80 0-38.734-27.291-71.039-64-78.417v-65.583h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h159.996c53.317 0 96.004 42.848 96.004 95.704v608.592c0 52.693-42.982 95.704-96.004 95.704h-351.992c-53.317 0-96.004-42.848-96.004-95.704v-608.592c0-52.693 42.982-95.704 96.004-95.704h127.996v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v16.794zM352.198 96c-70.802 0-128.198 57.359-128.198 127.951v608.098c0 70.665 57.199 127.951 128.198 127.951h351.604c70.802 0 128.198-57.359 128.198-127.951v-608.098c0-70.665-57.199-127.951-128.198-127.951h-351.604zM528 608v0c26.694 0 48 21.49 48 48 0 26.694-21.49 48-48 48-26.694 0-48-21.49-48-48 0-26.694 21.49-48 48-48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "zip" - ], - "grid": 32 - }, - { - "id": 217, - "paths": [ - "M512 577.588v-33.588h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-32v-32h32v-32h-159.802c-70.802 0-128.198 57.359-128.198 127.951v608.098c0 70.665 57.199 127.951 128.198 127.951h351.604c70.802 0 128.198-57.359 128.198-127.951v-608.098c0-70.665-57.199-127.951-128.198-127.951h-127.802v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v32h32v32h-32v65.583c36.709 7.378 64 39.683 64 78.417 0 44.491-35.817 80-80 80-44.491 0-80-35.817-80-80 0-38.973 27.484-71.054 64-78.412v0 0zM528 608c-26.51 0-48 21.306-48 48 0 26.51 21.306 48 48 48 26.51 0 48-21.306 48-48 0-26.51-21.306-48-48-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "zip" - ], - "grid": 32 - }, - { - "id": 218, - "paths": [ - "M621.668 653.668c-44.476 31.692-98.895 50.332-157.668 50.332-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 75.111-30.445 143.111-79.667 192.333l191.916 191.916c8.802 8.802 8.588 22.915-0.249 31.751-8.898 8.898-23.052 8.948-31.751 0.249l-194.581-194.581zM464 672c132.548 0 240-107.452 240-240s-107.452-240-240-240c-132.548 0-240 107.452-240 240s107.452 240 240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search" - ], - "grid": 32 - }, - { - "id": 219, - "paths": [ - "M621.668 653.668c-44.476 31.692-98.895 50.332-157.668 50.332-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 58.773-18.641 113.192-50.332 157.668l178.714 178.714c17.606 17.606 17.46 45.778-0.006 63.244l-0.75 0.75c-17.421 17.421-45.781 17.469-63.244 0.006l-178.714-178.714zM464 640c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search" - ], - "grid": 32 - }, - { - "id": 220, - "paths": [ - "M448 416v-128h32v128h128v32h-128v128h-32v-128h-128v-32h128zM644.651 635.349c-48.040 42.708-111.316 68.651-180.651 68.651-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 69.335-25.943 132.612-68.651 180.651l4.651-4.651 208.249 208.249c8.802 8.802 8.588 22.915-0.249 31.751-8.898 8.898-23.052 8.948-31.751 0.249l-208.249-208.249 4.651-4.651zM464 672c132.548 0 240-107.452 240-240s-107.452-240-240-240c-132.548 0-240 107.452-240 240s107.452 240 240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search-plus" - ], - "grid": 32 - }, - { - "id": 221, - "paths": [ - "M448 416v-128h32v128h128v32h-128v128h-32v-128h-128v-32h128zM621.668 653.668c-44.476 31.692-98.895 50.332-157.668 50.332-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 58.773-18.641 113.192-50.332 157.668l178.714 178.714c17.606 17.606 17.46 45.778-0.006 63.244l-0.75 0.75c-17.421 17.421-45.781 17.469-63.244 0.006l-178.714-178.714zM464 640c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search-plus" - ], - "grid": 32 - }, - { - "id": 222, - "paths": [ - "M644.651 635.349c-48.040 42.708-111.316 68.651-180.651 68.651-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 69.335-25.943 132.612-68.651 180.651l4.651-4.651 208.249 208.249c8.802 8.802 8.588 22.915-0.249 31.751-8.898 8.898-23.052 8.948-31.751 0.249l-208.249-208.249 4.651-4.651zM464 672c132.548 0 240-107.452 240-240s-107.452-240-240-240c-132.548 0-240 107.452-240 240s107.452 240 240 240v0zM320 416v32h288v-32h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search-minus" - ], - "grid": 32 - }, - { - "id": 223, - "paths": [ - "M621.668 653.668c-44.476 31.692-98.895 50.332-157.668 50.332-150.221 0-272-121.779-272-272s121.779-272 272-272c150.221 0 272 121.779 272 272 0 58.773-18.641 113.192-50.332 157.668l178.714 178.714c17.606 17.606 17.46 45.778-0.006 63.244l-0.75 0.75c-17.421 17.421-45.781 17.469-63.244 0.006l-178.714-178.714zM464 640c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0zM320 416v32h288v-32h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search-minus" - ], - "grid": 32 - }, - { - "id": 224, - "paths": [ - "M480 701.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM448 720.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM256 448v-112.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v112.025c53.093 0.152 96 43.21 96 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v0 0zM288 448h32v-111.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v111.71h32v-112.21c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v112.21zM352 448h288v-111.973c0-79.544-64.633-144.027-144-144.027-79.529 0-144 64.296-144 144.027v111.973zM255.918 480c-35.301 0-63.918 28.706-63.918 64.187v319.625c0 35.45 28.51 64.187 63.918 64.187h480.165c35.301 0 63.918-28.706 63.918-64.187v-319.625c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock" - ], - "grid": 32 - }, - { - "id": 225, - "paths": [ - "M480 701.269v0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM256 448v0 0c-53.045 0.15-96 42.866-96 96.303v319.393c0 53.187 43.059 96.303 96.281 96.303h479.438c53.175 0 96.281-42.772 96.281-96.303v-319.393c0-53.093-42.907-96.151-96-96.303v-112.025c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v112.025zM352 448v-111.973c0-79.731 64.471-144.027 144-144.027 79.367 0 144 64.483 144 144.027v111.973h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock" - ], - "grid": 32 - }, - { - "id": 226, - "paths": [ - "M640 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM608 784.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM512 512h383.719c53.222 0 96.281 43.116 96.281 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v-240.003c0-79.528-64.633-143.997-144-143.997-79.529 0-144 64.54-144 143.997v127.997c0 26.427-21.49 48.005-48 48.005-26.694 0-48-21.493-48-48.005v-128.019c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v240.024zM480 272.023c0-114.888-93.359-208.023-208-208.023-114.875 0-208 93.439-208 208.023v128.019c0 8.813 7.422 15.958 16 15.958v0c8.837 0 16-6.952 16-15.976v-128.165c0-96.997 78.798-175.859 176-175.859 97.004 0 176 78.735 176 175.859v240.141h32v-239.977zM415.918 544c-35.301 0-63.918 28.706-63.918 64.187v319.625c0 35.45 28.51 64.187 63.918 64.187h480.165c35.301 0 63.918-28.706 63.918-64.187v-319.625c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-open" - ], - "grid": 32 - }, - { - "id": 227, - "paths": [ - "M640 765.269v83.019c0 8.678 7.422 15.712 16 15.712 8.837 0 16-7.292 16-15.712v-83.019c18.643-6.589 32-24.369 32-45.269 0-26.51-21.49-48-48-48s-48 21.49-48 48c0 20.9 13.357 38.679 32 45.269v0 0zM416 271.997c0-79.528-64.633-143.997-144-143.997-79.529 0-144 64.54-144 143.997v127.976c0 26.313-21.49 48.027-48 48.027-26.694 0-48-21.502-48-48.027v-127.998c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v240.024h383.719c53.222 0 96.281 43.116 96.281 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v-240.003z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-open" - ], - "grid": 32 - }, - { - "id": 228, - "paths": [ - "M768 304v95.995c0 26.427-21.49 48.005-48 48.005-26.694 0-48-21.493-48-48.005v-128.012c0-79.52-64.633-143.983-144-143.983-79.529 0-144 64.327-144 143.983v224.034c0 5.402 0.298 10.735 0.879 15.983h383.121c53.093 0.152 96 43.21 96 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v-240.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v32.024zM736 271.79c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v224.421c0 5.312 0.2 10.578 0.593 15.79h31.407v-239.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v127.781c0 8.797 7.422 15.929 16 15.929v0c8.837 0 16-6.882 16-15.695v-128.515zM512 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM480 784.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM287.918 544c-35.301 0-63.918 28.706-63.918 64.187v319.625c0 35.45 28.51 64.187 63.918 64.187h480.165c35.301 0 63.918-28.706 63.918-64.187v-319.625c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-open" - ], - "grid": 32 - }, - { - "id": 229, - "paths": [ - "M512 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM768 304v-32.024c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v240.025c-53.045 0.15-96 42.866-96 96.303v319.393c0 53.187 43.059 96.303 96.281 96.303h479.438c53.175 0 96.281-42.772 96.281-96.303v-319.393c0-53.093-42.907-96.151-96-96.303h-383.121c-0.581-5.248-0.879-10.581-0.879-15.983v-224.034c0-79.656 64.471-143.983 144-143.983 79.367 0 144 64.463 144 143.983v115.984c0 33.155 21.306 60.033 48 60.033 26.51 0 48-27.142 48-60.033v-83.967z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-open" - ], - "grid": 32 - }, - { - "id": 230, - "paths": [ - "M224 736h608v-191.813c0-35.45-28.51-64.187-63.918-64.187h-480.165c-35.301 0-63.918 28.706-63.918 64.187v191.813zM224 768v64h24l48-64h-72zM224 864c0.1 35.364 28.572 64 63.917 64h480.165c35.238 0 63.817-28.605 63.917-64h-607.999zM832 832v-64h-24l-48 64h72zM288 448v-112.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v112.025c53.093 0.152 96 43.21 96 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v0 0zM280 832h64l48-64h-64l-48 64zM376 832h64l48-64h-64l-48 64zM472 832h64l48-64h-64l-48 64zM568 832h64l48-64h-64l-48 64zM664 832h64l48-64h-64l-48 64zM320 448h32v-111.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v111.71h32v-112.21c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v112.21zM384 448h288v-111.973c0-79.544-64.633-144.027-144-144.027-79.529 0-144 64.296-144 144.027v111.973z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-stripes" - ], - "grid": 32 - }, - { - "id": 231, - "paths": [ - "M864 832v-64h-56l-48 64h104zM864 864c-0.162 53.389-43.207 96-96.281 96h-479.438c-53.121 0-96.117-42.953-96.281-96h671.999zM192 832v-64h104l-48 64h-56zM280 832l48-64h64l-48 64h-64zM376 832l48-64h64l-48 64h-64zM472 832l48-64h64l-48 64h-64zM568 832l48-64h64l-48 64h-64zM664 832l48-64h64l-48 64h-64zM864 736v-191.697c0-53.093-42.907-96.151-96-96.303v-112.025c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v112.025c-53.045 0.15-96 42.866-96 96.303v191.697h672zM384 448v-111.973c0-79.731 64.471-144.027 144-144.027 79.367 0 144 64.483 144 144.027v111.973h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-stripes" - ], - "grid": 32 - }, - { - "id": 232, - "paths": [ - "M512 701.269v0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM480 720.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM288 448v-112.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v112.025c53.093 0.152 96 43.21 96 96.303v159.697c0 141.097-114.602 256-255.971 256h-160.057c-141.214 0-255.971-114.615-255.971-256v-159.697c0-53.437 42.955-96.152 96-96.303v0 0zM320 448h32v-111.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v111.71h32v-112.21c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v112.21zM384 448h288v-111.973c0-79.544-64.633-144.027-144-144.027-79.529 0-144 64.296-144 144.027v111.973zM287.918 480c-35.301 0-63.918 28.706-63.918 64.187v159.813c0 123.712 100.399 224 223.807 224h160.387c123.605 0 223.807-100.54 223.807-224v-159.813c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded" - ], - "grid": 32 - }, - { - "id": 233, - "paths": [ - "M512 701.269v0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM288 448v0 0c-53.045 0.15-96 42.866-96 96.303v159.697c0 141.385 114.757 256 255.971 256h160.057c141.369 0 255.971-114.903 255.971-256v-159.697c0-53.093-42.907-96.151-96-96.303v-112.025c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v112.025zM384 448v-111.973c0-79.731 64.471-144.027 144-144.027 79.367 0 144 64.483 144 144.027v111.973h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded" - ], - "grid": 32 - }, - { - "id": 234, - "paths": [ - "M672 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM640 784.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM544 512h383.719c53.222 0 96.281 43.116 96.281 96.303v159.697c0 141.097-114.602 256-255.971 256h-160.057c-141.214 0-255.971-114.615-255.971-256v-159.697c0-53.437 42.955-96.152 96-96.303v-240.003c0-79.528-64.633-143.997-144-143.997-79.529 0-144 64.54-144 143.997v127.997c0 26.427-21.49 48.005-48 48.005-26.694 0-48-21.493-48-48.005v-128.019c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v240.024zM512 272.023c0-114.888-93.359-208.023-208-208.023-114.875 0-208 93.439-208 208.023v128.019c0 8.813 7.422 15.958 16 15.958v0c8.837 0 16-6.952 16-15.976v-128.165c0-96.997 78.798-175.859 176-175.859 97.004 0 176 78.735 176 175.859v240.141h32v-239.977zM447.918 544c-35.301 0-63.918 28.706-63.918 64.187v159.813c0 123.712 100.399 224 223.807 224h160.387c123.605 0 223.807-100.54 223.807-224v-159.813c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded-open" - ], - "grid": 32 - }, - { - "id": 235, - "paths": [ - "M672 765.269v83.019c0 8.678 7.422 15.712 16 15.712 8.837 0 16-7.292 16-15.712v-83.019c18.643-6.589 32-24.369 32-45.269 0-26.51-21.49-48-48-48s-48 21.49-48 48c0 20.9 13.357 38.679 32 45.269v0 0zM448 271.997c0-79.528-64.633-143.997-144-143.997-79.529 0-144 64.54-144 143.997v127.976c0 26.313-21.49 48.027-48 48.027-26.694 0-48-21.502-48-48.027v-127.998c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v240.024h383.719c53.222 0 96.281 43.116 96.281 96.303v159.697c0 141.097-114.602 256-255.971 256h-160.057c-141.214 0-255.971-114.615-255.971-256v-159.697c0-53.437 42.955-96.152 96-96.303v-240.003z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded-open" - ], - "grid": 32 - }, - { - "id": 236, - "paths": [ - "M768 304v95.995c0 26.427-21.49 48.005-48 48.005-26.694 0-48-21.493-48-48.005v-128.012c0-79.52-64.633-143.983-144-143.983-79.529 0-144 64.327-144 143.983v224.034c0 5.402 0.298 10.735 0.879 15.983h383.121c53.093 0.152 96 43.21 96 96.303v159.697c0 141.097-114.602 256-255.971 256h-160.057c-141.214 0-255.971-114.615-255.971-256v-159.697c0-53.437 42.955-96.152 96-96.303v-240.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v32.024zM736 271.79c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v224.421c0 5.312 0.2 10.578 0.593 15.79h31.407v-239.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v127.781c0 8.797 7.422 15.929 16 15.929v0c8.837 0 16-6.882 16-15.695v-128.515zM512 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM480 784.006v63.941c0 26.539 21.306 48.054 48 48.054 26.51 0 48-21.478 48-48.054v-63.941c19.431-14.595 32-37.833 32-64.006 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 26.173 12.569 49.411 32 64.006v0 0zM287.918 544c-35.301 0-63.918 28.706-63.918 64.187v159.813c0 123.712 100.399 224 223.807 224h160.387c123.605 0 223.807-100.54 223.807-224v-159.813c0-35.45-28.51-64.187-63.918-64.187h-480.165z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded-open" - ], - "grid": 32 - }, - { - "id": 237, - "paths": [ - "M512 765.269v0 0c-18.643-6.589-32-24.369-32-45.269 0-26.51 21.49-48 48-48s48 21.49 48 48c0 20.9-13.357 38.679-32 45.269v83.019c0 8.42-7.163 15.712-16 15.712-8.578 0-16-7.035-16-15.712v-83.019zM768 304v-32.024c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v240.025c-53.045 0.15-96 42.866-96 96.303v159.697c0 141.385 114.757 256 255.971 256h160.057c141.369 0 255.971-114.903 255.971-256v-159.697c0-53.093-42.907-96.151-96-96.303h-383.121c-0.581-5.248-0.879-10.581-0.879-15.983v-224.034c0-79.656 64.471-143.983 144-143.983 79.367 0 144 64.463 144 143.983v115.984c0 33.155 21.306 60.033 48 60.033 26.51 0 48-27.142 48-60.033v-83.967z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock-rounded-open" - ], - "grid": 32 - }, - { - "id": 238, - "paths": [ - "M832 832v-64h-288v-32h288v-64h-288v-32h288v-64h-288v-32h288c-0.1-35.364-28.572-64-63.917-64h-480.165c-35.301 0-63.918 28.706-63.918 64.187v319.625c0 35.45 28.51 64.187 63.918 64.187h480.165c35.238 0 63.817-28.605 63.917-64h-288v-32h288zM288 448v-112.025c0-132.561 107.452-239.976 240-239.976 132.279 0 240 107.441 240 239.976v112.025c53.093 0.152 96 43.21 96 96.303v319.393c0 53.531-43.107 96.303-96.281 96.303h-479.438c-53.222 0-96.281-43.116-96.281-96.303v-319.393c0-53.437 42.955-96.152 96-96.303v0 0zM320 448h32v-111.71c0-97.525 78.798-176.29 176-176.29 97.004 0 176 78.928 176 176.29v111.71h32v-112.21c0-114.759-93.359-207.79-208-207.79-114.875 0-208 93.061-208 207.79v112.21zM384 448h288v-111.973c0-79.544-64.633-144.027-144-144.027-79.529 0-144 64.296-144 144.027v111.973z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "combination-lock" - ], - "grid": 32 - }, - { - "id": 239, - "paths": [ - "M864 864h-320v-32h320v-64h-320v-32h320v-64h-320v-32h320v-64h-320v-32h320c-0.163-52.954-43.008-95.848-96-96v-112.025c0-132.535-107.721-239.976-240-239.976-132.548 0-240 107.415-240 239.976v112.025 0c-53.045 0.15-96 42.866-96 96.303v319.393c0 53.187 43.059 96.303 96.281 96.303h479.438c53.074 0 96.118-42.611 96.281-96zM384 448v-111.973c0-79.731 64.471-144.027 144-144.027 79.367 0 144 64.483 144 144.027v111.973h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "combination-lock" - ], - "grid": 32 - }, - { - "id": 240, - "paths": [ - "M800 864v32.012c0 35.59-28.617 63.988-63.918 63.988h-480.165c-35.408 0-63.918-28.648-63.918-63.988v-32.012h-64.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h64.183v-224.012c0-35.59 28.617-63.988 63.918-63.988h480.165c35.408 0 63.918 28.648 63.918 63.988v224.012h64.183c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-64.183zM192 832v-192h608v192h63.765c35.476 0 64.235-28.593 64.235-64.088v-287.823c0-35.395-28.747-64.088-64.235-64.088h-735.531c-35.476 0-64.235 28.593-64.235 64.088v287.823c0 35.395 28.747 64.088 64.235 64.088h63.765zM255.999 128c-17.672 0-31.999 14.497-31.999 31.905v224.095h544v-224.095c0-17.621-14.551-31.905-31.999-31.905h-480.003zM224 672v224.095c0 17.621 14.551 31.905 31.999 31.905h480.003c17.672 0 31.999-14.497 31.999-31.905v-224.095h-544zM768 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer" - ], - "grid": 32 - }, - { - "id": 241, - "paths": [ - "M192 352v-192.083c0-35.249 28.617-63.917 63.918-63.917h480.165c35.408 0 63.918 28.616 63.918 63.917v192.083h-608zM160 864h-32.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h736.366c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-32.183v-256h-672v256zM192 640v256.012c0 35.339 28.51 63.988 63.918 63.988h480.165c35.301 0 63.918-28.398 63.918-63.988v-256.012h-608zM768 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer" - ], - "grid": 32 - }, - { - "id": 242, - "paths": [ - "M800 800h64.183c52.918 0 95.817-43.019 95.817-95.982v-288.037c0-53.009-42.898-95.982-95.817-95.982h-64.183v-224.012c0-35.339-28.51-63.988-63.918-63.988h-480.165c-35.301 0-63.918 28.398-63.918 63.988v224.012h-64.183c-52.918 0-95.817 43.019-95.817 95.982v288.037c0 53.009 42.898 95.982 95.817 95.982h64.183v128.012c0 35.339 28.51 63.988 63.918 63.988h480.165c35.301 0 63.918-28.398 63.918-63.988v-128.012zM192 768h-63.765c-35.488 0-64.235-28.693-64.235-64.088v-287.823c0-35.495 28.759-64.088 64.235-64.088h735.531c35.488 0 64.235 28.693 64.235 64.088v287.823c0 35.495-28.759 64.088-64.235 64.088h-63.765v-96h-608v96zM255.999 64h480.003c17.448 0 31.999 14.284 31.999 31.905v224.095h-544v-224.095c0-17.408 14.326-31.905 31.999-31.905zM224 704h544v224.095c0 17.408-14.326 31.905-31.999 31.905h-480.003c-17.448 0-31.999-14.284-31.999-31.905v-224.095zM768 512c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer" - ], - "grid": 32 - }, - { - "id": 243, - "paths": [ - "M192 288v-192.083c0-35.249 28.617-63.917 63.918-63.917h480.165c35.408 0 63.918 28.616 63.918 63.917v192.083h-608zM160 800h-32.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h736.366c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-32.183v-160h-672v160zM192 672v256.012c0 35.339 28.51 63.988 63.918 63.988h480.165c35.301 0 63.918-28.398 63.918-63.988v-256.012h-608zM768 512c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer" - ], - "grid": 32 - }, - { - "id": 244, - "paths": [ - "M832 864v32.012c0 35.59-28.617 63.988-63.918 63.988h-480.165c-35.408 0-63.918-28.648-63.918-63.988v-32.012h-64.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h64.183v-224.012c0-35.59 28.617-63.988 63.918-63.988h480.165c35.408 0 63.918 28.648 63.918 63.988v224.012h64.183c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-64.183zM224 832v-192h608v192h63.765c35.476 0 64.235-28.593 64.235-64.088v-287.823c0-35.395-28.747-64.088-64.235-64.088h-735.531c-35.476 0-64.235 28.593-64.235 64.088v287.823c0 35.395 28.747 64.088 64.235 64.088h63.765zM287.999 128c-17.672 0-31.999 14.497-31.999 31.905v224.095h544v-224.095c0-17.621-14.551-31.905-31.999-31.905h-480.003zM256 672v224.095c0 17.621 14.551 31.905 31.999 31.905h480.003c17.672 0 31.999-14.497 31.999-31.905v-224.095h-544zM800 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM288 736v32h480v-32h-480zM288 832v32h480v-32h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer-text" - ], - "grid": 32 - }, - { - "id": 245, - "paths": [ - "M224 352v-192.083c0-35.249 28.617-63.917 63.918-63.917h480.165c35.408 0 63.918 28.616 63.918 63.917v192.083h-608zM192 864h-32.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h736.366c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-32.183v-256h-672v256zM224 640h608v256.012c0 35.59-28.617 63.988-63.918 63.988h-480.165c-35.408 0-63.918-28.648-63.918-63.988v-256.012zM800 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM288 736v32h480v-32h-480zM288 832v32h480v-32h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer-text" - ], - "grid": 32 - }, - { - "id": 246, - "paths": [ - "M800 800h64.183c52.918 0 95.817-43.019 95.817-95.982v-288.037c0-53.009-42.898-95.982-95.817-95.982h-64.183v-224.012c0-35.339-28.51-63.988-63.918-63.988h-480.165c-35.301 0-63.918 28.398-63.918 63.988v224.012h-64.183c-52.918 0-95.817 43.019-95.817 95.982v288.037c0 53.009 42.898 95.982 95.817 95.982h64.183v128.012c0 35.339 28.51 63.988 63.918 63.988h480.165c35.301 0 63.918-28.398 63.918-63.988v-128.012zM192 768h-63.765c-35.488 0-64.235-28.693-64.235-64.088v-287.823c0-35.495 28.759-64.088 64.235-64.088h735.531c35.488 0 64.235 28.693 64.235 64.088v287.823c0 35.495-28.759 64.088-64.235 64.088h-63.765v-96h-608v96zM255.999 64h480.003c17.448 0 31.999 14.284 31.999 31.905v224.095h-544v-224.095c0-17.408 14.326-31.905 31.999-31.905zM224 704h544v224.095c0 17.408-14.326 31.905-31.999 31.905h-480.003c-17.448 0-31.999-14.284-31.999-31.905v-224.095zM768 512c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM256 768v32h480v-32h-480zM256 864v32h480v-32h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer-text" - ], - "grid": 32 - }, - { - "id": 247, - "paths": [ - "M192 288v-192.083c0-35.249 28.617-63.917 63.918-63.917h480.165c35.408 0 63.918 28.616 63.918 63.917v192.083h-608zM160 800h-32.183c-52.919 0-95.817-42.972-95.817-95.982v-288.037c0-52.962 42.899-95.982 95.817-95.982h736.366c52.919 0 95.817 42.972 95.817 95.982v288.037c0 52.962-42.899 95.982-95.817 95.982h-32.183v-160h-672v160zM192 672h608v256.012c0 35.59-28.617 63.988-63.918 63.988h-480.165c-35.408 0-63.918-28.648-63.918-63.988v-256.012zM768 512c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM256 768v32h480v-32h-480zM256 864v32h480v-32h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "printer-text" - ], - "grid": 32 - }, - { - "id": 248, - "paths": [ - "M864 640h-672v64h-32v-160h32v64h672v-64h32v160h-32v-64zM832 576h-32v-224h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v416.145h-32v-415.765c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v256zM640 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM800 672v288h32v-288h-32zM736 672v256h32v-256h-32zM672 672v224h32v-224h-32zM608 672v288h32v-288h-32zM544 672v256h32v-256h-32zM480 672v288h32v-288h-32zM416 672v224h32v-224h-32zM352 672v288h32v-288h-32zM288 672v256h32v-256h-32zM224 672v288h32v-288h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-shred" - ], - "grid": 32 - }, - { - "id": 249, - "paths": [ - "M864 640h-672v64h-32v-160h32v64h672v-64h32v160h-32v-64zM224 576v-415.765c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v224h-608zM640 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM800 672v288h32v-288h-32zM736 672v256h32v-256h-32zM672 672v224h32v-224h-32zM608 672v288h32v-288h-32zM544 672v256h32v-256h-32zM480 672v288h32v-288h-32zM416 672v224h32v-224h-32zM352 672v288h32v-288h-32zM288 672v256h32v-256h-32zM224 672v288h32v-288h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-shred" - ], - "grid": 32 - }, - { - "id": 250, - "paths": [ - "M832 736h32.183c52.918 0 95.817-43.162 95.817-96.186v-159.629c0-53.122-42.898-96.186-95.817-96.186h-64.183v-224.012c0-35.339-28.51-63.988-63.918-63.988h-480.165c-35.301 0-63.918 28.398-63.918 63.988v224.012h-64.183c-52.918 0-95.817 43.162-95.817 96.186v159.629c0 53.122 42.898 96.186 95.817 96.186h32.183v-96h672v96zM128 704c-35.38-0.126-64-28.694-64-63.916v-160.167c0-35.249 28.759-63.917 64.235-63.917h735.531c35.488 0 64.235 28.616 64.235 63.917v160.167c0 35.171-28.632 63.79-64 63.916v-96h-736v96zM255.999 128h480.003c17.448 0 31.999 14.284 31.999 31.905v224.095h-544v-224.095c0-17.408 14.326-31.905 31.999-31.905zM768 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM192 672v256h32v-256h-32zM256 672v224h32v-224h-32zM320 672v256h32v-256h-32zM384 672v192h32v-192h-32zM448 672v224h32v-224h-32zM512 672v192h32v-192h-32zM576 672v256h32v-256h-32zM704 672v224h32v-224h-32zM768 672v256h32v-256h-32zM640 672v192h32v-192h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shredder" - ], - "grid": 32 - }, - { - "id": 251, - "paths": [ - "M192 352v-192.083c0-35.249 28.617-63.917 63.918-63.917h480.165c35.408 0 63.918 28.616 63.918 63.917v192.083h-608zM160 736h-32.183c-52.919 0-95.817-43.064-95.817-96.186v-159.629c0-53.023 42.899-96.186 95.817-96.186h736.366c52.919 0 95.817 43.064 95.817 96.186v159.629c0 53.023-42.899 96.186-95.817 96.186h-32.183v-96h-672v96zM768 544c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM192 672v256h32v-256h-32zM256 672v224h32v-224h-32zM320 672v256h32v-256h-32zM384 672v192h32v-192h-32zM448 672v224h32v-224h-32zM512 672v192h32v-192h-32zM576 672v256h32v-256h-32zM704 672v224h32v-224h-32zM768 672v256h32v-256h-32zM640 672v192h32v-192h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shredder" - ], - "grid": 32 - }, - { - "id": 252, - "paths": [ - "M704 928h-64v-32h64v32zM736 928h32.082c35.301 0 63.918-28.743 63.918-63.705v-32.295h-32v32.211c0 17.55-14.326 31.789-31.999 31.789h-32.001v32zM608 928h-64v-32h64v32zM512 928h-64v-32h64v32zM416 928h-64v-32h64v32zM320 928h-32.082c-35.408 0-63.918-28.759-63.918-64.235v-31.765h32v32.145c0 17.593 14.551 31.855 31.999 31.855h32.001v32zM832 800v-64h-32v64h32zM224 800v-64h32v64h-32zM832 704v-64h-32v64h32zM224 704v-64h32v64h-32zM864 576v-64h32v160h-32v-64h-672v64h-32v-160h32v64h672zM832 544h-32v-224h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v416.145h-32v-415.765c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v256zM640 112v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-scan" - ], - "grid": 32 - }, - { - "id": 253, - "paths": [ - "M608 928h-64v-32h64v32zM640 928h64v-32h-64v32zM416 928h-64v-32h64v32zM448 928h64v-32h-64v32zM320 928h-32.082c-35.408 0-63.918-28.759-63.918-64.235v-31.765h32v32.079c0 17.63 14.551 31.921 31.999 31.921h32.001v32zM832 704v-64h-32v64h32zM832 736v64h-32v-64h32zM224 704v-64h32v64h-32zM224 736v64h32v-64h-32zM864 576v-64h32v160h-32v-64h-672v64h-32v-160h32v64h672zM832 544v-224h-159.811c-35.451 0-64.189-28.375-64.189-63.939v-192.061h-319.727c-35.497 0-64.273 28.747-64.273 64.235v415.765h608zM832 832v32.082c0 35.408-28.617 63.918-63.918 63.918h-32.082v-32h32.001c17.672 0 31.999-14.282 31.999-31.921v-32.079h32zM640 64v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-scan" - ], - "grid": 32 - }, - { - "id": 254, - "paths": [ - "M480 872l-104-104-24 24 144 144 144-144-24-24-104 104v-360h-32v360zM448 704h-223.91c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 83.694 0 154.881 53.551 181.166 128.257 24.779-20.167 56.395-32.257 90.834-32.257 75.467 0 137.375 58.053 143.502 131.938v0c55.362 14.081 96.498 64.286 96.498 124.062 0 70.549-57.348 128-128.090 128h-223.91v32h224.018c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h224.018v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-download" - ], - "grid": 32 - }, - { - "id": 255, - "paths": [ - "M512 736h256.018c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h256.018v136l-104-104-24 24 144 144 144-144-24-24-104 104v-136zM480 512v224h32v-224h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-download" - ], - "grid": 32 - }, - { - "id": 256, - "paths": [ - "M480 512l-104 104-24-24 144-144 144 144-24 24-104-104v352h-32v-352zM448 672h-223.91c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 83.694 0 154.881 53.551 181.166 128.257 24.779-20.167 56.395-32.257 90.834-32.257 75.467 0 137.375 58.053 143.502 131.938v0c55.362 14.081 96.498 64.286 96.498 124.062 0 70.549-57.348 128-128.090 128h-223.91v32h224.018c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h224.018v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-upload" - ], - "grid": 32 - }, - { - "id": 257, - "paths": [ - "M512 704h256.018c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h256.018v-192l-104 104-24-24 144-144 144 144-24 24-104-104v192zM480 704v160h32v-160h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-upload" - ], - "grid": 32 - }, - { - "id": 258, - "paths": [ - "M363.636 672h-139.546c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 83.694 0 154.881 53.551 181.166 128.257 24.779-20.167 56.395-32.257 90.834-32.257 75.467 0 137.375 58.053 143.502 131.938v0c55.362 14.081 96.498 64.286 96.498 124.062 0 70.549-57.348 128-128.090 128h-139.546l-132.364-224-132.364 224zM647.273 704h120.745c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h120.745l-56.727 96h416l-56.727-96zM496 512l152 256h-304l152-256zM480 576v96h32v-96h-32zM480 704v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-error" - ], - "grid": 32 - }, - { - "id": 259, - "paths": [ - "M686.769 704h81.249c88.356 0 159.982-71.814 159.982-160 0-67.085-41.175-124.528-99.748-148.304v0c-16.731-79.784-87.495-139.696-172.252-139.696-27.613 0-53.74 6.359-76.998 17.692-38.484-67.886-111.394-113.692-195.002-113.692-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h81.249l190.769-320 190.769 320zM496 448l208 352h-416l208-352zM480 576v96h32v-96h-32zM480 704v32h32v-32h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-error" - ], - "grid": 32 - }, - { - "id": 260, - "paths": [ - "M195.232 515.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-59.775-41.136-109.981-96.498-124.062v0c-6.127-73.885-68.035-131.938-143.502-131.938-34.439 0-66.055 12.090-90.834 32.257-26.285-74.707-97.471-128.257-181.166-128.257-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0zM828.252 491.696c58.574 23.776 99.748 81.218 99.748 148.304 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 83.608 0 156.518 45.806 195.002 113.692 23.258-11.333 49.385-17.692 76.998-17.692 84.757 0 155.521 59.912 172.252 139.696v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud" - ], - "grid": 32 - }, - { - "id": 261, - "paths": [ - "M828.252 491.696c58.574 23.776 99.748 81.218 99.748 148.304 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 83.608 0 156.518 45.806 195.002 113.692 23.258-11.333 49.385-17.692 76.998-17.692 84.757 0 155.521 59.912 172.252 139.696z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud" - ], - "grid": 32 - }, - { - "id": 262, - "paths": [ - "M640 512h216.801l-140-224h-441.602l-140 224h216.801v63.844c0 35.432 28.667 64.156 63.917 64.156h160.167c35.3 0 63.917-28.605 63.917-64.156v-63.844zM672 544v48c0 44.491-35.761 80-79.874 80h-192.252c-44.185 0-79.874-35.817-79.874-80v-48h-192v224h736v-224h-192zM96 536v-24l160-256h480l160 256v288h-800v-264zM320 320l-19.199 32h390.398l-19.199-32h-352zM278.398 384l-19.199 32h473.602l-19.199-32h-435.203zM240 448l-19.199 32h550.398l-19.199-32h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-filled" - ], - "grid": 32 - }, - { - "id": 263, - "paths": [ - "M352 512v63.844c0 35.432 28.667 64.156 63.917 64.156h160.167c35.3 0 63.917-28.605 63.917-64.156v-63.844h216.801l-140-224h-441.602l-140 224h216.801zM96 512l160-256h480l160 256v288h-800v-288zM320 320l-19.199 32h390.398l-19.199-32h-352zM278.398 384l-19.199 32h473.602l-19.199-32h-435.203zM240 448l-19.199 32h550.398l-19.199-32h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox-filled" - ], - "grid": 32 - }, - { - "id": 264, - "paths": [ - "M576 800h-128v-512h128v512zM568.616 832l-56.616 73.6-56.616-73.6h113.231zM576 256h-128v-95.9c0-17.596 14.461-32.1 32.3-32.1h63.4c18.113 0 32.3 14.372 32.3 32.1v95.9zM512 960l96-128v-671.972c0-35.361-28.744-64.028-63.933-64.028h-64.134c-35.309 0-63.933 28.852-63.933 64.028v671.972l96 128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pen" - ], - "grid": 32 - }, - { - "id": 265, - "paths": [ - "M608 800v-512h-192v512h192zM608 832l-96 128-96-128h192zM608 256v-95.972c0-35.361-28.744-64.028-63.933-64.028h-64.134c-35.309 0-63.933 28.852-63.933 64.028v95.972h192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pen" - ], - "grid": 32 - }, - { - "id": 266, - "paths": [ - "M718.183 388.811l-361.159 361.586-83.378-83.378 361.347-361.398 83.19 83.19zM740.797 366.17l-83.178-83.178 55.274-55.282c12.523-12.525 32.766-12.428 45.33 0.102l37.754 37.65c12.541 12.506 12.633 32.815 0.153 45.309l-55.334 55.399zM252.919 691.546l79.851 79.851-100.317 19.755 20.465-99.606zM224 672l-32 160 160-32 466.563-466.563c25.094-25.094 25.155-65.719 0.309-90.565l-37.744-37.744c-24.924-24.924-65.199-25.057-90.565 0.309l-466.563 466.563z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pen-angled" - ], - "grid": 32 - }, - { - "id": 267, - "paths": [ - "M763.3 388.7l55.2-55.2c25.1-25.1 25.2-65.7 0.3-90.6l-37.7-37.7c-24.9-24.9-65.2-25.1-90.6 0.3l-55.2 55.2 128 128z", - "M228.7 667.3l-4.7 4.7-32 160 160-32 4.7-4.7z", - "M251.336 644.671l361.399-361.399 127.985 127.985-361.399 361.399-127.985-127.985z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pen-angled" - ], - "grid": 32 - }, - { - "id": 268, - "paths": [ - "M846.183 388.811l-361.159 361.586-83.378-83.378 361.347-361.398 83.19 83.19zM868.797 366.17l-83.178-83.178 55.274-55.282c12.523-12.525 32.766-12.428 45.33 0.102l37.754 37.65c12.541 12.506 12.633 32.815 0.153 45.309l-55.334 55.399zM380.919 691.546l79.851 79.851-100.317 19.755 20.465-99.606zM704 320v0l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-320.295l242.563-242.563c25.094-25.094 25.155-65.719 0.309-90.565l-37.744-37.744c-24.924-24.924-65.199-25.057-90.565 0.309l-114.563 114.563zM672 608v288.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067l-320 320-32 160 160-32 192-192zM512 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-edit" - ], - "grid": 32 - }, - { - "id": 269, - "paths": [ - "M846.183 388.811l-83.19-83.19-361.347 361.398 83.378 83.378 361.159-361.586zM868.797 366.17l55.334-55.399c12.479-12.494 12.387-32.803-0.153-45.309l-37.754-37.65c-12.564-12.529-32.807-12.627-45.33-0.102l-55.274 55.282 83.178 83.178zM380.919 691.546l-20.465 99.606 100.317-19.755-79.851-79.851zM704 576v320.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h127.811l146.563-146.563c25.366-25.366 65.641-25.232 90.565-0.309l37.744 37.744c24.846 24.846 24.785 65.471-0.309 90.565l-242.563 242.563zM512 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-edit" - ], - "grid": 32 - }, - { - "id": 270, - "paths": [ - "M672 798.384v0 0c19.795-20.201 32-47.867 32-78.384 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 30.517 12.205 58.183 32 78.384v33.616h-256.001c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v544.211c0 17.55-14.326 31.789-31.999 31.789h-64.001v-33.616zM544 821.222v0 0c14.548 6.911 30.822 10.778 48 10.778s33.452-3.867 48-10.778v125.977l-48-47.999-48 47.999v-125.977zM672 864h64.082c35.301 0 63.918-28.743 63.918-63.705v-576.295l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h256.082v160l80-80 80 80v-160zM608 48l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM288 224v32h224v-32h-224zM288 128v32h224v-32h-224zM288 320v32h416v-32h-416zM288 416v32h416v-32h-416zM288 512v32h416v-32h-416zM592 800v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-certificate" - ], - "grid": 32 - }, - { - "id": 271, - "paths": [ - "M672 798.384v0 0c19.795-20.201 32-47.867 32-78.384 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 30.517 12.205 58.183 32 78.384v65.616h-256.082c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v544.082c0 35.408-28.617 63.918-63.918 63.918h-64.082v-65.616zM544 821.222v157.977l48-47.999 48 47.999v-157.977c-14.548 6.911-30.822 10.778-48 10.778s-33.452-3.867-48-10.778v0 0zM608 0v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM288 224v32h224v-32h-224zM288 128v32h224v-32h-224zM288 320v32h416v-32h-416zM288 416v32h416v-32h-416zM288 512v32h416v-32h-416zM592 800c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-certificate" - ], - "grid": 32 - }, - { - "id": 272, - "paths": [ - "M416 638.384v65.616h415.921c17.717 0 32.079-14.365 32.079-32.239v-415.521c0-17.805-14.063-32.239-32.079-32.239h-639.842c-17.717 0-32.079 14.365-32.079 32.239v415.521c0 17.805 14.063 32.239 32.079 32.239h63.921v-65.616c-19.795-20.201-32-47.867-32-78.384 0-61.856 50.144-112 112-112s112 50.144 112 112c0 30.517-12.205 58.183-32 78.384v0 0zM288 661.222v125.977l48-47.999 48 47.999v-125.977c-14.548 6.911-30.822 10.778-48 10.778s-33.452-3.867-48-10.778v0 0zM256 736h-63.842c-35.453 0-64.158-28.655-64.158-64.003v-415.993c0-35.522 28.725-64.003 64.158-64.003h639.683c35.453 0 64.158 28.655 64.158 64.003v415.993c0 35.522-28.725 64.003-64.158 64.003h-415.842v128l-80-80-80 80v-128zM224 352v32h576v-32h-576zM512 448v32h288v-32h-288zM608 544v32h192v-32h-192zM336 640c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "certificate" - ], - "grid": 32 - }, - { - "id": 273, - "paths": [ - "M416 638.384v0 0c19.795-20.201 32-47.867 32-78.384 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 30.517 12.205 58.183 32 78.384v97.616h-63.842c-35.453 0-64.158-28.655-64.158-64.003v-415.993c0-35.522 28.725-64.003 64.158-64.003h639.683c35.453 0 64.158 28.655 64.158 64.003v415.993c0 35.522-28.725 64.003-64.158 64.003h-415.842v-97.616zM288 661.222v157.977l48-47.999 48 47.999v-157.977c-14.548 6.911-30.822 10.778-48 10.778s-33.452-3.867-48-10.778v0 0zM224 352v32h576v-32h-576zM512 448v32h288v-32h-288zM608 544v32h192v-32h-192zM336 640c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "certificate" - ], - "grid": 32 - }, - { - "id": 274, - "paths": [ - "M608 416v224h-160v-224h-288v448h736v-448h-288zM480 160h-172.801l-140 224h280.801l32-224zM576 160l32 224h280.801l-140-224h-172.801zM128 400v-16l160-256h480l160 256v512h-800v-496zM512 160l-32 224h96l-32-224h-32zM480 416v192h96v-192h-96zM192 672v32h224v-32h-224zM192 800v32h224v-32h-224zM192 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "package" - ], - "grid": 32 - }, - { - "id": 275, - "paths": [ - "M128 416h320v224h160v-224h320v480h-800v-480zM448 384h-320l160-256h192l-32 256zM608 384h320l-160-256h-192l32 256zM480 384h96l-32-256h-32l-32 256zM480 416v192h96v-192h-96zM192 672v32h224v-32h-224zM192 800v32h224v-32h-224zM192 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "package" - ], - "grid": 32 - }, - { - "id": 276, - "paths": [ - "M96 400v-16l160-256h480l160 256v512h-800v-496zM135.199 384h721.602l-140-224h-441.602l-140 224zM128 416v448h736v-448h-736zM415.917 576h160.167c35.249 0 63.917 28.654 63.917 64 0 35.593-28.616 64-63.917 64h-160.167c-35.249 0-63.917-28.654-63.917-64 0-35.593 28.616-64 63.917-64zM416.094 608c-17.725 0-32.094 14.204-32.094 32 0 17.673 14.012 32 32.094 32h159.813c17.725 0 32.094-14.204 32.094-32 0-17.673-14.012-32-32.094-32h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 277, - "paths": [ - "M96 384l160-256h480l160 256v512h-800v-512zM856.801 384l-140-224h-441.602l-140 224h721.602zM415.917 576c-35.3 0-63.917 28.407-63.917 64 0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64 0-35.346-28.667-64-63.917-64h-160.167z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 278, - "paths": [ - "M96 384l160-256h480l160 256v512h-800v-512zM856.801 384l-140-224h-441.602l-140 224h721.602zM128 416v448h736v-448h-736zM415.917 576h160.167c35.249 0 63.917 28.654 63.917 64 0 35.593-28.616 64-63.917 64h-160.167c-35.249 0-63.917-28.654-63.917-64 0-35.593 28.616-64 63.917-64zM416.094 608c-17.725 0-32.094 14.204-32.094 32 0 17.673 14.012 32 32.094 32h159.813c17.725 0 32.094-14.204 32.094-32 0-17.673-14.012-32-32.094-32h-159.813zM320 192l-19.199 32h390.398l-19.199-32h-352zM278.398 256l-19.199 32h473.602l-19.199-32h-435.203zM240 320l-19.199 32h550.398l-19.199-32h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box-filled" - ], - "grid": 32 - }, - { - "id": 279, - "paths": [ - "M96 384l160-256h480l160 256v512h-800v-512zM856.801 384l-140-224h-441.602l-140 224h721.602zM415.917 576c-35.3 0-63.917 28.407-63.917 64 0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64 0-35.346-28.667-64-63.917-64h-160.167zM320 192l-19.199 32h390.398l-19.199-32h-352zM278.398 256l-19.199 32h473.602l-19.199-32h-435.203zM240 320l-19.199 32h550.398l-19.199-32h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box-filled" - ], - "grid": 32 - }, - { - "id": 280, - "paths": [ - "M96 336v-16l160-256h480l160 256v640h-800v-624zM135.199 320h721.602l-140-224h-441.602l-140 224zM128 480v448h736v-448h-736zM415.917 640h160.167c35.249 0 63.917 28.654 63.917 64 0 35.593-28.616 64-63.917 64h-160.167c-35.249 0-63.917-28.654-63.917-64 0-35.593 28.616-64 63.917-64zM416.094 672c-17.725 0-32.094 14.204-32.094 32 0 17.673 14.012 32 32.094 32h159.813c17.725 0 32.094-14.204 32.094-32 0-17.673-14.012-32-32.094-32h-159.813zM128 352v96h736v-96h-736z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 281, - "paths": [ - "M896 352v96h-800v-96h800zM96 480h800v480h-800v-480zM256 64l-160 256h800l-160-256h-480zM415.917 640c-35.3 0-63.917 28.407-63.917 64 0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64 0-35.346-28.667-64-63.917-64h-160.167z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 282, - "paths": [ - "M128 416h-64v-256h864v256h-64v480h-736v-480zM160 416v448h672v-448h-672zM96 192v192h800v-192h-800zM415.917 576h160.167c35.249 0 63.917 28.654 63.917 64 0 35.593-28.616 64-63.917 64h-160.167c-35.249 0-63.917-28.654-63.917-64 0-35.593 28.616-64 63.917-64zM416.094 608c-17.725 0-32.094 14.204-32.094 32 0 17.673 14.012 32 32.094 32h159.813c17.725 0 32.094-14.204 32.094-32 0-17.673-14.012-32-32.094-32h-159.813z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 283, - "paths": [ - "M864 416v480h-736v-480h736zM928 384v-224h-864v224h864zM415.917 576c-35.3 0-63.917 28.407-63.917 64 0 35.346 28.667 64 63.917 64h160.167c35.3 0 63.917-28.407 63.917-64 0-35.346-28.667-64-63.917-64h-160.167z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box" - ], - "grid": 32 - }, - { - "id": 284, - "paths": [ - "M736 448h96v448h-672v-448h384v288l96-96 96 96v-288zM128 448v480h736v-480h64v-256h-864v256h64zM96 224h800v192h-800v-192zM576 448h128v211.199l-64-64-64 64v-211.199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box-bookmark" - ], - "grid": 32 - }, - { - "id": 285, - "paths": [ - "M864 448v480h-736v-480h416v288l96-96 96 96v-288h128zM928 416v-224h-864v224h864zM576 448v211.199l64-64 64 64v-211.199h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "box-bookmark" - ], - "grid": 32 - }, - { - "id": 286, - "paths": [ - "M344.358 192h167.642l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-30.403 20.906-55.557 49.030-62.244 5.25 8.488 9.573 18.589 12.585 30.365-16.58 1.366-29.615 15.4-29.615 32.161v239.73l419.195 421.477c12.433 12.5 32.592 12.485 44.942 0.051l229.235-230.8c12.388-12.473 12.327-32.604-0.188-45.015l-421.184-417.713h-144.284c-0.756-3.654-1.518-7.416-2.286-11.287-1.421-7.163-3.119-14.067-5.072-20.713v0 0zM367.383 288.002c0.205-0.002 0.411-0.002 0.617-0.002 44.183 0 80 35.817 80 80s-35.817 80-80 80c-44.183 0-80-35.817-80-80 0-5.141 0.485-10.169 1.412-15.040 18.494 40.85 41.635 58.921 76.112 63.214 0.187 0.023 0.378-0.049 0.574-0.211 0.631 0.025 1.266 0.037 1.903 0.037 26.51 0 48-21.49 48-48 0-21.932-14.709-40.428-34.8-46.162 0.005-0.236-0.002-0.371-0.021-0.399-4.143-6.021-8.759-16.918-13.795-33.436v0 0zM318.042 218.941c-27.732-139.765-177.767-159.439-235.588-67.456-46.365 73.758-0.49 200.515 77.546 200.515v-32c-49.66 0-84.743-96.937-50.454-151.485 42.963-68.348 155.226-53.627 177.108 56.654 25.885 130.459 45.408 158.831 97.346 158.831v-32c-31.781 0-42.708-15.88-65.958-133.059v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-cord" - ], - "grid": 32 - }, - { - "id": 287, - "paths": [ - "M344.477 192.771h167.642l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-30.403 20.906-55.557 49.030-62.244 6.303 10.19 11.27 22.706 14.235 37.652 25.904 130.553 51.765 177.494 110.258 184.777 0.187 0.023 0.378-0.049 0.574-0.211 0.631 0.025 1.266 0.037 1.903 0.037 26.51 0 48-21.49 48-48 0-21.932-14.709-40.428-34.8-46.162 0.005-0.236-0.002-0.371-0.021-0.399-8.672-12.603-19.416-46.569-31.749-108.725-1.421-7.163-3.119-14.067-5.072-20.713v0 0zM318.161 219.712c-27.732-139.765-177.767-159.439-235.588-67.456-46.365 73.758-0.49 200.515 77.546 200.515l0-32c-49.66-0-84.743-96.937-50.454-151.485 42.963-68.348 155.226-53.627 177.108 56.654 25.885 130.459 45.408 158.831 97.346 158.831l-0-32c-31.781 0-42.708-15.88-65.958-133.059v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-cord" - ], - "grid": 32 - }, - { - "id": 288, - "paths": [ - "M448 128l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012zM432 160h-239.73c-17.822 0-32.27 14.624-32.27 32.27v239.73l419.195 421.477c12.433 12.5 32.592 12.485 44.942 0.051l229.235-230.8c12.388-12.473 12.327-32.604-0.188-45.015l-421.184-417.713zM304 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag" - ], - "grid": 32 - }, - { - "id": 289, - "paths": [ - "M448 128l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag" - ], - "grid": 32 - }, - { - "id": 290, - "paths": [ - "M200.493 160v0 0c11.047-19.192 31.762-32 55.495-32h256.012l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-20.273 20.273-50.933 23.999-75.164 11.164l-20.836 20.836c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-35.59 28.648-63.988 63.988-63.988h40.505zM192 192h-31.73c-17.822 0-32.27 14.624-32.27 32.27v239.73l419.195 421.477c12.433 12.5 32.592 12.485 44.942 0.051l18.632-18.759-418.769-418.769v-256zM496 160h-239.73c-17.822 0-32.27 14.624-32.27 32.27v239.73l419.195 421.477c12.433 12.5 32.592 12.485 44.942 0.051l229.235-230.8c12.388-12.473 12.327-32.604-0.188-45.015l-421.184-417.713zM368 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM368 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tags" - ], - "grid": 32 - }, - { - "id": 291, - "paths": [ - "M159.988 160c-35.339 0-63.988 28.398-63.988 63.988v256.012l428.189 428.189c22.925 22.925 58.812 24.954 83.834 6.107l-448.022-450.296v-303.783c0-0.072 0-0.145 0.001-0.217h-0.013zM512 128l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-428.189-428.189v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012zM368 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tags" - ], - "grid": 32 - }, - { - "id": 292, - "paths": [ - "M288 672v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM215.712 535.712v0 0c-52.448 30.472-87.712 87.262-87.712 152.288 0 97.202 78.798 176 176 176 65.026 0 121.816-35.265 152.288-87.712l99.901 99.901c25.080 25.080 65.671 25.151 90.58 0.241l229.661-229.661c24.946-24.946 24.819-65.519-0.241-90.58l-428.189-428.189h-256.012c-35.339 0-63.988 28.398-63.988 63.988v256.012l87.712 87.712zM248.461 520.942l-88.461-88.942v-239.73c0-17.646 14.448-32.27 32.27-32.27h239.73l421.184 417.713c12.515 12.412 12.576 32.543 0.188 45.015l-229.235 230.8c-12.35 12.434-32.509 12.45-44.942-0.051l-108.442-109.032c5.996-17.718 9.246-36.702 9.246-56.445 0-97.202-78.798-176-176-176-19.407 0-38.080 3.141-55.539 8.942v0 0zM304 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 832v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-add" - ], - "grid": 32 - }, - { - "id": 293, - "paths": [ - "M288 672v-96h32v96h96v32h-96v96h-32v-96h-96v-32h96zM192.426 512.426l-64.426-64.426v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-76.615-76.615c20.531-32.241 32.426-70.518 32.426-111.574 0-114.875-93.125-208-208-208-41.056 0-79.333 11.895-111.574 32.426v0 0zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 864c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-add" - ], - "grid": 32 - }, - { - "id": 294, - "paths": [ - "M215.712 535.712v0 0c-52.448 30.472-87.712 87.262-87.712 152.288 0 97.202 78.798 176 176 176 65.026 0 121.816-35.265 152.288-87.712l99.901 99.901c25.080 25.080 65.671 25.151 90.58 0.241l229.661-229.661c24.946-24.946 24.819-65.519-0.241-90.58l-428.189-428.189h-256.012c-35.339 0-63.988 28.398-63.988 63.988v256.012l87.712 87.712zM248.461 520.942l-88.461-88.942v-239.73c0-17.646 14.448-32.27 32.27-32.27h239.73l421.184 417.713c12.515 12.412 12.576 32.543 0.188 45.015l-229.235 230.8c-12.35 12.434-32.509 12.45-44.942-0.051l-108.442-109.032c5.996-17.718 9.246-36.702 9.246-56.445 0-97.202-78.798-176-176-176-19.407 0-38.080 3.141-55.539 8.942v0 0zM304 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 832v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM192 672v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-remove" - ], - "grid": 32 - }, - { - "id": 295, - "paths": [ - "M192.426 512.426l-64.426-64.426v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-76.615-76.615c20.531-32.241 32.426-70.518 32.426-111.574 0-114.875-93.125-208-208-208-41.056 0-79.333 11.895-111.574 32.426v0 0zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 864v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM192 672v32h224v-32h-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-remove" - ], - "grid": 32 - }, - { - "id": 296, - "paths": [ - "M215.712 535.712v0 0c-52.448 30.472-87.712 87.262-87.712 152.288 0 97.202 78.798 176 176 176 65.026 0 121.816-35.265 152.288-87.712l99.901 99.901c25.080 25.080 65.671 25.151 90.58 0.241l229.661-229.661c24.946-24.946 24.819-65.519-0.241-90.58l-428.189-428.189h-256.012c-35.339 0-63.988 28.398-63.988 63.988v256.012l87.712 87.712zM248.461 520.942l-88.461-88.942v-239.73c0-17.646 14.448-32.27 32.27-32.27h239.73l421.184 417.713c12.515 12.412 12.576 32.543 0.188 45.015l-229.235 230.8c-12.35 12.434-32.509 12.45-44.942-0.051l-108.442-109.032c5.996-17.718 9.246-36.702 9.246-56.445 0-97.202-78.798-176-176-176-19.407 0-38.080 3.141-55.539 8.942v0 0zM304 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 832v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144zM288 775.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-checked" - ], - "grid": 32 - }, - { - "id": 297, - "paths": [ - "M192.426 512.426l-64.426-64.426v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-76.615-76.615c20.531-32.241 32.426-70.518 32.426-111.574 0-114.875-93.125-208-208-208-41.056 0-79.333 11.895-111.574 32.426v0 0zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 864c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0zM288 775.765l-75.314-75.314 23.431-23.431 51.882 51.882 99.882-99.882 23.431 23.431-123.314 123.314z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-checked" - ], - "grid": 32 - }, - { - "id": 298, - "paths": [ - "M304 710.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM215.712 535.712v0 0c-52.448 30.472-87.712 87.262-87.712 152.288 0 97.202 78.798 176 176 176 65.026 0 121.816-35.265 152.288-87.712l99.901 99.901c25.080 25.080 65.671 25.151 90.58 0.241l229.661-229.661c24.946-24.946 24.819-65.519-0.241-90.58l-428.189-428.189h-256.012c-35.339 0-63.988 28.398-63.988 63.988v256.012l87.712 87.712zM248.461 520.942l-88.461-88.942v-239.73c0-17.646 14.448-32.27 32.27-32.27h239.73l421.184 417.713c12.515 12.412 12.576 32.543 0.188 45.015l-229.235 230.8c-12.35 12.434-32.509 12.45-44.942-0.051l-108.442-109.032c5.996-17.718 9.246-36.702 9.246-56.445 0-97.202-78.798-176-176-176-19.407 0-38.080 3.141-55.539 8.942v0 0zM304 384v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 832v0c-79.529 0-144-64.471-144-144s64.471-144 144-144c79.529 0 144 64.471 144 144s-64.471 144-144 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-cancel" - ], - "grid": 32 - }, - { - "id": 299, - "paths": [ - "M304 710.627l-67.882 67.882-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627 67.882 67.882 67.882-67.882 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627-67.882-67.882zM192.426 512.426l-64.426-64.426v-256.012c0-35.59 28.648-63.988 63.988-63.988h256.012l428.189 428.189c25.061 25.061 25.188 65.634 0.241 90.58l-229.661 229.661c-24.909 24.909-65.501 24.838-90.58-0.241l-76.615-76.615c20.531-32.241 32.426-70.518 32.426-111.574 0-114.875-93.125-208-208-208-41.056 0-79.333 11.895-111.574 32.426v0 0zM304 352c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM304 864c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag-cancel" - ], - "grid": 32 - }, - { - "id": 300, - "paths": [ - "M704.333 516.686l-271.615 271.615c-49.94 49.94-131.048 49.799-180.933-0.086v0c-49.987-49.987-50.105-130.914 0.142-181.162l373.093-373.093c31.307-31.307 81.795-31.577 113.254-0.117v0c31.242 31.242 31.268 81.869 0.168 112.969l-373.706 373.706c-12.394 12.394-32.485 12.398-45.069-0.185v0c-12.497-12.497-12.502-32.753-0.034-45.221l271.563-271.563-22.627-22.627-271.396 271.396c-25.067 25.067-25.3 65.474-0.133 90.642v0c24.994 24.994 65.386 25.124 90.31 0.2l373.595-373.595c43.715-43.715 43.607-114.7-0.043-158.349v0c-43.739-43.739-114.582-43.81-158.448 0.056l-373.318 373.318c-62.472 62.472-62.335 163.896 0.022 226.252v0c62.484 62.484 163.821 62.453 226.469-0.195l271.334-271.334-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "paperclip" - ], - "grid": 32 - }, - { - "id": 301, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM659.078 561.941l-158.338 158.338c-50.017 50.017-131.188 49.939-181.073 0.054-49.987-49.987-50.071-130.949 0.164-181.183l237.234-237.234c31.347-31.347 81.868-31.65 113.327-0.19 31.242 31.242 31.18 81.957-0.066 113.203l-237.367 237.367c-12.582 12.582-32.826 12.739-45.41 0.155-12.497-12.497-12.376-32.878-0.067-45.188l158.459-158.459-22.627-22.627-158.451 158.451c-24.961 24.961-25.109 65.283 0.059 90.451 24.994 24.994 65.495 25.014 90.375 0.134l237.915-237.915c43.632-43.632 43.457-114.55-0.192-158.2-43.739-43.739-114.744-43.648-158.551 0.159l-237.609 237.609c-62.384 62.384-62.176 163.737 0.18 226.094 62.484 62.484 163.573 62.701 226.324-0.049l158.342-158.342-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "paperclip" - ], - "grid": 32 - }, - { - "id": 302, - "paths": [ - "M544 160.342c89.925 3.847 171.491 39.965 233.411 97.068v0c-62.091 67.562-101.24 156.543-105.097 254.591h-128.314v-351.658zM512 160.342v351.658h-128.314c-3.857-98.048-43.006-187.029-105.097-254.591h-0c61.92-57.103 143.486-93.221 233.411-97.068zM544 895.658v-351.658h128.314c3.857 98.048 43.006 187.029 105.097 254.591v0c-61.92 57.103-143.486 93.221-233.411 97.068zM512 895.658c-89.925-3.847-171.491-39.965-233.411-97.068 62.091-67.562 101.24-156.543 105.097-254.591h128.314v351.658zM800 280.125c56.287 61.73 91.843 142.692 95.658 231.875v0h-191.317c3.815-89.183 39.371-170.144 95.658-231.875v0 0zM800 775.875v0 0c-56.287-61.73-91.843-142.692-95.658-231.875h191.317v0c-3.815 89.183-39.371 170.144-95.658 231.875zM160.342 512c3.815-89.183 39.371-170.144 95.658-231.875v0c56.287 61.73 91.843 142.692 95.658 231.875h-191.317zM160.342 544h191.317c-3.815 89.183-39.371 170.144-95.658 231.875-56.287-61.73-91.843-142.692-95.658-231.875zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball" - ], - "grid": 32 - }, - { - "id": 303, - "paths": [ - "M511.686 927.372v-383.686h-128.314c-4.306 109.458-52.596 207.615-127.686 277.287 67.732 62.845 157.269 102.515 256 106.399v0zM211.218 772.356c-49.322-63.702-79.836-142.7-83.218-228.67h223.344c-4.303 100.588-48.984 190.717-118.247 254.591 0.433 0.471-14.558-16.465-21.879-25.921v0zM822.274 798.277c62.091-67.562 101.24-156.543 105.097-254.591v0h-223.344c4.303 100.588 48.984 190.717 118.247 254.591v0 0zM799.686 820.973c-67.732 62.845-157.269 102.515-256 106.399v0-383.686h128.314c4.306 109.458 52.596 207.615 127.686 277.287v0 0zM822.274 257.095c62.091 67.562 101.24 156.543 105.097 254.591v0h-223.344c4.303-100.588 48.984-190.717 118.247-254.591v0 0zM799.686 234.399c-67.732-62.845-157.269-102.515-256-106.399v383.686h128.314c4.306-109.458 52.596-207.615 127.686-277.287l0 0zM233.097 257.095c-62.091 67.562-101.24 156.543-105.097 254.591v0h223.344c-4.303-100.588-48.984-190.717-118.247-254.591l0-0zM255.686 234.399c67.732-62.845 157.269-102.515 256-106.399v0 383.686h-128.314c-4.306-109.458-52.596-207.615-127.686-277.287h-0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball" - ], - "grid": 32 - }, - { - "id": 304, - "paths": [ - "M278.589 798.591h-0c8.768-9.541 17.079-19.509 24.898-29.87l23.542 17.104 18.809-25.889-24.105-17.514v0c15.885-24.968 29.077-51.816 39.168-80.136l29.764 9.671 9.889-30.434-30.136-9.792c7.536-28.141 12.079-57.506 13.268-87.733h32.314v-32h-32.314v0c-1.189-30.227-5.732-59.592-13.268-87.733l30.136-9.792-9.889-30.434-29.764 9.671v0c-10.091-28.32-23.283-55.168-39.168-80.136l24.105-17.514-18.809-25.889-23.542 17.104c-7.819-10.36-16.129-20.329-24.898-29.87 65.573-60.471 153.179-97.409 249.411-97.409s183.838 36.938 249.411 97.409c-8.768 9.541-17.079 19.509-24.898 29.87l-23.542-17.104-18.809 25.889 24.105 17.514c-15.885 24.968-29.077 51.816-39.168 80.136l-29.764-9.671-9.889 30.434 30.136 9.792v0c-7.536 28.141-12.079 57.506-13.268 87.733h-32.314v32h32.314c1.189 30.227 5.732 59.592 13.268 87.733l-30.136 9.792 9.889 30.434 29.764-9.671c10.091 28.32 23.283 55.168 39.168 80.136l-24.105 17.514 18.809 25.889 23.542-17.104c7.819 10.36 16.129 20.329 24.898 29.87v0c-65.573 60.471-153.179 97.409-249.411 97.409s-183.838-36.938-249.411-97.409zM256 775.875c-59.635-65.402-96-152.392-96-247.875s36.365-182.472 96-247.875c7.582 8.316 14.789 16.98 21.592 25.967l-28.229 20.509 18.809 25.889 27.615-20.063c13.979 22.238 25.644 46.078 34.659 71.181l-31.082 10.099 9.889 30.434 30.679-9.968c6.573 25.002 10.582 51.044 11.727 77.827h-31.658v32h31.658c-1.146 26.783-5.154 52.825-11.727 77.827v0l-30.679-9.968-9.889 30.434 31.082 10.099c-9.015 25.103-20.68 48.942-34.659 71.181l-27.615-20.063-18.809 25.889 28.229 20.509c-6.803 8.987-14.009 17.651-21.592 25.967v0zM800 775.875v0 0c-7.582-8.316-14.789-16.98-21.592-25.967l28.229-20.509-18.809-25.889-27.615 20.063c-13.979-22.238-25.644-46.078-34.659-71.181l31.082-10.099-9.889-30.434-30.679 9.968v0c-6.573-25.002-10.582-51.044-11.727-77.827h31.658v-32h-31.658c1.146-26.783 5.154-52.825 11.727-77.827l30.679 9.968 9.889-30.434-31.082-10.099c9.015-25.103 20.68-48.942 34.659-71.181l27.615 20.063 18.809-25.889-28.229-20.509c6.803-8.987 14.009-17.651 21.592-25.967 59.635 65.402 96 152.392 96 247.875s-36.365 182.472-96 247.875zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "baseball" - ], - "grid": 32 - }, - { - "id": 305, - "paths": [ - "M800 821.287c-71.373 66.223-166.958 106.713-272 106.713s-200.627-40.489-272-106.713v0 0c17.326-16.076 33.225-33.668 47.486-52.566l23.542 17.104 18.809-25.889-24.105-17.514c15.885-24.968 29.077-51.816 39.168-80.136l29.764 9.671 9.889-30.434-30.136-9.792c7.536-28.141 12.079-57.506 13.268-87.733h32.314v-32h-32.314c-1.189-30.227-5.732-59.592-13.268-87.733l30.136-9.792-9.889-30.434-29.764 9.671c-10.091-28.32-23.283-55.168-39.168-80.136l24.105-17.514-18.809-25.889-23.542 17.104c-14.261-18.898-30.16-36.49-47.486-52.566v0c71.373-66.223 166.958-106.713 272-106.713s200.627 40.489 272 106.713v0c-17.326 16.076-33.225 33.668-47.486 52.566l-23.542-17.104-18.809 25.889 24.105 17.514c-15.885 24.968-29.077 51.816-39.168 80.136l-29.764-9.671-9.889 30.434 30.136 9.792c-7.536 28.141-12.079 57.506-13.268 87.733h-32.314v32h32.314c1.189 30.227 5.732 59.592 13.268 87.733v0l-30.136 9.792 9.889 30.434 29.764-9.671c10.091 28.32 23.283 55.168 39.168 80.136l-24.105 17.514 18.809 25.889 23.542-17.104c14.261 18.898 30.16 36.49 47.486 52.566v0 0 0zM840.56 777.635c54.72-68.424 87.44-155.209 87.44-249.635 0-104.352-39.959-199.371-105.411-270.591-16.126 14.871-30.919 31.165-44.18 48.683l28.229 20.509-18.809 25.889-27.615-20.063c-13.979 22.238-25.644 46.078-34.659 71.181l31.082 10.099-9.889 30.434-30.679-9.968c-6.573 25.002-10.582 51.044-11.727 77.827h31.658v32h-31.658c1.146 26.783 5.154 52.825 11.727 77.827l30.679-9.968 9.889 30.434-31.082 10.099c9.015 25.103 20.68 48.942 34.659 71.181l27.615-20.063 18.809 25.889-28.229 20.509c13.261 17.518 28.055 33.812 44.18 48.683-0.433 0.471 11.82-13.263 17.972-20.955v0zM212.641 774.095c-53.035-67.866-84.641-153.289-84.641-246.095 0-104.352 39.959-199.371 105.411-270.591 16.126 14.871 30.919 31.165 44.18 48.683l-28.229 20.509 18.809 25.889 27.615-20.063c13.979 22.238 25.644 46.078 34.659 71.181l-31.082 10.099 9.889 30.434 30.679-9.968c6.573 25.002 10.582 51.044 11.727 77.827h-31.658v32h31.658c-1.146 26.783-5.154 52.825-11.727 77.827l-30.679-9.968-9.889 30.434 31.082 10.099c-9.015 25.103-20.68 48.942-34.659 71.181l-27.615-20.063-18.809 25.889 28.229 20.509c-13.261 17.518-28.055 33.812-44.18 48.683 0.433 0.471-13.778-15.548-20.771-24.496v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "baseball" - ], - "grid": 32 - }, - { - "id": 306, - "paths": [ - "M777.411 257.409v0c-65.452 71.219-105.411 166.239-105.411 270.591s39.959 199.371 105.411 270.591c-65.573 60.471-153.179 97.409-249.411 97.409s-183.838-36.938-249.411-97.409c65.452-71.219 105.411-166.239 105.411-270.591s-39.959-199.371-105.411-270.591h-0c65.573-60.471 153.179-97.409 249.411-97.409s183.838 36.938 249.411 97.409zM800 280.125c59.635 65.402 96 152.392 96 247.875s-36.365 182.472-96 247.875c-59.635-65.402-96-152.392-96-247.875s36.365-182.472 96-247.875v0zM256 280.125v0 0c59.635 65.402 96 152.392 96 247.875s-36.365 182.472-96 247.875c-59.635-65.402-96-152.392-96-247.875s36.365-182.472 96-247.875zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-ball" - ], - "grid": 32 - }, - { - "id": 307, - "paths": [ - "M800 234.713c-71.373-66.223-166.958-106.713-272-106.713s-200.627 40.489-272 106.713v0c78.731 73.051 128 177.415 128 293.287s-49.269 220.236-128 293.287c71.373 66.223 166.958 106.713 272 106.713s200.627-40.489 272-106.713c-78.731-73.051-128-177.415-128-293.287s49.269-220.236 128-293.287v0 0zM822.589 257.409c65.452 71.219 105.411 166.239 105.411 270.591s-39.959 199.371-105.411 270.591c-72.915-67.242-118.589-163.583-118.589-270.591s45.673-203.349 118.589-270.591v0 0zM233.411 257.409c-65.452 71.219-105.411 166.239-105.411 270.591s39.959 199.371 105.411 270.591c72.915-67.242 118.589-163.583 118.589-270.591s-45.673-203.349-118.589-270.591l0-0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-ball" - ], - "grid": 32 - }, - { - "id": 308, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 416c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM624 576c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM432 576c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-ball" - ], - "grid": 32 - }, - { - "id": 309, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 416c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM624 576c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM432 576c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-ball" - ], - "grid": 32 - }, - { - "id": 310, - "paths": [ - "M576.008 528c19.427 14.596 31.992 37.83 31.992 64 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.17 12.565-49.404 31.992-64-19.427-14.596-31.992-37.83-31.992-64 0-44.183 35.817-80 80-80s80 35.817 80 80c0 26.17-12.565 49.404-31.992 64v0 0zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 736c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0zM528 640c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM528 512c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "billiard-ball" - ], - "grid": 32 - }, - { - "id": 311, - "paths": [ - "M576.008 528c19.427 14.596 31.992 37.83 31.992 64 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-26.17 12.565-49.404 31.992-64-19.427-14.596-31.992-37.83-31.992-64 0-44.183 35.817-80 80-80s80 35.817 80 80c0 26.17-12.565 49.404-31.992 64v0 0zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 736c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0zM528 640c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM528 512c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "billiard-ball" - ], - "grid": 32 - }, - { - "id": 312, - "paths": [ - "M282.096 465.638l113.485 48.172 40.052 137.68-78.856 81.658-129.431 7.11c-39.496-55.842-63.826-123.172-66.993-195.993l121.743-78.626zM284.936 432.080l-49.333-127.558c41.686-54.459 98.242-96.933 163.603-121.355l112.794 91.809v122.047l-106.134 86.389-120.929-51.331zM387.908 746.977l72.404-74.977h131.769l75.234 77.907-34.756 131.027v0c-33.143 9.804-68.237 15.066-104.559 15.066s-71.416-5.262-104.559-15.066l-35.533-133.957zM695.414 732.939l-75.882-78.579 41.276-141.887 112.002-47.542 122.837 79.333c-3.167 72.821-27.497 140.151-66.993 195.993l-133.24-7.319zM771.606 430.679l-122.417 51.963-105.188-85.619v-122.047l112.794-91.809v0c65.361 24.423 121.917 66.896 163.603 121.355l-48.791 126.156zM213.234 337.249l41.532 107.667-94.108 60.896c3.655-61.467 22.398-118.872 52.576-168.563zM386.164 867.672c-51.591-21.568-97.225-54.547-133.745-95.782l106.713-5.768 27.032 101.55zM669.836 867.672l27.032-101.55 106.713 5.768c-36.521 41.235-82.154 74.214-133.745 95.782zM842.766 337.249c30.178 49.691 48.921 107.096 52.576 168.563l-94.108-60.896 41.532-107.667zM620.053 171.607l-92.053 74.793-92.053-74.793c29.421-7.577 60.266-11.607 92.053-11.607s62.632 4.030 92.053 11.607zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0zM528 425.6l102.4 83.2-41.601 131.2h-121.6l-41.601-131.2 102.4-83.2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-ball" - ], - "grid": 32 - }, - { - "id": 313, - "paths": [ - "M282.096 465.638l113.485 48.172 40.052 137.68-78.856 81.658-129.431 7.11c-39.496-55.842-63.826-123.172-66.993-195.993l121.743-78.626zM284.936 432.080l-49.333-127.558c41.686-54.459 98.242-96.933 163.603-121.355l112.794 91.809v122.047l-106.134 86.389-120.929-51.331zM387.908 746.977l72.404-74.977h131.769l75.234 77.907-34.756 131.027c-33.143 9.804-68.237 15.066-104.559 15.066s-71.416-5.262-104.559-15.066l-35.533-133.957zM695.414 732.939l-75.882-78.579 41.276-141.887 112.002-47.542 122.837 79.333c-3.167 72.821-27.497 140.151-66.993 195.993l-133.24-7.319zM771.606 430.679l-122.417 51.963-105.188-85.619v-122.047l112.794-91.809v0c65.361 24.423 121.917 66.896 163.603 121.355l-48.791 126.156zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-ball" - ], - "grid": 32 - }, - { - "id": 314, - "paths": [ - "M96 672h128v-288h-128v-96.001c0-17.448 14.226-31.999 31.775-31.999h800.45c17.499 0 31.775 14.326 31.775 31.999v96.001h-128v288h128v96.001c0 17.448-14.226 31.999-31.775 31.999h-800.45c-17.499 0-31.775-14.326-31.775-31.999v-96.001zM544 671.121v128.879h-32v-128.879c-71.999-7.959-128-69-128-143.121s56.001-135.162 128-143.121v-128.879h32v128.879c71.999 7.959 128 69 128 143.121s-56.001 135.162-128 143.121zM544 638.866c54.277-7.764 96-54.442 96-110.866s-41.723-103.102-96-110.866v221.732zM512 417.134c-54.277 7.764-96 54.442-96 110.866s41.723 103.102 96 110.866v-221.732zM127.785 224c-35.228 0-63.785 28.51-63.785 63.918v480.165c0 35.301 28.791 63.918 63.785 63.918h800.43c35.228 0 63.785-28.51 63.785-63.918v-480.165c0-35.301-28.791-63.918-63.785-63.918h-800.43zM864 416h96v224h-96v-224zM96 416h96v224h-96v-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-court" - ], - "grid": 32 - }, - { - "id": 315, - "paths": [ - "M64 672v96.082c0 35.301 28.791 63.918 63.785 63.918h384.215v-160.879c-71.999-7.959-128-69-128-143.121s56.001-135.162 128-143.121v-160.879h-384.215c-35.228 0-63.785 28.51-63.785 63.918v96.082h160v288h-160zM992 672v96.082c0 35.408-28.558 63.918-63.785 63.918h-384.215v-160.879c71.999-7.959 128-69 128-143.121s-56.001-135.162-128-143.121v-160.879h384.215c34.994 0 63.785 28.617 63.785 63.918v96.082h-160v288h160zM544 638.866c54.277-7.764 96-54.442 96-110.866s-41.723-103.102-96-110.866v221.732zM512 417.134c-54.277 7.764-96 54.442-96 110.866s41.723 103.102 96 110.866v-221.732zM864 416v224h128v-224h-128zM64 416v224h128v-224h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-court" - ], - "grid": 32 - }, - { - "id": 316, - "paths": [ - "M640 544h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-64v-32h64v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h64v32h-64v64h-32v-64zM528 736v0c-100.309 0-180.163-28.288-241.007-64v-288c60.844-35.712 140.699-64 241.007-64s180.163 28.288 241.007 64v288c-60.844 35.712-140.699 64-241.007 64zM256 652.132c-82.797-57.759-121.6-124.132-121.6-124.132s38.803-66.373 121.6-124.132v248.265zM800 652.132v-248.265c82.797 57.759 121.6 124.132 121.6 124.132s-38.803 66.373-121.6 124.132zM96 528c0 0 128 240 432 240s432-240 432-240c0 0-128-240-432-240s-432 240-432 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "football" - ], - "grid": 32 - }, - { - "id": 317, - "paths": [ - "M640 544h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-64v-32h64v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h64v32h-64v64h-32v-64zM288 709.652c62.912 33.601 142.382 58.348 240 58.348s177.088-24.747 240-58.348v0-363.304c-62.912-33.601-142.382-58.348-240-58.348s-177.088 24.747-240 58.348v363.304zM256 690.976c-110.513-70.188-160-162.976-160-162.976s49.487-92.788 160-162.976v325.952zM800 690.976c110.513-70.188 160-162.976 160-162.976s-49.487-92.788-160-162.976v325.952z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "football" - ], - "grid": 32 - }, - { - "id": 318, - "paths": [ - "M640 512h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-64v32h64v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h64v-32h-64v-64h-32v64zM528 288v0c304 0 432 240 432 240s-128 240-432 240c-304 0-432-240-432-240s128-240 432-240zM528 320c-272 0-393.6 208-393.6 208s121.6 208 393.6 208c272 0 393.6-208 393.6-208s-121.6-208-393.6-208v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "football" - ], - "grid": 32 - }, - { - "id": 319, - "paths": [ - "M640 544h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-32v64h-32v-64h-64v-32h64v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h32v-64h32v64h64v32h-64v64h-32v-64zM528 288c-304 0-432 240-432 240s128 240 432 240c304 0 432-240 432-240s-128-240-432-240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "football" - ], - "grid": 32 - }, - { - "id": 320, - "paths": [ - "M551.848 895.24v0c-5.147-25.613-7.848-52.111-7.848-79.24 0-108.873 43.496-207.586 114.060-279.711-42.233-59.126-95.072-110.155-155.739-150.309-62.052 124.686-187.268 212.406-333.764 221.279v0c36.25 165.146 183.413 288.741 359.443 288.741 8.012 0 15.964-0.256 23.848-0.76zM583.814 891.795c67.931-10.336 129.758-39.244 180.139-81.383v0c-10.544-90.053-41.3-173.929-87.608-246.97-62.209 65.904-100.345 154.777-100.345 252.558 0 25.982 2.693 51.335 7.814 75.795v0zM880.22 421.057c-44.596-147.070-178.783-255.185-339.043-260.826v0c1.864 15.663 2.823 31.604 2.823 47.768 0 52.434-10.089 102.511-28.431 148.397 64.556 41.952 120.869 95.519 165.976 157.739 55.061-47.913 123.356-81.010 198.675-93.079v0zM888.186 452.205l0 0c-71.692 10.908-136.586 42.502-188.403 88.503 46.807 72.11 79.127 154.494 92.836 243.027v0c64.002-66.211 103.38-156.375 103.38-255.735 0-25.982-2.693-51.335-7.814-75.795zM163.039 575.516v0 0c137.393-7.002 254.892-89.358 311.985-206.555-68.816-40.353-146.507-67.203-229.437-76.914-53.429 63.88-85.588 146.161-85.588 235.953 0 16.101 1.034 31.961 3.039 47.516zM508.961 160.484c-91.812 4.679-174.74 43.008-236.696 102.896 77.495 12 150.279 38.26 215.585 76.013 15.603-40.807 24.15-85.102 24.15-131.393 0-16.101-1.034-31.961-3.039-47.516v0 0zM133.084 591.95c-3.346-20.823-5.084-42.183-5.084-63.95 0-220.914 179.086-400 400-400s400 179.086 400 400c0 220.914-179.086 400-400 400-193.544 0-354.983-137.46-392.015-320.079-1.072-5.287-2.040-10.611-2.901-15.971l0-0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball" - ], - "grid": 32 - }, - { - "id": 321, - "paths": [ - "M130.823 575.69c-1.864-15.663-2.823-31.604-2.823-47.768 0-89.682 29.514-172.471 79.359-239.184 97.296 5.078 188.373 33.648 267.665 80.144-59.714 122.576-185.505 207.039-331.024 207.039-3.807 0-12.579-0.21-13.177-0.232l0 0zM135.985 607.843c37.031 182.618 198.47 320.079 392.015 320.079 10.614 0 21.132-0.413 31.537-1.225v0c-10.117-35.177-15.537-72.343-15.537-110.775 0-108.873 43.496-207.586 114.060-279.711-42.233-59.126-95.072-110.155-155.739-150.309-65.492 131.599-201.347 222.020-358.321 222.020-2.678 0-5.349-0.026-8.015-0.079v0 0zM503.443 128.663c-107.221 6.494-203.043 55.225-271.044 129.773v0c92.431 8.281 179.057 36.716 255.451 80.879 15.603-40.807 24.15-85.102 24.15-131.393 0-27.21-2.953-53.731-8.557-79.259v0 0zM536.015 128c178.963 3.517 329.114 124.568 376.448 289.146-88.051 6.867-168.098 42.246-230.918 96.911-45.107-62.22-101.42-115.787-165.976-157.739 18.342-45.886 28.431-95.963 28.431-148.397 0-27.369-2.749-54.097-7.985-79.921h-0zM767.184 848.562c-50.565 37.78-110.366 63.88-175.404 74.302l0-0c-10.262-33.843-15.78-69.748-15.78-106.943 0-97.78 38.136-186.654 100.345-252.558 52.801 83.282 85.382 180.65 90.839 285.199v0 0zM797.486 823.522c80.195-73.152 130.514-178.5 130.514-295.6 0-27.129-2.701-53.627-7.848-79.24-84.34 5.395-160.952 39.2-220.368 91.948 53.763 82.827 88.413 179.207 97.702 282.892v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball" - ], - "grid": 32 - }, - { - "id": 322, - "paths": [ - "M636.374 815.638v0c-1.138-5.23-1.882-11.286-1.566-8.927 65.944-7.754 118.256-60.066 126.011-126.011 49.851 6.676 89.32 46.145 95.996 95.996-65.944 7.754-118.256 60.066-126.011 126.011-46.835-6.272-84.507-41.49-94.429-87.069zM728.478 681.037v0 0c-7.454 47.976-45.358 85.88-93.334 93.334 7.454-47.976 45.358-85.88 93.334-93.334zM856.478 809.037c-7.454 47.976-45.358 85.88-93.334 93.334 7.454-47.976 45.358-85.88 93.334-93.334v0 0zM441.782 530.185l-232.843 264.96 28.467 28.467 264.96-232.843-60.583-60.583zM462.95 506.098l63.503 63.503 352.746-309.989c31.335-27.537 32.744-73.853 3.481-103.116l-6.626-6.626c-29.412-29.412-75.464-27.984-103.116 3.481l-309.989 352.746zM187.771 819.232l-21.168 24.087-11.418-11.418c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-11.418-11.418 24.087-21.168-25.547-25.547zM162.948 799.191l590.395-669.115c38.524-43.661 102.629-45.543 143.55-4.622l10.203 10.203c40.891 40.891 38.852 105.191-4.622 143.55l-669.142 590.42c7.491 17.5 4.132 38.597-10.159 52.888-18.876 18.876-49.139 18.743-67.886-0.004l-45.247-45.247c-18.687-18.687-18.749-49.141-0.004-67.886 14.4-14.4 35.427-17.737 52.913-10.187v0 0zM745.811 647.704c-79.529 0-144 64.471-144 144s64.471 144 144 144c79.529 0 144-64.471 144-144s-64.471-144-144-144v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "baseball-set" - ], - "grid": 32 - }, - { - "id": 323, - "paths": [ - "M889.017 776.497c-7.072-67.384-60.616-120.928-128-128h0c0.524 4.997 0.793 10.071 0.793 15.207 0 79.529-64.471 144-144 144-5.136 0-10.209-0.269-15.207-0.793 7.072 67.384 60.616 120.928 128 128-0.524-4.997-0.793-10.071-0.793-15.207 0-79.529 64.471-144 144-144 5.136 0 10.209 0.269 15.207 0.793v0zM888.818 808.701c-7.754 65.944-60.066 118.257-126.011 126.011-0.657-4.909-0.997-9.919-0.997-15.007 0-61.856 50.144-112 112-112 5.089 0 10.098 0.339 15.007 0.997l0-0zM728.814 648.696c-65.944 7.754-118.257 60.066-126.011 126.011 4.909 0.657 9.919 0.997 15.007 0.997 61.856 0 112-50.144 112-112 0-5.089-0.339-10.098-0.997-15.007l0-0zM419.748 508.151l-236.467 267.996 73.123 73.123 267.996-236.467-104.652-104.652zM440.961 484.109l312.382-354.033c38.524-43.661 102.629-45.543 143.55-4.622l10.203 10.203c40.891 40.891 38.852 105.191-4.622 143.55l-354.033 312.382-107.48-107.48zM234.493 872.614c5.917 16.866 2.166 36.414-11.321 49.901-18.876 18.876-49.139 18.743-67.886-0.004l-45.247-45.247c-18.687-18.687-18.749-49.141-0.004-67.886 13.563-13.563 33.004-17.312 49.829-11.394l74.629 74.629z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "baseball-set" - ], - "grid": 32 - }, - { - "id": 324, - "paths": [ - "M528 128c-220.914 0-400 179.086-400 400s179.086 400 400 400c220.914 0 400-179.086 400-400s-179.086-400-400-400v0zM528 896c-203.241 0-368-164.759-368-368s164.759-368 368-368c137.154 0 256.784 75.032 320.081 186.288-29.956 23.619-67.773 37.712-108.881 37.712-39.126 0-67.2-16-105.026-34.898s-67.387-29.102-106.174-29.102c-114.875 0-208 93.125-208 208s93.125 208 208 208c38.787 0 80-16 106.706-29.637s65.368-34.363 104.494-34.363c41.108 0 78.924 14.093 108.881 37.712-63.297 111.256-182.926 186.288-320.081 186.288v0zM896 528v0c0 54.499-11.847 106.23-33.105 152.76-34.572-25.613-77.364-40.76-123.695-40.76-46.599 0-97.931 27.782-131.2 44.8-13.645 6.979-48.421 19.2-80 19.2-97.202 0-176-78.798-176-176s78.798-176 176-176c31.579 0 53.045 5.723 80 19.2 32 16 84.601 44.8 131.2 44.8 46.33 0 89.122-15.147 123.695-40.76 21.259 46.53 33.105 98.262 33.105 152.76z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-ball" - ], - "grid": 32 - }, - { - "id": 325, - "paths": [ - "M887.968 353.369c-1.345-2.768 5.808 12.096 10.134 22.617 19.27 46.867 29.898 98.199 29.898 152.014 0 62.612-14.386 121.864-40.032 174.631-7.755-7.935-16.14-15.252-25.073-21.871-34.572-25.613-77.364-40.76-123.695-40.76-46.599 0-97.931 27.782-131.2 44.8-13.645 6.979-48.421 19.2-80 19.2-97.202 0-176-78.798-176-176s78.798-176 176-176c31.579 0 53.045 5.723 80 19.2 32 16 84.601 44.8 131.2 44.8 46.33 0 89.122-15.147 123.695-40.76 8.934-6.618 17.318-13.936 25.073-21.871v0zM871.909 323.608c1.986 3.335-3.566-6.079-8.663-13.89-71.381-109.406-194.869-181.718-335.246-181.718-220.914 0-400 179.086-400 400s179.086 400 400 400c146.236 0 274.144-78.474 343.909-195.608-7.217-8.278-15.197-15.874-23.828-22.68-29.956-23.619-67.773-37.712-108.881-37.712-39.126 0-77.788 20.726-104.494 34.363s-67.919 29.637-106.706 29.637c-114.875 0-208-93.125-208-208s93.125-208 208-208c38.787 0 68.347 10.204 106.174 29.102s65.9 34.898 105.026 34.898c41.108 0 78.924-14.093 108.881-37.712 8.632-6.806 16.611-14.402 23.828-22.68v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-ball" - ], - "grid": 32 - }, - { - "id": 326, - "paths": [ - "M512 832v-160c-105.897-0.092-192-85.918-192-191.778v-0.222c-112-48-128-288-128-288h672c0 0-16 240-128 288v0 0.222c0 105.907-85.946 191.687-192 191.778v160h128v32h-288v-32h128zM352 224v255.759c0 88.499 71.657 160.241 160.035 160.241h31.93c88.385 0 160.035-71.513 160.035-160.241v-255.759h-352zM320 224h-92.8c0 0 17.733 167.061 92.8 220.8v-220.8zM735.438 224v220.17c75.066-53.739 92.812-220.17 92.812-220.17h-92.812z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy" - ], - "grid": 32 - }, - { - "id": 327, - "paths": [ - "M512 832h-128v32h288v-32h-128v-160c106.054-0.092 192-85.871 192-191.778v-0.222 0c112-48 128-288 128-288h-672c0 0 16 240 128 288v0.222c0 105.86 86.103 191.686 192 191.778v160zM320 224v220.8c-75.066-53.739-92.8-220.8-92.8-220.8h92.8zM735.438 224h92.812c0 0-17.746 166.431-92.812 220.17v-220.17z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy" - ], - "grid": 32 - }, - { - "id": 328, - "paths": [ - "M512 832v-160c-105.897-0.092-192-85.918-192-191.778v-0.222c-112-48-128-288-128-288h672c0 0-16 240-128 288v0 0.222c0 105.907-85.946 191.687-192 191.778v160h128v32h-288v-32h128zM352 224v255.759c0 88.499 71.657 160.241 160.035 160.241h31.93c88.385 0 160.035-71.513 160.035-160.241v-255.759h-352zM320 224h-92.8c0 0 17.733 167.061 92.8 220.8v-220.8zM735.438 224v220.17c75.066-53.739 92.812-220.17 92.812-220.17h-92.812zM543.904 576h-31.904v-192h-64v-32c52.81 0 64-28.654 64-64h31.904v288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy-one" - ], - "grid": 32 - }, - { - "id": 329, - "paths": [ - "M512 832h-128v32h288v-32h-128v-160c106.054-0.092 192-85.871 192-191.778v-0.222 0c112-48 128-288 128-288h-672c0 0 16 240 128 288v0.222c0 105.86 86.103 191.686 192 191.778v160zM320 224v220.8c-75.066-53.739-92.8-220.8-92.8-220.8h92.8zM735.438 224h92.812c0 0-17.746 166.431-92.812 220.17v-220.17zM543.904 576h-31.904v-192h-64v-32c52.81 0 64-28.654 64-64h31.904v288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy-one" - ], - "grid": 32 - }, - { - "id": 330, - "paths": [ - "M672 800h96v128h-480v-128h96v-96h128v-128c-105.897-0.092-192-85.918-192-191.778v-0.222c-112-48-128-288-128-288h672c0 0-16 240-128 288v0.222c0 105.907-85.946 191.687-192 191.778v128h128v96zM352 128v255.759c0 88.499 71.657 160.241 160.035 160.241h31.93c88.385 0 160.035-71.513 160.035-160.241v-255.759h-352zM320 128h-92.8c0 0 17.733 167.061 92.8 220.8v-220.8zM735.438 128v220.17c75.066-53.739 92.812-220.17 92.812-220.17h-92.812zM416 736v64h224v-64h-224zM320 832v64h416v-64h-416z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy" - ], - "grid": 32 - }, - { - "id": 331, - "paths": [ - "M672 800v-96h-128v-128c106.054-0.092 192-85.871 192-191.778v-0.222c112-48 128-288 128-288h-672c0 0 16 240 128 288v0.222c0 105.86 86.103 191.686 192 191.778v128h-128v96h-96v128h480v-128h-96zM320 128v220.8c-75.066-53.739-92.8-220.8-92.8-220.8h92.8zM735.438 128h92.812c0 0-17.746 166.431-92.812 220.17v-220.17z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trophy" - ], - "grid": 32 - }, - { - "id": 332, - "paths": [ - "M608 64h-160v461.656c25.022-8.844 51.949-13.656 80-13.656s54.978 4.812 80 13.656v-461.656zM640 64v475.681c19.058 10.074 36.596 22.639 52.18 37.261l43.82-128.622v-384.32h-96zM416 64h-96v384.32l43.82 128.622c15.585-14.622 33.123-27.187 52.18-37.261v-475.681zM339.718 603.155l-51.718-155.155v-416h480v416l-51.718 155.155c32.384 40.908 51.718 92.618 51.718 148.845 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-56.226 19.335-107.936 51.718-148.845v0 0zM528 960c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 333, - "paths": [ - "M608 32h-160v459.955c25.294-7.772 52.158-11.955 80-11.955s54.706 4.183 80 11.955v-459.955zM640 32h128v416l-39.914 119.743c-24.627-26.729-54.542-48.512-88.086-63.688v-472.056zM416 32h-128v416l39.914 119.743c24.627-26.729 54.542-48.512 88.086-63.688v-472.056zM528 992c132.548 0 240-107.452 240-240s-107.452-240-240-240c-132.548 0-240 107.452-240 240s107.452 240 240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 334, - "paths": [ - "M608 64h-160v461.656c25.022-8.844 51.949-13.656 80-13.656s54.978 4.812 80 13.656v-461.656zM640 64v475.681c19.058 10.074 36.596 22.639 52.18 37.261l43.82-128.622v-384.32h-96zM416 64h-96v384.32l43.82 128.622c15.585-14.622 33.123-27.187 52.18-37.261v-475.681zM339.718 603.155l-51.718-155.155v-416h480v416l-51.718 155.155c32.384 40.908 51.718 92.618 51.718 148.845 0 132.548-107.452 240-240 240s-240-107.452-240-240c0-56.226 19.335-107.936 51.718-148.845v0 0zM528 960c114.875 0 208-93.125 208-208s-93.125-208-208-208c-114.875 0-208 93.125-208 208s93.125 208 208 208v0zM528 829.538l-88.615 66.462 24.615-110.769-80-81.231h112l32-96 32 96h112l-80 81.231 32 110.769-96-66.462z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 335, - "paths": [ - "M608 32h-160v459.955c25.294-7.772 52.158-11.955 80-11.955s54.706 4.183 80 11.955v-459.955zM640 32h128v416l-39.914 119.743c-24.627-26.729-54.542-48.512-88.086-63.688v-472.056zM416 32h-128v416l39.914 119.743c24.627-26.729 54.542-48.512 88.086-63.688v-472.056zM528 992c132.548 0 240-107.452 240-240s-107.452-240-240-240c-132.548 0-240 107.452-240 240s107.452 240 240 240v0zM528 829.538l-88.615 66.462 24.615-110.769-80-81.231h112l32-96 32 96h112l-80 81.231 32 110.769-96-66.462z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 336, - "paths": [ - "M736 544h-416v111.794c0 26.717-21.49 48.206-48 48.206-26.694 0-48-21.583-48-48.206v-18.524c-5.004 1.769-10.39 2.73-16 2.73-26.694 0-48-21.514-48-48.054v-47.946h-64v-32h64v-47.946c0-26.576 21.49-48.054 48-48.054 5.622 0 11.005 0.954 16 2.709v0-18.503c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v111.794h416v-111.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v18.524c5.004-1.769 10.39-2.73 16-2.73 26.694 0 48 21.514 48 48.054v47.946h64v32h-64v47.946c0 26.576-21.49 48.054-48 48.054-5.622 0-11.005-0.954-16-2.709v18.503c0 26.717-21.49 48.206-48 48.206-26.694 0-48-21.583-48-48.206v-111.794zM848 448c-8.837 0-16 6.875-16 15.926v128.147c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-128.147c0-8.796-7.422-15.926-16-15.926v0zM208 448c-8.837 0-16 6.875-16 15.926v128.147c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-128.147c0-8.796-7.422-15.926-16-15.926v0zM784 384c-8.837 0-16 7.119-16 16.309v255.381c0 9.007 7.422 16.309 16 16.309 8.837 0 16-7.119 16-16.309v-255.381c0-9.007-7.422-16.309-16-16.309v0zM272 384c-8.837 0-16 7.119-16 16.309v255.381c0 9.007 7.422 16.309 16 16.309 8.837 0 16-7.119 16-16.309v-255.381c0-9.007-7.422-16.309-16-16.309v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "weights" - ], - "grid": 32 - }, - { - "id": 337, - "paths": [ - "M736 544h-416v111.794c0 26.717-21.49 48.206-48 48.206-26.694 0-48-21.583-48-48.206v-18.524c-5.004 1.769-10.39 2.73-16 2.73-26.694 0-48-21.514-48-48.054v-47.946h-64v-32h64v-47.946c0-26.576 21.49-48.054 48-48.054 5.622 0 11.005 0.954 16 2.709v0-18.503c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v111.794h416v-111.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v18.524c5.004-1.769 10.39-2.73 16-2.73 26.694 0 48 21.514 48 48.054v47.946h64v32h-64v47.946c0 26.576-21.49 48.054-48 48.054-5.622 0-11.005-0.954-16-2.709v18.503c0 26.717-21.49 48.206-48 48.206-26.694 0-48-21.583-48-48.206v-111.794z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "weights" - ], - "grid": 32 - }, - { - "id": 338, - "paths": [ - "M416 160h32v-32h-25.751c-2.12 2.845-4.203 5.768-6.249 8.768v23.232zM416 224h32v-32h-32v32zM384 224v-26.574c-3.479 8.58-6.713 17.451-9.681 26.574h9.681zM416 288h32v-32h-32v32zM384 288v-32h-18.739c-2.533 10.437-4.731 21.12-6.569 32h25.308zM416 448v32h32v-32h-32zM384 448h-18.591c4.977 12.805 11.234 24.175 18.591 34.199v0-34.199zM416 384v32h32v-32h-32zM384 384h-31.565c0.63 11.347 1.937 22.005 3.869 32v0h27.696v-32zM416 320v32h32v-32h-32zM384 320h-29.604c-1.055 10.547-1.772 21.227-2.13 32v0h31.734v-32zM480 160h32v-32h-32v32zM480 76.237v19.763h32v-30.662 0c-10.967 1.839-21.668 5.54-32 10.9zM480 224h32v-32h-32v32zM480 288h32v-32h-32v32zM480 448v32h32v-32h-32zM448 530.314v-18.314h-33.943v0c10.368 7.489 21.755 13.557 33.943 18.314zM480 539.536c10.332 2.047 21.033 3.365 32 4.005v-31.541h-32v27.536zM480 384v32h32v-32h-32zM480 320v32h32v-32h-32zM608 128v32h32v-23.232c-2.045-3-4.129-5.923-6.249-8.768h-25.751zM544 128v32h32v-32h-32zM544 96h32v-19.763c-10.332-5.36-21.033-9.061-32-10.9v30.662zM608 192v32h32v-32h-32zM544 192v32h32v-32h-32zM608 256v32h32v-32h-32zM690.739 256h-18.739v32h25.308v0c-1.838-10.88-4.036-21.563-6.569-32zM681.681 224c-2.968-9.123-6.202-17.994-9.681-26.574v26.574h9.681zM544 256v32h32v-32h-32zM608 480h32v-32h-32v32zM608 512v18.314c12.188-4.757 23.575-10.825 33.943-18.314h-33.943zM544 480h32v-32h-32v32zM544 512v31.541c10.967-0.64 21.668-1.958 32-4.005v0-27.536h-32zM608 416h32v-32h-32v32zM699.696 416c1.932-9.995 3.239-20.653 3.869-32v0h-31.565v32h27.696zM690.591 448h-18.591v34.199 0c7.357-10.024 13.614-21.394 18.591-34.199zM544 416h32v-32h-32v32zM608 352h32v-32h-32v32zM703.734 352c-0.358-10.773-1.075-21.453-2.13-32v0h-29.604v32h31.734zM544 352h32v-32h-32v32zM735.635 384c-6.114 131.614-88.327 186.581-191.635 191.616v163.098c18.723 6.59 32 24.445 32 45.437v159.697c0 26.766-21.49 48.152-48 48.152-26.694 0-48-21.558-48-48.152v-159.697c0-21.101 13.357-38.859 32-45.43v0-163.106c-103.308-5.035-185.521-60.002-191.635-191.616h-0.365v-32h0.24c5.256-175.133 96.263-320 207.76-320s202.504 144.867 207.76 320h0.24v32h-0.365zM528 768c-8.837 0-16 7.292-16 15.712v160.576c0 8.678 7.422 15.712 16 15.712 8.837 0 16-7.292 16-15.712v-160.576c0-8.678-7.422-15.712-16-15.712v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-racket" - ], - "grid": 32 - }, - { - "id": 339, - "paths": [ - "M416 160h32v-32h-25.751c-2.12 2.845-4.203 5.768-6.249 8.768v23.232zM416 224h32v-32h-32v32zM384 224v-26.574c-3.479 8.58-6.713 17.451-9.681 26.574h9.681zM416 288h32v-32h-32v32zM384 288v-32h-18.739c-2.533 10.437-4.731 21.12-6.569 32h25.308zM416 448v32h32v-32h-32zM384 448h-18.591c4.977 12.805 11.234 24.175 18.591 34.199v0-34.199zM416 384v32h32v-32h-32zM384 384h-31.565c0.63 11.347 1.937 22.005 3.869 32v0h27.696v-32zM416 320v32h32v-32h-32zM384 320h-29.604c-1.055 10.547-1.772 21.227-2.13 32v0h31.734v-32zM480 160h32v-32h-32v32zM480 76.237v19.763h32v-30.662 0c-10.967 1.839-21.668 5.54-32 10.9zM480 224h32v-32h-32v32zM480 288h32v-32h-32v32zM480 448v32h32v-32h-32zM448 530.314v-18.314h-33.943v0c10.368 7.489 21.755 13.557 33.943 18.314zM480 539.536c10.332 2.047 21.033 3.365 32 4.005v-31.541h-32v27.536zM480 384v32h32v-32h-32zM480 320v32h32v-32h-32zM608 128v32h32v-23.232c-2.045-3-4.129-5.923-6.249-8.768h-25.751zM544 128v32h32v-32h-32zM544 96h32v-19.763c-10.332-5.36-21.033-9.061-32-10.9v30.662zM608 192v32h32v-32h-32zM544 192v32h32v-32h-32zM608 256v32h32v-32h-32zM690.739 256h-18.739v32h25.308v0c-1.838-10.88-4.036-21.563-6.569-32zM681.681 224c-2.968-9.123-6.202-17.994-9.681-26.574v26.574h9.681zM544 256v32h32v-32h-32zM608 480h32v-32h-32v32zM608 512v18.314c12.188-4.757 23.575-10.825 33.943-18.314v0h-33.943zM544 480h32v-32h-32v32zM544 512v31.541c10.967-0.64 21.668-1.958 32-4.005v0-27.536h-32zM608 416h32v-32h-32v32zM699.696 416c1.932-9.995 3.239-20.653 3.869-32v0h-31.565v32h27.696zM690.591 448h-18.591v34.199 0c7.357-10.024 13.614-21.394 18.591-34.199zM544 416h32v-32h-32v32zM608 352h32v-32h-32v32zM703.734 352c-0.358-10.773-1.075-21.453-2.13-32v0h-29.604v32h31.734zM544 352h32v-32h-32v32zM735.635 384c-6.114 131.614-88.327 186.581-191.635 191.616v163.098c18.723 6.59 32 24.445 32 45.437v159.697c0 26.766-21.49 48.152-48 48.152-26.694 0-48-21.558-48-48.152v-159.697c0-21.101 13.357-38.859 32-45.43v0-163.106c-103.308-5.035-185.521-60.002-191.635-191.616h-0.365v-32h0.24c5.256-175.133 96.263-320 207.76-320s202.504 144.867 207.76 320h0.24v32h-0.365z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tennis-racket" - ], - "grid": 32 - }, - { - "id": 340, - "paths": [ - "M408.759 650.919v0c12.105 5.946 28.108 10.939 46.785 14.571l-6.163-33.896v0c-20.248-4.603-38.272-10.929-53.14-18.554l12.518 37.879zM420.837 687.466l12.091 36.586c10.337 3.031 21.989 5.576 34.633 7.528l-6.090-33.493c-14.633-2.718-28.281-6.305-40.634-10.621v0zM512 671.707v-32.033c-10.133-0.415-20.019-1.221-29.583-2.383v0l5.976 32.871c7.629 0.726 15.517 1.247 23.607 1.546v0zM512 703.674v0c-5.999-0.246-11.911-0.628-17.721-1.141l5.922 32.573c3.879 0.253 7.815 0.454 11.799 0.601v-32.033zM544 703.674v32.033c3.984-0.147 7.919-0.348 11.799-0.601l5.922-32.573c-5.81 0.512-11.722 0.895-17.721 1.141v0zM544 671.707v0c8.090-0.298 15.978-0.82 23.607-1.546l5.976-32.871c-9.565 1.163-19.45 1.968-29.583 2.383v32.033zM635.038 687.51v0c-12.319 4.296-25.925 7.869-40.509 10.577l-6.090 33.493c12.578-1.941 24.173-4.47 34.47-7.48l12.128-36.59zM647.153 650.962l12.562-37.899c-14.86 7.615-32.867 13.933-53.096 18.531l-6.163 33.896c18.631-3.623 34.602-8.601 46.696-14.528v0zM478.768 793.225l-5.298-29.139c-10.17-1.505-19.934-3.42-29.196-5.701l3.556 10.761h0.22c0.861 9.779 12.69 18.441 30.718 24.078zM511.882 799.35c0.039 0.003 0.079 0.006 0.118 0.010v0-31.686c-1.986-0.081-3.963-0.178-5.93-0.289l5.812 31.965zM544 767.674v31.686c0.039-0.003 0.079-0.006 0.118-0.010v0l5.812-31.965c-1.967 0.111-3.944 0.207-5.93 0.289v0 0zM611.529 758.434v0 0c-9.204 2.26-18.901 4.158-29 5.652l-5.298 29.139v0c18.027-5.638 29.857-14.3 30.718-24.078h0.029l3.551-10.713zM356.611 578.272v0c-0.387-0.753-0.751-1.511-1.091-2.272h-67.521v-288h480v288h-67.521c-0.32 0.716-0.661 1.429-1.022 2.138l-18.814 61.862h151.356v-416h-608v416h151.498l-18.887-61.728zM355.521 544v0 0c16.307-36.516 87.332-64 172.479-64s156.172 27.484 172.479 64h35.521v-224h-416v224h35.521zM416.471 773.912l-31.182-101.912h-193.29v-480h672v480h-193.088l-31.416 103.301h-0.217c-6.341 31.908-53.744 56.699-111.279 56.699-58.368 0-106.308-25.513-111.529-58.088v0 0zM528 608c79.529 0 144-21.49 144-48s-64.471-48-144-48c-79.529 0-144 21.49-144 48s64.471 48 144 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball-hoop" - ], - "grid": 32 - }, - { - "id": 341, - "paths": [ - "M356.611 578.272v0c-0.387-0.753-0.751-1.511-1.091-2.272h-67.521v-288h480v288h-67.521c-0.32 0.716-0.661 1.429-1.022 2.138l-18.814 61.862h151.356v-416h-608v416h151.498l-18.887-61.728zM355.521 544v0 0c16.307-36.516 87.332-64 172.479-64s156.172 27.484 172.479 64h35.521v-224h-416v224h35.521zM416.471 773.912l-31.182-101.912h-193.29v-480h672v480h-193.088l-31.416 103.301h-0.217c-6.341 31.908-53.744 56.699-111.279 56.699-58.368 0-106.308-25.513-111.529-58.088v0 0zM528 608c79.529 0 144-21.49 144-48s-64.471-48-144-48c-79.529 0-144 21.49-144 48s64.471 48 144 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "basketball-hoop" - ], - "grid": 32 - }, - { - "id": 342, - "paths": [ - "M271 512h419.2c11.4-28.9 16.8-61.2 14.3-95.3l-2.4-33.4c-7.4-105.7-99.7-191.3-205.7-191.3h-31.7c-106.1 0-198.3 85.8-205.8 191.3l-2.4 33.4c-2.4 34.1 2.9 66.4 14.5 95.3zM287.3 544c36.2 58 100.8 96 177.1 96h32.3c76.2 0 140.8-38 177.1-96h-386.5zM562.3 832.1c1 17.6-14.2 31.9-32 31.9h-96c-18.1 0-32.9-14.3-32-31.9l9.2-165.6c-114.2-24.5-194.7-127-187-249.7l2.1-32.9c7.7-124 114.2-223.9 237.8-223.9h32.3c123.8 0 230.1 100.2 237.8 223.8l2.1 32.9c7.6 122.3-72.2 224.5-185.8 249.4l11.5 166zM443.3 671.1c-4 72.8-8.9 160.9-9 160.9h96c-0.3 0-6.3-88.1-11.3-161-7.4 0.6-14.9 1-22.5 1h-31.9c-7.2 0-14.3-0.3-21.3-0.9v0zM832.6 688c0-35.3-28.7-64-64-64s-64 28.7-64 64 28.7 64 64 64 64-28.7 64-64v0zM736.6 688c0-17.7 14.3-32 32-32s32 14.3 32 32-14.3 32-32 32-32-14.3-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "table-tennis" - ], - "grid": 32 - }, - { - "id": 343, - "paths": [ - "M236.983 512c-10.048-29.432-14.583-61.579-12.478-95.25l2.058-32.924c7.743-123.892 114.205-223.826 237.828-223.826h32.322c123.8 0 230.102 100.21 237.828 223.826l2.058 32.924c2.104 33.672-2.426 65.819-12.468 95.25h-487.147zM250.605 544c39.453 76.501 119.118 128 214.018 128h31.859c94.94 0 174.594-51.495 214.034-128h-459.91zM551.25 697.68l9.302 134.399c0.98 17.639-14.161 31.921-32 31.921h-96c-18.113 0-32.929-14.292-31.95-31.921l7.446-134.033c17.543 3.899 35.893 5.954 54.851 5.954h31.859c19.551 0 38.455-2.184 56.492-6.32v0 0zM832.552 688c0-35.346-28.654-64-64-64s-64 28.654-64 64c0 35.346 28.654 64 64 64s64-28.654 64-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "table-tennis" - ], - "grid": 32 - }, - { - "id": 344, - "paths": [ - "M249.184 287.813c-3.23 127.062 35.344 255.67 117.67 363.534-45.49 33.097-95.719 58.463-148.545 75.521 1.979 3.076-11.963-19.155-19.516-34.229-24.823-49.538-38.793-105.457-38.793-164.638 0-81.975 26.804-157.69 72.125-218.859 7.468-10.079 19.296-23.923 17.059-21.329v0zM284.223 252.32v0c-4.159 3.681 9.696-8.673 21.526-17.65 34.484-26.168 73.723-46.395 116.194-59.156 8.559-2.572 21.176-5.684 18.75-5.094-10.467 109.208 10.965 222.506 68.21 325.289-31.62 52.846-71.089 98.205-116.052 135.448-85.346-111.95-120.739-247.563-108.627-378.836zM857.965 364.883c-110.631-71.089-245.737-104.699-385.010-86.61-3.972-38.212-3.715-76.53 0.586-114.271-2.682 0.398 13.436-1.905 24.377-2.79 9.921-0.803 19.954-1.212 30.082-1.212 133.138 0 249.763 70.702 314.376 176.609 6.777 11.107 16.602 30.319 15.589 28.274v0zM880.167 420.884v0c-2.039-6.712 1.915 5.602 5.164 18.787 6.971 28.296 10.669 57.881 10.669 88.329 0 18.994-1.439 37.651-4.214 55.87-1.755 11.524-5.563 28.799-4.965 26.173-95.079-79.434-216.908-127.92-350.002-129.975-30.121-54.103-49.719-111.295-59.436-169.179 148.541-19.233 292.043 23.902 402.784 109.995zM362.387 856.717v0c6.454 3.258-5.765-2.675-17.863-9.646-36.79-21.201-69.568-48.582-96.918-80.725-4.845-5.695-11.313-13.959-9.938-12.196 120.905-41.434 228.23-124.204 298.737-242.084 61.901 0.966 121.216 12.584 176.193 33.102-65.578 156.491-197.196 267.28-350.211 311.549zM408.666 876.22c146.355-53.289 270.244-165.277 334.394-318.581 49.19 21.965 94.404 51.233 134.263 86.426 1.273-3.835-2.060 6.39-5.403 15.145-52.852 138.45-186.902 236.79-343.92 236.79-38.991 0-76.566-6.064-111.833-17.3-4.459-1.421-9.43-3.14-7.502-2.48v0zM928 528c0-220.914-179.086-400-400-400s-400 179.086-400 400c0 220.914 179.086 400 400 400s400-179.086 400-400v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volleyball" - ], - "grid": 32 - }, - { - "id": 345, - "paths": [ - "M921.647 456.608c-114.984-109.544-276.406-167.453-444.264-145.719 9.717 57.884 29.315 115.076 59.436 169.179 146.035 2.255 278.508 60.409 376.964 154.009-0.548 1.996 2.817-10.478 4.68-18.855 6.244-28.077 9.537-57.265 9.537-87.222 0-15.363-0.866-30.524-2.552-45.436-1.847-16.337-5.141-33.396-3.8-25.956v0zM907.173 400.269c-118.402-94.921-273.537-142.866-434.217-121.997-5.133-49.389-3.204-98.954 5.394-147.221-1.641 0.203 5.747-0.706 11.124-1.22 12.679-1.212 25.53-1.831 38.527-1.831 167.707 0 311.309 103.209 370.752 249.577 4.615 11.363 9.774 26.715 8.42 22.693v0zM902.784 668.085c-45.661-46.011-99.735-83.659-159.724-110.446-71.067 169.833-215.45 288.96-382.471 333.749-1.897-0.875 5.394 2.492 11.025 4.886 48.039 20.425 100.893 31.726 156.386 31.726 166.396 0 309.061-101.602 369.343-246.151 2.896-6.944 6.354-16.206 5.441-13.764v0zM316.848 867.792c172.136-34.078 323.749-150.804 395.75-322.624-54.977-20.518-114.292-32.136-176.193-33.102-76.767 128.347-197.183 215.073-331.25 252.14-1.541-2.102 5.408 7.354 10.706 13.956 22.803 28.416 49.405 53.651 79.037 74.935 8.404 6.037 23.27 15.517 21.95 14.695v0zM186.327 736.1c64.531-16.456 125.941-45.037 180.527-84.753-93.136-122.027-130.275-270.603-114.24-413.455 1.123-1.066-13.75 13.446-21.745 22.311-63.942 70.901-102.868 164.803-102.868 267.797 0 69.058 17.5 134.029 48.308 190.72 4.442 8.173 11.372 19.598 10.018 17.38v0zM290.482 206.121c-26.022 145.169 6.96 299.888 102.367 425.035 44.962-37.242 84.431-82.602 116.052-135.448-63.175-113.43-82.733-239.666-63.934-359.079 1.010-0.213-5.644 1.209-9.942 2.232-45.316 10.787-87.643 29.285-125.517 54.029-9.076 5.93-21.519 15.074-19.025 13.23v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volleyball" - ], - "grid": 32 - }, - { - "id": 346, - "paths": [ - "M247.343 352.716c48.95-44.891 110.085-76.707 177.873-89.914-25.155-20.538-41.216-51.794-41.216-86.801 0-61.856 50.144-112 112-112s112 50.144 112 112c0 35.007-16.061 66.263-41.216 86.801v0c67.788 13.208 128.924 45.023 177.873 89.914v0l39.343-39.343-22.627-22.627 22.627-22.627 67.882 67.882-22.627 22.627-22.627-22.627-39.343 39.343c60.060 65.49 96.716 152.793 96.716 248.657 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-95.864 36.656-183.167 96.716-248.657l-39.343-39.343-22.627 22.627-22.627-22.627 67.882-67.882 22.627 22.627-22.627 22.627 39.343 39.343zM516.695 580.678l99.796-99.796c6.121-6.121 16.456-6.326 22.705-0.077 6.066 6.066 6.214 16.414-0.077 22.705l-99.796 99.796c2.999 6.266 4.678 13.284 4.678 20.695 0 26.51-21.49 48-48 48-7.41 0-14.428-1.679-20.695-4.678l-35.796 35.796c-6.121 6.121-16.456 6.326-22.705 0.077-6.066-6.066-6.214-16.414 0.077-22.705l35.796-35.796c-2.999-6.266-4.678-13.284-4.678-20.695 0-26.51 21.49-48 48-48 7.41 0 14.428 1.679 20.695 4.678v0 0zM512 254.4c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v-62.4h-32v-32h96v32h-32v62.4zM256.52 639.928h79.857c8.668 0 15.695-7.422 15.695-16 0-8.837-6.882-16-15.695-16h-79.847c7.919-119.766 103.694-215.519 223.47-223.403v79.78c0 8.668 7.422 15.695 16 15.695 8.837 0 16-6.882 16-15.695v-79.78c119.776 7.884 215.551 103.636 223.47 223.403h-79.847c-8.668 0-15.695 7.422-15.695 16 0 8.837 6.882 16 15.695 16h79.857c-7.852 119.834-103.656 215.661-223.48 223.547v-79.924c0-8.668-7.422-15.695-16-15.695-8.837 0-16 6.882-16 15.695v79.924c-119.824-7.887-215.628-103.714-223.48-223.547zM496 960c185.568 0 336-150.432 336-336s-150.432-336-336-336c-185.568 0-336 150.432-336 336s150.432 336 336 336v0zM496 896c150.221 0 272-121.779 272-272s-121.779-272-272-272c-150.221 0-272 121.779-272 272s121.779 272 272 272v0zM496 640c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop-watch" - ], - "grid": 32 - }, - { - "id": 347, - "paths": [ - "M516.695 580.678l99.796-99.796c6.121-6.121 16.456-6.326 22.705-0.077 6.066 6.066 6.214 16.414-0.077 22.705l-99.796 99.796c2.999 6.266 4.678 13.284 4.678 20.695 0 26.51-21.49 48-48 48-7.41 0-14.428-1.679-20.695-4.678l-35.796 35.796c-6.121 6.121-16.456 6.326-22.705 0.077-6.066-6.066-6.214-16.414 0.077-22.705l35.796-35.796c-2.999-6.266-4.678-13.284-4.678-20.695 0-26.51 21.49-48 48-48 7.41 0 14.428 1.679 20.695 4.678v0 0zM767.284 375.343c60.060 65.49 96.716 152.793 96.716 248.657 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-95.864 36.656-183.167 96.716-248.657l-39.343-39.343-22.627 22.627-22.627-22.627 67.882-67.882 22.627 22.627-22.627 22.627 39.343 39.343c48.95-44.891 110.085-76.707 177.873-89.914v0c-25.155-20.538-41.216-51.794-41.216-86.801 0-61.856 50.144-112 112-112s112 50.144 112 112c0 35.007-16.061 66.263-41.216 86.801 67.788 13.208 128.924 45.023 177.873 89.914l39.343-39.343-22.627-22.627 22.627-22.627 67.882 67.882-22.627 22.627-22.627-22.627-39.343 39.343zM512 254.4c36.516-7.412 64-39.696 64-78.4 0-44.183-35.817-80-80-80s-80 35.817-80 80c0 38.703 27.484 70.987 64 78.4v-62.4h-32v-32h96v32h-32v62.4zM256.52 639.928c7.852 119.834 103.656 215.661 223.48 223.547v0-79.924c0-8.813 7.163-15.695 16-15.695 8.578 0 16 7.027 16 15.695v79.924c119.824-7.887 215.628-103.714 223.48-223.547h-79.857c-8.813 0-15.695-7.163-15.695-16 0-8.578 7.027-16 15.695-16h79.847c-7.919-119.766-103.694-215.519-223.47-223.403v0 79.78c0 8.813-7.163 15.695-16 15.695-8.578 0-16-7.027-16-15.695v-79.78c-119.776 7.884-215.551 103.636-223.47 223.403h79.847c8.813 0 15.695 7.163 15.695 16 0 8.578-7.027 16-15.695 16h-79.857zM496 896c150.221 0 272-121.779 272-272s-121.779-272-272-272c-150.221 0-272 121.779-272 272s121.779 272 272 272v0zM496 640c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop-watch" - ], - "grid": 32 - }, - { - "id": 348, - "paths": [ - "M480 514.731v-178.692c0-8.687 7.163-16.039 16-16.039 8.578 0 16 7.181 16 16.039v178.692c18.643 6.589 32 24.369 32 45.269s-13.357 38.679-32 45.269v50.692c0 8.687-7.163 16.039-16 16.039-8.578 0-16-7.181-16-16.039v-50.692c-18.643-6.589-32-24.369-32-45.269s13.357-38.679 32-45.269v0 0zM744.657 288.716l39.343-39.343-22.627-22.627 22.627-22.627 67.882 67.882-22.627 22.627-22.627-22.627-39.343 39.343c60.060 65.49 96.716 152.793 96.716 248.657 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-197.88 156.182-359.282 352-367.658v-64.342h-32v-32h96v32h-32v64.342c89.56 3.831 170.829 39.673 232.657 96.374zM496 896c185.568 0 336-150.432 336-336s-150.432-336-336-336c-185.568 0-336 150.432-336 336s150.432 336 336 336v0zM496 576c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop-watch" - ], - "grid": 32 - }, - { - "id": 349, - "paths": [ - "M480 514.731v-178.692c0-8.687 7.163-16.039 16-16.039 8.578 0 16 7.181 16 16.039v178.692c18.643 6.589 32 24.369 32 45.269s-13.357 38.679-32 45.269v50.692c0 8.687-7.163 16.039-16 16.039-8.578 0-16-7.181-16-16.039v-50.692c-18.643-6.589-32-24.369-32-45.269s13.357-38.679 32-45.269v0 0zM744.657 288.716c-61.828-56.701-143.097-92.543-232.657-96.374v0-64.342h32v-32h-96v32h32v64.342c-195.818 8.377-352 169.779-352 367.658 0 203.241 164.759 368 368 368s368-164.759 368-368c0-95.864-36.656-183.167-96.716-248.657l39.343-39.343 22.627 22.627 22.627-22.627-67.882-67.882-22.627 22.627 22.627 22.627-39.343 39.343zM496 576c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop-watch" - ], - "grid": 32 - }, - { - "id": 350, - "paths": [ - "M368 672c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0 0zM526.188 803.344c-7.675 15.451-28.473 28.564-46.093 28.564l-192.19 0c-17.408 0-31.905-14.312-31.905-31.967v-32.067c0-17.801 14.195-31.967 31.705-31.967h160.295l247.139-492.77c8.623-17.193 29.766-24.1 47.177-15.331l24.272 12.224c17.496 8.811 24.456 30.11 15.735 47.666l-256.135 515.647zM678.87 346.956l30.554 15.568 44.24-89.063c0.927-1.867 0.227-3.996-1.47-4.85l-24.272-12.224c-1.657-0.834-3.514-0.23-4.179 1.097l-44.873 89.473zM664.524 375.56l-196.774 392.347h-19.75c0 0-160-0.147-160-0.033 0 0 0.078 32.033-0.095 32.033l192.19-0c5.317-0 15.096-6.093 17.434-10.8l197.658-397.924-30.664-15.624z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hockey-stick" - ], - "grid": 32 - }, - { - "id": 351, - "paths": [ - "M720.5 412.1l-194.3 391.2c-7.7 15.5-28.5 28.6-46.1 28.6h-192.2c-17.4 0-31.9-14.3-31.9-32v-32.1c0-17.8 14.2-32 31.7-32h160.3l184.8-368.5 87.7 44.8zM734.7 383.5l47.6-95.8c8.7-17.6 1.8-38.9-15.7-47.7l-24.3-12.2c-17.4-8.8-38.6-1.9-47.2 15.3l-48 95.7 87.6 44.7zM368 671.9c26.5 0 48-21.5 48-48s-21.5-48-48-48-48 21.5-48 48 21.5 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hockey-stick" - ], - "grid": 32 - }, - { - "id": 352, - "paths": [ - "M583.889 560.223l88.111 175.685h160.295c17.51 0 31.705 14.165 31.705 31.967v32.067c0 17.655-14.497 31.967-31.905 31.967l-192.19-0c-17.621-0-38.418-13.113-46.093-28.564l-65.526-131.915 17.924-35.848 76.261 153.528c2.338 4.706 12.117 10.8 17.434 10.8l192.19 0c-0.173 0-0.095-32.033-0.095-32.033 0-0.114-160 0.033-160 0.033h-19.75l-86.233-171.941 17.872-35.744zM495.754 384.491l-17.872 35.744-22.406-44.676-30.664 15.624 33.687 67.818-17.924 35.848-102.898-207.153c-8.721-17.556-1.76-38.855 15.735-47.666l24.272-12.224c17.411-8.769 38.554-1.862 47.177 15.331l70.893 141.354zM441.13 346.956l-44.873-89.473c-0.665-1.327-2.522-1.931-4.179-1.097l-24.272 12.224c-1.696 0.854-2.397 2.984-1.47 4.85l44.24 89.063 30.554-15.568zM430.188 803.344c-7.675 15.451-28.473 28.564-46.093 28.564l-192.19 0c-17.408 0-31.905-14.312-31.905-31.967v-32.067c0-17.801 14.195-31.967 31.705-31.967h160.295l247.139-492.77c8.623-17.193 29.766-24.1 47.177-15.331l24.272 12.224c17.496 8.811 24.456 30.11 15.735 47.666l-256.135 515.647zM582.87 346.956l30.554 15.568 44.24-89.063c0.927-1.867 0.227-3.996-1.47-4.85l-24.272-12.224c-1.657-0.834-3.514-0.23-4.179 1.097l-44.873 89.473zM380.604 750.253l-8.854 17.654h-19.75c0 0-160-0.147-160-0.033 0 0 0.078 32.033-0.095 32.033l192.19-0c5.317-0 15.096-6.093 17.434-10.8l197.658-397.924-30.664-15.624-187.92 374.693z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hockey-sticks" - ], - "grid": 32 - }, - { - "id": 353, - "paths": [ - "M627.738 405.639l-197.55 397.705c-7.675 15.451-28.473 28.564-46.093 28.564l-192.19 0c-17.408 0-31.905-14.312-31.905-31.967v-32.067c0-17.801 14.195-31.967 31.705-31.967h160.295l188.048-374.949 87.69 44.68zM641.975 376.978l44.349-89.282c8.721-17.556 1.76-38.855-15.735-47.666l-24.272-12.224c-17.411-8.769-38.554-1.862-47.177 15.331l-44.745 89.217 87.58 44.624zM439.99 495.928l-44.622-89.833 87.692-44.681 12.112 24.151-55.182 110.363zM527.701 672.506l64.99 130.838c7.675 15.451 28.473 28.564 46.093 28.564l192.19 0c17.408 0 31.905-14.312 31.905-31.967v-32.067c0-17.801-14.195-31.967-31.705-31.967h-160.295l-87.573-174.612-55.605 111.211zM381.131 377.434l-44.575-89.738c-8.721-17.556-1.76-38.855 15.735-47.666l24.272-12.224c17.411-8.769 38.554-1.862 47.177 15.331l44.973 89.672-87.582 44.625z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hockey-sticks" - ], - "grid": 32 - }, - { - "id": 354, - "paths": [ - "M385.371 869.281l60.857-517.281h99.544l60.68 515.783-110.452 84.238-110.629-82.74zM353.677 864.806l-95.773 84.473-63.037-63.936 125.133-533.344h94.007l-60.33 512.806zM638.567 866.881l-60.574-514.881h94.007l124.529 533.344-61.793 63.936-96.169-82.398zM704 352v-80c0-114.875-93.125-208-208-208s-208 93.125-208 208v80l-128 544 96 96 112-96 128 96 128-96 112 96 96-96-128-544zM320 320v-48c0-97.202 78.798-176 176-176s176 78.798 176 176v48h-352z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shuttlecock" - ], - "grid": 32 - }, - { - "id": 355, - "paths": [ - "M704 320v-48c0-114.875-93.125-208-208-208s-208 93.125-208 208v48h416zM545.772 352h-99.544l-62.326 529.767-2.683 24.147 114.781 86.086 114.781-86.086-2.672-24.045-62.338-529.869zM348.242 912.935l-92.242 79.065-96-96 128-544h126.007l-61.898 526.131-3.867 34.805zM642.175 352h62.615l127.21 544-95.408 96-91.673-79.065-3.832-34.702-61.528-526.233h62.615z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shuttlecock" - ], - "grid": 32 - }, - { - "id": 356, - "paths": [ - "M384 272v411.442c-131.677 21.93-224 73.025-224 132.558 0 79.529 164.759 144 368 144s368-64.471 368-144c0-79.529-164.759-144-368-144-39.053 0-76.685 2.38-112 6.791v0-244.505l416-178.286-448-192v208zM416 710.373c35.031-4.127 72.729-6.373 112-6.373 185.568 0 336 50.144 336 112s-150.432 112-336 112c-185.568 0-336-50.144-336-112 0-44.678 78.483-83.246 192-101.222v54.182c-36.516 4.447-64 23.818-64 47.040 0 26.51 35.817 48 80 48s80-21.49 80-48c0-23.222-27.484-42.592-64-47.040v-58.587zM416 112l336 144-336 144v-288zM656 832c26.51 0 48-14.327 48-32s-21.49-32-48-32c-26.51 0-48 14.327-48 32s21.49 32 48 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "golf" - ], - "grid": 32 - }, - { - "id": 357, - "paths": [ - "M384 272v560h32v-397.714l416-178.286-448-192v208zM448 675.412c25.756-2.234 52.526-3.412 80-3.412 203.241 0 368 64.471 368 144s-164.759 144-368 144c-203.241 0-368-64.471-368-144 0-54.583 77.608-102.072 192-126.494v88.091c-19.431 8.757-32 22.7-32 38.404 0 26.51 35.817 48 80 48s80-21.49 80-48c0-15.704-12.569-29.646-32-38.404v-102.184zM656 832c26.51 0 48-14.327 48-32s-21.49-32-48-32c-26.51 0-48 14.327-48 32s21.49 32 48 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "golf" - ], - "grid": 32 - }, - { - "id": 358, - "paths": [ - "M575.196 704.796v0 0c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v-106.973l-256-256v105.373h-32v-160h160v32h-105.652l265.652 267.991v117.609zM287.196 677.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM735.196 453.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM575.196 229.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM559.196 831.196c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "move" - ], - "grid": 32 - }, - { - "id": 359, - "paths": [ - "M575.196 704.796v-117.609l-265.652-267.991h105.652v-32h-160v160h32v-105.373l256 256v106.973c-36.516 7.412-64 39.696-64 78.4 0 44.183 35.817 80 80 80s80-35.817 80-80c0-38.703-27.484-70.987-64-78.4v0zM287.196 677.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM735.196 453.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM575.196 229.823l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "move" - ], - "grid": 32 - }, - { - "id": 360, - "paths": [ - "M672 737.6v0 0c36.516 7.412 64 39.696 64 78.4 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-38.703 27.484-70.987 64-78.4v-74.973l-256-256v105.373h-32v-160h160v32h-105.652l265.652 267.991v85.609zM416 710.627l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM672 454.627l-56.569 56.569-22.627-22.627 56.569-56.569-56.569-56.569 22.627-22.627 56.569 56.569 56.569-56.569 22.627 22.627-56.569 56.569 56.569 56.569-22.627 22.627-56.569-56.569zM448 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM416 128h-31.912c-35.343 0-64.004 28.521-64.088 64h-32.083c-35.301 0-63.918 28.472-63.918 64.115v671.77c0 35.41 28.51 64.115 63.918 64.115h480.165c35.301 0 63.918-28.472 63.918-64.115v-671.77c0-35.41-28.51-64.115-63.918-64.115h-32.083c-0.084-35.361-28.645-64-64.088-64h-31.912c-0.029-53.024-43.207-96-96.296-96h-31.408c-53.165 0-96.267 42.82-96.296 96v0 0zM736 224h32.001c17.448 0 31.999 14.371 31.999 32.098v671.803c0 18.053-14.326 32.098-31.999 32.098h-480.003c-17.448 0-31.999-14.371-31.999-32.098v-671.803c0-18.053 14.326-32.098 31.999-32.098h32.001c0.084 35.361 28.645 64 64.088 64h287.823c35.343 0 64.004-28.521 64.088-64v0 0zM528 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM656 864c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-move" - ], - "grid": 32 - }, - { - "id": 361, - "paths": [ - "M448 160v-32.067c0-35.189 28.724-63.933 64.156-63.933h31.688c35.551 0 64.156 28.624 64.156 63.933v32.067h64.142c17.624 0 31.858 14.312 31.858 31.967v32.067c0 17.801-14.264 31.967-31.858 31.967h-288.283c-17.624 0-31.858-14.312-31.858-31.967v-32.067c0-17.801 14.264-31.967 31.858-31.967h64.142zM736 192h32.083c35.408 0 63.918 28.705 63.918 64.115v671.77c0 35.643-28.617 64.115-63.918 64.115h-480.165c-35.408 0-63.918-28.705-63.918-64.115v-671.77c0-35.643 28.617-64.115 63.918-64.115h32.083c-0 0.052-0 0.104-0 0.156v31.688c0 35.432 28.593 64.156 64.088 64.156h287.823c35.395 0 64.088-28.605 64.088-64.156v-31.688c0-0.052-0-0.104-0-0.156v0 0zM672 769.6v-85.609l-265.652-267.991h105.652v-32h-160v160h32v-105.373l256 256v74.973c-36.516 7.412-64 39.696-64 78.4 0 44.183 35.817 80 80 80s80-35.817 80-80c0-38.703-27.484-70.987-64-78.4v0 0zM416 742.627l56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569zM672 486.627l56.569 56.569 22.627-22.627-56.569-56.569 56.569-56.569-22.627-22.627-56.569 56.569-56.569-56.569-22.627 22.627 56.569 56.569-56.569 56.569 22.627 22.627 56.569-56.569zM656 896c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM528 160c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clipboard-move" - ], - "grid": 32 - }, - { - "id": 362, - "paths": [ - "M320 534.666v0 0c-58.92-52.735-96-129.37-96-214.666 0-159.058 128.942-288 288-288s288 128.942 288 288c0 85.296-37.080 161.931-96 214.666v457.334l-192-192-192 192v-457.334zM352 559.502v355.697l160-160 160 160v-355.697c-45.763 30.633-100.795 48.498-160 48.498s-114.237-17.865-160-48.498v0 0zM512 576c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0zM512 512v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 480c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 363, - "paths": [ - "M320 576.023v415.977l192-192 192 192v-415.977c-53.482 40.172-119.961 63.977-192 63.977s-138.518-23.804-192-63.977v0 0zM512 608v0c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.058 0 288 128.942 288 288s-128.942 288-288 288zM512 512c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0zM512 480c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 364, - "paths": [ - "M320 534.666v0 0c-58.92-52.735-96-129.37-96-214.666 0-159.058 128.942-288 288-288s288 128.942 288 288c0 85.296-37.080 161.931-96 214.666v457.334l-192-192-192 192v-457.334zM352 559.502v355.697l160-160 160 160v-355.697c-45.763 30.633-100.795 48.498-160 48.498s-114.237-17.865-160-48.498v0 0zM512 576c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0zM512 406.154l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 365, - "paths": [ - "M320 576.023v415.977l192-192 192 192v-415.977c-53.482 40.172-119.961 63.977-192 63.977s-138.518-23.804-192-63.977v0 0zM512 608c159.058 0 288-128.942 288-288s-128.942-288-288-288c-159.058 0-288 128.942-288 288s128.942 288 288 288v0zM512 406.154l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 366, - "paths": [ - "M512.231 639.999l-140.984 367.275-55.22-124.027-124.027 55.22 139.295-362.876c-64.959-52.806-106.462-133.352-106.462-223.591 0-159.058 128.942-288 288-288s288 128.942 288 288c0 90.239-41.503 170.785-106.462 223.591l139.295 362.876-124.027-55.22-55.22 124.027-140.984-367.275c-0.201 0-0.402 0.001-0.603 0.001s-0.402-0-0.603-0.001v0 0zM478.722 638.001v0 0c-43.999-5.192-84.96-20.303-120.587-43.034l-108.737 283.27 82.685-36.814 36.814 82.685 109.826-286.107zM667.533 594.967v0 0c-35.627 22.731-76.589 37.842-120.587 43.034l109.826 286.107 36.814-82.685 82.685 36.814-108.737-283.27zM512.834 608c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0zM512.834 544v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512.834 512c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 367, - "paths": [ - "M500.044 671.749l-128.796 335.525-55.22-124.027-124.027 55.22 127.293-331.609c50.579 38.469 112.955 62.225 180.751 64.89l-0-0zM706.375 606.859l127.293 331.609-124.027-55.22-55.22 124.027-128.796-335.525c67.795-2.665 130.172-26.421 180.751-64.89v0 0zM512.834 640v0c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.058 0 288 128.942 288 288s-128.942 288-288 288zM512.834 544c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0zM512.834 512c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 368, - "paths": [ - "M512.231 639.999l-140.984 367.275-55.22-124.027-124.027 55.22 139.295-362.876c-64.959-52.806-106.462-133.352-106.462-223.591 0-159.058 128.942-288 288-288s288 128.942 288 288c0 90.239-41.503 170.785-106.462 223.591l139.295 362.876-124.027-55.22-55.22 124.027-140.984-367.275c-0.201 0-0.402 0.001-0.603 0.001s-0.402-0-0.603-0.001v0 0zM478.722 638.001v0 0c-43.999-5.192-84.96-20.303-120.587-43.034l-108.737 283.27 82.685-36.814 36.814 82.685 109.826-286.107zM667.533 594.967v0 0c-35.627 22.731-76.589 37.842-120.587 43.034l109.826 286.107 36.814-82.685 82.685 36.814-108.737-283.27zM512.834 608c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0zM512.834 438.154l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 369, - "paths": [ - "M500.044 671.749l-128.796 335.525-55.22-124.027-124.027 55.22 127.293-331.609c50.579 38.469 112.955 62.225 180.751 64.89l-0-0zM706.375 606.859l127.293 331.609-124.027-55.22-55.22 124.027-128.796-335.525c67.795-2.665 130.172-26.421 180.751-64.89v0 0zM512.834 640c159.058 0 288-128.942 288-288s-128.942-288-288-288c-159.058 0-288 128.942-288 288s128.942 288 288 288v0zM512.834 438.154l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "award" - ], - "grid": 32 - }, - { - "id": 370, - "paths": [ - "M488.066 403.379v0 0c7.534-0.591 15.15-0.892 22.837-0.892 7.592 0 15.116 0.294 22.561 0.871l150.038-371.357 29.621 11.968-146.989 363.809c43.266 8.403 83.074 26.492 117.076 51.919l148.592-367.778 29.719 12.007-152.524 377.509c55.371 52.486 89.906 126.736 89.906 209.053 0 159.058-128.942 288-288 288s-288-128.942-288-288c0-82.214 34.449-156.382 89.7-208.857l-152.603-377.705 29.67-11.987 148.663 367.955c33.976-25.468 73.766-43.602 117.021-52.054l-147.005-363.851 29.67-11.987 150.047 371.379zM510.903 946.486c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0zM510.903 882.486v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM510.903 850.486c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 371, - "paths": [ - "M545.976 372.386l137.525-340.386 178.019 71.924-139.74 345.869c-48.049-42.131-108.822-70.105-175.804-77.407v0 0zM299.815 449.978l-139.815-346.053 178.019-71.924 137.537 340.416c-66.972 7.359-127.725 35.385-175.742 77.561v0 0zM510.903 978.486v0c-159.058 0-288-128.942-288-288s128.942-288 288-288c159.058 0 288 128.942 288 288s-128.942 288-288 288zM510.903 882.486c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0zM510.903 850.486c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 372, - "paths": [ - "M488.066 403.379v0 0c7.534-0.591 15.15-0.892 22.837-0.892 7.592 0 15.116 0.294 22.561 0.871l150.038-371.357 29.621 11.968-146.989 363.809c43.266 8.403 83.074 26.492 117.076 51.919l148.592-367.778 29.719 12.007-152.524 377.509c55.371 52.486 89.906 126.736 89.906 209.053 0 159.058-128.942 288-288 288s-288-128.942-288-288c0-82.214 34.449-156.382 89.7-208.857l-152.603-377.705 29.67-11.987 148.663 367.955c33.976-25.468 73.766-43.602 117.021-52.054l-147.005-363.851 29.67-11.987 150.047 371.379zM510.903 946.486c141.385 0 256-114.615 256-256s-114.615-256-256-256c-141.385 0-256 114.615-256 256s114.615 256 256 256v0 0zM510.903 776.64l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 373, - "paths": [ - "M545.976 372.386l137.525-340.386 178.019 71.924-139.74 345.869c-48.049-42.131-108.822-70.105-175.804-77.407v0 0zM299.815 449.978l-139.815-346.053 178.019-71.924 137.537 340.416c-66.972 7.359-127.725 35.385-175.742 77.561v0 0zM510.903 978.486c159.058 0 288-128.942 288-288s-128.942-288-288-288c-159.058 0-288 128.942-288 288s128.942 288 288 288v0 0zM510.903 776.64l-112 73.846 48-128-96-64h112l48-128 48 128h112l-96 64 48 128-112-73.846z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medal" - ], - "grid": 32 - }, - { - "id": 374, - "paths": [ - "M415.471 417.544v0c1.293 0.46 2.677 0.947 4.147 1.459 11.754 4.093 24.609 8.191 38.123 12.012 23.103 6.533 45.659 11.558 66.666 14.481 13.233 1.842 25.571 2.803 36.831 2.803 29.268 0 59.639-6.001 89.198-16.031 10.395-3.527 19.927-7.303 28.367-11.066 4.983-2.222 8.432-3.912 10.121-4.805l14.963 28.286c-2.3 1.217-6.389 3.22-12.052 5.745-9.305 4.149-19.747 8.285-31.117 12.143-32.624 11.070-66.319 17.728-99.48 17.728-12.839 0-26.627-1.075-41.242-3.109-22.607-3.146-46.549-8.48-70.963-15.384-14.161-4.005-27.614-8.293-39.939-12.585-1.669-0.581-3.237-1.134-4.7-1.656-30.919-0.463-116.394 3.746-116.394 64.432 0 100.164 96 94.887 124.8 192h355.2v-320.167c0-88.273-71.657-159.833-160.035-159.833h-31.93c-88.385 0-160.23 71.491-160.472 159.811l-0.092 33.734zM384 736c0-98.445-127.705-96-128-224-0.221-96 128-96 128-96v-32.094c0-105.943 86.037-191.906 192.17-191.906h31.66c105.974 0 192.17 85.869 192.17 191.794v416.206c0 35.593-28.693 64-64.088 64h-287.823c-35.495 0-64.088-28.654-64.088-64v-64zM416 736v64.033c0 17.655 14.235 31.967 31.858 31.967h288.283c17.595 0 31.858-14.165 31.858-31.967v-64.033h-352zM448 768v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "boxing-glove" - ], - "grid": 32 - }, - { - "id": 375, - "paths": [ - "M256 512c0.259 112.354 98.684 124.204 122.742 192h421.258v-320.206c0-105.925-86.195-191.794-192.17-191.794h-31.66c-106.132 0-192.17 85.964-192.17 191.906v18.688c15.46 7.697 27.16 13.393 28.334 13.82 49.433 17.964 104.591 31.887 148.905 31.887 29.268 0 59.639-6.001 89.198-16.031 10.395-3.527 19.927-7.303 28.367-11.066 4.983-2.222 8.432-3.912 10.121-4.805l14.963 28.286c-2.3 1.217-6.389 3.22-12.052 5.745-9.305 4.149-19.747 8.285-31.117 12.143-32.624 11.070-66.319 17.728-99.48 17.728-49.064 0-107.115-14.654-159.834-33.812-3.025-1.099-13.361-6.133-32.161-15.495-7.276-3.625-14.391-7.187-21.481-10.75-38.037 7.619-91.905 29.503-91.762 91.756v0zM384 736h416v64c0 35.593-28.693 64-64.088 64h-287.823c-35.495 0-64.088-28.654-64.088-64v-64zM448 768v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "boxing-glove" - ], - "grid": 32 - }, - { - "id": 376, - "paths": [ - "M262.817 557.111v0 0c-10.767-8.225-24.221-13.111-38.817-13.111-35.346 0-64 28.654-64 64s28.654 64 64 64c14.595 0 28.050-4.886 38.817-13.111 22.302 81.341 96.763 141.111 185.183 141.111 106.039 0 192-85.961 192-192 0-13.801-1.456-27.262-4.223-40.238l260.223-55.762v-96h-320v64h-96v-64h-32c-88.421 0-162.881 59.77-185.183 141.111zM608 448h256v38.4l-269.152 57.971c8.461 19.501 13.152 41.017 13.152 63.629 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-77.326 54.854-141.84 127.772-156.753 10.41-2.129 21.188-3.247 32.228-3.247v64h160v-64zM224 576v0c17.796 0 32 14.327 32 32 0 17.796-14.327 32-32 32-17.796 0-32-14.327-32-32 0-17.796 14.327-32 32-32zM512 224v128h32v-128h-32zM675.83 256.672l-67.83 108.55 27.138 16.957 67.83-108.55-27.138-16.957zM379.138 256.672l67.83 108.55-27.138 16.957-67.83-108.55 27.138-16.957z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "whistle" - ], - "grid": 32 - }, - { - "id": 377, - "paths": [ - "M262.817 557.111c22.302-81.341 96.763-141.111 185.183-141.111h32v64h96v-64h320v96l-260.223 55.762c2.767 12.976 4.223 26.437 4.223 40.238 0 106.039-85.961 192-192 192-88.421 0-162.881-59.77-185.183-141.111-10.767 8.225-24.221 13.111-38.817 13.111-35.346 0-64-28.654-64-64s28.654-64 64-64c14.595 0 28.050 4.886 38.817 13.111v0 0zM224 576c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM512 224v128h32v-128h-32zM675.83 256.672l-67.83 108.55 27.138 16.957 67.83-108.55-27.138-16.957zM379.138 256.672l67.83 108.55-27.138 16.957-67.83-108.55 27.138-16.957z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "whistle" - ], - "grid": 32 - }, - { - "id": 378, - "paths": [ - "M175.663 750.988l15.333-7.423c-39.875-62.21-62.997-136.187-62.997-215.565 0-220.914 179.086-400 400-400s400 179.086 400 400c0 93.013-31.747 178.61-84.996 246.549-2.672 1.15 4.107-1.733 10.123-4.54 18.325-8.55 36.299-18.743 53.899-30.427 19.937-13.236 37.673-27.41 52.974-41.57v42.314c-10.914 8.854-22.684 17.557-35.275 25.916-115.906 76.948-248.908 94.638-389.235 15.704-128.701-72.394-258.077-56.001-378.147 15.654-22.804 13.609-43.3 28.192-61.139 42.753-0.068 0.055-0.203-40.343-0.203-40.343 13.836-10.221 28.847-20.282 44.944-29.888 10.573-6.31 21.227-12.223 31.956-17.718 0.958-0.491 2.764-1.415 2.764-1.415v0zM346.277 703.417v0c-5.272 0.261 4.289-0.328 14.371-0.427 62.896-0.618 126.816 15.226 190.53 51.065 0.704 0.396 2.006 1.086 3.705 1.97 67.232-54.652 122.173-126.042 157.715-210.857-54.977-20.518-114.292-32.136-176.193-33.102-48.484 81.061-114.379 145.52-190.128 191.351zM782.037 794.251c39.226-37.437 70.191-83.455 89.883-135.041 3.342-8.755 6.676-18.98 5.403-15.145-39.859-35.193-85.073-64.461-134.263-86.426-35.671 85.245-89.813 157.716-156.018 214.423-0.308-0.136-0.617-0.273-0.925-0.41 62.2 27.671 122.315 34.916 179.692 25.668 8.679-1.399 19.443-3.766 16.229-3.068v0zM525.624 927.993c0.791 0.005 1.583 0.007 2.376 0.007 0.796 0 1.592-0.002 2.387-0.007h-4.763zM249.184 287.813v0 0c2.237-2.594-9.591 11.249-17.059 21.329-45.321 61.169-72.125 136.883-72.125 218.859 0 59.182 13.97 115.1 38.793 164.638 7.553 15.074 21.495 37.305 19.516 34.229 52.826-17.058 103.055-42.424 148.545-75.521-82.326-107.864-120.9-236.472-117.67-363.534zM284.223 252.32c-12.112 131.273 23.281 266.886 108.627 378.836 44.962-37.242 84.431-82.602 116.052-135.448-57.245-102.783-78.677-216.081-68.21-325.289 2.427-0.59-10.191 2.522-18.75 5.094-42.471 12.761-81.71 32.988-116.194 59.156-11.83 8.977-25.685 21.331-21.526 17.65v0 0zM857.965 364.883v0 0c1.013 2.045-8.812-17.167-15.589-28.274-64.614-105.907-181.238-176.609-314.376-176.609-10.128 0-20.161 0.409-30.082 1.212-10.94 0.885-27.059 3.188-24.377 2.79-4.301 37.741-4.558 76.059-0.586 114.271 139.273-18.089 274.379 15.522 385.010 86.61zM880.167 420.884c-110.741-86.093-254.243-129.228-402.784-109.995 9.717 57.884 29.315 115.076 59.436 169.179 133.094 2.055 254.923 50.541 350.002 129.975-0.598 2.625 3.21-14.65 4.965-26.173 2.775-18.218 4.214-36.876 4.214-55.87 0-30.448-3.698-60.033-10.669-88.329-3.248-13.185-7.202-25.498-5.164-18.787v0 0zM191.334 839.409c114.937-53.286 237.769-58.021 359.844 10.646 111.406 62.666 216.668 59.066 312.156 11.004v35.491c-100.57 45.867-211.698 46.727-327.844-18.605-116.641-65.61-233.836-58.293-344.156-3.007v-35.53z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volleyball-water" - ], - "grid": 32 - }, - { - "id": 379, - "paths": [ - "M635.378 725.494c44.362-48.056 81.137-104.418 107.682-167.855 59.989 26.786 114.064 64.435 159.724 110.446 0.912-2.439-2.539 6.804-5.434 13.745-80.474 50.522-168.58 69.773-261.972 43.664v0 0zM600.999 713.9c46.333-47.511 84.574-104.241 111.599-168.733-54.977-20.518-114.292-32.136-176.193-33.102-30.399 50.823-67.641 95.121-109.866 132.392 41.406 7.341 83.066 22.212 124.639 45.597 16.75 9.422 33.361 17.346 49.821 23.846v0 0zM357.708 639.031c-86.412-119.631-120.593-263.059-105.094-401.139 1.123-1.066-13.75 13.446-21.745 22.311-63.942 70.901-102.868 164.803-102.868 267.797 0 58.934 12.745 114.89 35.629 165.264 62.568-33.579 127.742-53.041 194.078-54.234v0 0zM921.647 456.608c-114.984-109.544-276.406-167.453-444.264-145.719 9.717 57.884 29.315 115.076 59.436 169.179 146.035 2.255 278.508 60.409 376.964 154.009-0.548 1.996 2.817-10.478 4.68-18.855 6.244-28.077 9.537-57.265 9.537-87.222 0-15.363-0.866-30.524-2.552-45.436-1.847-16.337-5.141-33.396-3.8-25.956v0zM907.173 400.269c-118.402-94.921-273.537-142.866-434.217-121.997-5.133-49.389-3.204-98.954 5.394-147.221-1.641 0.203 5.747-0.706 11.124-1.22 12.679-1.212 25.53-1.831 38.527-1.831 167.707 0 311.309 103.209 370.752 249.577 4.615 11.363 9.774 26.715 8.42 22.693v0zM290.482 206.121c-26.022 145.169 6.96 299.888 102.367 425.035 44.962-37.242 84.431-82.602 116.052-135.448-63.175-113.43-82.733-239.666-63.934-359.079 1.010-0.213-5.644 1.209-9.942 2.232-45.316 10.787-87.643 29.285-125.517 54.029-9.076 5.93-21.519 15.074-19.025 13.23v0zM96 800.009c13.836-10.221 28.847-20.282 44.944-29.888 129.022-76.997 270.126-94.877 410.234-16.066 128.678 72.381 249.158 56.356 355.848-14.473 19.937-13.236 37.673-27.41 52.974-41.57v42.314c-10.914 8.854-22.684 17.557-35.275 25.916-115.906 76.948-248.908 94.638-389.235 15.704-128.701-72.394-258.077-56.001-378.147 15.654-22.804 13.609-43.3 28.192-61.139 42.753-0.068 0.055-0.136 0.111-0.203 0.166l0-40.509zM191.334 839.409c114.937-53.286 237.769-58.021 359.844 10.646 111.406 62.666 216.668 59.066 312.156 11.004v35.491c-100.57 45.867-211.698 46.727-327.844-18.605-116.641-65.61-233.836-58.293-344.156-3.007v-35.53z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volleyball-water" - ], - "grid": 32 - }, - { - "id": 380, - "paths": [ - "M768.562 557.333c0 0-57.8 29.279-147.495 14.722-6.211-1.008-15.166-3.096-13.068-2.667v-127.851c-25.751-4.628-53.432-12.638-82.119-25.556-27.78-12.51-53.882-20.608-77.881-25.551v127.303c3.321 0.592-4.299-0.157-11.638-1.198-83.25-11.807-148.362 9.276-148.362 9.276v-128.637c0.004-0.001 71.281-23.257 160-7.44v-127.303c-97.262-20.031-159.996 11.762-160 11.764v-127.188c0 0 62.729-31.549 160-11.726v126.453c25.643 4.571 52.743 12.407 80 25.012 28.518 13.187 55.348 21.604 80 26.643v-127.362c92.73 16.643 160.562-10.22 160.562-10.22v129.264c-0.36-1.217-0.562-1.888-0.562-1.888-0.004 0.002-67.573 26.964-160 10.354v127.851c22.708 4.642 43.568 6.418 62.197 6.418 60.769 0 97.8-18.902 97.803-18.904l0.562 128.431zM256 927.806h32v-366.565c44.073-15.856 130.577-33.089 240 14.565 160.725 69.996 272-0 272-0v-448c0 0-111.24 71.563-272 0s-272-0-272-0v800z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "checkered-flag" - ], - "grid": 32 - }, - { - "id": 381, - "paths": [ - "M608 186.025v127.362c96.781 19.784 159.996-12.483 160-12.485l0.562-0.46v130.74h-0.562c-0.004 0.002-67.573 26.964-160 10.354v128.125c-24.578-5.015-51.312-13.359-79.719-26.394-27.356-12.553-54.553-20.345-80.281-24.882v-127.956c-97.262-20.031-159.996 11.762-160 11.764v-133.020c0.004-0.001 71.281-23.257 160-7.44v-126.453 0c24.079 4.907 50.275 12.962 78.16 25.423 28.581 12.772 56.165 20.715 81.84 25.323zM256 383.806v544h32v-366.565c44.073-15.856 130.577-33.089 240 14.565 160.725 69.996 272-0 272-0v-448c0 0-111.24 71.563-272 0s-272-0-272-0v256zM448 262.429v0 0c24 4.943 50.101 13.041 77.881 25.551 28.687 12.918 56.367 20.928 82.119 25.556v127.851c-24.652-5.039-51.482-13.456-80-26.643-27.257-12.605-54.357-20.44-80-25.012v-127.303z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "checkered-flag" - ], - "grid": 32 - }, - { - "id": 382, - "paths": [ - "M288 760.674l-32 32v7.326 0 96h-32v-71.326l-41.373 41.373-22.627-22.627 43.419-43.419h-75.419v-32h107.419l32-32h-75.419v-32h107.419l170.29-170.29-21.71-21.71 96-32-32 96-19.663-19.663-172.337 172.337v103.326h-32v-71.326zM248.926 672c-36.003-55.218-56.926-121.166-56.926-192 0-194.404 157.596-352 352-352s352 157.596 352 352c0 194.404-157.596 352-352 352-70.834 0-136.782-20.923-192-56.926v-34.298l2.727-2.727c53.007 38.945 118.454 61.951 189.273 61.951 176.731 0 320-143.269 320-320s-143.269-320-320-320c-176.731 0-320 143.269-320 320 0 71.278 23.304 137.113 62.71 190.302l-1.698 1.698h-36.085zM448.106 484.541c-0.070-1.505-0.106-3.019-0.106-4.541 0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96-1.522 0-3.036-0.035-4.541-0.106l9.031-31.608 0.476-0.476c33.026-2.534 59.034-30.135 59.034-63.81 0-35.346-28.654-64-64-64-33.793 0-61.469 26.191-63.836 59.382l-32.059 9.16zM355.676 601.335c-22.574-34.965-35.676-76.62-35.676-121.335 0-123.712 100.288-224 224-224s224 100.288 224 224c0 123.712-100.288 224-224 224-44.252 0-85.507-12.832-120.246-34.978l23.275-23.275c28.459 16.686 61.598 26.252 96.972 26.252 106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192 0 35.84 9.82 69.386 26.916 98.095l-23.24 23.24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "target-arrow" - ], - "grid": 32 - }, - { - "id": 383, - "paths": [ - "M288 760.674l-32 32v7.326 0 96h-32v-71.326l-41.373 41.373-22.627-22.627 43.419-43.419h-75.419v-32h107.419l32-32h-75.419v-32h107.419l170.29-170.29-21.71-21.71 96-32-32 96-19.663-19.663-172.337 172.337v103.326h-32v-71.326zM248.926 672c-36.003-55.218-56.926-121.166-56.926-192 0-194.404 157.596-352 352-352s352 157.596 352 352c0 194.404-157.596 352-352 352-70.834 0-136.782-20.923-192-56.926v-34.298l71.754-71.754c34.74 22.146 75.995 34.978 120.246 34.978 123.712 0 224-100.288 224-224s-100.288-224-224-224c-123.712 0-224 100.288-224 224 0 44.715 13.102 86.37 35.676 121.335l-70.665 70.665h-36.085zM495.899 596.877l-48.871 48.871c28.459 16.686 61.598 26.252 96.972 26.252 106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192 0 35.84 9.82 69.386 26.916 98.095v0l48.832-48.832-30.447-30.207 50.805-14.516c-0.070-1.505-0.106-3.019-0.106-4.541 0-53.019 42.981-96 96-96s96 42.981 96 96c0 53.019-42.981 96-96 96-1.522 0-3.036-0.035-4.541-0.106l-14.292 50.020-29.269-29.038zM548.618 543.836c33.19-2.367 59.382-30.043 59.382-63.836 0-35.346-28.654-64-64-64-33.793 0-61.469 26.191-63.836 59.382l95.836-27.382-27.382 95.836z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "target-arrow" - ], - "grid": 32 - }, - { - "id": 384, - "paths": [ - "M512 864v0c-194.404 0-352-157.596-352-352s157.596-352 352-352c194.404 0 352 157.596 352 352s-157.596 352-352 352zM512 832c176.731 0 320-143.269 320-320s-143.269-320-320-320c-176.731 0-320 143.269-320 320s143.269 320 320 320v0zM512 736v0c-123.712 0-224-100.288-224-224s100.288-224 224-224c123.712 0 224 100.288 224 224s-100.288 224-224 224zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0zM512 608v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "target" - ], - "grid": 32 - }, - { - "id": 385, - "paths": [ - "M512 864v0c-194.404 0-352-157.596-352-352s157.596-352 352-352c194.404 0 352 157.596 352 352s-157.596 352-352 352zM512 736c123.712 0 224-100.288 224-224s-100.288-224-224-224c-123.712 0-224 100.288-224 224s100.288 224 224 224v0zM512 704v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 608c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "target" - ], - "grid": 32 - }, - { - "id": 386, - "paths": [ - "M229.439 736c13.127 37.286 48.584 64 90.565 64h415.992c41.785 0 77.335-26.761 90.526-64h-597.084zM544 704h320c0 70.549-57.299 128-127.98 128h-416.040c-70.685 0-127.98-57.308-127.98-128h320v-480h32v480zM864 672l-288-288v288h288zM784 640h-176v-176l176 176zM288 400v0c96-160 192-176 192-176s-32 112-32 256c0 144 32 192 32 192h-288c0 0 0-112 96-272zM300.697 441.889c-73.497 139.504-73.497 198.111-73.497 198.111l208-0c0 0-19.2-57.879-19.2-160s19.2-199.305 19.2-199.305c0 0-71.691 41.972-134.503 161.193v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sailing-boat" - ], - "grid": 32 - }, - { - "id": 387, - "paths": [ - "M544 704h320c0 70.549-57.299 128-127.98 128h-416.040c-70.685 0-127.98-57.308-127.98-128h320v-480h32v480zM864 672h-288v-288l288 288zM288 400c-96 160-96 272-96 272h288c0 0-32-48-32-192s32-256 32-256c0 0-96 16-192 176v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sailing-boat" - ], - "grid": 32 - }, - { - "id": 388, - "paths": [ - "M693.476 736h10.544c70.681 0 127.98-57.451 127.98-128h-320v-480h-32v480h-320c0 28.033 9.010 53.962 24.292 75.047 9.965-4.822 19.991-9.281 30.072-13.361-7.298-8.713-13.073-18.744-16.925-29.685v0h139.971c18.152-1.374 36.404-1.403 54.724 0h402.389c-13.191 37.239-48.741 64-90.526 64h-125.152c39.071 18.425 77.335 28.769 114.632 32v0 0zM832 576l-288-288v288h288zM752 544h-176v-176l176 176zM256 304v0c96-160 192-176 192-176s-32 112-32 256c0 144 32 192 32 192h-288c0 0 0-112 96-272zM268.697 345.889c-73.497 139.504-73.497 198.111-73.497 198.111l208-0c0 0-19.2-57.879-19.2-160s19.2-199.305 19.2-199.305c0 0-71.691 41.972-134.503 161.193v0zM96 768.009c13.836-10.221 28.847-20.282 44.944-29.888 129.022-76.997 270.126-94.877 410.234-16.066 128.678 72.381 249.158 56.356 355.848-14.473 19.937-13.236 37.673-27.41 52.974-41.57v42.314c-10.914 8.854-22.684 17.557-35.275 25.916-115.906 76.948-248.908 94.638-389.235 15.704-128.701-72.394-258.077-56.001-378.147 15.654-22.804 13.609-43.3 28.192-61.139 42.753-0.068 0.055-0.136 0.111-0.203 0.166l0-40.509zM191.334 807.409c114.937-53.286 237.769-58.021 359.844 10.646 111.406 62.666 216.668 59.066 312.156 11.004v35.491c-100.57 45.867-211.698 46.727-327.844-18.605-116.641-65.61-233.836-58.293-344.156-3.007v-35.53z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sailing-boat-water" - ], - "grid": 32 - }, - { - "id": 389, - "paths": [ - "M693.476 736h10.544c70.681 0 127.98-57.451 127.98-128h-320v-480h-32v480h-320c0 28.033 9.010 53.962 24.292 75.047 117.145-56.689 242.744-63.211 367.553 6.994 48.473 27.266 95.784 41.987 141.632 45.959v0 0zM832 576h-288v-288l288 288zM256 304c-96 160-96 272-96 272h288c0 0-32-48-32-192s32-256 32-256c0 0-96 16-192 176v0zM96 800.009c13.836-10.221 28.847-20.282 44.944-29.888 129.022-76.997 270.126-94.877 410.234-16.066 128.678 72.381 249.158 56.356 355.848-14.473 19.937-13.236 37.673-27.41 52.974-41.57v42.314c-10.914 8.854-22.684 17.557-35.275 25.916-115.906 76.948-248.908 94.638-389.235 15.704-128.701-72.394-258.077-56.001-378.147 15.654-22.804 13.609-43.3 28.192-61.139 42.753-0.068 0.055-0.136 0.111-0.203 0.166l0-40.509zM191.334 839.409c114.937-53.286 237.769-58.021 359.844 10.646 111.406 62.666 216.668 59.066 312.156 11.004v35.491c-100.57 45.867-211.698 46.727-327.844-18.605-116.641-65.61-233.836-58.293-344.156-3.007v-35.53z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sailing-boat-water" - ], - "grid": 32 - }, - { - "id": 390, - "paths": [ - "M672.798 448h62.008l1.194-64h-64l0.798 64zM658.419 480c-19.132 33.46-50.419 101.841-50.419 191.234 0 112.766 51.2 192.766 51.2 192.766h89.6c0 0 51.2-79.959 51.2-192.766 0-89.352-31.515-157.762-50.78-191.234h-90.802zM670.057 352h67.912c6.965-53.144 30.032-71.247 30.032-112 0-35.346-30.441-48.648-64-48.648s-64 13.056-64 48.648c0 40.801 23.121 58.481 30.057 112zM288.798 448h62.008l1.194-64h-64l0.798 64zM274.419 480c-19.132 33.46-50.419 101.841-50.419 191.234 0 112.766 51.2 192.766 51.2 192.766h89.6c0 0 51.2-79.959 51.2-192.766 0-89.352-31.515-157.762-50.78-191.234h-90.802zM286.057 352h67.912c6.965-53.144 30.032-71.247 30.032-112 0-35.346-30.441-48.648-64-48.648s-64 13.056-64 48.648c0 40.801 23.121 58.481 30.057 112zM448 671.234c0 128.686-64 224.766-64 224.766h-128c0 0-64-96-64-224.766s64-223.234 64-223.234v-64c0-64-32-96-32-144 0-35.593 32-80 96-80s96 44.654 96 80c0 48-32 80-32 144v64c0.009 0.013 64 94.558 64 223.234v0zM832 671.234c0 128.686-64 224.766-64 224.766h-128c0 0-64-96-64-224.766s64-223.234 64-223.234v-64c0-64-32-96-32-144 0-35.593 32-80 96-80s96 44.654 96 80c0 48-32 80-32 144v64c0.009 0.013 64 94.558 64 223.234v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-pins" - ], - "grid": 32 - }, - { - "id": 391, - "paths": [ - "M640 448v-64h128v64h-128zM622.036 480c-18.931 38.163-46.036 107.436-46.036 191.234 0 128.766 64 224.766 64 224.766h128c0 0 64-96.080 64-224.766 0-83.76-27.114-153.058-46.046-191.234h-163.918zM637.215 352c-7.786-44.155-29.215-72.72-29.215-112 0-35.593 32-80 96-80s96 44.654 96 80c0 39.28-21.429 67.845-29.215 112h-133.569zM256 448v-64h128v64h-128zM238.036 480c-18.931 38.163-46.036 107.436-46.036 191.234 0 128.766 64 224.766 64 224.766h128c0 0 64-96.080 64-224.766 0-83.76-27.114-153.058-46.046-191.234h-163.918zM253.215 352c-7.786-44.155-29.215-72.72-29.215-112 0-35.593 32-80 96-80s96 44.654 96 80c0 39.28-21.429 67.845-29.215 112h-133.569z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-pins" - ], - "grid": 32 - }, - { - "id": 392, - "paths": [ - "M449.24 822.958v0 0c-20.915-28.95-33.24-64.514-33.24-102.958 0-50.629 21.378-96.266 55.6-128.374-10.693-50.318-29.342-88.973-42.38-111.626h-90.802v0c-19.132 33.46-50.419 101.841-50.419 191.234 0 112.766 51.2 192.766 51.2 192.766h89.6c0 0 9.573-14.95 20.441-41.042zM472.623 849.327c-13.197 29.519-24.623 46.673-24.623 46.673h-128c0 0-64-96-64-224.766s64-223.234 64-223.234v-64c0-64-32-96-32-144 0-35.593 32-80 96-80s96 44.654 96 80c0 48-32 80-32 144v64c0.006 0.009 32.567 48.117 51.237 122.402 26.934-16.737 58.72-26.402 92.763-26.402 97.202 0 176 78.798 176 176s-78.798 176-176 176c-46.070 0-88.006-17.701-119.377-46.673v0 0zM352.798 448h62.008l1.194-64h-64l0.798 64zM350.057 352h67.912c6.965-53.144 30.032-71.247 30.032-112 0-35.346-30.441-48.648-64-48.648s-64 13.056-64 48.648c0 40.801 23.121 58.481 30.057 112zM592 864c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM592 640c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM560 704c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM624 704c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-pin-ball" - ], - "grid": 32 - }, - { - "id": 393, - "paths": [ - "M457.957 879.055c-5.976 10.968-9.957 16.945-9.957 16.945h-128c0 0-64-96-64-224.766 0-83.798 27.105-153.071 46.036-191.234v0h163.918c7.467 15.058 16.208 34.959 24.055 58.679-63.278 35.669-106.010 103.505-106.010 181.321 0 63.805 28.729 120.9 73.957 159.055v0 0zM320 448v-64h128v64h-128zM317.215 352c-7.786-44.155-29.215-72.72-29.215-112 0-35.593 32-80 96-80s96 44.654 96 80c0 39.28-21.429 67.845-29.215 112h-133.569zM592 896v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM592 640c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM560 704c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0zM624 704c8.837 0 16-7.163 16-16s-7.163-16-16-16c-8.837 0-16 7.163-16 16s7.163 16 16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bowling-pin-ball" - ], - "grid": 32 - }, - { - "id": 394, - "paths": [ - "M512 672v0c0 63.193 0 0 0 0 0 88.134 71.634 160 160 160 88.186 0 160-71.522 160-159.748v-544.252h96v544.125c0 141.255-114.615 255.875-256 255.875-141.097 0-256-114.615-256-256 0 0 0 123.712 0 0h-64v-96h224v96h-64zM864 672.206c0 105.925-86.177 191.794-192 191.794-106.039 0-192-85.964-192-191.906v-32.094h64v-32h-160v32h64v31.905c0 123.764 100.184 224.095 224 224.095 0 0-92.123 0 0 0 123.712 0 224-100.332 224-223.933v-352.067h-32v352.206zM864 288h32v-128h-32v128zM128 368v15.965c0 88.385 71.491 160.035 159.811 160.035h32.096c17.725 0 40.149-11.507 50.588-26.421l56.832-81.189c20.254-28.934 53.138-28.781 73.21 0l56.622 81.189c10.176 14.592 32.464 26.421 50.579 26.421h32.155c88.424 0 160.106-71.657 160.106-160.035v-15.965c0-97.202-79.063-176-175.682-176h-320.635c-97.027 0-175.682 78.996-175.682 176v0zM624.318 224c79.085 0 143.682 64.61 143.682 144v15.965c0 70.705-57.354 128.035-128.106 128.035h-32.155c-7.5 0-20.052-6.589-24.332-12.726l-56.622-81.189c-32.825-47.067-92.698-47.153-125.673-0.046l-56.832 81.189c-4.367 6.239-16.943 12.772-24.373 12.772h-32.096c-70.614 0-127.811-57.291-127.811-128.035v-15.965c0-79.418 64.415-144 143.682-144h320.635z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "diving-goggles" - ], - "grid": 32 - }, - { - "id": 395, - "paths": [ - "M512 672h64v-96h-224v96h64c0 123.712 0 0 0 0 0 141.385 114.903 256 256 256 141.385 0 256-114.62 256-255.875v-544.125h-96v544.252c0 88.227-71.814 159.748-160 159.748-88.366 0-160-71.866-160-160 0 0 0 63.193 0 0v0zM864 288v-128h32v128h-32zM128 368v15.965c0 88.385 71.491 160.035 159.811 160.035h32.096c17.725 0 40.149-11.507 50.588-26.421l56.832-81.189c20.254-28.934 53.138-28.781 73.21 0l56.622 81.189c10.176 14.592 32.464 26.421 50.579 26.421h32.155c88.424 0 160.106-71.657 160.106-160.035v-15.965c0-97.202-79.063-176-175.682-176h-320.635c-97.027 0-175.682 78.996-175.682 176v0zM624.318 224c79.085 0 143.682 64.61 143.682 144v15.965c0 70.705-57.354 128.035-128.106 128.035h-32.155c-7.5 0-20.052-6.589-24.332-12.726l-56.622-81.189c-32.825-47.067-92.698-47.153-125.673-0.046l-56.832 81.189c-4.367 6.239-16.943 12.772-24.373 12.772h-32.096c-70.614 0-127.811-57.291-127.811-128.035v-15.965c0-79.418 64.415-144 143.682-144h320.635zM624.318 256c61.411 0 111.682 50.065 111.682 111.518v15.896c0 52.8-43.024 95.622-96.106 95.622h-32.155c2.991 0 0.228-1.444 1.915 0.965l-56.622-80.84c-45.541-65.018-132.402-65.143-178.136-0.091l-56.832 80.84c1.627-2.315-1.158-0.874 1.843-0.874h-32.096c-52.929 0-95.811-42.767-95.811-95.622v-15.896c0-61.497 50.107-111.518 111.682-111.518h320.635z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "diving-goggles" - ], - "grid": 32 - }, - { - "id": 396, - "paths": [ - "M396.8 404.651l16.016 24.617c-4.523 3.516-8.974 6.975-13.355 10.334l-17.437-26.802-26.823 17.451 18.357 28.216c-4.85 3.258-9.612 6.248-14.291 8.897l-18.843-28.963-26.823 17.451 15.212 23.383c-2.971 0.503-5.908 0.767-8.812 0.767-64-0-95.826 0-95.826 0-53.116 0-96.174 43.189-96.174 96.296 0 70.529 57.534 127.704 128.090 127.704h607.795c35.41 0 64.45-28.806 64.273-63.745 0 0 8.775-288.255-64.158-288.255s-64 63.086-160 63.086c-96 0-80-63.086-128-63.086-36.124 0-68.918 13.315-98.921 31.357l-15.668-24.082-26.823 17.451 15.769 24.238c-4.075 2.894-8.096 5.831-12.065 8.785l-14.67-22.549-26.823 17.451zM891.576 499.188c2.437 25.366 3.853 51.553 4.503 76.812h-192.079c-61.359 0-80 0-144.624 8.436-0.77-4.772-2.325-10.111-5.065-15.592-7.621-15.241-22.026-24.845-42.311-24.845h-176c-21.715 0-34.31-8.397-41.689-23.155-1.479-2.959-2.654-5.953-3.568-8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155-1.471 27.306-4.341l14.091 21.658 26.823-17.451-11.471-17.631c3.941-2.288 7.962-4.789 12.082-7.498 0.724-0.476 1.45-0.958 2.179-1.445l11.987 18.425 26.823-17.451-12.858-19.764c0.692-0.528 1.393-1.064 2.103-1.609 1.519-1.165 6.059-4.684 11.26-8.714l14.272 21.937 26.823-17.451-15.636-24.033c4.12-3.074 8.137-6.004 12.060-8.793l14.541 22.351 26.823-17.451-14.653-22.522c3.389-2.036 6.716-3.947 9.989-5.735l0.754 1.547c0 0 19.508 29.404 35.387 45.283 37.843 37.843 86.793 60.686 147.314 60.686 58.918 0 112.527-15.767 159.77-42.013 12.305-6.836 32.448-20.676 36.134-23.572 3.411 15.597 5.803 33.318 7.672 52.774zM896.51 606.856c0.020 8.656-0.044 17.101-0.181 25.253-0.059 3.524-0.118 5.959-0.155 7.173 0.072 18.244-14.522 32.718-32.288 32.718h-607.795c-28.439 0-54.035-12.374-71.646-32l231.556-0c45.098 0 76.524-10.443 137.704-21.007 70.296-12.138 113.997-12.138 150.296-12.138h192.51zM165.421 608c-3.51-9.927-5.421-20.598-5.421-31.704 0-35.473 28.771-64.296 64.174-64.296 1.127 0 1.127 0 6.768 0 11.552-0 18.21-0 26.745-0 2.932 10.96 6.541 20.233 8.003 23.155 12.621 25.241 36.026 40.845 70.311 40.845h176c7.715 0 11.31 2.397 13.689 7.155 1.69 3.379 2.311 7.107 2.311 8.845-42.272 11.078-74.434 16-112 16h-250.579zM576 384c4.101 0 5.034 0.573 11.019 7.64-0.421-0.497 8.038 9.754 11.050 13.146 24.883 28.032 55.641 42.3 105.931 42.3 48.712 0 77.005-12.124 109.163-38.983 1.455-1.216 3.636-3.056 6.952-5.85 17.096-14.331 25.458-18.254 43.885-18.254-0.582 0 4.369 5.791 10.582 23.586 3.539 10.139 2.637 6.965 2.637 6.965s-9.599 4.462-10.194 4.912c-10.182 7.687-21.811 15.338-34.795 22.551-42.757 23.754-91.148 37.987-144.23 37.987-51.479 0-92.529-19.157-124.686-51.314-10.215-10.215-25.95-32.045-25.95-32.045l-3.878-5.236c14.41-5.013 28.252-7.405 42.515-7.405z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports-shoe" - ], - "grid": 32 - }, - { - "id": 397, - "paths": [ - "M450.358 400.964c-4.075 2.894-8.096 5.831-12.065 8.785v0l33.127 50.918-26.823 17.451-31.781-48.85c-4.523 3.516-8.974 6.975-13.355 10.334l30.36 46.664-26.823 17.451-29.44-45.251c-4.85 3.258-9.612 6.248-14.291 8.897v0l28.954 44.504-26.823 17.451-32.584-50.084c-2.971 0.503-5.908 0.767-8.812 0.767-11.751 0-22.416 0-32 0h0v16c0 5.738 1.621 15.465 6.311 24.845 7.379 14.759 19.974 23.155 41.689 23.155h176c20.285 0 34.69 9.603 42.311 24.845 2.937 5.874 4.513 11.587 5.219 16.612 62.789-10.367 144.47-8.312 144.47-8.312h224.064c-1.102-45.188-4.769-106.114-15.646-153.192l-5.104 3.361c-2.926 2.926-8.264 7.716-15.899 13.744-12.525 9.888-27.109 19.742-43.644 28.928-47.243 26.246-100.852 42.013-159.77 42.013-92.838 0-153.354-50.438-186.851-113.82-1.371-2.594-4.005-9.766-8.773-23.442v0c-5.179 2.714-10.277 5.6-15.297 8.619l32.129 49.385-26.823 17.451-32.028-49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174 43.189-96.174 96.296 0 10.944 1.385 21.567 3.99 31.704v0h284.010c36.416 0 72.658-7.852 111.996-16.241-0.053-1.825-0.692-5.373-2.307-8.603-2.379-4.759-5.974-7.155-13.689-7.155h-176c-34.285 0-57.69-15.603-70.311-40.845-7.31-14.621-9.689-28.893-9.689-39.155v-16zM145.091 640c22.168 38.252 63.651 64 110.999 64h607.795c35.41 0 64.45-28.806 64.273-63.745 0 0 0.38-12.484 0.325-32.255h-224.483c0 0-96 0-150.296 10.993-47.971 9.713-92.606 21.007-137.704 21.007h-270.909zM521.749 361.778c17.217-6.104 35.275-9.778 54.251-9.778 48 0 32 63.086 128 63.086s87.066-63.086 160-63.086c17.1 0 29.709 15.847 38.992 40.109l-15.867 10.578c-4.512 4.073-8.925 8.033-15.539 13.255-11.225 8.862-24.391 17.758-39.356 26.072-42.757 23.754-91.148 37.987-144.23 37.987-78.695 0-130.026-42.782-158.559-96.772-0.287-0.542-3.615-9.742-7.692-21.45v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports-shoe" - ], - "grid": 32 - }, - { - "id": 398, - "paths": [ - "M412.816 429.268c-4.523 3.516-8.974 6.975-13.355 10.334l-17.437-26.802-26.823 17.451 18.357 28.216c-4.85 3.258-9.612 6.248-14.291 8.897l-18.843-28.963-26.823 17.451 15.212 23.383c-2.971 0.503-5.908 0.767-8.812 0.767-64-0-95.826 0-95.826 0-53.116 0-96.174 43.189-96.174 96.296 0 70.529 57.534 127.704 128.090 127.704h63.91v32h32v-32h64.088v32h31.912v-32h64v32h32v-32h64v32h32v-32h64.004l-0.004 32h32v-32h64v32h32v-32h31.885c35.41 0 64.45-28.806 64.273-63.745 0 0 8.775-288.255-64.158-288.255s-64 63.086-160 63.086c-96 0-80-63.086-128-63.086-36.124 0-68.918 13.315-98.921 31.357l-15.668-24.082-26.823 17.451 15.769 24.238c-4.075 2.894-8.096 5.831-12.065 8.785l-14.67-22.549-26.823 17.451 16.016 24.617zM891.576 499.188c2.437 25.366 3.853 51.553 4.503 76.812h-192.079c-61.359 0-80 0-144.624 8.436-0.77-4.772-2.325-10.111-5.065-15.592-7.621-15.241-22.026-24.845-42.311-24.845h-176c-21.715 0-34.31-8.397-41.689-23.155-1.479-2.959-2.654-5.953-3.568-8.845 7.913 0 17.458 0 29.257 0 9.16 0 18.155-1.471 27.306-4.341l14.091 21.658 26.823-17.451-11.471-17.631c3.941-2.288 7.962-4.789 12.082-7.498 0.724-0.476 1.45-0.958 2.179-1.445l11.987 18.425 26.823-17.451-12.858-19.764c0.692-0.528 1.393-1.064 2.103-1.609 1.519-1.165 6.059-4.684 11.26-8.714l14.272 21.937 26.823-17.451-15.636-24.033c4.12-3.074 8.137-6.004 12.060-8.793l14.541 22.351 26.823-17.451-14.653-22.522c3.389-2.036 6.716-3.947 9.989-5.735l0.754 1.547c0 0 19.508 29.404 35.387 45.283 37.843 37.843 86.793 60.686 147.314 60.686 58.918 0 112.527-15.767 159.77-42.013 12.305-6.836 32.448-20.676 36.134-23.572 3.411 15.597 5.803 33.318 7.672 52.774zM896.51 606.856c0.020 8.656-0.044 17.101-0.181 25.253-0.059 3.524-0.118 5.959-0.155 7.173 0.072 18.244-14.522 32.718-32.288 32.718h-607.795c-28.439 0-54.035-12.374-71.646-32l231.556-0c45.098 0 76.524-10.443 137.704-21.007 70.296-12.138 113.997-12.138 150.296-12.138h192.51zM165.421 608c-3.51-9.927-5.421-20.598-5.421-31.704 0-35.473 28.771-64.296 64.174-64.296 1.127 0 1.127 0 6.768 0 11.552-0 18.21-0 26.745-0 2.932 10.96 6.541 20.233 8.003 23.155 12.621 25.241 36.026 40.845 70.311 40.845h176c7.715 0 11.31 2.397 13.689 7.155 1.69 3.379 2.311 7.107 2.311 8.845-42.272 11.078-74.434 16-112 16h-250.579zM576 384c4.101 0 5.034 0.573 11.019 7.64-0.421-0.497 8.038 9.754 11.050 13.146 24.883 28.032 55.641 42.3 105.931 42.3 48.712 0 77.005-12.124 109.163-38.983 1.455-1.216 3.636-3.056 6.952-5.85 17.096-14.331 25.458-18.254 43.885-18.254-0.582 0 4.369 5.791 10.582 23.586 3.539 10.139 2.637 6.965 2.637 6.965s-9.599 4.462-10.194 4.912c-10.182 7.687-21.811 15.338-34.795 22.551-42.757 23.754-91.148 37.987-144.23 37.987-51.479 0-92.529-19.157-124.686-51.314-10.215-10.215-25.95-32.045-25.95-32.045l-3.878-5.236c14.41-5.013 28.252-7.405 42.515-7.405v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-shoe" - ], - "grid": 32 - }, - { - "id": 399, - "paths": [ - "M450.358 400.964c-4.075 2.894-8.096 5.831-12.065 8.785v0l33.127 50.918-26.823 17.451-31.781-48.85c-4.523 3.516-8.974 6.975-13.355 10.334l30.36 46.664-26.823 17.451-29.44-45.251c-4.85 3.258-9.612 6.248-14.291 8.897v0l28.954 44.504-26.823 17.451-32.584-50.084c-2.971 0.503-5.908 0.767-8.812 0.767-11.751 0-22.416 0-32 0v0 16c0 5.738 1.621 15.465 6.311 24.845 7.379 14.759 19.974 23.155 41.689 23.155h176c20.285 0 34.69 9.603 42.311 24.845 2.937 5.874 4.513 11.587 5.219 16.612 62.789-10.367 144.47-8.312 144.47-8.312h224.064c-1.102-45.188-4.769-106.114-15.646-153.192l-5.104 3.361c-2.926 2.926-8.264 7.716-15.899 13.744-12.525 9.888-27.109 19.742-43.644 28.928-47.243 26.246-100.852 42.013-159.77 42.013-92.838 0-153.354-50.438-186.851-113.82-1.371-2.594-4.005-9.766-8.773-23.442v0c-5.179 2.714-10.277 5.6-15.297 8.619l32.129 49.385-26.823 17.451-32.028-49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174 43.189-96.174 96.296 0 10.944 1.385 21.567 3.99 31.704v0h284.010c36.416 0 72.658-7.852 111.996-16.241-0.053-1.825-0.692-5.373-2.307-8.603-2.379-4.759-5.974-7.155-13.689-7.155h-176c-34.285 0-57.69-15.603-70.311-40.845-7.31-14.621-9.689-28.893-9.689-39.155v-16zM145.091 640c22.168 38.252 63.651 64 110.999 64h63.91v32h32v-32h64v32h32v-32h64v32h32v-32h64v32h32v-32h64v32h32v-32h64v32h32v-32h31.885c35.41 0 64.45-28.806 64.273-63.745 0 0 0.38-12.484 0.325-32.255h-224.483c0 0-96 0-150.296 10.993-47.971 9.713-92.606 21.007-137.704 21.007h-270.909zM521.749 361.778c17.217-6.104 35.275-9.778 54.251-9.778 48 0 32 63.086 128 63.086s87.066-63.086 160-63.086c17.1 0 29.709 15.847 38.992 40.109l-15.867 10.578c-4.512 4.073-8.925 8.033-15.539 13.255-11.225 8.862-24.391 17.758-39.356 26.072-42.757 23.754-91.148 37.987-144.23 37.987-78.695 0-130.026-42.782-158.559-96.772-0.287-0.542-3.615-9.742-7.692-21.45v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soccer-shoe" - ], - "grid": 32 - }, - { - "id": 400, - "paths": [ - "M412.816 429.268c-4.523 3.516-8.974 6.975-13.355 10.334l-17.437-26.802-26.823 17.451 18.357 28.216c-4.85 3.258-9.612 6.248-14.291 8.897l-18.843-28.963-26.823 17.451 15.212 23.383c-2.971 0.503-5.908 0.767-8.812 0.767-64-0-95.826 0-95.826 0-53.116 0-96.174 43.189-96.174 96.296 0 70.529 57.534 127.704 128.090 127.704h63.91v64h-160.295c-17.51 0-31.705-14.502-31.705-32h-32c0 35.346 28.37 64 64.189 64h767.969v-32h-192.158v-64h127.885c35.41 0 64.45-28.806 64.273-63.745 0 0 8.775-288.255-64.158-288.255s-64 63.086-160 63.086c-96 0-80-63.086-128-63.086-36.124 0-68.918 13.315-98.921 31.357l-15.668-24.082-26.823 17.451 15.769 24.238c-4.075 2.894-8.096 5.831-12.065 8.785l-14.67-22.549-26.823 17.451 16.016 24.617zM891.576 499.188c2.437 25.366 3.853 51.553 4.503 76.812h-192.079c-61.359 0-80 0-144.624 8.436-0.77-4.772-2.325-10.111-5.065-15.592-7.621-15.241-22.026-24.845-42.311-24.845h-176c-21.715 0-34.31-8.397-41.689-23.155-1.479-2.959-2.654-5.953-3.568-8.845h29.257c9.16 0 18.155-1.471 27.306-4.341l14.091 21.658 26.823-17.451-11.471-17.631c3.941-2.288 7.962-4.789 12.082-7.498 0.724-0.476 1.45-0.958 2.179-1.445l11.987 18.425 26.823-17.451-12.858-19.764c0.692-0.528 1.393-1.064 2.103-1.609 1.519-1.165 6.059-4.684 11.26-8.714l14.272 21.937 26.823-17.451-15.636-24.033c4.12-3.074 8.137-6.004 12.060-8.793l14.541 22.351 26.823-17.451-14.653-22.522c3.389-2.036 6.716-3.947 9.989-5.735l0.754 1.547c0 0 19.508 29.404 35.387 45.283 37.843 37.843 86.793 60.686 147.314 60.686 58.918 0 112.527-15.767 159.77-42.013 12.305-6.836 32.448-20.676 36.134-23.572 3.411 15.597 5.803 33.318 7.672 52.774v0 0zM896.51 606.856c0.020 8.656-0.044 17.101-0.181 25.253-0.059 3.524-0.118 5.959-0.155 7.173 0.072 18.244-14.522 32.718-32.288 32.718h-607.795c-28.439 0-54.035-12.374-71.646-32l231.556-0c45.098 0 76.524-10.443 137.704-21.007 70.296-12.138 113.997-12.138 150.296-12.138h192.51zM165.421 608c-3.51-9.927-5.421-20.598-5.421-31.704 0-35.473 28.771-64.296 64.174-64.296h6.768c11.552-0 18.21-0 26.745-0 2.932 10.96 6.541 20.233 8.003 23.155 12.621 25.241 36.026 40.845 70.311 40.845h176c7.715 0 11.31 2.397 13.689 7.155 1.69 3.379 2.311 7.107 2.311 8.845-42.272 11.078-74.434 16-112 16h-250.579zM576 384c4.101 0 5.034 0.573 11.019 7.64-0.421-0.497 8.038 9.754 11.050 13.146 24.883 28.032 55.641 42.3 105.931 42.3 48.712 0 77.005-12.124 109.163-38.983 1.455-1.216 3.636-3.056 6.952-5.85 17.096-14.331 25.458-18.254 43.885-18.254-0.582 0 4.369 5.791 10.582 23.586 3.539 10.139 2.637 6.965 2.637 6.965s-9.599 4.462-10.194 4.912c-10.182 7.687-21.811 15.338-34.795 22.551-42.757 23.754-91.148 37.987-144.23 37.987-51.479 0-92.529-19.157-124.686-51.314-10.215-10.215-25.95-32.045-25.95-32.045l-3.878-5.236c14.41-5.013 28.252-7.405 42.515-7.405v0 0zM352 704h352v64h-352v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ice-skate" - ], - "grid": 32 - }, - { - "id": 401, - "paths": [ - "M320 704v64h-160c-17.673 0-32-14.502-32-32h-32c0 35.2 28.801 64 65.342 64h766.658v-32h-192v-64h127.885c35.41 0 64.45-28.806 64.273-63.745 0 0 0.38-12.484 0.325-32.255h-224.483c0 0-96 0-150.296 10.993-47.971 9.713-92.606 21.007-137.704 21.007h-270.909c22.168 38.252 63.651 64 110.999 64h63.91zM352 704h352v64h-352v-64zM450.358 400.964c-4.075 2.894-8.096 5.831-12.065 8.785v0l33.127 50.918-26.823 17.451-31.781-48.85c-4.523 3.516-8.974 6.975-13.355 10.334l30.36 46.664-26.823 17.451-29.44-45.251c-4.85 3.258-9.612 6.248-14.291 8.897v0l28.954 44.504-26.823 17.451-32.584-50.084c-2.971 0.503-5.908 0.767-8.812 0.767h-32v16c0 5.738 1.621 15.465 6.311 24.845 7.379 14.759 19.974 23.155 41.689 23.155h176c20.285 0 34.69 9.603 42.311 24.845 2.937 5.874 4.513 11.587 5.219 16.612 62.789-10.367 144.47-8.312 144.47-8.312h224.064c-1.102-45.188-4.769-106.114-15.646-153.192l-5.104 3.361c-2.926 2.926-8.264 7.716-15.899 13.744-12.525 9.888-27.109 19.742-43.644 28.928-47.243 26.246-100.852 42.013-159.77 42.013-92.838 0-153.354-50.438-186.851-113.82-1.371-2.594-4.005-9.766-8.773-23.442v0c-5.179 2.714-10.277 5.6-15.297 8.619l32.129 49.385-26.823 17.451-32.028-49.229zM256 480c-21.239 0-31.826 0-31.826 0-53.116 0-96.174 43.189-96.174 96.296 0 10.944 1.385 21.567 3.99 31.704v0h284.010c36.416 0 72.658-7.852 111.996-16.241-0.053-1.825-0.692-5.373-2.307-8.603-2.379-4.759-5.974-7.155-13.689-7.155h-176c-34.285 0-57.69-15.603-70.311-40.845-7.31-14.621-9.689-28.893-9.689-39.155v-16zM521.749 361.778c17.217-6.104 35.275-9.778 54.251-9.778 48 0 32 63.086 128 63.086s87.066-63.086 160-63.086c17.1 0 29.709 15.847 38.992 40.109l-15.867 10.578c-4.512 4.073-8.925 8.033-15.539 13.255-11.225 8.862-24.391 17.758-39.356 26.072-42.757 23.754-91.148 37.987-144.23 37.987-78.695 0-130.026-42.782-158.559-96.772-0.287-0.542-3.615-9.742-7.692-21.45v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ice-skate" - ], - "grid": 32 - }, - { - "id": 402, - "paths": [ - "M227.232 483.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0zM863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud" - ], - "grid": 32 - }, - { - "id": 403, - "paths": [ - "M863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud" - ], - "grid": 32 - }, - { - "id": 404, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM798.509 327.012c0.983-7.531 1.491-15.212 1.491-23.012 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.826-54.236-26.185-102.522-65.47-134.253v0 0zM767.966 307.173v0 0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-25.253-33.838-59.843-60.3-99.953-75.57 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun" - ], - "grid": 32 - }, - { - "id": 405, - "paths": [ - "M798.509 327.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun" - ], - "grid": 32 - }, - { - "id": 406, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM808.798 336c24.049-22.704 41.701-52.11 49.97-85.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.752-49.341-21.807-93.757-55.181-125.265v0 0zM783.265 315.986v0 0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-9.765-13.085-20.926-25.066-33.262-35.725-11.699-20.822-18.371-44.848-18.371-70.432 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon" - ], - "grid": 32 - }, - { - "id": 407, - "paths": [ - "M808.798 336v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232zM783.265 315.986c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon" - ], - "grid": 32 - }, - { - "id": 408, - "paths": [ - "M227.232 483.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM336 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM432 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM528 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM720 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-rain" - ], - "grid": 32 - }, - { - "id": 409, - "paths": [ - "M863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM336 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM432 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM528 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM720 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-rain" - ], - "grid": 32 - }, - { - "id": 410, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM798.509 327.012c0.983-7.531 1.491-15.212 1.491-23.012 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.826-54.236-26.185-102.522-65.47-134.253v0 0zM767.966 307.173v0 0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-25.253-33.838-59.843-60.3-99.953-75.57 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173zM336 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM432 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM528 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM720 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-rain" - ], - "grid": 32 - }, - { - "id": 411, - "paths": [ - "M798.509 327.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-rain" - ], - "grid": 32 - }, - { - "id": 412, - "paths": [ - "M227.232 483.096v0 0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM808.798 335.827c24.049-22.704 41.701-52.11 49.97-85.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.752-49.341-21.807-93.757-55.181-125.265v0 0zM783.265 315.814v0 0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-9.765-13.085-20.926-25.066-33.262-35.725-11.699-20.822-18.371-44.848-18.371-70.432 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159zM336 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM432 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM528 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM720 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-rain" - ], - "grid": 32 - }, - { - "id": 413, - "paths": [ - "M808.798 335.827v0 0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232zM783.265 315.814c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0 0zM336 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM432 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM528 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM624 864c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM720 800c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-rain" - ], - "grid": 32 - }, - { - "id": 414, - "paths": [ - "M227.232 483.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-snow" - ], - "grid": 32 - }, - { - "id": 415, - "paths": [ - "M863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-snow" - ], - "grid": 32 - }, - { - "id": 416, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM798.509 327.012c0.983-7.531 1.491-15.212 1.491-23.012 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.826-54.236-26.185-102.522-65.47-134.253v0 0zM767.966 307.173v0 0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-25.253-33.838-59.843-60.3-99.953-75.57 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-snow" - ], - "grid": 32 - }, - { - "id": 417, - "paths": [ - "M798.509 327.012v0 0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0 0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-snow" - ], - "grid": 32 - }, - { - "id": 418, - "paths": [ - "M227.232 483.096v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM808.798 335.827c24.049-22.704 41.701-52.11 49.97-85.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.752-49.341-21.807-93.757-55.181-125.265v0 0zM783.265 315.814v0 0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-9.765-13.085-20.926-25.066-33.262-35.725-11.699-20.822-18.371-44.848-18.371-70.432 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-snow" - ], - "grid": 32 - }, - { - "id": 419, - "paths": [ - "M808.798 335.827v0 0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232zM783.265 315.814c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0 0zM320 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM416 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM544 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM640 928c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0zM736 832c-17.673 0-32 14.204-32 32 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-17.673-14.204-32-32-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-snow" - ], - "grid": 32 - }, - { - "id": 420, - "paths": [ - "M546.134 672h81.065l-195.199 195.2 47.317-131.2h-82.516l73.598-192h124.801l-49.065 128zM608 736l96-96h-112l48-128h-192l-84 224h-107.91c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-191.91zM576 768h224.018c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735v0c-1.462-95.941-79.69-173.265-175.979-173.265-33.877 0-65.518 9.571-92.367 26.157-40.84-54.724-106.099-90.157-179.633-90.157-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h177.472l-81.455 224 224-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-lightning" - ], - "grid": 32 - }, - { - "id": 421, - "paths": [ - "M546.134 672h81.065l-195.199 195.2 47.317-131.2h-82.516l73.598-192h124.801l-49.065 128zM576 768h224.018c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735v0c-1.462-95.941-79.69-173.265-175.979-173.265-33.877 0-65.518 9.571-92.367 26.157-40.84-54.724-106.099-90.157-179.633-90.157-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h177.472l-81.455 224 224-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-lightning" - ], - "grid": 32 - }, - { - "id": 422, - "paths": [ - "M546.134 672l49.065-128h-124.801l-73.598 192h82.516l-47.317 131.2 195.199-195.2h-81.065zM608 736h191.91c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h107.91l84-224h192l-48 128h112l-96 96zM433.455 768h-177.472c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-224.018l-224 224 81.455-224zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0 0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-lightning" - ], - "grid": 32 - }, - { - "id": 423, - "paths": [ - "M546.134 672l49.065-128h-124.801l-73.598 192h82.516l-47.317 131.2 195.199-195.2h-81.065zM433.455 768h-177.472c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-224.018l-224 224 81.455-224zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0 0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-lightning" - ], - "grid": 32 - }, - { - "id": 424, - "paths": [ - "M546.134 672l49.065-128h-124.801l-73.598 192h82.516l-47.317 131.2 195.199-195.2h-81.065zM608 736h191.91c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h107.91l84-224h192l-48 128h112l-96 96zM433.455 768h-177.472c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-224.018l-224 224 81.455-224zM783.265 315.986c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-lightning" - ], - "grid": 32 - }, - { - "id": 425, - "paths": [ - "M546.134 672l49.065-128h-124.801l-73.598 192h82.516l-47.317 131.2 195.199-195.2h-81.065zM433.455 768h-177.472c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-224.018l-224 224 81.455-224zM783.265 315.986c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-lightning" - ], - "grid": 32 - }, - { - "id": 426, - "paths": [ - "M227.232 291.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 269.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM960 736c0-70.692-57.451-128-128-128-70.692 0-128 57.261-128 128h32c0-53.019 43.089-96 96-96 53.019 0 96 43.089 96 96 0 53.019-42.98 96-96.254 96h-735.746v32h736.049c70.665 0 127.951-57.451 127.951-128v0zM672 704c0-53.019-43.089-96-96-96-53.019 0-96 42.946-96 95.725v0.275h32c0-35.346 28.407-64 64-64 35.346 0 64 28.407 64 64 0 35.346-28.706 64-64.187 64h-383.813v32h384.018c53.009 0 95.982-43.089 95.982-96v0zM800 960c0 35.346-28.407 64-64 64v0c-35.346 0-64-28.631-64-63.816v-0.184h32c0 17.673 14.204 32 32 32v0c17.673 0 32-14.204 32-32v0c0-17.673-14.365-32-32.239-32h-447.761v-32h448.19c35.241 0 63.81 28.407 63.81 64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-wind" - ], - "grid": 32 - }, - { - "id": 427, - "paths": [ - "M863.979 269.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM960 736c0-70.692-57.451-128-128-128-70.692 0-128 57.261-128 128h32c0-53.019 43.089-96 96-96 53.019 0 96 43.089 96 96 0 53.019-42.98 96-96.254 96h-735.746v32h736.049c70.665 0 127.951-57.451 127.951-128v0zM672 704c0-53.019-43.089-96-96-96-53.019 0-96 42.946-96 95.725v0.275h32c0-35.346 28.407-64 64-64 35.346 0 64 28.407 64 64 0 35.346-28.706 64-64.187 64h-383.813v32h384.018c53.009 0 95.982-43.089 95.982-96v0zM800 960c0 35.346-28.407 64-64 64v0c-35.346 0-64-28.631-64-63.816v-0.184h32c0 17.673 14.204 32 32 32v0c17.673 0 32-14.204 32-32v0c0-17.673-14.365-32-32.239-32h-447.761v-32h448.19c35.241 0 63.81 28.407 63.81 64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-wind" - ], - "grid": 32 - }, - { - "id": 428, - "paths": [ - "M227.232 483.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0zM863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM224 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM256.305 921.6c-0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM448 955.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM480.305 953.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM672 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM704.305 921.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-raindrops" - ], - "grid": 32 - }, - { - "id": 429, - "paths": [ - "M863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0zM224 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM448 955.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM672 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-raindrops" - ], - "grid": 32 - }, - { - "id": 430, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM798.509 327.012c0.983-7.531 1.491-15.212 1.491-23.012 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.826-54.236-26.185-102.522-65.47-134.253v0 0zM767.966 307.173v0 0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-25.253-33.838-59.843-60.3-99.953-75.57 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173zM224 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM256.305 921.6c-0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM448 955.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM480.305 953.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM672 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM704.305 921.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-raindrops" - ], - "grid": 32 - }, - { - "id": 431, - "paths": [ - "M798.509 327.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0zM224 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM448 955.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM672 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-raindrops" - ], - "grid": 32 - }, - { - "id": 432, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM808.798 336c24.049-22.704 41.701-52.11 49.97-85.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.752-49.341-21.807-93.757-55.181-125.265v0 0zM783.265 315.986v0 0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-9.765-13.085-20.926-25.066-33.262-35.725-11.699-20.822-18.371-44.848-18.371-70.432 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159zM224 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM256.305 921.6c-0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM448 955.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM480.305 953.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0zM672 923.429v0c-0 35.657 26.682 68.571 80.337 68.571s79.663-35.657 79.663-68.571c-0-46.195-79.663-123.429-79.663-123.429s-80.337 77.233-80.337 123.429zM704.305 921.6c0-22.399 48.032-74.275 48.032-74.275s48.065 51.876 48.065 74.275c0 24.071-21.422 38.4-48.065 38.4s-48.032-10.408-48.032-38.4v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-raindrops" - ], - "grid": 32 - }, - { - "id": 433, - "paths": [ - "M808.798 336v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232zM783.265 315.986c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0zM224 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM448 955.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0zM672 923.429c0-46.195 80.337-123.429 80.337-123.429s79.663 77.233 79.663 123.429c0 32.915-26.008 68.571-79.663 68.571s-80.337-32.915-80.337-68.571v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-raindrops" - ], - "grid": 32 - }, - { - "id": 434, - "paths": [ - "M227.232 483.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0zM863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-snowflakes" - ], - "grid": 32 - }, - { - "id": 435, - "paths": [ - "M863.979 461.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-snowflakes" - ], - "grid": 32 - }, - { - "id": 436, - "paths": [ - "M227.232 483.269v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM798.509 327.012c0.983-7.531 1.491-15.212 1.491-23.012 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.826-54.236-26.185-102.522-65.47-134.253v0 0zM767.966 307.173v0 0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-25.253-33.838-59.843-60.3-99.953-75.57 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-snowflakes" - ], - "grid": 32 - }, - { - "id": 437, - "paths": [ - "M798.509 327.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012zM767.966 307.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM624 0c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 89.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 304.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 89.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-sun-snowflakes" - ], - "grid": 32 - }, - { - "id": 438, - "paths": [ - "M227.232 483.096v0c-2.123-11.433-3.232-23.221-3.232-35.269 0-106.039 85.961-192 192-192 74.764 0 139.548 42.733 171.258 105.107 25.969-25.429 61.525-41.107 100.742-41.107 79.529 0 144 64.471 144 144 0 6.692-0.457 13.278-1.34 19.727v0c55.786 13.784 97.34 64.195 97.34 124.273 0 70.549-57.348 128-128.090 128h-543.82c-70.556 0-128.090-57.308-128.090-128 0-60.652 42.388-111.624 99.232-124.731zM808.798 335.827c24.049-22.704 41.701-52.11 49.97-85.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169-56.712 24.642-96.381 81.203-96.381 146.831 0 88.366 71.44 160 159.982 160h544.036c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735-0.752-49.341-21.807-93.757-55.181-125.265v0 0zM783.265 315.814v0 0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-9.765-13.085-20.926-25.066-33.262-35.725-11.699-20.822-18.371-44.848-18.371-70.432 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-snowflakes" - ], - "grid": 32 - }, - { - "id": 439, - "paths": [ - "M808.798 335.827v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232zM783.265 315.814c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0zM352 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM736 852.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18zM544 884.287v-36.361c0-8.796-7.422-15.926-16-15.926-8.837 0-16 6.875-16 15.926v36.361l-31.489-18.18c-7.617-4.398-17.504-1.536-21.793 5.893-4.418 7.653-2.046 17.294 5.793 21.82l31.489 18.18-31.489 18.18c-7.617 4.398-10.082 14.391-5.793 21.82 4.418 7.653 13.954 10.419 21.793 5.893l31.489-18.18v36.361c0 8.796 7.422 15.926 16 15.926 8.837 0 16-6.875 16-15.926v-36.361l31.489 18.18c7.617 4.398 17.504 1.536 21.793-5.893 4.418-7.653 2.046-17.294-5.793-21.82l-31.489-18.18 31.489-18.18c7.617-4.398 10.082-14.391 5.793-21.82-4.418-7.653-13.954-10.419-21.793-5.893l-31.489 18.18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-snowflakes" - ], - "grid": 32 - }, - { - "id": 440, - "paths": [ - "M264.562 768h-24.356c-26.623 0-48.206 21.306-48.206 48 0 26.51 21.489 48 48.206 48h255.588c26.623 0 48.206-21.306 48.206-48 0-26.51-21.489-48-48.206-48h-15.794c0-35.346-28.654-64-64-64-13.173 0-25.417 3.98-35.594 10.803-8.747-24.929-32.489-42.803-60.406-42.803-35.346 0-64 28.654-64 64 0 11.657 3.117 22.586 8.562 32v0zM506.797 736.745c21.726 2.965 40.65 14.585 53.191 31.255h239.921c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0c-56.845 13.107-99.232 64.079-99.232 124.731 0 47.691 26.185 89.29 64.887 111.311v0c9.107-6.62 19.671-11.367 31.126-13.692-0.009-0.539-0.013-1.078-0.013-1.619 0-53.019 42.981-96 96-96 29.659 0 56.177 13.45 73.786 34.583 7.13-1.689 14.567-2.583 22.214-2.583 42.077 0 77.831 27.070 90.797 64.745v0 0zM170.899 775.573c-45.038-28.306-74.899-78.443-74.899-135.573 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 41.228 0 79.855 11.138 113.036 30.57 11.507-14.626 28.024-25.103 46.978-28.951v0c-0.009-0.539-0.013-1.078-0.013-1.619 0-53.019 42.981-96 96-96 29.659 0 56.177 13.45 73.786 34.583 7.13-1.689 14.567-2.583 22.214-2.583 42.077 0 77.831 27.070 90.797 64.745v0c39.151 5.343 69.203 38.791 69.203 79.255 0 44.491-35.911 80-80.209 80h-2.982c11.881 23.241 18.746 49.472 19.17 77.265 56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-225.619c1.050 5.17 1.601 10.521 1.601 16 0 44.491-35.911 80-80.209 80h-255.582c-44.381 0-80.209-35.817-80.209-80 0-14.794 3.97-28.594 10.899-40.427v0 0zM823.771 384h24.023c26.623 0 48.206-21.306 48.206-48 0-26.51-21.489-48-48.206-48h-15.794c0-35.346-28.654-64-64-64-13.173 0-25.417 3.98-35.594 10.803-8.747-24.929-32.489-42.803-60.406-42.803-35.346 0-64 28.654-64 64 0 11.657 3.117 22.586 8.562 32v0h-24.356c-14.679 0-27.825 6.476-36.666 16.761v0c15.071 12.016 28.556 25.936 40.094 41.395 26.849-16.586 58.49-26.157 92.367-26.157 54.654 0 103.489 24.912 135.771 64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clouds" - ], - "grid": 32 - }, - { - "id": 441, - "paths": [ - "M506.797 736.745c39.151 5.343 69.203 38.791 69.203 79.255 0 44.491-35.911 80-80.209 80h-255.582c-44.381 0-80.209-35.817-80.209-80 0-38.919 27.479-70.964 64.013-78.381v0c-0.009-0.539-0.013-1.078-0.013-1.619 0-53.019 42.981-96 96-96 29.659 0 56.177 13.45 73.786 34.583 7.13-1.689 14.567-2.583 22.214-2.583 42.077 0 77.831 27.070 90.797 64.745v0zM529.721 709.192c40.305 12.779 70.961 47.865 77.139 90.808v0h193.159c88.356 0 159.982-71.814 159.982-160 0-65.653-39.435-122.071-96.021-146.735v0c-1.462-95.941-79.69-173.265-175.979-173.265-33.877 0-65.518 9.571-92.367 26.157-40.84-54.724-106.099-90.157-179.633-90.157-123.712 0-224 100.288-224 224 0 4.421 0.128 8.812 0.381 13.169v0c-56.712 24.642-96.381 81.203-96.381 146.831 0 45.569 18.999 86.689 49.544 115.83 11.657-18.256 28.458-32.922 48.357-41.932v0c10.471-60.16 62.944-105.898 126.099-105.898 32.707 0 62.548 12.267 85.175 32.451 3.569-0.299 7.179-0.451 10.825-0.451 49.491 0 92.421 28.088 113.721 69.192v0 0zM877.596 410.334c29.54-11.728 50.404-40.422 50.404-74.334 0-40.465-30.052-73.913-69.203-79.255v0c-12.966-37.675-48.72-64.745-90.797-64.745-7.646 0-15.084 0.894-22.214 2.583-17.61-21.133-44.127-34.583-73.786-34.583-53.019 0-96 42.981-96 96 0 0.541 0.004 1.080 0.013 1.619v0c-7.41 1.504-14.447 4.022-20.958 7.404 17.842 11.565 34.153 25.29 48.563 40.805 25.789-11.46 54.342-17.828 84.382-17.828 84.336 0 156.949 50.192 189.596 122.334v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clouds" - ], - "grid": 32 - }, - { - "id": 442, - "paths": [ - "M512 576v-79.89c0-8.657 7.163-16.11 16-16.11 8.578 0 16 7.212 16 16.11v79.89h79.89c8.657 0 16.11 7.163 16.11 16 0 8.578-7.212 16-16.11 16h-79.89v79.89c0 8.657-7.163 16.11-16 16.11-8.578 0-16-7.212-16-16.11v-79.89h-79.89c-8.657 0-16.11-7.163-16.11-16 0-8.578 7.212-16 16.11-16h79.89zM227.232 515.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-add" - ], - "grid": 32 - }, - { - "id": 443, - "paths": [ - "M512 576h-79.89c-8.897 0-16.11 7.422-16.11 16 0 8.837 7.453 16 16.11 16h79.89v79.89c0 8.897 7.422 16.11 16 16.11 8.837 0 16-7.453 16-16.11v-79.89h79.89c8.897 0 16.11-7.422 16.11-16 0-8.837-7.453-16-16.11-16h-79.89v-79.89c0-8.897-7.422-16.11-16-16.11-8.837 0-16 7.453-16 16.11v79.89zM863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-add" - ], - "grid": 32 - }, - { - "id": 444, - "paths": [ - "M227.232 515.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM432.11 576c-8.897 0-16.11 7.422-16.11 16 0 8.837 7.453 16 16.11 16h191.781c8.897 0 16.11-7.422 16.11-16 0-8.837-7.453-16-16.11-16h-191.781z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-remove" - ], - "grid": 32 - }, - { - "id": 445, - "paths": [ - "M863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM432.11 576c-8.897 0-16.11 7.422-16.11 16 0 8.837 7.453 16 16.11 16h191.781c8.897 0 16.11-7.422 16.11-16 0-8.837-7.453-16-16.11-16h-191.781z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-remove" - ], - "grid": 32 - }, - { - "id": 446, - "paths": [ - "M227.232 515.269c-56.845 13.107-99.232 64.079-99.232 124.731 0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273v0c0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269v0 0zM863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM528 448c-8.837 0-16 7.292-16 15.712v160.576c0 8.678 7.422 15.712 16 15.712 8.837 0 16-7.292 16-15.712v-160.576c0-8.678-7.422-15.712-16-15.712v0zM528 704c-8.837 0-16-7.422-16-16 0-8.837 7.422-16 16-16 8.837 0 16 7.422 16 16 0 8.837-7.422 16-16 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-error" - ], - "grid": 32 - }, - { - "id": 447, - "paths": [ - "M528 704v0c8.578 0 16-7.163 16-16 0-8.578-7.163-16-16-16-8.578 0-16 7.163-16 16 0 8.578 7.163 16 16 16zM863.979 493.265c56.585 24.664 96.021 81.082 96.021 146.735 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0 0zM528 448c-8.837 0-16 7.292-16 15.712v160.576c0 8.678 7.422 15.712 16 15.712 8.837 0 16-7.292 16-15.712v-160.576c0-8.678-7.422-15.712-16-15.712v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-error" - ], - "grid": 32 - }, - { - "id": 448, - "paths": [ - "M96.459 652.231c-0.304-4.037-0.459-8.116-0.459-12.231 0-65.628 39.669-122.189 96.381-146.831v0c-0.253-4.357-0.381-8.748-0.381-13.169 0-4.246 0.118-8.465 0.351-12.653v0c-0.23-1.079-0.351-2.199-0.351-3.347 0-1.941 0.363-3.824 1.026-5.574 10.855-113.59 106.54-202.426 222.974-202.426 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265v0c56.585 24.664 96.021 81.082 96.021 146.735 0 4.115-0.156 8.194-0.462 12.232 0.301 1.208 0.462 2.47 0.462 3.768 0 2.491-0.594 4.885-1.65 7.028-11.18 77.326-77.809 136.972-158.332 136.972h-544.036c-80.735 0-147.251-59.559-158.353-137.053-1.036-2.101-1.629-4.458-1.629-6.947 0-1.29 0.159-2.553 0.459-3.769v0zM128 640h800c0-11.050-1.406-21.772-4.047-32h-791.905v0c-2.642 10.232-4.048 20.956-4.048 32zM132.047 672c2.932 11.353 7.386 22.096 13.13 32v0h765.65c5.743-9.908 10.195-20.652 13.125-32h-791.905zM272.889 352c-8.781 9.811-16.568 20.531-23.203 32v0h332.628c-6.635-11.469-14.422-22.189-23.203-32h-286.222zM309.831 320h212.339c-30.41-20.219-66.914-32-106.169-32s-75.76 11.781-106.169 32zM235.205 415.215c-3.775 10.533-6.655 21.492-8.55 32.785v0h597.151c-4.027-11.393-9.447-22.128-16.055-32h-567.489c-1.767 0-3.467-0.276-5.058-0.785v0 0zM597.483 384h181.035c-24.732-20.013-56.225-32-90.517-32s-65.786 11.987-90.517 32zM224 480c0 10.903 0.909 21.593 2.655 32h604.466c0.581-5.253 0.879-10.592 0.879-16s-0.298-10.747-0.879-16h-607.121zM172.013 543.48c-10.636 9.264-19.728 20.251-26.84 32.52v0h765.65c-7.119-12.275-16.219-23.261-26.858-32.522-1.285 0.34-2.633 0.522-4.022 0.522h-703.886c-1.393 0-2.749-0.181-4.044-0.52v0 0zM171.439 736c22.598 19.916 52.251 32 84.651 32h543.82c32.458 0 62.097-12.095 84.67-32h-713.141z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-fog" - ], - "grid": 32 - }, - { - "id": 449, - "paths": [ - "M956.789 672c2.105-10.343 3.211-21.045 3.211-32h-864c0 10.959 1.099 21.66 3.193 32h857.597zM946.655 704c-4.999 11.421-11.293 22.15-18.697 32v0l-799.957 0.094c-7.417-9.873-13.718-20.633-18.716-32.094h837.37zM572.767 320c8.275 8.109 15.923 16.854 22.866 26.157 26.849-16.586 58.49-26.157 92.367-26.157 37.677 0 72.589 11.839 101.219 32v0h-557.068c8.022-11.501 17.096-22.214 27.082-32h313.535zM531.443 288c-33.713-20.314-73.213-32-115.443-32s-81.729 11.686-115.443 32h230.886zM823.771 384c8.116 9.827 15.186 20.551 21.038 32v0h-643.533c3.288-11.048 7.405-21.739 12.28-32h610.215zM857.375 448c2.917 10.313 4.917 21.011 5.908 32v0h-671.283c0-10.865 0.774-21.549 2.268-32h663.107zM896 511.923c12.151 9.118 22.956 19.927 32.070 32.077v0h-800.028c9.105-12.113 19.889-22.896 32.005-32l735.952-0.077zM946.716 576c4.431 10.16 7.838 20.87 10.092 32v0h-857.597c2.265-11.126 5.687-21.837 10.135-32h837.37zM895.952 768c-26.729 20.084-59.944 32-95.934 32h-544.036c-36.098 0-69.354-11.907-96.085-32h736.055z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-fog" - ], - "grid": 32 - }, - { - "id": 450, - "paths": [ - "M959.538 748.232v0c0.301 1.208 0.462 2.47 0.462 3.768 0 2.491-0.594 4.885-1.65 7.028-11.18 77.326-77.809 136.972-158.332 136.972h-544.036c-80.735 0-147.251-59.559-158.353-137.053-1.036-2.101-1.629-4.458-1.629-6.947 0-1.29 0.159-2.553 0.459-3.769-0.304-4.037-0.459-8.116-0.459-12.231 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-4.246 0.118-8.465 0.351-12.653-0.23-1.079-0.351-2.199-0.351-3.347 0-1.941 0.363-3.824 1.026-5.574v0c10.855-113.59 106.54-202.426 222.974-202.426 16.689 0 32.952 1.825 48.599 5.287v0c28.1-59.847 88.911-101.287 159.401-101.287 97.202 0 176 78.798 176 176 0 7.799-0.507 15.48-1.491 23.012v0c39.285 31.731 64.644 80.018 65.47 134.253 56.585 24.664 96.021 81.082 96.021 146.735 0 4.115-0.156 8.194-0.462 12.232zM128 736h800c0-11.050-1.406-21.772-4.047-32h-791.905v0c-2.642 10.232-4.048 20.956-4.048 32zM132.047 768c2.932 11.353 7.386 22.096 13.13 32v0h765.65c5.743-9.908 10.195-20.652 13.125-32h-791.905zM272.889 448c-8.781 9.811-16.568 20.531-23.203 32v0h332.628c-6.635-11.469-14.422-22.189-23.203-32h-286.222zM309.831 416h212.339c-30.41-20.219-66.914-32-106.169-32s-75.76 11.781-106.169 32zM235.205 511.215c-3.775 10.533-6.655 21.492-8.55 32.785v0h597.151c-4.027-11.393-9.447-22.128-16.055-32h-567.489c-1.767 0-3.467-0.276-5.058-0.785v0 0zM597.483 480h181.035c-24.732-20.013-56.225-32-90.517-32s-65.786 11.987-90.517 32zM224 576c0 10.903 0.909 21.593 2.655 32h604.466c0.581-5.253 0.879-10.592 0.879-16s-0.298-10.747-0.879-16h-607.121zM172.013 639.48c-10.636 9.264-19.728 20.251-26.84 32.52v0h765.65c-7.119-12.275-16.219-23.261-26.858-32.522-1.285 0.34-2.633 0.522-4.022 0.522h-703.886c-1.393 0-2.749-0.181-4.044-0.52v0 0zM171.439 832c22.598 19.916 52.251 32 84.651 32h543.82c32.458 0 62.097-12.095 84.67-32h-713.141zM767.966 435.173c0.023-1.055 0.034-2.113 0.034-3.173 0-79.529-64.471-144-144-144-55.976 0-104.492 31.939-128.319 78.586 40.109 15.27 74.699 41.732 99.953 75.57 26.849-16.586 58.49-26.157 92.367-26.157 28.793 0 55.972 6.914 79.966 19.173v0 0zM624 128c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 217.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 432.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 217.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "-cloud-sun-fog" - ], - "grid": 32 - }, - { - "id": 451, - "paths": [ - "M99.211 704c2.265-11.126 5.687-21.837 10.135-32v0h837.37c4.431 10.16 7.838 20.87 10.092 32h-857.597zM96 736c0 10.959 1.099 21.66 3.193 32v0h857.597c2.105-10.343 3.211-21.045 3.211-32h-864zM259.233 416c-9.986 9.786-19.060 20.499-27.082 32v0h567.132c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176-70.49 0-131.301 41.44-159.401 101.287v0c-15.648-3.461-31.91-5.287-48.599-5.287-42.229 0-81.729 11.686-115.443 32h230.886c-11.308-6.814-23.267-12.657-35.762-17.414 23.827-46.648 72.344-78.586 128.319-78.586 79.529 0 144 64.471 144 144 0 1.060-0.011 2.118-0.034 3.173v0c-23.994-12.259-51.172-19.173-79.966-19.173-33.877 0-65.518 9.571-92.367 26.157-6.943-9.303-14.591-18.048-22.866-26.157h-313.535zM213.556 480c-4.875 10.261-8.992 20.952-12.28 32v0h643.533c-5.853-11.449-12.922-22.173-21.038-32h-610.215zM194.268 544c-1.495 10.451-2.268 21.135-2.268 32v0h671.283c-0.99-10.989-2.991-21.687-5.908-32h-663.107zM160.048 608c-12.116 9.104-22.9 19.887-32.005 32v0h800.028c-9.114-12.15-19.92-22.959-32.070-32.077v0.077h-735.952zM128 832.094c-7.417-9.873-13.718-20.633-18.716-32.094v0h837.37c-4.999 11.421-11.293 22.15-18.697 32l-799.957 0.094zM159.897 864c26.731 20.093 59.986 32 96.085 32h544.036c35.991 0 69.206-11.916 95.934-32h-736.055zM624 128c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM839.458 217.245c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM928.703 432.703c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM408.542 217.245c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "-cloud-sun-fog" - ], - "grid": 32 - }, - { - "id": 452, - "paths": [ - "M959.538 748.059v0c0.301 1.208 0.462 2.47 0.462 3.768 0 2.491-0.594 4.885-1.65 7.028-11.18 77.326-77.809 136.972-158.332 136.972h-544.036c-80.735 0-147.251-59.559-158.353-137.053-1.036-2.101-1.629-4.458-1.629-6.947 0-1.29 0.159-2.553 0.459-3.769-0.304-4.037-0.459-8.116-0.459-12.231 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-4.246 0.118-8.465 0.351-12.653-0.23-1.079-0.351-2.199-0.351-3.347 0-1.941 0.363-3.824 1.026-5.574v0c10.855-113.59 106.54-202.426 222.974-202.426 36.141 0 70.283 8.559 100.51 23.761-2.951-12.777-4.51-26.087-4.51-39.761 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901-8.268 33.122-25.921 62.529-49.97 85.232v0c33.374 31.508 54.429 75.924 55.181 125.265 56.585 24.664 96.021 81.082 96.021 146.735 0 4.115-0.156 8.194-0.462 12.232zM128 735.827h800c0-11.050-1.406-21.772-4.047-32h-791.905v0c-2.642 10.232-4.048 20.956-4.048 32zM132.047 767.827c2.932 11.353 7.386 22.096 13.13 32v0h765.65c5.743-9.908 10.195-20.652 13.125-32h-791.905zM272.889 447.827c-8.781 9.811-16.568 20.531-23.203 32v0h332.628c-6.635-11.469-14.422-22.189-23.203-32h-286.222zM309.831 415.827h212.339c-30.41-20.219-66.914-32-106.169-32s-75.76 11.781-106.169 32zM235.205 511.042c-3.775 10.533-6.655 21.492-8.55 32.785v0h597.151c-4.027-11.393-9.447-22.128-16.055-32h-567.489c-1.767 0-3.467-0.276-5.058-0.785v0 0zM597.483 479.827h181.035c-24.732-20.013-56.225-32-90.517-32s-65.786 11.987-90.517 32zM224 575.827c0 10.903 0.909 21.593 2.655 32h604.466c0.581-5.253 0.879-10.592 0.879-16s-0.298-10.747-0.879-16h-607.121zM172.013 639.307c-10.636 9.264-19.728 20.251-26.84 32.52v0h765.65c-7.119-12.275-16.219-23.261-26.858-32.522-1.285 0.34-2.633 0.522-4.022 0.522h-703.886c-1.393 0-2.749-0.181-4.044-0.52v0 0zM171.439 831.827c22.598 19.916 52.251 32 84.651 32h543.82c32.458 0 62.097-12.095 84.67-32h-713.141zM783.265 443.814c18.234-16.098 32.359-36.742 40.602-60.159-2.608 0.115-5.231 0.173-7.867 0.173-97.202 0-176-78.798-176-176 0-2.636 0.058-5.259 0.173-7.867-56.019 19.719-96.173 73.104-96.173 135.867 0 25.584 6.672 49.61 18.371 70.432 12.336 10.658 23.497 22.64 33.262 35.725 26.849-16.586 58.49-26.157 92.367-26.157 35.104 0 67.807 10.277 95.265 27.986v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-fog" - ], - "grid": 32 - }, - { - "id": 453, - "paths": [ - "M99.211 704c2.265-11.126 5.687-21.837 10.135-32v0h837.37c4.431 10.16 7.838 20.87 10.092 32h-857.597zM96 736c0 10.959 1.099 21.66 3.193 32v0h857.597c2.105-10.343 3.211-21.045 3.211-32h-864zM259.233 416c-9.986 9.786-19.060 20.499-27.082 32v0h591.621c16.419-19.881 28.555-43.429 34.997-69.232 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 13.674 1.559 26.984 4.51 39.761-30.227-15.202-64.369-23.761-100.51-23.761-42.229 0-81.729 11.686-115.443 32h251.637c-5.306-15.013-8.194-31.169-8.194-48 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-8.243 23.417-22.368 44.061-40.602 60.159v0c-27.458-17.709-60.162-27.986-95.265-27.986-33.877 0-65.518 9.571-92.367 26.157-6.943-9.303-14.591-18.048-22.866-26.157h-313.535zM213.556 480c-4.875 10.261-8.992 20.952-12.28 32v0h643.533c-5.853-11.449-12.922-22.173-21.038-32h-610.215zM194.268 544c-1.495 10.451-2.268 21.135-2.268 32v0h671.283c-0.99-10.989-2.991-21.687-5.908-32h-663.107zM160.048 608c-12.116 9.104-22.9 19.887-32.005 32v0h800.028c-9.114-12.15-19.92-22.959-32.070-32.077v0.077h-735.952zM128 832.094c-7.417-9.873-13.718-20.633-18.716-32.094v0h837.37c-4.999 11.421-11.293 22.15-18.697 32l-799.957 0.094zM159.897 864c26.731 20.093 59.986 32 96.085 32h544.036c35.991 0 69.206-11.916 95.934-32h-736.055z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud-moon-fog" - ], - "grid": 32 - }, - { - "id": 454, - "paths": [ - "M582.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM710.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM474.768 714.595v0c2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 97.202 78.798 176 176 176 82.452 0 151.662-56.698 170.768-133.232zM160 671.827c0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-19.719 56.019-73.104 96.173-135.867 96.173-79.529 0-144-64.471-144-144v0zM859.755 397.714l52.245 18.286-52.245 18.286-27.755 77.714-27.755-77.714-52.245-18.286 52.245-18.286 27.755-77.714 27.755 77.714z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon-stars" - ], - "grid": 32 - }, - { - "id": 455, - "paths": [ - "M582.857 376.381l-38.857 103.619-38.857-103.619-73.143-24.381 73.143-24.381 38.857-103.619 38.857 103.619 73.143 24.381-73.143 24.381zM710.857 583.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM474.768 714.595c-19.106 76.535-88.316 133.232-170.768 133.232-97.202 0-176-78.798-176-176 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901v0zM859.755 397.714l52.245 18.286-52.245 18.286-27.755 77.714-27.755-77.714-52.245-18.286 52.245-18.286 27.755-77.714 27.755 77.714z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon-stars" - ], - "grid": 32 - }, - { - "id": 456, - "paths": [ - "M698.768 570.595v0c2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 97.202 78.798 176 176 176 82.452 0 151.662-56.698 170.768-133.232zM384 527.827c0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-19.719 56.019-73.104 96.173-135.867 96.173-79.529 0-144-64.471-144-144v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon" - ], - "grid": 32 - }, - { - "id": 457, - "paths": [ - "M698.768 570.595c-19.106 76.535-88.316 133.232-170.768 133.232-97.202 0-176-78.798-176-176 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon" - ], - "grid": 32 - }, - { - "id": 458, - "paths": [ - "M528.93 704v0c-97.202 0-176-78.798-176-176s78.798-176 176-176c97.202 0 176 78.798 176 176s-78.798 176-176 176zM528.93 672c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM528.93 224c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM744.548 313.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM833.859 528.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM744.548 744.548c6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104v0zM528.93 833.859c8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852v0zM313.312 744.548c6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523v0zM224 528.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0zM313.312 313.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sun" - ], - "grid": 32 - }, - { - "id": 459, - "paths": [ - "M528.93 704c97.202 0 176-78.798 176-176s-78.798-176-176-176c-97.202 0-176 78.798-176 176s78.798 176 176 176v0zM528.93 224c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM744.548 313.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM833.859 528.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM744.548 744.548c6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104v0zM528.93 833.859c8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852v0zM313.312 744.548c6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523v0zM224 528.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0zM313.312 313.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sun" - ], - "grid": 32 - }, - { - "id": 460, - "paths": [ - "M241.192 704c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737zM703.283 640c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176s-176 78.798-176 176c0 5.393 0.243 10.73 0.717 16h32.161c-0.581-5.253-0.879-10.592-0.879-16 0-79.529 64.471-144 144-144s144 64.471 144 144c0 5.408-0.298 10.747-0.879 16h32.161zM528.93 320c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0 0zM744.548 409.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0 0zM833.859 624.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0 0zM224 624.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0 0zM313.312 409.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunrise" - ], - "grid": 32 - }, - { - "id": 461, - "paths": [ - "M435.596 640h-81.949c-0.475-5.27-0.717-10.607-0.717-16 0-97.202 78.798-176 176-176s176 78.798 176 176c0 5.393-0.243 10.73-0.717 16v0h-81.949l-93.333-80-93.333 80zM528.93 320c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0 0zM744.548 409.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0 0zM833.859 624.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0 0zM224 624.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0 0zM242.122 704c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737zM313.312 409.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunrise" - ], - "grid": 32 - }, - { - "id": 462, - "paths": [ - "M704.212 576c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176s-176 78.798-176 176c0 5.393 0.243 10.73 0.717 16h32.161c-0.581-5.253-0.879-10.592-0.879-16 0-79.529 64.471-144 144-144s144 64.471 144 144c0 5.408-0.298 10.747-0.879 16h32.161zM528.93 256c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0 0zM744.548 345.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0 0zM833.859 560.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0 0zM224 560.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0 0zM313.312 345.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0 0zM241.192 672c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 463, - "paths": [ - "M703.283 576c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176s-176 78.798-176 176c0 5.393 0.243 10.73 0.717 16h350.565zM528 256c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0 0zM743.618 345.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0 0zM832.93 560.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0 0zM223.070 560.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0 0zM312.382 345.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0 0zM241.192 672c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 464, - "paths": [ - "M704.212 640c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176s-176 78.798-176 176c0 5.393 0.243 10.73 0.717 16h32.161c-0.581-5.253-0.879-10.592-0.879-16 0-79.529 64.471-144 144-144s144 64.471 144 144c0 5.408-0.298 10.747-0.879 16h32.161zM528.93 320c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM744.548 409.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM833.859 624.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM224 624.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0zM313.312 409.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0zM241.192 704c-8.982 0-16.263 7.422-16.263 16v0c0 8.837 7.252 16 16.263 16h575.475c8.982 0 16.263-7.422 16.263-16v0c0-8.837-7.252-16-16.263-16h-575.475z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 465, - "paths": [ - "M704.212 640c0.475-5.27 0.717-10.607 0.717-16 0-97.202-78.798-176-176-176s-176 78.798-176 176c0 5.393 0.243 10.73 0.717 16h350.565zM528.93 320c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM744.548 409.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM833.859 624.93c0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16v0zM224 624.93c0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16h-64.295c-8.755 0-15.852 7.422-15.852 16v0zM313.312 409.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0zM241.192 704c-8.982 0-16.263 7.422-16.263 16v0c0 8.837 7.252 16 16.263 16h575.475c8.982 0 16.263-7.422 16.263-16v0c0-8.837-7.252-16-16.263-16h-575.475z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 466, - "paths": [ - "M697.375 608c-20.894-73.872-88.813-128-169.375-128s-148.481 54.128-169.375 128h33.569c19.768-55.929 73.108-96 135.806-96s116.038 40.071 135.806 96h33.569zM528 352c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM743.618 441.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM312.382 441.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0zM240.263 672c-8.982 0-16.263 7.422-16.263 16v0c0 8.837 7.252 16 16.263 16h575.475c8.982 0 16.263-7.422 16.263-16v0c0-8.837-7.252-16-16.263-16h-575.475z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 467, - "paths": [ - "M697.375 608c-20.894-73.872-88.813-128-169.375-128s-148.481 54.128-169.375 128h338.75zM528 352c-8.837 0-16 6.904-16 15.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852v0zM743.618 441.312c-6.248-6.248-16.196-6.432-22.523-0.104l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523v0zM312.382 441.312c-6.248 6.248-6.432 16.196-0.104 22.523l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104v0zM240.263 672c-8.982 0-16.263 7.422-16.263 16v0c0 8.837 7.252 16 16.263 16h575.475c8.982 0 16.263-7.422 16.263-16v0c0-8.837-7.252-16-16.263-16h-575.475z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunset" - ], - "grid": 32 - }, - { - "id": 468, - "paths": [ - "M512 352c276.277 0 501.444 218.823 511.64 492.607 0.236 1.094 0.36 2.229 0.36 3.393 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.701-257.69-220.258-464-480-464s-471.299 206.31-479.738 464c-0.262 8.837-7.425 16-16.262 16s-16-7.163-16-16c0-1.164 0.124-2.299 0.36-3.393 10.195-273.784 235.363-492.607 511.64-492.607v0zM512 416c240.831 0 437.277 190.030 447.576 428.324 0.278 1.18 0.424 2.411 0.424 3.676 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.71-222.336-191.607-400-416-400s-407.29 177.664-415.698 400c-0.302 8.837-7.465 16-16.302 16s-16-7.163-16-16c0-1.265 0.147-2.496 0.424-3.676 10.298-238.294 206.745-428.324 447.576-428.324v0zM512 480c205.356 0 373.063 161.199 383.486 363.962 0.335 1.29 0.514 2.643 0.514 4.038 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.722-186.978-162.958-336-352-336s-343.278 149.022-351.643 336c-0.357 8.837-7.521 16-16.357 16s-16-7.163-16-16c0-1.395 0.178-2.748 0.514-4.038 10.423-202.764 178.13-363.962 383.486-363.962v0zM16.085 896c-8.883 0-16.085 7.422-16.085 16 0 8.837 7.086 16 16.085 16h991.831c8.883 0 16.085-7.422 16.085-16 0-8.837-7.086-16-16.085-16h-991.831zM896 400c0-97.202-78.798-176-176-176-69.3 0-129.245 40.053-157.95 98.272 11.477 1.047 22.852 2.45 34.112 4.199 25.109-42.197 71.172-70.471 123.838-70.471 79.529 0 144 64.471 144 144 0 15.199-2.355 29.848-6.719 43.602 8.848 7.275 17.462 14.825 25.83 22.635 8.311-20.446 12.89-42.807 12.89-66.237v0zM704 111.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v0zM913.095 185.208l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104v0zM1009.077 384.93h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16v0zM504.278 207.835l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rainbow" - ], - "grid": 32 - }, - { - "id": 469, - "paths": [ - "M512 352c276.277 0 501.444 218.823 511.64 492.607 0.236 1.094 0.36 2.229 0.36 3.393 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.701-257.69-220.258-464-480-464s-471.299 206.31-479.738 464c-0.262 8.837-7.425 16-16.262 16s-16-7.163-16-16c0-1.164 0.124-2.299 0.36-3.393 10.195-273.784 235.363-492.607 511.64-492.607v0zM512 416c240.831 0 437.277 190.030 447.576 428.324 0.278 1.18 0.424 2.411 0.424 3.676 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.71-222.336-191.607-400-416-400s-407.29 177.664-415.698 400c-0.302 8.837-7.465 16-16.302 16s-16-7.163-16-16c0-1.265 0.147-2.496 0.424-3.676 10.298-238.294 206.745-428.324 447.576-428.324v0zM512 480c205.356 0 373.063 161.199 383.486 363.962 0.335 1.29 0.514 2.643 0.514 4.038 0 8.837-7.163 16-16 16s-16-7.163-16-16c-8.722-186.978-162.958-336-352-336s-343.278 149.022-351.643 336c-0.357 8.837-7.521 16-16.357 16s-16-7.163-16-16c0-1.395 0.178-2.748 0.514-4.038 10.423-202.764 178.13-363.962 383.486-363.962v0zM16.085 896c-8.883 0-16.085 7.422-16.085 16 0 8.837 7.086 16 16.085 16h991.831c8.883 0 16.085-7.422 16.085-16 0-8.837-7.086-16-16.085-16h-991.831zM896 400c0-97.202-78.798-176-176-176-69.3 0-129.245 40.053-157.95 98.272 123.628 11.277 235.3 63.918 321.060 143.965 8.311-20.446 12.89-42.807 12.89-66.237v0zM704 111.852v64.295c0 8.755 7.422 15.852 16 15.852 8.837 0 16-6.904 16-15.852v-64.295c0-8.755-7.422-15.852-16-15.852-8.837 0-16 6.904-16 15.852v0zM913.095 185.208l-45.464 45.464c-6.191 6.191-5.961 16.457 0.104 22.523 6.248 6.248 16.196 6.432 22.523 0.104l45.464-45.464c6.191-6.191 5.961-16.457-0.104-22.523-6.248-6.248-16.196-6.432-22.523-0.104v0zM1009.077 384.93h-64.295c-8.755 0-15.852 7.422-15.852 16 0 8.837 6.904 16 15.852 16h64.295c8.755 0 15.852-7.422 15.852-16 0-8.837-6.904-16-15.852-16v0zM504.278 207.835l45.464 45.464c6.191 6.191 16.457 5.961 22.523-0.104 6.248-6.248 6.432-16.196 0.104-22.523l-45.464-45.464c-6.191-6.191-16.457-5.961-22.523 0.104-6.248 6.248-6.432 16.196-0.104 22.523v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rainbow" - ], - "grid": 32 - }, - { - "id": 470, - "paths": [ - "M944 384c44.183 0 80 28.654 80 64 0-173.277-213.472-314.387-480-319.837v-48.183c0-8.826-7.422-15.98-16-15.98-8.837 0-16 6.916-16 15.98v48.183c-266.528 5.449-480 146.559-480 319.837 0-35.346 35.817-64 80-64s80 28.654 80 64c0-35.346 35.817-64 80-64s80 28.654 80 64c0-35.346 35.817-64 80-64s80 28.654 80 64v448.295c0 17.274-14.327 31.705-32 31.705-17.796 0-32-14.195-32-31.705v-48.145c0-8.919-7.422-16.15-16-16.15-8.837 0-16 6.849-16 16.15v47.817c0 35.365 28.407 64.033 64 64.033 35.346 0 64-28.407 64-64v-448c0-35.346 35.817-64 80-64s80 28.654 80 64c0-35.346 35.817-64 80-64s80 28.654 80 64c0-35.346 35.817-64 80-64v0zM512 380.814c-20.328-17.781-48.661-28.814-80-28.814-28.608 0-54.71 9.193-74.506 24.321v0c18.19-116.206 79.577-204.098 154.506-215.147v219.64zM544 380.814v-219.64c74.928 11.049 136.315 98.941 154.506 215.147-19.796-15.128-45.898-24.321-74.506-24.321-31.339 0-59.672 11.033-80 28.814zM327.164 364.433c-16.283-7.914-35.108-12.433-55.164-12.433-25.623 0-49.237 7.375-68.108 19.784v0c29.361-91.943 110.55-165.53 214.975-196.252-44.434 42.214-77.766 109.434-91.702 188.901v0 0zM728.836 364.433v0 0c-13.936-79.467-47.269-146.687-91.702-188.901 104.425 30.723 185.614 104.309 214.975 196.252-18.872-12.409-42.485-19.784-68.108-19.784-20.056 0-38.881 4.519-55.164 12.433zM171.927 366.883c-17.329-9.425-37.884-14.883-59.927-14.883-7.78 0-15.375 0.68-22.709 1.974 37.069-66.646 112.447-122.207 209.795-156.543-61.348 42.436-106.758 101.549-127.159 169.452v0 0zM756.914 197.431c97.348 34.336 172.725 89.898 209.795 156.543-7.333-1.294-14.928-1.974-22.709-1.974-22.043 0-42.598 5.458-59.927 14.883-20.401-67.904-65.811-127.017-127.159-169.452v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "umbrella" - ], - "grid": 32 - }, - { - "id": 471, - "paths": [ - "M864 448h160c0-35.346-35.817-64-80-64s-80 28.654-80 64v0zM864 448c0-35.346-35.817-64-80-64s-80 28.654-80 64c0-35.346-35.817-64-80-64s-80 28.654-80 64v0 448c0 35.593-28.654 64-64 64-35.593 0-64-28.669-64-64.033v-47.817c0-9.301 7.163-16.15 16-16.15 8.578 0 16 7.231 16 16.15v48.145c0 17.51 14.204 31.705 32 31.705 17.673 0 32-14.431 32-31.705v-448.295c0-35.346-35.817-64-80-64s-80 28.654-80 64c0-35.346-35.817-64-80-64s-80 28.654-80 64c0-35.346-35.817-64-80-64s-80 28.654-80 64c0-173.277 213.472-314.387 480-319.837v-48.183c0-9.064 7.163-15.98 16-15.98 8.578 0 16 7.155 16 15.98v48.183c266.528 5.449 480 146.559 480 319.837h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "umbrella" - ], - "grid": 32 - }, - { - "id": 472, - "paths": [ - "M288 368v0c-0 41.6 26.682 80 80.337 80s79.663-41.6 79.663-80c-0-53.895-79.663-144-79.663-144s-80.337 90.105-80.337 144zM608 496v0c-0 41.6 26.682 80 80.337 80s79.663-41.6 79.663-80c-0-53.895-79.663-144-79.663-144s-80.337 90.105-80.337 144zM384 752v0c-0 41.6 26.682 80 80.337 80s79.663-41.6 79.663-80c-0-53.895-79.663-144-79.663-144s-80.337 90.105-80.337 144zM640 496c-0-32 48.337-92.8 48.337-92.8s47.663 60.8 47.663 92.8c0 38.4-26.008 48-47.663 48s-48.337-9.6-48.337-48v0zM320 368c-0-32 48.337-92.8 48.337-92.8s47.663 60.8 47.663 92.8c0 38.4-26.008 48-47.663 48s-48.337-9.6-48.337-48v0zM416 752c-0-32 48.337-92.8 48.337-92.8s47.663 60.8 47.663 92.8c0 38.4-26.008 48-47.663 48s-48.337-9.6-48.337-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "raindrops" - ], - "grid": 32 - }, - { - "id": 473, - "paths": [ - "M288 368c0-53.895 80.337-144 80.337-144s79.663 90.105 79.663 144c0 38.4-26.008 80-79.663 80s-80.337-38.4-80.337-80v0zM608 496c0-53.895 80.337-144 80.337-144s79.663 90.105 79.663 144c0 38.4-26.008 80-79.663 80s-80.337-38.4-80.337-80v0zM384 752c0-53.895 80.337-144 80.337-144s79.663 90.105 79.663 144c0 38.4-26.008 80-79.663 80s-80.337-38.4-80.337-80v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "raindrops" - ], - "grid": 32 - }, - { - "id": 474, - "paths": [ - "M384 582.737v0c0 66.972 57.308 121.263 128 121.263s128-54.291 128-121.263c0-80.842-128-262.737-128-262.737s-128 181.895-128 262.737zM416 582.737c0-54.737 96-205.137 96-205.137s96 150.4 96 205.137c0 57.263-57.308 89.263-96 89.263s-96-32-96-89.263v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "raindrop" - ], - "grid": 32 - }, - { - "id": 475, - "paths": [ - "M384 582.737c0-80.842 128-262.737 128-262.737s128 181.895 128 262.737c0 66.972-57.308 121.263-128 121.263s-128-54.291-128-121.263z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "raindrop" - ], - "grid": 32 - }, - { - "id": 476, - "paths": [ - "M576.32 478.958h351.227c0.952 11.374 0.256 22.693-0.736 32h-346.91v0c-2.762-10.019-4.693-21.284-3.582-32zM595.487 446.958c3.782-2.44 8.223-4.572 13.414-6.323 57.274-19.318 116.244-24.555 148.434-25.427s123.67-0.401 148.532 17.509c5.391 3.883 9.545 8.753 12.717 14.241h-323.097zM431.663 542.958c-3.287 9.137-8.869 20.713-15.804 32v0h-304.892c-3.464-9.606-6.495-21.12-8.719-32h329.416zM442.94 510.958h-345.524c-0.995-9.314-1.681-20.646-0.664-32h349.644v0c1.234 10.691-0.68 21.971-3.456 32zM389.979 606.958c-1.607 1.379-3.226 2.649-4.85 3.794-21.107 14.875-67.477 26.736-125.758 26.736-33.844 0-61.317-1.592-88.362-7.677-19.335-4.35-31.728-8.355-43.032-22.853h262.002zM425.757 446.958h-319.538c3.079-5.014 7.033-9.47 12.071-13.068 24.758-17.68 115.855-18.145 147.91-17.284s90.779 6.031 147.813 25.102c4.448 1.487 8.343 3.253 11.743 5.251zM913.456 574.958h-306.806c-6.84-11.324-12.331-22.884-15.558-32h330.935v0c-2.188 10.845-5.165 22.332-8.571 32zM896.954 606.958c-11.574 15.566-24.146 19.711-44.027 24.223-27.159 6.164-54.747 7.777-88.733 7.777-58.525 0-105.091-12.015-126.286-27.083-2.041-1.451-4.074-3.101-6.086-4.917h265.132zM481.888 415.214c-139.756-38.513-336.804-36.714-438.171-19.633-12.241 2.063-14.162 58.331-3.276 60.299 20.035 8.102 28.583 28.322 28.583 28.322s5.982 17.941 23.356 90.905c17.373 72.964 58.791 81.713 58.791 81.713s50.693 12.544 109.171 12.544c58.478 0 93.459-2.659 130.91-21.391s53.819-70.904 53.819-70.904c0 0 18.869-44.955 31.86-87.374 4.074-13.302 66.066-13.302 70.14 0 12.991 42.418 31.86 87.374 31.86 87.374s16.369 52.171 53.819 70.904c37.451 18.733 72.432 21.391 130.91 21.391s109.171-12.544 109.171-12.544c0 0 41.418-8.749 58.791-81.713s23.356-90.905 23.356-90.905c0 0 8.548-20.219 28.583-28.322 10.886-1.969 8.965-58.237-3.276-60.299-101.367-17.081-298.416-18.88-438.171 19.633-9.484 2.172-50.741 2.172-60.225 0v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunglasses" - ], - "grid": 32 - }, - { - "id": 477, - "paths": [ - "M480.591 415.214c-139.756-38.513-336.804-36.714-438.171-19.633-12.241 2.063-14.162 58.331-3.276 60.299 20.035 8.102 28.583 28.322 28.583 28.322s5.982 17.941 23.356 90.905c17.373 72.964 58.791 81.713 58.791 81.713s50.693 12.544 109.171 12.544c58.478 0 93.459-2.659 130.91-21.391s53.819-70.904 53.819-70.904c0 0 18.869-44.955 31.86-87.374 4.074-13.302 66.066-13.302 70.14 0 12.991 42.418 31.86 87.374 31.86 87.374s16.369 52.171 53.819 70.904c37.451 18.733 72.432 21.391 130.91 21.391s109.171-12.544 109.171-12.544c0 0 41.418-8.749 58.791-81.713s23.356-90.905 23.356-90.905c0 0 8.548-20.219 28.583-28.322 10.886-1.969 8.965-58.237-3.276-60.299-101.367-17.081-298.416-18.88-438.171 19.633-9.484 2.172-50.741 2.172-60.225 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sunglasses" - ], - "grid": 32 - }, - { - "id": 478, - "paths": [ - "M408.32 500.48l-40.32 107.52-40.32-107.52-71.68-20.48 71.68-20.48 40.32-107.52 40.32 107.52 71.68 20.48-71.68 20.48zM726.857 295.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM662.857 679.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM430.703 431.568l-62.703-175.568-62.703 175.568-145.297 48.432 145.297 48.432 62.703 175.568 62.703-175.568 145.297-48.432-145.297-48.432z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stars" - ], - "grid": 32 - }, - { - "id": 479, - "paths": [ - "M726.857 295.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM662.857 679.619l-38.857-103.619-38.857 103.619-73.143 24.381 73.143 24.381 38.857 103.619 38.857-103.619 73.143-24.381-73.143-24.381zM430.703 431.568l-62.703-175.568-62.703 175.568-145.297 48.432 145.297 48.432 62.703 175.568 62.703-175.568 145.297-48.432-145.297-48.432z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stars" - ], - "grid": 32 - }, - { - "id": 480, - "paths": [ - "M832.070 640v0 0c20.060 26.741 31.93 59.981 31.93 96 0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 24.023 0 47.162 3.782 68.856 10.782 16.405-61.489 72.485-106.782 139.144-106.782 24.846 0 48.222 6.292 68.621 17.37 27.464-48.579 79.592-81.37 139.379-81.37 88.366 0 160 71.634 160 160 0 12.079-1.339 23.846-3.876 35.16 57.18 12.931 99.876 64.018 99.876 124.84 0 70.692-57.611 128-128.306 128h-31.624zM800.103 608h64.083c52.828 0 95.814-42.981 95.814-96 0-52.911-42.898-96-95.814-96h-17.31c10.891-18.827 17.124-40.686 17.124-64 0-70.692-57.308-128-128-128-61.326 0-112.578 43.127-125.084 100.707-20.488-22.549-50.049-36.707-82.916-36.707-53.234 0-97.793 37.139-109.181 86.92 31.989 15.75 59.673 38.909 80.814 67.237 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265 11.475 5.002 22.245 11.309 32.124 18.735v0 0zM32 736c0 70.692 57.534 128 128.090 128h543.82c70.742 0 128.090-57.451 128.090-128 0-60.078-41.554-110.489-97.34-124.273 0.884-6.449 1.34-13.035 1.34-19.727 0-79.529-64.471-144-144-144-39.217 0-74.773 15.677-100.742 41.107-31.71-62.374-96.494-105.107-171.258-105.107-106.039 0-192 85.961-192 192 0 12.048 1.11 23.836 3.232 35.269-56.845 13.107-99.232 64.079-99.232 124.731v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clouds" - ], - "grid": 32 - }, - { - "id": 481, - "paths": [ - "M870.219 639.837c67.68-3.397 121.781-59.332 121.781-127.837 0-60.821-42.696-111.908-99.876-124.84 2.537-11.314 3.876-23.081 3.876-35.16 0-88.366-71.634-160-160-160-59.787 0-111.914 32.792-139.379 81.37-20.4-11.078-43.776-17.37-68.621-17.37-55.31 0-103.336 31.183-127.458 76.927 41.378 13.703 78.077 37.677 107.077 68.901 25.789-11.46 54.342-17.828 84.382-17.828 107.089 0 195.276 80.928 206.739 184.963 29.654 16.855 54.38 41.379 71.48 70.874v0 0zM864 736c0 88.186-71.626 160-159.982 160h-544.036c-88.542 0-159.982-71.634-159.982-160 0-65.628 39.669-122.189 96.381-146.831-0.253-4.357-0.381-8.748-0.381-13.169 0-123.712 100.288-224 224-224 73.534 0 138.793 35.433 179.633 90.157 26.849-16.586 58.49-26.157 92.367-26.157 96.289 0 174.518 77.324 175.979 173.265 56.585 24.664 96.021 81.082 96.021 146.735v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clouds" - ], - "grid": 32 - }, - { - "id": 482, - "paths": [ - "M626.099 629.837c27.468-23.41 47.65-55.116 56.668-91.242 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 61.403 31.444 115.462 79.109 146.952l25.192-22.043c-43.208-24.855-72.301-71.485-72.301-124.909 0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-9.064 25.748-25.239 48.145-46.169 64.831l24.401 21.351zM240.263 704c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moonrise" - ], - "grid": 32 - }, - { - "id": 483, - "paths": [ - "M618.843 621.865c23.004-22.425 39.892-51.095 47.925-83.271 2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 64.736 34.95 121.308 87.011 151.878l120.989-103.705 90.843 77.865zM240.263 704c-8.982 0-16.263 7.422-16.263 16 0 8.837 7.252 16 16.263 16h194.404l93.333-80 93.333 80h194.404c8.982 0 16.263-7.422 16.263-16 0-8.837-7.252-16-16.263-16h-175.737l-112-96-112 96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moonrise" - ], - "grid": 32 - }, - { - "id": 484, - "paths": [ - "M682.768 474.595v0c2.807-11.244 4.533-22.917 5.060-34.901-14.965 5.268-31.061 8.133-47.827 8.133-79.529 0-144-64.471-144-144 0-16.766 2.865-32.863 8.133-47.827-11.984 0.527-23.656 2.253-34.901 5.060-76.535 19.106-133.232 88.316-133.232 170.768 0 97.202 78.798 176 176 176 82.452 0 151.662-56.698 170.768-133.232zM368 431.827c0-62.763 40.153-116.148 96.173-135.867-0.115 2.608-0.173 5.231-0.173 7.867 0 97.202 78.798 176 176 176 2.636 0 5.259-0.058 7.867-0.173-19.719 56.019-73.104 96.173-135.867 96.173-79.529 0-144-64.471-144-144v0zM240.263 704c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moonset" - ], - "grid": 32 - }, - { - "id": 485, - "paths": [ - "M681.838 490.595c-19.106 76.535-88.316 133.232-170.768 133.232-97.202 0-176-78.798-176-176 0-82.452 56.698-151.662 133.232-170.768 11.244-2.807 22.917-4.533 34.901-5.060-5.268 14.965-8.133 31.061-8.133 47.827 0 79.529 64.471 144 144 144 16.766 0 32.863-2.865 47.827-8.133-0.527 11.984-2.253 23.656-5.060 34.901v0zM240.263 704c-8.982 0-16.263-7.422-16.263-16 0-8.837 7.252-16 16.263-16h194.404l93.333 80 93.333-80h194.404c8.982 0 16.263 7.422 16.263 16 0 8.837-7.252 16-16.263 16h-175.737l-112 96-112-96h-175.737z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moonset" - ], - "grid": 32 - }, - { - "id": 486, - "paths": [ - "M960 448c0-70.692-57.451-128-128-128-70.692 0-128 57.261-128 128h32c0-53.019 43.089-96 96-96 53.019 0 96 43.089 96 96 0 53.019-42.98 96-96.254 96h-735.746v32h736.049c70.665 0 127.951-57.451 127.951-128v0zM672 416c0-53.019-43.089-96-96-96-53.019 0-96 42.946-96 95.725v0.275h32c0-35.346 28.407-64 64-64 35.346 0 64 28.407 64 64 0 35.346-28.706 64-64.187 64h-383.813v32h384.018c53.009 0 95.982-43.089 95.982-96v0zM800 672c0 35.346-28.407 64-64 64v0c-35.346 0-64-28.631-64-63.816v-0.184h32c0 17.673 14.204 32 32 32v0c17.673 0 32-14.204 32-32v0c0-17.673-14.365-32-32.239-32h-447.761v-32h448.19c35.241 0 63.81 28.407 63.81 64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wind" - ], - "grid": 32 - }, - { - "id": 487, - "paths": [ - "M960 448c0-70.692-57.451-128-128-128-70.692 0-128 57.261-128 128h64c0-35.346 28.407-64 64-64 35.346 0 64 28.407 64 64 0 35.346-28.472 64-64.115 64h-735.885v64h736.049c70.665 0 127.951-57.451 127.951-128v0zM672 320c0-70.692-57.451-128-128-128-70.692 0-128 57.261-128 127.907v0.093h64c0-35.346 28.407-64 64-64 35.346 0 64 28.407 64 64 0 35.346-28.706 64-64.187 64h-383.813v64h384.122c70.625 0 127.878-57.451 127.878-128v0zM832 736c0 53.019-43.089 96-96 96v0c-53.019 0-96-42.946-96-95.725v-0.275h64c0 17.673 14.204 32 32 32v0c17.673 0 32-14.204 32-32v0c0-17.673-14.365-32-32.239-32h-447.761v-64h447.996c53.022 0 96.004 43.089 96.004 96v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wind" - ], - "grid": 32 - }, - { - "id": 488, - "paths": [ - "M512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "full-moon" - ], - "grid": 32 - }, - { - "id": 489, - "paths": [ - "M704 512c0 106.039-85.961 192-192 192s-192-85.961-192-192c0-106.039 85.961-192 192-192s192 85.961 192 192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "full-moon" - ], - "grid": 32 - }, - { - "id": 490, - "paths": [ - "M512 352l0.019 0c-0.006-0-0.013-0-0.019-0-53.019 0-96 71.634-96 160s42.981 160 96 160c-88.366 0-160-71.634-160-160s71.634-160 160-160zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crescent" - ], - "grid": 32 - }, - { - "id": 491, - "paths": [ - "M544 635.967c-10.228 2.632-20.95 4.033-32 4.033-70.692 0-128-57.308-128-128s57.308-128 128-128c11.050 0 21.772 1.4 32 4.033-55.207 14.209-96 64.325-96 123.967s40.793 109.758 96 123.967v0zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crescent" - ], - "grid": 32 - }, - { - "id": 492, - "paths": [ - "M512 704v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 672v-320c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "half-moon" - ], - "grid": 32 - }, - { - "id": 493, - "paths": [ - "M512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0zM384 512c0-70.692 57.308-128 128-128v256c-70.692 0-128-57.308-128-128v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "half-moon" - ], - "grid": 32 - }, - { - "id": 494, - "paths": [ - "M512 352v0c53.019 0 96 71.634 96 160s-42.981 160-96 160c-88.366 0-160-71.634-160-160s71.634-160 160-160zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gibbous-moon" - ], - "grid": 32 - }, - { - "id": 495, - "paths": [ - "M512 384v0c35.346 0 64 57.308 64 128s-28.654 128-64 128c-70.692 0-128-57.308-128-128s57.308-128 128-128zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gibbous-moon" - ], - "grid": 32 - }, - { - "id": 496, - "paths": [ - "M512 704v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 672c88.366 0 160-71.634 160-160s-71.634-160-160-160c-88.366 0-160 71.634-160 160s71.634 160 160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon" - ], - "grid": 32 - }, - { - "id": 497, - "paths": [ - "M512 704v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM512 640c70.692 0 128-57.308 128-128s-57.308-128-128-128c-70.692 0-128 57.308-128 128s57.308 128 128 128v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moon" - ], - "grid": 32 - }, - { - "id": 498, - "paths": [ - "M512 352v0c-53.019 0-96 71.634-96 160s42.981 160 96 160c88.366 0 160-71.634 160-160s-71.634-160-160-160zM512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gibbous-moon" - ], - "grid": 32 - }, - { - "id": 499, - "paths": [ - "M512 384c70.692 0 128 57.308 128 128s-57.308 128-128 128c-35.346 0-64-57.308-64-128s28.654-128 64-128v0zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gibbous-moon" - ], - "grid": 32 - }, - { - "id": 500, - "paths": [ - "M512 704v0c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192zM512 672v-320c88.366 0 160 71.634 160 160s-71.634 160-160 160v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "half-moon" - ], - "grid": 32 - }, - { - "id": 501, - "paths": [ - "M512 704v0c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192zM640 512c0-70.692-57.308-128-128-128v256c70.692 0 128-57.308 128-128v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "half-moon" - ], - "grid": 32 - }, - { - "id": 502, - "paths": [ - "M512 352l-0.019 0c0.006-0 0.013-0 0.019-0 53.019 0 96 71.634 96 160s-42.981 160-96 160c88.366 0 160-71.634 160-160s-71.634-160-160-160zM512 704c-106.039 0-192-85.961-192-192s85.961-192 192-192c106.039 0 192 85.961 192 192s-85.961 192-192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crescent" - ], - "grid": 32 - }, - { - "id": 503, - "paths": [ - "M480 388.033c10.228-2.632 20.95-4.033 32-4.033 70.692 0 128 57.308 128 128s-57.308 128-128 128c-11.050 0-21.772-1.4-32-4.033 55.207-14.209 96-64.325 96-123.967s-40.793-109.758-96-123.967v0zM512 704c106.039 0 192-85.961 192-192s-85.961-192-192-192c-106.039 0-192 85.961-192 192s85.961 192 192 192v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crescent" - ], - "grid": 32 - }, - { - "id": 504, - "paths": [ - "M572.538 685.534c21.387 14.36 35.462 38.769 35.462 66.466 0 44.183-35.817 80-80 80s-80-35.817-80-80c0-27.697 14.075-52.106 35.462-66.466l44.538-237.534 44.538 237.534zM936.847 763.893c15.009-43.875 23.153-90.933 23.153-139.893 0-238.587-193.413-432-432-432s-432 193.413-432 432c0 48.96 8.145 96.018 23.153 139.893l30.654-9.289c-14.132-40.93-21.807-84.871-21.807-130.604 0-220.914 179.086-400 400-400s400 179.086 400 400c0 45.733-7.675 89.674-21.807 130.604l30.654 9.289zM528 800c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0 0zM528 256c-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695 8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695v0 0zM744.365 326.301c-7.149-5.194-16.989-3.837-22.17 3.293l-56.786 78.159c-5.095 7.013-3.221 17.060 3.719 22.102 7.149 5.194 16.989 3.837 22.17-3.293l56.786-78.159c5.095-7.013 3.221-17.060-3.719-22.102v0 0zM878.085 510.352c-2.731-8.404-11.489-13.090-19.871-10.367l-91.881 29.854c-8.244 2.679-12.634 11.909-9.983 20.067 2.731 8.404 11.489 13.090 19.871 10.367l91.881-29.854c8.244-2.679 12.634-11.909 9.983-20.067v0 0zM878.085 737.851c2.731-8.404-1.601-17.344-9.983-20.067l-91.881-29.854c-8.244-2.679-17.221 2.209-19.871 10.367-2.731 8.404 1.601 17.344 9.983 20.067l91.881 29.854c8.244 2.679 17.221-2.209 19.871-10.367v0 0zM177.915 737.851c2.731 8.404 11.489 13.090 19.871 10.367l91.881-29.854c8.244-2.679 12.634-11.909 9.983-20.067-2.731-8.404-11.489-13.090-19.871-10.367l-91.881 29.854c-8.244 2.679-12.634 11.909-9.983 20.067v0 0zM177.915 510.352c-2.731 8.404 1.601 17.344 9.983 20.067l91.881 29.854c8.244 2.679 17.221-2.209 19.871-10.367 2.731-8.404-1.601-17.344-9.983-20.067l-91.881-29.854c-8.244-2.679-17.221 2.209-19.871 10.367v0 0zM311.635 326.301c-7.149 5.194-8.899 14.972-3.719 22.102l56.786 78.159c5.095 7.013 15.23 8.335 22.17 3.293 7.149-5.194 8.899-14.972 3.719-22.102l-56.786-78.159c-5.095-7.013-15.23-8.335-22.17-3.293v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "barometer" - ], - "grid": 32 - }, - { - "id": 505, - "paths": [ - "M572.538 685.534l-44.538-237.534-44.538 237.534c-21.387 14.36-35.462 38.769-35.462 66.466 0 5.479 0.551 10.83 1.6 16h-329.019c-15.919-45.040-24.582-93.508-24.582-144 0-238.587 193.413-432 432-432s432 193.413 432 432c0 50.492-8.662 98.96-24.582 144h-329.019c1.049-5.17 1.6-10.521 1.6-16 0-27.697-14.075-52.106-35.462-66.466zM528 800c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0 0zM528 224c-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695 8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695v0 0zM744.365 294.301c-7.149-5.194-16.989-3.837-22.17 3.293l-56.786 78.159c-5.095 7.013-3.221 17.060 3.719 22.102 7.149 5.194 16.989 3.837 22.17-3.293l56.786-78.159c5.095-7.013 3.221-17.060-3.719-22.102v0 0zM878.085 478.352c-2.731-8.404-11.489-13.090-19.871-10.367l-91.881 29.854c-8.244 2.679-12.634 11.909-9.983 20.067 2.731 8.404 11.489 13.090 19.871 10.367l91.881-29.854c8.244-2.679 12.634-11.909 9.983-20.067v0 0zM878.085 705.851c2.731-8.404-1.601-17.344-9.983-20.067l-91.881-29.854c-8.244-2.679-17.221 2.209-19.871 10.367-2.731 8.404 1.601 17.344 9.983 20.067l91.881 29.854c8.244 2.679 17.221-2.209 19.871-10.367v0 0zM177.915 705.851c2.731 8.404 11.489 13.090 19.871 10.367l91.881-29.854c8.244-2.679 12.634-11.909 9.983-20.067-2.731-8.404-11.489-13.090-19.871-10.367l-91.881 29.854c-8.244 2.679-12.634 11.909-9.983 20.067v0 0zM177.915 478.352c-2.731 8.404 1.601 17.344 9.983 20.067l91.881 29.854c8.244 2.679 17.221-2.209 19.871-10.367 2.731-8.404-1.601-17.344-9.983-20.067l-91.881-29.854c-8.244-2.679-17.221 2.209-19.871 10.367v0 0zM311.635 294.301c-7.149 5.194-8.899 14.972-3.719 22.102l56.786 78.159c5.095 7.013 15.23 8.335 22.17 3.293 7.149-5.194 8.899-14.972 3.719-22.102l-56.786-78.159c-5.095-7.013-15.23-8.335-22.17-3.293v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "barometer" - ], - "grid": 32 - }, - { - "id": 506, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM512 224c0 0 96 224 96 288 0 21.378 0 0 0 0 0 53.019-43.089 96-96 96-53.019 0-96-42.78-96-96 0 0 0 38.72 0 0 0-64 96-288 96-288v0zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-north" - ], - "grid": 32 - }, - { - "id": 507, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM512 864c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352v0zM512 224c0 0 96 224 96 288 0 21.378 0 0 0 0 0 53.019-43.089 96-96 96-53.019 0-96-42.78-96-96 0 0 0 38.72 0 0 0-64 96-288 96-288v0zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-north" - ], - "grid": 32 - }, - { - "id": 508, - "paths": [ - "M96 512v0c0 229.75 186.25 416 416 416s416-186.25 416-416c0-229.75-186.25-416-416-416s-416 186.25-416 416zM128 512c0-212.077 171.923-384 384-384s384 171.923 384 384c0 212.077-171.923 384-384 384s-384-171.923-384-384v0zM608 512c0-53.019-42.78-96-96-96-64 0-288 96-288 96s224 96 288 96c53.019 0 96-43.089 96-96v0zM448 512c0-35.346 28.654-64 64-64s64 28.654 64 64c0 35.346-28.654 64-64 64s-64-28.654-64-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-west" - ], - "grid": 32 - }, - { - "id": 509, - "paths": [ - "M512 96v0c229.75 0 416 186.25 416 416s-186.25 416-416 416c-229.75 0-416-186.25-416-416s186.25-416 416-416zM512 128c-212.077 0-384 171.923-384 384s171.923 384 384 384c212.077 0 384-171.923 384-384s-171.923-384-384-384v0zM512 160c-194.404 0-352 157.596-352 352s157.596 352 352 352c194.404 0 352-157.596 352-352s-157.596-352-352-352v0zM512 416c53.019 0 96 43.089 96 96 0 53.019-42.78 96-96 96-64 0-288-96-288-96s224-96 288-96v0zM512 448c-35.346 0-64 28.654-64 64s28.654 64 64 64c35.346 0 64-28.654 64-64s-28.654-64-64-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-west" - ], - "grid": 32 - }, - { - "id": 510, - "paths": [ - "M928 512v0c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384v0zM416 512c0 53.019 42.78 96 96 96 64 0 288-96 288-96s-224-96-288-96c-53.019 0-96 43.089-96 96v0zM576 512c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-east" - ], - "grid": 32 - }, - { - "id": 511, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM512 864c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352v0zM512 608c-53.019 0-96-43.089-96-96 0-53.019 42.78-96 96-96 64 0 288 96 288 96s-224 96-288 96v0zM512 576c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-east" - ], - "grid": 32 - }, - { - "id": 512, - "paths": [ - "M928 512v0c0-229.75-186.25-416-416-416s-416 186.25-416 416c0 229.75 186.25 416 416 416s416-186.25 416-416zM896 512c0 212.077-171.923 384-384 384s-384-171.923-384-384c0-212.077 171.923-384 384-384s384 171.923 384 384v0zM608 512c0-53.019-43.089-96-96-96-53.019 0-96 42.78-96 96 0 64 96 288 96 288s96-224 96-288v0zM576 512c0 35.346-28.654 64-64 64s-64-28.654-64-64c0-35.346 28.654-64 64-64s64 28.654 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-south" - ], - "grid": 32 - }, - { - "id": 513, - "paths": [ - "M96 512v0c0-229.75 186.25-416 416-416s416 186.25 416 416c0 229.75-186.25 416-416 416s-416-186.25-416-416zM128 512c0 212.077 171.923 384 384 384s384-171.923 384-384c0-212.077-171.923-384-384-384s-384 171.923-384 384v0zM160 512c0 194.404 157.596 352 352 352s352-157.596 352-352c0-194.404-157.596-352-352-352s-352 157.596-352 352v0zM416 512c0-53.019 43.089-96 96-96 53.019 0 96 42.78 96 96 0 64-96 288-96 288s-96-224-96-288v0zM448 512c0 35.346 28.654 64 64 64s64-28.654 64-64c0-35.346-28.654-64-64-64s-64 28.654-64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass-south" - ], - "grid": 32 - }, - { - "id": 514, - "paths": [ - "M736 364.802l-64 6.858v-167.506l64 6.846v153.802zM768 361.373v-146.95l64 6.846v133.246l-64 6.858zM640 375.089l-96 10.287v-194.914l96 10.269v174.358zM512 388.804l-96 10.287v-222.322l96 10.269v201.766zM384 402.52l-96 10.287v-249.73l96 10.269v229.174zM208 128c-8.837 0-16 6.916-16 15.98v768.039c0 8.826 7.422 15.98 16 15.98 8.837 0 16-6.916 16-15.98v-768.039c0-8.826-7.422-15.98-16-15.98v0zM256 128v320l608-64v-192l-608-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "air-sock" - ], - "grid": 32 - }, - { - "id": 515, - "paths": [ - "M512 388.804v-201.766l128 13.693v174.358l-128 13.716zM416 399.091l-128 13.716v-249.73l128 13.693v222.322zM736 364.802v-153.802l96 10.269v133.246l-96 10.287zM208 128c-8.837 0-16 6.916-16 15.98v768.039c0 8.826 7.422 15.98 16 15.98 8.837 0 16-6.916 16-15.98v-768.039c0-8.826-7.422-15.98-16-15.98v0zM256 128v320l608-64v-192l-608-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "air-sock" - ], - "grid": 32 - }, - { - "id": 516, - "paths": [ - "M894.699 139.172v0 0c-16.184 65.992-181.343 117.86-382.699 117.86-162.44 0-301.323-33.757-357.435-81.453 45.361 55.478 146.108 123.126 90.643 199.719-180.973 161.906-113.955 296.739-59.4 344.758 116.984 102.969 198.27 112.528 274.176 143.047 76.582 30.791 92.836 76.379 92.836 76.379s35.189-68.276-149.5-149.402c-148.848-65.383-27.918-201.369 199.783-338.902 192.722-116.406 302.551-244.95 291.597-312.006zM112.575 99.097c33.332-54.73 179.076-99.097 399.979-99.097s363.784 52.706 399.979 99.097c49.997 64.083-28.165 215.528-266.652 363.355-203.336 126.038-353.246 248.622-233.321 297.29 285.611 115.907 133.326 264.258 133.326 264.258s0-99.097-99.995-132.129c-169.029-55.837-233.321-99.097-299.984-165.161-50.429-49.976-104.7-207.715 66.663-363.355 85.273-77.449-163.945-159.253-99.995-264.258v0zM864 129.032c0-53.019-157.596-96-352-96s-352 42.981-352 96c0 53.019 157.596 96 352 96s352-42.981 352-96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tornado" - ], - "grid": 32 - }, - { - "id": 517, - "paths": [ - "M112.575 99.097c33.332-54.73 179.076-99.097 399.979-99.097s363.784 52.706 399.979 99.097c49.997 64.083-28.165 215.528-266.652 363.355-203.336 126.038-353.246 248.622-233.321 297.29 285.611 115.907 133.326 264.258 133.326 264.258s0-99.097-99.995-132.129c-169.029-55.837-233.321-99.097-299.984-165.161-50.429-49.976-104.7-207.715 66.663-363.355 85.273-77.449-163.945-159.253-99.995-264.258v0zM864 129.032c0-53.019-157.596-96-352-96s-352 42.981-352 96c0 53.019 157.596 96 352 96s352-42.981 352-96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tornado" - ], - "grid": 32 - }, - { - "id": 518, - "paths": [ - "M288 448v0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM288 416c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0zM640.070 192c-88.404 0-160.070 71.553-160.070 159.848v464.332c0 8.737 7.422 15.82 16 15.82v0c8.837 0 16-7.285 16-16.309v-303.691h207.89c8.897 0 16.11-7.422 16.11-16v0c0-8.837-7.453-16-16.11-16h-207.89v-128c0-70.692 57.338-128 128.076-128h207.885c8.858 0 16.039-7.422 16.039-16v0c0-8.837-7.328-16-16.011-16h-207.919z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "degree-fahrenheit" - ], - "grid": 32 - }, - { - "id": 519, - "paths": [ - "M288 448v0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM288 384c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM640.070 192c-88.404 0-160.070 71.553-160.070 159.848v448.414c0 17.528 14.204 31.738 32 31.738v0c17.673 0 32-14.282 32-31.921v-256.079h160.295c17.51 0 31.705-14.204 31.705-32v0c0-17.673-14.431-32-31.705-32h-160.295v-127.704c0-53.183 43.157-96.296 96.011-96.296h192.137c17.592 0 31.853-14.204 31.853-32v0c0-17.673-14.584-32-32.079-32h-191.851z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "degree-fahrenheit" - ], - "grid": 32 - }, - { - "id": 520, - "paths": [ - "M832 368c0 8.837 7.422 16 16 16 8.837 0 16-7.422 16-16v-16.152c0-88.282-71.328-159.848-160.070-159.848h-63.86c-88.404 0-160.070 71.553-160.070 159.848v320.304c0 88.282 71.328 159.848 160.070 159.848h63.86c88.404 0 160.070-71.553 160.070-159.848v-16.152c0-8.837-7.422-16-16-16-8.837 0-16 7.422-16 16v16.167c0 70.498-57.447 127.833-128.312 127.833h-63.375c-71.103 0-128.312-57.233-128.312-127.833v-320.334c0-70.498 57.447-127.833 128.312-127.833h63.375c71.103 0 128.312 57.233 128.312 127.833v16.167zM288 448v0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM288 416c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "degree-celsius" - ], - "grid": 32 - }, - { - "id": 521, - "paths": [ - "M832 640c-17.673 0-32 14.204-32 32-0.162 53.389-43.104 96-96.053 96h-63.893c-53.205 0-96.053-43.116-96.053-96.303v-319.393c0-53.531 43.005-96.303 96.053-96.303h63.893c53.103 0 95.89 42.953 96.053 96 0 17.673 14.204 32 32 32 17.673 0 32-14.204 32-32 0-88.434-71.328-160-160.070-160h-63.86c-88.404 0-160.070 71.553-160.070 159.848v320.304c0 88.282 71.328 159.848 160.070 159.848h63.86c88.404 0 160.070-71.553 160.070-159.848 0-17.825-14.204-32.152-32-32.152v0zM288 448v0 0c-70.692 0-128-57.308-128-128s57.308-128 128-128c70.692 0 128 57.308 128 128s-57.308 128-128 128zM288 384c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "degree-celsius" - ], - "grid": 32 - }, - { - "id": 522, - "paths": [ - "M461.575 196.749l-345.123 558.368c-37.289 60.329-10.11 108.884 60.438 108.884h670.194c70.532 0 97.607-48.749 60.438-108.884l-345.123-558.368c-27.776-44.938-72.983-45.045-100.825 0zM491.302 208.733c11.115-17.961 29.171-17.904 40.251 0l352.168 569.043c18.534 29.947 4.67 54.224-30.133 54.224h-684.296c-35.176 0-48.766-24.118-30.135-54.224l352.145-569.043zM512 384c-17.673 0-32 14.497-32 31.905v192.19c0 17.621 14.204 31.905 32 31.905 17.673 0 32-14.497 32-31.905v-192.19c0-17.621-14.204-31.905-32-31.905v0zM512 768c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "warning" - ], - "grid": 32 - }, - { - "id": 523, - "paths": [ - "M907.5 755.1l-345.1-558.4c-27.8-44.9-73-45-100.8 0v0l-345.1 558.4c-37.3 60.3-10.2 108.9 60.4 108.9h670.2c70.5 0 97.6-48.7 60.4-108.9zM512 768c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32-14.3 32-32 32zM544 608.1c0 17.4-14.3 31.9-32 31.9-17.8 0-32-14.3-32-31.9v-192.2c0-17.4 14.3-31.9 32-31.9v0c17.8 0 32 14.3 32 31.9v192.2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "warning" - ], - "grid": 32 - }, - { - "id": 524, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM579.882 579.882c-56.569 56.569-294.156 158.392-294.156 158.392s101.823-237.588 158.392-294.156c56.569-56.569 294.156-158.392 294.156-158.392s-101.823 237.588-158.392 294.156v0zM466.745 557.255c24.994 24.994 65.516 24.994 90.51 0s24.994-65.516 0-90.51c-24.994-24.994-65.516-24.994-90.51 0s-24.994 65.516 0 90.51v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 525, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM512 864c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352v0zM579.882 579.882c-56.569 56.569-294.156 158.392-294.156 158.392s101.823-237.588 158.392-294.156c56.569-56.569 294.156-158.392 294.156-158.392s-101.823 237.588-158.392 294.156v0zM466.745 557.255c24.994 24.994 65.516 24.994 90.51 0s24.994-65.516 0-90.51c-24.994-24.994-65.516-24.994-90.51 0s-24.994 65.516 0 90.51v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 526, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM584.569 584.569c-56.569 56.569-271.529 158.392-271.529 158.392s101.823-214.96 158.392-271.529c56.569-56.569 271.529-158.392 271.529-158.392s-101.823 214.96-158.392 271.529v0zM494.059 561.941c18.745 18.745 49.137 18.745 67.882 0s18.745-49.137 0-67.882c-18.745-18.745-49.137-18.745-67.882 0s-18.745 49.137 0 67.882v0zM528 192c-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695 8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695v0zM865.387 529.387c0-8.837-6.882-16-15.695-16h-96.609c-8.668 0-15.695 7.422-15.695 16 0 8.837 6.882 16 15.695 16h96.609c8.668 0 15.695-7.422 15.695-16v0zM528 866.773c8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695v0zM190.613 529.387c0 8.837 6.882 16 15.695 16h96.609c8.668 0 15.695-7.422 15.695-16 0-8.837-6.882-16-15.695-16h-96.609c-8.668 0-15.695 7.422-15.695 16v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 527, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 864c185.568 0 336-150.432 336-336s-150.432-336-336-336c-185.568 0-336 150.432-336 336s150.432 336 336 336v0zM584.569 584.569c-56.569 56.569-271.529 158.392-271.529 158.392s101.823-214.96 158.392-271.529c56.569-56.569 271.529-158.392 271.529-158.392s-101.823 214.96-158.392 271.529v0zM494.059 561.941c18.745 18.745 49.137 18.745 67.882 0s18.745-49.137 0-67.882c-18.745-18.745-49.137-18.745-67.882 0s-18.745 49.137 0 67.882v0zM528 224v0c8.578 0 16 7.027 16 15.695v96.609c0 8.813-7.163 15.695-16 15.695-8.578 0-16-7.027-16-15.695v-96.609c0-8.813 7.163-15.695 16-15.695zM833.387 529.387v0c0 8.578-7.027 16-15.695 16h-96.609c-8.813 0-15.695-7.163-15.695-16 0-8.578 7.027-16 15.695-16h96.609c8.813 0 15.695 7.163 15.695 16zM528 834.773v0c-8.578 0-16-7.027-16-15.695v-96.609c0-8.813 7.163-15.695 16-15.695 8.578 0 16 7.027 16 15.695v96.609c0 8.813-7.163 15.695-16 15.695zM222.613 529.387v0c0-8.578 7.027-16 15.695-16h96.609c8.813 0 15.695 7.163 15.695 16 0 8.578-7.027 16-15.695 16h-96.609c-8.813 0-15.695-7.163-15.695-16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 528, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM584.569 584.569c-56.569 56.569-271.529 158.392-271.529 158.392s101.823-214.96 158.392-271.529c56.569-56.569 271.529-158.392 271.529-158.392s-101.823 214.96-158.392 271.529v0zM528 192c-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695 8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695v0zM865.387 529.387c0-8.837-6.882-16-15.695-16h-96.609c-8.668 0-15.695 7.422-15.695 16 0 8.837 6.882 16 15.695 16h96.609c8.668 0 15.695-7.422 15.695-16v0zM528 866.773c8.837 0 16-6.882 16-15.695v-96.609c0-8.668-7.422-15.695-16-15.695-8.837 0-16 6.882-16 15.695v96.609c0 8.668 7.422 15.695 16 15.695v0zM190.613 529.387c0 8.837 6.882 16 15.695 16h96.609c8.668 0 15.695-7.422 15.695-16 0-8.837-6.882-16-15.695-16h-96.609c-8.668 0-15.695 7.422-15.695 16v0zM493.615 496c-33.941 33.941-110.874 178.757-110.874 178.757s144.816-76.933 178.757-110.874l-67.882-67.882z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 529, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 864c185.568 0 336-150.432 336-336s-150.432-336-336-336c-185.568 0-336 150.432-336 336s150.432 336 336 336v0zM584.569 584.569c-56.569 56.569-271.529 158.392-271.529 158.392s101.823-214.96 158.392-271.529c56.569-56.569 271.529-158.392 271.529-158.392s-101.823 214.96-158.392 271.529v0zM528 224v0c8.578 0 16 7.027 16 15.695v96.609c0 8.813-7.163 15.695-16 15.695-8.578 0-16-7.027-16-15.695v-96.609c0-8.813 7.163-15.695 16-15.695zM833.387 529.387v0c0 8.578-7.027 16-15.695 16h-96.609c-8.813 0-15.695-7.163-15.695-16 0-8.578 7.027-16 15.695-16h96.609c8.813 0 15.695 7.163 15.695 16zM528 834.773v0c-8.578 0-16-7.027-16-15.695v-96.609c0-8.813 7.163-15.695 16-15.695 8.578 0 16 7.027 16 15.695v96.609c0 8.813-7.163 15.695-16 15.695zM222.613 529.387v0c0-8.578 7.027-16 15.695-16h96.609c8.813 0 15.695 7.163 15.695 16 0 8.578-7.027 16-15.695 16h-96.609c-8.813 0-15.695-7.163-15.695-16zM493.615 496c-33.941 33.941-110.874 178.757-110.874 178.757s144.816-76.933 178.757-110.874l-67.882-67.882z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 530, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM579.882 579.882c-56.569 56.569-294.156 158.392-294.156 158.392s101.823-237.588 158.392-294.156c56.569-56.569 294.156-158.392 294.156-158.392s-101.823 237.588-158.392 294.156v0zM467.855 467.2c-45.255 45.255-115.4 205.909-115.4 205.909s160.655-70.145 205.909-115.4l-90.51-90.51z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 531, - "paths": [ - "M512 928v0c-229.75 0-416-186.25-416-416s186.25-416 416-416c229.75 0 416 186.25 416 416s-186.25 416-416 416zM512 896c212.077 0 384-171.923 384-384s-171.923-384-384-384c-212.077 0-384 171.923-384 384s171.923 384 384 384v0zM512 864c194.404 0 352-157.596 352-352s-157.596-352-352-352c-194.404 0-352 157.596-352 352s157.596 352 352 352v0zM579.882 579.882c-56.569 56.569-294.156 158.392-294.156 158.392s101.823-237.588 158.392-294.156c56.569-56.569 294.156-158.392 294.156-158.392s-101.823 237.588-158.392 294.156v0zM467.855 467.2c-45.255 45.255-115.4 205.909-115.4 205.909s160.655-70.145 205.909-115.4l-90.51-90.51z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass" - ], - "grid": 32 - }, - { - "id": 532, - "paths": [ - "M576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer" - ], - "grid": 32 - }, - { - "id": 533, - "paths": [ - "M576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer" - ], - "grid": 32 - }, - { - "id": 534, - "paths": [ - "M576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284zM512 928c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-low" - ], - "grid": 32 - }, - { - "id": 535, - "paths": [ - "M576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0zM512 928c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-low" - ], - "grid": 32 - }, - { - "id": 536, - "paths": [ - "M543.563 741.309c37.514 13.055 64.437 48.729 64.437 90.691 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.966 26.928-77.643 64.447-90.694-0.294-1.755-0.447-3.559-0.447-5.399v-159.813c0-18.082 14.327-32.094 32-32.094 17.796 0 32 14.369 32 32.094v159.813c0 1.847-0.149 3.652-0.437 5.403v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-quarter" - ], - "grid": 32 - }, - { - "id": 537, - "paths": [ - "M543.563 741.309c37.514 13.055 64.437 48.729 64.437 90.691 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.966 26.928-77.643 64.447-90.694-0.294-1.755-0.447-3.559-0.447-5.399v-159.813c0-18.082 14.327-32.094 32-32.094 17.796 0 32 14.369 32 32.094v159.813c0 1.847-0.149 3.652-0.437 5.403v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-quarter" - ], - "grid": 32 - }, - { - "id": 538, - "paths": [ - "M543.542 741.302c37.525 13.049 64.458 48.728 64.458 90.698 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.965 26.927-77.641 64.445-90.694-0.293-1.751-0.445-3.55-0.445-5.386v-319.842c0-17.495 14.327-32.079 32-32.079 17.796 0 32 14.362 32 32.079v319.842c0 1.83-0.157 3.628-0.458 5.381v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-half" - ], - "grid": 32 - }, - { - "id": 539, - "paths": [ - "M543.542 741.302c37.525 13.049 64.458 48.728 64.458 90.698 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.965 26.927-77.641 64.445-90.694-0.293-1.751-0.445-3.55-0.445-5.386v-319.842c0-17.495 14.327-32.079 32-32.079 17.796 0 32 14.362 32 32.079v319.842c0 1.83-0.157 3.628-0.458 5.381v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-half" - ], - "grid": 32 - }, - { - "id": 540, - "paths": [ - "M543.553 741.306c37.519 13.052 64.447 48.728 64.447 90.694 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.961 26.922-77.635 64.435-90.69-0.286-1.727-0.435-3.5-0.435-5.309v-480.003c0-17.448 14.327-31.999 32-31.999 17.796 0 32 14.326 32 31.999v480.003c0 1.803-0.153 3.576-0.447 5.305v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-three-quarters" - ], - "grid": 32 - }, - { - "id": 541, - "paths": [ - "M543.553 741.306c37.519 13.052 64.447 48.728 64.447 90.694 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.961 26.922-77.635 64.435-90.69-0.286-1.727-0.435-3.5-0.435-5.309v-480.003c0-17.448 14.327-31.999 32-31.999 17.796 0 32 14.326 32 31.999v480.003c0 1.803-0.153 3.576-0.447 5.305v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-three-quarters" - ], - "grid": 32 - }, - { - "id": 542, - "paths": [ - "M543.577 741.314c37.507 13.059 64.423 48.729 64.423 90.686 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.959 26.919-77.632 64.43-90.688-0.283-1.715-0.43-3.476-0.43-5.272v-608.080c0-17.924 14.327-31.96 32-31.96 17.796 0 32 14.309 32 31.96v608.080c0 1.801-0.145 3.562-0.423 5.274v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM608 703.988c38.862 29.191 64 75.666 64 128.012 0 88.366-71.634 160-160 160s-160-71.634-160-160c0-52.346 25.138-98.821 64-128.012v-576.284c0-52.693 42.981-95.704 96-95.704 52.911 0 96 42.848 96 95.704v576.284z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-full" - ], - "grid": 32 - }, - { - "id": 543, - "paths": [ - "M543.577 741.314c37.507 13.059 64.423 48.729 64.423 90.686 0 53.019-42.981 96-96 96s-96-42.981-96-96c0-41.959 26.919-77.632 64.43-90.688-0.283-1.715-0.43-3.476-0.43-5.272v-608.080c0-17.924 14.327-31.96 32-31.96 17.796 0 32 14.309 32 31.96v608.080c0 1.801-0.145 3.562-0.423 5.274v0zM576 721.124v-593.009c0-35.41-28.407-64.115-64-64.115-35.346 0-64 28.472-64 64.115v593.009c-38.259 22.132-64 63.498-64 110.876 0 70.692 57.308 128 128 128s128-57.308 128-128c0-47.378-25.741-88.744-64-110.876zM638.996 687.997c39.862 35.181 65.004 86.656 65.004 144.003 0 106.039-85.961 192-192 192s-192-85.961-192-192c0-57.346 25.141-108.82 65.002-144.002-0.661-5.27-1.002-10.639-1.002-16.088v-543.82c0-70.556 57.308-128.090 128-128.090 70.549 0 128 57.348 128 128.090v543.82c0 5.447-0.342 10.816-1.004 16.087v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thermometer-full" - ], - "grid": 32 - }, - { - "id": 544, - "paths": [ - "M546.134 448l49.065-128h-124.801l-73.598 192h82.516l-47.317 131.2 195.199-195.2h-81.065zM433.455 544h-81.455l96-256h192l-48 128h112l-352 352 81.455-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lightning" - ], - "grid": 32 - }, - { - "id": 545, - "paths": [ - "M433.455 544h-81.455l96-256h192l-48 128h112l-352 352 81.455-224z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lightning" - ], - "grid": 32 - }, - { - "id": 546, - "paths": [ - "M588.325 484.765c129.582 57.932 199.43 84.769 199.43 84.769s-79.096-63.048-173.25-130.291c-4.375 17.593-13.602 33.268-26.179 45.522v0 0zM428.114 439.016c-116.407 84.238-175.308 131.905-175.308 131.905s95.526-37.516 201.764-85.942c-12.744-12.338-22.079-28.175-26.456-45.963v0 0zM616.307 401.89c81.772 58.070 278.476 200.958 265.78 222.948-12.666 21.938-233.732-76.444-325.313-118.397v0l28.562 485.56c0 0-16 32-64 32s-64-32-64-32l28.562-485.56c-91.58 41.954-312.647 140.336-325.313 118.397-12.696-21.991 184.008-164.879 265.78-222.948 3.602-24.456 16.427-45.911 34.826-60.718 9.439-100.141 34.792-341.171 60.144-341.171s50.705 241.030 60.144 341.171c18.4 14.808 31.224 36.263 34.826 60.718v0 0zM517.544 511.926l-27.868 469.724c0 0 6.201 10.35 31.66 10.35s31.99-10.35 31.99-10.35l-28.158-469.725c-1.271 0.050-2.549 0.075-3.832 0.075-1.27 0-2.534-0.025-3.793-0.074v0 0zM547.886 323.718c-14.735-142.739-26.549-217.48-26.549-217.48s-15.25 101.335-26.429 217.446c8.396-2.399 17.262-3.684 26.429-3.684 9.21 0 18.117 1.297 26.549 3.718v0 0zM521.337 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wind-turbine" - ], - "grid": 32 - }, - { - "id": 547, - "paths": [ - "M616.307 401.89c81.772 58.070 278.476 200.958 265.78 222.948-12.666 21.938-233.732-76.444-325.313-118.397v0l28.562 485.56c0 0-16 32-64 32s-64-32-64-32l28.562-485.56c-91.58 41.954-312.647 140.336-325.313 118.397-12.696-21.991 184.008-164.879 265.78-222.948-0.678 4.605-1.030 9.317-1.030 14.11 0 53.019 42.981 96 96 96s96-42.981 96-96c0-4.794-0.351-9.505-1.030-14.11v0 0zM581.481 341.171c-9.439-100.141-34.792-341.171-60.144-341.171s-50.705 241.030-60.144 341.171c16.457-13.244 37.375-21.171 60.144-21.171s43.687 7.927 60.144 21.171v0 0zM521.337 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wind-turbine" - ], - "grid": 32 - }, - { - "id": 548, - "paths": [ - "M415.143 618.23l74.23-74.23h-180.148c-0.754 1.945-1.906 3.764-3.466 5.324l-45.464 45.464c-6.327 6.327-16.275 6.144-22.523-0.104-6.066-6.066-6.295-16.332-0.104-22.523l28.16-28.16h-25.565c-9.011 0-16.263-7.163-16.263-16 0-8.578 7.281-16 16.263-16h24.081l-26.676-26.676c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c1.156 1.156 2.088 2.454 2.8 3.84v0h180.815l-73.814-73.814c-1.728 0.669-3.599 1.039-5.552 1.039h-64.295c-8.948 0-15.852-7.163-15.852-16 0-8.578 7.097-16 15.852-16h38.886l-26.324-26.324c-6.237-6.237-6.045-16.541 0.021-22.607 6.248-6.248 16.375-6.252 22.607-0.021l26.213 26.213v-38.664c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 1.893-0.347 3.708-0.978 5.391l73.863 73.863v-180.383c-1.494-0.729-2.892-1.708-4.127-2.944l-45.464-45.464c-6.327-6.327-6.144-16.275 0.104-22.523 6.066-6.066 16.332-6.295 22.523-0.104l26.963 26.963v-24.655c0-9.011 7.163-16.263 16-16.263 8.578 0 16 7.281 16 16.263v25.565l27.873-27.873c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-1.483 1.483-3.2 2.598-5.037 3.352v179.975l73.863-73.863c-0.522-1.547-0.807-3.198-0.807-4.913v-64.295c0-8.948 7.163-15.852 16-15.852 8.578 0 16 7.097 16 15.852v38.015l26.043-26.043c6.231-6.231 16.358-6.228 22.607 0.021 6.066 6.066 6.258 16.37 0.021 22.607l-26.803 26.803h39.535c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-2.129 0-4.159-0.439-6.014-1.226v0l-73.522 73.522h181.724c0.712-1.386 1.644-2.684 2.8-3.84l45.464-45.464c6.327-6.327 16.275-6.144 22.523 0.104 6.066 6.066 6.295 16.332 0.104 22.523l-26.676 26.676h23.171c9.011 0 16.263 7.163 16.263 16 0 8.578-7.281 16-16.263 16h-24.655l28.16 28.16c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-1.56-1.56-2.712-3.379-3.466-5.324v0h-181.058l74.377 74.377c1.479-0.474 3.051-0.731 4.68-0.731h64.295c8.948 0 15.852 7.163 15.852 16 0 8.578-7.097 16-15.852 16h-37.706l25.453 25.453c6.237 6.237 6.045 16.541-0.021 22.607-6.248 6.248-16.375 6.252-22.607 0.021l-26.522-26.522v39.844c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-2.211 0.473-4.317 1.32-6.229l-73.897-73.897v181.46c1.837 0.754 3.554 1.869 5.037 3.352l45.464 45.464c6.327 6.327 6.144 16.275-0.104 22.523-6.066 6.066-16.332 6.295-22.523 0.104l-27.873-27.873v24.081c0 9.011-7.163 16.263-16 16.263-8.578 0-16-7.281-16-16.263v-23.171l-26.963 26.963c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c1.235-1.235 2.633-2.215 4.127-2.944v-181.868l-74.319 74.319c0.616 1.665 0.954 3.459 0.954 5.328v64.295c0 8.948-7.163 15.852-16 15.852-8.578 0-16-7.097-16-15.852v-38.577l-25.734 25.734c-6.231 6.231-16.358 6.228-22.607-0.021-6.066-6.066-6.258-16.37-0.021-22.607l25.932-25.932h-38.973c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c1.977 0 3.869 0.378 5.615 1.063v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "snowflake" - ], - "grid": 32 - }, - { - "id": 549, - "paths": [ - "M415.143 618.23l74.23-74.23h-180.148c-0.754 1.945-1.906 3.764-3.466 5.324l-45.464 45.464c-6.327 6.327-16.275 6.144-22.523-0.104-6.066-6.066-6.295-16.332-0.104-22.523l28.16-28.16h-25.565c-9.011 0-16.263-7.163-16.263-16 0-8.578 7.281-16 16.263-16h24.081l-26.676-26.676c-6.191-6.191-5.961-16.457 0.104-22.523 6.248-6.248 16.196-6.432 22.523-0.104l45.464 45.464c1.156 1.156 2.088 2.454 2.8 3.84v0h180.815l-73.814-73.814c-1.728 0.669-3.599 1.039-5.552 1.039h-64.295c-8.948 0-15.852-7.163-15.852-16 0-8.578 7.097-16 15.852-16h38.886l-26.324-26.324c-6.237-6.237-6.045-16.541 0.021-22.607 6.248-6.248 16.375-6.252 22.607-0.021l26.213 26.213v-38.664c0-8.755 7.422-15.852 16-15.852 8.837 0 16 6.904 16 15.852v64.295c0 1.893-0.347 3.708-0.978 5.391l73.863 73.863v-180.383c-1.494-0.729-2.892-1.708-4.127-2.944l-45.464-45.464c-6.327-6.327-6.144-16.275 0.104-22.523 6.066-6.066 16.332-6.295 22.523-0.104l26.963 26.963v-24.655c0-9.011 7.163-16.263 16-16.263 8.578 0 16 7.281 16 16.263v25.565l27.873-27.873c6.191-6.191 16.457-5.961 22.523 0.104 6.248 6.248 6.432 16.196 0.104 22.523l-45.464 45.464c-1.483 1.483-3.2 2.598-5.037 3.352v179.975l73.863-73.863c-0.522-1.547-0.807-3.198-0.807-4.913v-64.295c0-8.948 7.163-15.852 16-15.852 8.578 0 16 7.097 16 15.852v38.015l26.043-26.043c6.231-6.231 16.358-6.228 22.607 0.021 6.066 6.066 6.258 16.37 0.021 22.607l-26.803 26.803h39.535c8.755 0 15.852 7.422 15.852 16 0 8.837-6.904 16-15.852 16h-64.295c-2.129 0-4.159-0.439-6.014-1.226v0l-73.522 73.522h181.724c0.712-1.386 1.644-2.684 2.8-3.84l45.464-45.464c6.327-6.327 16.275-6.144 22.523 0.104 6.066 6.066 6.295 16.332 0.104 22.523l-26.676 26.676h23.171c9.011 0 16.263 7.163 16.263 16 0 8.578-7.281 16-16.263 16h-24.655l28.16 28.16c6.191 6.191 5.961 16.457-0.104 22.523-6.248 6.248-16.196 6.432-22.523 0.104l-45.464-45.464c-1.56-1.56-2.712-3.379-3.466-5.324v0h-181.058l74.377 74.377c1.479-0.474 3.051-0.731 4.68-0.731h64.295c8.948 0 15.852 7.163 15.852 16 0 8.578-7.097 16-15.852 16h-37.706l25.453 25.453c6.237 6.237 6.045 16.541-0.021 22.607-6.248 6.248-16.375 6.252-22.607 0.021l-26.522-26.522v39.844c0 8.755-7.422 15.852-16 15.852-8.837 0-16-6.904-16-15.852v-64.295c0-2.211 0.473-4.317 1.32-6.229l-73.897-73.897v181.46c1.837 0.754 3.554 1.869 5.037 3.352l45.464 45.464c6.327 6.327 6.144 16.275-0.104 22.523-6.066 6.066-16.332 6.295-22.523 0.104l-27.873-27.873v24.081c0 9.011-7.163 16.263-16 16.263-8.578 0-16-7.281-16-16.263v-23.171l-26.963 26.963c-6.191 6.191-16.457 5.961-22.523-0.104-6.248-6.248-6.432-16.196-0.104-22.523l45.464-45.464c1.235-1.235 2.633-2.215 4.127-2.944v-181.868l-74.319 74.319c0.616 1.665 0.954 3.459 0.954 5.328v64.295c0 8.948-7.163 15.852-16 15.852-8.578 0-16-7.097-16-15.852v-38.577l-25.734 25.734c-6.231 6.231-16.358 6.228-22.607-0.021-6.066-6.066-6.258-16.37-0.021-22.607l25.932-25.932h-38.973c-8.755 0-15.852-7.422-15.852-16 0-8.837 6.904-16 15.852-16h64.295c1.977 0 3.869 0.378 5.615 1.063v0zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "snowflake" - ], - "grid": 32 - }, - { - "id": 550, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 512v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM384 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM672 512v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM672 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM448 672v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face" - ], - "grid": 32 - }, - { - "id": 551, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 512c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96zM384 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM672 512c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96zM672 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM448 672v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face" - ], - "grid": 32 - }, - { - "id": 552, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 512v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM384 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM672 512v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM672 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face" - ], - "grid": 32 - }, - { - "id": 553, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 512c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96zM384 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM672 512c53.019 0 96-42.981 96-96s-42.981-96-96-96c-53.019 0-96 42.981-96 96s42.981 96 96 96zM672 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face" - ], - "grid": 32 - }, - { - "id": 554, - "paths": [ - "M297.515 374.279l-78.067-46.907c65.651-100.761 179.322-167.372 308.551-167.372s242.9 66.611 308.551 167.372l-78.067 46.907v0c-15.524-32.122-48.417-54.279-86.485-54.279-41.799 0-77.359 26.714-90.537 64h-106.925c-13.179-37.286-48.738-64-90.537-64-38.068 0-70.96 22.157-86.485 54.279zM288.495 406.191c-0.327 3.225-0.495 6.497-0.495 9.809 0 53.019 42.981 96 96 96s96-42.981 96-96v0h96c0 53.019 42.981 96 96 96s96-42.981 96-96c0-3.311-0.168-6.584-0.495-9.809l85.333-51.273c27.546 51.591 43.162 110.513 43.162 173.082 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-62.569 15.615-121.492 43.162-173.082l85.333 51.273zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0zM384 480v0c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM672 480v0c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face-glasses" - ], - "grid": 32 - }, - { - "id": 555, - "paths": [ - "M294.226 381.916c13.749-36.194 48.757-61.916 89.774-61.916 41.799 0 77.359 26.714 90.537 64h106.925c13.179-37.286 48.738-64 90.537-64 41.016 0 76.025 25.723 89.774 61.916v0l106.636-64.073c-70.49-113.937-196.585-189.843-340.409-189.843s-269.919 75.906-340.409 189.843l106.636 64.073zM288.001 415.508c-0.001 0.164-0.001 0.328-0.001 0.492 0 53.019 42.981 96 96 96s96-42.981 96-96v0h96c0 53.019 42.981 96 96 96s96-42.981 96-96c0-0.164-0-0.328-0.001-0.492l116.149-69.789c28.034 54.664 43.852 116.625 43.852 182.281 0 220.914-179.086 400-400 400s-400-179.086-400-400c0-65.656 15.819-127.618 43.852-182.281l116.149 69.789zM384 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM672 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flashed-face-glasses" - ], - "grid": 32 - }, - { - "id": 556, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-missing-moth" - ], - "grid": 32 - }, - { - "id": 557, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-missing-moth" - ], - "grid": 32 - }, - { - "id": 558, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM384 672v32h288v-32h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face" - ], - "grid": 32 - }, - { - "id": 559, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM384 672v32h288v-32h-288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face" - ], - "grid": 32 - }, - { - "id": 560, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 561, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 562, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 563, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 564, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth" - ], - "grid": 32 - }, - { - "id": 565, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth" - ], - "grid": 32 - }, - { - "id": 566, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-79.529 0-144-35.817-144-80s64.471-80 144-80c79.529 0 144 35.817 144 80s-64.471 80-144 80zM528 736c61.856 0 112-21.49 112-48s-50.144-48-112-48c-61.856 0-112 21.49-112 48s50.144 48 112 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth" - ], - "grid": 32 - }, - { - "id": 567, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c79.529 0 144-35.817 144-80s-64.471-80-144-80c-79.529 0-144 35.817-144 80s64.471 80 144 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth" - ], - "grid": 32 - }, - { - "id": 568, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM352 416v32h128v-32h-128zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "winking-face" - ], - "grid": 32 - }, - { - "id": 569, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM352 416h128v32h-128v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "winking-face" - ], - "grid": 32 - }, - { - "id": 570, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM288 608h480c0 0-32 192-240 192s-240-192-240-192zM331.027 640c0 0 41.198 128.43 197.761 128.43s195.766-128.43 195.766-128.43h-393.527z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 571, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM288 608c0 0 32 192 240 192s240-192 240-192h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 572, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM288 608h480c0 0-32 192-240 192s-240-192-240-192zM331.027 640c0 0 41.198 128.43 197.761 128.43s195.766-128.43 195.766-128.43h-393.527zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 573, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM288 608c0 0 32 192 240 192s240-192 240-192h-480zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 574, - "paths": [ - "M448 384c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32h-64v-32h96zM672 384c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32h-64v-32h96zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smirking-face" - ], - "grid": 32 - }, - { - "id": 575, - "paths": [ - "M448 384c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32h-64v-32h96zM672 384c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32h-64v-32h96zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smirking-face" - ], - "grid": 32 - }, - { - "id": 576, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 672v32h288v-32h-288zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stubborn-face" - ], - "grid": 32 - }, - { - "id": 577, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 672v32h288v-32h-288zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stubborn-face" - ], - "grid": 32 - }, - { - "id": 578, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 672v32h288v-32h-288zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face" - ], - "grid": 32 - }, - { - "id": 579, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 672v32h288v-32h-288zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face" - ], - "grid": 32 - }, - { - "id": 580, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 581, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM320 384h128v32h-128v-32zM608 384h128v32h-128v-32zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 582, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 583, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM320 384v32h128v-32h-128zM608 384v32h128v-32h-128zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 584, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 585, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 586, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 587, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 588, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 589, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM527.402 672c111.402 0 176.598 64 176.598 64v-32c0 0-65.195-64-176.598-64s-175.402 64-175.402 64v32c0 0 64-64 175.402-64zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 590, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 672v32h288v-32h-288zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 591, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 672v32h288v-32h-288zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "neutral-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 592, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 672v32h288v-32h-288zM371.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM577.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face" - ], - "grid": 32 - }, - { - "id": 593, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 672v32h288v-32h-288zM371.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM577.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face" - ], - "grid": 32 - }, - { - "id": 594, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face" - ], - "grid": 32 - }, - { - "id": 595, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM384 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM608 320h128v32h-128v-32zM320 320h128v32h-128v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face" - ], - "grid": 32 - }, - { - "id": 596, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM352 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "winking-face" - ], - "grid": 32 - }, - { - "id": 597, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM352 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "winking-face" - ], - "grid": 32 - }, - { - "id": 598, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM371.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM577.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 599, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM527.902 704c95.902 0 144.098 32 144.098 32s-32-96-144-96c-112 0-144 96-144 96s48-32 143.902-32zM371.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM577.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 600, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face" - ], - "grid": 32 - }, - { - "id": 601, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face" - ], - "grid": 32 - }, - { - "id": 602, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 603, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 604, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 605, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 606, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fake-grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 607, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fake-grinning-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 608, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 609, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM527.902 704c95.902 0 144.098 32 144.098 32s-32-96-144-96c-112 0-144 96-144 96s48-32 143.902-32zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face-eyebrows" - ], - "grid": 32 - }, - { - "id": 610, - "paths": [ - "M416 640v80c0 61.856 50.27 112 112 112 61.856 0 112-50.27 112-112v-80h64v-32h-352v32h64zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM448 640h160v80c0 44.491-35.817 80-80 80-44.491 0-80-35.817-80-80v-80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-stuck-out-tongue" - ], - "grid": 32 - }, - { - "id": 611, - "paths": [ - "M416 640h-64v-32h352v32h-64v80c0 61.73-50.144 112-112 112-61.73 0-112-50.144-112-112v-80zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM448 640v80c0 44.183 35.509 80 80 80 44.183 0 80-35.509 80-80v-80h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-stuck-out-tongue" - ], - "grid": 32 - }, - { - "id": 612, - "paths": [ - "M416 640v80c0 61.856 50.27 112 112 112 61.856 0 112-50.27 112-112v-80h64v-32h-352v32h64zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM448 640h160v80c0 44.491-35.817 80-80 80-44.491 0-80-35.817-80-80v-80zM352 416v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-stuck-out-tongue" - ], - "grid": 32 - }, - { - "id": 613, - "paths": [ - "M416 640h-64v-32h352v32h-64v80c0 61.73-50.144 112-112 112-61.73 0-112-50.144-112-112v-80zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM448 640v80c0 44.183 35.509 80 80 80 44.183 0 80-35.509 80-80v-80h-160zM352 416h128v32h-128v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-stuck-out-tongue" - ], - "grid": 32 - }, - { - "id": 614, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM592 624c-32 0-32 16-65.473 32-30.527-16-30.527-32-62.527-32s-64 48-112 48c32 0 80 96 174.527 96s145.473-96 177.473-96c-48 0-80-48-112-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "kissing-face" - ], - "grid": 32 - }, - { - "id": 615, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM592 624c-32 0-32 16-65.473 32-30.527-16-30.527-32-62.527-32s-64 48-112 48c32 0 80 96 174.527 96s145.473-96 177.473-96c-48 0-80-48-112-48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "kissing-face" - ], - "grid": 32 - }, - { - "id": 616, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283v0c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM400.209 608c-44.298 0-80.209 35.509-80.209 80 0 44.183 35.828 80 80.209 80h255.582c44.298 0 80.209-35.509 80.209-80 0-44.183-35.828-80-80.209-80h-255.582zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-teeth" - ], - "grid": 32 - }, - { - "id": 617, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283v0c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM608 320h128v32h-128v-32zM320 320h128v32h-128v-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-teeth" - ], - "grid": 32 - }, - { - "id": 618, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283v0c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM400.209 608c-44.298 0-80.209 35.509-80.209 80 0 44.183 35.828 80 80.209 80h255.582c44.298 0 80.209-35.509 80.209-80 0-44.183-35.828-80-80.209-80h-255.582zM684.111 318.947l17.894 26.529-106.117 71.577-17.894-26.529 106.117-71.577zM478.005 390.524l-17.894 26.529-106.117-71.577 17.894-26.529 106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-teeth" - ], - "grid": 32 - }, - { - "id": 619, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283v0c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 480c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM684.111 318.947l17.894 26.529-106.117 71.577-17.894-26.529 106.117-71.577zM478.005 390.524l-17.894 26.529-106.117-71.577 17.894-26.529 106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-teeth" - ], - "grid": 32 - }, - { - "id": 620, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283v0c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM400.209 608c-44.298 0-80.209 35.509-80.209 80 0 44.183 35.828 80 80.209 80h255.582c44.298 0 80.209-35.509 80.209-80 0-44.183-35.828-80-80.209-80h-255.582zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face-teeth" - ], - "grid": 32 - }, - { - "id": 621, - "paths": [ - "M528 128c-220.9 0-400 179.1-400 400s179.1 400 400 400 400-179.1 400-400-179.1-400-400-400zM290 390.5l106.1-71.6 17.9 26.5-106.1 71.6-17.9-26.5zM416 736h-15.8c-21.1 0-38.9-13.4-45.5-32h61.3v32zM416 672h-61.3c6.6-18.7 24.5-32 45.5-32h15.8v32zM384 480c-17.7 0-32-14.3-32-32s14.3-32 32-32c17.7 0 32 14.3 32 32s-14.3 32-32 32zM512 736h-64v-32h64v32zM512 672h-64v-32h64v32zM640 640h15.8c21.1 0 38.9 13.4 45.5 32h-61.3v-32zM608 736h-64v-32h64v32zM608 672h-64v-32h64v32zM655.8 736h-15.8v-32h61.3c-6.6 18.7-24.5 32-45.5 32zM672 480c-17.7 0-32-14.3-32-32s14.3-32 32-32 32 14.3 32 32c0 17.7-14.3 32-32 32zM748.1 417.1l-106.1-71.6 17.9-26.5 106.1 71.5-17.9 26.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "worried-face-teeth" - ], - "grid": 32 - }, - { - "id": 622, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM400.209 608c-44.298 0-80.209 35.509-80.209 80 0 44.183 35.828 80 80.209 80h255.582c44.298 0 80.209-35.509 80.209-80 0-44.183-35.828-80-80.209-80h-255.582z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-teeth" - ], - "grid": 32 - }, - { - "id": 623, - "paths": [ - "M608 640v32h-64v-32h64zM640 640h15.794c21.063 0 38.876 13.357 45.473 32h-61.267v-32zM608 736h-64v-32h64v32zM640 736v-32h61.283c-6.597 18.723-24.472 32-45.489 32h-15.794zM512 640v32h-64v-32h64zM512 736h-64v-32h64v32zM416 640v32h-61.283c6.597-18.723 24.472-32 45.489-32h15.794zM416 736h-15.794c-21.063 0-38.876-13.357-45.473-32v0h61.267v32zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face-teeth" - ], - "grid": 32 - }, - { - "id": 624, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 625, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 626, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 627, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80zM659.889 318.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM289.995 390.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 628, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM684.111 318.947l17.894 26.529-106.117 71.577-17.894-26.529 106.117-71.577zM478.005 390.524l-17.894 26.529-106.117-71.577 17.894-26.529 106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 629, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80zM684.111 318.947l-106.117 71.577 17.894 26.529 106.117-71.577-17.894-26.529zM478.005 390.524l-106.117-71.577-17.894 26.529 106.117 71.577 17.894-26.529z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "angry-face-open-mouth-eyebrows" - ], - "grid": 32 - }, - { - "id": 630, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0zM689.941 529.941l-90.51-90.51 90.51-90.51 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627zM366.059 348.922l90.51 90.51-90.51 90.51-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unamused-face-tightly-closed-eyes" - ], - "grid": 32 - }, - { - "id": 631, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32zM689.941 529.941l-90.51-90.51 90.51-90.51 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627zM366.059 348.922l90.51 90.51-90.51 90.51-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unamused-face-tightly-closed-eyes" - ], - "grid": 32 - }, - { - "id": 632, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0zM689.941 529.941l-90.51-90.51 90.51-90.51 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627zM366.059 348.922l90.51 90.51-90.51 90.51-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face--tightly-closed-eyes" - ], - "grid": 32 - }, - { - "id": 633, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64zM689.941 529.941l-90.51-90.51 90.51-90.51 22.627 22.627-67.882 67.882 67.882 67.882-22.627 22.627zM366.059 348.922l90.51 90.51-90.51 90.51-22.627-22.627 67.882-67.882-67.882-67.882 22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face--tightly-closed-eyes" - ], - "grid": 32 - }, - { - "id": 634, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM592 624c-32 0-32 16-65.473 32-30.527-16-30.527-32-62.527-32s-64 48-112 48c32 0 80 96 174.527 96s145.473-96 177.473-96c-48 0-80-48-112-48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "kissing-face" - ], - "grid": 32 - }, - { - "id": 635, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM608 320v32h128v-32h-128zM320 320v32h128v-32h-128zM384 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 480c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM592 624c-32 0-32 16-65.473 32-30.527-16-30.527-32-62.527-32s-64 48-112 48c32 0 80 96 174.527 96s145.473-96 177.473-96c-48 0-80-48-112-48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "kissing-face" - ], - "grid": 32 - }, - { - "id": 636, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-meyes" - ], - "grid": 32 - }, - { - "id": 637, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM339.889 350.947l106.117 71.577-17.894 26.529-106.117-71.577 17.894-26.529zM609.995 422.524l106.117-71.577 17.894 26.529-106.117 71.577-17.894-26.529zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-meyes" - ], - "grid": 32 - }, - { - "id": 638, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face" - ], - "grid": 32 - }, - { - "id": 639, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face" - ], - "grid": 32 - }, - { - "id": 640, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 641, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 642, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 643, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amused-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 644, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 645, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 646, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 647, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 648, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 649, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM528 768c44.183 0 80-35.817 80-80s-35.817-80-80-80c-44.183 0-80 35.817-80 80s35.817 80 80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-closed-eyes-open-mouth" - ], - "grid": 32 - }, - { - "id": 650, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM597.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM277.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM288 608h480c0 0-32 192-240 192s-240-192-240-192zM331.027 640c0 0 41.198 128.43 197.761 128.43s195.766-128.43 195.766-128.43h-393.527z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 651, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM597.49 441.373l22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-90.51-90.51-90.51 90.51zM277.49 441.373l22.627 22.627 67.882-67.882 67.882 67.882 22.627-22.627-90.51-90.51-90.51 90.51zM288 608c0 0 32 192 240 192s240-192 240-192h-480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laughing-face" - ], - "grid": 32 - }, - { - "id": 652, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM597.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM277.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 653, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.402 704c111.402 0 176.598-64 176.598-64v32c0 0-65.195 64-176.598 64s-175.402-64-175.402-64v-32c0 0 64 64 175.402 64zM597.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM277.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 654, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM527.902 672c-95.902 0-143.902-32-143.902-32s32 96 144 96c112 0 144-96 144-96s-48.195 32-144.098 32v0zM597.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM277.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face" - ], - "grid": 32 - }, - { - "id": 655, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.902 672c95.902 0 144.098-32 144.098-32s-32 96-144 96c-112 0-144-96-144-96s48 32 143.902 32zM597.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627zM277.49 441.373l90.51-90.51 90.51 90.51-22.627 22.627-67.882-67.882-67.882 67.882-22.627-22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grinning-face" - ], - "grid": 32 - }, - { - "id": 656, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM339.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM609.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 657, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM339.889 350.947l106.117 71.577-17.894 26.529-106.117-71.577 17.894-26.529zM609.995 422.524l106.117-71.577 17.894 26.529-106.117 71.577-17.894-26.529zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 658, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 659, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM627.889 350.947l106.117 71.577-17.894 26.529-106.117-71.577 17.894-26.529zM321.995 422.524l106.117-71.577 17.894 26.529-106.117 71.577-17.894-26.529zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 660, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM320 416v32h128v-32h-128zM608 416v32h128v-32h-128zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 661, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM320 416h128v32h-128v-32zM608 416h128v32h-128v-32zM527.902 704c-95.902 0-143.902 32-143.902 32s32-96 144-96c112 0 144 96 144 96s-48.195-32-144.098-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face-closed-eyes" - ], - "grid": 32 - }, - { - "id": 662, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 663, - "paths": [ - "M528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM627.889 350.947l106.117 71.577-17.894 26.529-106.117-71.577 17.894-26.529zM321.995 422.524l106.117-71.577 17.894 26.529-106.117 71.577-17.894-26.529zM527.402 672c-111.402 0-175.402 64-175.402 64v-32c0 0 64-64 175.402-64s176.598 64 176.598 64v32c0 0-65.195-64-176.598-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sad-face" - ], - "grid": 32 - }, - { - "id": 664, - "paths": [ - "M528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 665, - "paths": [ - "M528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM627.889 350.947l-17.894 26.529 106.117 71.577 17.894-26.529-106.117-71.577zM321.995 422.524l17.894 26.529 106.117-71.577-17.894-26.529-106.117 71.577zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smiling-face" - ], - "grid": 32 - }, - { - "id": 666, - "paths": [ - "M643.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM355.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 768v0c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80zM528 736c26.51 0 48-21.49 48-48s-21.49-48-48-48c-26.51 0-48 21.49-48 48s21.49 48 48 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "astonished-face" - ], - "grid": 32 - }, - { - "id": 667, - "paths": [ - "M643.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM355.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM528 768c-44.183 0-80-35.817-80-80s35.817-80 80-80c44.183 0 80 35.817 80 80s-35.817 80-80 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "astonished-face" - ], - "grid": 32 - }, - { - "id": 668, - "paths": [ - "M643.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM355.387 400l-33.393-22.524 17.894-26.529 44.111 29.753 44.111-29.753 17.894 26.529-33.393 22.524 33.393 22.524-17.894 26.529-44.111-29.753-44.111 29.753-17.894-26.529 33.393-22.524zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM528 768v0c-79.529 0-144-35.817-144-80s64.471-80 144-80c79.529 0 144 35.817 144 80s-64.471 80-144 80zM528 736c61.856 0 112-21.49 112-48s-50.144-48-112-48c-61.856 0-112 21.49-112 48s50.144 48 112 48v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "astonished-face" - ], - "grid": 32 - }, - { - "id": 669, - "paths": [ - "M643.387 400l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM355.387 400l-33.393 22.524 17.894 26.529 44.111-29.753 44.111 29.753 17.894-26.529-33.393-22.524 33.393-22.524-17.894-26.529-44.111 29.753-44.111-29.753-17.894 26.529 33.393 22.524zM528 928c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 768c79.529 0 144-35.817 144-80s-64.471-80-144-80c-79.529 0-144 35.817-144 80s64.471 80 144 80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "astonished-face" - ], - "grid": 32 - }, - { - "id": 670, - "paths": [ - "M528 664.262c13.894 24.865 43.804 64.755 105.767 67.675 86.233 4.064 165.083-75.936 165.083-106.014-33.232 36.332-88.747 39.597-119.622 24.686-45.461-21.955-37.567-65.41-70.707-93.845-18.836-16.162-45.588-17.131-68.488 0-4.128 3.088-8.271 7.035-12.033 11.793-3.762-4.758-7.905-8.705-12.033-11.793-22.9-17.131-49.652-16.162-68.488 0-33.14 28.435-25.246 71.891-70.707 93.845-30.875 14.911-86.39 11.645-119.622-24.686 0 30.077 78.85 110.077 165.083 106.014 61.963-2.92 91.873-42.81 105.767-67.675v0zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 512v0c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM384 480c35.346 0 64-28.654 64-64s-28.654-64-64-64c-35.346 0-64 28.654-64 64s28.654 64 64 64v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-moustache" - ], - "grid": 32 - }, - { - "id": 671, - "paths": [ - "M528 664.262c-13.894 24.865-43.804 64.755-105.767 67.675-86.233 4.064-165.083-75.936-165.083-106.014 33.232 36.332 88.747 39.597 119.622 24.686 45.461-21.955 37.567-65.41 70.707-93.845 18.836-16.162 45.588-17.131 68.488 0 4.128 3.088 8.271 7.035 12.033 11.793 3.762-4.758 7.905-8.705 12.033-11.793 22.9-17.131 49.652-16.162 68.488 0 33.14 28.435 25.246 71.891 70.707 93.845 30.875 14.911 86.39 11.645 119.622-24.686 0 30.077-78.85 110.077-165.083 106.014-61.963-2.92-91.873-42.81-105.767-67.675zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 512c-53.019 0-96-42.981-96-96s42.981-96 96-96c53.019 0 96 42.981 96 96s-42.981 96-96 96zM384 480c-35.346 0-64-28.654-64-64s28.654-64 64-64c35.346 0 64 28.654 64 64s-28.654 64-64 64zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-moustache" - ], - "grid": 32 - }, - { - "id": 672, - "paths": [ - "M528 664.262c13.894 24.865 43.804 64.755 105.767 67.675 86.233 4.064 165.083-75.936 165.083-106.014-33.232 36.332-88.747 39.597-119.622 24.686-45.461-21.955-37.567-65.41-70.707-93.845-18.836-16.162-45.588-17.131-68.488 0-4.128 3.088-8.271 7.035-12.033 11.793-3.762-4.758-7.905-8.705-12.033-11.793-22.9-17.131-49.652-16.162-68.488 0-33.14 28.435-25.246 71.891-70.707 93.845-30.875 14.911-86.39 11.645-119.622-24.686 0 30.077 78.85 110.077 165.083 106.014 61.963-2.92 91.873-42.81 105.767-67.675v0zM528 928v0c-220.914 0-400-179.086-400-400s179.086-400 400-400c220.914 0 400 179.086 400 400s-179.086 400-400 400zM528 896c203.241 0 368-164.759 368-368s-164.759-368-368-368c-203.241 0-368 164.759-368 368s164.759 368 368 368v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-moustache" - ], - "grid": 32 - }, - { - "id": 673, - "paths": [ - "M528 664.262c-13.894 24.865-43.804 64.755-105.767 67.675-86.233 4.064-165.083-75.936-165.083-106.014 33.232 36.332 88.747 39.597 119.622 24.686 45.461-21.955 37.567-65.41 70.707-93.845 18.836-16.162 45.588-17.131 68.488 0 4.128 3.088 8.271 7.035 12.033 11.793 3.762-4.758 7.905-8.705 12.033-11.793 22.9-17.131 49.652-16.162 68.488 0 33.14 28.435 25.246 71.891 70.707 93.845 30.875 14.911 86.39 11.645 119.622-24.686 0 30.077-78.85 110.077-165.083 106.014-61.963-2.92-91.873-42.81-105.767-67.675zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM384 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32zM672 448c-17.673 0-32-14.327-32-32s14.327-32 32-32c17.673 0 32 14.327 32 32s-14.327 32-32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-moustache" - ], - "grid": 32 - }, - { - "id": 674, - "paths": [ - "M835.522 325.801v0 0c-78.137-8.787-207.455-7.843-301.44 15.703-2.053 0.427-4.070 0.8-6.082 1.113-2.013-0.313-4.029-0.686-6.082-1.113-93.985-23.545-223.303-24.49-301.44-15.703v0c65.806-99.882 178.966-165.801 307.522-165.801s241.716 65.92 307.522 165.801zM859.391 367.794c23.457 48.431 36.609 102.783 36.609 160.206 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-57.423 13.152-111.775 36.609-160.206 0.479 0.444 1.005 0.727 1.581 0.821 14.692 5.402 20.961 18.881 20.961 18.881s4.387 11.961 17.127 60.603c12.74 48.642 43.113 54.475 43.113 54.475s37.175 8.363 80.059 8.363c42.884 0 68.537-1.773 96.001-14.261s39.468-47.269 39.468-47.269c0 0 13.837-29.97 23.364-58.249 1.446-4.291 5.23-7.209 9.718-9.077 4.488 1.868 8.272 4.785 9.718 9.077 9.526 28.279 23.364 58.249 23.364 58.249s12.004 34.781 39.468 47.269c27.464 12.488 53.117 14.261 96.001 14.261s80.059-8.363 80.059-8.363c0 0 30.373-5.833 43.113-54.475s17.127-60.603 17.127-60.603c0 0 6.268-13.479 20.961-18.881 0.576-0.095 1.102-0.377 1.581-0.821v0 0zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0zM270.084 362.148v0c15.821-10.234 74.035-10.503 94.52-10.005s58.011 3.491 94.458 14.53c36.447 11.039 14.836 48.59 12.007 56.665-4.099 11.699-16.978 32.576-30.466 41.186s-43.12 15.476-80.364 15.476c-21.628 0-39.184-0.922-56.467-4.444s-25.886-6.653-36.047-26.563c-4.398-8.617-8.121-22.731-9.651-32.973s-7.547-41.222 12.009-53.872zM785.916 362.148c19.556 12.65 13.539 43.63 12.009 53.872s-5.254 24.356-9.651 32.973c-10.161 19.91-18.764 23.041-36.047 26.563s-34.839 4.444-56.467 4.444c-37.243 0-66.876-6.866-80.364-15.476s-26.367-29.487-30.466-41.186c-2.829-8.075-24.44-45.626 12.007-56.665s73.973-14.032 94.458-14.53c20.485-0.498 78.699-0.229 94.52 10.005v0zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-glasses" - ], - "grid": 32 - }, - { - "id": 675, - "paths": [ - "M528 342.617v0c2.013-0.313 4.029-0.686 6.082-1.113 102.487-25.675 246.989-24.476 321.325-13.089 8.976 1.375 10.386 38.887 2.402 40.2-14.692 5.402-20.961 18.881-20.961 18.881s-4.387 11.961-17.127 60.603c-12.74 48.642-43.113 54.475-43.113 54.475s-37.175 8.363-80.059 8.363c-42.884 0-68.537-1.773-96.001-14.261s-39.468-47.269-39.468-47.269c0 0-13.837-29.97-23.364-58.249-1.446-4.291-5.23-7.209-9.718-9.077-4.488 1.868-8.272 4.785-9.718 9.077-9.526 28.279-23.364 58.249-23.364 58.249s-12.004 34.781-39.468 47.269c-27.464 12.488-53.117 14.261-96.001 14.261s-80.059-8.363-80.059-8.363c0 0-30.373-5.833-43.113-54.475s-17.127-60.603-17.127-60.603c0 0-6.268-13.479-20.961-18.881-7.983-1.312-6.574-38.825 2.402-40.2 74.336-11.387 218.838-12.587 321.325 13.089 2.053 0.427 4.070 0.8 6.082 1.113zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.402 704c111.402 0 176.598-64 176.598-64v32c0 0-65.195 64-176.598 64s-175.402-64-175.402-64v-32c0 0 64 64 175.402 64zM270.084 362.148c15.821-10.234 74.035-10.503 94.52-10.005s58.011 3.491 94.458 14.53c36.447 11.039 14.836 48.59 12.007 56.665-4.099 11.699-16.978 32.576-30.466 41.186s-43.12 15.476-80.364 15.476c-21.628 0-39.184-0.922-56.467-4.444s-25.886-6.653-36.047-26.563c-4.398-8.617-8.121-22.731-9.651-32.973s-7.547-41.222 12.009-53.872zM785.916 362.148c19.556 12.65 13.539 43.63 12.009 53.872s-5.254 24.356-9.651 32.973c-10.161 19.91-18.764 23.041-36.047 26.563s-34.839 4.444-56.467 4.444c-37.243 0-66.876-6.866-80.364-15.476s-26.367-29.487-30.466-41.186c-2.829-8.075-24.44-45.626 12.007-56.665s73.973-14.032 94.458-14.53c20.485-0.498 78.699-0.229 94.52 10.005zM384 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32zM672 448c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-glasses" - ], - "grid": 32 - }, - { - "id": 676, - "paths": [ - "M835.522 325.801v0c-78.137-8.787-207.455-7.843-301.44 15.703-2.053 0.427-4.070 0.8-6.082 1.113-2.013-0.313-4.029-0.686-6.082-1.113-93.985-23.545-223.303-24.49-301.44-15.703v0c65.806-99.882 178.966-165.801 307.522-165.801s241.716 65.92 307.522 165.801zM859.391 367.794c23.457 48.431 36.609 102.783 36.609 160.206 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-57.423 13.152-111.775 36.609-160.206 0.479 0.444 1.005 0.727 1.581 0.821 14.692 5.402 20.961 18.881 20.961 18.881s4.387 11.961 17.127 60.603c12.74 48.642 43.113 54.475 43.113 54.475s37.175 8.363 80.059 8.363c42.884 0 68.537-1.773 96.001-14.261s39.468-47.269 39.468-47.269c0 0 13.837-29.97 23.364-58.249 1.446-4.291 5.23-7.209 9.718-9.077 4.488 1.868 8.272 4.785 9.718 9.077 9.526 28.279 23.364 58.249 23.364 58.249s12.004 34.781 39.468 47.269c27.464 12.488 53.117 14.261 96.001 14.261s80.059-8.363 80.059-8.363c0 0 30.373-5.833 43.113-54.475s17.127-60.603 17.127-60.603c0 0 6.268-13.479 20.961-18.881 0.576-0.095 1.102-0.377 1.581-0.821v0zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0zM527.402 704c-111.402 0-175.402-64-175.402-64v32c0 0 64 64 175.402 64s176.598-64 176.598-64v-32c0 0-65.195 64-176.598 64v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-sunglasses" - ], - "grid": 32 - }, - { - "id": 677, - "paths": [ - "M528 342.617c2.013-0.313 4.029-0.686 6.082-1.113 102.487-25.675 246.989-24.476 321.325-13.089 8.976 1.375 10.386 38.887 2.402 40.2-14.692 5.402-20.961 18.881-20.961 18.881s-4.387 11.961-17.127 60.603c-12.74 48.642-43.113 54.475-43.113 54.475s-37.175 8.363-80.059 8.363c-42.884 0-68.537-1.773-96.001-14.261s-39.468-47.269-39.468-47.269c0 0-13.837-29.97-23.364-58.249-1.446-4.291-5.23-7.209-9.718-9.077-4.488 1.868-8.272 4.785-9.718 9.077-9.526 28.279-23.364 58.249-23.364 58.249s-12.004 34.781-39.468 47.269c-27.464 12.488-53.117 14.261-96.001 14.261s-80.059-8.363-80.059-8.363c0 0-30.373-5.833-43.113-54.475s-17.127-60.603-17.127-60.603c0 0-6.268-13.479-20.961-18.881-7.983-1.312-6.574-38.825 2.402-40.2 74.336-11.387 218.838-12.587 321.325 13.089 2.053 0.427 4.070 0.8 6.082 1.113zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM527.402 704c111.402 0 176.598-64 176.598-64v32c0 0-65.195 64-176.598 64s-175.402-64-175.402-64v-32c0 0 64 64 175.402 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face-sunglasses" - ], - "grid": 32 - }, - { - "id": 678, - "paths": [ - "M835.522 325.801v0 0c-78.137-8.787-207.455-7.843-301.44 15.703-2.053 0.427-4.070 0.8-6.082 1.113-2.013-0.313-4.029-0.686-6.082-1.113-93.985-23.545-223.303-24.49-301.44-15.703v0c65.806-99.882 178.966-165.801 307.522-165.801s241.716 65.92 307.522 165.801zM859.391 367.794c23.457 48.431 36.609 102.783 36.609 160.206 0 203.241-164.759 368-368 368s-368-164.759-368-368c0-57.423 13.152-111.775 36.609-160.206 0.479 0.444 1.005 0.727 1.581 0.821 14.692 5.402 20.961 18.881 20.961 18.881s4.387 11.961 17.127 60.603c12.74 48.642 43.113 54.475 43.113 54.475s37.175 8.363 80.059 8.363c42.884 0 68.537-1.773 96.001-14.261s39.468-47.269 39.468-47.269c0 0 13.837-29.97 23.364-58.249 1.446-4.291 5.23-7.209 9.718-9.077 4.488 1.868 8.272 4.785 9.718 9.077 9.526 28.279 23.364 58.249 23.364 58.249s12.004 34.781 39.468 47.269c27.464 12.488 53.117 14.261 96.001 14.261s80.059-8.363 80.059-8.363c0 0 30.373-5.833 43.113-54.475s17.127-60.603 17.127-60.603c0 0 6.268-13.479 20.961-18.881 0.576-0.095 1.102-0.377 1.581-0.821v0 0zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400v0zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smirking-face-sunglasses" - ], - "grid": 32 - }, - { - "id": 679, - "paths": [ - "M528 342.617v0c2.013-0.313 4.029-0.686 6.082-1.113 102.487-25.675 246.989-24.476 321.325-13.089 8.976 1.375 10.386 38.887 2.402 40.2-14.692 5.402-20.961 18.881-20.961 18.881s-4.387 11.961-17.127 60.603c-12.74 48.642-43.113 54.475-43.113 54.475s-37.175 8.363-80.059 8.363c-42.884 0-68.537-1.773-96.001-14.261s-39.468-47.269-39.468-47.269c0 0-13.837-29.97-23.364-58.249-1.446-4.291-5.23-7.209-9.718-9.077-4.488 1.868-8.272 4.785-9.718 9.077-9.526 28.279-23.364 58.249-23.364 58.249s-12.004 34.781-39.468 47.269c-27.464 12.488-53.117 14.261-96.001 14.261s-80.059-8.363-80.059-8.363c0 0-30.373-5.833-43.113-54.475s-17.127-60.603-17.127-60.603c0 0-6.268-13.479-20.961-18.881-7.983-1.312-6.574-38.825 2.402-40.2 74.336-11.387 218.838-12.587 321.325 13.089 2.053 0.427 4.070 0.8 6.082 1.113zM528 928c220.914 0 400-179.086 400-400s-179.086-400-400-400c-220.914 0-400 179.086-400 400s179.086 400 400 400zM496.598 704h95.651c26.372 0 47.751-21.667 47.751-47.85v-16.15h32c0 0 0 16 0 32 0 32-32 64-64 64h-224v-32h112.598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smirking-face-sunglasses" - ], - "grid": 32 - }, - { - "id": 680, - "paths": [ - "M896 688v-191.862c0-44.259-35.509-80.138-80-80.138-20.323 0-38.876 7.524-52.987 19.988-11.269-30.364-40.427-51.988-75.013-51.988-18.010 0-34.629 5.996-48 16.068v-255.958c0-44.244-35.509-80.111-80-80.111-44.183 0-80 35.763-80 80.111v223.769c-13.332-9.974-29.925-15.88-48-15.88-44.183 0-80 36.086-80 79.924v27.813c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272zM624 928c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-105.64c0-26.414 21.49-47.907 48-47.907 26.694 0 48 21.449 48 47.907v80.093h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-16.093c0-26.414 21.49-47.907 48-47.907 26.694 0 48 21.449 48 47.907v48.093h32v-15.946c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v191.946c0 132.548-107.452 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "middle-finger" - ], - "grid": 32 - }, - { - "id": 681, - "paths": [ - "M867.685 688c0 132.548-107.452 240-240 240-0.013 0-0.027 0-0.040 0-120.271-0.015-191.64-65.636-248.044-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-137.341c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v79.794h24.186c2.575-1.486 5.18-2.926 7.814-4.319v0-331.973c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v304.291h32v-48.143c0-26.112 21.49-47.857 48-47.857 26.694 0 48 21.427 48 47.857v75.824c2.634 1.392 5.239 2.832 7.814 4.319h24.186v-47.795c0-26.558 21.49-48.205 48-48.205 26.694 0 48 21.582 48 48.205v255.795z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "middle-finger" - ], - "grid": 32 - }, - { - "id": 682, - "paths": [ - "M896 656v-384.236c0-44.053-35.509-79.764-80-79.764-44.183 0-80 35.639-80 79.764v96.115c-13.332-9.974-29.925-15.88-48-15.88-20.302 0-38.837 7.619-52.943 20.108-11.236-30.427-40.426-52.108-75.057-52.108-18.010 0-34.629 5.996-48 16.068v-159.799c0-44.331-35.509-80.269-80-80.269-44.183 0-80 35.693-80 80.269v251.468c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272zM624 896c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-329.271c0-26.951 21.49-48.276 48-48.276 26.694 0 48 21.614 48 48.276v303.724h32v-80.093c0-26.414 21.49-47.907 48-47.907 26.694 0 48 21.449 48 47.907v48.093h32v-16.093c0-26.414 21.49-47.907 48-47.907 26.694 0 48 21.449 48 47.907v48.093h32v-208.28c0-26.519 21.49-47.72 48-47.72 26.694 0 48 21.365 48 47.72v384.28c0 132.548-107.452 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rock-n-roll" - ], - "grid": 32 - }, - { - "id": 683, - "paths": [ - "M608 448v-47.848c0-26.593-21.306-48.152-48-48.152-26.51 0-48 21.386-48 48.152v79.848h-32v-303.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v312.048c-64.334-70.184-148.749-146.785-184.134-111.209-34.789 34.977 49.818 131.421 175.002 342.057 14.735 24.793 30.491 47.588 47.874 67.736 42.812 65.738 116.959 109.2 201.258 109.2 132.548 0 240-107.452 240-240v-384.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v208.28h-32v-47.848c0-26.593-21.306-48.152-48-48.152-26.51 0-48 21.386-48 48.152v15.848h-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rock-n-roll" - ], - "grid": 32 - }, - { - "id": 684, - "paths": [ - "M896 688v-384.2c0-44.1-35.5-79.8-80-79.8-18 0-34.6 5.9-48 15.9v-31.8c0-44.2-35.5-80.1-80-80.1-18 0-34.6 6-48 16.1 0-44.2-35.5-80.1-80-80.1-44.1 0-79.9 35.7-80 79.9-13.3-10-29.9-15.9-48-15.9-44.2 0-80 35.7-80 80.3v251.5c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.4 131.8 177.5 178.3 277.1 178.3 150.2 0 272-121.8 272-272v0zM624 928c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.8c0-26.5 21.5-47.8 48-47.8 26.7 0 48 21.4 48 47.8v304.2h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-271.9c0-26.9 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v303.9h32v-208.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v384.3c0 132.5-107.5 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "high-five" - ], - "grid": 32 - }, - { - "id": 685, - "paths": [ - "M638.952 328.322v-120.203c0-26.935 21.49-48.119 48-48.119 26.694 0 48 21.543 48 48.119v303.881h32v-208.28c0-26.519 21.49-47.72 48-47.72 26.694 0 48 21.365 48 47.72v384.28c0 132.548-107.452 240-240 240-0.013 0-0.027 0-0.040 0-120.271-0.015-191.64-65.636-248.044-160.541-125.184-210.636-209.791-307.079-175.002-342.057 35.194-35.384 118.886 40.197 183.086 110.067v-327.193c0-26.951 21.49-48.276 48-48.276 26.694 0 48 21.614 48 48.276v303.724h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-151.678z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "high-five" - ], - "grid": 32 - }, - { - "id": 686, - "paths": [ - "M352 416h-192.061c-35.313 0-63.939 28.482-63.939 64.003v415.993c0 35.348 28.375 64.003 63.939 64.003h623.792c44.331 0 80.269-35.509 80.269-80 0-18.010-5.931-34.63-15.976-48.001 44.197-0.156 79.976-35.607 79.976-79.999 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.123 95.202-144 103.594-144 103.594v0 0zM159.705 448h160.295v480h-160.295c-17.274 0-31.705-14.434-31.705-32.239v-415.521c0-17.874 14.195-32.239 31.705-32.239zM224 864c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0zM681.6 448h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-431.946c0 0 0-416 0-480 48 0 89.792-32 89.792-32 29.127-18.186 60.678-45.703 82.083-86.359 50.123-95.202-7.742-233.641 84.125-233.641 94.728 0 110.337 155.288 80.038 320 0 0-6.437 32-6.437 32v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-up" - ], - "grid": 32 - }, - { - "id": 687, - "paths": [ - "M320 928h431.946c26.539 0 48.054-21.306 48.054-48 0-26.51-21.478-48-48.054-48h-47.946v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-80.221v-32h112.221c26.388 0 47.779-21.306 47.779-48 0-26.51-21.244-48-47.779-48h-230.621c38.424-176 27.248-352-73.6-352-91.867 0-34.002 138.439-84.125 233.641s-155.874 118.359-155.875 118.359h-16v480zM159.933 448h128.067v480h-128.067c-35.189 0-63.933-28.538-63.933-63.74v-352.519c0-35.152 28.624-63.74 63.933-63.74zM192 864c17.673 0 32-14.327 32-32s-14.327-32-32-32c-17.673 0-32 14.327-32 32s14.327 32 32 32v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-up" - ], - "grid": 32 - }, - { - "id": 688, - "paths": [ - "M320 608h-192.061c-35.313 0-63.939-28.482-63.939-64.003v-415.993c0-35.348 28.375-64.003 63.939-64.003h623.792c44.331 0 80.269 35.509 80.269 80 0 18.010-5.931 34.63-15.976 48.001 44.197 0.156 79.976 35.607 79.976 79.999 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.123-95.202-144-103.594-144-103.594v0 0zM127.705 576h160.295v-480h-160.295c-17.274 0-31.705 14.434-31.705 32.239v415.521c0 17.874 14.195 32.239 31.705 32.239zM192 160c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0zM649.6 576h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-431.946c0 0 0 416 0 480 48 0 89.792 32 89.792 32 29.127 18.186 60.678 45.703 82.083 86.359 50.123 95.202-7.742 233.641 84.125 233.641 94.728 0 110.337-155.288 80.038-320 0 0-6.437-32-6.437-32v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-down" - ], - "grid": 32 - }, - { - "id": 689, - "paths": [ - "M320 96h431.946c26.539 0 48.054 21.306 48.054 48 0 26.51-21.478 48-48.054 48h-47.946v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-80.221v32h112.221c26.388 0 47.779 21.306 47.779 48 0 26.51-21.244 48-47.779 48h-230.621c38.424 176 27.248 352-73.6 352-91.867 0-34.002-138.439-84.125-233.641s-155.874-118.359-155.875-118.359h-16v-480zM159.933 576h128.067v-480h-128.067c-35.189 0-63.933 28.538-63.933 63.74v352.519c0 35.152 28.624 63.74 63.933 63.74zM192 160c17.673 0 32 14.327 32 32s-14.327 32-32 32c-17.673 0-32-14.327-32-32s14.327-32 32-32v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-down" - ], - "grid": 32 - }, - { - "id": 690, - "paths": [ - "M615.962 960h136.114c44.141 0 79.924-35.509 79.924-80 0-18.010-5.996-34.63-16.069-48 44.239-0.107 80.069-35.576 80.069-80 0-20.345-7.568-38.916-20.087-53.034v0c30.43-11.302 52.087-40.428 52.087-74.966 0-20.345-7.568-38.916-20.087-53.034 30.43-11.302 52.087-40.428 52.087-74.966 0-44.183-35.693-80-80.269-80h-191.739c33.578-160.539 17.492-352-111.992-352s-61.877 153.205-112 248.406c-50.122 95.198-143.993 103.593-144 103.594h-192.157c-35.259 0-63.843 28.589-63.843 63.74v352.519c0 35.203 28.375 63.74 63.939 63.74h192.061l192 64h103.962zM336 448c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-up" - ], - "grid": 32 - }, - { - "id": 691, - "paths": [ - "M649.6 448h230.621c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h80.221c26.535 0 47.779 21.49 47.779 48 0 26.694-21.391 48-47.779 48h-112.221v32h47.946c26.576 0 48.054 21.49 48.054 48 0 26.694-21.514 48-48.054 48h-239.946l-192-64h-191.906c-18.082 0-32.094-14.305-32.094-31.952v-352.096c0-17.632 14.326-31.952 31.999-31.952h208.001c0 0 105.752-23.158 155.875-118.359s-7.742-233.641 84.125-233.641c100.848 0 112.023 176 73.6 352v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-up" - ], - "grid": 32 - }, - { - "id": 692, - "paths": [ - "M615.962 64h136.114c44.141 0 79.924 35.509 79.924 80 0 18.010-5.996 34.63-16.069 48 44.239 0.107 80.069 35.576 80.069 80 0 20.345-7.568 38.916-20.087 53.034v0c30.43 11.302 52.087 40.428 52.087 74.966 0 20.345-7.568 38.916-20.087 53.034 30.43 11.302 52.087 40.428 52.087 74.966 0 44.183-35.693 80-80.269 80h-191.739c33.578 160.539 17.492 352-111.992 352s-61.877-153.205-112-248.406c-50.122-95.198-143.993-103.593-144-103.594h-192.157c-35.259 0-63.843-28.589-63.843-63.74v-352.519c0-35.203 28.375-63.74 63.939-63.74h192.061l192-64h103.962zM336 576c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-down" - ], - "grid": 32 - }, - { - "id": 693, - "paths": [ - "M649.6 576h230.621c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h80.221c26.535 0 47.779-21.49 47.779-48 0-26.694-21.391-48-47.779-48h-112.221v-32h47.946c26.576 0 48.054-21.49 48.054-48 0-26.694-21.514-48-48.054-48h-239.946l-192 64h-191.906c-18.082 0-32.094 14.305-32.094 31.952v352.096c0 17.632 14.326 31.952 31.999 31.952h208.001c0 0 105.752 23.158 155.875 118.359s-7.742 233.641 84.125 233.641c100.848 0 112.023-176 73.6-352v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-down" - ], - "grid": 32 - }, - { - "id": 694, - "paths": [ - "M352 224v267.737c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272v-191.542c0-44.185-35.509-80.004-80-80.004-18.010 0-34.629 5.898-48 15.901v-0.431c0-44.141-35.509-79.924-80-79.924-18.010 0-34.629 5.996-48 16.068v-223.958c0-44.244-35.509-80.111-80-80.111-34.342 0-63.63 21.606-74.973 52.056-14.072-12.482-32.603-20.056-53.027-20.056-38.652 0-70.902 27.317-78.37 64h-227.23l104-104-24-24-144 144 144 144 24-24-104-104h225.6zM624 960c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-361.379c0-26.82 21.49-48.168 48-48.168 26.694 0 48 21.565 48 48.168v335.832h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-47.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v79.794h32v-15.946c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v191.946c0 132.548-107.452 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 695, - "paths": [ - "M420.356 224c6.609-18.779 24.371-32 45.244-32 26.694 0 48 21.614 48 48.276v303.724h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-80.28c0-26.519 21.49-47.72 48-47.72 26.694 0 48 21.365 48 47.72v112.28h32v-79.795c0-26.558 21.49-48.205 48-48.205 26.694 0 48 21.582 48 48.205v255.795c0 132.548-107.452 240-240 240-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-313.547h-225.6l104 104-24 24-144-144 144-144 24 24-104 104h228.356z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 696, - "paths": [ - "M640 224h225.6l-104 104 24 24 144-144-144-144-24 24 104 104h-225.6v-15.889c0-44.244-35.509-80.111-80-80.111-34.342 0-63.63 21.606-74.973 52.056-14.072-12.482-32.603-20.056-53.027-20.056-44.183 0-80 35.693-80 80.269v283.468c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272v-191.542c0-44.185-35.509-80.004-80-80.004-18.010 0-34.629 5.898-48 15.901v-0.431c0-44.141-35.509-79.924-80-79.924-18.010 0-34.629 5.996-48 16.068v-176.068zM624 960c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-361.379c0-26.82 21.49-48.168 48-48.168 26.694 0 48 21.565 48 48.168v335.832h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-47.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v79.794h32v-15.946c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v191.946c0 132.548-107.452 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 697, - "paths": [ - "M575.7 256v256h32v-80.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 132.5-107.5 240-240 240-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 26.7 0 48 21.6 48 48.3v303.7h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v48.3h257.6l-104-104 24-24 144 144-144 144-24-24 104-104h-257.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 698, - "paths": [ - "M608 927.6c5.2 0.3 10.6 0.4 16 0.4 132.5 0 240-107.5 240-240v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-336.3c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 48.5 81.5 108 141.5 200.1 156.7v-285.8l-104 104-24-24 144-144 144 144-24 24-104-104v289.2zM896 688c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.5c0-44.6 35.8-80.3 80-80.3 20.4 0 39 7.6 53 20.1 11.4-30.5 40.6-52.1 75-52.1 44.5 0 80 35.9 80 80.1v224c13.4-10.1 30-16.1 48-16.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 699, - "paths": [ - "M607.7 927.6c-110.7-5.6-178.2-69.5-232.1-160.1-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 26.7 0 48 21.6 48 48.3v303.7h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-80.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 127.2-98.9 231.2-224 239.5v-289.1l104 104 24-24-144-144-144 144 24 24 104-104v289.2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 700, - "paths": [ - "M640 769.6l104-104 24 24-144 144-144-144 24-24 104 104v-625.9c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v337.4zM896 688c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.5c0-44.6 35.8-80.3 80-80.3 20.4 0 39 7.6 53 20.1 11.4-30.5 40.6-52.1 75-52.1 44.5 0 80 35.9 80 80.1v224c13.4-10.1 30-16.1 48-16.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 701, - "paths": [ - "M639.7 496v-96.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 132.5-107.5 240-240 240-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 26.7 0 48 21.6 48 48.3v303.7h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v625.9l-104-104-24 24 144 144 144-144-24-24-104 104v-273.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 702, - "paths": [ - "M896 688v-191.5c0-44.2-35.5-80-80-80-18 0-34.6 5.9-48 15.9v-0.4c0-44.1-35.5-79.9-80-79.9-18 0-34.6 6-48 16.1v-224c0-44.2-35.5-80.1-80-80.1-34.3 0-63.6 21.6-75 52.1-14.1-12.6-32.6-20.2-53-20.2-44.2 0-80 35.7-80 80.3v283.5c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.3 131.8 177.5 178.3 277.1 178.3 150.2 0 272-121.8 272-272v0zM624 928c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.4c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-47.8c0-26.7 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v79.8h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 132.5-107.5 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers" - ], - "grid": 32 - }, - { - "id": 703, - "paths": [ - "M575.7 143.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-336.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers" - ], - "grid": 32 - }, - { - "id": 704, - "paths": [ - "M639.1 128.7c-20.3-20.2-48.2-32.7-79.1-32.7-34.5 0-65.4 15.6-85.9 40.2-13-5.3-27.2-8.2-42.1-8.2-30.9 0-58.9 12.5-79.2 32.8v0c-20.3 20.3-32.8 48.3-32.8 79.2v90.5c-20-24.7-32-56.2-32-90.5 0-79.5 64.5-144 144-144 11.3 0 22.4 1.3 33 3.8 25.3-22.3 58.6-35.8 95-35.8 79.5 0 144 64.5 144 144 0 34.3-12 65.8-32 90.5v-90.8c0-30.8-12.6-58.8-32.9-79v0 0zM672 343.8c39.1-32.3 64-81.1 64-135.8 0-97.2-78.8-176-176-176-38.7 0-74.5 12.5-103.6 33.7-8-1.1-16.1-1.7-24.4-1.7-97.2 0-176 78.8-176 176 0 54.7 24.9 103.5 64 135.8v0 39.5c-57.7-37-96-101.7-96-175.3 0-114.9 93.1-208 208-208 5.4 0 10.8 0.2 16.1 0.6 32.3-20.6 70.7-32.6 111.9-32.6 114.9 0 208 93.1 208 208 0 73.6-38.3 138.3-96 175.3v-39.5zM896 752v-191.5c0-44.2-35.5-80-80-80-18 0-34.6 5.9-48 15.9v-0.4c0-44.1-35.5-79.9-80-79.9-18 0-34.6 6-48 16.1v-224c0-44.2-35.5-80.1-80-80.1-34.3 0-63.6 21.6-75 52.1-14.1-12.5-32.6-20.1-53-20.1-44.2 0-80 35.7-80 80.3v283.5c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.3 131.7 177.5 178.2 277.1 178.2 150.2 0 272-121.8 272-272v0zM624 992c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.4c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-47.8c0-26.7 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v79.8h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 132.5-107.5 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 705, - "paths": [ - "M639.7 286.4c19.8-20.2 32-47.9 32-78.4 0-61.9-50.1-112-112-112-45.8 0-85.2 27.5-102.6 66.9-8.2-1.9-16.7-2.9-25.4-2.9-61.9 0-112 50.1-112 112 0 30.5 12.2 58.2 32 78.4v-78.4c0-43.9 35.8-80 80-80 18.1 0 34.7 5.9 48 15.9v-0.2c0-43.6 35.8-79.7 80-79.7 44.5 0 80 35.7 80 79.7v78.7zM639.7 327.8c38.6-25.8 64-69.8 64-119.8 0-79.5-64.5-144-144-144-50 0-94.1 25.5-119.9 64.2-2.7-0.1-5.4-0.2-8.1-0.2-79.5 0-144 64.5-144 144 0 49.9 25.4 93.9 64 119.8v37.1c-57-29.1-96-88.4-96-156.8 0-94.6 74.6-171.7 168.1-175.8 32.3-39.3 81.2-64.3 135.9-64.3 97.2 0 176 78.8 176 176 0 68.4-39 127.7-96 156.8v-37zM607.7 207.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-336.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 706, - "paths": [ - "M197.744 229.744l22.627 22.627-131.629 131.629h103.258v32h-160v-160h32v107.487l133.744-133.744zM250.256 218.256l-22.627-22.627 131.629-131.629h-103.258v-32h160v160h-32v-107.487l-133.744 133.744zM992 752v-191.542c0-44.185-35.509-80.004-80-80.004-18.010 0-34.629 5.898-48 15.901v-0.431c0-44.141-35.509-79.924-80-79.924-18.010 0-34.629 5.996-48 16.068v-223.958c0-44.244-35.509-80.111-80-80.111-34.342 0-63.63 21.606-74.973 52.056-14.072-12.482-32.603-20.056-53.027-20.056-44.183 0-80 35.693-80 80.269v283.468c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272zM720 992c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-361.379c0-26.82 21.49-48.168 48-48.168 26.694 0 48 21.565 48 48.168v335.832h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-47.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v79.794h32v-15.946c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v191.946c0 132.548-107.452 240-240 240v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-resize-out" - ], - "grid": 32 - }, - { - "id": 707, - "paths": [ - "M96 363.487l133.744-133.744 22.627 22.627-131.629 131.629h103.258v32h-160v-160h32v107.487zM416 84.513l-133.744 133.744-22.627-22.627 131.629-131.629h-103.258v-32h160v160h-32v-107.487zM736 207.709c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-303.724c0-26.662-21.306-48.276-48-48.276-26.51 0-48 21.325-48 48.276v329.271c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-255.795c0-26.623-21.306-48.205-48-48.205-26.51 0-48 21.647-48 48.205v79.795h-32v-112.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v80.28h-32v-336.291z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-resize-out" - ], - "grid": 32 - }, - { - "id": 708, - "paths": [ - "M422.1 32l22.6 22.6-131.6 131.7h103.3v32h-160v-160h32v107.5l133.7-133.8zM58.6 436.5l-22.6-22.6 131.6-131.6h-103.2v-32h160v160h-32v-107.5l-133.8 133.7zM992.4 746.3v-191.6c0-44.2-35.5-80-80-80-18 0-34.6 5.9-48 15.9v-0.4c0-44.1-35.5-79.9-80-79.9-18 0-34.6 6-48 16.1v-224c0-44.2-35.5-80.1-80-80.1-34.3 0-63.6 21.6-75 52.1-14.1-12.5-32.6-20.1-53-20.1-44.2 0-80 35.7-80 80.3v283.4c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.4 131.8 177.5 178.3 277.1 178.3 150.2 0.1 272-121.7 272-271.9v0zM720.4 986.3c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.5c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-368.2c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-47.8c0-26.7 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v79.8h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 132.5-107.5 240-240 240v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-resize-in" - ], - "grid": 32 - }, - { - "id": 709, - "paths": [ - "M454.1 32l22.6 22.6-131.6 131.7h103.3v32h-160v-160h32v107.5l133.7-133.8zM90.6 436.5l-22.6-22.6 131.6-131.6h-103.2v-32h160v160h-32v-107.5l-133.8 133.7zM736.4 202c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.8c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.2-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.7c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-336.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-resize-in" - ], - "grid": 32 - }, - { - "id": 710, - "paths": [ - "M138.212 398.094c-5.9-19.278-9.075-39.747-9.075-60.957 0-114.875 93.125-208 208-208 21.21 0 41.679 3.175 60.957 9.075v0l-83.585-83.585 22.627-22.627 113.137 113.137-33.137 33.137v2.054c-0.453-0.232-0.908-0.462-1.364-0.69l-78.636 78.636-22.627-22.627 68.478-68.478c-14.619-3.934-29.989-6.032-45.85-6.032-97.202 0-176 78.798-176 176 0 15.861 2.098 31.232 6.032 45.85l68.478-68.478 22.627 22.627-78.636 78.636c0.228 0.456 0.458 0.91 0.69 1.364h-2.054l-33.137 33.137-113.137-113.137 22.627-22.627 83.585 83.585zM993.137 753.137v-191.542c0-44.185-35.509-80.004-80-80.004-18.010 0-34.629 5.898-48 15.901v-0.431c0-44.141-35.509-79.924-80-79.924-18.010 0-34.629 5.996-48 16.068v-223.958c0-44.244-35.509-80.111-80-80.111-34.342 0-63.63 21.606-74.973 52.056-14.072-12.482-32.603-20.056-53.027-20.056-44.183 0-80 35.693-80 80.269v283.468c-62.565-58.516-133.992-102.16-179.484-56.667-63.592 63.592 69.959 188.37 174.391 378.633 72.352 131.816 177.48 178.297 277.094 178.297 150.221 0 272-121.779 272-272zM721.137 993.137c-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-361.379c0-26.82 21.49-48.168 48-48.168 26.694 0 48 21.565 48 48.168v335.832h32v-368.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v336.291h32v-47.794c0-26.717 21.49-48.206 48-48.206 26.694 0 48 21.583 48 48.206v79.794h32v-15.946c0-26.576 21.49-48.054 48-48.054 26.694 0 48 21.514 48 48.054v191.946c0 132.548-107.452 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-rotate" - ], - "grid": 32 - }, - { - "id": 711, - "paths": [ - "M170.212 398.094c-5.9-19.278-9.075-39.747-9.075-60.957 0-114.875 93.125-208 208-208 21.21 0 41.679 3.175 60.957 9.075v0l-83.585-83.585 22.627-22.627 113.137 113.137-33.137 33.137v2.054c-0.453-0.232-0.908-0.462-1.364-0.69l-78.636 78.636-22.627-22.627 68.478-68.478c-14.619-3.934-29.989-6.032-45.85-6.032-97.202 0-176 78.798-176 176 0 15.861 2.098 31.232 6.032 45.85l68.478-68.478 22.627 22.627-78.636 78.636c0.228 0.456 0.458 0.91 0.69 1.364h-2.054l-33.137 33.137-113.137-113.137 22.627-22.627 83.585 83.585zM737.137 208.846c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-303.724c0-26.662-21.306-48.276-48-48.276-26.51 0-48 21.325-48 48.276v329.271c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-255.795c0-26.623-21.306-48.205-48-48.205-26.51 0-48 21.647-48 48.205v79.795h-32v-112.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v80.28h-32v-336.291z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-rotate" - ], - "grid": 32 - }, - { - "id": 712, - "paths": [ - "M416 224h-225.6l104 104-24 24-144-144 144-144 24 24-104 104h227.23c7.468-36.683 39.718-64 78.37-64 44.491 0 80 35.938 80 80.269v159.679c13.371-10.018 29.99-15.948 48-15.948 34.641 0 63.836 21.679 75.066 52.1 14.105-12.484 32.637-20.1 52.934-20.1 44.491 0 80 35.783 80 79.924v0.431c13.371-10.002 29.99-15.901 48-15.901 44.491 0 80 35.819 80 80.004v191.542c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-267.737zM687.96 960c132.571 0 240.040-114.727 240.040-240 0 0 0 74.024 0 0v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v47.794h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v111.794h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.432c-65.869-70.413-152.588-147.868-188.127-112.137-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.044 160.541v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-left" - ], - "grid": 32 - }, - { - "id": 713, - "paths": [ - "M420.356 224c6.609-18.779 24.371-32 45.244-32 26.694 0 48 21.614 48 48.276v303.724h32v-144.291c0-26.070 21.49-47.709 48-47.709 26.694 0 48 21.36 48 47.709v112.291h32v-80.28c0-26.519 21.49-47.72 48-47.72 26.694 0 48 21.365 48 47.72v112.28h32v-79.795c0-26.558 21.49-48.205 48-48.205 26.694 0 48 21.582 48 48.205v255.795c0 132.548-107.452 240-240 240-120.311-0.015-191.68-65.636-248.084-160.541-125.184-210.636-214.832-307.019-180.043-341.996 35.539-35.731 122.258 41.671 188.127 112.084v-313.547h-225.6l104 104-24 24-144-144 144-144 24 24-104 104h228.356z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-left" - ], - "grid": 32 - }, - { - "id": 714, - "paths": [ - "M510.3 192h227.2l-104-104 24-24 144 144-144 144-24-24 104-104h-225.5v143.9c13.4-10 30-15.9 48-15.9 34.6 0 63.8 21.7 75.1 52.1 14.1-12.5 32.6-20.1 52.9-20.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.6c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v-283.5c0-44.6 35.8-80.3 80-80.3 38.9 0 70.9 27.5 78.3 64v0zM623.9 960c132.6 0 240-114.7 240-240 0 0 0 74 0 0v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v111.8h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.9-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.9 160.5 248.1 160.5v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-right" - ], - "grid": 32 - }, - { - "id": 715, - "paths": [ - "M479.7 256v288h32v-144.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-80.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 132.5-107.5 240-240 240-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 21 0 38.6 13.3 45.2 32h256.7l-104-104 24-24 144 144-144 144-24-24 104-104h-253.9z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-right" - ], - "grid": 32 - }, - { - "id": 716, - "paths": [ - "M640 927.4c125.1-8.8 224-119.3 224-239.4 0 0 0 74 0 0v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v111.8h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.9-188.1-112.1-34.8 35 54.9 131.4 180 342 53.9 90.6 121.4 154.5 232.1 160.1v-289.2l-104 104-24-24 144-144 144 144-24 24-104-104v289zM896 688c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.5c0-44.6 35.8-80.3 80-80.3 44.5 0 80 35.9 80 80.3v159.7c13.4-10 30-15.9 48-15.9 34.6 0 63.8 21.7 75.1 52.1 14.1-12.5 32.6-20.1 52.9-20.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.5z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-up" - ], - "grid": 32 - }, - { - "id": 717, - "paths": [ - "M607.7 895.6c-110.7-5.6-178.2-69.5-232.1-160.1-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 26.7 0 48 21.6 48 48.3v303.7h32v-144.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-80.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 127.2-98.9 231.2-224 239.5v-289.1l104 104 24-24-144-144-144 144 24 24 104-104v289.2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-up" - ], - "grid": 32 - }, - { - "id": 718, - "paths": [ - "M896 688v-191.5c0-44.2-35.5-80-80-80-18 0-34.6 5.9-48 15.9v-0.4c0-44.1-35.5-79.9-80-79.9-20.3 0-38.8 7.6-52.9 20.1-11.3-30.5-40.5-52.2-75.1-52.2-18 0-34.6 5.9-48 15.9v-159.6c0-44.3-35.5-80.3-80-80.3-44.2 0-80 35.7-80 80.3v283.5c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.3 131.8 177.5 178.3 277.1 178.3 150.2 0 272-121.8 272-272v0zM640 432.2c0-26.7 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v79.8h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 125.3-107.5 240-240 240-120.3 0-191.6-65.6-248-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.4c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-111.8c0-26.7 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v369.4l-104-104-24 24 144 144 144-144-24-24-104 104v-337.4h-0.1z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-down" - ], - "grid": 32 - }, - { - "id": 719, - "paths": [ - "M639.7 448v-80.3c0-26.5 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v112.3h32v-79.8c0-26.6 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v255.8c0 132.5-107.5 240-240 240-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-329.3c0-27 21.5-48.3 48-48.3 26.7 0 48 21.6 48 48.3v303.7h32v-144.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v401.9l-104-104-24 24 144 144 144-144-24-24-104 104v-289.6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-down" - ], - "grid": 32 - }, - { - "id": 720, - "paths": [ - "M623.96 928c132.571 0 240.040-114.727 240.040-240 0 0 0 74.024 0 0v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v47.794h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v111.794h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.432c-65.869-70.413-152.588-147.868-188.127-112.137-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.044 160.541v0 0zM896 688c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.468c0-44.576 35.817-80.269 80-80.269 44.491 0 80 35.938 80 80.269v159.679c13.371-10.018 29.99-15.948 48-15.948 34.641 0 63.836 21.679 75.066 52.1 14.105-12.484 32.637-20.1 52.934-20.1 44.491 0 80 35.783 80 79.924v0.431c13.371-10.002 29.99-15.901 48-15.901 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger" - ], - "grid": 32 - }, - { - "id": 721, - "paths": [ - "M607.7 335.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v144.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-112.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger" - ], - "grid": 32 - }, - { - "id": 722, - "paths": [ - "M601.856 360.084c24.025-33.921 38.144-75.354 38.144-120.084 0-114.875-93.125-208-208-208s-208 93.125-208 208c0 73.639 38.267 138.34 96 175.302v-39.531c-39.088-32.281-64-81.117-64-135.771 0-97.202 78.798-176 176-176s176 78.798 176 176c0 42.666-15.182 81.785-40.437 112.252 12.046 0.804 23.578 3.515 34.293 7.832v0 0zM544 330.517c20.013-24.732 32-56.225 32-90.517 0-79.529-64.471-144-144-144s-144 64.471-144 144c0 34.293 11.987 65.786 32 90.517v-90.796c0-61.761 50.144-111.721 112-111.721 61.73 0 112 50.019 112 111.721v90.796zM623.96 992c132.571 0 240.040-114.727 240.040-240 0 0 0 74.024 0 0v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v47.794h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v111.794h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.432c-65.869-70.413-152.588-147.868-188.127-112.137-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.044 160.541v0zM896 752c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.468c0-44.576 35.817-80.269 80-80.269 44.491 0 80 35.938 80 80.269v159.679c13.371-10.018 29.99-15.948 48-15.948 34.641 0 63.836 21.679 75.066 52.1 14.105-12.484 32.637-20.1 52.934-20.1 44.491 0 80 35.783 80 79.924v0.431c13.371-10.002 29.99-15.901 48-15.901 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-double-tap" - ], - "grid": 32 - }, - { - "id": 723, - "paths": [ - "M586.1 324.4c13.7-25.1 21.5-53.8 21.5-84.4 0-97.2-78.8-176-176-176s-176 78.8-176 176c0 68.4 39 127.7 96 156.8v-37.1c-38.6-25.8-64-69.8-64-119.8 0-79.5 64.5-144 144-144s144 64.5 144 144c0 29.8-9.1 57.5-24.6 80.5 2.8-0.3 5.7-0.5 8.6-0.5 9.4 0.1 18.3 1.7 26.5 4.5v0 0 0zM511.7 318.4c19.8-20.2 32-47.9 32-78.4 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 30.5 12.2 58.2 32 78.4v-78.4c0-43.9 35.8-80 80-80 44.5 0 80 35.8 80 80v78.4zM607.7 399.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v144.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-112.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-double-tap" - ], - "grid": 32 - }, - { - "id": 724, - "paths": [ - "M544 298.5c20-24.7 32-56.2 32-90.5 0-79.5-64.5-144-144-144s-144 64.5-144 144c0 34.3 12 65.8 32 90.5v-90.8c0-61.7 50.1-111.7 112-111.7 61.7 0 112 50 112 111.7v90.8zM623.9 960c132.6 0 240-114.7 240-240 0 0 0 74 0 0v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v111.8h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.9-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.9 160.5 248.1 160.5v0zM896 720c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.5c0-44.6 35.8-80.3 80-80.3 44.5 0 80 35.9 80 80.3v159.7c13.4-10 30-15.9 48-15.9 34.6 0 63.8 21.7 75.1 52.1 14.1-12.5 32.6-20.1 52.9-20.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.5z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap" - ], - "grid": 32 - }, - { - "id": 725, - "paths": [ - "M512 286.384c19.795-20.201 32-47.867 32-78.384 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 30.517 12.205 58.183 32 78.384v-78.352c0-43.906 35.817-80.032 80-80.032 44.491 0 80 35.831 80 80.032v78.352zM608 367.709c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v144.291h-32v-303.724c0-26.662-21.306-48.276-48-48.276-26.51 0-48 21.325-48 48.276v329.271c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-255.795c0-26.623-21.306-48.205-48-48.205-26.51 0-48 21.647-48 48.205v79.795h-32v-112.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v80.28h-32v-112.291z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap" - ], - "grid": 32 - }, - { - "id": 726, - "paths": [ - "M760 192h72v-32h-64v-94.9c54.3 7.8 96 54.4 96 110.9 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-56.4 41.7-103.1 96-110.9v126.9h24zM624 992c-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v-283.5c0-44.6 35.8-80.3 80-80.3 44.5 0 80 35.9 80 80.3v159.7c13.4-10 30-15.9 48-15.9 34.6 0 63.8 21.7 75.1 52.1 14.1-12.5 32.6-20.1 52.9-20.1 44.5 0 80 35.8 80 79.9 13.4-9.6 30-15.5 48-15.5 44.5 0 80 35.8 80 80v191.5c0 150.2-121.8 272-272 272v0 0 0zM623.9 960c132.6 0 240-114.7 240-240 0 0 0 74 0 0v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v111.8h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.9-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.9 160.5 248.1 160.5v0 0zM752 320c79.5 0 144-64.5 144-144s-64.5-144-144-144-144 64.5-144 144 64.5 144 144 144v0 0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap-hold" - ], - "grid": 32 - }, - { - "id": 727, - "paths": [ - "M727.7 192h72v-32h-64v-94.9c54.3 7.8 96 54.4 96 110.9 0 61.9-50.1 112-112 112s-112-50.1-112-112c0-56.4 41.7-103.1 96-110.9v126.9h24zM479.7 350.4c19.8-20.2 32-47.9 32-78.4 0-61.9-50.1-112-112-112s-112 50.1-112 112c0 30.5 12.2 58.2 32 78.4v-78.4c0-43.9 35.8-80 80-80 44.5 0 80 35.8 80 80v78.4zM719.7 320c79.5 0 144-64.5 144-144s-64.5-144-144-144-144 64.5-144 144 64.5 144 144 144v0zM575.7 431.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v144.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-112.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap-hold" - ], - "grid": 32 - }, - { - "id": 728, - "paths": [ - "M352 373.483c-26.399-32.624-66.764-53.483-112-53.483-79.529 0-144 64.471-144 144 0 66.343 44.864 122.207 105.908 138.908-7.794-14.815-14.781-29.396-20.713-43.57-31.924-19.733-53.195-55.052-53.195-95.338 0-61.856 50.144-112 112-112 44.95 0 83.715 26.48 101.548 64.692 3.514 2.213 7 4.503 10.452 6.857v-50.067zM576 298.517c20.013-24.732 32-56.225 32-90.517 0-79.529-64.471-144-144-144s-144 64.471-144 144c0 34.293 11.987 65.786 32 90.517v-90.796c0-61.761 50.144-111.721 112-111.721 61.73 0 112 50.019 112 111.721v90.796zM655.96 960c132.571 0 240.040-114.727 240.040-240 0 0 0 74.024 0 0v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v47.794h-32v-79.794c0-26.623-21.306-48.206-48-48.206-26.51 0-48 21.489-48 48.206v111.794h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.432c-65.869-70.413-152.588-147.868-188.127-112.137-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.044 160.541v0zM928 720c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.468c0-44.576 35.817-80.269 80-80.269 44.491 0 80 35.938 80 80.269v159.679c13.371-10.018 29.99-15.948 48-15.948 34.641 0 63.836 21.679 75.066 52.1 14.105-12.484 32.637-20.1 52.934-20.1 44.491 0 80 35.783 80 79.924v0.431c13.371-10.002 29.99-15.901 48-15.901 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-finger-tap" - ], - "grid": 32 - }, - { - "id": 729, - "paths": [ - "M383.51 459.279c0.324-3.717 0.49-7.479 0.49-11.279 0-70.692-57.308-128-128-128s-128 57.308-128 128c0 68.116 53.206 123.805 120.326 127.774-8.404-12.856-16.215-25.141-23.242-36.86-37.851-12.868-65.084-48.71-65.084-90.913 0-53.019 42.981-96 96-96 47.12 0 86.311 33.948 94.449 78.72 11.162 8.815 22.243 18.462 33.061 28.559v0 0zM544 286.384c19.795-20.201 32-47.867 32-78.384 0-61.856-50.144-112-112-112s-112 50.144-112 112c0 30.517 12.205 58.183 32 78.384v-78.352c0-43.906 35.817-80.032 80-80.032 44.491 0 80 35.831 80 80.032v78.352zM640 367.709c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v144.291h-32v-303.724c0-26.662-21.306-48.276-48-48.276-26.51 0-48 21.325-48 48.276v329.271c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-255.795c0-26.623-21.306-48.205-48-48.205-26.51 0-48 21.647-48 48.205v79.795h-32v-112.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v80.28h-32v-112.291z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb-finger-tap" - ], - "grid": 32 - }, - { - "id": 730, - "paths": [ - "M416 0v128h32v-128h-32zM620.9 82.5l-99.5 80.5 20.1 24.9 99.5-80.6c0-0-20.1-24.8-20.1-24.8zM685 298l-124.7-28.8-7.2 31.2 124.7 28.8 7.2-31.2zM186.1 329.2l124.7-28.8-7.2-31.2-124.7 28.8 7.2 31.2zM223 107.3l99.5 80.6 20.1-24.9-99.5-80.6-20.1 24.9zM623.9 992c132.6 0 240-114.7 240-240 0 0 0 74 0 0v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v47.8h-32v-79.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.5-48 48.2v111.8h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.9-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.9 160.5 248.1 160.5v0zM896 752c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.5c0-44.6 35.8-80.3 80-80.3 44.5 0 80 35.9 80 80.3v159.7c13.4-10 30-15.9 48-15.9 34.6 0 63.8 21.7 75.1 52.1 14.1-12.5 32.6-20.1 52.9-20.1 44.5 0 80 35.8 80 79.9v0.4c13.4-10 30-15.9 48-15.9 44.5 0 80 35.8 80 80v191.5z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-click" - ], - "grid": 32 - }, - { - "id": 731, - "paths": [ - "M416 32v128h32v-128h-32zM620.9 114.5l-99.5 80.5 20.1 24.9 99.5-80.6c0.1 0-20.1-24.8-20.1-24.8zM685.1 330l-124.7-28.8-7.2 31.2 124.7 28.8 7.2-31.2zM186.2 361.2l124.7-28.8-7.2-31.2-124.7 28.8 7.2 31.2zM223 139.3l99.5 80.6 20.1-24.9-99.5-80.6-20.1 24.9zM608 431.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v144.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-112.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v80.3h-32v-112.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-click" - ], - "grid": 32 - }, - { - "id": 732, - "paths": [ - "M352 224v235.7c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.4 131.9 177.5 178.4 277.1 178.4 150.2 0 272-121.8 272-272v-191.5c0-44.2-35.5-80-80-80-18 0-34.6 6-48 16v-256.4c0-44.2-35.5-80.1-80-80.1-20.3 0-38.9 7.6-53 20.1-11.3-30.4-40.4-52.1-75-52.1-34.3 0-63.6 21.6-75 52-14.1-12.5-32.6-20-53-20-44.2 0-80 36-80 80.1v15.9h-241.6l104-104-24-24-144 144 144 144 24-24-104-104h241.6zM624 928c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.4c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-303.9c0-26.8 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v335.9h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 132.5-107.5 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 733, - "paths": [ - "M192 256h225.6v313.547c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-255.795c0-26.623-21.306-48.205-48-48.205-26.51 0-48 21.647-48 48.205v79.795h-32v-304.28c0-26.355-21.306-47.72-48-47.72-26.51 0-48 21.201-48 47.72v272.28h-32v-336.291c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-303.724c0-26.662-21.306-48.276-48-48.276-20.873 0-38.635 13.221-45.244 32v0h-228.356l104-104-24-24-144 144 144 144 24-24-104-104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 734, - "paths": [ - "M672 192v-15.9c0-44.2-35.5-80.1-80-80.1-20.3 0-38.9 7.6-53 20.1-11.3-30.4-40.4-52.1-75-52.1-34.3 0-63.6 21.6-75 52-14.1-12.5-32.6-20-53-20-44.2 0-80 36-80 80.1v283.6c-62.6-58.5-134-102.2-179.5-56.7-63.6 63.6 70 188.4 174.4 378.6 72.3 131.9 177.5 178.4 277.1 178.4 150.2 0 272-121.8 272-272v-191.5c0-44.2-35.5-80-80-80-18 0-34.6 6-48 16v-208.5h225.6l-104 104 24 24 144-144-144-144-24 24 104 104h-225.6zM528 928c-120.3 0-191.7-65.6-248.1-160.5-125.2-210.6-214.8-307-180-342 35.5-35.7 122.3 41.7 188.1 112.1v-361.4c0-26.8 21.5-48.2 48-48.2 26.7 0 48 21.6 48 48.2v335.8h32v-368.3c0-26.1 21.5-47.7 48-47.7 26.7 0 48 21.4 48 47.7v336.3h32v-303.9c0-26.8 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v335.9h32v-15.9c0-26.6 21.5-48.1 48-48.1 26.7 0 48 21.5 48 48.1v191.9c0 132.5-107.5 240-240 240v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 735, - "paths": [ - "M865.3 224h-196.3c-6.5-18.6-24.2-32-45.4-32-26.5 0-48 21.2-48 47.7v272.3h-32v-336.3c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.5 94.9 127.9 160.5 248.2 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-288h193.6l-104 104 24 24 144-144-144-144-24 24 104 104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 736, - "paths": [ - "M608 927.6v-289.2l-104 104-24-24 144-144 144 144-24 24-104-104v289.1c125.1-8.2 224-112.3 224-239.5v-191.9c0-26.5-21.3-48.1-48-48.1-26.5 0-48 21.5-48 48.1v15.9h-32v-335.9c0-26.6-21.3-48.1-48-48.1-26.5 0-48 21.3-48 48.1v303.9h-32v-336.3c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-335.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.3-48 48.2v361.4c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 53.9 90.6 121.4 154.5 232.1 160.1zM896 688c0 150.2-121.8 272-272 272-99.6 0-204.7-46.5-277.1-178.3-104.4-190.3-238-315-174.4-378.6 45.5-45.5 116.9-1.8 179.5 56.7v0-283.7c0-44.1 35.8-80.1 80-80.1 20.4 0 39 7.6 53 20 11.4-30.4 40.6-52 75-52 34.6 0 63.7 21.7 75 52.1 14.1-12.5 32.7-20.1 53-20.1 44.5 0 80 35.9 80 80.1v256.4c13.4-10.1 30-16 48-16 44.5 0 80 35.8 80 80v191.5z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 737, - "paths": [ - "M640 638.4v289.3c126.8-6.4 223.7-111.3 223.7-239.7v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-304.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v272.3h-32v-336.3c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 53.3 89.6 123.9 153.1 232.4 159.9v0-289l-104 104-24-24 144-144 144 144-24 24-104-104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 738, - "paths": [ - "M608 480v-336.291c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.379c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541 132.548 0 240-107.452 240-240v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-335.896c0-26.567-21.306-48.104-48-48.104-26.51 0-48 21.294-48 48.104v593.496l104-104 24 24-144 144-144-144 24-24 104 104v-289.6zM896 688c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.647c0-44.059 35.817-80.090 80-80.090 20.43 0 38.966 7.561 53.040 20.022 11.352-30.432 40.631-52.022 74.96-52.022 34.57 0 63.718 21.655 74.998 52.068 14.113-12.496 32.672-20.068 53.002-20.068 44.491 0 80 35.867 80 80.111v256.354c13.371-10.052 29.99-16.010 48-16.010 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 739, - "paths": [ - "M607.7 769.6v-625.9c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-304.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v561.9l104-104 24 24-144 144-144-144 24-24 104 104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 740, - "paths": [ - "M624 928v0c132.548 0 240-107.452 240-240v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-335.896c0-26.567-21.306-48.104-48-48.104-26.51 0-48 21.294-48 48.104v303.896h-32v-336.291c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.379c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541zM896 688c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.647c0-44.059 35.817-80.090 80-80.090 20.43 0 38.966 7.561 53.040 20.022 11.352-30.432 40.631-52.022 74.96-52.022 34.57 0 63.718 21.655 74.998 52.068 14.113-12.496 32.672-20.068 53.002-20.068 44.491 0 80 35.867 80 80.111v256.354c13.371-10.052 29.99-16.010 48-16.010 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers" - ], - "grid": 32 - }, - { - "id": 741, - "paths": [ - "M607.7 143.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-304.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v272.3h-32v-336.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers" - ], - "grid": 32 - }, - { - "id": 742, - "paths": [ - "M613.966 136.155c12.979-5.259 27.168-8.155 42.034-8.155 61.856 0 112 50.144 112 112 0 5.394-0.381 10.699-1.118 15.89v0c0.737 5.172 1.118 10.457 1.118 15.832v58.796c20.013-24.732 32-56.225 32-90.517 0-79.529-64.471-144-144-144-11.349 0-22.391 1.313-32.983 3.795-25.356-22.283-58.608-35.795-95.017-35.795s-69.661 13.512-95.017 35.795c-10.592-2.482-21.634-3.795-32.983-3.795-79.529 0-144 64.471-144 144 0 34.293 11.987 65.786 32 90.517v-90.305c0-31.031 12.565-59.113 32.873-79.422l-0.069 0.015c20.268-20.268 48.268-32.804 79.196-32.804 14.848 0 29.021 2.889 41.988 8.136 20.545-24.539 51.45-40.136 86.012-40.136 34.489 0 65.4 15.614 85.966 40.155v0 0zM768 375.771c39.088-32.281 64-81.117 64-135.771 0-97.202-78.798-176-176-176-8.291 0-16.448 0.573-24.433 1.682-29.059-21.183-64.853-33.682-103.567-33.682s-74.507 12.499-103.567 33.682c-7.986-1.109-16.143-1.682-24.433-1.682-97.202 0-176 78.798-176 176 0 54.654 24.912 103.489 64 135.771v0 39.531c-57.733-36.962-96-101.663-96-175.302 0-114.875 93.125-208 208-208 5.427 0 10.806 0.208 16.128 0.616 32.303-20.648 70.69-32.616 111.872-32.616s79.569 11.968 111.872 32.616v0c5.323-0.408 10.701-0.616 16.128-0.616 114.875 0 208 93.125 208 208 0 73.639-38.267 138.34-96 175.302v-39.531zM592 992v0c132.548 0 240-107.452 240-240v-191.946c0-26.539-21.306-48.054-48-48.054-26.51 0-48 21.478-48 48.054v15.946h-32v-335.896c0-26.567-21.306-48.104-48-48.104-26.51 0-48 21.294-48 48.104v303.896h-32v-336.291c0-26.349-21.306-47.709-48-47.709-26.51 0-48 21.639-48 47.709v368.291h-32v-335.832c0-26.602-21.306-48.168-48-48.168-26.51 0-48 21.348-48 48.168v361.379c-65.869-70.413-152.588-147.815-188.127-112.084-34.789 34.977 54.859 131.36 180.043 341.996 56.404 94.905 127.773 160.526 248.084 160.541zM864 752c0 150.221-121.779 272-272 272-99.613 0-204.742-46.48-277.094-178.297-104.432-190.263-237.983-315.040-174.391-378.633 45.493-45.493 116.919-1.849 179.484 56.667v0-283.647c0-44.059 35.817-80.090 80-80.090 20.43 0 38.966 7.561 53.040 20.022 11.352-30.432 40.631-52.022 74.96-52.022 34.57 0 63.718 21.655 74.998 52.068 14.113-12.496 32.672-20.068 53.002-20.068 44.491 0 80 35.867 80 80.111v256.354c13.371-10.052 29.99-16.010 48-16.010 44.491 0 80 35.819 80 80.004v191.542z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 743, - "paths": [ - "M767.7 350.4c19.8-20.2 32-47.9 32-78.4 0-61.9-50.1-112-112-112-8.8 0-17.3 1-25.4 2.9v0c-17.4-39.4-56.8-66.9-102.6-66.9s-85.2 27.5-102.6 66.9c-8.2-1.9-16.7-2.9-25.4-2.9-61.9 0-112 50.1-112 112 0 30.5 12.2 58.2 32 78.4v0-78.4c0-43.9 35.8-80 80-80 18.1 0 34.7 5.9 48 15.9v-0.2c0-43.6 35.8-79.7 80-79.7 44.5 0 80 35.7 80 79.7v0.3c13.4-10.1 30-16.1 48-16.1 44.5 0 80 35.7 80 79.7v78.8zM767.7 391.8c38.6-25.8 64-69.8 64-119.8 0-79.5-64.5-144-144-144-2.7 0-5.4 0.1-8.1 0.2v0c-25.8-38.7-69.9-64.2-119.9-64.2s-94.1 25.5-119.9 64.2c-2.7-0.1-5.4-0.2-8.1-0.2-79.5 0-144 64.5-144 144 0 49.9 25.4 93.9 64 119.8v0 37.1c-57-29.1-96-88.4-96-156.8 0-94.6 74.6-171.7 168.1-175.8 32.3-39.3 81.2-64.3 135.9-64.3s103.6 25 135.9 64.2c93.5 4.1 168.1 81.3 168.1 175.8 0 68.4-39 127.7-96 156.8v-37zM607.7 207.7c0-26.3-21.3-47.7-48-47.7-26.5 0-48 21.6-48 47.7v368.3h-32v-303.7c0-26.7-21.3-48.3-48-48.3-26.5 0-48 21.3-48 48.3v329.3c-65.9-70.4-152.6-147.8-188.1-112.1-34.8 35 54.9 131.4 180 342 56.4 94.9 127.8 160.5 248.1 160.5 132.5 0 240-107.5 240-240v-255.8c0-26.6-21.3-48.2-48-48.2-26.5 0-48 21.6-48 48.2v79.8h-32v-304.3c0-26.4-21.3-47.7-48-47.7-26.5 0-48 21.2-48 47.7v272.3h-32v-336.3z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "three-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 744, - "paths": [ - "M320 416.878v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.481c71.874 7.965 128 68.941 128 142.982v432.137h-288v-432.137c0-74.062 56.001-135.035 128-142.985zM672 320.878v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c71.874 7.981 128 69.084 128 143.278v527.839h-288v-527.839c0-74.305 56.001-135.327 128-143.282zM336 448c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM336 480v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM336 512c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM256 768v32h160v-32h-160zM256 832v32h160v-32h-160zM688 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM688 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM688 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM608 672v32h160v-32h-160zM608 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 745, - "paths": [ - "M672 322.478v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c71.874 7.981 128 69.084 128 143.278v527.839h-288v-527.839c0-74.305 56.001-135.327 128-143.282zM320 418.478v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.481c71.874 7.965 128 68.941 128 142.982v432.137h-288v-432.137c0-74.062 56.001-135.035 128-142.985zM336 481.6c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM256 769.6v32h160v-32h-160zM256 833.6v32h160v-32h-160zM688 385.6c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM608 673.6v32h160v-32h-160zM608 737.6v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-up" - ], - "grid": 32 - }, - { - "id": 746, - "paths": [ - "M704 727.896c77.96-61.531 128-156.87 128-263.896 0-185.568-150.432-336-336-336s-336 150.432-336 336c0 107.026 50.040 202.365 128 263.896v-42.193c-59.089-55.459-96-134.271-96-221.704 0-167.895 136.105-304 304-304s304 136.105 304 304c0 87.433-36.911 166.245-96 221.704v42.193zM704 583.814c20.354-35.259 32-76.176 32-119.814 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 43.638 11.646 84.555 32 119.814v-119.923c0-114.768 93.125-207.891 208-207.891 114.641 0 208 93.076 208 207.891v119.923zM496 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM496 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM496 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM496 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-double-tap" - ], - "grid": 32 - }, - { - "id": 747, - "paths": [ - "M496 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM496 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160zM704 727.896c77.96-61.531 128-156.87 128-263.896 0-185.568-150.432-336-336-336s-336 150.432-336 336c0 107.026 50.040 202.365 128 263.896v-42.193c-59.089-55.459-96-134.271-96-221.704 0-167.895 136.105-304 304-304s304 136.105 304 304c0 87.433-36.911 166.245-96 221.704v42.193zM704 583.814c20.354-35.259 32-76.176 32-119.814 0-132.548-107.452-240-240-240s-240 107.452-240 240c0 43.638 11.646 84.555 32 119.814v-119.923c0-114.768 93.125-207.891 208-207.891 114.641 0 208 93.076 208 207.891v119.923z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-double-tap" - ], - "grid": 32 - }, - { - "id": 748, - "paths": [ - "M320 736h-128v-432.137c0-79.465 64.471-143.863 144-143.863 79.367 0 144 64.41 144 143.863v432.137h-128v193.6l104-104 24 24-144 144-144-144 24-24 104 104v-193.6zM672 736h-128v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v527.839h-128v193.6l104-104 24 24-144 144-144-144 24-24 104 104v-193.6zM336 192c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM336 224v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM336 256c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM256 512v32h160v-32h-160zM256 576v32h160v-32h-160zM688 96c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM688 128v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM688 160c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM608 416v32h160v-32h-160zM608 480v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 749, - "paths": [ - "M320 768h-128v-432.137c0-79.465 64.471-143.863 144-143.863 79.367 0 144 64.41 144 143.863v432.137h-128v161.6l104-104 24 24-144 144-144-144 24-24 104 104v-161.6zM672 768h-128v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v527.839h-128v161.6l104-104 24 24-144 144-144-144 24-24 104 104v-161.6zM336 256c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM256 544v32h160v-32h-160zM256 608v32h160v-32h-160zM688 160c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM608 448v32h160v-32h-160zM608 512v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-down" - ], - "grid": 32 - }, - { - "id": 750, - "paths": [ - "M704 576v416h-288v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v79.839h193.6l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6zM208 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM208 448c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM208 480v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM208 512c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM128 768v32h160v-32h-160zM128 832v32h160v-32h-160zM560 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM560 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM560 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM480 672v32h160v-32h-160zM480 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 751, - "paths": [ - "M704 576v416h-288v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v79.839h193.6l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6zM208 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM208 480c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM128 768v32h160v-32h-160zM128 832v32h160v-32h-160zM560 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM480 672v32h160v-32h-160zM480 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-right" - ], - "grid": 32 - }, - { - "id": 752, - "paths": [ - "M320.865 544c7.903-71.999 68.971-128 143.135-128 79.367 0 144 64.41 144 143.863v432.137h-288v-416h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.465zM464 448c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM464 480v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM464 512c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM384 768v32h160v-32h-160zM384 832v32h160v-32h-160zM816 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM816 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM816 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM816 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM736 672v32h160v-32h-160zM736 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 753, - "paths": [ - "M322.465 544c7.903-71.999 68.971-128 143.135-128 79.367 0 144 64.41 144 143.863v432.137h-288v-416h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.465zM465.6 480c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM385.6 768v32h160v-32h-160zM385.6 832v32h160v-32h-160zM817.6 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM817.6 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM737.6 672v32h160v-32h-160zM737.6 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-swipe-left" - ], - "grid": 32 - }, - { - "id": 754, - "paths": [ - "M672 671.391c58.733-49.892 96-124.29 96-207.391 0-150.221-121.779-272-272-272s-272 121.779-272 272c0 83.101 37.267 157.499 96 207.391v-44.221c-39.718-42.82-64-100.16-64-163.17 0-132.548 107.452-240 240-240s240 107.452 240 240c0 63.011-24.282 120.35-64 163.17v44.221zM496 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM496 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM496 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM496 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap" - ], - "grid": 32 - }, - { - "id": 755, - "paths": [ - "M496 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM496 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160zM672 671.391c58.733-49.892 96-124.29 96-207.391 0-150.221-121.779-272-272-272s-272 121.779-272 272c0 83.101 37.267 157.499 96 207.391v-44.221c-39.718-42.82-64-100.16-64-163.17 0-132.548 107.452-240 240-240s240 107.452 240 240c0 63.011-24.282 120.35-64 163.17v44.221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap" - ], - "grid": 32 - }, - { - "id": 756, - "paths": [ - "M800 192h64v-32h-64v-94.866c54.277 7.764 96 54.442 96 110.866 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-56.424 41.723-103.102 96-110.866v126.866h32zM368 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM368 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM368 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM368 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM288 672v32h160v-32h-160zM288 736v32h160v-32h-160zM784 320c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM544 671.391c58.733-49.892 96-124.29 96-207.391 0-150.221-121.779-272-272-272s-272 121.779-272 272c0 83.101 37.267 157.499 96 207.391v-44.221c-39.718-42.82-64-100.16-64-163.17 0-132.548 107.452-240 240-240s240 107.452 240 240c0 63.011-24.282 120.35-64 163.17v44.221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap-hold" - ], - "grid": 32 - }, - { - "id": 757, - "paths": [ - "M800 65.134c54.277 7.764 96 54.442 96 110.866 0 61.856-50.144 112-112 112s-112-50.144-112-112c0-56.424 41.723-103.102 96-110.866v126.866h32v-126.866zM368 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM368 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM288 672v32h160v-32h-160zM288 736v32h160v-32h-160zM784 320c79.529 0 144-64.471 144-144s-64.471-144-144-144c-79.529 0-144 64.471-144 144s64.471 144 144 144v0zM800 160v32h64v-32h-64zM544 671.391c58.733-49.892 96-124.29 96-207.391 0-150.221-121.779-272-272-272s-272 121.779-272 272c0 83.101 37.267 157.499 96 207.391v-44.221c-39.718-42.82-64-100.16-64-163.17 0-132.548 107.452-240 240-240s240 107.452 240 240c0 63.011-24.282 120.35-64 163.17v44.221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-tap-hold" - ], - "grid": 32 - }, - { - "id": 758, - "paths": [ - "M528 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM528 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160zM512 96v160h32v-160h-32zM799.347 201.768l-113.137 113.137 22.627 22.627 113.137-113.137-22.627-22.627zM927.742 479.742h-160v32h160v-32zM128.258 511.742h160v-32h-160v32zM234.026 224.395l113.137 113.137 22.627-22.627-113.137-113.137-22.627 22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-click" - ], - "grid": 32 - }, - { - "id": 759, - "paths": [ - "M528 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM528 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160zM512 96v160h32v-160h-32zM799.347 201.768l-113.137 113.137 22.627 22.627 113.137-113.137-22.627-22.627zM927.742 479.742h-160v32h160v-32zM128.258 511.742h160v-32h-160v32zM234.026 224.395l113.137 113.137 22.627-22.627-113.137-113.137-22.627 22.627z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-click" - ], - "grid": 32 - }, - { - "id": 760, - "paths": [ - "M671.103 448h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6v512h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493c8.015-72.095 69.029-128 143.107-128 73.921 0 135.061 55.989 143.103 128zM528 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-horizontally" - ], - "grid": 32 - }, - { - "id": 761, - "paths": [ - "M671.103 448h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6v512h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493c8.015-72.095 69.029-128 143.107-128 73.921 0 135.061 55.989 143.103 128zM528 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-horizontally" - ], - "grid": 32 - }, - { - "id": 762, - "paths": [ - "M671.103 448h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6v512h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493c7.43-66.832 60.403-119.751 127.107-127.122v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c66.581 7.393 119.649 60.373 127.103 127.117v0 0zM528 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe" - ], - "grid": 32 - }, - { - "id": 763, - "paths": [ - "M384.893 448c7.43-66.832 60.403-119.751 127.107-127.122v0-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c66.581 7.393 119.649 60.373 127.103 127.117h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6v512h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493zM528 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe" - ], - "grid": 32 - }, - { - "id": 764, - "paths": [ - "M336 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM336 448c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM336 480v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM336 512c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM256 768v32h160v-32h-160zM256 832v32h160v-32h-160zM688 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM688 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM688 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM688 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM608 672v32h160v-32h-160zM608 736v32h160v-32h-160zM896 583.814c20.354-35.259 32-76.176 32-119.814 0-132.548-107.452-240-240-240-95.877 0-178.623 56.22-217.070 137.493-38.45-26.186-84.902-41.493-134.93-41.493-132.548 0-240 107.452-240 240 0 43.638 11.646 84.555 32 119.814v-119.923c0-114.768 93.125-207.891 208-207.891 58.68 0 111.784 24.386 149.646 63.591 21.792-91.495 104.121-159.591 202.354-159.591 114.641 0 208 93.076 208 207.891v119.923zM896 685.704c59.089-55.459 96-134.271 96-221.704 0-167.895-136.105-304-304-304-97.522 0-184.318 45.92-239.946 117.318-34.675-13.757-72.481-21.318-112.054-21.318-167.895 0-304 136.105-304 304 0 87.433 36.911 166.245 96 221.704v42.193c-77.96-61.531-128-156.87-128-263.896 0-185.568 150.432-336 336-336 35.495 0 69.704 5.504 101.821 15.705 61.516-68.568 150.81-111.705 250.179-111.705 185.568 0 336 150.432 336 336 0 107.026-50.040 202.365-128 263.896v-42.193z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 765, - "paths": [ - "M336 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM336 480c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM256 768v32h160v-32h-160zM256 832v32h160v-32h-160zM688 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM688 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM608 672v32h160v-32h-160zM608 736v32h160v-32h-160zM896 583.814c20.354-35.259 32-76.176 32-119.814 0-132.548-107.452-240-240-240-95.877 0-178.623 56.22-217.070 137.493-38.45-26.186-84.902-41.493-134.93-41.493-132.548 0-240 107.452-240 240 0 43.638 11.646 84.555 32 119.814v-119.923c0-114.768 93.125-207.891 208-207.891 58.68 0 111.784 24.386 149.646 63.591 21.792-91.495 104.121-159.591 202.354-159.591 114.641 0 208 93.076 208 207.891v119.923zM896 685.704c59.089-55.459 96-134.271 96-221.704 0-167.895-136.105-304-304-304-97.522 0-184.318 45.92-239.946 117.318-34.675-13.757-72.481-21.318-112.054-21.318-167.895 0-304 136.105-304 304 0 87.433 36.911 166.245 96 221.704v42.193c-77.96-61.531-128-156.87-128-263.896 0-185.568 150.432-336 336-336 35.495 0 69.704 5.504 101.821 15.705 61.516-68.568 150.81-111.705 250.179-111.705 185.568 0 336 150.432 336 336 0 107.026-50.040 202.365-128 263.896v-42.193z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-double-tap" - ], - "grid": 32 - }, - { - "id": 766, - "paths": [ - "M336 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM336 448c-61.856 0-112 50.025-112 111.728v400.272h224v-400.272c0-61.706-50.27-111.728-112-111.728v0zM336 480v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM336 512c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM256 768v32h160v-32h-160zM256 832v32h160v-32h-160zM688 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM688 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM688 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM688 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM608 672v32h160v-32h-160zM608 736v32h160v-32h-160zM864 627.17c39.718-42.82 64-100.16 64-163.17 0-132.548-107.452-240-240-240-95.877 0-178.623 56.22-217.070 137.493-38.45-26.186-84.902-41.493-134.93-41.493-132.548 0-240 107.452-240 240 0 63.011 24.282 120.35 64 163.17v44.221c-58.733-49.892-96-124.29-96-207.391 0-150.221 121.779-272 272-272 44.233 0 85.999 10.558 122.917 29.292 48.361-75.359 132.891-125.292 229.083-125.292 150.221 0 272 121.779 272 272 0 83.101-37.267 157.499-96 207.391v-44.221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-tap" - ], - "grid": 32 - }, - { - "id": 767, - "paths": [ - "M336 416v0c79.367 0 144 64.41 144 143.863v432.137h-288v-432.137c0-79.465 64.471-143.863 144-143.863zM336 480c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM256 768v32h160v-32h-160zM256 832v32h160v-32h-160zM688 320v0c79.367 0 144 64.543 144 144.161v527.839h-288v-527.839c0-79.727 64.471-144.161 144-144.161zM688 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM608 672v32h160v-32h-160zM608 736v32h160v-32h-160zM864 627.17c39.718-42.82 64-100.16 64-163.17 0-132.548-107.452-240-240-240-95.877 0-178.623 56.22-217.070 137.493-38.45-26.186-84.902-41.493-134.93-41.493-132.548 0-240 107.452-240 240 0 63.011 24.282 120.35 64 163.17v44.221c-58.733-49.892-96-124.29-96-207.391 0-150.221 121.779-272 272-272 44.233 0 85.999 10.558 122.917 29.292 48.361-75.359 132.891-125.292 229.083-125.292 150.221 0 272 121.779 272 272 0 83.101-37.267 157.499-96 207.391v-44.221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two-fingers-tap" - ], - "grid": 32 - }, - { - "id": 768, - "paths": [ - "M384.893 448c8.015-72.095 69.029-128 143.107-128 79.367 0 144 64.543 144 144.161v527.839h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493zM528 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-left" - ], - "grid": 32 - }, - { - "id": 769, - "paths": [ - "M384.893 448v0 0c8.015-72.095 69.029-128 143.107-128 79.367 0 144 64.543 144 144.161v527.839h-288v-512h-193.6l104 104-24 24-144-144 144-144 24 24-104 104h194.493zM528 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-left" - ], - "grid": 32 - }, - { - "id": 770, - "paths": [ - "M640 480v512h-288v-527.839c0-79.727 64.471-144.161 144-144.161 73.921 0 135.061 55.989 143.103 128h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6zM496 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM496 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM496 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-right" - ], - "grid": 32 - }, - { - "id": 771, - "paths": [ - "M639.103 448h194.497l-104-104 24-24 144 144-144 144-24-24 104-104h-193.6v512h-288v-527.839c0-79.727 64.471-144.161 144-144.161 73.921 0 135.061 55.989 143.103 128v0 0zM496 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM416 672v32h160v-32h-160zM416 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-right" - ], - "grid": 32 - }, - { - "id": 772, - "paths": [ - "M512 320.878v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c71.874 7.981 128 69.084 128 143.278v527.839h-288v-527.839c0-74.305 56.001-135.327 128-143.282zM528 352c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 384v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 416c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-up" - ], - "grid": 32 - }, - { - "id": 773, - "paths": [ - "M512 320.878v-194.478l-104 104-24-24 144-144 144 144-24 24-104-104v194.483c71.874 7.981 128 69.084 128 143.278v527.839h-288v-527.839c0-74.305 56.001-135.327 128-143.282zM528 384c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 672v32h160v-32h-160zM448 736v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-up" - ], - "grid": 32 - }, - { - "id": 774, - "paths": [ - "M544 736v193.6l104-104 24 24-144 144-144-144 24-24 104 104v-193.6h-128v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v527.839h-128zM528 96c-61.856 0-112 50.272-112 112.225v495.775h224v-495.775c0-61.98-50.27-112.225-112-112.225v0zM528 128v0c44.491 0 80 35.957 80 80.313v111.687h-160v-111.687c0-44.199 35.817-80.313 80-80.313zM528 160c-26.51 0-48 21.713-48 48.027v79.973h96v-79.973c0-26.524-21.306-48.027-48-48.027v0zM448 416v32h160v-32h-160zM448 480v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-down" - ], - "grid": 32 - }, - { - "id": 775, - "paths": [ - "M512 736h-128v-527.839c0-79.727 64.471-144.161 144-144.161 79.367 0 144 64.543 144 144.161v527.839h-128v193.6l104-104 24 24-144 144-144-144 24-24 104 104v-193.6zM528 128c-44.183 0-80 36.114-80 80.313v111.687h160v-111.687c0-44.356-35.509-80.313-80-80.313v0zM448 416v32h160v-32h-160zM448 480v32h160v-32h-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "one-finger-swipe-down" - ], - "grid": 32 - }, - { - "id": 776, - "paths": [ - "M288 480v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM576 416h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-159.811h32v159.906c0 17.725 14.165 32.094 31.967 32.094h32.067c17.655 0 31.967-14.012 31.967-32.094v-159.906zM720 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-numbers" - ], - "grid": 32 - }, - { - "id": 777, - "paths": [ - "M288 480v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM576 416h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-159.811h32v159.906c0 17.725 14.165 32.094 31.967 32.094h32.067c17.655 0 31.967-14.012 31.967-32.094v-159.906zM720 512l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96zM256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-numbers" - ], - "grid": 32 - }, - { - "id": 778, - "paths": [ - "M576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM288 448h64.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-64.033v-64zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pages" - ], - "grid": 32 - }, - { - "id": 779, - "paths": [ - "M576 544h-64v-32h96v128h-95.844c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h95.844v32h-96.006c-17.67 0-31.994 14.199-31.994 31.994v96.012c0 17.67 14.199 31.994 31.994 31.994h64.006v-64zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704.156 416h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pages" - ], - "grid": 32 - }, - { - "id": 780, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-app" - ], - "grid": 32 - }, - { - "id": 781, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM384 544v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-app" - ], - "grid": 32 - }, - { - "id": 782, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM480 480v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-png" - ], - "grid": 32 - }, - { - "id": 783, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM480 480l96 160h32v-224h-32v160l-96-160h-32v224h32v-160zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-png" - ], - "grid": 32 - }, - { - "id": 784, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM448 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pdf" - ], - "grid": 32 - }, - { - "id": 785, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM448 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pdf" - ], - "grid": 32 - }, - { - "id": 786, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 480c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64 0 19.214-8.37 36.334-21.648 48.021 13.292 11.727 21.648 28.875 21.648 47.979 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.654-64.156-64h32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.033v-32h32.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.204-31.967 32h-32zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mp3" - ], - "grid": 32 - }, - { - "id": 787, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 480h32c0-17.796 14.312-32 31.967-32h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.033v32h32.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32h-32c0 35.346 28.605 64 64.156 64h31.688c35.432 0 64.156-28.407 64.156-64 0-19.104-8.356-36.252-21.648-47.979 13.278-11.688 21.648-28.807 21.648-48.021 0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mp3" - ], - "grid": 32 - }, - { - "id": 788, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM736 544h-57.6l57.6-80v80zM736 576v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mp4" - ], - "grid": 32 - }, - { - "id": 789, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM736 544v-80l-57.6 80h57.6zM736 576v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mp4" - ], - "grid": 32 - }, - { - "id": 790, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM512.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mov" - ], - "grid": 32 - }, - { - "id": 791, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM512.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM720 584l-48-168h-32l64 224h32l64-224h-32l-48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mov" - ], - "grid": 32 - }, - { - "id": 792, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 544v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-jpg" - ], - "grid": 32 - }, - { - "id": 793, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 544v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-jpg" - ], - "grid": 32 - }, - { - "id": 794, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM480 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM288 553.6v86.4h-32v-224h32v86.4l86.398-86.4h41.602l-112 112 112 112h-41.602l-86.398-86.4zM736 544v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-key" - ], - "grid": 32 - }, - { - "id": 795, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM480 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM288 553.6v86.4h-32v-224h32v86.4l86.398-86.4h41.602l-112 112 112 112h-41.602l-86.398-86.4zM736 544v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-key" - ], - "grid": 32 - }, - { - "id": 796, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160.235 352c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM896 608v32h-160v-224h32v192h128zM416 448v192h32v-192h64v-32h-160v32h64zM288 512v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96zM624 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-html" - ], - "grid": 32 - }, - { - "id": 797, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM896 608h-128v-192h-32v224h160v-32zM416 448v192h32v-192h64v-32h-160v32h64zM288 512h-96v-96h-32v224h32v-96h96v96h32v-224h-32v96zM624 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-html" - ], - "grid": 32 - }, - { - "id": 798, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-css" - ], - "grid": 32 - }, - { - "id": 799, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM416 576l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-css" - ], - "grid": 32 - }, - { - "id": 800, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160.235 352c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM624 584l48-168h32l-64 224h-32l-64-224h32l48 168zM160 544v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM480 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM415.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM864 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM799.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-java" - ], - "grid": 32 - }, - { - "id": 801, - "paths": [ - "M159.817 320c-52.918 0-95.817 42.952-95.817 95.961v224.078c0 52.998 42.898 95.961 95.817 95.961h736.366c52.918 0 95.817-42.952 95.817-95.961v-224.078c0-52.998-42.898-95.961-95.817-95.961h-736.366zM624 584l48-168h32l-64 224h-32l-64-224h32l48 168zM160 544h32v32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.431 31.967-31.705v-160.295h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-31.811zM480 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM415.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM864 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM799.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-java" - ], - "grid": 32 - }, - { - "id": 802, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM640 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM672 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-psd" - ], - "grid": 32 - }, - { - "id": 803, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM640 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM672 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-psd" - ], - "grid": 32 - }, - { - "id": 804, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM608 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM480 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM415.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ai" - ], - "grid": 32 - }, - { - "id": 805, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM608 448h-32v-32h96v32h-32v160h32v32h-96v-32h32v-160zM480 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM415.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ai" - ], - "grid": 32 - }, - { - "id": 806, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 536v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM288 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-bmp" - ], - "grid": 32 - }, - { - "id": 807, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 536v104h95.844c35.432 0 64.156-28.407 64.156-64 0-19.107-8.366-36.258-21.641-47.985 13.273-11.687 21.641-28.805 21.641-48.015 0-35.346-28.605-64-64.156-64h-95.844v120zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM288 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-bmp" - ], - "grid": 32 - }, - { - "id": 808, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM592 640h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dwg" - ], - "grid": 32 - }, - { - "id": 809, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM592 640h16v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96 48 96h16zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dwg" - ], - "grid": 32 - }, - { - "id": 810, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM288 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-eps" - ], - "grid": 32 - }, - { - "id": 811, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM288 544h96v-32h-96v-64h128v-32h-160v224h160v-32h-128v-64zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-eps" - ], - "grid": 32 - }, - { - "id": 812, - "paths": [ - "M223.764 320h672.471c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-672.471c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961zM224.115 352c-35.41 0-64.115 28.806-64.115 63.745v224.511c0 35.205 28.472 63.745 64.115 63.745h671.77c35.41 0 64.115-28.806 64.115-63.745v-224.511c0-35.205-28.472-63.745-64.115-63.745h-671.77zM288 448v192h32v-192h64v-32h-160v32h64zM448 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM576 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM768 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tiff" - ], - "grid": 32 - }, - { - "id": 813, - "paths": [ - "M223.764 320h672.471c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-672.471c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961zM288 448v192h32v-192h64v-32h-160v32h64zM448 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM576 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM768 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tiff" - ], - "grid": 32 - }, - { - "id": 814, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM512 448v192h32v-192h64v-32h-160v32h64zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ots" - ], - "grid": 32 - }, - { - "id": 815, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM512 448v192h32v-192h64v-32h-160v32h64zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ots" - ], - "grid": 32 - }, - { - "id": 816, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 512v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-php" - ], - "grid": 32 - }, - { - "id": 817, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 512h-96v-96h-32v224h32v-96h96v96h32v-224h-32v96zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-php" - ], - "grid": 32 - }, - { - "id": 818, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM352 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM384 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 544v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-py" - ], - "grid": 32 - }, - { - "id": 819, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM352 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM384 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 544l64-96v-32h-32v32l-48 72-48-72v-32h-32v32l64 96v96h32v-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-py" - ], - "grid": 32 - }, - { - "id": 820, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM608 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-c" - ], - "grid": 32 - }, - { - "id": 821, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM608 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-c" - ], - "grid": 32 - }, - { - "id": 822, - "paths": [ - "M565.621 636.248l28.321 28.321 22.627-22.627-24.102-24.102c9.681-11.209 15.533-25.86 15.533-42.029v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c7.645 0 14.978-1.321 21.777-3.752zM537.373 608h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-sql" - ], - "grid": 32 - }, - { - "id": 823, - "paths": [ - "M565.621 636.248c-6.799 2.431-14.132 3.752-21.777 3.752h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 16.169-5.853 30.82-15.533 42.029l24.102 24.102-22.627 22.627-28.321-28.321zM537.373 608h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM320.156 416h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-sql" - ], - "grid": 32 - }, - { - "id": 824, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM409.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM384 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM544 536v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM576 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rb" - ], - "grid": 32 - }, - { - "id": 825, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM409.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM384 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM544 536v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM576 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rb" - ], - "grid": 32 - }, - { - "id": 826, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-cpp" - ], - "grid": 32 - }, - { - "id": 827, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM416 576l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-cpp" - ], - "grid": 32 - }, - { - "id": 828, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 448v192h32v-192h64v-32h-160v32h64zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM768 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM703.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tga" - ], - "grid": 32 - }, - { - "id": 829, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 448v192h32v-192h64v-32h-160v32h64zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM768 544v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM703.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tga" - ], - "grid": 32 - }, - { - "id": 830, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM512 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dxf" - ], - "grid": 32 - }, - { - "id": 831, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM512 528l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dxf" - ], - "grid": 32 - }, - { - "id": 832, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM512.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM800 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-doc" - ], - "grid": 32 - }, - { - "id": 833, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM512.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM800 576l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-doc" - ], - "grid": 32 - }, - { - "id": 834, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM448 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-odt" - ], - "grid": 32 - }, - { - "id": 835, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM448 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-odt" - ], - "grid": 32 - }, - { - "id": 836, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM608 608v32h-160v-224h32v192h128zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xls" - ], - "grid": 32 - }, - { - "id": 837, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM320 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM608 608v32h-160v-224h32v192h128zM704.156 416h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xls" - ], - "grid": 32 - }, - { - "id": 838, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160.235 352c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM160 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM192 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM416.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM415.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM704 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM800 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-docx" - ], - "grid": 32 - }, - { - "id": 839, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM192 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM416.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM415.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM704 576l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM800 528l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-docx" - ], - "grid": 32 - }, - { - "id": 840, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ppt" - ], - "grid": 32 - }, - { - "id": 841, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ppt" - ], - "grid": 32 - }, - { - "id": 842, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-asp" - ], - "grid": 32 - }, - { - "id": 843, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM384 544v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM512.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-asp" - ], - "grid": 32 - }, - { - "id": 844, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM576 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM672.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ics" - ], - "grid": 32 - }, - { - "id": 845, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM576 576l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM672.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ics" - ], - "grid": 32 - }, - { - "id": 846, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dat" - ], - "grid": 32 - }, - { - "id": 847, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM576 544v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dat" - ], - "grid": 32 - }, - { - "id": 848, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xml" - ], - "grid": 32 - }, - { - "id": 849, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM320 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM528 512l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xml" - ], - "grid": 32 - }, - { - "id": 850, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM352 544v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-yml" - ], - "grid": 32 - }, - { - "id": 851, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM352 544v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96zM528 512l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96zM800 608v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-yml" - ], - "grid": 32 - }, - { - "id": 852, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM576 512v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-h" - ], - "grid": 32 - }, - { - "id": 853, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM576 512v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-h" - ], - "grid": 32 - }, - { - "id": 854, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM288 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM512 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM672 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-exe" - ], - "grid": 32 - }, - { - "id": 855, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM288 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM512 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM672 544v64h128v32h-160v-224h160v32h-128v64h96v32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-exe" - ], - "grid": 32 - }, - { - "id": 856, - "paths": [ - "M224.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM223.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM528 584l48-168h32l-64 224h-32l-64-224h32l48 168zM672 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-avi" - ], - "grid": 32 - }, - { - "id": 857, - "paths": [ - "M224.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM528 584l48-168h32l-64 224h-32l-64-224h32l48 168zM672 448h-32v-32h96v32h-32v160h32v32h-96v-32h32v-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-avi" - ], - "grid": 32 - }, - { - "id": 858, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM448 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM320.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-odp" - ], - "grid": 32 - }, - { - "id": 859, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM448 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM320.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-odp" - ], - "grid": 32 - }, - { - "id": 860, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160.235 352c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM160 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM192 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM416.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM415.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM608 448v192h32v-192h64v-32h-160v32h64zM800 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dotx" - ], - "grid": 32 - }, - { - "id": 861, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM192 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM416.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM415.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM608 448v192h32v-192h64v-32h-160v32h64zM800 528l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dotx" - ], - "grid": 32 - }, - { - "id": 862, - "paths": [ - "M159.817 320h736.366c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-736.366c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961zM160.235 352c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM224 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM512 608v32h-160v-224h32v192h128zM608.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM800 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xlsx" - ], - "grid": 32 - }, - { - "id": 863, - "paths": [ - "M159.817 320c-52.918 0-95.817 42.952-95.817 95.961v224.078c0 52.998 42.898 95.961 95.817 95.961h736.366c52.918 0 95.817-42.952 95.817-95.961v-224.078c0-52.998-42.898-95.961-95.817-95.961h-736.366zM224 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM512 608v32h-160v-224h32v192h128zM608.156 416h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64zM800 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-xlsx" - ], - "grid": 32 - }, - { - "id": 864, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM448 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ods" - ], - "grid": 32 - }, - { - "id": 865, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM448 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM480 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ods" - ], - "grid": 32 - }, - { - "id": 866, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM256 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pps" - ], - "grid": 32 - }, - { - "id": 867, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM256 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-pps" - ], - "grid": 32 - }, - { - "id": 868, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM512.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dot" - ], - "grid": 32 - }, - { - "id": 869, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM512.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM511.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dot" - ], - "grid": 32 - }, - { - "id": 870, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 448v192h32v-192h64v-32h-160v32h64zM512 528l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-txt" - ], - "grid": 32 - }, - { - "id": 871, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 448v192h32v-192h64v-32h-160v32h64zM512 528l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-txt" - ], - "grid": 32 - }, - { - "id": 872, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM313.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM512 448v192h32v-192h64v-32h-160v32h64zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rtf" - ], - "grid": 32 - }, - { - "id": 873, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM313.6 544l64 96h38.4l-64-96c35.361-0.083 64-28.459 64-64 0-35.346-28.605-64-64.156-64h-95.844v224h32v-96h25.6zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM512 448v192h32v-192h64v-32h-160v32h64zM672 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rtf" - ], - "grid": 32 - }, - { - "id": 874, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM544 544h-57.6l57.6-80v80zM544 576v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-m4v" - ], - "grid": 32 - }, - { - "id": 875, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM544 544v-80l-57.6 80h57.6zM544 576v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM720 584l-48-168h-32l64 224h32l64-224h-32l-48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-m4v" - ], - "grid": 32 - }, - { - "id": 876, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM288 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM608 608v32h-160v-224h32v192h128zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-flv" - ], - "grid": 32 - }, - { - "id": 877, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM288 512h96v32h-96v96h-32v-224h160v32h-128v64zM608 608v32h-160v-224h32v192h128zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-flv" - ], - "grid": 32 - }, - { - "id": 878, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM448 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mpg" - ], - "grid": 32 - }, - { - "id": 879, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM336 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM448 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM480 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mpg" - ], - "grid": 32 - }, - { - "id": 880, - "paths": [ - "M469.621 636.248l28.321 28.321 22.627-22.627-24.102-24.102c9.681-11.209 15.533-25.86 15.533-42.029v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c7.645 0 14.978-1.321 21.777-3.752zM441.373 608h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM608 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-quicktime" - ], - "grid": 32 - }, - { - "id": 881, - "paths": [ - "M469.621 636.248c-6.799 2.431-14.132 3.752-21.777 3.752h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 16.169-5.853 30.82-15.533 42.029l24.102 24.102-22.627 22.627-28.321-28.321zM441.373 608h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM608 448h-64v-32h160v32h-64v192h-32v-192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-quicktime" - ], - "grid": 32 - }, - { - "id": 882, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM368 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM640 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mid" - ], - "grid": 32 - }, - { - "id": 883, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM368 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM640 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-mid" - ], - "grid": 32 - }, - { - "id": 884, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 480c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64 0 19.214-8.37 36.334-21.648 48.021 13.292 11.727 21.648 28.875 21.648 47.979 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.654-64.156-64h32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.033v-32h32.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.204-31.967 32h-32zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM640 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-3gp" - ], - "grid": 32 - }, - { - "id": 885, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 480h32c0-17.796 14.312-32 31.967-32h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.033v32h32.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32h-32c0 35.346 28.605 64 64.156 64h31.688c35.432 0 64.156-28.407 64.156-64 0-19.104-8.356-36.252-21.648-47.979 13.278-11.688 21.648-28.807 21.648-48.021 0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM640 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-3gp" - ], - "grid": 32 - }, - { - "id": 886, - "paths": [ - "M191.764 320h672.471c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-672.471c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961zM192.115 352c-35.41 0-64.115 28.806-64.115 63.745v224.511c0 35.205 28.472 63.745 64.115 63.745h671.77c35.41 0 64.115-28.806 64.115-63.745v-224.511c0-35.205-28.472-63.745-64.115-63.745h-671.77zM320 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM255.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM416 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM544 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM736 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-aiff" - ], - "grid": 32 - }, - { - "id": 887, - "paths": [ - "M191.764 320h672.471c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-672.471c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961zM320 544v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM255.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM416 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM544 512v-64h128v-32h-160v224h32v-96h96v-32h-96zM736 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-aiff" - ], - "grid": 32 - }, - { - "id": 888, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM800 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-aac" - ], - "grid": 32 - }, - { - "id": 889, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM384 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM800 576c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-aac" - ], - "grid": 32 - }, - { - "id": 890, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM400 640h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-wav" - ], - "grid": 32 - }, - { - "id": 891, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM400 640h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM720 584l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-wav" - ], - "grid": 32 - }, - { - "id": 892, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 608l128-160v-32h-160v32h128l-128 160v32h160v-32h-128zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 480v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM640 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-zip" - ], - "grid": 32 - }, - { - "id": 893, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 608l128-160v-32h-160v32h128l-128 160v32h160v-32h-128zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 480v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM640 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-zip" - ], - "grid": 32 - }, - { - "id": 894, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM512 448v192h32v-192h64v-32h-160v32h64zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ott" - ], - "grid": 32 - }, - { - "id": 895, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM319.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM512 448v192h32v-192h64v-32h-160v32h64zM704 448v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-ott" - ], - "grid": 32 - }, - { - "id": 896, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 448v192h32v-192h64v-32h-160v32h64zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM672 608l128-160v-32h-160v32h128l-128 160v32h160v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tgz" - ], - "grid": 32 - }, - { - "id": 897, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 448v192h32v-192h64v-32h-160v32h64zM576 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM672 608l128-160v-32h-160v32h128l-128 160v32h160v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-tgz" - ], - "grid": 32 - }, - { - "id": 898, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM256 416h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dmg" - ], - "grid": 32 - }, - { - "id": 899, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM256 416v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM288 448v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM528 512l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-dmg" - ], - "grid": 32 - }, - { - "id": 900, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM320 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM480.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM672.156 416h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM671.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-iso" - ], - "grid": 32 - }, - { - "id": 901, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM320 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM480.156 416c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM672.156 416c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM671.967 448c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-iso" - ], - "grid": 32 - }, - { - "id": 902, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM313.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM697.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rar" - ], - "grid": 32 - }, - { - "id": 903, - "paths": [ - "M256.219 320c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h543.562c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-543.562zM313.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM288 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 544h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM511.967 448c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM697.6 544h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM672 448v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-rar" - ], - "grid": 32 - }, - { - "id": 904, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM255.826 352c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM640 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-gif" - ], - "grid": 32 - }, - { - "id": 905, - "paths": [ - "M256.219 320h543.562c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-543.562c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961zM416 544v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM512 448v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM640 512v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file-gif" - ], - "grid": 32 - }, - { - "id": 906, - "paths": [ - "M416 576v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM704 512h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-159.811h32v159.906c0 17.725 14.165 32.094 31.967 32.094h32.067c17.655 0 31.967-14.012 31.967-32.094v-159.906zM848 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-numbers" - ], - "grid": 32 - }, - { - "id": 907, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 576v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM704 512h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-159.811h32v159.906c0 17.725 14.165 32.094 31.967 32.094h32.067c17.655 0 31.967-14.012 31.967-32.094v-159.906zM848 608l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-numbers" - ], - "grid": 32 - }, - { - "id": 908, - "paths": [ - "M384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM320 511.745c0-34.939 28.576-63.745 63.826-63.745h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511zM416 544h64.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-64.033v-64zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pages" - ], - "grid": 32 - }, - { - "id": 909, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pages" - ], - "grid": 32 - }, - { - "id": 910, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-app" - ], - "grid": 32 - }, - { - "id": 911, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM512 640v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-app" - ], - "grid": 32 - }, - { - "id": 912, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM608 576v160h-32v-224h32l96 160v-160h32v224h-32l-96-160zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-png" - ], - "grid": 32 - }, - { - "id": 913, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM608 576l96 160h32v-224h-32v160l-96-160h-32v224h32v-160zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-png" - ], - "grid": 32 - }, - { - "id": 914, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pdf" - ], - "grid": 32 - }, - { - "id": 915, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM576 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pdf" - ], - "grid": 32 - }, - { - "id": 916, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 576c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64 0 19.214-8.37 36.334-21.648 48.021 13.292 11.727 21.648 28.875 21.648 47.979 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.654-64.156-64h32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.033v-32h32.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.204-31.967 32h-32zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mp3" - ], - "grid": 32 - }, - { - "id": 917, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 576h32c0-17.796 14.312-32 31.967-32h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.033v32h32.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32h-32c0 35.346 28.605 64 64.156 64h31.688c35.432 0 64.156-28.407 64.156-64 0-19.104-8.356-36.252-21.648-47.979 13.278-11.688 21.648-28.807 21.648-48.021 0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mp3" - ], - "grid": 32 - }, - { - "id": 918, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM864 640h-57.6l57.6-80v80zM864 672v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mp4" - ], - "grid": 32 - }, - { - "id": 919, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM864 640v-80l-57.6 80h57.6zM864 672v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mp4" - ], - "grid": 32 - }, - { - "id": 920, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM640.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mov" - ], - "grid": 32 - }, - { - "id": 921, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM640.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM848 680l-48-168h-32l64 224h32l64-224h-32l-48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mov" - ], - "grid": 32 - }, - { - "id": 922, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 640v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-jpg" - ], - "grid": 32 - }, - { - "id": 923, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 640v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-jpg" - ], - "grid": 32 - }, - { - "id": 924, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM608 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM416 649.6v86.4h-32v-224h32v86.4l86.398-86.4h41.602l-112 112 112 112h-41.602l-86.398-86.4zM864 640v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-key" - ], - "grid": 32 - }, - { - "id": 925, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM608 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM416 649.6v86.4h-32v-224h32v86.4l86.398-86.4h41.602l-112 112 112 112h-41.602l-86.398-86.4zM864 640v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-key" - ], - "grid": 32 - }, - { - "id": 926, - "paths": [ - "M608 416h320.183c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-320.183v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-384.183c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961h384.183v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM928 704v32h-160v-224h32v192h128zM448 544v192h32v-192h64v-32h-160v32h64zM320 608v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-html" - ], - "grid": 32 - }, - { - "id": 927, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-415.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h415.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM192.235 448h735.531c35.488 0 64.235 28.539 64.235 63.745v224.511c0 34.939-28.759 63.745-64.235 63.745h-735.531c-35.488 0-64.235-28.539-64.235-63.745v-224.511c0-34.939 28.759-63.745 64.235-63.745zM928 704h-128v-192h-32v224h160v-32zM448 544v192h32v-192h64v-32h-160v32h64zM320 608h-96v-96h-32v224h32v-96h96v96h32v-224h-32v96zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-html" - ], - "grid": 32 - }, - { - "id": 928, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-css" - ], - "grid": 32 - }, - { - "id": 929, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 672l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-css" - ], - "grid": 32 - }, - { - "id": 930, - "paths": [ - "M608 416h320.183c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-320.183v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-384.183c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961h384.183v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM656 680l48-168h32l-64 224h-32l-64-224h32l48 168zM192 640v31.811c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-159.811h-32v160.295c0 17.274-14.312 31.705-31.967 31.705h-32.067c-17.801 0-31.967-14.327-31.967-32v-32h-32zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM896 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM831.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-java" - ], - "grid": 32 - }, - { - "id": 931, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-415.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h415.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM656 680l48-168h32l-64 224h-32l-64-224h32l48 168zM192 640h32v32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.431 31.967-31.705v-160.295h32v159.811c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-31.811zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM896 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM831.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-java" - ], - "grid": 32 - }, - { - "id": 932, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM768 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM800 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-psd" - ], - "grid": 32 - }, - { - "id": 933, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM768 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM800 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-psd" - ], - "grid": 32 - }, - { - "id": 934, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM736 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM543.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ai" - ], - "grid": 32 - }, - { - "id": 935, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM736 544h-32v-32h96v32h-32v160h32v32h-96v-32h32v-160zM608 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM543.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ai" - ], - "grid": 32 - }, - { - "id": 936, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 632v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM416 640v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-bmp" - ], - "grid": 32 - }, - { - "id": 937, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 632v104h95.844c35.432 0 64.156-28.407 64.156-64 0-19.107-8.366-36.258-21.641-47.985 13.273-11.687 21.641-28.805 21.641-48.015 0-35.346-28.605-64-64.156-64h-95.844v120zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM416 640v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-bmp" - ], - "grid": 32 - }, - { - "id": 938, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM720 736h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dwg" - ], - "grid": 32 - }, - { - "id": 939, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM720 736h16v-224h-32v160l-32-64h-32l-32 64v-160h-32v224h32l48-96 48 96h16zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dwg" - ], - "grid": 32 - }, - { - "id": 940, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM416 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-eps" - ], - "grid": 32 - }, - { - "id": 941, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM416 640h96v-32h-96v-64h128v-32h-160v224h160v-32h-128v-64zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-eps" - ], - "grid": 32 - }, - { - "id": 942, - "paths": [ - "M608 416h320.236c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-320.236v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-320.236c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961h320.236v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM256.115 448c-35.41 0-64.115 28.806-64.115 63.745v224.511c0 35.205 28.472 63.745 64.115 63.745h671.77c35.41 0 64.115-28.806 64.115-63.745v-224.511c0-35.205-28.472-63.745-64.115-63.745h-671.77zM320 544v192h32v-192h64v-32h-160v32h64zM480 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tiff" - ], - "grid": 32 - }, - { - "id": 943, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-351.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h351.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM256.115 448h671.77c35.643 0 64.115 28.539 64.115 63.745v224.511c0 34.939-28.705 63.745-64.115 63.745h-671.77c-35.643 0-64.115-28.539-64.115-63.745v-224.511c0-34.939 28.705-63.745 64.115-63.745zM320 544v192h32v-192h64v-32h-160v32h64zM480 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tiff" - ], - "grid": 32 - }, - { - "id": 944, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ots" - ], - "grid": 32 - }, - { - "id": 945, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ots" - ], - "grid": 32 - }, - { - "id": 946, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 608v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-php" - ], - "grid": 32 - }, - { - "id": 947, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 608h-96v-96h-32v224h32v-96h96v96h32v-224h-32v96zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-php" - ], - "grid": 32 - }, - { - "id": 948, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h159.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-159.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-351.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h351.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM287.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM672 640v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-py" - ], - "grid": 32 - }, - { - "id": 949, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-383.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h383.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM287.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM672 640l64-96v-32h-32v32l-48 72-48-72v-32h-32v32l64 96v96h32v-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-py" - ], - "grid": 32 - }, - { - "id": 950, - "paths": [ - "M672 416h223.781c53.467 0 96.219 42.963 96.219 95.961v224.078c0 53.009-43.079 95.961-96.219 95.961h-223.781v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM640 832h-287.781c-53.467 0-96.219-42.963-96.219-95.961v-224.078c0-53.009 43.079-95.961 96.219-95.961h287.781v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM480 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM351.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM704 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-c" - ], - "grid": 32 - }, - { - "id": 951, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-319.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h319.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM351.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM704 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-c" - ], - "grid": 32 - }, - { - "id": 952, - "paths": [ - "M661.621 732.248l28.321 28.321 22.627-22.627-24.102-24.102c9.681-11.209 15.533-25.86 15.533-42.029v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c7.645 0 14.978-1.321 21.777-3.752zM633.373 704h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h223.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-223.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM351.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM416.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM896 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-sql" - ], - "grid": 32 - }, - { - "id": 953, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-319.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h319.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM351.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM661.621 732.248c-6.799 2.431-14.132 3.752-21.777 3.752h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 16.169-5.853 30.82-15.533 42.029l24.102 24.102-22.627 22.627-28.321-28.321zM633.373 704h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM416.156 512h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64zM896 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-sql" - ], - "grid": 32 - }, - { - "id": 954, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h223.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-223.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM351.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM505.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM480 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 632v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM672 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM672 640v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rb" - ], - "grid": 32 - }, - { - "id": 955, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-319.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h319.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM351.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM505.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM480 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 632v-120h95.844c35.551 0 64.156 28.654 64.156 64 0 19.21-8.367 36.327-21.641 48.015 13.274 11.727 21.641 28.878 21.641 47.985 0 35.593-28.724 64-64.156 64h-95.844v-104zM672 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM672 640v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rb" - ], - "grid": 32 - }, - { - "id": 956, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-cpp" - ], - "grid": 32 - }, - { - "id": 957, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 672l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-cpp" - ], - "grid": 32 - }, - { - "id": 958, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM896 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM831.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tga" - ], - "grid": 32 - }, - { - "id": 959, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM896 640v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM831.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tga" - ], - "grid": 32 - }, - { - "id": 960, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM640 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dxf" - ], - "grid": 32 - }, - { - "id": 961, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM640 624l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dxf" - ], - "grid": 32 - }, - { - "id": 962, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM928 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-doc" - ], - "grid": 32 - }, - { - "id": 963, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM928 672l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-doc" - ], - "grid": 32 - }, - { - "id": 964, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM576 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-odt" - ], - "grid": 32 - }, - { - "id": 965, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM576 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-odt" - ], - "grid": 32 - }, - { - "id": 966, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM736 704v32h-160v-224h32v192h128zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xls" - ], - "grid": 32 - }, - { - "id": 967, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM448 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM736 704v32h-160v-224h32v192h128zM832.156 512h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xls" - ], - "grid": 32 - }, - { - "id": 968, - "paths": [ - "M608 416h320.183c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-320.183v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-384.183c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961h384.183v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM192 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM224 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM736 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM832 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-docx" - ], - "grid": 32 - }, - { - "id": 969, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-415.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h415.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM192.235 448h735.531c35.488 0 64.235 28.539 64.235 63.745v224.511c0 34.939-28.759 63.745-64.235 63.745h-735.531c-35.488 0-64.235-28.539-64.235-63.745v-224.511c0-34.939 28.759-63.745 64.235-63.745zM192 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM224 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM736 672l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM832 624l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-docx" - ], - "grid": 32 - }, - { - "id": 970, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ppt" - ], - "grid": 32 - }, - { - "id": 971, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ppt" - ], - "grid": 32 - }, - { - "id": 972, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-asp" - ], - "grid": 32 - }, - { - "id": 973, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM512 640v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-asp" - ], - "grid": 32 - }, - { - "id": 974, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM704 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006zM800.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ics" - ], - "grid": 32 - }, - { - "id": 975, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM704 672l-32 0.006c0 17.795-14.312 31.994-31.967 31.994h-32.067c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 32h32c-0.102-35.364-28.668-64-64.156-64h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.37 0 64.055-28.27 64.156-64zM800.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ics" - ], - "grid": 32 - }, - { - "id": 976, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dat" - ], - "grid": 32 - }, - { - "id": 977, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM704 640v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dat" - ], - "grid": 32 - }, - { - "id": 978, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM928 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xml" - ], - "grid": 32 - }, - { - "id": 979, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM448 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM656 608l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96zM928 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xml" - ], - "grid": 32 - }, - { - "id": 980, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM480 640v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM928 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-yml" - ], - "grid": 32 - }, - { - "id": 981, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM480 640v96h-32v-96l-64-96v-32h32v32l48 72 48-72v-32h32v32l-64 96zM656 608l48-96h32v224h-32v-160l-32 64h-32l-32-64v160h-32v-224h32l48 96zM928 704v32h-160v-224h32v192h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-yml" - ], - "grid": 32 - }, - { - "id": 982, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM704 608v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-h" - ], - "grid": 32 - }, - { - "id": 983, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM704 608v-96h32v224h-32v-96h-96v96h-32v-224h32v96h96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-h" - ], - "grid": 32 - }, - { - "id": 984, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM416 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM640 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM800 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-exe" - ], - "grid": 32 - }, - { - "id": 985, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96zM640 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM800 640v64h128v32h-160v-224h160v32h-128v64h96v32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-exe" - ], - "grid": 32 - }, - { - "id": 986, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM479.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM688 680l48-168h32l-64 224h-32l-64-224h32l48 168zM832 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-avi" - ], - "grid": 32 - }, - { - "id": 987, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM544 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM479.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM688 680l48-168h32l-64 224h-32l-64-224h32l48 168zM832 544h-32v-32h96v32h-32v160h32v32h-96v-32h32v-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-avi" - ], - "grid": 32 - }, - { - "id": 988, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-odp" - ], - "grid": 32 - }, - { - "id": 989, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-odp" - ], - "grid": 32 - }, - { - "id": 990, - "paths": [ - "M608 416h320.183c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-320.183v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-384.183c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961h384.183v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM192 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM224 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dotx" - ], - "grid": 32 - }, - { - "id": 991, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-415.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h415.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM192.235 448h735.531c35.488 0 64.235 28.539 64.235 63.745v224.511c0 34.939-28.759 63.745-64.235 63.745h-735.531c-35.488 0-64.235-28.539-64.235-63.745v-224.511c0-34.939 28.759-63.745 64.235-63.745zM192 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM224 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832 624l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dotx" - ], - "grid": 32 - }, - { - "id": 992, - "paths": [ - "M608 416h320.183c52.919 0 95.817 42.963 95.817 95.961v224.078c0 53.009-42.899 95.961-95.817 95.961h-320.183v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-384.183c-52.919 0-95.817-42.963-95.817-95.961v-224.078c0-53.009 42.899-95.961 95.817-95.961h384.183v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM256 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM544 704v32h-160v-224h32v192h128zM640.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM832 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xlsx" - ], - "grid": 32 - }, - { - "id": 993, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-415.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h415.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM192.235 448c-35.476 0-64.235 28.806-64.235 63.745v224.511c0 35.205 28.747 63.745 64.235 63.745h735.531c35.476 0 64.235-28.806 64.235-63.745v-224.511c0-35.205-28.747-63.745-64.235-63.745h-735.531zM256 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM544 704v32h-160v-224h32v192h128zM640.156 512h31.688c35.551 0 64.156 28.654 64.156 64h-32c0-17.498-14.312-32-31.967-32h-32.067c-17.801 0-31.967 14.327-31.967 32 0 17.796 14.461 32 32.3 32h31.7c35.593 0 64 28.654 64 64 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.669-64.156-64.035v-0.184h32v0.362c0 17.256 14.312 31.857 31.967 31.857h32.067c17.801 0 31.967-14.327 31.967-32 0-17.796-14.461-32-32.3-32h-31.7c-35.593 0-64-28.654-64-64 0-35.593 28.724-64 64.156-64zM832 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-xlsx" - ], - "grid": 32 - }, - { - "id": 994, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM576 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ods" - ], - "grid": 32 - }, - { - "id": 995, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM576 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM608 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ods" - ], - "grid": 32 - }, - { - "id": 996, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM384 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pps" - ], - "grid": 32 - }, - { - "id": 997, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM384 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM832.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-pps" - ], - "grid": 32 - }, - { - "id": 998, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dot" - ], - "grid": 32 - }, - { - "id": 999, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM640.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM639.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dot" - ], - "grid": 32 - }, - { - "id": 1000, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM640 624l-64-112h32l48 84 48-84h32l-64 112 64 112h-32l-48-84-48 84h-32l64-112zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-txt" - ], - "grid": 32 - }, - { - "id": 1001, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM640 624l-64 112h32l48-84 48 84h32l-64-112 64-112h-32l-48 84-48-84h-32l64 112zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-txt" - ], - "grid": 32 - }, - { - "id": 1002, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM441.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 544v192h32v-192h64v-32h-160v32h64zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rtf" - ], - "grid": 32 - }, - { - "id": 1003, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM441.6 640l64 96h38.4l-64-96c35.361-0.083 64-28.459 64-64 0-35.346-28.605-64-64.156-64h-95.844v224h32v-96h25.6zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM640 544v192h32v-192h64v-32h-160v32h64zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rtf" - ], - "grid": 32 - }, - { - "id": 1004, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM672 640h-57.6l57.6-80v80zM672 672v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-m4v" - ], - "grid": 32 - }, - { - "id": 1005, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM672 640v-80l-57.6 80h57.6zM672 672v64h32v-64h32v-32h-32v-128h-32l-96 128v32h96zM848 680l-48-168h-32l64 224h32l64-224h-32l-48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-m4v" - ], - "grid": 32 - }, - { - "id": 1006, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM416 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM736 704v32h-160v-224h32v192h128zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-flv" - ], - "grid": 32 - }, - { - "id": 1007, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM416 608h96v32h-96v96h-32v-224h160v32h-128v64zM736 704v32h-160v-224h32v192h128zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-flv" - ], - "grid": 32 - }, - { - "id": 1008, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM576 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mpg" - ], - "grid": 32 - }, - { - "id": 1009, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM464 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM576 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM608 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mpg" - ], - "grid": 32 - }, - { - "id": 1010, - "paths": [ - "M597.621 732.248l28.321 28.321 22.627-22.627-24.102-24.102c9.681-11.209 15.533-25.86 15.533-42.029v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c7.645 0 14.978-1.321 21.777-3.752zM569.373 704h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM736 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-qt" - ], - "grid": 32 - }, - { - "id": 1011, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM597.621 732.248c-6.799 2.431-14.132 3.752-21.777 3.752h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 16.169-5.853 30.82-15.533 42.029l24.102 24.102-22.627 22.627-28.321-28.321zM569.373 704h-25.406c-17.801 0-31.967-14.324-31.967-31.994v-96.012c0-17.795 14.312-31.994 31.967-31.994h32.067c17.801 0 31.967 14.324 31.967 31.994v96.012c0 7.183-2.332 13.779-6.274 19.093l-43.668-43.668-22.627 22.627 33.941 33.941zM736 544h-64v-32h160v32h-64v192h-32v-192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-qt" - ], - "grid": 32 - }, - { - "id": 1012, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM496 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM736 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM768 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mid" - ], - "grid": 32 - }, - { - "id": 1013, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM496 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM736 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM768 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-mid" - ], - "grid": 32 - }, - { - "id": 1014, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64 0 19.214-8.37 36.334-21.648 48.021 13.292 11.727 21.648 28.875 21.648 47.979 0 35.593-28.724 64-64.156 64h-31.688c-35.551 0-64.156-28.654-64.156-64h32c0 17.673 14.165 32 31.967 32h32.067c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.033v-32h32.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.204-31.967 32h-32zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM768 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-3gp" - ], - "grid": 32 - }, - { - "id": 1015, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 576h32c0-17.796 14.312-32 31.967-32h32.067c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.033v32h32.033c17.801 0 31.967 14.327 31.967 32 0 17.796-14.312 32-31.967 32h-32.067c-17.801 0-31.967-14.327-31.967-32h-32c0 35.346 28.605 64 64.156 64h31.688c35.432 0 64.156-28.407 64.156-64 0-19.104-8.356-36.252-21.648-47.979 13.278-11.688 21.648-28.807 21.648-48.021 0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM768 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-3gp" - ], - "grid": 32 - }, - { - "id": 1016, - "paths": [ - "M608 416h320.236c52.918 0 95.764 42.963 95.764 95.961v224.078c0 53.009-42.875 95.961-95.764 95.961h-320.236v64.295c0 34.963-28.617 63.705-63.918 63.705h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.693-64.235 64.088-64.235h351.912l192 224v96zM576 832h-320.236c-52.918 0-95.764-42.963-95.764-95.961v-224.078c0-53.009 42.875-95.961 95.764-95.961h320.236v-64h-128.067c-35.309 0-63.933-28.37-63.933-64.189v-159.811h-320.142c-17.595 0-31.858 14.568-31.858 31.855v736.291c0 17.593 14.551 31.855 31.999 31.855h480.003c17.672 0 31.999-14.238 31.999-31.789v-64.211zM416 144v143.719c0 17.828 14.421 32.281 31.896 32.281h118.503l-150.398-176zM256.115 448c-35.41 0-64.115 28.806-64.115 63.745v224.511c0 35.205 28.472 63.745 64.115 63.745h671.77c35.41 0 64.115-28.806 64.115-63.745v-224.511c0-35.205-28.472-63.745-64.115-63.745h-671.77zM384 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM319.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM480 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-aiff" - ], - "grid": 32 - }, - { - "id": 1017, - "paths": [ - "M608 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-351.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h351.781zM416 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM256.115 448h671.77c35.643 0 64.115 28.539 64.115 63.745v224.511c0 34.939-28.705 63.745-64.115 63.745h-671.77c-35.643 0-64.115-28.539-64.115-63.745v-224.511c0-34.939 28.705-63.745 64.115-63.745zM384 640v96h32v-160c0-35.346-28.605-64-64.156-64h-31.688c-35.432 0-64.156 28.407-64.156 64v160h32v-96h96zM319.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM480 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608 608v-64h128v-32h-160v224h32v-96h96v-32h-96zM800 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-aiff" - ], - "grid": 32 - }, - { - "id": 1018, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM928 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-aac" - ], - "grid": 32 - }, - { - "id": 1019, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM512 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM447.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM928 672c-0.101 35.73-28.786 64-64.156 64h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189h31.688c35.488 0 64.054 28.636 64.156 64h-32c0-17.676-14.165-32-31.967-32h-32.067c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994l32-0.006z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-aac" - ], - "grid": 32 - }, - { - "id": 1020, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM528 736h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-wav" - ], - "grid": 32 - }, - { - "id": 1021, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM528 736h-16l-48-96-48 96h-32v-224h32v160l32-64h32l32 64v-160h32v224h-16zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM848 680l48-168h32l-64 224h-32l-64-224h32l48 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-wav" - ], - "grid": 32 - }, - { - "id": 1022, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 704l128-160v-32h-160v32h128l-128 160v32h160v-32h-128zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM736 576v-64h95.844c35.551 0 64.156 28.654 64.156 64 0 35.593-28.724 64-64.156 64h-63.844v96h-32v-160zM768 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-zip" - ], - "grid": 32 - }, - { - "id": 1023, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 704l128-160v-32h-160v32h128l-128 160v32h160v-32h-128zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM736 576v160h32v-96h63.844c35.432 0 64.156-28.407 64.156-64 0-35.346-28.605-64-64.156-64h-95.844v64zM768 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-zip" - ], - "grid": 32 - }, - { - "id": 1024, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ott" - ], - "grid": 32 - }, - { - "id": 1025, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM447.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067zM640 544v192h32v-192h64v-32h-160v32h64zM832 544v192h32v-192h64v-32h-160v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-ott" - ], - "grid": 32 - }, - { - "id": 1026, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM800 704l128-160v-32h-160v32h128l-128 160v32h160v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tgz" - ], - "grid": 32 - }, - { - "id": 1027, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v192h32v-192h64v-32h-160v32h64zM704 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM800 704l128-160v-32h-160v32h128l-128 160v32h160v-32h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-tgz" - ], - "grid": 32 - }, - { - "id": 1028, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512h95.844c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-95.844v-224zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dmg" - ], - "grid": 32 - }, - { - "id": 1029, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM384 512v224h95.844c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-95.844zM416 544v160h64.033c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-64.033zM656 608l-48-96h-32v224h32v-160l32 64h32l32-64v160h32v-224h-32l-48 96zM896 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-dmg" - ], - "grid": 32 - }, - { - "id": 1030, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM800.156 512h31.688c35.551 0 64.156 28.739 64.156 64.189v95.621c0 35.82-28.724 64.189-64.156 64.189h-31.688c-35.551 0-64.156-28.739-64.156-64.189v-95.621c0-35.82 28.724-64.189 64.156-64.189zM799.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-iso" - ], - "grid": 32 - }, - { - "id": 1031, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM448 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM608.156 512c-35.432 0-64.156 28.407-64.156 64 0 35.346 28.407 64 64 64h31.7c17.839 0 32.3 14.204 32.3 32 0 17.673-14.165 32-31.967 32h-32.067c-17.655 0-31.967-14.601-31.967-31.857v-0.362h-32v0.184c0 35.365 28.605 64.035 64.156 64.035h31.688c35.432 0 64.156-28.407 64.156-64 0-35.346-28.407-64-64-64h-31.7c-17.839 0-32.3-14.204-32.3-32 0-17.673 14.165-32 31.967-32h32.067c17.655 0 31.967 14.502 31.967 32h32c0-35.346-28.605-64-64.156-64h-31.688zM800.156 512c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h31.688c35.432 0 64.156-28.37 64.156-64.189v-95.621c0-35.451-28.605-64.189-64.156-64.189h-31.688zM799.967 544c-17.655 0-31.967 14.199-31.967 31.994v96.012c0 17.67 14.165 31.994 31.967 31.994h32.067c17.655 0 31.967-14.199 31.967-31.994v-96.012c0-17.67-14.165-31.994-31.967-31.994h-32.067z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-iso" - ], - "grid": 32 - }, - { - "id": 1032, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM441.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM825.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rar" - ], - "grid": 32 - }, - { - "id": 1033, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448c-35.25 0-63.826 28.806-63.826 63.745v224.511c0 35.205 28.875 63.745 63.826 63.745h544.348c35.25 0 63.826-28.806 63.826-63.745v-224.511c0-35.205-28.875-63.745-63.826-63.745h-544.348zM441.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM416 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033zM704 640h-96v96h-32v-160c0-35.593 28.724-64 64.156-64h31.688c35.551 0 64.156 28.654 64.156 64v160h-32v-96zM639.967 544c-17.655 0-31.967 14.204-31.967 32v32h96v-32c0-17.673-14.165-32-31.967-32h-32.067zM825.6 640h-25.6v96h-32v-224h95.844c35.551 0 64.156 28.654 64.156 64 0 35.54-28.639 63.916-64 64l64 96h-38.4l-64-96zM800 544v64h64.033c17.655 0 31.967-14.204 31.967-32 0-17.673-14.165-32-31.967-32h-64.033z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-rar" - ], - "grid": 32 - }, - { - "id": 1034, - "paths": [ - "M672 416v-96l-192-224h-351.912c-35.395 0-64.088 28.747-64.088 64.235v735.531c0 35.476 28.51 64.235 63.918 64.235h480.165c35.301 0 63.918-28.743 63.918-63.705v-64.295h255.781c53.14 0 96.219-42.952 96.219-95.961v-224.078c0-52.998-42.752-95.961-96.219-95.961h-255.781zM640 832v64.211c0 17.55-14.326 31.789-31.999 31.789h-480.003c-17.448 0-31.999-14.262-31.999-31.855v-736.291c0-17.286 14.264-31.855 31.858-31.855h320.142v159.811c0 35.82 28.624 64.189 63.933 64.189h128.067v64h-255.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h255.781zM480 144l150.398 176h-118.503c-17.475 0-31.896-14.453-31.896-32.281v-143.719zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM768 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-gif" - ], - "grid": 32 - }, - { - "id": 1035, - "paths": [ - "M672 832v64.082c0 35.408-28.617 63.918-63.918 63.918h-480.165c-35.408 0-63.918-28.759-63.918-64.235v-735.531c0-35.488 28.776-64.235 64.273-64.235h319.727v192.061c0 35.565 28.739 63.939 64.189 63.939h159.811v64h-287.781c-53.14 0-96.219 42.952-96.219 95.961v224.078c0 52.998 42.752 95.961 96.219 95.961h287.781zM480 96v191.906c0 17.725 14.431 32.094 31.705 32.094h160.295l-192-224zM383.826 448h544.348c34.951 0 63.826 28.539 63.826 63.745v224.511c0 34.939-28.576 63.745-63.826 63.745h-544.348c-34.951 0-63.826-28.539-63.826-63.745v-224.511c0-34.939 28.576-63.745 63.826-63.745zM544 640v64h-64.006c-17.795 0-31.994-14.324-31.994-31.994v-96.012c0-17.795 14.324-31.994 31.994-31.994h96.006v-32h-95.844c-35.432 0-64.156 28.37-64.156 64.189v95.621c0 35.451 28.605 64.189 64.156 64.189h95.844v-128h-96v32h64zM640 544v160h-32v32h96v-32h-32v-160h32v-32h-96v32h32zM768 608v-64h128v-32h-160v224h32v-96h96v-32h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "document-file-gif" - ], - "grid": 32 - } - ], - "colorThemes": [], - "colorThemeIdx": 0 - }, - { - "selection": [ - { - "ligatures": "error", - "id": 0, - "order": 0 - }, - { - "ligatures": "error_outline", - "id": 1, - "order": 0 - }, - { - "ligatures": "warning, report_problem", - "id": 2, - "order": 0 - }, - { - "ligatures": "add_alert", - "id": 3, - "order": 0 - }, - { - "ligatures": "notification_important", - "id": 4, - "order": 0 - }, - { - "ligatures": "album", - "id": 5, - "order": 0 - }, - { - "ligatures": "av_timer", - "id": 6, - "order": 0 - }, - { - "ligatures": "closed_caption", - "id": 7, - "order": 0 - }, - { - "ligatures": "equalizer", - "id": 8, - "order": 0 - }, - { - "ligatures": "explicit", - "id": 9, - "order": 0 - }, - { - "ligatures": "fast_forward", - "id": 10, - "order": 0 - }, - { - "ligatures": "fast_rewind", - "id": 11, - "order": 0 - }, - { - "ligatures": "games, gamepad", - "id": 12, - "order": 0 - }, - { - "ligatures": "hearing", - "id": 13, - "order": 0 - }, - { - "ligatures": "high_quality", - "id": 14, - "order": 0 - }, - { - "ligatures": "loop, sync", - "id": 15, - "order": 0 - }, - { - "ligatures": "mic", - "id": 16, - "order": 0 - }, - { - "ligatures": "mic_none", - "id": 17, - "order": 0 - }, - { - "ligatures": "mic_off", - "id": 18, - "order": 0 - }, - { - "ligatures": "movie, movie_creation", - "id": 19, - "order": 0 - }, - { - "ligatures": "library_add, queue, add_to_photos", - "id": 20, - "order": 0 - }, - { - "ligatures": "library_books", - "id": 21, - "order": 0 - }, - { - "ligatures": "library_music", - "id": 22, - "order": 0 - }, - { - "ligatures": "new_releases", - "id": 23, - "order": 0 - }, - { - "ligatures": "not_interested, do_not_disturb", - "id": 24, - "order": 0 - }, - { - "ligatures": "pause", - "id": 25, - "order": 0 - }, - { - "ligatures": "pause_circle_filled", - "id": 26, - "order": 0 - }, - { - "ligatures": "pause_circle_outline", - "id": 27, - "order": 0 - }, - { - "ligatures": "play_arrow", - "id": 28, - "order": 0 - }, - { - "ligatures": "play_circle_filled", - "id": 29, - "order": 0 - }, - { - "ligatures": "play_circle_outline", - "id": 30, - "order": 0 - }, - { - "ligatures": "playlist_add", - "id": 31, - "order": 0 - }, - { - "ligatures": "queue_music", - "id": 32, - "order": 0 - }, - { - "ligatures": "radio", - "id": 33, - "order": 0 - }, - { - "ligatures": "recent_actors", - "id": 34, - "order": 0 - }, - { - "ligatures": "repeat", - "id": 35, - "order": 0 - }, - { - "ligatures": "repeat_one", - "id": 36, - "order": 0 - }, - { - "ligatures": "replay", - "id": 37, - "order": 0 - }, - { - "ligatures": "shuffle", - "id": 38, - "order": 0 - }, - { - "ligatures": "skip_next", - "id": 39, - "order": 0 - }, - { - "ligatures": "skip_previous", - "id": 40, - "order": 0 - }, - { - "ligatures": "snooze", - "id": 41, - "order": 0 - }, - { - "ligatures": "stop", - "id": 42, - "order": 0 - }, - { - "ligatures": "subtitles", - "id": 43, - "order": 0 - }, - { - "ligatures": "surround_sound", - "id": 44, - "order": 0 - }, - { - "ligatures": "video_library", - "id": 45, - "order": 0 - }, - { - "ligatures": "videocam", - "id": 46, - "order": 0 - }, - { - "ligatures": "videocam_off", - "id": 47, - "order": 0 - }, - { - "ligatures": "volume_down", - "id": 48, - "order": 0 - }, - { - "ligatures": "volume_mute", - "id": 49, - "order": 0 - }, - { - "ligatures": "volume_off", - "id": 50, - "order": 0 - }, - { - "ligatures": "volume_up", - "id": 51, - "order": 0 - }, - { - "ligatures": "web", - "id": 52, - "order": 0 - }, - { - "ligatures": "hd", - "id": 53, - "order": 0 - }, - { - "ligatures": "sort_by_alpha", - "id": 54, - "order": 0 - }, - { - "ligatures": "airplay", - "id": 55, - "order": 0 - }, - { - "ligatures": "forward_10", - "id": 56, - "order": 0 - }, - { - "ligatures": "forward_30", - "id": 57, - "order": 0 - }, - { - "ligatures": "forward_5", - "id": 58, - "order": 0 - }, - { - "ligatures": "replay_10", - "id": 59, - "order": 0 - }, - { - "ligatures": "replay_30", - "id": 60, - "order": 0 - }, - { - "ligatures": "replay_5", - "id": 61, - "order": 0 - }, - { - "ligatures": "add_to_queue", - "id": 62, - "order": 0 - }, - { - "ligatures": "fiber_dvr", - "id": 63, - "order": 0 - }, - { - "ligatures": "fiber_new", - "id": 64, - "order": 0 - }, - { - "ligatures": "playlist_play", - "id": 65, - "order": 0 - }, - { - "ligatures": "art_track", - "id": 66, - "order": 0 - }, - { - "ligatures": "fiber_manual_record", - "id": 67, - "order": 0, - "prevSize": 24, - "code": 59648, - "name": "ball1", - "tempChar": "" - }, - { - "ligatures": "fiber_smart_record", - "id": 68, - "order": 0 - }, - { - "ligatures": "music_video", - "id": 69, - "order": 0 - }, - { - "ligatures": "subscriptions", - "id": 70, - "order": 0 - }, - { - "ligatures": "playlist_add_check", - "id": 71, - "order": 0 - }, - { - "ligatures": "queue_play_next", - "id": 72, - "order": 0 - }, - { - "ligatures": "remove_from_queue", - "id": 73, - "order": 0 - }, - { - "ligatures": "slow_motion_video", - "id": 74, - "order": 0 - }, - { - "ligatures": "web_asset", - "id": 75, - "order": 0 - }, - { - "ligatures": "fiber_pin", - "id": 76, - "order": 0 - }, - { - "ligatures": "branding_watermark", - "id": 77, - "order": 0 - }, - { - "ligatures": "call_to_action", - "id": 78, - "order": 0 - }, - { - "ligatures": "featured_play_list", - "id": 79, - "order": 0 - }, - { - "ligatures": "featured_video", - "id": 80, - "order": 0 - }, - { - "ligatures": "note", - "id": 81, - "order": 0 - }, - { - "ligatures": "video_call", - "id": 82, - "order": 0 - }, - { - "ligatures": "video_label", - "id": 83, - "order": 0 - }, - { - "ligatures": "4k", - "id": 84, - "order": 0 - }, - { - "ligatures": "missed_video_call", - "id": 85, - "order": 0 - }, - { - "ligatures": "control_camera", - "id": 86, - "order": 0 - }, - { - "ligatures": "business, domain", - "id": 87, - "order": 0 - }, - { - "ligatures": "call", - "id": 88, - "order": 0, - "prevSize": 24, - "code": 59650, - "name": "call", - "tempChar": "" - }, - { - "ligatures": "call_end", - "id": 89, - "order": 0, - "prevSize": 24, - "code": 59651, - "name": "call_end", - "tempChar": "" - }, - { - "ligatures": "call_made", - "id": 90, - "order": 0 - }, - { - "ligatures": "call_merge, merge_type", - "id": 91, - "order": 0 - }, - { - "ligatures": "call_missed", - "id": 92, - "order": 0 - }, - { - "ligatures": "call_received", - "id": 93, - "order": 0 - }, - { - "ligatures": "call_split", - "id": 94, - "order": 0 - }, - { - "ligatures": "chat", - "id": 95, - "order": 0 - }, - { - "ligatures": "clear_all", - "id": 96, - "order": 0 - }, - { - "ligatures": "comment", - "id": 97, - "order": 0 - }, - { - "ligatures": "contacts", - "id": 98, - "order": 0 - }, - { - "ligatures": "dialer_sip", - "id": 99, - "order": 0 - }, - { - "ligatures": "dialpad", - "id": 100, - "order": 0 - }, - { - "ligatures": "email, mail, markunread, local_post_office", - "id": 101, - "order": 0 - }, - { - "ligatures": "forum, question_answer", - "id": 102, - "order": 0 - }, - { - "ligatures": "import_export", - "id": 103, - "order": 0 - }, - { - "ligatures": "invert_colors_off", - "id": 104, - "order": 0 - }, - { - "ligatures": "live_help", - "id": 105, - "order": 0 - }, - { - "ligatures": "location_off", - "id": 106, - "order": 0 - }, - { - "ligatures": "location_on, place, room", - "id": 107, - "order": 0 - }, - { - "ligatures": "message", - "id": 108, - "order": 0 - }, - { - "ligatures": "chat_bubble", - "id": 109, - "order": 0 - }, - { - "ligatures": "chat_bubble_outline", - "id": 110, - "order": 0 - }, - { - "ligatures": "no_sim, signal_cellular_no_sim", - "id": 111, - "order": 0 - }, - { - "ligatures": "phone, local_phone", - "id": 112, - "order": 0, - "prevSize": 24, - "code": 59657, - "name": "phone", - "tempChar": "" - }, - { - "ligatures": "portable_wifi_off", - "id": 113, - "order": 0 - }, - { - "ligatures": "contact_phone", - "id": 114, - "order": 0 - }, - { - "ligatures": "contact_mail", - "id": 115, - "order": 0 - }, - { - "ligatures": "ring_volume", - "id": 116, - "order": 0, - "prevSize": 24, - "code": 59651, - "name": "ring_volume", - "tempChar": "" - }, - { - "ligatures": "speaker_phone", - "id": 117, - "order": 0 - }, - { - "ligatures": "stay_current_landscape, stay_primary_landscape", - "id": 118, - "order": 0 - }, - { - "ligatures": "stay_current_portrait, stay_primary_portrait, smartphone", - "id": 119, - "order": 0 - }, - { - "ligatures": "swap_calls", - "id": 120, - "order": 0 - }, - { - "ligatures": "textsms, sms", - "id": 121, - "order": 0 - }, - { - "ligatures": "voicemail", - "id": 122, - "order": 0 - }, - { - "ligatures": "vpn_key", - "id": 123, - "order": 0 - }, - { - "ligatures": "phonelink_erase", - "id": 124, - "order": 0 - }, - { - "ligatures": "phonelink_lock", - "id": 125, - "order": 0 - }, - { - "ligatures": "phonelink_ring", - "id": 126, - "order": 0 - }, - { - "ligatures": "phonelink_setup", - "id": 127, - "order": 0 - }, - { - "ligatures": "present_to_all", - "id": 128, - "order": 0 - }, - { - "ligatures": "import_contacts", - "id": 129, - "order": 0 - }, - { - "ligatures": "mail_outline", - "id": 130, - "order": 0 - }, - { - "ligatures": "screen_share", - "id": 131, - "order": 0 - }, - { - "ligatures": "stop_screen_share", - "id": 132, - "order": 0 - }, - { - "ligatures": "call_missed_outgoing", - "id": 133, - "order": 0 - }, - { - "ligatures": "rss_feed", - "id": 134, - "order": 0 - }, - { - "ligatures": "alternate_email", - "id": 135, - "order": 0 - }, - { - "ligatures": "mobile_screen_share", - "id": 136, - "order": 0 - }, - { - "ligatures": "add_call", - "id": 137, - "order": 0 - }, - { - "ligatures": "cancel_presentation", - "id": 138, - "order": 0 - }, - { - "ligatures": "pause_presentation", - "id": 139, - "order": 0 - }, - { - "ligatures": "unsubscribe", - "id": 140, - "order": 0 - }, - { - "ligatures": "cell_wifi", - "id": 141, - "order": 0 - }, - { - "ligatures": "sentiment_satisfied_alt", - "id": 142, - "order": 0 - }, - { - "ligatures": "list_alt", - "id": 143, - "order": 0 - }, - { - "ligatures": "domain_disabled", - "id": 144, - "order": 0 - }, - { - "ligatures": "lightbulb", - "id": 145, - "order": 0 - }, - { - "ligatures": "add", - "id": 146, - "order": 0 - }, - { - "ligatures": "add_box", - "id": 147, - "order": 0 - }, - { - "ligatures": "add_circle", - "id": 148, - "order": 0 - }, - { - "ligatures": "add_circle_outline, control_point", - "id": 149, - "order": 0 - }, - { - "ligatures": "archive", - "id": 150, - "order": 0 - }, - { - "ligatures": "backspace", - "id": 151, - "order": 0 - }, - { - "ligatures": "block", - "id": 152, - "order": 0 - }, - { - "ligatures": "clear, close", - "id": 153, - "order": 0 - }, - { - "ligatures": "content_copy", - "id": 154, - "order": 0 - }, - { - "ligatures": "content_cut", - "id": 155, - "order": 0 - }, - { - "ligatures": "content_paste", - "id": 156, - "order": 0 - }, - { - "ligatures": "create, mode_edit, edit", - "id": 157, - "order": 0 - }, - { - "ligatures": "drafts", - "id": 158, - "order": 0 - }, - { - "ligatures": "filter_list", - "id": 159, - "order": 0 - }, - { - "ligatures": "flag, assistant_photo", - "id": 160, - "order": 0 - }, - { - "ligatures": "forward", - "id": 161, - "order": 0 - }, - { - "ligatures": "gesture", - "id": 162, - "order": 0 - }, - { - "ligatures": "inbox", - "id": 163, - "order": 0 - }, - { - "ligatures": "link, insert_link", - "id": 164, - "order": 0 - }, - { - "ligatures": "redo", - "id": 165, - "order": 0 - }, - { - "ligatures": "remove", - "id": 166, - "order": 0 - }, - { - "ligatures": "remove_circle, do_not_disturb_on", - "id": 167, - "order": 0 - }, - { - "ligatures": "remove_circle_outline", - "id": 168, - "order": 0 - }, - { - "ligatures": "reply", - "id": 169, - "order": 0 - }, - { - "ligatures": "reply_all", - "id": 170, - "order": 0 - }, - { - "ligatures": "report", - "id": 171, - "order": 0 - }, - { - "ligatures": "save", - "id": 172, - "order": 0 - }, - { - "ligatures": "select_all", - "id": 173, - "order": 0 - }, - { - "ligatures": "send", - "id": 174, - "order": 0 - }, - { - "ligatures": "sort", - "id": 175, - "order": 0 - }, - { - "ligatures": "text_format", - "id": 176, - "order": 0 - }, - { - "ligatures": "undo", - "id": 177, - "order": 0 - }, - { - "ligatures": "font_download", - "id": 178, - "order": 0 - }, - { - "ligatures": "move_to_inbox", - "id": 179, - "order": 0 - }, - { - "ligatures": "unarchive", - "id": 180, - "order": 0 - }, - { - "ligatures": "next_week", - "id": 181, - "order": 0 - }, - { - "ligatures": "weekend", - "id": 182, - "order": 0 - }, - { - "ligatures": "delete_sweep", - "id": 183, - "order": 0 - }, - { - "ligatures": "low_priority", - "id": 184, - "order": 0 - }, - { - "ligatures": "outlined_flag", - "id": 185, - "order": 0 - }, - { - "ligatures": "link_off", - "id": 186, - "order": 0 - }, - { - "ligatures": "report_off", - "id": 187, - "order": 0 - }, - { - "ligatures": "save_alt", - "id": 188, - "order": 0 - }, - { - "ligatures": "ballot", - "id": 189, - "order": 0 - }, - { - "ligatures": "file_copy", - "id": 190, - "order": 0 - }, - { - "ligatures": "how_to_reg", - "id": 191, - "order": 0 - }, - { - "ligatures": "how_to_vote", - "id": 192, - "order": 0 - }, - { - "ligatures": "waves", - "id": 193, - "order": 0 - }, - { - "ligatures": "where_to_vote", - "id": 194, - "order": 0 - }, - { - "ligatures": "add_link", - "id": 195, - "order": 0 - }, - { - "ligatures": "inventory", - "id": 196, - "order": 0 - }, - { - "ligatures": "access_alarm, alarm", - "id": 197, - "order": 0 - }, - { - "ligatures": "access_alarms", - "id": 198, - "order": 0 - }, - { - "ligatures": "access_time, query_builder, schedule", - "id": 199, - "order": 0 - }, - { - "ligatures": "add_alarm, alarm_add", - "id": 200, - "order": 0 - }, - { - "ligatures": "airplanemode_off", - "id": 201, - "order": 0 - }, - { - "ligatures": "airplanemode_on, flight, local_airport", - "id": 202, - "order": 0 - }, - { - "ligatures": "battery_alert", - "id": 203, - "order": 0 - }, - { - "ligatures": "battery_charging_full", - "id": 204, - "order": 0 - }, - { - "ligatures": "battery_full, battery_std", - "id": 205, - "order": 0 - }, - { - "ligatures": "battery_unknown", - "id": 206, - "order": 0 - }, - { - "ligatures": "bluetooth", - "id": 207, - "order": 0 - }, - { - "ligatures": "bluetooth_connected", - "id": 208, - "order": 0 - }, - { - "ligatures": "bluetooth_disabled", - "id": 209, - "order": 0 - }, - { - "ligatures": "bluetooth_searching, bluetooth_audio", - "id": 210, - "order": 0 - }, - { - "ligatures": "brightness_auto", - "id": 211, - "order": 0 - }, - { - "ligatures": "brightness_high, brightness_7", - "id": 212, - "order": 17, - "prevSize": 24, - "code": 59652, - "name": "brightness_high", - "tempChar": "" - }, - { - "ligatures": "brightness_low, brightness_5", - "id": 213, - "order": 18, - "prevSize": 24, - "code": 59653, - "name": "brightness_low", - "tempChar": "" - }, - { - "ligatures": "brightness_medium, brightness_6", - "id": 214, - "order": 19, - "prevSize": 24, - "code": 59654, - "name": "brightness_medium", - "tempChar": "" - }, - { - "ligatures": "data_usage", - "id": 215, - "order": 0 - }, - { - "ligatures": "developer_mode", - "id": 216, - "order": 0 - }, - { - "ligatures": "devices, phonelink", - "id": 217, - "order": 0 - }, - { - "ligatures": "dvr", - "id": 218, - "order": 0 - }, - { - "ligatures": "gps_fixed, my_location", - "id": 219, - "order": 0 - }, - { - "ligatures": "gps_not_fixed, location_searching", - "id": 220, - "order": 0 - }, - { - "ligatures": "gps_off, location_disabled", - "id": 221, - "order": 0 - }, - { - "ligatures": "graphic_eq", - "id": 222, - "order": 0 - }, - { - "ligatures": "network_cell", - "id": 223, - "order": 0 - }, - { - "ligatures": "network_wifi", - "id": 224, - "order": 0 - }, - { - "ligatures": "nfc", - "id": 225, - "order": 0 - }, - { - "ligatures": "now_wallpaper", - "id": 226, - "order": 0 - }, - { - "ligatures": "now_widgets", - "id": 227, - "order": 0 - }, - { - "ligatures": "screen_lock_landscape", - "id": 228, - "order": 0 - }, - { - "ligatures": "screen_lock_portrait", - "id": 229, - "order": 0 - }, - { - "ligatures": "screen_lock_rotation", - "id": 230, - "order": 0 - }, - { - "ligatures": "screen_rotation", - "id": 231, - "order": 0 - }, - { - "ligatures": "sd_storage, sd_card", - "id": 232, - "order": 0 - }, - { - "ligatures": "settings_system_daydream", - "id": 233, - "order": 0 - }, - { - "ligatures": "signal_cellular_4_bar", - "id": 234, - "order": 0 - }, - { - "ligatures": "signal_cellular_connected_no_internet_4_bar", - "id": 235, - "order": 0 - }, - { - "ligatures": "signal_cellular_null", - "id": 236, - "order": 0 - }, - { - "ligatures": "signal_cellular_off", - "id": 237, - "order": 0 - }, - { - "ligatures": "signal_wifi_4_bar", - "id": 238, - "order": 0 - }, - { - "ligatures": "signal_wifi_4_bar_lock", - "id": 239, - "order": 0 - }, - { - "ligatures": "signal_wifi_off", - "id": 240, - "order": 0 - }, - { - "ligatures": "storage", - "id": 241, - "order": 0 - }, - { - "ligatures": "usb", - "id": 242, - "order": 0 - }, - { - "ligatures": "wifi_lock", - "id": 243, - "order": 0 - }, - { - "ligatures": "wifi_tethering", - "id": 244, - "order": 0 - }, - { - "ligatures": "add_to_home_screen", - "id": 245, - "order": 0 - }, - { - "ligatures": "device_thermostat", - "id": 246, - "order": 0 - }, - { - "ligatures": "mobile_friendly", - "id": 247, - "order": 0 - }, - { - "ligatures": "mobile_off", - "id": 248, - "order": 0 - }, - { - "ligatures": "signal_cellular_alt", - "id": 249, - "order": 0 - }, - { - "ligatures": "attach_file", - "id": 250, - "order": 0 - }, - { - "ligatures": "attach_money", - "id": 251, - "order": 0 - }, - { - "ligatures": "border_all", - "id": 252, - "order": 0 - }, - { - "ligatures": "border_bottom", - "id": 253, - "order": 0 - }, - { - "ligatures": "border_clear", - "id": 254, - "order": 0 - }, - { - "ligatures": "border_color", - "id": 255, - "order": 0 - }, - { - "ligatures": "border_horizontal", - "id": 256, - "order": 0 - }, - { - "ligatures": "border_inner", - "id": 257, - "order": 0 - }, - { - "ligatures": "border_left", - "id": 258, - "order": 0 - }, - { - "ligatures": "border_outer", - "id": 259, - "order": 0 - }, - { - "ligatures": "border_right", - "id": 260, - "order": 0 - }, - { - "ligatures": "border_style", - "id": 261, - "order": 0 - }, - { - "ligatures": "border_top", - "id": 262, - "order": 0 - }, - { - "ligatures": "border_vertical", - "id": 263, - "order": 0 - }, - { - "ligatures": "format_align_center", - "id": 264, - "order": 0 - }, - { - "ligatures": "format_align_justify", - "id": 265, - "order": 0 - }, - { - "ligatures": "format_align_left", - "id": 266, - "order": 0 - }, - { - "ligatures": "format_align_right", - "id": 267, - "order": 0 - }, - { - "ligatures": "format_bold", - "id": 268, - "order": 0 - }, - { - "ligatures": "format_clear", - "id": 269, - "order": 0 - }, - { - "ligatures": "format_color_fill", - "id": 270, - "order": 0 - }, - { - "ligatures": "format_color_reset", - "id": 271, - "order": 0 - }, - { - "ligatures": "format_color_text", - "id": 272, - "order": 0 - }, - { - "ligatures": "format_indent_decrease", - "id": 273, - "order": 0 - }, - { - "ligatures": "format_indent_increase", - "id": 274, - "order": 0 - }, - { - "ligatures": "format_italic", - "id": 275, - "order": 0 - }, - { - "ligatures": "format_line_spacing", - "id": 276, - "order": 0 - }, - { - "ligatures": "format_list_bulleted", - "id": 277, - "order": 0 - }, - { - "ligatures": "format_list_numbered", - "id": 278, - "order": 0 - }, - { - "ligatures": "format_paint", - "id": 279, - "order": 0 - }, - { - "ligatures": "format_quote", - "id": 280, - "order": 0 - }, - { - "ligatures": "format_size", - "id": 281, - "order": 0 - }, - { - "ligatures": "format_strikethrough", - "id": 282, - "order": 0 - }, - { - "ligatures": "format_textdirection_l_to_r", - "id": 283, - "order": 0 - }, - { - "ligatures": "format_textdirection_r_to_l", - "id": 284, - "order": 0 - }, - { - "ligatures": "format_underlined", - "id": 285, - "order": 0 - }, - { - "ligatures": "functions", - "id": 286, - "order": 0 - }, - { - "ligatures": "insert_chart, poll, assessment", - "id": 287, - "order": 0 - }, - { - "ligatures": "insert_comment", - "id": 288, - "order": 0 - }, - { - "ligatures": "insert_drive_file", - "id": 289, - "order": 0 - }, - { - "ligatures": "insert_emoticon, tag_faces, mood", - "id": 290, - "order": 0 - }, - { - "ligatures": "insert_invitation, event", - "id": 291, - "order": 0 - }, - { - "ligatures": "insert_photo, image, photo", - "id": 292, - "order": 0 - }, - { - "ligatures": "mode_comment", - "id": 293, - "order": 0 - }, - { - "ligatures": "publish", - "id": 294, - "order": 0 - }, - { - "ligatures": "space_bar", - "id": 295, - "order": 0 - }, - { - "ligatures": "strikethrough_s", - "id": 296, - "order": 0 - }, - { - "ligatures": "vertical_align_bottom", - "id": 297, - "order": 0 - }, - { - "ligatures": "vertical_align_center", - "id": 298, - "order": 0 - }, - { - "ligatures": "vertical_align_top", - "id": 299, - "order": 0 - }, - { - "ligatures": "wrap_text", - "id": 300, - "order": 0 - }, - { - "ligatures": "money_off", - "id": 301, - "order": 0 - }, - { - "ligatures": "drag_handle", - "id": 302, - "order": 0 - }, - { - "ligatures": "format_shapes", - "id": 303, - "order": 0 - }, - { - "ligatures": "highlight", - "id": 304, - "order": 20, - "prevSize": 24, - "code": 59655, - "name": "highlight", - "tempChar": "" - }, - { - "ligatures": "linear_scale", - "id": 305, - "order": 0 - }, - { - "ligatures": "short_text", - "id": 306, - "order": 0 - }, - { - "ligatures": "text_fields", - "id": 307, - "order": 0 - }, - { - "ligatures": "monetization_on", - "id": 308, - "order": 0 - }, - { - "ligatures": "title", - "id": 309, - "order": 0 - }, - { - "ligatures": "table_chart", - "id": 310, - "order": 0 - }, - { - "ligatures": "add_comment", - "id": 311, - "order": 0 - }, - { - "ligatures": "format_list_numbered_rtl", - "id": 312, - "order": 0 - }, - { - "ligatures": "scatter_plot", - "id": 313, - "order": 0 - }, - { - "ligatures": "score", - "id": 314, - "order": 0 - }, - { - "ligatures": "insert_chart_outlined", - "id": 315, - "order": 0 - }, - { - "ligatures": "bar_chart", - "id": 316, - "order": 0 - }, - { - "ligatures": "notes", - "id": 317, - "order": 0 - }, - { - "ligatures": "attachment", - "id": 318, - "order": 0 - }, - { - "ligatures": "cloud", - "id": 319, - "order": 0 - }, - { - "ligatures": "cloud_circle", - "id": 320, - "order": 0 - }, - { - "ligatures": "cloud_done", - "id": 321, - "order": 0 - }, - { - "ligatures": "cloud_download", - "id": 322, - "order": 0 - }, - { - "ligatures": "cloud_off", - "id": 323, - "order": 0 - }, - { - "ligatures": "cloud_queue", - "id": 324, - "order": 0 - }, - { - "ligatures": "cloud_upload, backup", - "id": 325, - "order": 0 - }, - { - "ligatures": "file_download, get_app", - "id": 326, - "order": 0 - }, - { - "ligatures": "file_upload", - "id": 327, - "order": 0 - }, - { - "ligatures": "folder", - "id": 328, - "order": 0 - }, - { - "ligatures": "folder_open", - "id": 329, - "order": 0 - }, - { - "ligatures": "folder_shared", - "id": 330, - "order": 0 - }, - { - "ligatures": "create_new_folder", - "id": 331, - "order": 0 - }, - { - "ligatures": "cast", - "id": 332, - "order": 0 - }, - { - "ligatures": "cast_connected", - "id": 333, - "order": 0 - }, - { - "ligatures": "computer, laptop", - "id": 334, - "order": 0 - }, - { - "ligatures": "desktop_mac", - "id": 335, - "order": 0 - }, - { - "ligatures": "desktop_windows", - "id": 336, - "order": 0 - }, - { - "ligatures": "developer_board", - "id": 337, - "order": 0 - }, - { - "ligatures": "dock", - "id": 338, - "order": 0 - }, - { - "ligatures": "headset", - "id": 339, - "order": 0 - }, - { - "ligatures": "headset_mic", - "id": 340, - "order": 0 - }, - { - "ligatures": "keyboard", - "id": 341, - "order": 0 - }, - { - "ligatures": "keyboard_arrow_down", - "id": 342, - "order": 0 - }, - { - "ligatures": "keyboard_arrow_left", - "id": 343, - "order": 0 - }, - { - "ligatures": "keyboard_arrow_right", - "id": 344, - "order": 0 - }, - { - "ligatures": "keyboard_arrow_up", - "id": 345, - "order": 0 - }, - { - "ligatures": "keyboard_backspace", - "id": 346, - "order": 0 - }, - { - "ligatures": "keyboard_capslock", - "id": 347, - "order": 0 - }, - { - "ligatures": "keyboard_hide", - "id": 348, - "order": 0 - }, - { - "ligatures": "keyboard_return", - "id": 349, - "order": 0 - }, - { - "ligatures": "keyboard_tab", - "id": 350, - "order": 0 - }, - { - "ligatures": "keyboard_voice", - "id": 351, - "order": 0 - }, - { - "ligatures": "laptop_chromebook", - "id": 352, - "order": 0 - }, - { - "ligatures": "laptop_mac", - "id": 353, - "order": 0 - }, - { - "ligatures": "laptop_windows", - "id": 354, - "order": 0 - }, - { - "ligatures": "memory", - "id": 355, - "order": 0 - }, - { - "ligatures": "mouse", - "id": 356, - "order": 0 - }, - { - "ligatures": "phone_android", - "id": 357, - "order": 0 - }, - { - "ligatures": "phone_iphone", - "id": 358, - "order": 0 - }, - { - "ligatures": "phonelink_off", - "id": 359, - "order": 0 - }, - { - "ligatures": "router", - "id": 360, - "order": 0 - }, - { - "ligatures": "scanner", - "id": 361, - "order": 0 - }, - { - "ligatures": "security", - "id": 362, - "order": 0 - }, - { - "ligatures": "sim_card", - "id": 363, - "order": 0 - }, - { - "ligatures": "speaker", - "id": 364, - "order": 0 - }, - { - "ligatures": "speaker_group", - "id": 365, - "order": 0 - }, - { - "ligatures": "tablet", - "id": 366, - "order": 0 - }, - { - "ligatures": "tablet_android", - "id": 367, - "order": 0 - }, - { - "ligatures": "tablet_mac", - "id": 368, - "order": 0 - }, - { - "ligatures": "toys", - "id": 369, - "order": 0 - }, - { - "ligatures": "tv", - "id": 370, - "order": 0 - }, - { - "ligatures": "watch", - "id": 371, - "order": 0 - }, - { - "ligatures": "device_hub", - "id": 372, - "order": 0 - }, - { - "ligatures": "power_input", - "id": 373, - "order": 0 - }, - { - "ligatures": "devices_other", - "id": 374, - "order": 0 - }, - { - "ligatures": "videogame_asset", - "id": 375, - "order": 0 - }, - { - "ligatures": "device_unknown", - "id": 376, - "order": 0 - }, - { - "ligatures": "headset_off", - "id": 377, - "order": 0 - }, - { - "ligatures": "adjust", - "id": 378, - "order": 0 - }, - { - "ligatures": "assistant", - "id": 379, - "order": 0 - }, - { - "ligatures": "audiotrack", - "id": 380, - "order": 0 - }, - { - "ligatures": "blur_circular", - "id": 381, - "order": 0 - }, - { - "ligatures": "blur_linear", - "id": 382, - "order": 0 - }, - { - "ligatures": "blur_off", - "id": 383, - "order": 0 - }, - { - "ligatures": "blur_on", - "id": 384, - "order": 0 - }, - { - "ligatures": "brightness_1", - "id": 385, - "order": 0 - }, - { - "ligatures": "brightness_2", - "id": 386, - "order": 0 - }, - { - "ligatures": "brightness_3", - "id": 387, - "order": 0 - }, - { - "ligatures": "brightness_4", - "id": 388, - "order": 0 - }, - { - "ligatures": "broken_image", - "id": 389, - "order": 0 - }, - { - "ligatures": "brush", - "id": 390, - "order": 0 - }, - { - "ligatures": "camera", - "id": 391, - "order": 0 - }, - { - "ligatures": "camera_alt, photo_camera, local_see", - "id": 392, - "order": 0 - }, - { - "ligatures": "camera_front", - "id": 393, - "order": 0 - }, - { - "ligatures": "camera_rear", - "id": 394, - "order": 0 - }, - { - "ligatures": "camera_roll", - "id": 395, - "order": 0 - }, - { - "ligatures": "center_focus_strong", - "id": 396, - "order": 0 - }, - { - "ligatures": "center_focus_weak", - "id": 397, - "order": 0 - }, - { - "ligatures": "collections, photo_library", - "id": 398, - "order": 0 - }, - { - "ligatures": "color_lens, palette", - "id": 399, - "order": 0 - }, - { - "ligatures": "colorize", - "id": 400, - "order": 0 - }, - { - "ligatures": "compare", - "id": 401, - "order": 0 - }, - { - "ligatures": "control_point_duplicate", - "id": 402, - "order": 0 - }, - { - "ligatures": "crop_16_9", - "id": 403, - "order": 0 - }, - { - "ligatures": "crop_3_2", - "id": 404, - "order": 0 - }, - { - "ligatures": "crop", - "id": 405, - "order": 0 - }, - { - "ligatures": "crop_5_4, crop_landscape", - "id": 406, - "order": 0 - }, - { - "ligatures": "crop_7_5", - "id": 407, - "order": 0 - }, - { - "ligatures": "crop_din", - "id": 408, - "order": 0 - }, - { - "ligatures": "crop_free", - "id": 409, - "order": 0 - }, - { - "ligatures": "crop_original", - "id": 410, - "order": 0 - }, - { - "ligatures": "crop_portrait", - "id": 411, - "order": 0 - }, - { - "ligatures": "crop_square", - "id": 412, - "order": 0 - }, - { - "ligatures": "dehaze", - "id": 413, - "order": 0 - }, - { - "ligatures": "details", - "id": 414, - "order": 0 - }, - { - "ligatures": "exposure", - "id": 415, - "order": 0 - }, - { - "ligatures": "exposure_neg_1", - "id": 416, - "order": 0 - }, - { - "ligatures": "exposure_neg_2", - "id": 417, - "order": 0 - }, - { - "ligatures": "exposure_plus_1", - "id": 418, - "order": 0 - }, - { - "ligatures": "exposure_plus_2", - "id": 419, - "order": 0 - }, - { - "ligatures": "exposure_zero", - "id": 420, - "order": 0 - }, - { - "ligatures": "filter_1", - "id": 421, - "order": 0 - }, - { - "ligatures": "filter_2", - "id": 422, - "order": 0 - }, - { - "ligatures": "filter_3", - "id": 423, - "order": 0 - }, - { - "ligatures": "filter", - "id": 424, - "order": 0 - }, - { - "ligatures": "filter_4", - "id": 425, - "order": 0 - }, - { - "ligatures": "filter_5", - "id": 426, - "order": 0 - }, - { - "ligatures": "filter_6", - "id": 427, - "order": 0 - }, - { - "ligatures": "filter_7", - "id": 428, - "order": 0 - }, - { - "ligatures": "filter_8", - "id": 429, - "order": 0 - }, - { - "ligatures": "filter_9", - "id": 430, - "order": 0 - }, - { - "ligatures": "filter_9_plus", - "id": 431, - "order": 0 - }, - { - "ligatures": "filter_b_and_w", - "id": 432, - "order": 0 - }, - { - "ligatures": "filter_center_focus", - "id": 433, - "order": 0 - }, - { - "ligatures": "filter_drama", - "id": 434, - "order": 0 - }, - { - "ligatures": "filter_frames", - "id": 435, - "order": 0 - }, - { - "ligatures": "filter_hdr, landscape, terrain", - "id": 436, - "order": 0 - }, - { - "ligatures": "filter_none", - "id": 437, - "order": 0 - }, - { - "ligatures": "filter_tilt_shift", - "id": 438, - "order": 0 - }, - { - "ligatures": "filter_vintage", - "id": 439, - "order": 0 - }, - { - "ligatures": "flare", - "id": 440, - "order": 0 - }, - { - "ligatures": "flash_auto", - "id": 441, - "order": 0 - }, - { - "ligatures": "flash_off", - "id": 442, - "order": 0 - }, - { - "ligatures": "flash_on", - "id": 443, - "order": 0 - }, - { - "ligatures": "flip", - "id": 444, - "order": 0 - }, - { - "ligatures": "gradient", - "id": 445, - "order": 0 - }, - { - "ligatures": "grain", - "id": 446, - "order": 0 - }, - { - "ligatures": "grid_off", - "id": 447, - "order": 0 - }, - { - "ligatures": "grid_on", - "id": 448, - "order": 0 - }, - { - "ligatures": "hdr_off", - "id": 449, - "order": 0 - }, - { - "ligatures": "hdr_on", - "id": 450, - "order": 0 - }, - { - "ligatures": "hdr_strong", - "id": 451, - "order": 0 - }, - { - "ligatures": "hdr_weak", - "id": 452, - "order": 0 - }, - { - "ligatures": "healing", - "id": 453, - "order": 0 - }, - { - "ligatures": "image_aspect_ratio", - "id": 454, - "order": 0 - }, - { - "ligatures": "iso", - "id": 455, - "order": 0 - }, - { - "ligatures": "leak_add", - "id": 456, - "order": 0 - }, - { - "ligatures": "leak_remove", - "id": 457, - "order": 0 - }, - { - "ligatures": "lens", - "id": 458, - "order": 0 - }, - { - "ligatures": "looks_3", - "id": 459, - "order": 0 - }, - { - "ligatures": "looks", - "id": 460, - "order": 0 - }, - { - "ligatures": "looks_4", - "id": 461, - "order": 0 - }, - { - "ligatures": "looks_5", - "id": 462, - "order": 0 - }, - { - "ligatures": "looks_6", - "id": 463, - "order": 0 - }, - { - "ligatures": "looks_one", - "id": 464, - "order": 0 - }, - { - "ligatures": "looks_two", - "id": 465, - "order": 0 - }, - { - "ligatures": "loupe", - "id": 466, - "order": 0 - }, - { - "ligatures": "monochrome_photos", - "id": 467, - "order": 0 - }, - { - "ligatures": "music_note", - "id": 468, - "order": 0 - }, - { - "ligatures": "nature", - "id": 469, - "order": 0 - }, - { - "ligatures": "nature_people", - "id": 470, - "order": 0 - }, - { - "ligatures": "navigate_before, chevron_left", - "id": 471, - "order": 0 - }, - { - "ligatures": "navigate_next, chevron_right", - "id": 472, - "order": 0 - }, - { - "ligatures": "panorama", - "id": 473, - "order": 0 - }, - { - "ligatures": "panorama_fisheye, radio_button_unchecked", - "id": 474, - "order": 0 - }, - { - "ligatures": "panorama_horizontal", - "id": 475, - "order": 0 - }, - { - "ligatures": "panorama_vertical", - "id": 476, - "order": 0 - }, - { - "ligatures": "panorama_wide_angle", - "id": 477, - "order": 0 - }, - { - "ligatures": "photo_album", - "id": 478, - "order": 0 - }, - { - "ligatures": "picture_as_pdf", - "id": 479, - "order": 0 - }, - { - "ligatures": "portrait", - "id": 480, - "order": 0 - }, - { - "ligatures": "remove_red_eye, visibility", - "id": 481, - "order": 0 - }, - { - "ligatures": "rotate_90_degrees_ccw", - "id": 482, - "order": 0 - }, - { - "ligatures": "rotate_left", - "id": 483, - "order": 0 - }, - { - "ligatures": "rotate_right", - "id": 484, - "order": 0 - }, - { - "ligatures": "slideshow", - "id": 485, - "order": 0 - }, - { - "ligatures": "straighten", - "id": 486, - "order": 0 - }, - { - "ligatures": "style", - "id": 487, - "order": 0 - }, - { - "ligatures": "switch_camera", - "id": 488, - "order": 0 - }, - { - "ligatures": "switch_video", - "id": 489, - "order": 0 - }, - { - "ligatures": "texture", - "id": 490, - "order": 0 - }, - { - "ligatures": "timelapse", - "id": 491, - "order": 0 - }, - { - "ligatures": "timer_10", - "id": 492, - "order": 0 - }, - { - "ligatures": "timer_3", - "id": 493, - "order": 0 - }, - { - "ligatures": "timer", - "id": 494, - "order": 0 - }, - { - "ligatures": "timer_off", - "id": 495, - "order": 0 - }, - { - "ligatures": "tonality", - "id": 496, - "order": 0 - }, - { - "ligatures": "transform", - "id": 497, - "order": 0 - }, - { - "ligatures": "tune", - "id": 498, - "order": 0 - }, - { - "ligatures": "view_comfy", - "id": 499, - "order": 0 - }, - { - "ligatures": "view_compact", - "id": 500, - "order": 0 - }, - { - "ligatures": "wb_auto", - "id": 501, - "order": 0 - }, - { - "ligatures": "wb_cloudy", - "id": 502, - "order": 0 - }, - { - "ligatures": "wb_incandescent", - "id": 503, - "order": 0 - }, - { - "ligatures": "wb_sunny", - "id": 504, - "order": 0, - "prevSize": 24, - "code": 59656, - "name": "wb_sunny", - "tempChar": "" - }, - { - "ligatures": "collections_bookmark", - "id": 505, - "order": 0 - }, - { - "ligatures": "photo_size_select_actual", - "id": 506, - "order": 0 - }, - { - "ligatures": "photo_size_select_large", - "id": 507, - "order": 0 - }, - { - "ligatures": "photo_size_select_small", - "id": 508, - "order": 0 - }, - { - "ligatures": "vignette", - "id": 509, - "order": 0 - }, - { - "ligatures": "wb_iridescent", - "id": 510, - "order": 0 - }, - { - "ligatures": "crop_rotate", - "id": 511, - "order": 0 - }, - { - "ligatures": "linked_camera", - "id": 512, - "order": 0 - }, - { - "ligatures": "add_a_photo", - "id": 513, - "order": 0 - }, - { - "ligatures": "movie_filter", - "id": 514, - "order": 0 - }, - { - "ligatures": "photo_filter", - "id": 515, - "order": 0 - }, - { - "ligatures": "burst_mode", - "id": 516, - "order": 0 - }, - { - "ligatures": "shutter_speed", - "id": 517, - "order": 0 - }, - { - "ligatures": "add_photo_alternate", - "id": 518, - "order": 0 - }, - { - "ligatures": "image_search", - "id": 519, - "order": 0 - }, - { - "ligatures": "music_off", - "id": 520, - "order": 0 - }, - { - "ligatures": "beenhere", - "id": 521, - "order": 0 - }, - { - "ligatures": "directions", - "id": 522, - "order": 0 - }, - { - "ligatures": "directions_bike", - "id": 523, - "order": 0 - }, - { - "ligatures": "directions_bus", - "id": 524, - "order": 0 - }, - { - "ligatures": "directions_car", - "id": 525, - "order": 0 - }, - { - "ligatures": "directions_ferry", - "id": 526, - "order": 0 - }, - { - "ligatures": "directions_subway, directions_transit", - "id": 527, - "order": 0 - }, - { - "ligatures": "directions_train", - "id": 528, - "order": 0 - }, - { - "ligatures": "directions_walk", - "id": 529, - "order": 0 - }, - { - "ligatures": "hotel, local_hotel", - "id": 530, - "order": 0 - }, - { - "ligatures": "layers", - "id": 531, - "order": 0 - }, - { - "ligatures": "layers_clear", - "id": 532, - "order": 0 - }, - { - "ligatures": "local_atm", - "id": 533, - "order": 0 - }, - { - "ligatures": "local_attraction, local_play", - "id": 534, - "order": 0 - }, - { - "ligatures": "local_bar", - "id": 535, - "order": 0 - }, - { - "ligatures": "local_cafe, free_breakfast", - "id": 536, - "order": 0 - }, - { - "ligatures": "local_car_wash", - "id": 537, - "order": 0 - }, - { - "ligatures": "local_convenience_store", - "id": 538, - "order": 0 - }, - { - "ligatures": "local_drink", - "id": 539, - "order": 0 - }, - { - "ligatures": "local_florist", - "id": 540, - "order": 0 - }, - { - "ligatures": "local_gas_station", - "id": 541, - "order": 0 - }, - { - "ligatures": "local_grocery_store, shopping_cart", - "id": 542, - "order": 0 - }, - { - "ligatures": "local_hospital", - "id": 543, - "order": 0 - }, - { - "ligatures": "local_laundry_service", - "id": 544, - "order": 0 - }, - { - "ligatures": "local_library", - "id": 545, - "order": 0 - }, - { - "ligatures": "local_mall", - "id": 546, - "order": 0 - }, - { - "ligatures": "local_movies, theaters", - "id": 547, - "order": 0 - }, - { - "ligatures": "local_offer", - "id": 548, - "order": 0 - }, - { - "ligatures": "local_parking", - "id": 549, - "order": 0 - }, - { - "ligatures": "local_pharmacy", - "id": 550, - "order": 0 - }, - { - "ligatures": "local_pizza", - "id": 551, - "order": 0 - }, - { - "ligatures": "local_printshop, print", - "id": 552, - "order": 0 - }, - { - "ligatures": "local_restaurant, restaurant_menu", - "id": 553, - "order": 0 - }, - { - "ligatures": "local_shipping", - "id": 554, - "order": 0 - }, - { - "ligatures": "local_taxi", - "id": 555, - "order": 0 - }, - { - "ligatures": "location_history", - "id": 556, - "order": 0 - }, - { - "ligatures": "map", - "id": 557, - "order": 0 - }, - { - "ligatures": "navigation", - "id": 558, - "order": 0 - }, - { - "ligatures": "pin_drop", - "id": 559, - "order": 0 - }, - { - "ligatures": "rate_review", - "id": 560, - "order": 0 - }, - { - "ligatures": "satellite", - "id": 561, - "order": 0 - }, - { - "ligatures": "store_mall_directory, store", - "id": 562, - "order": 0 - }, - { - "ligatures": "traffic", - "id": 563, - "order": 0 - }, - { - "ligatures": "directions_run", - "id": 564, - "order": 0 - }, - { - "ligatures": "add_location", - "id": 565, - "order": 0 - }, - { - "ligatures": "edit_location", - "id": 566, - "order": 0 - }, - { - "ligatures": "near_me", - "id": 567, - "order": 0 - }, - { - "ligatures": "person_pin_circle", - "id": 568, - "order": 0 - }, - { - "ligatures": "zoom_out_map", - "id": 569, - "order": 0 - }, - { - "ligatures": "restaurant", - "id": 570, - "order": 0 - }, - { - "ligatures": "ev_station", - "id": 571, - "order": 0 - }, - { - "ligatures": "streetview", - "id": 572, - "order": 0 - }, - { - "ligatures": "subway", - "id": 573, - "order": 0 - }, - { - "ligatures": "train", - "id": 574, - "order": 0 - }, - { - "ligatures": "tram", - "id": 575, - "order": 0 - }, - { - "ligatures": "transfer_within_a_station", - "id": 576, - "order": 0 - }, - { - "ligatures": "atm", - "id": 577, - "order": 0 - }, - { - "ligatures": "category", - "id": 578, - "order": 0 - }, - { - "ligatures": "not_listed_location", - "id": 579, - "order": 0 - }, - { - "ligatures": "departure_board", - "id": 580, - "order": 0 - }, - { - "ligatures": "360", - "id": 581, - "order": 0 - }, - { - "ligatures": "edit_attributes", - "id": 582, - "order": 0 - }, - { - "ligatures": "transit_enterexit", - "id": 583, - "order": 0 - }, - { - "ligatures": "fastfood", - "id": 584, - "order": 0 - }, - { - "ligatures": "trip_origin", - "id": 585, - "order": 0 - }, - { - "ligatures": "compass_calibration", - "id": 586, - "order": 0 - }, - { - "ligatures": "money", - "id": 587, - "order": 0 - }, - { - "ligatures": "apps", - "id": 588, - "order": 0 - }, - { - "ligatures": "arrow_back", - "id": 589, - "order": 0 - }, - { - "ligatures": "arrow_drop_down", - "id": 590, - "order": 0 - }, - { - "ligatures": "arrow_drop_down_circle", - "id": 591, - "order": 0 - }, - { - "ligatures": "arrow_drop_up", - "id": 592, - "order": 0 - }, - { - "ligatures": "arrow_forward", - "id": 593, - "order": 0 - }, - { - "ligatures": "cancel", - "id": 594, - "order": 0 - }, - { - "ligatures": "check", - "id": 595, - "order": 0 - }, - { - "ligatures": "expand_less", - "id": 596, - "order": 0 - }, - { - "ligatures": "expand_more", - "id": 597, - "order": 0 - }, - { - "ligatures": "fullscreen", - "id": 598, - "order": 0 - }, - { - "ligatures": "fullscreen_exit", - "id": 599, - "order": 0 - }, - { - "ligatures": "menu", - "id": 600, - "order": 0 - }, - { - "ligatures": "keyboard_control", - "id": 601, - "order": 0 - }, - { - "ligatures": "more_vert", - "id": 602, - "order": 0, - "prevSize": 24, - "code": 59649, - "name": "vert_line", - "tempChar": "" - }, - { - "ligatures": "refresh", - "id": 603, - "order": 0 - }, - { - "ligatures": "unfold_less", - "id": 604, - "order": 0 - }, - { - "ligatures": "unfold_more", - "id": 605, - "order": 0 - }, - { - "ligatures": "arrow_upward", - "id": 606, - "order": 0 - }, - { - "ligatures": "subdirectory_arrow_left", - "id": 607, - "order": 0 - }, - { - "ligatures": "subdirectory_arrow_right", - "id": 608, - "order": 0 - }, - { - "ligatures": "arrow_downward", - "id": 609, - "order": 0 - }, - { - "ligatures": "first_page", - "id": 610, - "order": 0 - }, - { - "ligatures": "last_page", - "id": 611, - "order": 0 - }, - { - "ligatures": "arrow_left", - "id": 612, - "order": 0 - }, - { - "ligatures": "arrow_right", - "id": 613, - "order": 0 - }, - { - "ligatures": "arrow_back_ios", - "id": 614, - "order": 0 - }, - { - "ligatures": "arrow_forward_ios", - "id": 615, - "order": 0 - }, - { - "ligatures": "adb", - "id": 616, - "order": 0 - }, - { - "ligatures": "disc_full", - "id": 617, - "order": 0 - }, - { - "ligatures": "do_not_disturb_alt", - "id": 618, - "order": 0 - }, - { - "ligatures": "drive_eta, time_to_leave", - "id": 619, - "order": 0 - }, - { - "ligatures": "event_available", - "id": 620, - "order": 0 - }, - { - "ligatures": "event_busy", - "id": 621, - "order": 0 - }, - { - "ligatures": "event_note", - "id": 622, - "order": 0 - }, - { - "ligatures": "folder_special", - "id": 623, - "order": 0 - }, - { - "ligatures": "mms", - "id": 624, - "order": 0 - }, - { - "ligatures": "more", - "id": 625, - "order": 0 - }, - { - "ligatures": "network_locked", - "id": 626, - "order": 0 - }, - { - "ligatures": "phone_bluetooth_speaker", - "id": 627, - "order": 0 - }, - { - "ligatures": "phone_forwarded", - "id": 628, - "order": 0 - }, - { - "ligatures": "phone_in_talk", - "id": 629, - "order": 0, - "prevSize": 24, - "code": 59657, - "name": "phone_in_talk", - "tempChar": "" - }, - { - "ligatures": "phone_locked", - "id": 630, - "order": 0 - }, - { - "ligatures": "phone_missed", - "id": 631, - "order": 0 - }, - { - "ligatures": "phone_paused", - "id": 632, - "order": 0 - }, - { - "ligatures": "sim_card_alert", - "id": 633, - "order": 0 - }, - { - "ligatures": "sms_failed, feedback", - "id": 634, - "order": 0 - }, - { - "ligatures": "sync_disabled", - "id": 635, - "order": 0 - }, - { - "ligatures": "sync_problem", - "id": 636, - "order": 0 - }, - { - "ligatures": "system_update", - "id": 637, - "order": 0 - }, - { - "ligatures": "tap_and_play", - "id": 638, - "order": 0 - }, - { - "ligatures": "vibration", - "id": 639, - "order": 0 - }, - { - "ligatures": "voice_chat", - "id": 640, - "order": 0 - }, - { - "ligatures": "vpn_lock", - "id": 641, - "order": 0 - }, - { - "ligatures": "airline_seat_flat", - "id": 642, - "order": 0 - }, - { - "ligatures": "airline_seat_flat_angled", - "id": 643, - "order": 0 - }, - { - "ligatures": "airline_seat_individual_suite", - "id": 644, - "order": 0 - }, - { - "ligatures": "airline_seat_legroom_extra", - "id": 645, - "order": 0 - }, - { - "ligatures": "airline_seat_legroom_normal", - "id": 646, - "order": 0 - }, - { - "ligatures": "airline_seat_legroom_reduced", - "id": 647, - "order": 0 - }, - { - "ligatures": "airline_seat_recline_extra", - "id": 648, - "order": 0 - }, - { - "ligatures": "airline_seat_recline_normal", - "id": 649, - "order": 0 - }, - { - "ligatures": "confirmation_number", - "id": 650, - "order": 0 - }, - { - "ligatures": "live_tv", - "id": 651, - "order": 0 - }, - { - "ligatures": "ondemand_video", - "id": 652, - "order": 0 - }, - { - "ligatures": "personal_video", - "id": 653, - "order": 0 - }, - { - "ligatures": "power", - "id": 654, - "order": 0 - }, - { - "ligatures": "wc", - "id": 655, - "order": 0 - }, - { - "ligatures": "wifi", - "id": 656, - "order": 0 - }, - { - "ligatures": "enhanced_encryption", - "id": 657, - "order": 0 - }, - { - "ligatures": "network_check", - "id": 658, - "order": 0 - }, - { - "ligatures": "no_encryption", - "id": 659, - "order": 0 - }, - { - "ligatures": "rv_hookup", - "id": 660, - "order": 0 - }, - { - "ligatures": "do_not_disturb_off", - "id": 661, - "order": 0 - }, - { - "ligatures": "priority_high", - "id": 662, - "order": 0 - }, - { - "ligatures": "power_off", - "id": 663, - "order": 0 - }, - { - "ligatures": "tv_off", - "id": 664, - "order": 0 - }, - { - "ligatures": "wifi_off", - "id": 665, - "order": 0 - }, - { - "ligatures": "phone_callback", - "id": 666, - "order": 0, - "prevSize": 24, - "code": 59658, - "name": "phone_callback", - "tempChar": "" - }, - { - "ligatures": "pie_chart", - "id": 667, - "order": 0 - }, - { - "ligatures": "pie_chart_outlined", - "id": 668, - "order": 0 - }, - { - "ligatures": "bubble_chart", - "id": 669, - "order": 0 - }, - { - "ligatures": "multiline_chart", - "id": 670, - "order": 0 - }, - { - "ligatures": "show_chart", - "id": 671, - "order": 0 - }, - { - "ligatures": "cake", - "id": 672, - "order": 0 - }, - { - "ligatures": "group, people", - "id": 673, - "order": 0 - }, - { - "ligatures": "group_add", - "id": 674, - "order": 0 - }, - { - "ligatures": "location_city", - "id": 675, - "order": 0 - }, - { - "ligatures": "mood_bad", - "id": 676, - "order": 0 - }, - { - "ligatures": "notifications", - "id": 677, - "order": 0 - }, - { - "ligatures": "notifications_none", - "id": 678, - "order": 0 - }, - { - "ligatures": "notifications_off", - "id": 679, - "order": 25, - "prevSize": 24, - "code": 59659, - "name": "notifications_off", - "tempChar": "" - }, - { - "ligatures": "notifications_on", - "id": 680, - "order": 24, - "prevSize": 24, - "code": 59660, - "name": "notifications_on", - "tempChar": "" - }, - { - "ligatures": "notifications_paused", - "id": 681, - "order": 0 - }, - { - "ligatures": "pages", - "id": 682, - "order": 0 - }, - { - "ligatures": "party_mode", - "id": 683, - "order": 0 - }, - { - "ligatures": "people_outline", - "id": 684, - "order": 0 - }, - { - "ligatures": "person", - "id": 685, - "order": 0 - }, - { - "ligatures": "person_add", - "id": 686, - "order": 0 - }, - { - "ligatures": "person_outline, perm_identity", - "id": 687, - "order": 0 - }, - { - "ligatures": "plus_one", - "id": 688, - "order": 0 - }, - { - "ligatures": "public", - "id": 689, - "order": 0 - }, - { - "ligatures": "school", - "id": 690, - "order": 0 - }, - { - "ligatures": "share", - "id": 691, - "order": 0 - }, - { - "ligatures": "whatshot", - "id": 692, - "order": 0 - }, - { - "ligatures": "sentiment_dissatisfied", - "id": 693, - "order": 0 - }, - { - "ligatures": "sentiment_neutral", - "id": 694, - "order": 0 - }, - { - "ligatures": "sentiment_satisfied", - "id": 695, - "order": 0 - }, - { - "ligatures": "sentiment_very_dissatisfied", - "id": 696, - "order": 0 - }, - { - "ligatures": "sentiment_very_satisfied", - "id": 697, - "order": 0 - }, - { - "ligatures": "thumb_down_alt", - "id": 698, - "order": 0 - }, - { - "ligatures": "thumb_up_alt", - "id": 699, - "order": 0 - }, - { - "ligatures": "check_box", - "id": 700, - "order": 0 - }, - { - "ligatures": "check_box_outline_blank", - "id": 701, - "order": 0 - }, - { - "ligatures": "radio_button_on", - "id": 702, - "order": 0 - }, - { - "ligatures": "star, grade", - "id": 703, - "order": 0 - }, - { - "ligatures": "star_half", - "id": 704, - "order": 0 - }, - { - "ligatures": "star_outline", - "id": 705, - "order": 0 - }, - { - "ligatures": "3d_rotation", - "id": 706, - "order": 0 - }, - { - "ligatures": "accessibility", - "id": 707, - "order": 0 - }, - { - "ligatures": "account_balance", - "id": 708, - "order": 0 - }, - { - "ligatures": "account_balance_wallet", - "id": 709, - "order": 0 - }, - { - "ligatures": "account_box", - "id": 710, - "order": 0 - }, - { - "ligatures": "account_circle", - "id": 711, - "order": 0 - }, - { - "ligatures": "add_shopping_cart", - "id": 712, - "order": 0 - }, - { - "ligatures": "alarm_off", - "id": 713, - "order": 0 - }, - { - "ligatures": "alarm_on", - "id": 714, - "order": 0 - }, - { - "ligatures": "android", - "id": 715, - "order": 0 - }, - { - "ligatures": "announcement", - "id": 716, - "order": 0 - }, - { - "ligatures": "aspect_ratio", - "id": 717, - "order": 0 - }, - { - "ligatures": "assignment", - "id": 718, - "order": 0 - }, - { - "ligatures": "assignment_ind", - "id": 719, - "order": 0 - }, - { - "ligatures": "assignment_late", - "id": 720, - "order": 0 - }, - { - "ligatures": "assignment_return", - "id": 721, - "order": 0 - }, - { - "ligatures": "assignment_returned", - "id": 722, - "order": 0 - }, - { - "ligatures": "assignment_turned_in", - "id": 723, - "order": 0 - }, - { - "ligatures": "autorenew", - "id": 724, - "order": 0 - }, - { - "ligatures": "book, class", - "id": 725, - "order": 0 - }, - { - "ligatures": "bookmark, turned_in", - "id": 726, - "order": 0 - }, - { - "ligatures": "bookmark_outline, turned_in_not", - "id": 727, - "order": 0 - }, - { - "ligatures": "bug_report", - "id": 728, - "order": 0 - }, - { - "ligatures": "build", - "id": 729, - "order": 0 - }, - { - "ligatures": "cached", - "id": 730, - "order": 0 - }, - { - "ligatures": "change_history", - "id": 731, - "order": 0 - }, - { - "ligatures": "check_circle", - "id": 732, - "order": 0 - }, - { - "ligatures": "chrome_reader_mode", - "id": 733, - "order": 0 - }, - { - "ligatures": "code", - "id": 734, - "order": 0 - }, - { - "ligatures": "credit_card, payment", - "id": 735, - "order": 0 - }, - { - "ligatures": "dashboard", - "id": 736, - "order": 0 - }, - { - "ligatures": "delete", - "id": 737, - "order": 0 - }, - { - "ligatures": "description", - "id": 738, - "order": 0 - }, - { - "ligatures": "dns", - "id": 739, - "order": 0 - }, - { - "ligatures": "done", - "id": 740, - "order": 0 - }, - { - "ligatures": "done_all", - "id": 741, - "order": 0 - }, - { - "ligatures": "exit_to_app", - "id": 742, - "order": 0 - }, - { - "ligatures": "explore", - "id": 743, - "order": 0 - }, - { - "ligatures": "extension", - "id": 744, - "order": 0 - }, - { - "ligatures": "face", - "id": 745, - "order": 0 - }, - { - "ligatures": "favorite", - "id": 746, - "order": 0 - }, - { - "ligatures": "favorite_outline", - "id": 747, - "order": 0 - }, - { - "ligatures": "find_in_page", - "id": 748, - "order": 0 - }, - { - "ligatures": "find_replace", - "id": 749, - "order": 0 - }, - { - "ligatures": "flip_to_back", - "id": 750, - "order": 0 - }, - { - "ligatures": "flip_to_front", - "id": 751, - "order": 0 - }, - { - "ligatures": "group_work", - "id": 752, - "order": 0 - }, - { - "ligatures": "help", - "id": 753, - "order": 0 - }, - { - "ligatures": "highlight_remove", - "id": 754, - "order": 0 - }, - { - "ligatures": "history, restore", - "id": 755, - "order": 0 - }, - { - "ligatures": "home", - "id": 756, - "order": 0 - }, - { - "ligatures": "hourglass_empty", - "id": 757, - "order": 0 - }, - { - "ligatures": "hourglass_full", - "id": 758, - "order": 0 - }, - { - "ligatures": "https, lock", - "id": 759, - "order": 0 - }, - { - "ligatures": "info", - "id": 760, - "order": 0 - }, - { - "ligatures": "info_outline", - "id": 761, - "order": 0 - }, - { - "ligatures": "input", - "id": 762, - "order": 0 - }, - { - "ligatures": "invert_colors_on", - "id": 763, - "order": 0 - }, - { - "ligatures": "label", - "id": 764, - "order": 0 - }, - { - "ligatures": "label_outline", - "id": 765, - "order": 0 - }, - { - "ligatures": "language", - "id": 766, - "order": 0, - "prevSize": 24, - "code": 59649, - "name": "language", - "tempChar": "" - }, - { - "ligatures": "launch, open_in_new", - "id": 767, - "order": 0 - }, - { - "ligatures": "list", - "id": 768, - "order": 0 - }, - { - "ligatures": "lock_open", - "id": 769, - "order": 0 - }, - { - "ligatures": "lock_outline", - "id": 770, - "order": 0 - }, - { - "ligatures": "loyalty", - "id": 771, - "order": 0 - }, - { - "ligatures": "markunread_mailbox", - "id": 772, - "order": 0 - }, - { - "ligatures": "note_add", - "id": 773, - "order": 0 - }, - { - "ligatures": "open_in_browser", - "id": 774, - "order": 0 - }, - { - "ligatures": "open_with", - "id": 775, - "order": 0 - }, - { - "ligatures": "pageview", - "id": 776, - "order": 0 - }, - { - "ligatures": "perm_camera_mic", - "id": 777, - "order": 0 - }, - { - "ligatures": "perm_contact_calendar", - "id": 778, - "order": 0 - }, - { - "ligatures": "perm_data_setting", - "id": 779, - "order": 0 - }, - { - "ligatures": "perm_device_information", - "id": 780, - "order": 0 - }, - { - "ligatures": "perm_media", - "id": 781, - "order": 0 - }, - { - "ligatures": "perm_phone_msg", - "id": 782, - "order": 0 - }, - { - "ligatures": "perm_scan_wifi", - "id": 783, - "order": 0 - }, - { - "ligatures": "picture_in_picture", - "id": 784, - "order": 0 - }, - { - "ligatures": "polymer", - "id": 785, - "order": 0 - }, - { - "ligatures": "power_settings_new", - "id": 786, - "order": 0 - }, - { - "ligatures": "receipt", - "id": 787, - "order": 0 - }, - { - "ligatures": "redeem, card_giftcard", - "id": 788, - "order": 0 - }, - { - "ligatures": "search", - "id": 789, - "order": 0 - }, - { - "ligatures": "settings", - "id": 790, - "order": 34, - "prevSize": 24, - "code": 59650, - "name": "settings", - "tempChar": "" - }, - { - "ligatures": "settings_applications", - "id": 791, - "order": 0 - }, - { - "ligatures": "settings_backup_restore", - "id": 792, - "order": 0 - }, - { - "ligatures": "settings_bluetooth", - "id": 793, - "order": 0 - }, - { - "ligatures": "settings_cell", - "id": 794, - "order": 0 - }, - { - "ligatures": "settings_display", - "id": 795, - "order": 0 - }, - { - "ligatures": "settings_ethernet", - "id": 796, - "order": 0 - }, - { - "ligatures": "settings_input_antenna", - "id": 797, - "order": 0 - }, - { - "ligatures": "settings_input_component, settings_input_composite", - "id": 798, - "order": 0 - }, - { - "ligatures": "settings_input_hdmi", - "id": 799, - "order": 0 - }, - { - "ligatures": "settings_input_svideo", - "id": 800, - "order": 0 - }, - { - "ligatures": "settings_overscan", - "id": 801, - "order": 0 - }, - { - "ligatures": "settings_phone", - "id": 802, - "order": 0, - "prevSize": 24, - "code": 59661, - "name": "settings_phone", - "tempChar": "" - }, - { - "ligatures": "settings_power", - "id": 803, - "order": 0, - "prevSize": 24, - "code": 59662, - "name": "settings_power", - "tempChar": "" - }, - { - "ligatures": "settings_remote", - "id": 804, - "order": 0 - }, - { - "ligatures": "settings_voice", - "id": 805, - "order": 0 - }, - { - "ligatures": "shop", - "id": 806, - "order": 0 - }, - { - "ligatures": "shop_two", - "id": 807, - "order": 0 - }, - { - "ligatures": "shopping_basket", - "id": 808, - "order": 0 - }, - { - "ligatures": "speaker_notes", - "id": 809, - "order": 0 - }, - { - "ligatures": "spellcheck", - "id": 810, - "order": 0 - }, - { - "ligatures": "stars", - "id": 811, - "order": 0 - }, - { - "ligatures": "subject", - "id": 812, - "order": 0 - }, - { - "ligatures": "supervisor_account", - "id": 813, - "order": 0 - }, - { - "ligatures": "swap_horiz", - "id": 814, - "order": 0 - }, - { - "ligatures": "swap_vert", - "id": 815, - "order": 0 - }, - { - "ligatures": "swap_vertical_circle", - "id": 816, - "order": 0 - }, - { - "ligatures": "system_update_tv", - "id": 817, - "order": 0 - }, - { - "ligatures": "tab", - "id": 818, - "order": 0 - }, - { - "ligatures": "tab_unselected", - "id": 819, - "order": 0 - }, - { - "ligatures": "thumb_down", - "id": 820, - "order": 0 - }, - { - "ligatures": "thumb_up", - "id": 821, - "order": 0 - }, - { - "ligatures": "thumbs_up_down", - "id": 822, - "order": 0 - }, - { - "ligatures": "toc", - "id": 823, - "order": 0 - }, - { - "ligatures": "today", - "id": 824, - "order": 0 - }, - { - "ligatures": "toll", - "id": 825, - "order": 0 - }, - { - "ligatures": "track_changes", - "id": 826, - "order": 0 - }, - { - "ligatures": "translate", - "id": 827, - "order": 0 - }, - { - "ligatures": "trending_down", - "id": 828, - "order": 0 - }, - { - "ligatures": "trending_neutral", - "id": 829, - "order": 0 - }, - { - "ligatures": "trending_up", - "id": 830, - "order": 0 - }, - { - "ligatures": "verified_user", - "id": 831, - "order": 0 - }, - { - "ligatures": "view_agenda", - "id": 832, - "order": 0 - }, - { - "ligatures": "view_array", - "id": 833, - "order": 0 - }, - { - "ligatures": "view_carousel", - "id": 834, - "order": 0 - }, - { - "ligatures": "view_column", - "id": 835, - "order": 0 - }, - { - "ligatures": "view_day", - "id": 836, - "order": 0 - }, - { - "ligatures": "view_headline", - "id": 837, - "order": 0 - }, - { - "ligatures": "view_list", - "id": 838, - "order": 0 - }, - { - "ligatures": "view_module", - "id": 839, - "order": 0 - }, - { - "ligatures": "view_quilt", - "id": 840, - "order": 0 - }, - { - "ligatures": "view_stream", - "id": 841, - "order": 0 - }, - { - "ligatures": "view_week", - "id": 842, - "order": 0 - }, - { - "ligatures": "visibility_off", - "id": 843, - "order": 0 - }, - { - "ligatures": "card_membership", - "id": 844, - "order": 0 - }, - { - "ligatures": "card_travel", - "id": 845, - "order": 0 - }, - { - "ligatures": "work", - "id": 846, - "order": 0 - }, - { - "ligatures": "youtube_searched_for", - "id": 847, - "order": 0 - }, - { - "ligatures": "eject", - "id": 848, - "order": 0 - }, - { - "ligatures": "camera_enhance", - "id": 849, - "order": 0 - }, - { - "ligatures": "help_outline", - "id": 850, - "order": 0 - }, - { - "ligatures": "reorder", - "id": 851, - "order": 0 - }, - { - "ligatures": "zoom_in", - "id": 852, - "order": 0 - }, - { - "ligatures": "zoom_out", - "id": 853, - "order": 0 - }, - { - "ligatures": "http", - "id": 854, - "order": 0 - }, - { - "ligatures": "event_seat", - "id": 855, - "order": 0 - }, - { - "ligatures": "flight_land", - "id": 856, - "order": 0 - }, - { - "ligatures": "flight_takeoff", - "id": 857, - "order": 0 - }, - { - "ligatures": "play_for_work", - "id": 858, - "order": 0 - }, - { - "ligatures": "gif", - "id": 859, - "order": 0 - }, - { - "ligatures": "indeterminate_check_box", - "id": 860, - "order": 0 - }, - { - "ligatures": "offline_pin", - "id": 861, - "order": 0 - }, - { - "ligatures": "all_out", - "id": 862, - "order": 0 - }, - { - "ligatures": "copyright", - "id": 863, - "order": 0 - }, - { - "ligatures": "fingerprint", - "id": 864, - "order": 0 - }, - { - "ligatures": "gavel", - "id": 865, - "order": 0 - }, - { - "ligatures": "lightbulb_outline", - "id": 866, - "order": 0 - }, - { - "ligatures": "picture_in_picture_alt", - "id": 867, - "order": 0 - }, - { - "ligatures": "important_devices", - "id": 868, - "order": 0 - }, - { - "ligatures": "touch_app", - "id": 869, - "order": 0 - }, - { - "ligatures": "accessible", - "id": 870, - "order": 0 - }, - { - "ligatures": "compare_arrows", - "id": 871, - "order": 0 - }, - { - "ligatures": "date_range", - "id": 872, - "order": 0 - }, - { - "ligatures": "donut_large", - "id": 873, - "order": 0 - }, - { - "ligatures": "donut_small", - "id": 874, - "order": 0 - }, - { - "ligatures": "line_style", - "id": 875, - "order": 0 - }, - { - "ligatures": "line_weight", - "id": 876, - "order": 0 - }, - { - "ligatures": "motorcycle", - "id": 877, - "order": 0 - }, - { - "ligatures": "opacity", - "id": 878, - "order": 0 - }, - { - "ligatures": "pets", - "id": 879, - "order": 0 - }, - { - "ligatures": "pregnant_woman", - "id": 880, - "order": 0 - }, - { - "ligatures": "record_voice_over", - "id": 881, - "order": 0 - }, - { - "ligatures": "rounded_corner", - "id": 882, - "order": 0 - }, - { - "ligatures": "rowing", - "id": 883, - "order": 0 - }, - { - "ligatures": "timeline", - "id": 884, - "order": 0 - }, - { - "ligatures": "update", - "id": 885, - "order": 0 - }, - { - "ligatures": "watch_later", - "id": 886, - "order": 0 - }, - { - "ligatures": "pan_tool", - "id": 887, - "order": 0 - }, - { - "ligatures": "euro_symbol", - "id": 888, - "order": 0 - }, - { - "ligatures": "g_translate", - "id": 889, - "order": 0 - }, - { - "ligatures": "remove_shopping_cart", - "id": 890, - "order": 0 - }, - { - "ligatures": "restore_page", - "id": 891, - "order": 0 - }, - { - "ligatures": "speaker_notes_off", - "id": 892, - "order": 0 - }, - { - "ligatures": "delete_forever", - "id": 893, - "order": 0 - }, - { - "ligatures": "accessibility_new", - "id": 894, - "order": 0 - }, - { - "ligatures": "check_circle_outline", - "id": 895, - "order": 0 - }, - { - "ligatures": "delete_outline", - "id": 896, - "order": 0 - }, - { - "ligatures": "done_outline", - "id": 897, - "order": 0 - }, - { - "ligatures": "maximize", - "id": 898, - "order": 0 - }, - { - "ligatures": "minimize", - "id": 899, - "order": 0 - }, - { - "ligatures": "offline_bolt", - "id": 900, - "order": 0 - }, - { - "ligatures": "swap_horizontal_circle", - "id": 901, - "order": 0 - }, - { - "ligatures": "accessible_forward", - "id": 902, - "order": 0 - }, - { - "ligatures": "calendar_today", - "id": 903, - "order": 0 - }, - { - "ligatures": "calendar_view_day", - "id": 904, - "order": 0 - }, - { - "ligatures": "label_important", - "id": 905, - "order": 0 - }, - { - "ligatures": "restore_from_trash", - "id": 906, - "order": 0 - }, - { - "ligatures": "supervised_user_circle", - "id": 907, - "order": 0 - }, - { - "ligatures": "text_rotate_up", - "id": 908, - "order": 0 - }, - { - "ligatures": "text_rotate_vertical", - "id": 909, - "order": 0 - }, - { - "ligatures": "text_rotation_angledown", - "id": 910, - "order": 0 - }, - { - "ligatures": "text_rotation_angleup", - "id": 911, - "order": 0 - }, - { - "ligatures": "text_rotation_down", - "id": 912, - "order": 0 - }, - { - "ligatures": "text_rotation_none", - "id": 913, - "order": 0 - }, - { - "ligatures": "commute", - "id": 914, - "order": 0 - }, - { - "ligatures": "arrow_right_alt", - "id": 915, - "order": 0 - }, - { - "ligatures": "work_off", - "id": 916, - "order": 0 - }, - { - "ligatures": "work_outline", - "id": 917, - "order": 0 - }, - { - "ligatures": "drag_indicator", - "id": 918, - "order": 0 - }, - { - "ligatures": "horizontal_split", - "id": 919, - "order": 0 - }, - { - "ligatures": "label_important_outline", - "id": 920, - "order": 0 - }, - { - "ligatures": "vertical_split", - "id": 921, - "order": 0 - }, - { - "ligatures": "voice_over_off", - "id": 922, - "order": 0 - }, - { - "ligatures": "segment", - "id": 923, - "order": 0 - }, - { - "ligatures": "contact_support", - "id": 924, - "order": 0 - }, - { - "ligatures": "compress", - "id": 925, - "order": 0 - }, - { - "ligatures": "filter_list_alt", - "id": 926, - "order": 0 - }, - { - "ligatures": "expand", - "id": 927, - "order": 0 - }, - { - "ligatures": "edit_off", - "id": 928, - "order": 0 - }, - { - "ligatures": "10k", - "id": 929, - "order": 0 - }, - { - "ligatures": "10mp", - "id": 930, - "order": 0 - }, - { - "ligatures": "11mp", - "id": 931, - "order": 0 - }, - { - "ligatures": "12mp", - "id": 932, - "order": 0 - }, - { - "ligatures": "13mp", - "id": 933, - "order": 0 - }, - { - "ligatures": "14mp", - "id": 934, - "order": 0 - }, - { - "ligatures": "15mp", - "id": 935, - "order": 0 - }, - { - "ligatures": "16mp", - "id": 936, - "order": 0 - }, - { - "ligatures": "17mp", - "id": 937, - "order": 0 - }, - { - "ligatures": "18mp", - "id": 938, - "order": 0 - }, - { - "ligatures": "19mp", - "id": 939, - "order": 0 - }, - { - "ligatures": "1k", - "id": 940, - "order": 0 - }, - { - "ligatures": "1k_plus", - "id": 941, - "order": 0 - }, - { - "ligatures": "20mp", - "id": 942, - "order": 0 - }, - { - "ligatures": "21mp", - "id": 943, - "order": 0 - }, - { - "ligatures": "22mp", - "id": 944, - "order": 0 - }, - { - "ligatures": "23mp", - "id": 945, - "order": 0 - }, - { - "ligatures": "24mp", - "id": 946, - "order": 0 - }, - { - "ligatures": "2k", - "id": 947, - "order": 0 - }, - { - "ligatures": "2k_plus", - "id": 948, - "order": 0 - }, - { - "ligatures": "2mp", - "id": 949, - "order": 0 - }, - { - "ligatures": "3k", - "id": 950, - "order": 0 - }, - { - "ligatures": "3k_plus", - "id": 951, - "order": 0 - }, - { - "ligatures": "3mp", - "id": 952, - "order": 0 - }, - { - "ligatures": "4k_plus", - "id": 953, - "order": 0 - }, - { - "ligatures": "4mp", - "id": 954, - "order": 0 - }, - { - "ligatures": "5k", - "id": 955, - "order": 0 - }, - { - "ligatures": "5k_plus", - "id": 956, - "order": 0 - }, - { - "ligatures": "5mp", - "id": 957, - "order": 0 - }, - { - "ligatures": "6k", - "id": 958, - "order": 0 - }, - { - "ligatures": "6k_plus", - "id": 959, - "order": 0 - }, - { - "ligatures": "6mp", - "id": 960, - "order": 0 - }, - { - "ligatures": "7k", - "id": 961, - "order": 0 - }, - { - "ligatures": "7k_plus", - "id": 962, - "order": 0 - }, - { - "ligatures": "7mp", - "id": 963, - "order": 0 - }, - { - "ligatures": "8k", - "id": 964, - "order": 0 - }, - { - "ligatures": "8k_plus", - "id": 965, - "order": 0 - }, - { - "ligatures": "8mp", - "id": 966, - "order": 0 - }, - { - "ligatures": "9k", - "id": 967, - "order": 0 - }, - { - "ligatures": "9k_plus", - "id": 968, - "order": 0 - }, - { - "ligatures": "9mp", - "id": 969, - "order": 0 - }, - { - "ligatures": "account_tree", - "id": 970, - "order": 0 - }, - { - "ligatures": "add_chart", - "id": 971, - "order": 0 - }, - { - "ligatures": "add_ic_call", - "id": 972, - "order": 0, - "prevSize": 24, - "code": 59663, - "name": "add_ic_call", - "tempChar": "" - }, - { - "ligatures": "add_moderator", - "id": 973, - "order": 0 - }, - { - "ligatures": "all_inbox", - "id": 974, - "order": 0 - }, - { - "ligatures": "approval", - "id": 975, - "order": 0 - }, - { - "ligatures": "assistant_direction", - "id": 976, - "order": 0 - }, - { - "ligatures": "assistant_navigation", - "id": 977, - "order": 0 - }, - { - "ligatures": "bookmarks", - "id": 978, - "order": 0 - }, - { - "ligatures": "bus_alert", - "id": 979, - "order": 0 - }, - { - "ligatures": "cases", - "id": 980, - "order": 0 - }, - { - "ligatures": "circle_notifications", - "id": 981, - "order": 0 - }, - { - "ligatures": "closed_caption_off", - "id": 982, - "order": 0 - }, - { - "ligatures": "connected_tv", - "id": 983, - "order": 0 - }, - { - "ligatures": "dangerous", - "id": 984, - "order": 0 - }, - { - "ligatures": "dashboard_customize", - "id": 985, - "order": 0 - }, - { - "ligatures": "desktop_access_disabled", - "id": 986, - "order": 0 - }, - { - "ligatures": "drive_file_move_outline", - "id": 987, - "order": 0 - }, - { - "ligatures": "drive_file_rename_outline", - "id": 988, - "order": 0 - }, - { - "ligatures": "drive_folder_upload", - "id": 989, - "order": 0 - }, - { - "ligatures": "duo", - "id": 990, - "order": 0 - }, - { - "ligatures": "explore_off", - "id": 991, - "order": 0 - }, - { - "ligatures": "file_download_done", - "id": 992, - "order": 0 - }, - { - "ligatures": "rtt", - "id": 993, - "order": 0 - }, - { - "ligatures": "grid_view", - "id": 994, - "order": 0 - }, - { - "ligatures": "hail", - "id": 995, - "order": 0 - }, - { - "ligatures": "home_filled", - "id": 996, - "order": 0 - }, - { - "ligatures": "imagesearch_roller", - "id": 997, - "order": 0 - }, - { - "ligatures": "label_off", - "id": 998, - "order": 0 - }, - { - "ligatures": "library_add_check", - "id": 999, - "order": 0 - }, - { - "ligatures": "logout", - "id": 1000, - "order": 0 - }, - { - "ligatures": "margin", - "id": 1001, - "order": 0 - }, - { - "ligatures": "mark_as_unread", - "id": 1002, - "order": 0 - }, - { - "ligatures": "menu_open", - "id": 1003, - "order": 0 - }, - { - "ligatures": "mp", - "id": 1004, - "order": 0 - }, - { - "ligatures": "offline_share", - "id": 1005, - "order": 0 - }, - { - "ligatures": "padding", - "id": 1006, - "order": 0 - }, - { - "ligatures": "panorama_photosphere", - "id": 1007, - "order": 0 - }, - { - "ligatures": "panorama_photosphere_select", - "id": 1008, - "order": 0 - }, - { - "ligatures": "person_add_disabled", - "id": 1009, - "order": 0 - }, - { - "ligatures": "phone_disabled", - "id": 1010, - "order": 0, - "prevSize": 24, - "code": 59664, - "name": "phone_disabled", - "tempChar": "" - }, - { - "ligatures": "phone_enabled", - "id": 1011, - "order": 0 - }, - { - "ligatures": "pivot_table_chart", - "id": 1012, - "order": 0 - }, - { - "ligatures": "print_disabled", - "id": 1013, - "order": 0 - }, - { - "ligatures": "railway_alert", - "id": 1014, - "order": 0 - }, - { - "ligatures": "recommend", - "id": 1015, - "order": 0 - }, - { - "ligatures": "remove_done", - "id": 1016, - "order": 0 - }, - { - "ligatures": "remove_moderator", - "id": 1017, - "order": 0 - }, - { - "ligatures": "repeat_on", - "id": 1018, - "order": 0 - }, - { - "ligatures": "repeat_one_on", - "id": 1019, - "order": 0 - }, - { - "ligatures": "replay_circle_filled", - "id": 1020, - "order": 0 - }, - { - "ligatures": "reset_tv", - "id": 1021, - "order": 0 - }, - { - "ligatures": "sd", - "id": 1022, - "order": 0 - }, - { - "ligatures": "shield", - "id": 1023, - "order": 0 - }, - { - "ligatures": "shuffle_on", - "id": 1024, - "order": 0 - }, - { - "ligatures": "speed", - "id": 1025, - "order": 0 - }, - { - "ligatures": "stacked_bar_chart", - "id": 1026, - "order": 0 - }, - { - "ligatures": "stream", - "id": 1027, - "order": 0 - }, - { - "ligatures": "swipe", - "id": 1028, - "order": 0 - }, - { - "ligatures": "switch_account", - "id": 1029, - "order": 0 - }, - { - "ligatures": "tag", - "id": 1030, - "order": 0 - }, - { - "ligatures": "thumb_down_off_alt", - "id": 1031, - "order": 0 - }, - { - "ligatures": "thumb_up_off_alt", - "id": 1032, - "order": 0 - }, - { - "ligatures": "toggle_off", - "id": 1033, - "order": 0, - "prevSize": 24, - "code": 59665, - "name": "toggle_off", - "tempChar": "" - }, - { - "ligatures": "toggle_on", - "id": 1034, - "order": 0, - "prevSize": 24, - "code": 59666, - "name": "toggle_on", - "tempChar": "" - }, - { - "ligatures": "two_wheeler", - "id": 1035, - "order": 0 - }, - { - "ligatures": "upload_file", - "id": 1036, - "order": 0 - }, - { - "ligatures": "view_in_ar", - "id": 1037, - "order": 0 - }, - { - "ligatures": "waterfall_chart", - "id": 1038, - "order": 0 - }, - { - "ligatures": "wb_shade", - "id": 1039, - "order": 0 - }, - { - "ligatures": "wb_twighlight", - "id": 1040, - "order": 0 - }, - { - "ligatures": "home_work", - "id": 1041, - "order": 0 - }, - { - "ligatures": "schedule_send", - "id": 1042, - "order": 0 - }, - { - "ligatures": "bolt", - "id": 1043, - "order": 0 - }, - { - "ligatures": "send_and_archive", - "id": 1044, - "order": 0 - }, - { - "ligatures": "workspaces_filled", - "id": 1045, - "order": 0 - }, - { - "ligatures": "file_present", - "id": 1046, - "order": 0 - }, - { - "ligatures": "workspaces_outline", - "id": 1047, - "order": 0 - }, - { - "ligatures": "fit_screen", - "id": 1048, - "order": 0 - }, - { - "ligatures": "saved_search", - "id": 1049, - "order": 0 - }, - { - "ligatures": "storefront", - "id": 1050, - "order": 0 - }, - { - "ligatures": "amp_stories", - "id": 1051, - "order": 0 - }, - { - "ligatures": "dynamic_feed", - "id": 1052, - "order": 0 - }, - { - "ligatures": "euro", - "id": 1053, - "order": 0 - }, - { - "ligatures": "height", - "id": 1054, - "order": 0 - }, - { - "ligatures": "policy", - "id": 1055, - "order": 0 - }, - { - "ligatures": "sync_alt", - "id": 1056, - "order": 0 - }, - { - "ligatures": "menu_book", - "id": 1057, - "order": 0 - }, - { - "ligatures": "emoji_flags", - "id": 1058, - "order": 0 - }, - { - "ligatures": "emoji_food_beverage", - "id": 1059, - "order": 0 - }, - { - "ligatures": "emoji_nature", - "id": 1060, - "order": 0 - }, - { - "ligatures": "emoji_people", - "id": 1061, - "order": 0, - "prevSize": 24, - "code": 59650, - "name": "player", - "tempChar": "" - }, - { - "ligatures": "emoji_symbols", - "id": 1062, - "order": 0 - }, - { - "ligatures": "emoji_transportation", - "id": 1063, - "order": 0 - }, - { - "ligatures": "post_add", - "id": 1064, - "order": 0 - }, - { - "ligatures": "people_alt", - "id": 1065, - "order": 0 - }, - { - "ligatures": "emoji_emotions", - "id": 1066, - "order": 0 - }, - { - "ligatures": "emoji_events", - "id": 1067, - "order": 0 - }, - { - "ligatures": "emoji_objects", - "id": 1068, - "order": 0 - }, - { - "ligatures": "sports_basketball", - "id": 1069, - "order": 0 - }, - { - "ligatures": "sports_cricket", - "id": 1070, - "order": 0 - }, - { - "ligatures": "sports_esports", - "id": 1071, - "order": 0 - }, - { - "ligatures": "sports_football", - "id": 1072, - "order": 0 - }, - { - "ligatures": "sports_golf", - "id": 1073, - "order": 0 - }, - { - "ligatures": "sports_hockey", - "id": 1074, - "order": 0 - }, - { - "ligatures": "sports_mma", - "id": 1075, - "order": 0 - }, - { - "ligatures": "sports_motorsports", - "id": 1076, - "order": 0 - }, - { - "ligatures": "sports_rugby", - "id": 1077, - "order": 0 - }, - { - "ligatures": "sports_soccer", - "id": 1078, - "order": 0, - "prevSize": 24, - "code": 59651, - "name": "ball2", - "tempChar": "" - }, - { - "ligatures": "sports", - "id": 1079, - "order": 0 - }, - { - "ligatures": "sports_volleyball", - "id": 1080, - "order": 0 - }, - { - "ligatures": "sports_tennis", - "id": 1081, - "order": 0 - }, - { - "ligatures": "sports_handball", - "id": 1082, - "order": 0 - }, - { - "ligatures": "sports_kabaddi", - "id": 1083, - "order": 0 - }, - { - "ligatures": "eco", - "id": 1084, - "order": 0 - }, - { - "ligatures": "museum", - "id": 1085, - "order": 0 - }, - { - "ligatures": "flip_camera_android", - "id": 1086, - "order": 0 - }, - { - "ligatures": "flip_camera_ios", - "id": 1087, - "order": 0 - }, - { - "ligatures": "cancel_schedule_send", - "id": 1088, - "order": 0 - }, - { - "ligatures": "apartment", - "id": 1089, - "order": 0 - }, - { - "ligatures": "bathtub", - "id": 1090, - "order": 0 - }, - { - "ligatures": "deck", - "id": 1091, - "order": 0 - }, - { - "ligatures": "fireplace", - "id": 1092, - "order": 0 - }, - { - "ligatures": "house", - "id": 1093, - "order": 0 - }, - { - "ligatures": "king_bed", - "id": 1094, - "order": 0 - }, - { - "ligatures": "nights_stay", - "id": 1095, - "order": 0 - }, - { - "ligatures": "outdoor_grill", - "id": 1096, - "order": 0 - }, - { - "ligatures": "single_bed", - "id": 1097, - "order": 0 - }, - { - "ligatures": "square_foot", - "id": 1098, - "order": 0 - }, - { - "ligatures": "double_arrow", - "id": 1099, - "order": 0 - }, - { - "ligatures": "sports_baseball", - "id": 1100, - "order": 0, - "prevSize": 24, - "code": 59652, - "name": "ball3", - "tempChar": "" - }, - { - "ligatures": "attractions", - "id": 1101, - "order": 0 - }, - { - "ligatures": "bakery_dining", - "id": 1102, - "order": 0 - }, - { - "ligatures": "breakfast_dining", - "id": 1103, - "order": 0 - }, - { - "ligatures": "car_rental", - "id": 1104, - "order": 0 - }, - { - "ligatures": "car_repair", - "id": 1105, - "order": 0 - }, - { - "ligatures": "dinner_dining", - "id": 1106, - "order": 0 - }, - { - "ligatures": "dry_cleaning", - "id": 1107, - "order": 0 - }, - { - "ligatures": "hardware", - "id": 1108, - "order": 0 - }, - { - "ligatures": "liquor", - "id": 1109, - "order": 0 - }, - { - "ligatures": "lunch_dining", - "id": 1110, - "order": 0 - }, - { - "ligatures": "nightlife", - "id": 1111, - "order": 0 - }, - { - "ligatures": "park", - "id": 1112, - "order": 0 - }, - { - "ligatures": "ramen_dining", - "id": 1113, - "order": 0 - }, - { - "ligatures": "celebration", - "id": 1114, - "order": 0 - }, - { - "ligatures": "theater_comedy", - "id": 1115, - "order": 0 - }, - { - "ligatures": "badge", - "id": 1116, - "order": 0 - }, - { - "ligatures": "festival", - "id": 1117, - "order": 0 - }, - { - "ligatures": "icecream", - "id": 1118, - "order": 0 - }, - { - "ligatures": "volunteer_activism", - "id": 1119, - "order": 0 - }, - { - "ligatures": "contactless", - "id": 1120, - "order": 0 - }, - { - "ligatures": "delivery_dining", - "id": 1121, - "order": 0 - }, - { - "ligatures": "brunch_dining", - "id": 1122, - "order": 0 - }, - { - "ligatures": "takeout_dining", - "id": 1123, - "order": 0 - }, - { - "ligatures": "ac_unit", - "id": 1124, - "order": 0 - }, - { - "ligatures": "airport_shuttle", - "id": 1125, - "order": 0 - }, - { - "ligatures": "all_inclusive", - "id": 1126, - "order": 0 - }, - { - "ligatures": "beach_access", - "id": 1127, - "order": 0 - }, - { - "ligatures": "business_center", - "id": 1128, - "order": 0 - }, - { - "ligatures": "casino", - "id": 1129, - "order": 0 - }, - { - "ligatures": "child_care", - "id": 1130, - "order": 0 - }, - { - "ligatures": "child_friendly", - "id": 1131, - "order": 0 - }, - { - "ligatures": "fitness_center", - "id": 1132, - "order": 0 - }, - { - "ligatures": "golf_course", - "id": 1133, - "order": 0 - }, - { - "ligatures": "hot_tub", - "id": 1134, - "order": 0 - }, - { - "ligatures": "kitchen", - "id": 1135, - "order": 0 - }, - { - "ligatures": "pool", - "id": 1136, - "order": 0 - }, - { - "ligatures": "room_service", - "id": 1137, - "order": 0 - }, - { - "ligatures": "smoke_free", - "id": 1138, - "order": 0 - }, - { - "ligatures": "smoking_rooms", - "id": 1139, - "order": 0 - }, - { - "ligatures": "spa", - "id": 1140, - "order": 0 - }, - { - "ligatures": "no_meeting_room", - "id": 1141, - "order": 0 - }, - { - "ligatures": "meeting_room", - "id": 1142, - "order": 0 - }, - { - "ligatures": "goat", - "id": 1143, - "order": 0 - }, - { - "ligatures": "5g", - "id": 1144, - "order": 0 - }, - { - "ligatures": "ad_units", - "id": 1145, - "order": 0 - }, - { - "ligatures": "add_business", - "id": 1146, - "order": 0 - }, - { - "ligatures": "add_location_alt", - "id": 1147, - "order": 0 - }, - { - "ligatures": "add_road", - "id": 1148, - "order": 0 - }, - { - "ligatures": "add_to_drive", - "id": 1149, - "order": 0 - }, - { - "ligatures": "addchart", - "id": 1150, - "order": 0 - }, - { - "ligatures": "admin_panel_settings", - "id": 1151, - "order": 0 - }, - { - "ligatures": "agriculture", - "id": 1152, - "order": 0 - }, - { - "ligatures": "alt_route", - "id": 1153, - "order": 0 - }, - { - "ligatures": "analytics", - "id": 1154, - "order": 0 - }, - { - "ligatures": "anchor", - "id": 1155, - "order": 0 - }, - { - "ligatures": "animation", - "id": 1156, - "order": 0 - }, - { - "ligatures": "api", - "id": 1157, - "order": 0 - }, - { - "ligatures": "app_blocking", - "id": 1158, - "order": 0 - }, - { - "ligatures": "app_registration", - "id": 1159, - "order": 0 - }, - { - "ligatures": "app_settings_alt", - "id": 1160, - "order": 0 - }, - { - "ligatures": "architecture", - "id": 1161, - "order": 0 - }, - { - "ligatures": "arrow_circle_down", - "id": 1162, - "order": 0 - }, - { - "ligatures": "arrow_circle_up", - "id": 1163, - "order": 0 - }, - { - "ligatures": "article", - "id": 1164, - "order": 0 - }, - { - "ligatures": "attach_email", - "id": 1165, - "order": 0 - }, - { - "ligatures": "auto_awesome", - "id": 1166, - "order": 0 - }, - { - "ligatures": "auto_awesome_mosaic", - "id": 1167, - "order": 0 - }, - { - "ligatures": "auto_awesome_motion", - "id": 1168, - "order": 0 - }, - { - "ligatures": "auto_delete", - "id": 1169, - "order": 0 - }, - { - "ligatures": "auto_fix_high", - "id": 1170, - "order": 0 - }, - { - "ligatures": "auto_fix_normal", - "id": 1171, - "order": 0 - }, - { - "ligatures": "auto_fix_off", - "id": 1172, - "order": 0 - }, - { - "ligatures": "auto_stories", - "id": 1173, - "order": 0 - }, - { - "ligatures": "baby_changing_station", - "id": 1174, - "order": 0 - }, - { - "ligatures": "backpack", - "id": 1175, - "order": 0 - }, - { - "ligatures": "backup_table", - "id": 1176, - "order": 0 - }, - { - "ligatures": "batch_prediction", - "id": 1177, - "order": 0 - }, - { - "ligatures": "bedtime", - "id": 1178, - "order": 0 - }, - { - "ligatures": "bento", - "id": 1179, - "order": 0 - }, - { - "ligatures": "bike_scooter", - "id": 1180, - "order": 0 - }, - { - "ligatures": "biotech", - "id": 1181, - "order": 0 - }, - { - "ligatures": "block_flipped", - "id": 1182, - "order": 0 - }, - { - "ligatures": "browser_not_supported", - "id": 1183, - "order": 0 - }, - { - "ligatures": "build_circle", - "id": 1184, - "order": 0 - }, - { - "ligatures": "calculate", - "id": 1185, - "order": 0 - }, - { - "ligatures": "campaign", - "id": 1186, - "order": 0 - }, - { - "ligatures": "carpenter", - "id": 1187, - "order": 0 - }, - { - "ligatures": "cast_for_education", - "id": 1188, - "order": 0 - }, - { - "ligatures": "charging_station", - "id": 1189, - "order": 0 - }, - { - "ligatures": "checkroom", - "id": 1190, - "order": 0 - }, - { - "ligatures": "circle", - "id": 1191, - "order": 0 - }, - { - "ligatures": "cleaning_services", - "id": 1192, - "order": 0 - }, - { - "ligatures": "close_fullscreen", - "id": 1193, - "order": 0 - }, - { - "ligatures": "closed_caption_disabled", - "id": 1194, - "order": 0 - }, - { - "ligatures": "comment_bank", - "id": 1195, - "order": 0 - }, - { - "ligatures": "construction", - "id": 1196, - "order": 0 - }, - { - "ligatures": "corporate_fare", - "id": 1197, - "order": 0 - }, - { - "ligatures": "countertops", - "id": 1198, - "order": 0 - }, - { - "ligatures": "design_services", - "id": 1199, - "order": 0 - }, - { - "ligatures": "directions_off", - "id": 1200, - "order": 0 - }, - { - "ligatures": "dirty_lens", - "id": 1201, - "order": 0 - }, - { - "ligatures": "do_not_step", - "id": 1202, - "order": 0 - }, - { - "ligatures": "do_not_touch", - "id": 1203, - "order": 0 - }, - { - "ligatures": "domain_verification", - "id": 1204, - "order": 0 - }, - { - "ligatures": "drive_file_move", - "id": 1205, - "order": 0 - }, - { - "ligatures": "dry", - "id": 1206, - "order": 0 - }, - { - "ligatures": "dynamic_form", - "id": 1207, - "order": 0 - }, - { - "ligatures": "east", - "id": 1208, - "order": 0 - }, - { - "ligatures": "edit_road", - "id": 1209, - "order": 0 - }, - { - "ligatures": "electric_bike", - "id": 1210, - "order": 0 - }, - { - "ligatures": "electric_car", - "id": 1211, - "order": 0 - }, - { - "ligatures": "electric_moped", - "id": 1212, - "order": 0 - }, - { - "ligatures": "electric_rickshaw", - "id": 1213, - "order": 0 - }, - { - "ligatures": "electric_scooter", - "id": 1214, - "order": 0 - }, - { - "ligatures": "electrical_services", - "id": 1215, - "order": 0 - }, - { - "ligatures": "elevator", - "id": 1216, - "order": 0 - }, - { - "ligatures": "engineering", - "id": 1217, - "order": 0 - }, - { - "ligatures": "escalator", - "id": 1218, - "order": 0 - }, - { - "ligatures": "escalator_warning", - "id": 1219, - "order": 0 - }, - { - "ligatures": "face_retouching_natural", - "id": 1220, - "order": 0 - }, - { - "ligatures": "fact_check", - "id": 1221, - "order": 0 - }, - { - "ligatures": "family_restroom", - "id": 1222, - "order": 0 - }, - { - "ligatures": "fence", - "id": 1223, - "order": 0 - }, - { - "ligatures": "filter_alt", - "id": 1224, - "order": 0 - }, - { - "ligatures": "fire_extinguisher, fire_hydrant", - "id": 1225, - "order": 0 - }, - { - "ligatures": "flaky", - "id": 1226, - "order": 0 - }, - { - "ligatures": "food_bank", - "id": 1227, - "order": 0 - }, - { - "ligatures": "forward_to_inbox", - "id": 1228, - "order": 0 - }, - { - "ligatures": "foundation", - "id": 1229, - "order": 0 - }, - { - "ligatures": "grading", - "id": 1230, - "order": 0 - }, - { - "ligatures": "grass", - "id": 1231, - "order": 0 - }, - { - "ligatures": "handyman", - "id": 1232, - "order": 0 - }, - { - "ligatures": "hdr_enhanced_select", - "id": 1233, - "order": 0 - }, - { - "ligatures": "hearing_disabled", - "id": 1234, - "order": 0 - }, - { - "ligatures": "help_center", - "id": 1235, - "order": 0 - }, - { - "ligatures": "highlight_alt", - "id": 1236, - "order": 0 - }, - { - "ligatures": "history_edu", - "id": 1237, - "order": 0 - }, - { - "ligatures": "history_toggle_off", - "id": 1238, - "order": 0 - }, - { - "ligatures": "home_repair_service", - "id": 1239, - "order": 0 - }, - { - "ligatures": "horizontal_rule", - "id": 1240, - "order": 0 - }, - { - "ligatures": "hourglass_bottom", - "id": 1241, - "order": 0 - }, - { - "ligatures": "hourglass_disabled", - "id": 1242, - "order": 0 - }, - { - "ligatures": "hourglass_top", - "id": 1243, - "order": 0 - }, - { - "ligatures": "house_siding", - "id": 1244, - "order": 0 - }, - { - "ligatures": "hvac", - "id": 1245, - "order": 0 - }, - { - "ligatures": "image_not_supported", - "id": 1246, - "order": 0 - }, - { - "ligatures": "insights", - "id": 1247, - "order": 0 - }, - { - "ligatures": "integration_instructions", - "id": 1248, - "order": 0 - }, - { - "ligatures": "ios_share", - "id": 1249, - "order": 0 - }, - { - "ligatures": "legend_toggle", - "id": 1250, - "order": 0 - }, - { - "ligatures": "local_fire_department", - "id": 1251, - "order": 0 - }, - { - "ligatures": "local_police", - "id": 1252, - "order": 0 - }, - { - "ligatures": "location_pin", - "id": 1253, - "order": 0 - }, - { - "ligatures": "lock_clock", - "id": 1254, - "order": 0 - }, - { - "ligatures": "login", - "id": 1255, - "order": 0 - }, - { - "ligatures": "maps_ugc", - "id": 1256, - "order": 0 - }, - { - "ligatures": "mark_chat_read", - "id": 1257, - "order": 0 - }, - { - "ligatures": "mark_chat_unread", - "id": 1258, - "order": 0 - }, - { - "ligatures": "mark_email_read", - "id": 1259, - "order": 0 - }, - { - "ligatures": "mark_email_unread", - "id": 1260, - "order": 0 - }, - { - "ligatures": "mediation", - "id": 1261, - "order": 0 - }, - { - "ligatures": "medical_services", - "id": 1262, - "order": 0 - }, - { - "ligatures": "mic_external_off", - "id": 1263, - "order": 0 - }, - { - "ligatures": "mic_external_on", - "id": 1264, - "order": 0 - }, - { - "ligatures": "microwave", - "id": 1265, - "order": 0 - }, - { - "ligatures": "military_tech", - "id": 1266, - "order": 0 - }, - { - "ligatures": "miscellaneous_services", - "id": 1267, - "order": 0 - }, - { - "ligatures": "model_training", - "id": 1268, - "order": 0 - }, - { - "ligatures": "monitor", - "id": 1269, - "order": 0 - }, - { - "ligatures": "moped", - "id": 1270, - "order": 0 - }, - { - "ligatures": "more_time", - "id": 1271, - "order": 0 - }, - { - "ligatures": "motion_photos_off", - "id": 1272, - "order": 0 - }, - { - "ligatures": "motion_photos_on", - "id": 1273, - "order": 0 - }, - { - "ligatures": "motion_photos_paused, motion_photos_pause", - "id": 1274, - "order": 0 - }, - { - "ligatures": "multiple_stop", - "id": 1275, - "order": 0 - }, - { - "ligatures": "nat", - "id": 1276, - "order": 0 - }, - { - "ligatures": "near_me_disabled", - "id": 1277, - "order": 0 - }, - { - "ligatures": "next_plan", - "id": 1278, - "order": 0 - }, - { - "ligatures": "night_shelter", - "id": 1279, - "order": 0 - }, - { - "ligatures": "nightlight_round", - "id": 1280, - "order": 0 - }, - { - "ligatures": "no_cell", - "id": 1281, - "order": 0 - }, - { - "ligatures": "no_drinks", - "id": 1282, - "order": 0 - }, - { - "ligatures": "no_flash", - "id": 1283, - "order": 0 - }, - { - "ligatures": "no_food", - "id": 1284, - "order": 0 - }, - { - "ligatures": "no_meals, no_meals_ouline", - "id": 1285, - "order": 0 - }, - { - "ligatures": "no_photography", - "id": 1286, - "order": 0 - }, - { - "ligatures": "no_stroller", - "id": 1287, - "order": 0 - }, - { - "ligatures": "no_transfer", - "id": 1288, - "order": 0 - }, - { - "ligatures": "north", - "id": 1289, - "order": 0 - }, - { - "ligatures": "north_east", - "id": 1290, - "order": 0 - }, - { - "ligatures": "north_west", - "id": 1291, - "order": 0 - }, - { - "ligatures": "not_accessible", - "id": 1292, - "order": 0 - }, - { - "ligatures": "not_started", - "id": 1293, - "order": 0 - }, - { - "ligatures": "online_prediction", - "id": 1294, - "order": 0 - }, - { - "ligatures": "open_in_full", - "id": 1295, - "order": 0 - }, - { - "ligatures": "outbox", - "id": 1296, - "order": 0 - }, - { - "ligatures": "outgoing_mail", - "id": 1297, - "order": 0 - }, - { - "ligatures": "outlet", - "id": 1298, - "order": 0 - }, - { - "ligatures": "panorama_horizontal_select", - "id": 1299, - "order": 0 - }, - { - "ligatures": "panorama_vertical_select", - "id": 1300, - "order": 0 - }, - { - "ligatures": "panorama_wide_angle_select", - "id": 1301, - "order": 0 - }, - { - "ligatures": "payments", - "id": 1302, - "order": 0 - }, - { - "ligatures": "pedal_bike", - "id": 1303, - "order": 0 - }, - { - "ligatures": "pending", - "id": 1304, - "order": 0 - }, - { - "ligatures": "pending_actions", - "id": 1305, - "order": 0 - }, - { - "ligatures": "person_add_alt", - "id": 1306, - "order": 0 - }, - { - "ligatures": "person_add_alt_1", - "id": 1307, - "order": 0 - }, - { - "ligatures": "person_remove, person_remove_alt_1", - "id": 1308, - "order": 0 - }, - { - "ligatures": "person_search", - "id": 1309, - "order": 0 - }, - { - "ligatures": "pest_control", - "id": 1310, - "order": 0, - "prevSize": 24, - "code": 59667, - "name": "pest_control", - "tempChar": "" - }, - { - "ligatures": "pest_control_rodent", - "id": 1311, - "order": 0 - }, - { - "ligatures": "photo_camera_back", - "id": 1312, - "order": 0 - }, - { - "ligatures": "photo_camera_front", - "id": 1313, - "order": 0 - }, - { - "ligatures": "plagiarism", - "id": 1314, - "order": 0 - }, - { - "ligatures": "play_disabled", - "id": 1315, - "order": 0 - }, - { - "ligatures": "plumbing", - "id": 1316, - "order": 0 - }, - { - "ligatures": "point_of_sale", - "id": 1317, - "order": 0 - }, - { - "ligatures": "preview", - "id": 1318, - "order": 0 - }, - { - "ligatures": "privacy_tip", - "id": 1319, - "order": 0 - }, - { - "ligatures": "psychology", - "id": 1320, - "order": 0 - }, - { - "ligatures": "public_off", - "id": 1321, - "order": 0 - }, - { - "ligatures": "push_pin", - "id": 1322, - "order": 0 - }, - { - "ligatures": "qr_code", - "id": 1323, - "order": 0, - "prevSize": 24, - "code": 59668, - "name": "qr_code", - "tempChar": "" - }, - { - "ligatures": "qr_code_scanner", - "id": 1324, - "order": 0 - }, - { - "ligatures": "quickreply", - "id": 1325, - "order": 0 - }, - { - "ligatures": "read_more", - "id": 1326, - "order": 0 - }, - { - "ligatures": "receipt_long", - "id": 1327, - "order": 0 - }, - { - "ligatures": "request_quote", - "id": 1328, - "order": 0 - }, - { - "ligatures": "rice_bowl", - "id": 1329, - "order": 0 - }, - { - "ligatures": "roofing", - "id": 1330, - "order": 0 - }, - { - "ligatures": "room_preferences", - "id": 1331, - "order": 0 - }, - { - "ligatures": "rule", - "id": 1332, - "order": 0 - }, - { - "ligatures": "rule_folder", - "id": 1333, - "order": 0 - }, - { - "ligatures": "run_circle", - "id": 1334, - "order": 0 - }, - { - "ligatures": "science", - "id": 1335, - "order": 0 - }, - { - "ligatures": "screen_search_desktop", - "id": 1336, - "order": 0 - }, - { - "ligatures": "search_off", - "id": 1337, - "order": 0 - }, - { - "ligatures": "self_improvement", - "id": 1338, - "order": 0 - }, - { - "ligatures": "sensor_door", - "id": 1339, - "order": 0 - }, - { - "ligatures": "sensor_window", - "id": 1340, - "order": 0 - }, - { - "ligatures": "set_meal", - "id": 1341, - "order": 0 - }, - { - "ligatures": "shopping_bag", - "id": 1342, - "order": 0 - }, - { - "ligatures": "signal_cellular_0_bar", - "id": 1343, - "order": 0 - }, - { - "ligatures": "signal_wifi_0_bar", - "id": 1344, - "order": 0 - }, - { - "ligatures": "smart_button", - "id": 1345, - "order": 0 - }, - { - "ligatures": "snippet_folder", - "id": 1346, - "order": 0 - }, - { - "ligatures": "soap", - "id": 1347, - "order": 0 - }, - { - "ligatures": "source, topic", - "id": 1348, - "order": 0 - }, - { - "ligatures": "south", - "id": 1349, - "order": 0 - }, - { - "ligatures": "south_east", - "id": 1350, - "order": 0 - }, - { - "ligatures": "south_west", - "id": 1351, - "order": 0 - }, - { - "ligatures": "sports_bar", - "id": 1352, - "order": 0 - }, - { - "ligatures": "stairs", - "id": 1353, - "order": 0 - }, - { - "ligatures": "star_outline", - "id": 1354, - "order": 0 - }, - { - "ligatures": "star_rate", - "id": 1355, - "order": 0 - }, - { - "ligatures": "sticky_note_2", - "id": 1356, - "order": 0 - }, - { - "ligatures": "stop_circle", - "id": 1357, - "order": 0 - }, - { - "ligatures": "stroller", - "id": 1358, - "order": 0 - }, - { - "ligatures": "subscript", - "id": 1359, - "order": 0 - }, - { - "ligatures": "subtitles_off", - "id": 1360, - "order": 0 - }, - { - "ligatures": "superscript", - "id": 1361, - "order": 0 - }, - { - "ligatures": "support", - "id": 1362, - "order": 0 - }, - { - "ligatures": "support_agent", - "id": 1363, - "order": 0 - }, - { - "ligatures": "switch_left", - "id": 1364, - "order": 0 - }, - { - "ligatures": "switch_right", - "id": 1365, - "order": 0 - }, - { - "ligatures": "table_rows", - "id": 1366, - "order": 0 - }, - { - "ligatures": "table_view", - "id": 1367, - "order": 0 - }, - { - "ligatures": "tapas", - "id": 1368, - "order": 0 - }, - { - "ligatures": "taxi_alert", - "id": 1369, - "order": 0 - }, - { - "ligatures": "text_snippet", - "id": 1370, - "order": 0 - }, - { - "ligatures": "tour", - "id": 1371, - "order": 0 - }, - { - "ligatures": "tty", - "id": 1372, - "order": 0 - }, - { - "ligatures": "umbrella", - "id": 1373, - "order": 0 - }, - { - "ligatures": "upgrade", - "id": 1374, - "order": 0 - }, - { - "ligatures": "verified", - "id": 1375, - "order": 0 - }, - { - "ligatures": "video_settings", - "id": 1376, - "order": 0 - }, - { - "ligatures": "view_sidebar", - "id": 1377, - "order": 0 - }, - { - "ligatures": "wash", - "id": 1378, - "order": 0 - }, - { - "ligatures": "water_damage", - "id": 1379, - "order": 0 - }, - { - "ligatures": "west", - "id": 1380, - "order": 0 - }, - { - "ligatures": "wheelchair_pickup", - "id": 1381, - "order": 0 - }, - { - "ligatures": "wifi_calling", - "id": 1382, - "order": 0 - }, - { - "ligatures": "wifi_protected_setup", - "id": 1383, - "order": 0 - }, - { - "ligatures": "wine_bar", - "id": 1384, - "order": 0 - }, - { - "ligatures": "wrong_location", - "id": 1385, - "order": 0 - }, - { - "ligatures": "wysiwyg", - "id": 1386, - "order": 0 - }, - { - "ligatures": "leaderboard", - "id": 1387, - "order": 0 - }, - { - "ligatures": "6_ft_apart", - "id": 1388, - "order": 0 - }, - { - "ligatures": "book_online", - "id": 1389, - "order": 0 - }, - { - "ligatures": "clean_hands", - "id": 1390, - "order": 0 - }, - { - "ligatures": "connect_without_contact", - "id": 1391, - "order": 0 - }, - { - "ligatures": "coronavirus", - "id": 1392, - "order": 0 - }, - { - "ligatures": "elderly", - "id": 1393, - "order": 0 - }, - { - "ligatures": "follow_the_signs", - "id": 1394, - "order": 0 - }, - { - "ligatures": "leave_bags_at_home", - "id": 1395, - "order": 0 - }, - { - "ligatures": "masks", - "id": 1396, - "order": 0 - }, - { - "ligatures": "reduce_capacity", - "id": 1397, - "order": 0 - }, - { - "ligatures": "sanitizer", - "id": 1398, - "order": 0 - }, - { - "ligatures": "send_to_mobile", - "id": 1399, - "order": 0 - }, - { - "ligatures": "sick", - "id": 1400, - "order": 0 - }, - { - "ligatures": "add_task", - "id": 1401, - "order": 0 - }, - { - "ligatures": "contact_page", - "id": 1402, - "order": 0 - }, - { - "ligatures": "disabled_by_default", - "id": 1403, - "order": 0 - }, - { - "ligatures": "facebook", - "id": 1404, - "order": 0 - }, - { - "ligatures": "groups", - "id": 1405, - "order": 0 - }, - { - "ligatures": "luggage", - "id": 1406, - "order": 0 - }, - { - "ligatures": "no_backpack", - "id": 1407, - "order": 0 - }, - { - "ligatures": "no_luggage", - "id": 1408, - "order": 0 - }, - { - "ligatures": "outbond", - "id": 1409, - "order": 0 - }, - { - "ligatures": "published_with_changes", - "id": 1410, - "order": 0 - }, - { - "ligatures": "request_page", - "id": 1411, - "order": 0 - }, - { - "ligatures": "stacked_line_chart", - "id": 1412, - "order": 0 - }, - { - "ligatures": "unpublished", - "id": 1413, - "order": 0 - }, - { - "ligatures": "align_horizontal_center", - "id": 1414, - "order": 0 - }, - { - "ligatures": "align_horizontal_left", - "id": 1415, - "order": 0 - }, - { - "ligatures": "align_horizontal_right", - "id": 1416, - "order": 0 - }, - { - "ligatures": "align_vertical_bottom", - "id": 1417, - "order": 0 - }, - { - "ligatures": "align_vertical_center", - "id": 1418, - "order": 0 - }, - { - "ligatures": "align_vertical_top", - "id": 1419, - "order": 0 - }, - { - "ligatures": "horizontal_distribute", - "id": 1420, - "order": 0 - }, - { - "ligatures": "qr_code_2", - "id": 1421, - "order": 0 - }, - { - "ligatures": "update_disabled", - "id": 1422, - "order": 0 - }, - { - "ligatures": "vertical_distribute", - "id": 1423, - "order": 0 - } - ], - "id": 0, - "metadata": { - "name": "Material Icons", - "url": "https://material.io/resources/icons", - "designer": "Google", - "designerURL": "https://design.google", - "licenseURL": "https://www.apache.org/licenses/LICENSE-2.0.txt", - "license": "Apache License Version 2.0" - }, - "height": 1024, - "prevSize": 24, - "icons": [ - { - "id": 0, - "paths": [ - "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "error" - ], - "grid": 24 - }, - { - "id": 1, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 298h84v256h-84v-256zM470 640h84v86h-84v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "error_outline" - ], - "grid": 24 - }, - { - "id": 2, - "paths": [ - "M554 598v-172h-84v172h84zM554 768v-86h-84v86h84zM42 896l470-810 470 810h-940z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "warning", - "report_problem" - ], - "grid": 24 - }, - { - "id": 3, - "paths": [ - "M682 556v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM806 718l90 90v46h-768v-46l90-90v-248q0-96 66-180t160-106v-30q0-28 20-48t48-20 48 20 20 48v30q98 22 162 103t64 183v248zM428 896h168q0 34-25 60t-59 26-59-26-25-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_alert" - ], - "grid": 24 - }, - { - "id": 4, - "paths": [ - "M512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25zM554 512v-170h-84v170h84zM554 682v-84h-84v84h84zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notification_important" - ], - "grid": 24 - }, - { - "id": 5, - "paths": [ - "M512 470q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM512 704q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "album" - ], - "grid": 24 - }, - { - "id": 6, - "paths": [ - "M256 512q0-18 12-30t30-12 31 12 13 30-13 30-31 12-30-12-12-30zM768 512q0 18-12 30t-30 12-31-12-13-30 13-30 31-12 30 12 12 30zM470 128h42q160 0 272 112t112 272-112 272-272 112-272-112-112-272q0-192 154-306v-2l290 290-60 60-232-230q-66 82-66 188 0 124 87 211t211 87 211-87 87-211q0-112-74-196t-182-100v82h-84v-170zM470 726q0-18 12-31t30-13 30 13 12 31-12 30-30 12-30-12-12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "av_timer" - ], - "grid": 24 - }, - { - "id": 7, - "paths": [ - "M768 470v-44q0-18-12-30t-30-12h-128q-18 0-31 12t-13 30v172q0 18 13 30t31 12h128q18 0 30-12t12-30v-44h-64v22h-86v-128h86v22h64zM470 470v-44q0-18-13-30t-31-12h-128q-18 0-30 12t-12 30v172q0 18 12 30t30 12h128q18 0 31-12t13-30v-44h-64v22h-86v-128h86v22h64zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "closed_caption" - ], - "grid": 24 - }, - { - "id": 8, - "paths": [ - "M682 384h172v470h-172v-470zM170 854v-342h172v342h-172zM426 854v-684h172v684h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "equalizer" - ], - "grid": 24 - }, - { - "id": 9, - "paths": [ - "M640 384v-86h-256v428h256v-86h-170v-86h170v-84h-170v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "explicit" - ], - "grid": 24 - }, - { - "id": 10, - "paths": [ - "M554 256l364 256-364 256v-512zM170 768v-512l364 256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fast_forward" - ], - "grid": 24 - }, - { - "id": 11, - "paths": [ - "M490 512l364-256v512zM470 768l-364-256 364-256v512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fast_rewind" - ], - "grid": 24 - }, - { - "id": 12, - "paths": [ - "M704 384h234v256h-234l-128-128zM384 704l128-128 128 128v234h-256v-234zM320 384l128 128-128 128h-234v-256h234zM640 320l-128 128-128-128v-234h256v234z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "games", - "gamepad" - ], - "grid": 24 - }, - { - "id": 13, - "paths": [ - "M490 384q0-44 32-75t76-31 75 31 31 75-31 75-75 31-76-31-32-75zM326 112q-112 112-112 272t112 272l-60 60q-138-138-138-332t138-332zM726 854q34 0 59-26t25-60h86q0 70-50 120t-120 50q-38 0-70-14-82-42-118-152-14-44-72-88-82-60-122-134-46-82-46-166 0-126 87-212t213-86 212 86 86 212h-86q0-90-61-152t-151-62-152 62-62 152q0 64 34 126 28 54 100 108 80 60 102 128 26 76 72 100 16 8 34 8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hearing" - ], - "grid": 24 - }, - { - "id": 14, - "paths": [ - "M618 576v-128h86v128h-86zM768 598v-172q0-18-12-30t-30-12h-128q-18 0-31 12t-13 30v172q0 18 13 30t31 12h32v64h64v-64h32q18 0 30-12t12-30zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "high_quality" - ], - "grid": 24 - }, - { - "id": 15, - "paths": [ - "M512 768v-128l170 170-170 172v-128q-140 0-241-101t-101-241q0-100 54-182l62 62q-30 54-30 120 0 106 75 181t181 75zM512 170q140 0 241 101t101 241q0 100-54 182l-62-62q30-54 30-120 0-106-75-181t-181-75v128l-170-170 170-172v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "loop", - "sync" - ], - "grid": 24 - }, - { - "id": 16, - "paths": [ - "M738 470h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61 159-61 67-155zM512 598q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mic" - ], - "grid": 24 - }, - { - "id": 17, - "paths": [ - "M738 470h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61 159-61 67-155zM460 210v264q0 20 15 35t37 15q20 0 35-14t15-36l2-264q0-22-16-37t-36-15-36 15-16 37zM512 598q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mic_none" - ], - "grid": 24 - }, - { - "id": 18, - "paths": [ - "M182 128l714 714-54 54-178-178q-44 28-110 38v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 155t159 61q50 0 98-22l-70-70q-16 4-28 4-52 0-90-38t-38-90v-32l-256-256zM640 476l-256-254v-8q0-52 38-90t90-38 90 38 38 90v262zM810 470q0 74-38 140l-52-54q18-40 18-86h72z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mic_off" - ], - "grid": 24 - }, - { - "id": 19, - "paths": [ - "M768 170h170v598q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h44l84 172h128l-84-172h84l86 172h128l-86-172h86l86 172h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "movie", - "movie_creation" - ], - "grid": 24 - }, - { - "id": 20, - "paths": [ - "M810 470v-86h-170v-170h-86v170h-170v86h170v170h86v-170h170zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "library_add", - "queue", - "add_to_photos" - ], - "grid": 24 - }, - { - "id": 21, - "paths": [ - "M810 298v-84h-426v84h426zM640 640v-86h-256v86h256zM810 470v-86h-426v86h426zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "library_books" - ], - "grid": 24 - }, - { - "id": 22, - "paths": [ - "M170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM768 298v-84h-170v234q-28-22-64-22-44 0-76 32t-32 76 32 75 76 31 75-31 31-75v-236h128zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "library_music" - ], - "grid": 24 - }, - { - "id": 23, - "paths": [ - "M554 554v-256h-84v256h84zM554 726v-86h-84v86h84zM982 512l-104 118 14 158-154 34-80 136-146-62-146 62-80-134-154-36 14-158-104-118 104-120-14-156 154-34 80-136 146 62 146-62 80 136 154 34-14 158z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "new_releases" - ], - "grid": 24 - }, - { - "id": 24, - "paths": [ - "M782 722q72-90 72-210 0-140-101-241t-241-101q-48 0-110 21t-100 51zM512 854q48 0 110-21t100-51l-480-480q-72 90-72 210 0 140 101 241t241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "not_interested", - "do_not_disturb" - ], - "grid": 24 - }, - { - "id": 25, - "paths": [ - "M598 214h170v596h-170v-596zM256 810v-596h170v596h-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pause" - ], - "grid": 24 - }, - { - "id": 26, - "paths": [ - "M640 682v-340h-86v340h86zM470 682v-340h-86v340h86zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pause_circle_filled" - ], - "grid": 24 - }, - { - "id": 27, - "paths": [ - "M554 682v-340h86v340h-86zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM384 682v-340h86v340h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pause_circle_outline" - ], - "grid": 24 - }, - { - "id": 28, - "paths": [ - "M342 214l468 298-468 298v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "play_arrow" - ], - "grid": 24 - }, - { - "id": 29, - "paths": [ - "M426 704l256-192-256-192v384zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "play_circle_filled" - ], - "grid": 24 - }, - { - "id": 30, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM426 704v-384l256 192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "play_circle_outline" - ], - "grid": 24 - }, - { - "id": 31, - "paths": [ - "M86 682v-84h340v84h-340zM768 598h170v84h-170v172h-86v-172h-170v-84h170v-172h86v172zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "playlist_add" - ], - "grid": 24 - }, - { - "id": 32, - "paths": [ - "M726 256h212v86h-128v384q0 52-38 90t-90 38-90-38-38-90 38-90 90-38q16 0 44 8v-350zM128 682v-84h342v84h-342zM640 426v86h-512v-86h512zM640 256v86h-512v-86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "queue_music" - ], - "grid": 24 - }, - { - "id": 33, - "paths": [ - "M854 512v-170h-684v170h512v-86h86v86h86zM298 854q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM138 262l540-220 28 72-352 142h500q36 0 60 25t24 61v512q0 36-24 60t-60 24h-684q-36 0-60-24t-24-60v-512q0-60 52-80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "radio" - ], - "grid": 24 - }, - { - "id": 34, - "paths": [ - "M534 726v-32q0-44-66-70t-126-26-126 26-66 70v32h384zM342 330q-38 0-67 29t-29 67 29 67 67 29 67-29 29-67-29-67-67-29zM598 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-512q-18 0-31-12t-13-30v-512q0-18 13-30t31-12h512zM726 810v-596h84v596h-84zM896 214h86v596h-86v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "recent_actors" - ], - "grid": 24 - }, - { - "id": 35, - "paths": [ - "M726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "repeat" - ], - "grid": 24 - }, - { - "id": 36, - "paths": [ - "M554 640h-64v-170h-64v-44l86-42h42v256zM726 726v-172h84v256h-512v128l-170-170 170-170v128h428zM298 298v172h-84v-256h512v-128l170 170-170 170v-128h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "repeat_one" - ], - "grid": 24 - }, - { - "id": 37, - "paths": [ - "M512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 75 181t181 75 181-75 75-181-75-181-181-75v172l-214-214 214-214v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "replay" - ], - "grid": 24 - }, - { - "id": 38, - "paths": [ - "M632 572l134 134 88-88v236h-236l88-88-134-134zM618 170h236v236l-88-88-536 536-60-60 536-536zM452 392l-60 60-222-222 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shuffle" - ], - "grid": 24 - }, - { - "id": 39, - "paths": [ - "M682 256h86v512h-86v-512zM256 768v-512l362 256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "skip_next" - ], - "grid": 24 - }, - { - "id": 40, - "paths": [ - "M406 512l362-256v512zM256 256h86v512h-86v-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "skip_previous" - ], - "grid": 24 - }, - { - "id": 41, - "paths": [ - "M384 470v-86h256v76l-154 180h154v86h-256v-78l154-178h-154zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "snooze" - ], - "grid": 24 - }, - { - "id": 42, - "paths": [ - "M256 256h512v512h-512v-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop" - ], - "grid": 24 - }, - { - "id": 43, - "paths": [ - "M854 598v-86h-428v86h428zM854 768v-86h-172v86h172zM598 768v-86h-428v86h428zM170 512v86h172v-86h-172zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subtitles" - ], - "grid": 24 - }, - { - "id": 44, - "paths": [ - "M512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM754 754q100-100 100-242v-2q0-58-29-129t-71-111l-62 62q76 76 76 180 0 108-74 182zM512 682q70 0 120-50t50-120-50-120-120-50-120 50-50 120 50 120 120 50zM332 692q-76-76-76-180 0-108 74-182l-60-60q-100 100-100 242v2q0 58 29 129t71 111zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "surround_sound" - ], - "grid": 24 - }, - { - "id": 45, - "paths": [ - "M512 618l256-192-256-192v384zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "video_library" - ], - "grid": 24 - }, - { - "id": 46, - "paths": [ - "M726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "videocam" - ], - "grid": 24 - }, - { - "id": 47, - "paths": [ - "M140 86l756 756-54 54-136-136q-12 8-24 8h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h32l-116-116zM896 278v456l-478-478h264q18 0 31 12t13 30v150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "videocam_off" - ], - "grid": 24 - }, - { - "id": 48, - "paths": [ - "M214 384h170l214-214v684l-214-214h-170v-256zM790 512q0 118-108 172v-344q44 22 76 73t32 99z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volume_down" - ], - "grid": 24 - }, - { - "id": 49, - "paths": [ - "M298 384h172l212-214v684l-212-214h-172v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volume_mute" - ], - "grid": 24 - }, - { - "id": 50, - "paths": [ - "M512 170v180l-90-90zM182 128l714 714-54 54-88-88q-66 56-156 78v-88q50-14 96-50l-182-182v288l-214-214h-170v-256h202l-202-202zM810 512q0-102-59-180t-153-106v-88q130 28 214 133t84 241q0 94-44 178l-64-66q22-54 22-112zM704 512q0 18-2 26l-104-104v-94q44 22 75 72t31 100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volume_off" - ], - "grid": 24 - }, - { - "id": 51, - "paths": [ - "M598 138q130 28 214 133t84 241-84 241-214 133v-88q94-28 153-106t59-180-59-180-153-106v-88zM704 512q0 120-106 172v-344q44 22 75 72t31 100zM128 384h170l214-214v684l-214-214h-170v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volume_up" - ], - "grid": 24 - }, - { - "id": 52, - "paths": [ - "M854 768v-384h-172v384h172zM640 554v-170h-470v170h470zM640 768v-170h-470v170h470zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "web" - ], - "grid": 24 - }, - { - "id": 53, - "paths": [ - "M618 576v-128h86v128h-86zM554 384v256h172q18 0 30-12t12-30v-172q0-18-12-30t-30-12h-172zM470 640v-256h-64v106h-86v-106h-64v256h64v-86h86v86h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hd" - ], - "grid": 24 - }, - { - "id": 54, - "paths": [ - "M672 688h260v68h-364v-54l252-366h-250v-68h354v54zM212 582h166l-84-222zM260 268h70l192 488h-78l-40-104h-218l-40 104h-78zM438 826h198l-100 100zM638 198h-202l100-100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sort_by_alpha" - ], - "grid": 24 - }, - { - "id": 55, - "paths": [ - "M896 128q34 0 60 26t26 60v512q0 34-26 59t-60 25h-170v-84h170v-512h-768v512h170v84h-170q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768zM256 938l256-256 256 256h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airplay" - ], - "grid": 24 - }, - { - "id": 56, - "paths": [ - "M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM644 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forward_10" - ], - "grid": 24 - }, - { - "id": 57, - "paths": [ - "M170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242zM568 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-4 8-4 12v86q4 8 4 12zM652 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-14 0-46-16-4-2-12-26-6-18-6-34v-30q0-22 6-34l12-26q14-12 22-12 4 0 12-2t12-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM426 576q30 0 30-26v-8q-4-4-4-8t-8-4h-22q-4 4-8 4t-4 8v8h-44q0-16 11-31t25-15q2 0 10-2t10-2q24 0 48 12 16 8 16 38v14q-4 8-4 12 0 8-8 8-4 0-14 10 18 10 22 16 8 16 8 26 0 18-4 22-2 2-6 8t-6 8q-8 8-22 8-4 0-13 2t-13 2q-16 0-20-4-2-2-10-4t-12-4q-18-10-18-42h36v8q4 4 4 8t8 4h22q4-4 8-4t4-8v-22q-4-4-4-8t-8-4h-26v-30h16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forward_30" - ], - "grid": 24 - }, - { - "id": 58, - "paths": [ - "M500 580q-14 6-14 8l-4 6h-26l10-94h102v30h-74l-4 38q4 0 4-4 0-2 3-3t3-3h16q16 0 22 6 2 2 8 6t8 6q18 18 18 46 0 18-4 22-2 2-6 10t-8 12q-16 16-46 16-18 0-22-4-2-2-9-4t-11-4q-18-10-18-38h34q0 20 26 20 8 0 12-4l10-8q4-8 4-12v-26l-4-8-10-10q-8-4-12-4h-8zM170 554q0-140 100-240t242-100v-172l214 214-214 214v-172q-104 0-180 75t-76 181 76 181 180 75 180-75 76-181h86q0 142-101 242t-241 100-241-100-101-242z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forward_5" - ], - "grid": 24 - }, - { - "id": 59, - "paths": [ - "M564 648q0 14 20 14 10 0 14-4l8-10q4-8 4-12v-86q-4-8-4-12t-9-9-13-5q-6 0-12 6l-8 8q-6 8-6 12v86q6 8 6 12zM648 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-18 0-26-4-4-2-10-6t-10-6q-18-10-18-60v-30q0-26 4-34l14-26q12-12 20-12 4 0 13-2t13-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM466 682h-40v-140l-42 12v-30l76-24h6v182zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "replay_10" - ], - "grid": 24 - }, - { - "id": 60, - "paths": [ - "M572 648q0 14 22 14 8 0 12-4l8-10q4-8 4-12v-86q0-2-2-6t-2-6q0-4-8-9t-12-5q-8 0-14 6l-8 8q-4 8-4 12v86q4 8 4 12zM652 606q0 26-4 34l-12 26q-14 12-22 12-4 0-13 2t-13 2q-14 0-46-16-4-2-12-26-6-18-6-34v-30q0-22 6-34l12-26q14-12 22-12 4 0 12-2t12-2q18 0 26 4 4 2 11 6t11 6 12 26q4 12 4 34v30zM426 576q30 0 30-26v-8q-4-4-4-8t-8-4h-22q-4 4-8 4t-4 8v8h-44q0-16 11-31t25-15q2 0 10-2t10-2q24 0 48 12 16 8 16 38v14q-4 8-4 12 0 8-8 8-4 0-14 10 18 10 22 16 8 16 8 26 0 18-4 22-2 2-6 8t-6 8q-8 8-22 8-4 0-13 2t-13 2q-16 0-20-4-2-2-10-4t-12-4q-18-10-18-42h36v8q4 4 4 8t8 4h22q4-4 8-4t4-8v-22q-4-4-4-8t-8-4h-26v-30h16zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "replay_30" - ], - "grid": 24 - }, - { - "id": 61, - "paths": [ - "M504 580q-14 6-14 8l-4 6h-30l10-94h102v30h-74l-4 38q4 0 4-4 0-2 3-3t3-3h16q16 0 22 6 2 2 8 6t8 6q18 18 18 46 0 18-4 22-2 2-6 10t-8 12-9 7-7 5q-4 4-26 4-18 0-22-4-2-2-9-4t-11-4q-18-10-18-38h34q0 20 26 20 8 0 12-4l10-8q4-8 4-12v-26l-4-8-10-10q-8-4-12-4h-8zM512 214q142 0 242 100t100 240q0 142-101 242t-241 100-241-100-101-242h86q0 106 76 181t180 75 180-75 76-181-76-181-180-75v172l-214-214 214-214v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "replay_5" - ], - "grid": 24 - }, - { - "id": 62, - "paths": [ - "M682 426v86h-128v128h-84v-128h-128v-86h128v-128h84v128h128zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_to_queue" - ], - "grid": 24 - }, - { - "id": 63, - "paths": [ - "M896 490v-42q0-28-18-46t-46-18h-150v256h64v-86h50l36 86h64l-38-90q38-18 38-60zM538 640l76-256h-64l-44 146-42-146h-64l74 256h64zM342 576v-128q0-28-19-46t-45-18h-150v256h150q26 0 45-18t19-46zM896 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-768q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h768zM192 448h86v128h-86v-128zM746 448h86v42h-86v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fiber_dvr" - ], - "grid": 24 - }, - { - "id": 64, - "paths": [ - "M874 598v-214h-52v192h-48v-150h-54v150h-48v-192h-54v214q0 18 13 30t31 12h170q18 0 30-12t12-30zM576 438v-54h-170v256h170v-54h-106v-46h106v-54h-106v-48h106zM362 640v-256h-52v150l-108-150h-52v256h52v-150l110 150h50zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fiber_new" - ], - "grid": 24 - }, - { - "id": 65, - "paths": [ - "M598 598l212 128-212 128v-256zM170 598h342v84h-342v-84zM170 256h512v86h-512v-86zM170 426h512v86h-512v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "playlist_play" - ], - "grid": 24 - }, - { - "id": 66, - "paths": [ - "M448 640l-96-128-74 96-54-64-74 96h298zM512 384v256q0 34-26 60t-60 26h-256q-34 0-59-26t-25-60v-256q0-34 25-60t59-26h256q34 0 60 26t26 60zM598 726v-86h340v86h-340zM938 298v86h-340v-86h340zM938 554h-340v-84h340v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "art_track" - ], - "grid": 24 - }, - { - "id": 67, - "paths": [ - "M170 512q0-140 101-241t241-101 241 101 101 241-101 241-241 101-241-101-101-241z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fiber_manual_record" - ], - "grid": 24 - }, - { - "id": 68, - "paths": [ - "M726 182q112 28 184 120t72 210-72 210-184 120v-88q70-26 120-97t50-145-50-145-120-97v-88zM42 512q0-140 101-241t241-101 241 101 101 241-101 241-241 101-241-101-101-241z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fiber_smart_record" - ], - "grid": 24 - }, - { - "id": 69, - "paths": [ - "M342 640q0-52 38-90t90-38q14 0 42 8v-264h214v86h-128v300q0 52-38 89t-90 37-90-38-38-90zM896 810v-596h-768v596h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "music_video" - ], - "grid": 24 - }, - { - "id": 70, - "paths": [ - "M682 682l-256-138v278zM938 512v342q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-342q0-34 25-60t59-26h684q34 0 59 26t25 60zM768 86v84h-512v-84h512zM854 342h-684v-86h684v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subscriptions" - ], - "grid": 24 - }, - { - "id": 71, - "paths": [ - "M918 490l64 64-298 300-194-192 64-64 130 128zM86 682v-84h340v84h-340zM598 256v86h-512v-86h512zM598 426v86h-512v-86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "playlist_add_check" - ], - "grid": 24 - }, - { - "id": 72, - "paths": [ - "M1024 768l-192 192-64-64 128-128-128-128 64-64zM554 426h128v86h-128v128h-84v-128h-128v-86h128v-128h84v128zM896 128q36 0 61 25t25 61v340h-86v-340h-768v512h640v84h-86v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "queue_play_next" - ], - "grid": 24 - }, - { - "id": 73, - "paths": [ - "M682 426v86h-340v-86h340zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_from_queue" - ], - "grid": 24 - }, - { - "id": 74, - "paths": [ - "M938 512q0 164-110 286t-272 138v-86q126-16 212-113t86-225-86-225-212-113v-86q162 16 272 138t110 286zM242 842l60-60q72 56 168 68v86q-54-6-121-34t-107-60zM174 554q10 94 68 166l-60 62q-82-102-94-228h86zM242 302q-56 74-68 168h-86q6-54 34-121t60-107zM470 174q-96 12-168 68l-60-60q102-82 228-94v86zM556 418l126 94q-126 94-256 192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "slow_motion_video" - ], - "grid": 24 - }, - { - "id": 75, - "paths": [ - "M810 768v-426h-596v426h596zM810 170q36 0 61 25t25 61v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "web_asset" - ], - "grid": 24 - }, - { - "id": 76, - "paths": [ - "M854 640v-256h-54v150l-106-150h-54v256h54v-150l108 150h52zM534 640v-256h-64v256h64zM384 490v-42q0-28-18-46t-46-18h-150v256h64v-86h86q28 0 46-19t18-45zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684zM234 448h86v42h-86v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fiber_pin" - ], - "grid": 24 - }, - { - "id": 77, - "paths": [ - "M896 810v-256h-384v256h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "branding_watermark" - ], - "grid": 24 - }, - { - "id": 78, - "paths": [ - "M896 810v-128h-768v128h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_to_action" - ], - "grid": 24 - }, - { - "id": 79, - "paths": [ - "M512 298v-84h-384v84h384zM512 470v-86h-384v86h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "featured_play_list" - ], - "grid": 24 - }, - { - "id": 80, - "paths": [ - "M512 512v-298h-384v298h384zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "featured_video" - ], - "grid": 24 - }, - { - "id": 81, - "paths": [ - "M640 234v236h234zM938 426v342q0 34-25 59t-59 25l-684 2q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note" - ], - "grid": 24 - }, - { - "id": 82, - "paths": [ - "M598 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "video_call" - ], - "grid": 24 - }, - { - "id": 83, - "paths": [ - "M896 682v-468h-768v468h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "video_label" - ], - "grid": 24 - }, - { - "id": 84, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM512 576v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "4k" - ], - "grid": 24 - }, - { - "id": 85, - "paths": [ - "M426 640l214-214-34-34-180 182-132-134h108v-46h-188v188h46v-108zM726 448l170-170v468l-170-170v150q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-428q0-18 12-30t30-12h512q18 0 31 12t13 30v150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "missed_video_call" - ], - "grid": 24 - }, - { - "id": 86, - "paths": [ - "M384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM236 360l76 76-76 76 76 76-76 76-150-152zM360 788l76-76 76 76 76-76 76 76-152 150zM788 664l-76-76 76-76-76-76 76-76 150 152zM664 236l-76 76-76-76-76 76-76-76 152-150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "control_camera" - ], - "grid": 24 - }, - { - "id": 87, - "paths": [ - "M768 640v86h-86v-86h86zM768 470v84h-86v-84h86zM854 810v-426h-342v86h86v84h-86v86h86v86h-86v84h342zM426 298v-84h-84v84h84zM426 470v-86h-84v86h84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 298v-84h-86v84h86zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM512 298h426v598h-852v-768h426v170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "business", - "domain" - ], - "grid": 24 - }, - { - "id": 88, - "paths": [ - "M854 656q18 0 30 12t12 30v148q0 50-42 50-298 0-512-214t-214-512q0-42 50-42h148q18 0 30 12t12 30q0 78 24 150 8 26-10 44l-82 72q92 192 294 290l66-84q12-12 30-12 10 0 14 2 72 24 150 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call" - ], - "grid": 24 - }, - { - "id": 89, - "paths": [ - "M512 384q-104 0-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200t500 200q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-44-42-114-78-24-10-24-38v-132q-100-32-196-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_end" - ], - "grid": 24 - }, - { - "id": 90, - "paths": [ - "M384 214h426v426h-84v-282l-496 496-60-60 496-496h-282v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_made" - ], - "grid": 24 - }, - { - "id": 91, - "paths": [ - "M320 342l192-192 192 192h-150v272l-256 256-60-60 232-230v-238h-150zM726 870l-146-144 60-60 146 144z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_merge", - "merge_type" - ], - "grid": 24 - }, - { - "id": 92, - "paths": [ - "M836 298l60 60-384 384-298-298v196h-86v-342h342v86h-196l238 238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_missed" - ], - "grid": 24 - }, - { - "id": 93, - "paths": [ - "M854 230l-496 496h282v84h-426v-426h84v282l496-496z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_received" - ], - "grid": 24 - }, - { - "id": 94, - "paths": [ - "M426 170l-98 98 226 226v360h-84v-324l-202-202-98 98v-256h256zM598 170h256v256l-98-98-124 124-60-60 124-124z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_split" - ], - "grid": 24 - }, - { - "id": 95, - "paths": [ - "M768 342v-86h-512v86h512zM598 598v-86h-342v86h342zM256 384v86h512v-86h-512zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "chat" - ], - "grid": 24 - }, - { - "id": 96, - "paths": [ - "M298 298h598v86h-598v-86zM128 726v-86h598v86h-598zM214 554v-84h596v84h-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clear_all" - ], - "grid": 24 - }, - { - "id": 97, - "paths": [ - "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "comment" - ], - "grid": 24 - }, - { - "id": 98, - "paths": [ - "M726 726v-64q0-48-73-78t-141-30-141 30-73 78v64h428zM512 288q-40 0-68 28t-28 68 28 68 68 28 68-28 28-68-28-68-68-28zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM170 1024v-86h684v86h-684zM854 0v86h-684v-86h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contacts" - ], - "grid": 24 - }, - { - "id": 99, - "paths": [ - "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM854 214v-44h-44v44h44zM768 128h128v128h-86v86h-42v-214zM640 214v128h-128v-44h86v-42h-86v-128h128v42h-86v44h86zM726 128v214h-44v-214h44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dialer_sip" - ], - "grid": 24 - }, - { - "id": 100, - "paths": [ - "M512 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 214q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM256 554q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 298q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 810q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dialpad" - ], - "grid": 24 - }, - { - "id": 101, - "paths": [ - "M854 342v-86l-342 214-342-214v86l342 212zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "email", - "mail", - "markunread", - "local_post_office" - ], - "grid": 24 - }, - { - "id": 102, - "paths": [ - "M726 512q0 18-13 30t-31 12h-426l-170 172v-598q0-18 12-30t30-12h554q18 0 31 12t13 30v384zM896 256q18 0 30 12t12 30v640l-170-170h-470q-18 0-30-12t-12-30v-86h554v-384h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forum", - "question_answer" - ], - "grid": 24 - }, - { - "id": 103, - "paths": [ - "M682 726h128l-170 170-170-170h128v-300h84v300zM384 128l170 170h-128v300h-84v-300h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "import_export" - ], - "grid": 24 - }, - { - "id": 104, - "paths": [ - "M512 218l-98 96-60-60 158-158 242 242q76 76 94 183t-26 201l-310-308v-196zM512 836v-206l-204-204q-52 68-52 154 0 44 22 96t54 84q76 76 180 76zM882 890l14 16-54 54-116-116q-94 76-214 76-58 0-129-29t-113-71-71-112-29-128q0-50 22-114t54-102l-118-118 54-54q598 598 700 698z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "invert_colors_off" - ], - "grid": 24 - }, - { - "id": 105, - "paths": [ - "M642 438q40-40 40-96 0-70-50-121t-120-51-120 51-50 121h84q0-34 26-60t60-26 60 26 26 60-26 60l-52 54q-50 54-50 120v22h84q0-68 50-122zM554 768v-86h-84v86h84zM810 86q34 0 60 25t26 59v598q0 34-26 60t-60 26h-170l-128 128-128-128h-170q-36 0-61-25t-25-61v-598q0-36 25-60t61-24h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "live_help" - ], - "grid": 24 - }, - { - "id": 106, - "paths": [ - "M500 490q218 216 354 352l-54 54-144-142q-32 48-68 94t-56 68l-20 22q-12-14-32-37t-72-92-91-134-71-147-32-144q0-22 8-66l-136-136 54-54 356 356zM512 278q-46 0-78 36l-138-136q36-38 100-65t116-27q124 0 211 87t87 211q0 96-72 234l-154-156q34-30 34-78 0-44-31-75t-75-31z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "location_off" - ], - "grid": 24 - }, - { - "id": 107, - "paths": [ - "M512 490q44 0 75-31t31-75-31-75-75-31-75 31-31 75 31 75 75 31zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "location_on", - "place", - "room" - ], - "grid": 24 - }, - { - "id": 108, - "paths": [ - "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "message" - ], - "grid": 24 - }, - { - "id": 109, - "paths": [ - "M854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "chat_bubble" - ], - "grid": 24 - }, - { - "id": 110, - "paths": [ - "M854 682v-512h-684v598l86-86h598zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "chat_bubble_outline" - ], - "grid": 24 - }, - { - "id": 111, - "paths": [ - "M156 166l746 744-56 56-80-82q-24 12-40 12h-428q-34 0-59-26t-25-60v-478l-112-112zM810 214v498l-484-484 100-100h300q34 0 59 26t25 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_sim", - "signal_cellular_no_sim" - ], - "grid": 24 - }, - { - "id": 112, - "paths": [ - "M282 460q96 186 282 282l94-94q20-20 44-10 72 24 152 24 18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone", - "local_phone" - ], - "grid": 24 - }, - { - "id": 113, - "paths": [ - "M140 106l42 44 714 714-54 54-320-322h-2l-8 2q-34 0-60-26t-26-60l2-8-68-68q-18 36-18 76 0 98 84 148l-42 74q-58-34-93-93t-35-129q0-76 40-138l-60-62q-66 92-66 200 0 92 46 171t124 125l-42 74q-98-56-155-155t-57-215q0-148 88-262l-88-90zM512 170q-86 0-160 40l-62-62q100-62 222-62 176 0 301 125t125 301q0 120-62 222l-64-62q42-78 42-160 0-140-101-241t-241-101zM750 608l-70-70q2-8 2-26 0-70-50-120t-120-50q-18 0-26 2l-70-70q44-18 96-18 106 0 181 75t75 181q0 52-18 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "portable_wifi_off" - ], - "grid": 24 - }, - { - "id": 114, - "paths": [ - "M762 598q-16-42-16-86t16-86h70l64-84-84-86q-36 28-71 78t-47 92-12 86 12 86 47 92 71 78l84-86-64-84h-70zM598 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM342 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contact_phone" - ], - "grid": 24 - }, - { - "id": 115, - "paths": [ - "M938 512v-256h-340v256h340zM598 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM342 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h852zM896 342l-128 84-128-84v-44l128 86 128-86v44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contact_mail" - ], - "grid": 24 - }, - { - "id": 116, - "paths": [ - "M274 418q-148-148-152-150l60-62 152 152zM554 86v212h-84v-212h84zM902 268l-152 150-60-60 152-152zM1012 712q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-56-52-114-80-24-10-24-38v-132q-92-30-196-30t-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200 120 0 266 59t234 141z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ring_volume" - ], - "grid": 24 - }, - { - "id": 117, - "paths": [ - "M640 854v-342h-256v342h256zM634 428q20 0 34 14t14 34v414q0 20-14 34t-34 14h-244q-20 0-34-14t-14-34v-414q0-20 14-35t34-15zM512 42q80 0 176 40t154 98l-60 60q-112-112-270-112t-270 112l-60-60q138-138 330-138zM298 302q88-88 214-88t214 88l-62 60q-62-62-152-62t-152 62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speaker_phone" - ], - "grid": 24 - }, - { - "id": 118, - "paths": [ - "M810 298h-596v428h596v-428zM44 298q0-34 25-59t59-25h768q34 0 60 25t26 59v428q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stay_current_landscape", - "stay_primary_landscape" - ], - "grid": 24 - }, - { - "id": 119, - "paths": [ - "M726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stay_current_portrait", - "stay_primary_portrait", - "smartphone" - ], - "grid": 24 - }, - { - "id": 120, - "paths": [ - "M768 170l170 172h-128v298q0 70-50 120t-120 50-120-50-50-120v-298q0-34-26-60t-60-26-60 26-26 60v298h128l-170 170-170-170h128v-298q0-70 50-121t120-51 120 51 50 121v298q0 34 26 60t60 26 60-26 26-60v-298h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swap_calls" - ], - "grid": 24 - }, - { - "id": 121, - "paths": [ - "M726 470v-86h-86v86h86zM554 470v-86h-84v86h84zM384 470v-86h-86v86h86zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "textsms", - "sms" - ], - "grid": 24 - }, - { - "id": 122, - "paths": [ - "M790 640q62 0 105-44t43-106-43-105-105-43-106 43-44 105 44 106 106 44zM234 640q62 0 106-44t44-106-44-105-106-43-105 43-43 105 43 106 105 44zM790 256q98 0 166 68t68 166-68 167-166 69h-556q-98 0-166-69t-68-167 68-166 166-68 167 68 69 166q0 86-54 150h192q-54-64-54-150 0-98 69-166t167-68z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "voicemail" - ], - "grid": 24 - }, - { - "id": 123, - "paths": [ - "M298 598q34 0 60-26t26-60-26-60-60-26-59 26-25 60 25 60 59 26zM540 426h442v172h-86v170h-170v-170h-186q-26 70-97 120t-145 50q-106 0-181-75t-75-181 75-181 181-75q74 0 145 50t97 120z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vpn_key" - ], - "grid": 24 - }, - { - "id": 124, - "paths": [ - "M810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426zM554 350l-170 170 170 172-42 42-170-170-172 170-42-42 170-172-170-170 42-42 172 170 170-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phonelink_erase" - ], - "grid": 24 - }, - { - "id": 125, - "paths": [ - "M406 470v-64q0-24-19-40t-45-16-45 16-19 40v64h128zM460 470q20 0 36 16t16 38v150q0 20-17 36t-39 16h-234q-20 0-36-17t-16-39v-150q0-20 16-35t36-15v-64q0-44 37-76t83-32 82 32 36 76v64zM810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phonelink_lock" - ], - "grid": 24 - }, - { - "id": 126, - "paths": [ - "M598 854v-684h-428v684h428zM598 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428zM768 418q40 42 40 94t-40 90l-42-44q36-50 0-98zM858 328q80 76 80 183t-80 181l-44-44q58-62 58-141t-58-135z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phonelink_ring" - ], - "grid": 24 - }, - { - "id": 127, - "paths": [ - "M768 44q34 0 60 25t26 59v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v42h426v-596h-426v42h-86v-128q0-34 26-60t60-26zM298 586q32 0 55-21t23-53-23-53-55-21-54 21-22 53 22 53 54 21zM462 532l46 36q8 8 4 14l-44 74q-4 8-14 4l-54-20q-16 10-38 20l-8 56q0 10-10 10h-88q-12 0-12-10l-8-56q-22-10-38-20l-54 20q-10 4-14-4l-42-74q-2-2-1-7t3-7l46-36q0-2-1-9t-1-11 1-10 1-10l-46-36q-6-6-4-14l44-74q4-8 14-4l54 20q16-10 38-20l8-56q0-10 10-10h88q10 0 10 10l10 56q8 4 36 22l56-22q8-4 12 4l44 74q2 2 1 7t-3 7l-46 36q0 2 1 9t1 11-1 11-1 9z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phonelink_setup" - ], - "grid": 24 - }, - { - "id": 128, - "paths": [ - "M426 512h-84l170-170 170 170h-84v170h-172v-170zM896 812v-600h-768v600h768zM896 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-768q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "present_to_all" - ], - "grid": 24 - }, - { - "id": 129, - "paths": [ - "M896 790v-492q-66-20-150-20-130 0-234 64v490q104-64 234-64 78 0 150 22zM746 192q152 0 236 64v622q0 8-7 15t-15 7q-6 0-10-2-82-44-204-44-130 0-234 64-86-64-234-64-108 0-204 46-2 0-5 1t-5 1q-8 0-15-6t-7-14v-626q86-64 236-64 148 0 234 64 86-64 234-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "import_contacts" - ], - "grid": 24 - }, - { - "id": 130, - "paths": [ - "M512 470l342-214h-684zM854 768v-426l-342 212-342-212v426h684zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mail_outline" - ], - "grid": 24 - }, - { - "id": 131, - "paths": [ - "M554 618l172-160-172-160v92q-210 30-256 250 86-116 256-116v94zM854 768h170v86h-1024v-86h170q-36 0-60-25t-24-61v-426q0-36 24-61t60-25h684q36 0 60 25t24 61v426q0 34-25 60t-59 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_share" - ], - "grid": 24 - }, - { - "id": 132, - "paths": [ - "M298 640q58-80 156-104l-68-68q-64 62-88 172zM102 74l842 842-54 54-116-116h-774v-86h170q-36 0-60-24t-24-60v-428q0-38 28-62l-66-66zM938 684q0 50-44 74l-236-236 68-64-172-158v90q-4 2-11 2t-11 2l-224-222h546q36 0 60 24t24 60v428zM906 768h118v86h-34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop_screen_share" - ], - "grid": 24 - }, - { - "id": 133, - "paths": [ - "M128 358l60-60 324 324 238-238h-196v-86h342v342h-86v-196l-298 298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "call_missed_outgoing" - ], - "grid": 24 - }, - { - "id": 134, - "paths": [ - "M170 430q176 0 300 124t124 300h-122q0-124-89-213t-213-89v-122zM170 190q274 0 469 195t195 469h-120q0-226-159-385t-385-159v-120zM170 760q0-38 27-65t67-27 66 26 26 66-27 67-65 27q-40 0-67-27t-27-67z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rss_feed" - ], - "grid": 24 - }, - { - "id": 135, - "paths": [ - "M512 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM512 86q176 0 301 125t125 301v62q0 64-43 108t-105 44q-78 0-126-64-64 64-152 64t-151-63-63-151 63-151 151-63 151 63 63 151v62q0 26 19 46t45 20 45-20 19-46v-62q0-140-101-241t-241-101-241 101-101 241 101 241 241 101h214v84h-214q-176 0-301-125t-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "alternate_email" - ], - "grid": 24 - }, - { - "id": 136, - "paths": [ - "M546 564q-134 0-204 94 40-180 204-202v-72l136 128-136 126v-74zM726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mobile_screen_share" - ], - "grid": 24 - }, - { - "id": 137, - "paths": [ - "M896 256v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44l-94 94q94 184 282 282l94-94q18-18 44-10 72 24 152 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_call" - ], - "grid": 24 - }, - { - "id": 138, - "paths": [ - "M622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM896 814v-600h-768v600h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cancel_presentation" - ], - "grid": 24 - }, - { - "id": 139, - "paths": [ - "M554 342h86v340h-86v-340zM384 342h86v340h-86v-340zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM896 814v-600h-768v600h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pause_presentation" - ], - "grid": 24 - }, - { - "id": 140, - "paths": [ - "M512 448l298-150v-84l-298 148-298-148v84zM578 726h-364q-34 0-60-26t-26-60v-426q0-34 26-60t60-26h596q34 0 60 26t26 60v306q-54-30-106-30-88 0-151 63t-63 151q0 4 1 11t1 11zM874 726v-44h-170v44h170zM790 554q62 0 105 44t43 106-43 106-105 44-106-44-44-106 44-106 106-44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unsubscribe" - ], - "grid": 24 - }, - { - "id": 141, - "paths": [ - "M278 362q32-32 89-55t103-23 103 23 89 55l-56 56q-58-58-138-58t-136 58zM386 472q34-34 84-34 48 0 82 34l-82 82zM168 254q124-124 302-124t302 124l-56 54q-102-102-247-102t-247 102zM938 938h-682l682-682v682z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cell_wifi" - ], - "grid": 24 - }, - { - "id": 142, - "paths": [ - "M512 746q-74 0-133-41t-85-107h70q50 84 148 84t148-84h70q-26 66-85 107t-133 41zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_satisfied_alt" - ], - "grid": 24 - }, - { - "id": 143, - "paths": [ - "M298 640h86v86h-86v-86zM298 470h86v84h-86v-84zM298 298h86v86h-86v-86zM470 640h256v86h-256v-86zM470 470h256v84h-256v-84zM470 298h256v86h-256v-86zM858 128q14 0 26 11t12 27v692q0 14-12 26t-26 12h-692q-16 0-27-12t-11-26v-692q0-38 38-38h692zM810 214h-596v596h596v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "list_alt" - ], - "grid": 24 - }, - { - "id": 144, - "paths": [ - "M512 810h170l-84-84h-86v84zM426 640v-86h-84v86h84zM426 810v-84h-84v84h84zM256 470v-86h-86v86h86zM256 640v-86h-86v86h86zM256 810v-84h-86v84h86zM56 76l896 892-56 56-128-128h-682v-682l-82-82zM682 470h86v84h-86v-84zM342 214v38l-124-124h294v170h426v552l-84-86v-380h-342v38l-124-124h38v-84h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "domain_disabled" - ], - "grid": 24 - }, - { - "id": 145, - "paths": [ - "M512 86q124 0 211 87t87 211q0 150-128 244v98q0 18-12 30t-30 12h-256q-18 0-30-12t-12-30v-98q-128-88-128-244 0-124 87-211t211-87zM384 896v-42h256v42q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lightbulb" - ], - "grid": 24 - }, - { - "id": 146, - "paths": [ - "M810 554h-256v256h-84v-256h-256v-84h256v-256h84v256h256v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add" - ], - "grid": 24 - }, - { - "id": 147, - "paths": [ - "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_box" - ], - "grid": 24 - }, - { - "id": 148, - "paths": [ - "M726 554v-84h-172v-172h-84v172h-172v84h172v172h84v-172h172zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_circle" - ], - "grid": 24 - }, - { - "id": 149, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_circle_outline", - "control_point" - ], - "grid": 24 - }, - { - "id": 150, - "paths": [ - "M218 214h588l-40-44h-512zM512 746l234-234h-148v-86h-172v86h-148zM876 224q20 24 20 54v532q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-532q0-30 20-54l58-72q20-24 50-24h512q30 0 50 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "archive" - ], - "grid": 24 - }, - { - "id": 151, - "paths": [ - "M810 666l-152-154 152-154-60-60-152 154-154-154-60 60 154 154-154 154 60 60 154-154 152 154zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-640q-40 0-68-38l-230-346 230-346q28-38 68-38h640z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "backspace" - ], - "grid": 24 - }, - { - "id": 152, - "paths": [ - "M512 854q140 0 241-101t101-241q0-48-21-110t-51-100l-480 480q90 72 210 72zM170 512q0 48 21 110t51 100l480-480q-90-72-210-72-140 0-241 101t-101 241zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "block" - ], - "grid": 24 - }, - { - "id": 153, - "paths": [ - "M810 274l-238 238 238 238-60 60-238-238-238 238-60-60 238-238-238-238 60-60 238 238 238-238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clear", - "close" - ], - "grid": 24 - }, - { - "id": 154, - "paths": [ - "M810 896v-598h-468v598h468zM810 214q34 0 60 25t26 59v598q0 34-26 60t-60 26h-468q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h468zM682 42v86h-512v598h-84v-598q0-34 25-60t59-26h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "content_copy" - ], - "grid": 24 - }, - { - "id": 155, - "paths": [ - "M810 128h128v42l-298 300-86-86zM512 534q22 0 22-22t-22-22-22 22 22 22zM256 854q34 0 60-25t26-61-26-61-60-25-60 25-26 61 26 61 60 25zM256 342q34 0 60-25t26-61-26-61-60-25-60 25-26 61 26 61 60 25zM412 326l526 528v42h-128l-298-298-100 100q14 30 14 70 0 70-50 120t-120 50-120-50-50-120 50-120 120-50q40 0 70 14l100-100-100-100q-30 14-70 14-70 0-120-50t-50-120 50-120 120-50 120 50 50 120q0 40-14 70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "content_cut" - ], - "grid": 24 - }, - { - "id": 156, - "paths": [ - "M810 854v-684h-84v128h-428v-128h-84v684h596zM512 86q-18 0-30 12t-12 30 12 30 30 12 30-12 12-30-12-30-30-12zM810 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "content_paste" - ], - "grid": 24 - }, - { - "id": 157, - "paths": [ - "M884 300l-78 78-160-160 78-78q12-12 30-12t30 12l100 100q12 12 12 30t-12 30zM128 736l472-472 160 160-472 472h-160v-160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "create", - "mode_edit", - "edit" - ], - "grid": 24 - }, - { - "id": 158, - "paths": [ - "M512 554l352-220-352-206-352 206zM938 342v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-426q0-50 40-74l386-226 386 226q40 24 40 74z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drafts" - ], - "grid": 24 - }, - { - "id": 159, - "paths": [ - "M256 554v-84h512v84h-512zM128 256h768v86h-768v-86zM426 768v-86h172v86h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_list" - ], - "grid": 24 - }, - { - "id": 160, - "paths": [ - "M614 256h240v426h-300l-16-84h-240v298h-84v-726h384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flag", - "assistant_photo" - ], - "grid": 24 - }, - { - "id": 161, - "paths": [ - "M512 342v-172l342 342-342 342v-172h-342v-340h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forward" - ], - "grid": 24 - }, - { - "id": 162, - "paths": [ - "M592 792q28 0 56-37t36-113q-60 16-92 54t-32 64q0 14 10 23t22 9zM196 294l-74-72q20-24 36-40 54-54 116-54 38 0 73 30t35 92q0 60-56 140-56 78-78 150-12 34-7 58t21 24q18 0 48-36 44-44 98-116 96-120 210-120 84 0 125 55t47 123h106v106h-104q-12 138-74 200t-128 62q-56 0-96-39t-40-93q0-66 60-138t170-92q-2-16-3-22t-6-19-12-19-21-11-34-5q-56 0-174 146-34 42-47 57t-37 35-46 26q-70 22-120-26t-50-120q0-30 11-66t29-70 34-61 31-49 17-24q34-56 12-64-14-6-72 52z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gesture" - ], - "grid": 24 - }, - { - "id": 163, - "paths": [ - "M810 640v-426h-598v426h172q0 52 38 90t90 38 90-38 38-90h170zM810 128q36 0 61 25t25 61v596q0 34-26 60t-60 26h-598q-36 0-60-25t-24-61v-596q0-36 24-61t60-25h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inbox" - ], - "grid": 24 - }, - { - "id": 164, - "paths": [ - "M726 298q88 0 150 63t62 151-62 151-150 63h-172v-82h172q54 0 93-39t39-93-39-93-93-39h-172v-82h172zM342 554v-84h340v84h-340zM166 512q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151 62-151 150-63h172v82h-172q-54 0-93 39t-39 93z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "link", - "insert_link" - ], - "grid": 24 - }, - { - "id": 165, - "paths": [ - "M786 452l152-154v384h-384l156-154q-96-80-220-80-102 0-197 68t-127 166l-100-32q44-136 161-222t263-86q170 0 296 110z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "redo" - ], - "grid": 24 - }, - { - "id": 166, - "paths": [ - "M810 554h-596v-84h596v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove" - ], - "grid": 24 - }, - { - "id": 167, - "paths": [ - "M726 554v-84h-428v84h428zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_circle", - "do_not_disturb_on" - ], - "grid": 24 - }, - { - "id": 168, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 470h428v84h-428v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_circle_outline" - ], - "grid": 24 - }, - { - "id": 169, - "paths": [ - "M426 384q208 30 321 159t149 311q-154-218-470-218v174l-298-298 298-298v170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "reply" - ], - "grid": 24 - }, - { - "id": 170, - "paths": [ - "M554 384q208 30 321 159t149 311q-154-218-470-218v174l-298-298 298-298v170zM298 342l-170 170 170 170v128l-298-298 298-298v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "reply_all" - ], - "grid": 24 - }, - { - "id": 171, - "paths": [ - "M554 554v-256h-84v256h84zM512 738q22 0 39-17t17-39-17-38-39-16-39 16-17 38 17 39 39 17zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "report" - ], - "grid": 24 - }, - { - "id": 172, - "paths": [ - "M640 384v-170h-426v170h426zM512 810q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 128l170 170v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "save" - ], - "grid": 24 - }, - { - "id": 173, - "paths": [ - "M384 384v256h256v-256h-256zM298 726v-428h428v428h-428zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM810 384v-86h86v86h-86zM810 896v-86h86q0 34-26 60t-60 26zM810 554v-84h86v84h-86zM470 896v-86h84v86h-84zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 896q-34 0-60-26t-26-60h86v86zM810 128q34 0 60 26t26 60h-86v-86zM554 128v86h-84v-86h84zM128 384v-86h86v86h-86zM298 896v-86h86v86h-86zM128 554v-84h86v84h-86zM128 214q0-34 26-60t60-26v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "select_all" - ], - "grid": 24 - }, - { - "id": 174, - "paths": [ - "M86 896v-298l640-86-640-86v-298l896 384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "send" - ], - "grid": 24 - }, - { - "id": 175, - "paths": [ - "M128 554v-84h512v84h-512zM128 256h768v86h-768v-86zM128 768v-86h256v86h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sort" - ], - "grid": 24 - }, - { - "id": 176, - "paths": [ - "M512 256l-80 214h160zM406 546l-40 94h-88l202-470h64l202 470h-88l-40-94h-212zM214 726h596v84h-596v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_format" - ], - "grid": 24 - }, - { - "id": 177, - "paths": [ - "M534 342q146 0 262 86t162 222l-100 32q-34-104-123-169t-201-65q-124 0-220 80l156 154h-384v-384l152 154q126-110 296-110z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "undo" - ], - "grid": 24 - }, - { - "id": 178, - "paths": [ - "M680 790h90l-218-556h-80l-218 556h90l48-128h240zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684zM424 576l88-236 88 236h-176z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "font_download" - ], - "grid": 24 - }, - { - "id": 179, - "paths": [ - "M682 426l-170 172-170-172h84v-128h172v128h84zM810 640v-426h-598v426h172q0 52 38 90t90 38 90-38 38-90h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-598q-36 0-60-25t-24-61v-596q0-36 24-61t60-25h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "move_to_inbox" - ], - "grid": 24 - }, - { - "id": 180, - "paths": [ - "M218 214h588l-40-44h-512zM512 406l-234 234h148v86h172v-86h148zM876 222q20 24 20 56v532q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-532q0-32 20-56l58-70q20-24 50-24h512q30 0 50 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unarchive" - ], - "grid": 24 - }, - { - "id": 181, - "paths": [ - "M470 790l170-172-170-170-44 42 128 128-128 128zM426 214v84h172v-84h-172zM598 128q34 0 59 25t25 61v84h172q34 0 59 26t25 60v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-470q0-34 25-60t59-26h172v-84q0-34 25-60t59-26h172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "next_week" - ], - "grid": 24 - }, - { - "id": 182, - "paths": [ - "M768 214q34 0 60 25t26 59v92q-38 14-62 46t-24 74v88h-512v-88q0-42-24-74t-62-46v-92q0-34 26-59t60-25h512zM896 426q34 0 60 26t26 60v214q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-214q0-34 26-60t60-26 60 26 26 60v128h596v-128q0-34 26-60t60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "weekend" - ], - "grid": 24 - }, - { - "id": 183, - "paths": [ - "M598 214v84h-512v-84h128l42-44h170l44 44h128zM128 768v-426h426v426q0 34-25 60t-59 26h-256q-34 0-60-26t-26-60zM640 512h256v86h-256v-86zM640 342h298v84h-298v-84zM640 682h170v86h-170v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "delete_sweep" - ], - "grid": 24 - }, - { - "id": 184, - "paths": [ - "M86 490q0-114 81-195t195-81h150v84h-150q-80 0-136 56t-56 136 56 136 136 56h22v-84l128 128-128 128v-86h-22q-114 0-195-82t-81-196zM598 682h340v86h-340v-86zM598 448h340v86h-340v-86zM598 214h340v84h-340v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "low_priority" - ], - "grid": 24 - }, - { - "id": 185, - "paths": [ - "M768 598v-256h-214l-42-86h-214v256h256l44 86h170zM598 256h256v426h-300l-42-84h-214v298h-84v-726h340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outlined_flag" - ], - "grid": 24 - }, - { - "id": 186, - "paths": [ - "M86 182l54-54 714 714-54 54-172-170h-74v-74l-96-98h-116v-84h30l-88-88q-50 6-84 43t-34 87q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151q0-60 38-118t94-80zM682 470v84h-8l-84-84h92zM726 298q88 0 150 63t62 151q0 130-116 190l-62-62q42-10 70-46t28-82q0-54-39-93t-93-39h-172v-82h172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "link_off" - ], - "grid": 24 - }, - { - "id": 187, - "paths": [ - "M512 738q22 0 39-17t17-39-17-38-39-16-39 16-17 38 17 39 39 17zM950 928l-54 54-154-156-70 70h-320l-224-224v-320l70-70-156-154 54-54zM470 298v40l-164-164 46-46h320l224 224v320l-46 46-296-294v-126h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "report_off" - ], - "grid": 24 - }, - { - "id": 188, - "paths": [ - "M554 540l112-110 60 60-214 214-214-214 60-60 112 110v-412h84v412zM810 512h86v298q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-298h86v298h596v-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "save_alt" - ], - "grid": 24 - }, - { - "id": 189, - "paths": [ - "M298 598h128v128h-128v-128zM256 768h214v-214h-214v214zM298 298h128v128h-128v-128zM256 470h214v-214h-214v214zM810 896h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596q34 0 60 26t26 60v596q0 34-26 60t-60 26zM554 704h214v-86h-214v86zM554 406h214v-86h-214v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ballot" - ], - "grid": 24 - }, - { - "id": 190, - "paths": [ - "M598 512h234l-234-234v234zM640 214l256 256v426q0 34-26 60t-60 26h-470q-34 0-59-26t-25-60v-598q0-34 26-59t60-25h298zM682 42v86h-512v598h-84v-598q0-34 25-60t59-26h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file_copy" - ], - "grid": 24 - }, - { - "id": 191, - "paths": [ - "M660 874l-148-148 60-60 88 88 218-220 60 60zM470 512q-70 0-121-50t-51-120 51-121 121-51 120 51 50 121-50 120-120 50zM384 726l128 128h-384v-86q0-76 117-123t225-47q30 0 42 2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "how_to_reg" - ], - "grid": 24 - }, - { - "id": 192, - "paths": [ - "M544 98q12-12 30-12 22 0 30 12l212 212q12 12 12 30t-12 30l-272 270q-12 12-30 12t-30-12l-212-210q-12-12-12-30t12-30zM726 340l-152-152-210 212 150 150zM768 554l128 128v172q0 36-25 60t-61 24h-598q-34 0-59-25t-25-59v-172l128-128h36l84 86h-86l-76 86h596l-74-86h-82l84-86h30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "how_to_vote" - ], - "grid": 24 - }, - { - "id": 193, - "paths": [ - "M726 346q58 0 126 34 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 68-34 126-34t126 34q48 24 88 24t88-24q68-34 126-34zM852 190q52 26 86 26v82q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-82q34 0 86-26 68-34 126-34t126 34q52 26 88 26t88-26q68-34 126-34t126 34zM726 536q58 0 126 34 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 68-34 126-34t126 34q48 24 88 24t88-24q68-34 126-34zM726 724q54 0 126 36 48 24 86 24v84q-58 0-126-34-52-26-86-26-36 0-88 26-68 34-126 34t-126-34q-52-26-88-26-34 0-86 26-68 34-126 34v-84q38 0 86-24 72-36 126-36t126 36q48 24 88 24t88-24q72-36 126-36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "waves" - ], - "grid": 24 - }, - { - "id": 194, - "paths": [ - "M446 598l280-282-60-60-220 222-88-90-60 60zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "where_to_vote" - ], - "grid": 24 - }, - { - "id": 195, - "paths": [ - "M810 512v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM166 512q0 54 39 93t93 39h172v82h-172q-88 0-150-63t-62-151 62-151 150-63h172v82h-172q-54 0-93 39t-39 93zM858 512q0-54-39-93t-93-39h-172v-82h172q88 0 150 63t62 151h-80zM342 470h340v84h-340v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_link" - ], - "grid": 24 - }, - { - "id": 196, - "paths": [ - "M854 298v-128h-684v128h684zM640 598v-86h-256v86h256zM854 86q32 0 58 25t26 59v130q0 48-42 72v482q0 34-28 59t-58 25h-596q-30 0-58-25t-28-59v-482q-42-24-42-72v-130q0-34 26-59t58-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "inventory" - ], - "grid": 24 - }, - { - "id": 197, - "paths": [ - "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM534 342v224l170 100-32 52-202-120v-256h64zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "access_alarm", - "alarm" - ], - "grid": 24 - }, - { - "id": 198, - "paths": [ - "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 112t112 272-112 272-272 112-272-112-112-272 112-272 272-112zM534 342v226l170 102-34 52-200-124v-256h64zM338 146l-198 162-54-64 196-162zM938 244l-54 64-198-168 56-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "access_alarms" - ], - "grid": 24 - }, - { - "id": 199, - "paths": [ - "M534 298v224l192 114-32 54-224-136v-256h64zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "access_time", - "query_builder", - "schedule" - ], - "grid": 24 - }, - { - "id": 200, - "paths": [ - "M554 384v128h128v86h-128v128h-84v-128h-128v-86h128v-128h84zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM938 244l-54 66-196-166 54-64zM336 144l-196 164-54-64 196-164z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_alarm", - "alarm_add" - ], - "grid": 24 - }, - { - "id": 201, - "paths": [ - "M128 224l54-54 672 672-54 54-246-244v158l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l254-160zM554 384l342 214v84l-136-42-334-334v-156q0-26 19-45t45-19 45 19 19 45v234z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airplanemode_off" - ], - "grid": 24 - }, - { - "id": 202, - "paths": [ - "M896 682l-342-106v234l86 64v64l-150-42-148 42v-64l84-64v-234l-340 106v-84l340-214v-234q0-26 19-45t45-19 45 19 19 45v234l342 214v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airplanemode_on", - "flight", - "local_airport" - ], - "grid": 24 - }, - { - "id": 203, - "paths": [ - "M554 598v-214h-84v214h84zM554 768v-86h-84v86h84zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "battery_alert" - ], - "grid": 24 - }, - { - "id": 204, - "paths": [ - "M470 854l170-320h-86v-236l-170 320h86v236zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "battery_charging_full" - ], - "grid": 24 - }, - { - "id": 205, - "paths": [ - "M668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "battery_full", - "battery_std" - ], - "grid": 24 - }, - { - "id": 206, - "paths": [ - "M610 542q30-30 30-72 0-52-38-90t-90-38-90 38-38 90h64q0-26 18-45t46-19 46 19 18 45-18 44l-40 40q-40 40-40 86h68q0-32 36-68zM552 766v-82h-80v82h80zM668 170q24 0 41 17t17 41v654q0 24-17 40t-41 16h-312q-24 0-41-16t-17-40v-654q0-24 17-41t41-17h70v-84h172v84h70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "battery_unknown" - ], - "grid": 24 - }, - { - "id": 207, - "paths": [ - "M634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bluetooth" - ], - "grid": 24 - }, - { - "id": 208, - "paths": [ - "M810 426l86 86-86 86-84-86zM634 696l-80-82v162zM554 248v162l80-82zM756 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM298 512l-84 86-86-86 86-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bluetooth_connected" - ], - "grid": 24 - }, - { - "id": 209, - "paths": [ - "M554 776l80-80-80-82v162zM230 170l624 624-60 60-98-98-184 182h-42v-324l-196 196-60-60 238-238-282-282zM554 248v138l-84-86v-214h42l244 242-130 130-60-60 68-70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bluetooth_disabled" - ], - "grid": 24 - }, - { - "id": 210, - "paths": [ - "M550 696l-80-82v162zM470 248v162l80-82zM670 328l-184 184 184 184-244 242h-42v-324l-196 196-60-60 238-238-238-238 60-60 196 196v-324h42zM834 286q62 100 62 222 0 120-66 226l-50-50q42-84 42-172t-42-172zM608 512l98-98q20 50 20 98 0 50-20 100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bluetooth_searching", - "bluetooth_audio" - ], - "grid": 24 - }, - { - "id": 211, - "paths": [ - "M610 682h82l-138-384h-84l-138 384h82l30-84h136zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200zM462 540l50-156 50 156h-100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_auto" - ], - "grid": 24 - }, - { - "id": 212, - "paths": [ - "M512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50zM512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_high", - "brightness_7" - ], - "grid": 24 - }, - { - "id": 213, - "paths": [ - "M512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_low", - "brightness_5" - ], - "grid": 24 - }, - { - "id": 214, - "paths": [ - "M512 768q106 0 181-75t75-181-75-181-181-75v512zM854 654v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200l140 142z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_medium", - "brightness_6" - ], - "grid": 24 - }, - { - "id": 215, - "paths": [ - "M512 810q58 0 126-33t106-79l112 66q-128 174-344 174-176 0-301-125t-125-301q0-166 111-287t273-137v128q-108 16-182 100t-74 196q0 124 87 211t211 87zM554 88q162 16 273 137t111 287q0 96-36 174l-112-66q20-56 20-108 0-112-74-196t-182-100v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "data_usage" - ], - "grid": 24 - }, - { - "id": 216, - "paths": [ - "M726 810v-84h84v170q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-170h84v84h428zM426 648l-60 60-196-196 196-196 60 60-134 136zM658 708l-60-60 134-136-134-136 60-60 196 196zM298 214v84h-84v-170q0-34 25-60t59-26l428 2q34 0 59 25t25 59v170h-84v-84h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "developer_mode" - ], - "grid": 24 - }, - { - "id": 217, - "paths": [ - "M938 726v-300h-170v300h170zM982 342q18 0 30 12t12 30v426q0 18-12 31t-30 13h-256q-18 0-31-13t-13-31v-426q0-18 13-30t31-12h256zM170 256v470h428v128h-598v-128h86v-470q0-34 25-60t59-26h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "devices", - "phonelink" - ], - "grid": 24 - }, - { - "id": 218, - "paths": [ - "M298 512v86h-84v-86h84zM298 342v84h-84v-84h84zM810 512v86h-468v-86h468zM810 342v84h-468v-84h468zM896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dvr" - ], - "grid": 24 - }, - { - "id": 219, - "paths": [ - "M512 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM894 470h88v84h-88q-14 126-114 226t-226 114v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q14-126 114-226t226-114v-88h84v88q126 14 226 114t114 226zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gps_fixed", - "my_location" - ], - "grid": 24 - }, - { - "id": 220, - "paths": [ - "M512 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM894 470h88v84h-88q-14 126-114 226t-226 114v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q14-126 114-226t226-114v-88h84v88q126 14 226 114t114 226z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gps_not_fixed", - "location_searching" - ], - "grid": 24 - }, - { - "id": 221, - "paths": [ - "M694 748l-418-418q-26 34-44 87t-18 95q0 124 87 211t211 87q42 0 95-18t87-44zM128 182l54-54 714 714-54 54-88-88q-90 74-200 86v88h-84v-88q-126-14-226-114t-114-226h-88v-84h88q4-46 30-105t56-95zM894 470h88v84h-88q-10 78-42 136l-64-64q22-54 22-114 0-124-87-211t-211-87q-60 0-114 22l-64-64q62-32 136-42v-88h84v88q126 14 226 114t114 226z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gps_off", - "location_disabled" - ], - "grid": 24 - }, - { - "id": 222, - "paths": [ - "M810 426h86v172h-86v-172zM640 768v-512h86v512h-86zM128 598v-172h86v172h-86zM470 938v-852h84v852h-84zM298 768v-512h86v512h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "graphic_eq" - ], - "grid": 24 - }, - { - "id": 223, - "paths": [ - "M938 938h-852l852-852v852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "network_cell" - ], - "grid": 24 - }, - { - "id": 224, - "paths": [ - "M872 466l2 2-362 448-362-448 2-2-136-168q242-170 496-170t496 170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "network_wifi" - ], - "grid": 24 - }, - { - "id": 225, - "paths": [ - "M768 256v512h-512v-512h170v86h-84v340h340v-340h-128v96q44 24 44 74 0 34-26 60t-60 26-60-26-26-60q0-50 44-74v-96q0-34 25-60t59-26h214zM854 854v-684h-684v684h684zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nfc" - ], - "grid": 24 - }, - { - "id": 226, - "paths": [ - "M170 554v300h300v84h-300q-34 0-59-25t-25-59v-300h84zM854 854v-300h84v300q0 34-25 59t-59 25h-300v-84h300zM854 86q34 0 59 25t25 59v300h-84v-300h-300v-84h300zM726 362q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45zM426 554l128 158 86-114 128 170h-512zM170 170v300h-84v-300q0-34 25-59t59-25h300v84h-300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "now_wallpaper" - ], - "grid": 24 - }, - { - "id": 227, - "paths": [ - "M710 72l242 242-242 240h186v342h-342v-342h156l-240-240v156h-342v-342h342v186zM128 896v-342h342v342h-342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "now_widgets" - ], - "grid": 24 - }, - { - "id": 228, - "paths": [ - "M460 426v44h104v-44q0-20-15-35t-37-15-37 15-15 35zM426 682q-18 0-30-12t-12-30v-128q0-18 12-30t30-12v-44q0-36 25-60t61-24 61 24 25 60v44q18 0 30 12t12 30v128q0 18-12 30t-30 12h-172zM810 726v-428h-596v428h596zM896 214q34 0 60 25t26 59v428q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_lock_landscape" - ], - "grid": 24 - }, - { - "id": 229, - "paths": [ - "M726 810v-596h-428v596h428zM726 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428zM460 426v44h104v-44q0-20-15-35t-37-15-37 15-15 35zM426 682q-18 0-30-12t-12-30v-128q0-18 12-30t30-12v-44q0-36 25-60t61-24 61 24 25 60v44q18 0 30 12t12 30v128q0 18-12 30t-30 12h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_lock_portrait" - ], - "grid": 24 - }, - { - "id": 230, - "paths": [ - "M716 106v22h146v-22q0-30-21-51t-51-21-52 21-22 51zM682 384q-18 0-30-12t-12-30v-172q0-18 12-30t30-12v-22q0-44 32-75t76-31 75 31 31 75v22q18 0 30 12t12 30v172q0 18-12 30t-30 12h-214zM362 874l56-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 85 212t171 150zM992 544q20 18 20 45t-20 47l-272 270q-18 20-44 20t-46-20l-512-512q-20-20-20-46 0-24 20-44l270-272q18-18 46-18t46 18l104 104-60 60-90-88-242 240 484 484 240-242-94-94 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_lock_rotation" - ], - "grid": 24 - }, - { - "id": 231, - "paths": [ - "M320 916l58-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 84 212t170 150zM632 904l272-272-512-512-272 272zM436 74l514 514q20 18 20 44t-20 46l-272 272q-18 20-44 20t-46-20l-514-514q-18-18-18-44 0-28 18-46l272-272q18-18 46-18 26 0 44 18zM704 108l-58 56-162-162 28-2q200 0 347 136t163 334h-64q-12-120-80-216t-174-146z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_rotation" - ], - "grid": 24 - }, - { - "id": 232, - "paths": [ - "M768 342v-172h-86v172h86zM640 342v-172h-86v172h86zM512 342v-172h-86v172h86zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-512 254-256h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sd_storage", - "sd_card" - ], - "grid": 24 - }, - { - "id": 233, - "paths": [ - "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM384 682q-52 0-90-38t-38-90q0-48 33-85t81-41h8q42-86 134-86 56 0 98 37t50 91h2q44 0 75 31t31 75-31 75-75 31h-278z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_system_daydream" - ], - "grid": 24 - }, - { - "id": 234, - "paths": [ - "M86 938l852-852v852h-852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_4_bar" - ], - "grid": 24 - }, - { - "id": 235, - "paths": [ - "M86 938l852-852v256h-170v596h-682zM854 938v-84h84v84h-84zM854 768v-342h84v342h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_connected_no_internet_4_bar" - ], - "grid": 24 - }, - { - "id": 236, - "paths": [ - "M938 86v852h-852zM854 292l-562 562h562v-562z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_null" - ], - "grid": 24 - }, - { - "id": 237, - "paths": [ - "M204 192l734 736-54 54-84-86h-758l378-378-270-272zM896 42v734l-366-366z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_off" - ], - "grid": 24 - }, - { - "id": 238, - "paths": [ - "M512 916l-496-618q242-170 496-170t496 170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_wifi_4_bar" - ], - "grid": 24 - }, - { - "id": 239, - "paths": [ - "M662 618v112l-150 188-494-620 12-10q12-8 25-17t35-23 47-26 57-27 68-26 75-21 84-15 91-5 91 5 84 15 75 21 68 26 57 27 47 26 35 23 25 17l12 10-88 112q-12-4-44-4-90 0-151 61t-61 151zM938 682v-64q0-26-19-45t-45-19-45 19-19 45v64h128zM982 682q16 0 29 14t13 30v170q0 16-13 29t-29 13h-214q-16 0-29-13t-13-29v-170q0-16 13-30t29-14v-64q0-46 30-76t76-30 77 31 31 75v64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_wifi_4_bar_lock" - ], - "grid": 24 - }, - { - "id": 240, - "paths": [ - "M140 62q24 24 307 306t427 430l-54 54-142-142-166 206-496-618q66-54 156-94l-86-88zM1008 298l-232 290-442-440q90-20 178-20 254 0 496 170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_wifi_off" - ], - "grid": 24 - }, - { - "id": 241, - "paths": [ - "M170 470v84h86v-84h-86zM86 598v-172h852v172h-852zM256 298v-84h-86v84h86zM86 170h852v172h-852v-172zM170 726v84h86v-84h-86zM86 854v-172h852v172h-852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "storage" - ], - "grid": 24 - }, - { - "id": 242, - "paths": [ - "M640 298h170v172h-42v84q0 36-25 61t-61 25h-128v130q52 28 52 84 0 38-27 66t-67 28-67-28-27-66q0-56 52-84v-130h-128q-36 0-61-25t-25-61v-88q-52-28-52-82 0-40 28-67t66-27 66 27 28 67q0 56-50 82v88h128v-340h-86l128-172 128 172h-86v340h128v-84h-42v-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "usb" - ], - "grid": 24 - }, - { - "id": 243, - "paths": [ - "M938 682v-64q0-26-19-45t-45-19-45 19-19 45v64h128zM982 682q18 0 30 13t12 31v170q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-170q0-18 12-31t30-13v-64q0-44 31-75t75-31 76 31 32 75v64zM874 406q-88 0-150 62t-62 150v122l-150 198-512-682q224-170 512-170t512 170l-114 152q-12-2-36-2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi_lock" - ], - "grid": 24 - }, - { - "id": 244, - "paths": [ - "M512 128q176 0 301 124t125 302q0 116-57 215t-155 155l-44-74q78-46 125-125t47-171q0-140-100-240t-242-100-242 100-100 240q0 94 46 172t124 124l-42 74q-98-56-155-155t-57-215q0-178 125-302t301-124zM768 554q0 70-35 129t-93 93l-42-74q84-50 84-148 0-70-50-120t-120-50-120 50-50 120q0 98 84 148l-42 74q-58-34-93-93t-35-129q0-106 75-181t181-75 181 75 75 181zM512 470q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi_tethering" - ], - "grid": 24 - }, - { - "id": 245, - "paths": [ - "M426 640v-154l-238 240-60-60 238-240h-152v-84h298v298h-86zM768 44q34 0 60 25t26 59v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v42h426v-596h-426v42h-86v-128q0-34 26-60t60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_to_home_screen" - ], - "grid": 24 - }, - { - "id": 246, - "paths": [ - "M470 214v256h84v-86h-42v-42h42v-86h-42v-42h42q0-18-12-31t-30-13-30 13-12 31zM640 554q86 62 86 172 0 88-63 150t-151 62-151-62-63-150q0-110 86-172v-340q0-52 38-90t90-38 90 38 38 90v340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "device_thermostat" - ], - "grid": 24 - }, - { - "id": 247, - "paths": [ - "M300 574l252-252 54 54-308 306-162-162 54-54zM810 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-426q-34 0-60-26t-26-60v-128h86v86h426v-684h-426v86h-86v-128q0-34 26-60t60-26h426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mobile_friendly" - ], - "grid": 24 - }, - { - "id": 248, - "paths": [ - "M726 214h-392l-116-116q20-56 80-56h428q34 0 59 26t25 60v562l-84-86v-390zM298 810h416l-416-414v414zM118 106l820 820-54 54-74-74q-4 32-28 54t-56 22h-428q-34 0-59-26t-25-60v-586l-150-150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mobile_off" - ], - "grid": 24 - }, - { - "id": 249, - "paths": [ - "M470 384h128v470h-128v-470zM214 598h128v256h-128v-256zM726 170h128v684h-128v-684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_alt" - ], - "grid": 24 - }, - { - "id": 250, - "paths": [ - "M704 256h64v490q0 98-68 167t-166 69-167-69-69-167v-532q0-70 51-121t121-51 120 51 50 121v448q0 44-31 75t-75 31-76-31-32-75v-406h64v406q0 18 13 30t31 12 30-12 12-30v-448q0-44-31-76t-75-32-76 32-32 76v532q0 70 51 121t121 51 120-51 50-121v-490z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "attach_file" - ], - "grid": 24 - }, - { - "id": 251, - "paths": [ - "M504 466q44 12 73 24t61 33 49 53 17 76q0 62-41 101t-109 51v92h-128v-92q-66-14-109-56t-47-108h94q8 90 126 90 62 0 89-23t27-53q0-72-128-104-200-46-200-176 0-58 42-99t106-55v-92h128v94q66 16 101 60t37 102h-94q-4-90-108-90-52 0-83 22t-31 58q0 58 128 92z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "attach_money" - ], - "grid": 24 - }, - { - "id": 252, - "paths": [ - "M810 470v-256h-256v256h256zM810 810v-256h-256v256h256zM470 470v-256h-256v256h256zM470 810v-256h-256v256h256zM128 128h768v768h-768v-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_all" - ], - "grid": 24 - }, - { - "id": 253, - "paths": [ - "M214 640v86h-86v-86h86zM128 896v-86h768v86h-768zM214 470v84h-86v-84h86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM214 298v86h-86v-86h86zM810 726v-86h86v86h-86zM810 554v-84h86v84h-86zM726 128v86h-86v-86h86zM554 128v86h-84v-86h84zM726 470v84h-86v-84h86zM554 298v86h-84v-86h84zM214 128v86h-86v-86h86zM554 470v84h-84v-84h84zM384 128v86h-86v-86h86zM554 640v86h-84v-86h84zM384 470v84h-86v-84h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_bottom" - ], - "grid": 24 - }, - { - "id": 254, - "paths": [ - "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM470 214v-86h84v86h-84zM810 128h86v86h-86v-86zM470 384v-86h84v86h-84zM810 384v-86h86v86h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 554v-84h84v84h-84zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM470 896v-86h84v86h-84zM470 726v-86h84v86h-84zM298 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_clear" - ], - "grid": 24 - }, - { - "id": 255, - "paths": [ - "M0 854h1024v170h-1024v-170zM884 172l-84 84-160-160 84-84q12-12 30-12t30 12l100 100q12 12 12 30t-12 30zM758 298l-428 428h-160v-160l428-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_color" - ], - "grid": 24 - }, - { - "id": 256, - "paths": [ - "M810 896v-86h86v86h-86zM640 896v-86h86v86h-86zM470 726v-86h84v86h-84zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM128 554v-84h768v84h-768zM470 896v-86h84v86h-84zM810 726v-86h86v86h-86zM554 128v86h-84v-86h84zM554 298v86h-84v-86h84zM726 128v86h-86v-86h86zM384 128v86h-86v-86h86zM214 128v86h-86v-86h86zM298 896v-86h86v86h-86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM128 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_horizontal" - ], - "grid": 24 - }, - { - "id": 257, - "paths": [ - "M810 726v-86h86v86h-86zM810 896v-86h86v86h-86zM554 128v342h342v84h-342v342h-84v-342h-342v-84h342v-342h84zM640 896v-86h86v86h-86zM810 128h86v86h-86v-86zM810 384v-86h86v86h-86zM726 128v86h-86v-86h86zM214 128v86h-86v-86h86zM384 128v86h-86v-86h86zM128 726v-86h86v86h-86zM214 298v86h-86v-86h86zM298 896v-86h86v86h-86zM128 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_inner" - ], - "grid": 24 - }, - { - "id": 258, - "paths": [ - "M640 214v-86h86v86h-86zM640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM810 554v-84h86v84h-86zM810 128h86v86h-86v-86zM810 726v-86h86v86h-86zM640 896v-86h86v86h-86zM810 384v-86h86v86h-86zM128 896v-768h86v768h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM298 896v-86h86v86h-86zM470 554v-84h84v84h-84zM470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 726v-86h84v86h-84zM470 896v-86h84v86h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_left" - ], - "grid": 24 - }, - { - "id": 259, - "paths": [ - "M384 470v84h-86v-84h86zM554 640v86h-84v-86h84zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM554 298v86h-84v-86h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_outer" - ], - "grid": 24 - }, - { - "id": 260, - "paths": [ - "M470 384v-86h84v86h-84zM470 214v-86h84v86h-84zM470 554v-84h84v84h-84zM640 214v-86h86v86h-86zM640 896v-86h86v86h-86zM810 128h86v768h-86v-768zM640 554v-84h86v84h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM470 896v-86h84v86h-84zM128 896v-86h86v86h-86zM298 554v-84h86v84h-86zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM298 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_right" - ], - "grid": 24 - }, - { - "id": 261, - "paths": [ - "M810 384v-86h86v86h-86zM128 128h768v86h-682v682h-86v-768zM810 554v-84h86v84h-86zM810 726v-86h86v86h-86zM470 896v-86h84v86h-84zM298 896v-86h86v86h-86zM810 896v-86h86v86h-86zM640 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_style" - ], - "grid": 24 - }, - { - "id": 262, - "paths": [ - "M640 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 384v-86h84v86h-84zM640 896v-86h86v86h-86zM810 726v-86h86v86h-86zM128 128h768v86h-768v-86zM810 554v-84h86v84h-86zM810 384v-86h86v86h-86zM470 726v-86h84v86h-84zM128 384v-86h86v86h-86zM128 554v-84h86v84h-86zM128 896v-86h86v86h-86zM128 726v-86h86v86h-86zM470 896v-86h84v86h-84zM470 554v-84h84v84h-84zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_top" - ], - "grid": 24 - }, - { - "id": 263, - "paths": [ - "M640 554v-84h86v84h-86zM640 896v-86h86v86h-86zM640 214v-86h86v86h-86zM810 384v-86h86v86h-86zM810 128h86v86h-86v-86zM810 554v-84h86v84h-86zM810 896v-86h86v86h-86zM470 896v-768h84v768h-84zM810 726v-86h86v86h-86zM298 214v-86h86v86h-86zM128 726v-86h86v86h-86zM128 896v-86h86v86h-86zM128 554v-84h86v84h-86zM298 554v-84h86v84h-86zM298 896v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "border_vertical" - ], - "grid": 24 - }, - { - "id": 264, - "paths": [ - "M128 128h768v86h-768v-86zM298 298h428v86h-428v-86zM128 554v-84h768v84h-768zM128 896v-86h768v86h-768zM298 640h428v86h-428v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_align_center" - ], - "grid": 24 - }, - { - "id": 265, - "paths": [ - "M128 128h768v86h-768v-86zM128 384v-86h768v86h-768zM128 554v-84h768v84h-768zM128 726v-86h768v86h-768zM128 896v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_align_justify" - ], - "grid": 24 - }, - { - "id": 266, - "paths": [ - "M128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 554v-84h768v84h-768zM640 298v86h-512v-86h512zM640 640v86h-512v-86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_align_left" - ], - "grid": 24 - }, - { - "id": 267, - "paths": [ - "M128 128h768v86h-768v-86zM384 384v-86h512v86h-512zM128 554v-84h768v84h-768zM384 726v-86h512v86h-512zM128 896v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_align_right" - ], - "grid": 24 - }, - { - "id": 268, - "paths": [ - "M576 662q28 0 46-19t18-45-18-45-46-19h-150v128h150zM426 278v128h128q26 0 45-19t19-45-19-45-45-19h-128zM666 460q92 42 92 146 0 68-45 115t-113 47h-302v-598h268q72 0 121 50t49 122-70 118z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_bold" - ], - "grid": 24 - }, - { - "id": 269, - "paths": [ - "M256 214h598v128h-248l-68 160-90-88 30-72h-102l-120-120v-8zM140 214l12 10 616 618-54 54-242-242-66 156h-128l104-246-296-296z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_clear" - ], - "grid": 24 - }, - { - "id": 270, - "paths": [ - "M0 854h1024v170h-1024v-170zM810 490q86 94 86 150 0 34-26 60t-60 26-59-26-25-60q0-24 21-62t41-62zM222 426h410l-206-204zM706 382q20 20 20 46t-20 44l-234 234q-20 20-46 20-24 0-44-20l-236-234q-18-18-18-46 0-26 18-44l220-220-102-102 62-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_color_fill" - ], - "grid": 24 - }, - { - "id": 271, - "paths": [ - "M224 224l624 624-54 54-114-112q-74 64-168 64-106 0-181-75t-75-181q0-68 56-176l-142-142zM768 598q0 30-6 56l-366-368 116-150q28 32 71 86t114 177 71 199z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_color_reset" - ], - "grid": 24 - }, - { - "id": 272, - "paths": [ - "M410 512h204l-102-270zM470 128h84l234 598h-96l-46-128h-268l-48 128h-96zM0 854h1024v170h-1024v-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_color_text" - ], - "grid": 24 - }, - { - "id": 273, - "paths": [ - "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM128 896v-86h768v86h-768zM128 512l170-170v340zM470 726v-86h426v86h-426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_indent_decrease" - ], - "grid": 24 - }, - { - "id": 274, - "paths": [ - "M470 554v-84h426v84h-426zM470 384v-86h426v86h-426zM128 128h768v86h-768v-86zM470 726v-86h426v86h-426zM128 342l170 170-170 170v-340zM128 896v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_indent_increase" - ], - "grid": 24 - }, - { - "id": 275, - "paths": [ - "M426 170h342v128h-120l-144 342h94v128h-342v-128h120l144-342h-94v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_italic" - ], - "grid": 24 - }, - { - "id": 276, - "paths": [ - "M426 554v-84h512v84h-512zM426 810v-84h512v84h-512zM426 214h512v84h-512v-84zM256 298v428h106l-148 148-150-148h106v-428h-106l150-148 148 148h-106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_line_spacing" - ], - "grid": 24 - }, - { - "id": 277, - "paths": [ - "M298 214h598v84h-598v-84zM298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM170 704q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM170 192q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM170 448q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_list_bulleted" - ], - "grid": 24 - }, - { - "id": 278, - "paths": [ - "M298 554v-84h598v84h-598zM298 810v-84h598v84h-598zM298 214h598v84h-598v-84zM86 470v-44h128v40l-78 88h78v44h-128v-40l76-88h-76zM128 342v-128h-42v-44h84v172h-42zM86 726v-44h128v172h-128v-44h84v-20h-42v-44h42v-20h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_list_numbered" - ], - "grid": 24 - }, - { - "id": 279, - "paths": [ - "M768 170h128v342h-342v384q0 18-12 30t-30 12h-86q-18 0-30-12t-12-30v-470h426v-170h-42v42q0 18-12 31t-30 13h-512q-18 0-31-13t-13-31v-170q0-18 13-30t31-12h512q18 0 30 12t12 30v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_paint" - ], - "grid": 24 - }, - { - "id": 280, - "paths": [ - "M598 726l84-172h-128v-256h256v256l-84 172h-128zM256 726l86-172h-128v-256h256v256l-86 172h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_quote" - ], - "grid": 24 - }, - { - "id": 281, - "paths": [ - "M128 512v-128h384v128h-128v298h-128v-298h-128zM384 170h554v128h-212v512h-128v-512h-214v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_size" - ], - "grid": 24 - }, - { - "id": 282, - "paths": [ - "M128 598v-86h768v86h-768zM214 170h596v128h-212v128h-172v-128h-212v-128zM426 810v-128h172v128h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_strikethrough" - ], - "grid": 24 - }, - { - "id": 283, - "paths": [ - "M896 768l-170 170v-128h-512v-84h512v-128zM384 426q-70 0-120-50t-50-120 50-120 120-50h342v84h-86v470h-86v-470h-84v470h-86v-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_textdirection_l_to_r" - ], - "grid": 24 - }, - { - "id": 284, - "paths": [ - "M342 726h512v84h-512v128l-172-170 172-170v128zM426 426q-70 0-120-50t-50-120 50-120 120-50h342v84h-86v470h-84v-470h-86v470h-86v-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_textdirection_r_to_l" - ], - "grid": 24 - }, - { - "id": 285, - "paths": [ - "M214 810h596v86h-596v-86zM512 726q-106 0-181-75t-75-181v-342h106v342q0 62 44 105t106 43 106-43 44-105v-342h106v342q0 106-75 181t-181 75z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_underlined" - ], - "grid": 24 - }, - { - "id": 286, - "paths": [ - "M768 170v128h-298l212 214-212 214h298v128h-512v-86l278-256-278-256v-86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "functions" - ], - "grid": 24 - }, - { - "id": 287, - "paths": [ - "M726 726v-172h-86v172h86zM554 726v-428h-84v428h84zM384 726v-300h-86v300h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_chart", - "poll", - "assessment" - ], - "grid": 24 - }, - { - "id": 288, - "paths": [ - "M768 342v-86h-512v86h512zM768 470v-86h-512v86h512zM768 598v-86h-512v86h512zM854 86q34 0 59 25t25 59v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_comment" - ], - "grid": 24 - }, - { - "id": 289, - "paths": [ - "M554 384h236l-236-234v234zM256 86h342l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_drive_file" - ], - "grid": 24 - }, - { - "id": 290, - "paths": [ - "M512 746q-74 0-133-41t-85-107h436q-26 66-85 107t-133 41zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_emoticon", - "tag_faces", - "mood" - ], - "grid": 24 - }, - { - "id": 291, - "paths": [ - "M810 810v-468h-596v468h596zM682 42h86v86h42q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86zM726 512v214h-214v-214h214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_invitation", - "event" - ], - "grid": 24 - }, - { - "id": 292, - "paths": [ - "M362 576l-148 192h596l-192-256-148 192zM896 810q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596q34 0 60 26t26 60v596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_photo", - "image", - "photo" - ], - "grid": 24 - }, - { - "id": 293, - "paths": [ - "M938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mode_comment" - ], - "grid": 24 - }, - { - "id": 294, - "paths": [ - "M214 598l298-300 298 300h-170v256h-256v-256h-170zM214 170h596v86h-596v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "publish" - ], - "grid": 24 - }, - { - "id": 295, - "paths": [ - "M768 384h86v256h-684v-256h86v170h512v-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "space_bar" - ], - "grid": 24 - }, - { - "id": 296, - "paths": [ - "M400 560q0 108 124 108 98 0 98-72 0-32-13-46t-47-30q-2 0-7-2t-9-4-8-2h-410v-86h768v86h-166q0 2 3 7t5 7q14 34 14 70 0 122-134 160-42 12-92 12-32 0-62-6-72-14-112-44-78-58-78-158h126zM622 320q0-90-102-90-72 0-94 44-6 12-6 28 0 30 32 52 32 20 60 30h-196q0-2-4-5t-4-5q-16-26-16-72 0-74 64-126 62-48 166-48 106 0 166 54 62 56 62 138h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "strikethrough_s" - ], - "grid": 24 - }, - { - "id": 297, - "paths": [ - "M170 810h684v86h-684v-86zM682 554l-170 172-170-172h128v-426h84v426h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vertical_align_bottom" - ], - "grid": 24 - }, - { - "id": 298, - "paths": [ - "M170 470h684v84h-684v-84zM682 214l-170 170-170-170h128v-172h84v172h128zM342 810l170-170 170 170h-128v172h-84v-172h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vertical_align_center" - ], - "grid": 24 - }, - { - "id": 299, - "paths": [ - "M170 128h684v86h-684v-86zM342 470l170-172 170 172h-128v426h-84v-426h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vertical_align_top" - ], - "grid": 24 - }, - { - "id": 300, - "paths": [ - "M726 470q70 0 120 50t50 120-50 120-120 50h-86v86l-128-128 128-128v86h96q34 0 60-26t26-60-26-60-60-26h-566v-84h556zM854 214v84h-684v-84h684zM170 810v-84h256v84h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wrap_text" - ], - "grid": 24 - }, - { - "id": 301, - "paths": [ - "M228 174l622 624-54 54-94-96q-38 34-104 48v92h-128v-92q-66-14-110-56t-48-108h94q8 90 128 90 74 0 102-40l-150-148q-166-50-166-168l-146-146zM534 294q-38 0-66 12l-62-62q28-14 64-24v-92h128v94q64 16 99 60t37 102h-94q-4-90-106-90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "money_off" - ], - "grid": 24 - }, - { - "id": 302, - "paths": [ - "M170 640v-86h684v86h-684zM854 384v86h-684v-86h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drag_handle" - ], - "grid": 24 - }, - { - "id": 303, - "paths": [ - "M456 544h112l-56-164zM586 598h-150l-30 84h-70l146-384h60l144 384h-68zM810 214h86v-86h-86v86zM896 896v-86h-86v86h86zM726 810v-84h84v-428h-84v-84h-428v84h-84v428h84v84h428zM214 896v-86h-86v86h86zM128 128v86h86v-86h-86zM982 298h-86v428h86v256h-256v-86h-428v86h-256v-256h86v-428h-86v-256h256v86h428v-86h256v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_shapes" - ], - "grid": 24 - }, - { - "id": 304, - "paths": [ - "M724 280l90-90 60 60-90 92zM150 250l60-60 90 90-60 62zM470 86h84v128h-84v-128zM256 598v-214h512v214l-128 128v212h-256v-212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "highlight" - ], - "grid": 24 - }, - { - "id": 305, - "paths": [ - "M832 406q44 0 75 31t31 75-31 75-75 31q-72 0-98-64h-124q-26 64-98 64t-98-64h-124q-26 64-98 64-44 0-75-31t-31-75 31-75 75-31q72 0 98 64h124q26-64 98-64t98 64h124q26-64 98-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "linear_scale" - ], - "grid": 24 - }, - { - "id": 306, - "paths": [ - "M170 554h428v86h-428v-86zM170 384h684v86h-684v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "short_text" - ], - "grid": 24 - }, - { - "id": 307, - "paths": [ - "M918 384v128h-128v298h-128v-298h-128v-128h384zM106 170h556v128h-214v512h-128v-512h-214v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_fields" - ], - "grid": 24 - }, - { - "id": 308, - "paths": [ - "M572 772q134-26 134-134 0-122-180-168-112-28-112-82 0-30 27-50t75-20q90 0 94 80h84q-4-114-122-144v-84h-114v84q-58 12-95 47t-37 89q0 112 178 156 114 26 114 92 0 26-23 47t-79 21q-106 0-114-80h-84q6 114 140 144v84h114v-82zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "monetization_on" - ], - "grid": 24 - }, - { - "id": 309, - "paths": [ - "M214 170h596v128h-234v512h-128v-512h-234v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "title" - ], - "grid": 24 - }, - { - "id": 310, - "paths": [ - "M128 810v-384h214v470h-128q-34 0-60-26t-26-60zM854 128q34 0 59 26t25 60v128h-810v-128q0-34 26-60t60-26h640zM726 896v-470h212v384q0 34-25 60t-59 26h-128zM426 428h214v468h-214v-468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "table_chart" - ], - "grid": 24 - }, - { - "id": 311, - "paths": [ - "M726 470v-86h-172v-170h-84v170h-172v86h172v170h84v-170h172zM938 170v768l-170-170h-598q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h684q34 0 59 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_comment" - ], - "grid": 24 - }, - { - "id": 312, - "paths": [ - "M86 470h596v84h-596v-84zM86 726h596v84h-596v-84zM86 214h596v84h-596v-84zM768 470v-44h128v40l-76 88h76v44h-128v-40l76-88h-76zM810 342v-128h-42v-44h86v172h-44zM768 726v-44h128v172h-128v-44h86v-20h-44v-44h44v-20h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "format_list_numbered_rtl" - ], - "grid": 24 - }, - { - "id": 313, - "paths": [ - "M580 750q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM342 256q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM170 598q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "scatter_plot" - ], - "grid": 24 - }, - { - "id": 314, - "paths": [ - "M810 554v-106l-256 256-170-170-170 170v106l170-170 170 170zM298 310v160h172v-64h-108v-32h108v-160h-172v64h108v32h-108zM512 214v256h64v-128l86 128h72l-86-128 86-128h-72l-86 128v-128h-64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "score" - ], - "grid": 24 - }, - { - "id": 315, - "paths": [ - "M832 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-640q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h640zM832 814v-600h-640v600h640zM726 726h-86v-172h86v172zM554 726h-84v-428h84v428zM384 726h-86v-300h86v300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insert_chart_outlined" - ], - "grid": 24 - }, - { - "id": 316, - "paths": [ - "M692 554h118v256h-118v-256zM452 214h120v596h-120v-596zM214 392h128v418h-128v-418z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bar_chart" - ], - "grid": 24 - }, - { - "id": 317, - "paths": [ - "M128 554v-84h768v84h-768zM128 256h768v86h-768v-86zM128 768v-86h512v86h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notes" - ], - "grid": 24 - }, - { - "id": 318, - "paths": [ - "M86 534q0-98 68-167t166-69h448q70 0 120 51t50 121-50 120-120 50h-362q-44 0-76-31t-32-75 32-76 76-32h320v86h-324q-18 0-18 21t18 21h366q34 0 60-25t26-59-26-60-60-26h-448q-62 0-106 44t-44 106 44 105 106 43h406v86h-406q-98 0-166-68t-68-166z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "attachment" - ], - "grid": 24 - }, - { - "id": 319, - "paths": [ - "M826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud" - ], - "grid": 24 - }, - { - "id": 320, - "paths": [ - "M704 682q44 0 75-31t31-75-31-75-75-31h-22q0-70-50-121t-120-51q-54 0-102 38t-62 92l-6-2q-52 0-90 38t-38 90 38 90 90 38h362zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_circle" - ], - "grid": 24 - }, - { - "id": 321, - "paths": [ - "M426 726l282-282-60-60-222 220-88-88-60 60zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_done" - ], - "grid": 24 - }, - { - "id": 322, - "paths": [ - "M726 554h-128v-170h-172v170h-128l214 214zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_download" - ], - "grid": 24 - }, - { - "id": 323, - "paths": [ - "M330 426h-74q-70 0-120 51t-50 121 50 120 120 50h416zM128 224l54-54 714 714-54 54-86-84h-500q-106 0-181-75t-75-181q0-104 72-178t174-78zM826 428q82 6 140 67t58 145q0 110-90 174l-62-62q66-36 66-112 0-52-38-90t-90-38h-64v-22q0-98-68-166t-166-68q-56 0-108 26l-64-62q78-50 172-50 108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_off" - ], - "grid": 24 - }, - { - "id": 324, - "paths": [ - "M810 768q52 0 90-38t38-90-38-90-90-38h-64v-22q0-98-68-166t-166-68q-80 0-142 48t-84 122h-30q-70 0-120 51t-50 121 50 120 120 50h554zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_queue" - ], - "grid": 24 - }, - { - "id": 325, - "paths": [ - "M598 554h128l-214-212-214 212h128v172h172v-172zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cloud_upload", - "backup" - ], - "grid": 24 - }, - { - "id": 326, - "paths": [ - "M214 768h596v86h-596v-86zM810 384l-298 298-298-298h170v-256h256v256h170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file_download", - "get_app" - ], - "grid": 24 - }, - { - "id": 327, - "paths": [ - "M214 768h596v86h-596v-86zM384 682v-256h-170l298-298 298 298h-170v256h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file_upload" - ], - "grid": 24 - }, - { - "id": 328, - "paths": [ - "M426 170l86 86h342q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder" - ], - "grid": 24 - }, - { - "id": 329, - "paths": [ - "M854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder_open" - ], - "grid": 24 - }, - { - "id": 330, - "paths": [ - "M810 726v-44q0-38-59-61t-111-23-111 23-59 61v44h340zM640 384q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder_shared" - ], - "grid": 24 - }, - { - "id": 331, - "paths": [ - "M810 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM854 256q36 0 60 25t24 61v426q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "create_new_folder" - ], - "grid": 24 - }, - { - "id": 332, - "paths": [ - "M42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cast" - ], - "grid": 24 - }, - { - "id": 333, - "paths": [ - "M896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-298v-86h298v-596h-768v128h-86v-128q0-34 26-60t60-26h768zM42 426q194 0 332 138t138 332h-86q0-160-113-272t-271-112v-86zM810 298v428h-240q-40-126-135-222t-221-136v-70h596zM42 598q124 0 212 87t88 211h-86q0-88-63-151t-151-63v-84zM42 768q52 0 90 38t38 90h-128v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cast_connected" - ], - "grid": 24 - }, - { - "id": 334, - "paths": [ - "M170 256v426h684v-426h-684zM854 768h170v86h-1024v-86h170q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684q34 0 59 26t25 60v426q0 34-25 60t-59 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "computer", - "laptop" - ], - "grid": 24 - }, - { - "id": 335, - "paths": [ - "M896 598v-428h-768v428h768zM896 86q34 0 60 25t26 59v512q0 34-26 60t-60 26h-298l84 128v42h-340v-42l84-128h-298q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "desktop_mac" - ], - "grid": 24 - }, - { - "id": 336, - "paths": [ - "M896 682v-512h-768v512h768zM896 86q34 0 60 25t26 59v512q0 34-26 60t-60 26h-298v86h84v84h-340v-84h84v-86h-298q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "desktop_windows" - ], - "grid": 24 - }, - { - "id": 337, - "paths": [ - "M512 470h170v256h-170v-256zM256 298h214v214h-214v-214zM512 298h170v128h-170v-128zM256 554h214v172h-214v-172zM768 810v-596h-598v596h598zM938 384h-84v86h84v84h-84v86h84v86h-84v84q0 34-26 60t-60 26h-598q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h598q34 0 60 26t26 60v84h84v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "developer_board" - ], - "grid": 24 - }, - { - "id": 338, - "paths": [ - "M682 640v-426h-340v426h340zM682 44q34 0 60 25t26 59v598q0 34-26 59t-60 25h-340q-34 0-60-25t-26-59v-598q0-34 26-60t60-26zM342 982v-86h340v86h-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dock" - ], - "grid": 24 - }, - { - "id": 339, - "paths": [ - "M512 42q160 0 272 113t112 271v300q0 52-38 90t-90 38h-128v-342h170v-86q0-124-87-211t-211-87-211 87-87 211v86h170v342h-128q-52 0-90-38t-38-90v-300q0-158 112-271t272-113z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "headset" - ], - "grid": 24 - }, - { - "id": 340, - "paths": [ - "M512 42q160 0 272 113t112 271v428q0 52-38 90t-90 38h-256v-86h298v-42h-170v-342h170v-86q0-124-87-211t-211-87-211 87-87 211v86h170v342h-128q-52 0-90-38t-38-90v-300q0-158 112-271t272-113z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "headset_mic" - ], - "grid": 24 - }, - { - "id": 341, - "paths": [ - "M810 426v-84h-84v84h84zM810 554v-84h-84v84h84zM682 426v-84h-84v84h84zM682 554v-84h-84v84h84zM682 726v-86h-340v86h340zM298 426v-84h-84v84h84zM298 554v-84h-84v84h84zM342 470v84h84v-84h-84zM342 342v84h84v-84h-84zM470 470v84h84v-84h-84zM470 342v84h84v-84h-84zM854 214q34 0 59 25t25 59v428q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-428q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard" - ], - "grid": 24 - }, - { - "id": 342, - "paths": [ - "M316 366l196 196 196-196 60 60-256 256-256-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_arrow_down" - ], - "grid": 24 - }, - { - "id": 343, - "paths": [ - "M658 708l-60 60-256-256 256-256 60 60-196 196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_arrow_left" - ], - "grid": 24 - }, - { - "id": 344, - "paths": [ - "M366 708l196-196-196-196 60-60 256 256-256 256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_arrow_right" - ], - "grid": 24 - }, - { - "id": 345, - "paths": [ - "M316 658l-60-60 256-256 256 256-60 60-196-196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_arrow_up" - ], - "grid": 24 - }, - { - "id": 346, - "paths": [ - "M896 470v84h-604l152 154-60 60-256-256 256-256 60 60-152 154h604z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_backspace" - ], - "grid": 24 - }, - { - "id": 347, - "paths": [ - "M256 768v-86h512v86h-512zM512 358l-196 196-60-60 256-256 256 256-60 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_capslock" - ], - "grid": 24 - }, - { - "id": 348, - "paths": [ - "M512 982l-170-172h340zM810 342v-86h-84v86h84zM810 470v-86h-84v86h84zM682 342v-86h-84v86h84zM682 470v-86h-84v86h84zM682 640v-86h-340v86h340zM298 342v-86h-84v86h84zM298 470v-86h-84v86h84zM342 384v86h84v-86h-84zM342 256v86h84v-86h-84zM470 384v86h84v-86h-84zM470 256v86h84v-86h-84zM854 128q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_hide" - ], - "grid": 24 - }, - { - "id": 349, - "paths": [ - "M810 298h86v256h-648l154 154-60 60-256-256 256-256 60 60-154 154h562v-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_return" - ], - "grid": 24 - }, - { - "id": 350, - "paths": [ - "M854 256h84v512h-84v-512zM494 316l60-60 256 256-256 256-60-60 154-154h-606v-84h606z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_tab" - ], - "grid": 24 - }, - { - "id": 351, - "paths": [ - "M738 512h72q0 108-75 189t-181 97v140h-84v-140q-106-16-181-97t-75-189h72q0 94 67 156t159 62 159-62 67-156zM512 640q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_voice" - ], - "grid": 24 - }, - { - "id": 352, - "paths": [ - "M854 640v-426h-684v426h684zM598 768v-42h-172v42h172zM938 768h86v86h-1024v-86h86v-640h852v640z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laptop_chromebook" - ], - "grid": 24 - }, - { - "id": 353, - "paths": [ - "M512 810q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM170 214v468h684v-468h-684zM854 768h170q0 34-26 60t-60 26h-852q-34 0-60-26t-26-60h170q-34 0-59-26t-25-60v-468q0-34 25-60t59-26h684q34 0 59 26t25 60v468q0 34-25 60t-59 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laptop_mac" - ], - "grid": 24 - }, - { - "id": 354, - "paths": [ - "M170 214v426h684v-426h-684zM854 768h170v86h-1024v-86h170v-42q-34 0-59-26t-25-60v-426q0-34 25-60t59-26h684q34 0 59 26t25 60v426q0 34-25 60t-59 26v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "laptop_windows" - ], - "grid": 24 - }, - { - "id": 355, - "paths": [ - "M726 726v-428h-428v428h428zM896 470h-86v84h86v86h-86v86q0 34-25 59t-59 25h-86v86h-86v-86h-84v86h-86v-86h-86q-34 0-59-25t-25-59v-86h-86v-86h86v-84h-86v-86h86v-86q0-34 25-59t59-25h86v-86h86v86h84v-86h86v86h86q34 0 59 25t25 59v86h86v86zM554 554v-84h-84v84h84zM640 384v256h-256v-256h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "memory" - ], - "grid": 24 - }, - { - "id": 356, - "paths": [ - "M470 46v338h-300q0-130 87-226t213-112zM170 640v-170h684v170q0 140-101 241t-241 101-241-101-101-241zM554 46q126 16 213 112t87 226h-300v-338z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mouse" - ], - "grid": 24 - }, - { - "id": 357, - "paths": [ - "M736 768v-598h-448v598h448zM598 896v-42h-172v42h172zM682 42q52 0 90 38t38 90v684q0 52-38 90t-90 38h-340q-52 0-90-38t-38-90v-684q0-52 38-90t90-38h340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_android" - ], - "grid": 24 - }, - { - "id": 358, - "paths": [ - "M682 768v-598h-384v598h384zM490 938q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM662 42q44 0 75 32t31 76v724q0 44-31 76t-75 32h-342q-44 0-75-32t-31-76v-724q0-44 31-76t75-32h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_iphone" - ], - "grid": 24 - }, - { - "id": 359, - "paths": [ - "M982 342q18 0 30 12t12 30v426q0 18-12 31t-30 13h-8l-128-128h92v-300h-170v222l-86-86v-178q0-18 13-30t31-12h256zM170 268v458h458zM82 70q162 162 461 462t367 368l-54 54-100-100h-756v-128h86v-470q0-30 20-54l-78-78zM938 256h-562l-86-86h648v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phonelink_off" - ], - "grid": 24 - }, - { - "id": 360, - "paths": [ - "M640 768v-86h-86v86h86zM490 768v-86h-84v86h84zM342 768v-86h-86v86h86zM810 554q34 0 60 26t26 60v170q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-170q0-34 26-60t60-26h426v-170h86v170h84zM824 286l-34 34q-42-42-108-42-64 0-106 42l-34-34q60-60 140-60 82 0 142 60zM862 252q-82-72-180-72-96 0-178 72l-34-34q90-90 212-90 124 0 214 90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "router" - ], - "grid": 24 - }, - { - "id": 361, - "paths": [ - "M810 726v-86h-426v86h426zM298 726v-86h-84v86h84zM844 456q22 6 37 29t15 49v234q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-170q0-34 26-60t60-26h536l-600-218 30-80z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "scanner" - ], - "grid": 24 - }, - { - "id": 362, - "paths": [ - "M512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256zM512 512v382q118-38 200-143t98-239h-298zM512 512v-376l-298 132v244h298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "security" - ], - "grid": 24 - }, - { - "id": 363, - "paths": [ - "M726 640v-170h-86v170h86zM554 554v-84h-84v84h84zM554 810v-170h-84v170h84zM384 640v-170h-86v170h86zM726 810v-84h-86v84h86zM384 810v-84h-86v84h86zM852 170l2 684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-512l256-256h342q34 0 59 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sim_card" - ], - "grid": 24 - }, - { - "id": 364, - "paths": [ - "M512 512q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM512 854q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM512 170q-36 0-61 25t-25 61 25 61 61 25q34 0 60-26t26-60-26-60-60-26zM726 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-428q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speaker" - ], - "grid": 24 - }, - { - "id": 365, - "paths": [ - "M256 214v682h426v86h-426q-36 0-61-25t-25-61v-682h86zM490 534q0-44 32-76t76-32 75 32 31 76-31 75-75 31-76-31-32-75zM598 704q70 0 120-50t50-120-50-121-120-51-121 51-51 121 51 120 121 50zM598 128q-34 0-60 25t-26 61 25 60 61 24q34 0 59-24t25-60-25-61-59-25zM776 42q32 0 55 23t23 55v614q0 32-23 54t-55 22h-358q-32 0-54-22t-22-54v-614q0-32 22-55t54-23h358z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speaker_group" - ], - "grid": 24 - }, - { - "id": 366, - "paths": [ - "M810 768v-512h-596v512h596zM896 170q34 0 60 26t26 60l-2 512q0 34-25 60t-59 26h-768q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tablet" - ], - "grid": 24 - }, - { - "id": 367, - "paths": [ - "M822 810v-682h-620v682h620zM598 938v-42h-172v42h172zM768 0q52 0 90 38t38 90v768q0 52-38 90t-90 38h-512q-52 0-90-38t-38-90v-768q0-52 38-90t90-38h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tablet_android" - ], - "grid": 24 - }, - { - "id": 368, - "paths": [ - "M810 810v-682h-640v682h640zM490 982q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM790 0q44 0 75 31t31 75v812q0 44-31 75t-75 31h-598q-44 0-75-31t-31-75v-812q0-44 31-75t75-31h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tablet_mac" - ], - "grid": 24 - }, - { - "id": 369, - "paths": [ - "M512 512q0 96-69 165t-165 69-166-69-70-165h470zM512 512q-96 0-165-69t-69-165 69-166 165-70v470zM512 512q96 0 165 69t69 165-69 166-165 70v-470zM512 512q0-96 69-165t165-69 166 69 70 165h-470z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "toys" - ], - "grid": 24 - }, - { - "id": 370, - "paths": [ - "M896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tv" - ], - "grid": 24 - }, - { - "id": 371, - "paths": [ - "M256 512q0 106 75 181t181 75 181-75 75-181-75-181-181-75-181 75-75 181zM854 512q0 70-38 148t-92 120l-42 244h-340l-42-244q-130-100-130-268t130-268l42-244h340l42 244q130 104 130 268z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "watch" - ], - "grid": 24 - }, - { - "id": 372, - "paths": [ - "M726 682h170v214h-214v-130l-170-180-170 180v130h-214v-214h170l172-170v-136q-38-14-62-46t-24-74q0-52 38-90t90-38 90 38 38 90q0 42-24 74t-62 46v136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "device_hub" - ], - "grid": 24 - }, - { - "id": 373, - "paths": [ - "M682 640v-86h214v86h-214zM384 640v-86h214v86h-214zM86 640v-86h212v86h-212zM86 384h810v86h-810v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "power_input" - ], - "grid": 24 - }, - { - "id": 374, - "paths": [ - "M896 768v-342h-170v342h170zM938 342q16 0 30 13t14 29v426q0 16-14 30t-30 14h-256q-16 0-29-14t-13-30v-426q0-16 13-29t29-13h256zM470 746q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM554 512v76q44 40 44 94 0 56-44 96v76h-170v-76q-42-38-42-96 0-56 42-94v-76h170zM128 256v512h170v86h-170q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "devices_other" - ], - "grid": 24 - }, - { - "id": 375, - "paths": [ - "M832 512q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM662 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM470 554v-84h-128v-128h-86v128h-128v84h128v128h86v-128h128zM896 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "videogame_asset" - ], - "grid": 24 - }, - { - "id": 376, - "paths": [ - "M474 662h76v76h-76v-76zM512 286q64 0 107 43t43 105q0 50-56 100t-56 90h-76q0-42 17-71t39-42 39-33 17-44q0-30-22-52t-52-22-52 22-22 52h-76q0-62 43-105t107-43zM726 810v-596h-428v596h428zM726 42q34 0 59 26t25 60v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "device_unknown" - ], - "grid": 24 - }, - { - "id": 377, - "paths": [ - "M96 74l854 854-54 54-92-92q-18 6-36 6h-128v-170l-392-394q-34 62-34 138v84h170v342h-128q-52 0-90-38t-38-90v-298q0-112 56-200l-142-142zM512 170q-88 0-162 48l-62-60q98-72 224-72 160 0 272 113t112 271v294l-210-210h124v-84q0-124-87-212t-211-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "headset_off" - ], - "grid": 24 - }, - { - "id": 378, - "paths": [ - "M640 512q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "adjust" - ], - "grid": 24 - }, - { - "id": 379, - "paths": [ - "M592 550l176-80-176-80-80-176-80 176-176 80 176 80 80 176zM810 86q34 0 60 25t26 59v598q0 34-26 60t-60 26h-170l-128 128-128-128h-170q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assistant" - ], - "grid": 24 - }, - { - "id": 380, - "paths": [ - "M512 128h298v128h-170v470h-2q-8 72-62 121t-128 49q-80 0-136-56t-56-136 56-136 136-56q28 0 64 12v-396z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "audiotrack" - ], - "grid": 24 - }, - { - "id": 381, - "paths": [ - "M598 554q18 0 30 13t12 31-12 30-30 12-31-12-13-30 13-31 31-13zM598 704q20 0 20 22 0 20-20 20-22 0-22-20 0-22 22-22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM726 406q20 0 20 20 0 22-20 22-22 0-22-22 0-20 22-20zM726 576q20 0 20 22 0 20-20 20-22 0-22-20 0-22 22-22zM598 320q-22 0-22-22 0-20 22-20 20 0 20 20 0 22-20 22zM598 384q18 0 30 12t12 30-12 31-30 13-31-13-13-31 13-30 31-12zM426 320q-20 0-20-22 0-20 20-20 22 0 22 20 0 22-22 22zM298 576q22 0 22 22 0 20-22 20-20 0-20-20 0-22 20-22zM426 704q22 0 22 22 0 20-22 20-20 0-20-20 0-22 20-22zM298 406q22 0 22 20 0 22-22 22-20 0-20-22 0-20 20-20zM426 554q18 0 31 13t13 31-13 30-31 12-30-12-12-30 12-31 30-13zM426 384q18 0 31 12t13 30-13 31-31 13-30-13-12-31 12-30 30-12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "blur_circular" - ], - "grid": 24 - }, - { - "id": 382, - "paths": [ - "M554 726q-18 0-30-13t-12-31 12-30 30-12 31 12 13 30-13 31-31 13zM554 554q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM554 384q-18 0-30-12t-12-30 12-31 30-13 31 13 13 31-13 30-31 12zM726 534q-22 0-22-22t22-22q20 0 20 22t-20 22zM726 362q-22 0-22-20 0-22 22-22 20 0 20 22 0 20-20 20zM128 128h768v86h-768v-86zM726 704q-22 0-22-22 0-20 22-20 20 0 20 20 0 22-20 22zM384 726q-18 0-30-13t-12-31 12-30 30-12 30 12 12 30-12 31-30 13zM214 576q-26 0-45-18t-19-46 19-46 45-18 45 18 19 46-19 46-45 18zM214 406q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM128 896v-86h768v86h-768zM384 384q-18 0-30-12t-12-30 12-31 30-13 30 13 12 31-12 30-30 12zM384 554q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12zM214 746q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "blur_linear" - ], - "grid": 24 - }, - { - "id": 383, - "paths": [ - "M128 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM256 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM426 874q22 0 22 22t-22 22q-20 0-20-22t20-22zM128 406q22 0 22 20 0 22-22 22t-22-22q0-20 22-20zM256 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13zM896 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM426 726q18 0 31 12t13 30-13 30-31 12-30-12-12-30 12-30 30-12zM106 224l54-54 694 694-56 54-160-162q2 4 2 12 0 18-12 30t-30 12-31-12-13-30 13-30 31-12q8 0 12 2l-120-120q-4 22-22 38t-42 16q-26 0-45-19t-19-45q0-24 16-42t38-22l-120-120q2 4 2 12 0 18-12 31t-30 13-30-13-12-31 12-30 30-12l12 2zM598 874q20 0 20 22t-20 22q-22 0-22-22t22-22zM768 298q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12zM768 470q-18 0-30-13t-12-31 12-30 30-12 30 12 12 30-12 31-30 13zM768 640q-18 0-30-12t-12-30 12-31 30-13 30 13 12 31-12 30-30 12zM426 298q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM896 448q-22 0-22-22 0-20 22-20t22 20q0 22-22 22zM426 150q-20 0-20-22t20-22q22 0 22 22t-22 22zM598 150q-22 0-22-22t22-22q20 0 20 22t-20 22zM588 490q-20-2-36-18t-18-36v-10q0-26 19-45t45-19 45 19 19 45-19 45-45 19h-10zM598 298q-18 0-31-12t-13-30 13-30 31-12 30 12 12 30-12 30-30 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "blur_off" - ], - "grid": 24 - }, - { - "id": 384, - "paths": [ - "M598 362q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM598 534q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM426 726q18 0 31 12t13 30-13 30-31 12-30-12-12-30 12-30 30-12zM426 362q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM598 874q20 0 20 22t-20 22q-22 0-22-22t22-22zM598 726q18 0 30 12t12 30-12 30-30 12-31-12-13-30 13-30 31-12zM896 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM768 214q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM768 384q18 0 30 12t12 30-12 31-30 13-30-13-12-31 12-30 30-12zM768 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM768 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13zM426 534q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM426 298q-18 0-30-12t-12-30 12-30 30-12 31 12 13 30-13 30-31 12zM426 150q-20 0-20-22t20-22q22 0 22 22t-22 22zM426 874q22 0 22 22t-22 22q-20 0-20-22t20-22zM128 576q22 0 22 22 0 20-22 20t-22-20q0-22 22-22zM598 150q-22 0-22-22t22-22q20 0 20 22t-20 22zM598 298q-18 0-31-12t-13-30 13-30 31-12 30 12 12 30-12 30-30 12zM896 448q-22 0-22-22 0-20 22-20t22 20q0 22-22 22zM256 214q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM128 406q22 0 22 20 0 22-22 22t-22-22q0-20 22-20zM256 384q18 0 30 12t12 30-12 31-30 13-30-13-12-31 12-30 30-12zM256 726q18 0 30 12t12 30-12 30-30 12-30-12-12-30 12-30 30-12zM256 554q18 0 30 13t12 31-12 30-30 12-30-12-12-30 12-31 30-13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "blur_on" - ], - "grid": 24 - }, - { - "id": 385, - "paths": [ - "M86 512q0-176 125-301t301-125 301 125 125 301-125 301-301 125-301-125-125-301z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_1" - ], - "grid": 24 - }, - { - "id": 386, - "paths": [ - "M426 86q178 0 303 125t125 301-125 301-303 125q-116 0-212-56 98-56 155-155t57-215-57-215-155-155q96-56 212-56z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_2" - ], - "grid": 24 - }, - { - "id": 387, - "paths": [ - "M384 86q176 0 301 125t125 301-125 301-301 125q-68 0-128-18 132-40 215-153t83-255-83-255-215-153q60-18 128-18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_3" - ], - "grid": 24 - }, - { - "id": 388, - "paths": [ - "M512 768q106 0 181-75t75-181-75-181-181-75q-52 0-106 24 66 30 107 93t41 139-41 139-107 93q54 24 106 24zM854 370l140 142-140 142v200h-200l-142 140-142-140h-200v-200l-140-142 140-142v-200h200l142-140 142 140h200v200z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brightness_4" - ], - "grid": 24 - }, - { - "id": 389, - "paths": [ - "M768 488l128 128v194q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-280l128 128 170-172 172 172zM896 214v280l-128-128-170 172-172-172-170 172-128-130v-194q0-34 26-60t60-26h596q34 0 60 26t26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "broken_image" - ], - "grid": 24 - }, - { - "id": 390, - "paths": [ - "M884 198q12 12 12 30t-12 30l-382 382-118-118 382-382q12-12 30-12t30 12zM298 598q52 0 90 38t38 90q0 70-50 120t-120 50q-104 0-170-86 30 0 57-23t27-61q0-52 38-90t90-38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brush" - ], - "grid": 24 - }, - { - "id": 391, - "paths": [ - "M420 928q8-14 86-150t120-206l156 270q-48 40-128 68t-142 28q-48 0-92-10zM104 640h414l-158 270q-92-34-159-105t-97-165zM198 224l216 374h-320q-8-48-8-86 0-68 33-152t79-136zM930 426q8 38 8 86 0 68-33 152t-79 136l-204-352-12-22h320zM920 384h-414l158-270q92 34 159 105t97 165zM402 448l-4 4-156-270q48-40 128-68t142-28q48 0 92 10z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera" - ], - "grid": 24 - }, - { - "id": 392, - "paths": [ - "M512 726q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM384 86h256l78 84h136q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136zM376 512q0-56 40-96t96-40 96 40 40 96-40 96-96 40-96-40-40-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera_alt", - "photo_camera", - "local_see" - ], - "grid": 24 - }, - { - "id": 393, - "paths": [ - "M298 86v448q0-48 73-78t141-30 141 30 73 78v-448h-428zM726 0q34 0 59 26t25 60v596q0 34-25 60t-59 26h-300l128 128-128 128v-86h-212v-84h212v-86h-128q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428zM512 342q-34 0-59-26t-25-60 25-60 59-26 60 26 26 60-26 60-60 26zM598 854h212v84h-212v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera_front" - ], - "grid": 24 - }, - { - "id": 394, - "paths": [ - "M512 256q34 0 59-26t25-60-25-59-59-25-60 25-26 59 25 60 61 26zM726 0q34 0 59 26t25 60v596q0 34-25 60t-59 26h-300l128 128-128 128v-86h-212v-84h212v-86h-128q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428zM598 854h212v84h-212v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera_rear" - ], - "grid": 24 - }, - { - "id": 395, - "paths": [ - "M854 384v-86h-86v86h86zM854 768v-86h-86v86h86zM682 384v-86h-84v86h84zM682 768v-86h-84v86h84zM512 384v-86h-86v86h86zM512 768v-86h-86v86h86zM598 214h340v640h-340q0 34-26 59t-60 25h-342q-34 0-59-25t-25-59v-640q0-34 25-60t59-26h44v-42q0-18 12-31t30-13h170q18 0 31 13t13 31v42h42q34 0 60 26t26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera_roll" - ], - "grid": 24 - }, - { - "id": 396, - "paths": [ - "M810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "center_focus_strong" - ], - "grid": 24 - }, - { - "id": 397, - "paths": [ - "M512 598q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM512 342q70 0 120 50t50 120-50 120-120 50-120-50-50-120 50-120 120-50zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "center_focus_weak" - ], - "grid": 24 - }, - { - "id": 398, - "paths": [ - "M86 256h84v598h598v84h-598q-34 0-59-25t-25-59v-598zM470 512l-128 170h512l-172-212-126 158zM938 682q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512q34 0 59 25t25 59v512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "collections", - "photo_library" - ], - "grid": 24 - }, - { - "id": 399, - "paths": [ - "M746 512q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM618 342q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM406 342q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 512q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM512 128q158 0 271 100t113 242q0 88-63 150t-151 62h-74q-28 0-46 19t-18 45q0 22 16 42t16 44q0 28-18 46t-46 18q-160 0-272-112t-112-272 112-272 272-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "color_lens", - "palette" - ], - "grid": 24 - }, - { - "id": 400, - "paths": [ - "M296 810l344-344-82-82-344 344zM884 240q30 30 0 60l-134 134 82 82-60 60-60-60-382 380h-202v-202l380-382-60-60 60-60 82 82 134-134q12-12 30-12t30 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "colorize" - ], - "grid": 24 - }, - { - "id": 401, - "paths": [ - "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-212v-384l212 256v-554h-212v-86h212zM426 768v-256l-212 256h212zM426 128v-86h86v940h-86v-86h-212q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compare" - ], - "grid": 24 - }, - { - "id": 402, - "paths": [ - "M640 810q124 0 211-87t87-211-87-211-211-87-211 87-87 211 87 211 211 87zM640 128q160 0 272 112t112 272-112 272-272 112-272-112-112-272 112-272 272-112zM86 512q0 78 50 158t120 112v92q-112-40-184-140t-72-222 72-222 184-140v92q-78 36-124 109t-46 161zM682 342v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "control_point_duplicate" - ], - "grid": 24 - }, - { - "id": 403, - "paths": [ - "M810 682v-340h-596v340h596zM810 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_16_9" - ], - "grid": 24 - }, - { - "id": 404, - "paths": [ - "M810 768v-512h-596v512h596zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_3_2" - ], - "grid": 24 - }, - { - "id": 405, - "paths": [ - "M298 726h684v84h-172v172h-84v-172h-428q-34 0-59-25t-25-59v-428h-172v-84h172v-172h84v684zM726 640v-342h-342v-84h342q34 0 59 25t25 59v342h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop" - ], - "grid": 24 - }, - { - "id": 406, - "paths": [ - "M810 726v-428h-596v428h596zM810 214q34 0 60 25t26 59v428q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_5_4", - "crop_landscape" - ], - "grid": 24 - }, - { - "id": 407, - "paths": [ - "M810 640v-256h-596v256h596zM810 298q34 0 60 26t26 60v256q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-256q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_7_5" - ], - "grid": 24 - }, - { - "id": 408, - "paths": [ - "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_din" - ], - "grid": 24 - }, - { - "id": 409, - "paths": [ - "M810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86zM128 214q0-34 26-60t60-26h170v86h-170v170h-86v-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_free" - ], - "grid": 24 - }, - { - "id": 410, - "paths": [ - "M596 524l150 202h-468l116-152 84 102zM810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_original" - ], - "grid": 24 - }, - { - "id": 411, - "paths": [ - "M726 810v-596h-428v596h428zM726 128q34 0 59 26t25 60v596q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_portrait" - ], - "grid": 24 - }, - { - "id": 412, - "paths": [ - "M768 768v-512h-512v512h512zM768 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-512q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_square" - ], - "grid": 24 - }, - { - "id": 413, - "paths": [ - "M86 234h852v86h-852v-86zM86 448h852v86h-852v-86zM86 662h852v84h-852v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dehaze" - ], - "grid": 24 - }, - { - "id": 414, - "paths": [ - "M512 128l-426 768h852zM554 380l240 430h-240v-430zM470 380v430h-240z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "details" - ], - "grid": 24 - }, - { - "id": 415, - "paths": [ - "M618 682h-84v-64h84v-84h64v84h86v64h-86v86h-64v-86zM810 810v-596l-596 596h596zM256 298v64h214v-64h-214zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure" - ], - "grid": 24 - }, - { - "id": 416, - "paths": [ - "M810 768h-84v-454l-128 44v-72l200-72h12v554zM170 470h342v84h-342v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure_neg_1" - ], - "grid": 24 - }, - { - "id": 417, - "paths": [ - "M86 470h340v84h-340v-84zM642 696h254v72h-368v-64l178-194q36-36 62-80 14-24 14-56 0-26-4-36-20-52-76-52-92 0-92 98h-92q0-72 48-120 50-50 136-50h4q118 0 158 88 10 22 10 62 0 28-8 50-14 38-22 50-34 54-80 100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure_neg_2" - ], - "grid": 24 - }, - { - "id": 418, - "paths": [ - "M854 768h-86v-454l-128 44v-72l200-72h14v554zM426 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure_plus_1" - ], - "grid": 24 - }, - { - "id": 419, - "paths": [ - "M342 298v172h170v84h-170v172h-86v-172h-170v-84h170v-172h86zM684 696h254v72h-368v-64l178-194q36-36 62-80 16-26 16-56 0-32-22-62-20-26-60-26-42 0-70 28-22 22-22 70h-92q0-72 48-120 28-28 58-38 36-12 80-12h2q118 0 158 88 12 26 12 62 0 48-32 100-24 40-34 50-28 32-46 50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure_plus_2" - ], - "grid": 24 - }, - { - "id": 420, - "paths": [ - "M598 432q0-80-22-114-8-12-28-24-14-8-36-8t-36 8q-20 12-28 24-22 34-22 114v114q0 112 50 142 14 8 36 8 42 0 64-34 24-36 24-116v-114h-2zM336 446q0-232 176-232 130 0 164 124 14 52 14 108v88h-2q0 118-48 180-28 32-56 42-32 12-72 12t-72-12q-28-10-56-42-48-54-48-180v-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exposure_zero" - ], - "grid": 24 - }, - { - "id": 421, - "paths": [ - "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM598 640v-342h-86v-84h170v426h-84zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_1" - ], - "grid": 24 - }, - { - "id": 422, - "paths": [ - "M726 554v86h-256v-170q0-36 24-61t60-25h86v-86h-170v-84h170q36 0 61 24t25 60v86q0 36-25 61t-61 25h-86v84h172zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_2" - ], - "grid": 24 - }, - { - "id": 423, - "paths": [ - "M726 554q0 36-25 61t-61 25h-170v-86h170v-84h-86v-86h86v-86h-170v-84h170q36 0 61 24t25 60v64q0 26-19 45t-45 19q26 0 45 19t19 45v64zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_3" - ], - "grid": 24 - }, - { - "id": 424, - "paths": [ - "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM680 440l152 200h-470l118-150 84 100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter" - ], - "grid": 24 - }, - { - "id": 425, - "paths": [ - "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM640 640v-170h-170v-256h84v170h86v-170h86v426h-86zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_4" - ], - "grid": 24 - }, - { - "id": 426, - "paths": [ - "M726 554q0 36-25 61t-61 25h-170v-86h170v-84h-170v-256h256v84h-172v86h86q36 0 61 25t25 61v84zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_5" - ], - "grid": 24 - }, - { - "id": 427, - "paths": [ - "M554 470v84h86v-84h-86zM554 640q-36 0-60-25t-24-61v-256q0-36 24-60t60-24h172v84h-172v86h86q36 0 61 25t25 61v84q0 36-25 61t-61 25h-86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_6" - ], - "grid": 24 - }, - { - "id": 428, - "paths": [ - "M554 640h-84l170-342h-170v-84h256v84zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_7" - ], - "grid": 24 - }, - { - "id": 429, - "paths": [ - "M554 470v84h86v-84h-86zM554 298v86h86v-86h-86zM554 640q-36 0-60-25t-24-61v-64q0-26 19-45t45-19q-26 0-45-19t-19-45v-64q0-36 24-60t60-24h86q36 0 61 24t25 60v64q0 26-19 45t-45 19q26 0 45 19t19 45v64q0 36-25 61t-61 25h-86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_8" - ], - "grid": 24 - }, - { - "id": 430, - "paths": [ - "M640 384v-86h-86v86h86zM640 214q36 0 61 24t25 60v256q0 36-25 61t-61 25h-170v-86h170v-84h-86q-36 0-60-25t-24-61v-86q0-36 24-60t60-24h86zM896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_9" - ], - "grid": 24 - }, - { - "id": 431, - "paths": [ - "M896 384v-256h-598v598h598v-256h-86v84h-84v-84h-86v-86h86v-86h84v86h86zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM470 384h42v-42h-42v42zM598 512q0 36-25 61t-61 25h-128v-86h128v-42h-42q-36 0-61-25t-25-61v-42q0-36 25-61t61-25h42q36 0 61 25t25 61v170zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_9_plus" - ], - "grid": 24 - }, - { - "id": 432, - "paths": [ - "M810 810v-596h-298v256zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM512 470l-298 340h298v-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_b_and_w" - ], - "grid": 24 - }, - { - "id": 433, - "paths": [ - "M512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM810 810v-170h86v170q0 34-26 60t-60 26h-170v-86h170zM810 128q34 0 60 26t26 60v170h-86v-170h-170v-86h170zM214 214v170h-86v-170q0-34 26-60t60-26h170v86h-170zM214 640v170h170v86h-170q-34 0-60-26t-26-60v-170h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_center_focus" - ], - "grid": 24 - }, - { - "id": 434, - "paths": [ - "M810 768q52 0 90-38t38-90-38-90-90-38h-64v-22q0-98-68-166t-166-68q-116 0-188 94 82 22 135 91t53 157h-86q0-70-50-121t-120-51-120 51-50 121 50 120 120 50h554zM826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q38-72 121-123t163-51q108 0 201 76t113 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_drama" - ], - "grid": 24 - }, - { - "id": 435, - "paths": [ - "M768 342h-512v426h512v-426zM854 854v-598h-192l-148-150-150 150h-194v598h684zM854 170q34 0 59 26t25 60v598q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h172l170-170 170 170h172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_frames" - ], - "grid": 24 - }, - { - "id": 436, - "paths": [ - "M598 256l384 512h-940l256-342 192 256 68-50-120-162z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_hdr", - "landscape", - "terrain" - ], - "grid": 24 - }, - { - "id": 437, - "paths": [ - "M896 726v-598h-598v598h598zM896 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h598zM128 214v682h682v86h-682q-34 0-60-26t-26-60v-682h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_none" - ], - "grid": 24 - }, - { - "id": 438, - "paths": [ - "M242 842l60-60q72 56 168 68v86q-54-6-121-34t-107-60zM554 850q94-12 166-68l62 60q-102 82-228 94v-86zM782 722q58-72 68-166h86q-6 52-34 119t-60 107zM640 512q0 52-38 90t-90 38-90-38-38-90 38-90 90-38 90 38 38 90zM174 554q10 94 68 166l-60 62q-82-102-94-228h86zM242 302q-56 74-68 168h-86q6-54 34-121t60-107zM850 470q-12-96-68-168l60-60q82 102 94 228h-86zM782 182l-60 60q-74-56-168-68v-86q54 6 121 34t107 60zM470 174q-96 12-168 68l-60-60q102-82 228-94v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_tilt_shift" - ], - "grid": 24 - }, - { - "id": 439, - "paths": [ - "M512 682q70 0 120-50t50-120-50-120-120-50-120 50-50 120 50 120 120 50zM636 296q70-56 162-56 68 0 128 34 0 62-38 126t-90 94q-4 2-11 6t-13 7-12 5q18 8 36 18 52 30 90 94t38 126q-60 34-128 34-92 0-162-56 4 28 4 40 0 70-35 129t-93 93q-58-34-93-93t-35-129q0-12 4-40-70 56-162 56-68 0-128-34 0-74 48-145t116-93l-36-18q-52-30-90-94t-38-126q64-36 128-36 90 0 162 58-4-28-4-40 0-70 35-129t93-93q58 34 93 93t35 129q0 12-4 40z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_vintage" - ], - "grid": 24 - }, - { - "id": 440, - "paths": [ - "M470 982v-256h84v256h-84zM240 724l92-92 60 60-92 92zM632 692l60-60 92 92-60 60zM512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM726 470h256v84h-256v-84zM784 300l-92 92-60-60 92-92zM554 42v256h-84v-256h84zM392 332l-60 60-92-92 60-60zM298 470v84h-256v-84h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flare" - ], - "grid": 24 - }, - { - "id": 441, - "paths": [ - "M718 326h100l-50-156zM810 86l138 384h-82l-30-86h-136l-30 86h-82l138-384h84zM128 86h426l-170 384h170l-298 512v-384h-128v-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flash_auto" - ], - "grid": 24 - }, - { - "id": 442, - "paths": [ - "M726 426l-66 114-362-362v-92h428l-172 340h172zM140 128l670 672-54 54-176-178-154 262v-384h-128v-158l-212-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flash_off" - ], - "grid": 24 - }, - { - "id": 443, - "paths": [ - "M298 86h428l-172 340h172l-300 512v-384h-128v-468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flash_on" - ], - "grid": 24 - }, - { - "id": 444, - "paths": [ - "M810 896v-86h86q0 34-26 60t-60 26zM810 554v-84h86v84h-86zM640 214v-86h86v86h-86zM810 726v-86h86v86h-86zM470 982v-940h84v940h-84zM810 128q34 0 60 26t26 60h-86v-86zM128 214q0-34 26-60t60-26h170v86h-170v596h170v86h-170q-34 0-60-26t-26-60v-596zM810 384v-86h86v86h-86zM640 896v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flip" - ], - "grid": 24 - }, - { - "id": 445, - "paths": [ - "M810 470v-256h-596v256h84v84h86v86h86v-86h84v86h86v-86h86v-84h84zM726 768v-86h-86v86h86zM554 768v-86h-84v86h84zM384 768v-86h-86v86h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM298 384h86v86h-86v-86zM640 384h86v86h-86v-86zM470 384h84v86h86v84h-86v-84h-84v84h-86v-84h86v-86zM726 554v86h84v-86h-84zM298 554h-84v86h84v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gradient" - ], - "grid": 24 - }, - { - "id": 446, - "paths": [ - "M426 170q34 0 60 26t26 60-26 60-60 26-59-26-25-60 25-60 59-26zM598 342q34 0 59 25t25 59-25 60-59 26-60-26-26-60 26-59 60-25zM768 512q34 0 60 26t26 60-26 59-60 25-60-25-26-59 26-60 60-26zM598 682q34 0 59 26t25 60-25 60-59 26-60-26-26-60 26-60 60-26zM768 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM256 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 342q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25zM426 512q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grain" - ], - "grid": 24 - }, - { - "id": 447, - "paths": [ - "M682 854h62l-62-62v62zM598 854v-148l-24-24h-148v172h172zM342 598v-148l-24-24h-148v172h172zM342 854v-172h-172v172h172zM170 280v62h62zM426 536v62h62zM54 54l916 916-54 54-86-86h-660q-34 0-59-25t-25-59v-660l-86-86zM682 170v172h172v-172h-172zM342 170h-62l-86-84h660q34 0 59 25t25 59v660l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62h-62l-86-84h148v-172h-172v148l-84-86v-62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grid_off" - ], - "grid": 24 - }, - { - "id": 448, - "paths": [ - "M854 342v-172h-172v172h172zM854 598v-172h-172v172h172zM854 854v-172h-172v172h172zM598 342v-172h-172v172h172zM598 598v-172h-172v172h172zM598 854v-172h-172v172h172zM342 342v-172h-172v172h172zM342 598v-172h-172v172h172zM342 854v-172h-172v172h172zM854 86q34 0 59 25t25 59v684q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-684q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grid_on" - ], - "grid": 24 - }, - { - "id": 449, - "paths": [ - "M106 106q196 198 816 812l-48 46-324-324h-144v-146l-64-64v210h-64v-106h-86v106h-64v-256h64v86h86v-86h16l-234-234zM554 448h-16l-64-64h80q26 0 45 19t19 45v82l-64-64v-18zM746 448v42h86v-42h-86zM746 640h-16l-48-46v-210h150q26 0 45 19t19 45v42q0 46-38 60l38 90h-64l-38-86h-48v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hdr_off" - ], - "grid": 24 - }, - { - "id": 450, - "paths": [ - "M554 576v-128h-84v128h84zM554 384q26 0 45 19t19 45v128q0 26-19 45t-45 19h-148v-256h148zM278 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM832 490v-42h-86v42h86zM896 490q0 40-38 60l38 90h-64l-38-86h-48v86h-64v-256h150q26 0 45 19t19 45v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hdr_on" - ], - "grid": 24 - }, - { - "id": 451, - "paths": [ - "M214 598q34 0 59-26t25-60-25-60-59-26-60 26-26 60 26 60 60 26zM214 342q70 0 120 50t50 120-50 120-120 50-121-50-51-120 51-120 121-50zM726 256q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hdr_strong" - ], - "grid": 24 - }, - { - "id": 452, - "paths": [ - "M726 682q70 0 120-50t50-120-50-120-120-50-121 50-51 120 51 120 121 50zM726 256q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75zM214 342q70 0 120 50t50 120-50 120-120 50-121-50-51-120 51-120 121-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hdr_weak" - ], - "grid": 24 - }, - { - "id": 453, - "paths": [ - "M710 868l156-156-156-154-154 156zM598 470q-18 0-31 12t-13 30 13 30 31 12 30-12 12-30-12-30-30-12zM512 640q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM426 554q18 0 31-12t13-30-13-30-31-12-30 12-12 30 12 30 30 12zM312 468l154-156-154-154-156 156zM512 384q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM756 512l170 170q14 14 14 30t-14 30l-184 186q-12 12-30 12-20 0-32-12l-168-170-170 170q-12 12-30 12t-30-12l-186-186q-12-12-12-30t12-30l170-170-170-168q-12-12-12-32 0-18 12-30l186-184q12-12 30-12t30 12l170 170 168-170q12-12 32-12 18 0 30 12l184 184q12 12 12 30 0 20-12 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "healing" - ], - "grid": 24 - }, - { - "id": 454, - "paths": [ - "M854 768v-512h-684v512h684zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM512 426v86h-86v-86h86zM342 426v86h-86v-86h86zM682 598v84h-84v-84h84zM682 426v86h-84v-86h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "image_aspect_ratio" - ], - "grid": 24 - }, - { - "id": 455, - "paths": [ - "M726 726h-214v-64h214v64zM810 810v-596l-596 596h596zM234 320v64h86v86h64v-86h86v-64h-86v-86h-64v86h-86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "iso" - ], - "grid": 24 - }, - { - "id": 456, - "paths": [ - "M598 896q0-124 87-211t211-87v84q-88 0-151 63t-63 151h-84zM768 896q0-52 38-90t90-38v128h-128zM426 896q0-194 138-332t332-138v86q-160 0-272 112t-112 272h-86zM426 128q0 124-87 211t-211 87v-84q88 0 151-63t63-151h84zM598 128q0 194-138 332t-332 138v-86q160 0 272-112t112-272h86zM256 128q0 52-38 90t-90 38v-128h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "leak_add" - ], - "grid": 24 - }, - { - "id": 457, - "paths": [ - "M656 494q114-68 240-68v86q-94 0-178 44zM850 688l-68-68q54-22 114-22v84q-24 0-46 6zM598 128q0 126-68 240l-62-62q44-84 44-178h86zM128 182l54-54 714 714-54 54-122-122q-38 54-38 122h-84q0-42 18-95t44-87l-62-60q-86 106-86 242h-86q0-72 33-161t79-143l-106-106q-132 112-304 112v-86q58 0 129-25t115-61l-62-62q-82 62-182 62v-84q68 0 122-38zM426 128q0 60-22 114l-68-68q6-22 6-46h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "leak_remove" - ], - "grid": 24 - }, - { - "id": 458, - "paths": [ - "M512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lens" - ], - "grid": 24 - }, - { - "id": 459, - "paths": [ - "M640 448v-64q0-36-24-61t-60-25h-172v86h172v86h-86v84h86v86h-172v86h172q36 0 60-25t24-61v-64q0-28-18-46t-46-18q28 0 46-18t18-46zM812 128q34 0 59 26t25 60v596q0 34-25 60t-59 26h-598q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_3" - ], - "grid": 24 - }, - { - "id": 460, - "paths": [ - "M512 256q194 0 332 138t138 332h-86q0-158-112-271t-272-113-272 113-112 271h-86q0-194 138-332t332-138zM512 426q122 0 210 88t88 212h-84q0-88-63-151t-151-63-151 63-63 151h-84q0-124 88-212t210-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks" - ], - "grid": 24 - }, - { - "id": 461, - "paths": [ - "M640 726v-428h-86v172h-84v-172h-86v256h170v172h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_4" - ], - "grid": 24 - }, - { - "id": 462, - "paths": [ - "M640 384v-86h-256v256h170v86h-170v86h170q36 0 61-25t25-61v-86q0-36-25-60t-61-24h-84v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_5" - ], - "grid": 24 - }, - { - "id": 463, - "paths": [ - "M640 384v-86h-170q-36 0-61 25t-25 61v256q0 36 25 61t61 25h84q36 0 61-25t25-61v-86q0-36-25-60t-61-24h-84v-86h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM470 640v-86h84v86h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_6" - ], - "grid": 24 - }, - { - "id": 464, - "paths": [ - "M598 726v-428h-172v86h86v342h86zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_one" - ], - "grid": 24 - }, - { - "id": 465, - "paths": [ - "M640 470v-86q0-36-25-61t-61-25h-170v86h170v86h-84q-36 0-61 24t-25 60v172h256v-86h-170v-86h84q36 0 61-24t25-60zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "looks_two" - ], - "grid": 24 - }, - { - "id": 466, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301v342q0 34-25 59t-59 25h-342q-176 0-301-125t-125-301 125-301 301-125zM554 298v172h172v84h-172v172h-84v-172h-172v-84h172v-172h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "loupe" - ], - "grid": 24 - }, - { - "id": 467, - "paths": [ - "M854 810v-512h-342v44q90 0 152 61t62 151-62 152-152 62v-76q-56 0-96-40t-40-98 40-97 96-39v274q56 0 96-40t40-98-40-97-96-39v-76q-90 0-152 61t-62 151 62 152 152 62v42h342zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h138l76-86h256l76 86h138z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "monochrome_photos" - ], - "grid": 24 - }, - { - "id": 468, - "paths": [ - "M512 128h256v170h-170v428q0 70-51 120t-121 50-120-50-50-120 50-121 120-51q42 0 86 24v-450z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "music_note" - ], - "grid": 24 - }, - { - "id": 469, - "paths": [ - "M554 688v166h256v84h-596v-84h256v-168q-104-16-177-102t-73-192q0-124 88-212t212-88 211 88 87 212q0 110-77 196t-187 100z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nature" - ], - "grid": 24 - }, - { - "id": 470, - "paths": [ - "M192 470q-28 0-46-19t-18-45 18-45 46-19 46 19 18 45-18 45-46 19zM946 392q0 110-77 196t-187 100v166h128v84h-682v-212h-42v-172q0-18 12-30t30-12h128q18 0 30 12t12 30v172h-42v128h342v-168q-104-16-177-102t-73-192q0-124 88-212t212-88 211 88 87 212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nature_people" - ], - "grid": 24 - }, - { - "id": 471, - "paths": [ - "M658 316l-196 196 196 196-60 60-256-256 256-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "navigate_before", - "chevron_left" - ], - "grid": 24 - }, - { - "id": 472, - "paths": [ - "M426 256l256 256-256 256-60-60 196-196-196-196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "navigate_next", - "chevron_right" - ], - "grid": 24 - }, - { - "id": 473, - "paths": [ - "M362 534l-148 192h596l-192-256-148 192zM982 768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-512q0-34 26-60t60-26h768q34 0 60 26t26 60v512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama" - ], - "grid": 24 - }, - { - "id": 474, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_fisheye", - "radio_button_unchecked" - ], - "grid": 24 - }, - { - "id": 475, - "paths": [ - "M914 170q24 0 24 28v628q0 28-24 28-4 0-12-4-192-70-390-70t-390 70q-8 4-12 4-24 0-24-28v-628q0-28 24-28 4 0 12 4 192 70 390 70t390-70q8-4 12-4zM854 280q-156 48-342 48-176 0-342-48v464q164-48 342-48 176 0 342 48v-464z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_horizontal" - ], - "grid": 24 - }, - { - "id": 476, - "paths": [ - "M280 854h464q-48-166-48-342t48-342h-464q48 164 48 342 0 176-48 342zM850 902q4 8 4 12 0 24-28 24h-628q-28 0-28-24 0-4 4-12 70-192 70-390t-70-390q-4-8-4-12 0-24 28-24h628q28 0 28 24 0 4-4 12-70 192-70 390t70 390z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_vertical" - ], - "grid": 24 - }, - { - "id": 477, - "paths": [ - "M512 170q154 0 340 32l38 6 12 38q36 132 36 266t-36 266l-12 38-38 6q-186 32-340 32t-340-32l-38-6-12-38q-36-132-36-266t36-266l12-38 38-6q186-32 340-32zM512 256q-140 0-312 28-30 116-30 228t30 228q172 28 312 28t312-28q30-116 30-228t-30-228q-172-28-312-28z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_wide_angle" - ], - "grid": 24 - }, - { - "id": 478, - "paths": [ - "M256 810h512l-164-218-128 164-92-110zM256 170v342l106-64 108 64v-342h-214zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_album" - ], - "grid": 24 - }, - { - "id": 479, - "paths": [ - "M598 490v-128h42v128h-42zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM384 406v-44h42v44h-42zM874 362v-64h-128v256h64v-84h64v-64h-64v-44h64zM704 490v-128q0-26-18-45t-46-19h-106v256h106q28 0 46-19t18-45zM490 406v-44q0-26-19-45t-45-19h-106v256h64v-84h42q26 0 45-19t19-45zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "picture_as_pdf" - ], - "grid": 24 - }, - { - "id": 480, - "paths": [ - "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM704 694v32h-384v-32q0-44 66-70t126-26 126 26 66 70zM512 522q-40 0-68-29t-28-67 28-67 68-29 68 29 28 67-28 67-68 29z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "portrait" - ], - "grid": 24 - }, - { - "id": 481, - "paths": [ - "M512 384q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM512 726q88 0 151-63t63-151-63-151-151-63-151 63-63 151 63 151 151 63zM512 192q158 0 286 88t184 232q-56 144-184 232t-286 88-286-88-184-232q56-144 184-232t286-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_red_eye", - "visibility" - ], - "grid": 24 - }, - { - "id": 482, - "paths": [ - "M826 284q46 46 79 125t33 145-33 146-79 126q-110 112-272 112-98 0-184-48l64-62q60 26 122 26 50 0 112-26t98-62 62-99 26-113-26-112-62-98q-88-88-212-88v138l-180-180 180-182v138h2q66 0 145 34t125 80zM158 550l156 156 156-156-156-156zM314 274l276 276-276 276-278-276z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rotate_90_degrees_ccw" - ], - "grid": 24 - }, - { - "id": 483, - "paths": [ - "M554 174q126 16 213 112t87 226-87 226-213 112v-86q92-16 153-87t61-165-61-165-153-87v166l-194-190 194-194v132zM302 782l62-62q46 34 106 44v86q-96-12-168-68zM260 554q10 58 42 106l-60 60q-56-74-68-166h86zM304 364q-36 52-44 106h-86q12-90 70-166z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rotate_left" - ], - "grid": 24 - }, - { - "id": 484, - "paths": [ - "M720 660q34-46 44-106h86q-12 92-68 166zM554 764q60-10 106-44l62 62q-72 56-168 68v-86zM850 470h-86q-10-60-44-106l62-60q58 72 68 166zM664 236l-194 190v-166q-92 16-153 87t-61 165 61 165 153 87v86q-126-16-213-112t-87-226 87-226 213-112v-132z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rotate_right" - ], - "grid": 24 - }, - { - "id": 485, - "paths": [ - "M810 810v-596h-596v596h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM426 342l214 170-214 170v-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "slideshow" - ], - "grid": 24 - }, - { - "id": 486, - "paths": [ - "M896 682v-340h-86v170h-84v-170h-86v170h-86v-170h-84v170h-86v-170h-86v170h-84v-170h-86v340h768zM896 256q34 0 60 26t26 60v340q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-340q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "straighten" - ], - "grid": 24 - }, - { - "id": 487, - "paths": [ - "M250 842v-270l148 356h-62q-34 0-60-26t-26-60zM336 374q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM940 680q6 12 6 32 0 24-15 48t-37 32l-314 130q-12 6-32 6-24 0-47-15t-33-37l-212-512q-6-12-6-32 0-24 15-46t37-32l316-130q18-6 34-6 22 0 44 15t32 37zM108 838q-32-14-46-46t0-64l104-250v384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "style" - ], - "grid": 24 - }, - { - "id": 488, - "paths": [ - "M640 662l150-150-150-150v108h-256v-108l-150 150 150 150v-108h256v108zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136l78-84h256l78 84h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "switch_camera" - ], - "grid": 24 - }, - { - "id": 489, - "paths": [ - "M554 662l150-150-150-150v108h-256v-108l-148 150 148 150v-108h256v108zM768 406l170-172v556l-170-172v150q0 18-12 30t-30 12h-598q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h598q18 0 30 12t12 30v150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "switch_video" - ], - "grid": 24 - }, - { - "id": 490, - "paths": [ - "M396 896l500-500v122l-378 378h-122zM896 810q0 34-26 60t-60 26h-84l170-170v84zM214 128h84l-170 170v-84q0-34 26-60t60-26zM506 128h122l-500 500v-122zM832 132q50 14 62 60l-702 700q-46-14-60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "texture" - ], - "grid": 24 - }, - { - "id": 491, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM692 332q32 32 54 84t22 96-21 96-53 84q-74 76-180 76t-182-76l180-180v-256q44 0 96 22t84 54z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timelapse" - ], - "grid": 24 - }, - { - "id": 492, - "paths": [ - "M550 564v-108q0-72-20-106-14-30-60-30-20 0-36 6-46 28-46 132v106q0 48 4 66 2 10 18 42t60 32 60-32q12-24 16-42t4-66zM304 470q0-218 166-218 82 0 120 48 44 56 44 170v82q0 220-164 220-166 0-166-220v-82zM872 446q-60 0-60 46 0 28 38 40 12 4 38 10 18 4 56 16 16 6 44 24 16 10 26 32 10 20 10 42 0 74-88 104-24 8-60 8-114 0-148-78-10-24-10-44h82q0 28 22 44t54 16q66 0 66-46 0-12-6-21t-12-12-20-9-49-15-47-13q-16-6-40-22-38-26-38-72 0-76 84-104 24-8 58-8 70 0 110 34 40 32 40 84h-84q0-42-36-50-24-6-30-6zM0 330l202-74h12v512h-86v-410l-128 44v-72z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timer_10" - ], - "grid": 24 - }, - { - "id": 493, - "paths": [ - "M748 446q-26 0-44 12t-18 34v2q0 24 40 38 14 6 36 10t58 16q16 6 44 24 14 10 26 32 10 20 10 42 0 74-88 104-24 8-62 8-112 0-146-78-10-24-10-44h80q0 26 23 43t55 17q66 0 66-46 0-12-6-21t-12-12-20-9q-10-4-42-12-56-12-96-38-36-24-36-72 0-76 84-104 24-8 58-8 70 0 110 34 40 32 40 84h-84q0-40-38-50-24-6-28-6zM430 506q84 28 84 116 0 74-48 110-46 40-120 40t-121-38-47-106h86q0 40 22 56 26 20 60 20 84 0 84-82t-92-82h-52v-66h50q64 0 82-46 4-10 4-32 0-76-76-76-52 0-72 40-6 12-6 30h-84q0-90 96-128 34-10 66-10 76 0 118 36t42 108-76 110z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timer_3" - ], - "grid": 24 - }, - { - "id": 494, - "paths": [ - "M512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM812 316q34 44 59 113t25 125q0 158-112 271t-272 113-272-113-112-271 112-271 272-113q54 0 125 26t115 60l60-62q32 26 60 60zM470 598v-256h84v256h-84zM640 42v86h-256v-86h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timer" - ], - "grid": 24 - }, - { - "id": 495, - "paths": [ - "M512 854q78 0 150-42l-408-408q-40 68-40 150 0 124 87 212t211 88zM128 170l758 758-54 54-108-108q-100 64-212 64-160 0-272-113t-112-271q0-48 19-111t45-101l-118-118zM470 402v-60h84v146zM640 42v86h-256v-86h256zM812 194l60 60-60 62q84 106 84 238v2q0 48-19 110t-45 100l-62-62q40-68 40-150 0-124-87-211t-211-87q-80 0-148 40l-64-62q102-64 212-64 56 0 126 25t114 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timer_off" - ], - "grid": 24 - }, - { - "id": 496, - "paths": [ - "M842 598q4-12 8-44h-296v44h288zM778 726q24-34 30-44h-254v44h224zM554 850q64-8 124-40h-124v40zM554 426v44h296q-4-32-8-44h-288zM554 298v44h254q-6-10-30-44h-224zM554 174v40h124q-60-32-124-40zM470 850v-676q-126 16-213 112t-87 226 87 226 213 112zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tonality" - ], - "grid": 24 - }, - { - "id": 497, - "paths": [ - "M426 342v-86h256q34 0 60 26t26 60v256h-86v-256h-256zM938 768h-170v86h86l-128 128-128-128h84v-86h-340q-34 0-60-26t-26-60v-340h-170v-86h170v-86h-86l128-128 128 128h-84v512h596v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "transform" - ], - "grid": 24 - }, - { - "id": 498, - "paths": [ - "M640 384v-256h86v86h170v84h-170v86h-86zM896 554h-426v-84h426v84zM298 384h86v256h-86v-86h-170v-84h170v-86zM554 896h-84v-256h84v86h342v84h-342v86zM128 214h426v84h-426v-84zM128 726h256v84h-256v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tune" - ], - "grid": 24 - }, - { - "id": 499, - "paths": [ - "M768 214h170v170h-170v-170zM768 810v-170h170v170h-170zM554 810v-170h172v170h-172zM342 810v-170h170v170h-170zM128 810v-170h170v170h-170zM768 598v-172h170v172h-170zM554 214h172v170h-172v-170zM342 384v-170h170v170h-170zM554 598v-172h172v172h-172zM342 598v-172h170v172h-170zM128 598v-172h170v172h-170zM128 384v-170h170v170h-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_comfy" - ], - "grid": 24 - }, - { - "id": 500, - "paths": [ - "M128 214h810v256h-810v-256zM426 810v-298h512v298h-512zM128 810v-298h256v298h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_compact" - ], - "grid": 24 - }, - { - "id": 501, - "paths": [ - "M440 682h80l-136-384h-86l-136 384h82l30-84h136zM938 298h78l-88 384h-74l-64-260-64 260h-76l-4-18q-42 86-124 138t-180 52q-142 0-242-101t-100-241 100-241 242-101q164 0 266 128h32l52 270 64-270h68l64 270zM292 540l50-156 48 156h-98z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_auto" - ], - "grid": 24 - }, - { - "id": 502, - "paths": [ - "M826 428q82 6 140 67t58 145q0 88-63 151t-151 63h-554q-106 0-181-75t-75-181q0-94 67-169t161-85q42-78 118-126t166-48q116 0 204 73t110 185z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_cloudy" - ], - "grid": 24 - }, - { - "id": 503, - "paths": [ - "M736 774l60-58 76 76-60 60zM854 448h128v86h-128v-86zM640 270q58 34 93 92t35 128q0 106-75 181t-181 75-181-75-75-181q0-70 35-128t93-92v-206h256v206zM170 448v86h-128v-86h128zM470 958v-126h84v126h-84zM152 792l76-78 60 60-76 78z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_incandescent" - ], - "grid": 24 - }, - { - "id": 504, - "paths": [ - "M152 792l76-78 60 60-76 78zM470 958v-126h84v126h-84zM512 234q106 0 181 75t75 181-75 181-181 75-181-75-75-181 75-181 181-75zM854 448h128v86h-128v-86zM736 774l60-58 76 76-60 60zM872 190l-76 76-60-60 76-76zM554 24v126h-84v-126h84zM170 448v86h-128v-86h128zM288 206l-60 60-76-76 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_sunny" - ], - "grid": 24 - }, - { - "id": 505, - "paths": [ - "M854 512v-342h-214v342l106-64zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "collections_bookmark" - ], - "grid": 24 - }, - { - "id": 506, - "paths": [ - "M214 726h596l-192-256-148 192-108-128zM896 128q32 0 59 27t27 59v596q0 32-27 59t-59 27h-768q-34 0-60-26t-26-60v-596q0-32 27-59t59-27h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_size_select_actual" - ], - "grid": 24 - }, - { - "id": 507, - "paths": [ - "M128 810h426l-136-182-106 138-78-92zM42 470h598v426h-512q-34 0-60-26t-26-60v-340zM214 128h84v86h-84v-86zM384 128h86v86h-86v-86zM128 128v86h-86q0-32 27-59t59-27zM726 810h84v86h-84v-86zM726 128h84v86h-84v-86zM42 298h86v86h-86v-86zM896 128q32 0 59 27t27 59h-86v-86zM896 298h86v86h-86v-86zM554 128h86v86h-86v-86zM982 810q0 32-27 59t-59 27v-86h86zM896 470h86v84h-86v-84zM896 640h86v86h-86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_size_select_large" - ], - "grid": 24 - }, - { - "id": 508, - "paths": [ - "M298 128v86h-84v-86h84zM470 128v86h-86v-86h86zM128 470v84h-86v-84h86zM128 128v86h-86q0-32 27-59t59-27zM810 810v86h-84v-86h84zM810 128v86h-84v-86h84zM640 810v86h-86v-86h86zM128 298v86h-86v-86h86zM128 896q-34 0-60-26t-26-60v-170h428v256h-342zM896 128q32 0 59 27t27 59h-86v-86zM982 298v86h-86v-86h86zM640 128v86h-86v-86h86zM982 810q0 32-27 59t-59 27v-86h86zM982 470v84h-86v-84h86zM982 640v86h-86v-86h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_size_select_small" - ], - "grid": 24 - }, - { - "id": 509, - "paths": [ - "M512 768q142 0 242-75t100-181-100-181-242-75-242 75-100 181 100 181 242 75zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vignette" - ], - "grid": 24 - }, - { - "id": 510, - "paths": [ - "M212 852l-60-62 76-76 60 60zM152 190l60-60 76 76-60 60zM872 792l-60 60-76-78 60-60zM554 958h-84v-126h84v126zM812 130l60 60-76 76-60-60zM470 24h84v126h-84v-126zM214 618v-256h596v256h-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_iridescent" - ], - "grid": 24 - }, - { - "id": 511, - "paths": [ - "M342 682h512v86h-86v86h-86v-86h-340q-36 0-61-25t-25-61v-340h-86v-86h86v-86h86v512zM682 598v-256h-256v-86h256q36 0 61 25t25 61v256h-86zM514 0q200 0 347 136t163 334h-64q-12-120-80-216t-174-146l-58 56-162-162q6 0 14-1t14-1zM318 916l58-56 162 162q-6 0-14 1t-14 1q-200 0-347-136t-163-334h64q12 120 80 216t174 146z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "crop_rotate" - ], - "grid": 24 - }, - { - "id": 512, - "paths": [ - "M682 256q36 0 61 25t25 61h56q0-58-42-100t-100-42v56zM512 810q88 0 151-62t63-150-63-151-151-63-151 63-63 151 63 150 151 62zM726 384h212v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-512q0-34 25-60t59-26h136l78-86h256v128q36 0 61 25t25 61zM682 142v-56q106 0 181 75t75 181h-56q0-82-59-141t-141-59zM376 598q0-58 40-98t96-40 96 40 40 98-40 97-96 39-96-39-40-97z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "linked_camera" - ], - "grid": 24 - }, - { - "id": 513, - "paths": [ - "M418 598q0-58 40-98t96-40q58 0 98 40t40 98q0 56-40 96t-98 40-97-39-39-97zM554 810q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM256 426v-128h128v-128h298l78 86h136q34 0 60 26t26 60v512q0 34-26 59t-60 25h-682q-34 0-60-25t-26-59v-428h128zM128 170v-128h86v128h128v86h-128v128h-86v-128h-128v-86h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_a_photo" - ], - "grid": 24 - }, - { - "id": 514, - "paths": [ - "M722 510l88-40-88-40-40-88-40 88-88 40 88 40 40 88zM480 650l118-52-118-54-54-118-52 118-118 54 118 52 52 118zM768 170h170v598q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h44l84 128h128l-84-128h84l86 128h128l-86-128h86l86 128h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "movie_filter" - ], - "grid": 24 - }, - { - "id": 515, - "paths": [ - "M566 458l116 54-116 54-54 116-54-116-116-54 116-54 54-116zM726 426l-40-88-88-40 88-40 40-88 40 88 88 40-88 40zM812 426h84v384q0 34-25 60t-59 26h-598q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h384v86h-384v596h598v-384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_filter" - ], - "grid": 24 - }, - { - "id": 516, - "paths": [ - "M470 726h426l-136-180-108 136-76-92zM938 214q18 0 31 12t13 30v512q0 18-13 30t-31 12h-512q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h512zM214 214h84v596h-84v-596zM42 214h86v596h-86v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "burst_mode" - ], - "grid": 24 - }, - { - "id": 517, - "paths": [ - "M568 306l-116 200-98-152q72-56 158-56 20 0 56 8zM698 730l-120-218h186q4 28 4 42v2q0 42-20 93t-50 81zM322 384l140 214h-202q-4-28-4-44 0-40 19-90t47-80zM452 804l122-210 90 166q-66 50-152 50-30 0-60-6zM754 470h-230l86-152q44 18 87 63t57 89zM498 640l-86 150q-44-18-85-62t-57-88h228zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM812 316q34 44 59 113t25 125q0 158-112 271t-272 113-272-113-112-271 112-271 272-113q54 0 125 26t115 60l60-62q32 26 60 60zM640 42v86h-256v-86h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shutter_speed" - ], - "grid": 24 - }, - { - "id": 518, - "paths": [ - "M214 810h512l-172-212-128 170-84-128zM682 470h128v340q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h340v128h128v128zM810 298v128h-84v-128h-128v-84h128v-128h84v128h128v84h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_photo_alternate" - ], - "grid": 24 - }, - { - "id": 519, - "paths": [ - "M662 384q44 0 75-31t31-75-31-76-75-32-76 32-32 76 32 75 76 31zM824 380l132 132-60 60-134-132q-50 30-102 30-80 0-135-56t-55-136 56-136 136-56 136 56 56 136q0 52-30 102zM704 768h-470l118-150 84 100 116-150zM768 554l86 86v214q0 34-26 59t-60 25h-598q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h236q-20 42-22 86h-214v598h598v-300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "image_search" - ], - "grid": 24 - }, - { - "id": 520, - "paths": [ - "M598 298v136l-86-84v-222h256v170h-170zM182 128l714 714-54 54-244-244v74q0 70-51 120t-121 50-120-50-50-120 50-121 120-51q42 0 86 24v-12l-384-384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "music_off" - ], - "grid": 24 - }, - { - "id": 521, - "paths": [ - "M426 682l384-384-60-60-324 324-152-152-60 60zM810 42q34 0 60 26t26 60v552q0 42-38 70l-346 232-346-232q-38-28-38-70v-552q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "beenhere" - ], - "grid": 24 - }, - { - "id": 522, - "paths": [ - "M598 618l148-148-148-150v106h-214q-18 0-30 13t-12 31v170h84v-128h172v106zM926 482q12 12 12 30t-12 30l-384 384q-12 12-30 12t-30-12l-384-384q-12-12-12-30t12-30l384-384q12-12 30-12t30 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions" - ], - "grid": 24 - }, - { - "id": 523, - "paths": [ - "M810 874q62 0 106-43t44-105-44-106-106-44-105 44-43 106 43 105 105 43zM810 512q90 0 152 62t62 152-62 151-152 61-151-61-61-151 61-152 151-62zM460 448l94 98v264h-84v-212l-138-120q-24-16-24-60 0-36 24-60l120-120q16-24 60-24 38 0 68 24l82 82q64 64 152 64v86q-126 0-216-90l-34-34zM214 874q62 0 105-43t43-105-43-106-105-44-106 44-44 106 44 105 106 43zM214 512q90 0 151 62t61 152-61 151-151 61-152-61-62-151 62-152 152-62zM662 234q-34 0-60-25t-26-59 26-60 60-26 59 26 25 60-25 59-59 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_bike" - ], - "grid": 24 - }, - { - "id": 524, - "paths": [ - "M768 470v-214h-512v214h512zM704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM170 682v-426q0-102 88-136t254-34 254 34 88 136v426q0 56-44 96v76q0 18-12 30t-30 12h-42q-18 0-31-12t-13-30v-44h-340v44q0 18-13 30t-31 12h-42q-18 0-30-12t-12-30v-76q-44-40-44-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_bus" - ], - "grid": 24 - }, - { - "id": 525, - "paths": [ - "M214 470h596l-64-192h-468zM746 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM808 256l88 256v342q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-44h-512v44q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-342l88-256q12-42 62-42h468q50 0 62 42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_car" - ], - "grid": 24 - }, - { - "id": 526, - "paths": [ - "M256 256v170l256-84 256 84v-170h-512zM168 810l-80-284q-2-4-2-14 0-28 30-40l54-18v-198q0-34 26-60t60-26h128v-128h256v128h128q34 0 60 26t26 60v198l54 18q42 14 28 54l-80 284h-2q-98 0-172-84-74 84-170 84t-170-84q-74 84-172 84h-2zM854 896h84v86h-84q-90 0-172-42-80 40-170 40t-170-40q-82 42-172 42h-84v-86h84q92 0 172-56 78 54 170 54t170-54q80 56 172 56z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_ferry" - ], - "grid": 24 - }, - { - "id": 527, - "paths": [ - "M768 470v-214h-214v214h214zM704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM470 470v-214h-214v214h214zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM512 86q166 0 254 34t88 136v406q0 62-44 105t-106 43l64 64v22h-512v-22l64-64q-62 0-106-43t-44-105v-406q0-102 88-136t254-34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_subway", - "directions_transit" - ], - "grid": 24 - }, - { - "id": 528, - "paths": [ - "M768 426v-212h-512v212h512zM512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM170 662v-448q0-102 88-137t254-35 254 35 88 137v448q0 62-44 105t-106 43l64 64v22h-512v-22l64-64q-62 0-106-43t-44-105z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_train" - ], - "grid": 24 - }, - { - "id": 529, - "paths": [ - "M418 380l-120 602h90l78-342 88 86v256h86v-320l-90-86 26-128q92 106 234 106v-84q-124 0-182-104l-44-68q-30-42-72-42-6 0-17 2t-17 2l-222 94v200h86v-144l76-30zM576 234q-34 0-60-25t-26-59 26-60 60-26 60 26 26 60-26 59-60 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_walk" - ], - "grid": 24 - }, - { - "id": 530, - "paths": [ - "M810 298q70 0 121 51t51 121v384h-86v-128h-768v128h-86v-640h86v384h342v-300h340zM298 554q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hotel", - "local_hotel" - ], - "grid": 24 - }, - { - "id": 531, - "paths": [ - "M512 682q-18-14-163-127t-221-171l384-298 384 298q-76 58-220 170t-164 128zM512 792l314-246 70 54-384 298-384-298 70-54z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "layers" - ], - "grid": 24 - }, - { - "id": 532, - "paths": [ - "M140 42l798 800-54 54-160-162-212 164-384-298 70-54 314 246 150-118-60-60-90 68q-18-14-163-127t-221-171l138-108-180-180zM896 384q-54 42-172 134l-336-336 124-96zM846 640l-62-62 50-38 62 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "layers_clear" - ], - "grid": 24 - }, - { - "id": 533, - "paths": [ - "M854 768v-512h-684v512h684zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684zM470 726v-44h-86v-84h170v-44h-128q-18 0-30-12t-12-30v-128q0-18 12-30t30-12h44v-44h84v44h86v84h-170v44h128q18 0 30 12t12 30v128q0 18-12 30t-30 12h-44v44h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_atm" - ], - "grid": 24 - }, - { - "id": 534, - "paths": [ - "M664 716l-46-174 140-116-180-10-66-168-66 168-182 10 142 116-46 174 152-98zM854 512q0 34 25 60t59 26v170q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-170q36 0 60-25t24-61q0-34-25-60t-59-26v-170q0-34 25-60t59-26h684q34 0 59 26t25 60v170q-34 0-59 26t-25 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_attraction", - "local_play" - ], - "grid": 24 - }, - { - "id": 535, - "paths": [ - "M318 298h388l76-84h-540zM896 214l-342 384v212h214v86h-512v-86h214v-212l-342-384v-86h768v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_bar" - ], - "grid": 24 - }, - { - "id": 536, - "paths": [ - "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128q36 0 60 25t24 61v128q0 36-24 60t-60 24h-86v128q0 70-50 121t-120 51h-256q-70 0-121-51t-51-121v-426h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_cafe", - "free_breakfast" - ], - "grid": 24 - }, - { - "id": 537, - "paths": [ - "M214 554h596l-64-192h-468zM746 768q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM278 768q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM808 342l88 256v340q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-42h-512v42q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-340l88-256q14-44 62-44h468q48 0 62 44zM298 214q-26 0-45-19t-19-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-19 45t-45 19zM512 214q-28 0-46-19t-18-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-18 45t-46 19zM726 214q-26 0-45-19t-19-45q0-18 16-47t32-49l16-20q64 74 64 116 0 26-19 45t-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_car_wash" - ], - "grid": 24 - }, - { - "id": 538, - "paths": [ - "M682 512v-214h-42v86h-42v-86h-44v128h86v86h42zM470 426v-128h-128v44h84v42h-84v128h128v-42h-86v-44h86zM810 298h128v556h-340v-172h-172v172h-340v-556h128v-128h596v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_convenience_store" - ], - "grid": 24 - }, - { - "id": 539, - "paths": [ - "M782 342l18-172h-576l18 172h540zM512 810q52 0 90-38t38-90q0-38-32-96t-64-96l-32-38q-128 144-128 230 0 52 38 90t90 38zM128 86h768l-86 778q-4 32-28 53t-56 21h-428q-32 0-56-21t-28-53z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_drink" - ], - "grid": 24 - }, - { - "id": 540, - "paths": [ - "M512 234q-44 0-75 32t-31 76 31 75 75 31 75-31 31-75-31-76-75-32zM238 438q0-66 62-96-62-30-62-96 0-44 32-76t76-32q30 0 60 20v-8q0-44 31-76t75-32 75 32 31 76v8q32-20 60-20 44 0 76 32t32 76q0 66-62 96 62 30 62 96 0 44-32 75t-76 31q-34 0-60-18v8q0 44-31 75t-75 31-75-31-31-75v-8q-28 18-60 18-44 0-76-31t-32-75zM512 938q-160 0-272-113t-112-271q160 0 272 113t112 271zM512 938q0-158 112-271t272-113q0 158-112 271t-272 113z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_florist" - ], - "grid": 24 - }, - { - "id": 541, - "paths": [ - "M768 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM512 426v-212h-256v212h256zM844 308q30 30 30 76v406q0 44-31 75t-75 31-75-31-31-75v-214h-64v320h-428v-682q0-34 26-60t60-26h256q34 0 60 26t26 60v298h42q34 0 60 26t26 60v192q0 18 12 30t30 12 30-12 12-30v-308q-18 8-42 8-44 0-75-31t-31-75q0-72 68-100l-90-90 46-44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_gas_station" - ], - "grid": 24 - }, - { - "id": 542, - "paths": [ - "M726 768q34 0 59 26t25 60-25 59-59 25-60-25-26-59 26-60 60-26zM42 86h140l40 84h632q18 0 30 13t12 31q0 2-6 20l-152 276q-24 44-74 44h-318l-38 70-2 6q0 10 10 10h494v86h-512q-34 0-59-26t-25-60q0-20 10-40l58-106-154-324h-86v-84zM298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_grocery_store", - "shopping_cart" - ], - "grid": 24 - }, - { - "id": 543, - "paths": [ - "M768 598v-172h-170v-170h-172v170h-170v172h170v170h172v-170h170zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_hospital" - ], - "grid": 24 - }, - { - "id": 544, - "paths": [ - "M512 854q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM298 170q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM426 170q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM768 86q36 0 61 24t25 60v684q0 36-25 60t-61 24h-512q-36 0-61-24t-25-60v-684q0-36 25-60t61-24h512zM392 718l240-242q50 50 50 122 0 70-50 120t-120 50-120-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_laundry_service" - ], - "grid": 24 - }, - { - "id": 545, - "paths": [ - "M512 342q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM512 492q160-150 384-150v468q-222 0-384 152-162-152-384-152v-468q224 0 384 150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_library" - ], - "grid": 24 - }, - { - "id": 546, - "paths": [ - "M512 554q88 0 151-62t63-150h-86q0 52-38 90t-90 38-90-38-38-90h-86q0 88 63 150t151 62zM512 128q-52 0-90 38t-38 90h256q0-52-38-90t-90-38zM810 256q34 0 60 26t26 60v512q0 34-26 59t-60 25h-596q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h84q0-88 63-151t151-63 151 63 63 151h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_mall" - ], - "grid": 24 - }, - { - "id": 547, - "paths": [ - "M768 384v-86h-86v86h86zM768 554v-84h-86v84h86zM768 726v-86h-86v86h86zM342 384v-86h-86v86h86zM342 554v-84h-86v84h86zM342 726v-86h-86v86h86zM768 128h86v768h-86v-86h-86v86h-340v-86h-86v86h-86v-768h86v86h86v-86h340v86h86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_movies", - "theaters" - ], - "grid": 24 - }, - { - "id": 548, - "paths": [ - "M234 298q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM914 494q24 24 24 60t-24 60l-300 300q-24 24-60 24t-60-24l-384-384q-24-24-24-60v-300q0-34 25-59t59-25h300q36 0 60 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_offer" - ], - "grid": 24 - }, - { - "id": 549, - "paths": [ - "M564 470q34 0 59-26t25-60-25-60-59-26h-138v172h138zM554 128q106 0 181 75t75 181-75 181-181 75h-128v256h-170v-768h298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_parking" - ], - "grid": 24 - }, - { - "id": 550, - "paths": [ - "M682 598v-86h-128v-128h-84v128h-128v86h128v128h84v-128h128zM896 214v84l-86 256 86 256v86h-768v-86l86-256-86-256v-84h542l62-172 100 38-48 134h112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_pharmacy" - ], - "grid": 24 - }, - { - "id": 551, - "paths": [ - "M512 640q34 0 60-26t26-60-26-59-60-25-60 25-26 59 26 60 60 26zM298 298q0 34 26 60t60 26 60-26 26-60-26-59-60-25-60 25-26 59zM512 86q230 0 384 170l-384 682-384-682q154-170 384-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_pizza" - ], - "grid": 24 - }, - { - "id": 552, - "paths": [ - "M768 128v170h-512v-170h512zM810 512q18 0 31-12t13-30-13-31-31-13-30 13-12 31 12 30 30 12zM682 810v-212h-340v212h340zM810 342q52 0 90 38t38 90v256h-170v170h-512v-170h-170v-256q0-52 38-90t90-38h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_printshop", - "print" - ], - "grid": 24 - }, - { - "id": 553, - "paths": [ - "M634 492l-62 62 294 294-60 60-294-294-294 294-60-60 416-416q-24-48-7-112t67-114q62-62 138-71t122 37 37 123-71 139q-50 50-114 66t-112-8zM346 570l-180-180q-50-50-50-120t50-120l300 298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_restaurant", - "restaurant_menu" - ], - "grid": 24 - }, - { - "id": 554, - "paths": [ - "M768 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM832 406h-106v106h190zM256 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM854 342l128 170v214h-86q0 52-38 90t-90 38-90-38-38-90h-256q0 52-38 90t-90 38-90-38-38-90h-86v-470q0-34 26-60t60-26h598v172h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_shipping" - ], - "grid": 24 - }, - { - "id": 555, - "paths": [ - "M214 470h596l-64-192h-468zM746 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM278 682q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM808 256l88 256v342q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-44h-512v44q0 18-12 30t-30 12h-44q-18 0-30-12t-12-30v-342l88-256q12-42 62-42h106v-86h256v86h106q50 0 62 42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_taxi" - ], - "grid": 24 - }, - { - "id": 556, - "paths": [ - "M512 780q70 0 144-40t112-96q-2-56-90-94t-166-38-166 37-90 95q38 56 112 96t144 40zM512 170q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 86q160 0 272 113t112 271q0 132-81 234t-205 136l-98 98-98-98q-124-34-205-136t-81-234q0-158 112-271t272-113z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "location_history" - ], - "grid": 24 - }, - { - "id": 557, - "paths": [ - "M640 810v-506l-256-90v506zM874 128q22 0 22 22v644q0 16-16 20l-240 82-256-90-228 88-6 2q-22 0-22-22v-644q0-16 16-20l240-82 256 90 228-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "map" - ], - "grid": 24 - }, - { - "id": 558, - "paths": [ - "M512 86l320 780-30 30-290-128-290 128-30-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "navigation" - ], - "grid": 24 - }, - { - "id": 559, - "paths": [ - "M214 854h596v84h-596v-84zM426 342q0 36 25 60t61 24 61-24 25-60q0-34-26-60t-60-26-60 26-26 60zM768 342q0 86-64 203t-128 191l-64 74q-28-30-71-82t-114-176-71-210q0-106 75-181t181-75 181 75 75 181z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pin_drop" - ], - "grid": 24 - }, - { - "id": 560, - "paths": [ - "M768 598v-86h-234l-86 86h320zM256 598h106l294-294q16-16 0-30l-76-76q-16-14-30 0l-294 294v106zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rate_review" - ], - "grid": 24 - }, - { - "id": 561, - "paths": [ - "M214 768h596l-192-256-148 192-108-128zM214 512q124 0 211-88t87-212h-86q0 88-62 151t-150 63v86zM214 212v130q52 0 90-39t38-91h-128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "satellite" - ], - "grid": 24 - }, - { - "id": 562, - "paths": [ - "M512 768v-170h-256v170h256zM896 598h-42v256h-86v-256h-170v256h-428v-256h-42v-86l42-214h684l42 214v86zM854 170v86h-684v-86h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "store_mall_directory", - "store" - ], - "grid": 24 - }, - { - "id": 563, - "paths": [ - "M512 384q36 0 61-25t25-61-25-60-61-24-61 24-25 60 25 61 61 25zM512 598q34-2 59-27t25-59-25-59-59-27h-2q-36 0-61 25t-25 61 25 61 61 25h2zM512 810q34-2 59-26t25-58-25-59-59-27h-2q-36 0-61 25t-25 61 25 60 61 24h2zM854 426q0 60-36 105t-92 61v48h128q0 60-36 104t-92 60v50q0 18-13 30t-31 12h-340q-18 0-31-12t-13-30v-50q-56-16-92-60t-36-104h128v-48q-56-16-92-61t-36-105h128v-48q-56-16-92-60t-36-104h128v-44q0-18 13-30t31-12h340q18 0 31 12t13 30v44h128q0 60-36 104t-92 60v48h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "traffic" - ], - "grid": 24 - }, - { - "id": 564, - "paths": [ - "M422 826l-298-58 16-86 210 42 68-346-78 30v146h-84v-200l222-94q6 0 17-2t17-2q42 0 72 42l42 68q58 102 184 102v86q-142 0-234-106l-26 128 90 84v320h-86v-256l-90-84zM576 234q-34 0-60-26t-26-60 26-59 60-25 59 25 25 59-25 60-59 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_run" - ], - "grid": 24 - }, - { - "id": 565, - "paths": [ - "M682 426v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_location" - ], - "grid": 24 - }, - { - "id": 566, - "paths": [ - "M636 322q12-10 0-22l-40-40q-4-4-10-4-8 0-12 4l-30 30 62 62zM446 512l142-142-62-62-142 142v62h62zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "edit_location" - ], - "grid": 24 - }, - { - "id": 567, - "paths": [ - "M896 128l-322 768h-42l-112-292-292-112v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "near_me" - ], - "grid": 24 - }, - { - "id": 568, - "paths": [ - "M512 598q44 0 94-27t76-65q0-38-59-63t-111-25-111 25-59 63q60 92 170 92zM512 170q-36 0-61 25t-25 61 25 61 61 25 61-25 25-61-25-61-61-25zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_pin_circle" - ], - "grid": 24 - }, - { - "id": 569, - "paths": [ - "M896 640v256h-256l98-98-124-122 62-62 122 124zM384 896h-256v-256l98 98 122-124 62 62-124 122zM128 384v-256h256l-98 98 124 122-62 62-122-124zM640 128h256v256l-98-98-122 124-62-62 124-122z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "zoom_out_map" - ], - "grid": 24 - }, - { - "id": 570, - "paths": [ - "M682 256q0-60 65-115t149-55v852h-106v-340h-108v-342zM470 384v-298h84v298q0 68-46 117t-114 53v384h-106v-384q-68-4-114-53t-46-117v-298h86v298h84v-298h86v298h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "restaurant" - ], - "grid": 24 - }, - { - "id": 571, - "paths": [ - "M342 768l170-298h-86v-214l-170 320h86v192zM768 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM844 308q30 30 30 76v406q0 44-31 75t-75 31-75-31-31-75v-214h-64v320h-428v-682q0-34 26-60t60-26h256q34 0 60 26t26 60v298h42q34 0 60 26t26 60v192q0 18 12 30t30 12 30-12 12-30v-308q-18 8-42 8-44 0-75-31t-31-75q0-72 68-100l-90-90 46-44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ev_station" - ], - "grid": 24 - }, - { - "id": 572, - "paths": [ - "M490 256q0 48 24 105t58 91l-418 418q-26-26-26-60v-596q0-34 26-60t60-26h308q-32 60-32 128zM554 256q0-88 63-151t151-63 151 63 63 151-63 151-151 63-151-63-63-151zM536 612q104-78 232-78 66 0 128 22v254q0 34-26 60t-60 26h-298v-234q0-30 24-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "streetview" - ], - "grid": 24 - }, - { - "id": 573, - "paths": [ - "M768 678v-294q0-76-66-102t-190-26q-118 0-187 26t-69 102v294q0 46 33 79t79 33l-48 48v16h72l64-64h120l64 64h64v-16l-48-48q46 0 79-33t33-79zM760 120q86 32 132 100t46 158v560h-852v-560q0-90 46-158t132-100q86-34 248-34t248 34zM300 384h426v214h-426v-214zM320 682q0-18 12-30t30-12 31 12 13 30-13 31-31 13-30-13-12-31zM618 682q0-18 13-30t31-12 30 12 12 30-12 31-30 13-31-13-13-31z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subway" - ], - "grid": 24 - }, - { - "id": 574, - "paths": [ - "M704 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM554 426h214v-170h-214v170zM470 426v-170h-214v170h214zM320 726q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM512 86q166 0 254 34t88 136v406q0 62-44 105t-106 43l64 64v22h-86l-84-86h-162l-84 86h-96v-22l64-64q-62 0-106-43t-44-105v-406q0-54 28-90t81-52 106-22 127-6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "train" - ], - "grid": 24 - }, - { - "id": 575, - "paths": [ - "M726 598v-214h-428v214h428zM512 790q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM810 722q0 56-29 94t-81 38h4l64 64v20h-86l-84-84h-162l-84 84h-96v-20l68-68q-46-10-78-46t-32-82v-360q0-82 68-113t186-35l34-64h-204v-64h428v64h-140l-32 64q126 4 191 34t65 114v360z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tram" - ], - "grid": 24 - }, - { - "id": 576, - "paths": [ - "M246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128q90 110 232 110v-84q-58 0-107-29t-79-77l-40-68q-22-40-72-40-18 0-32 6l-224 92v200h84v-142l76-32zM406 234q-34 0-60-25t-26-59 26-60 60-26 59 26 25 60-25 59-59 25zM832 842v-74l106 106-106 108v-76h-234v-64h234zM704 662h234v64h-234v74l-106-106 106-108v76z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "transfer_within_a_station" - ], - "grid": 24 - }, - { - "id": 577, - "paths": [ - "M896 384q18 0 30 12t12 30v214h-64v-192h-42v150h-64v-150h-42v192h-64v-214q0-18 12-30t30-12h192zM234 512v-64h-84v64h84zM256 384q18 0 30 12t12 30v214h-64v-64h-84v64h-64v-214q0-18 12-30t30-12h128zM342 384h256v64h-96v192h-64v-192h-96v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "atm" - ], - "grid": 24 - }, - { - "id": 578, - "paths": [ - "M128 576h342v342h-342v-342zM554 746q0-80 56-136t136-56 136 56 56 136-56 136-136 56-136-56-56-136zM512 86l234 384h-468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "category" - ], - "grid": 24 - }, - { - "id": 579, - "paths": [ - "M550 550q0-40 56-90t56-98q0-62-44-105t-106-43-106 43-44 105h76q0-30 22-52t52-22 52 22 22 52q0 24-17 44t-39 33-39 41-17 70h76zM550 672v-74h-76v74h76zM512 86q124 0 211 87t87 211q0 62-31 142t-75 150-87 131-73 97l-32 34q-12-14-32-37t-72-92-91-134-71-147-32-144q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "not_listed_location" - ], - "grid": 24 - }, - { - "id": 580, - "paths": [ - "M704 170v182l122 72-32 52-154-92v-214h64zM682 554q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM576 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 554h346q-90-86-90-212h-256v212zM192 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM682 42q124 0 212 88t88 212q0 112-74 195t-182 99v132q0 54-44 94v76q0 18-12 31t-30 13h-42q-18 0-31-13t-13-31v-42h-340v42q0 18-13 31t-31 13h-42q-18 0-30-13t-12-31v-76q-44-40-44-94v-426q0-102 88-137t254-35q8 0 26 1t26 1q90-130 246-130z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "departure_board" - ], - "grid": 24 - }, - { - "id": 581, - "paths": [ - "M512 298q176 0 301 63t125 151q0 66-71 119t-185 77v-88q78-20 125-51t47-57q0-24-40-53t-122-52-180-23-180 23-122 52-40 53q0 30 60 65t154 51v-116l170 170-170 172v-138q-132-22-215-77t-83-127q0-88 125-151t301-63z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "360" - ], - "grid": 24 - }, - { - "id": 582, - "paths": [ - "M308 616l180-180-28-28-152 150-78-80-30 30zM752 298q76 0 131 63t55 151-55 151-131 63h-480q-76 0-131-63t-55-151 55-151 131-63h480z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "edit_attributes" - ], - "grid": 24 - }, - { - "id": 583, - "paths": [ - "M682 768h-426v-426h128v202l298-288 86 86-292 298h206v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "transit_enterexit" - ], - "grid": 24 - }, - { - "id": 584, - "paths": [ - "M44 726h640v84h-640v-84zM684 640h-642q0-98 66-164t160-82 189 0 161 82 66 164zM42 938v-42h642v42q0 18-13 30t-31 12h-554q-18 0-31-12t-13-30zM770 980v-342q0-126-104-226-62-62-182-96l-12-100h212v-174h84v174h214l-72 702q-4 26-23 44t-45 18h-72z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fastfood" - ], - "grid": 24 - }, - { - "id": 585, - "paths": [ - "M512 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM86 512q0-176 125-301t301-125 301 125 125 301-125 301-301 125-301-125-125-301z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trip_origin" - ], - "grid": 24 - }, - { - "id": 586, - "paths": [ - "M512 430q-52 0-115 26t-99 62l-212-212q178-178 426-178 246 0 426 176l-212 214q-88-88-214-88zM342 726q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compass_calibration" - ], - "grid": 24 - }, - { - "id": 587, - "paths": [ - "M170 768h684v-512h-684v512zM86 170h852v684h-852v-684zM726 598v-172h-44v172h44zM768 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h128zM470 598v-172h-44v172h44zM512 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h128zM214 342h84v340h-84v-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "money" - ], - "grid": 24 - }, - { - "id": 588, - "paths": [ - "M682 854v-172h172v172h-172zM682 598v-172h172v172h-172zM426 342v-172h172v172h-172zM682 170h172v172h-172v-172zM426 598v-172h172v172h-172zM170 598v-172h172v172h-172zM170 854v-172h172v172h-172zM426 854v-172h172v172h-172zM170 342v-172h172v172h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "apps" - ], - "grid": 24 - }, - { - "id": 589, - "paths": [ - "M854 470v84h-520l238 240-60 60-342-342 342-342 60 60-238 240h520z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_back" - ], - "grid": 24 - }, - { - "id": 590, - "paths": [ - "M298 426h428l-214 214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_drop_down" - ], - "grid": 24 - }, - { - "id": 591, - "paths": [ - "M512 598l170-172h-340zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_drop_down_circle" - ], - "grid": 24 - }, - { - "id": 592, - "paths": [ - "M298 598l214-214 214 214h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_drop_up" - ], - "grid": 24 - }, - { - "id": 593, - "paths": [ - "M512 170l342 342-342 342-60-60 238-240h-520v-84h520l-238-240z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_forward" - ], - "grid": 24 - }, - { - "id": 594, - "paths": [ - "M726 666l-154-154 154-154-60-60-154 154-154-154-60 60 154 154-154 154 60 60 154-154 154 154zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cancel" - ], - "grid": 24 - }, - { - "id": 595, - "paths": [ - "M384 690l452-452 60 60-512 512-238-238 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "check" - ], - "grid": 24 - }, - { - "id": 596, - "paths": [ - "M512 342l256 256-60 60-196-196-196 196-60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "expand_less" - ], - "grid": 24 - }, - { - "id": 597, - "paths": [ - "M708 366l60 60-256 256-256-256 60-60 196 196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "expand_more" - ], - "grid": 24 - }, - { - "id": 598, - "paths": [ - "M598 214h212v212h-84v-128h-128v-84zM726 726v-128h84v212h-212v-84h128zM214 426v-212h212v84h-128v128h-84zM298 598v128h128v84h-212v-212h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fullscreen" - ], - "grid": 24 - }, - { - "id": 599, - "paths": [ - "M682 342h128v84h-212v-212h84v128zM598 810v-212h212v84h-128v128h-84zM342 342v-128h84v212h-212v-84h128zM214 682v-84h212v212h-84v-128h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fullscreen_exit" - ], - "grid": 24 - }, - { - "id": 600, - "paths": [ - "M128 256h768v86h-768v-86zM128 554v-84h768v84h-768zM128 768v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "menu" - ], - "grid": 24 - }, - { - "id": 601, - "paths": [ - "M512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM768 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM256 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "keyboard_control" - ], - "grid": 24 - }, - { - "id": 602, - "paths": [ - "M512 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM512 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "more_vert" - ], - "grid": 24 - }, - { - "id": 603, - "paths": [ - "M754 270l100-100v300h-300l138-138q-76-76-180-76-106 0-181 75t-75 181 75 181 181 75q74 0 145-50t97-120h88q-28 112-120 184t-210 72q-140 0-240-100t-100-242 100-242 240-100q60 0 131 29t111 71z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "refresh" - ], - "grid": 24 - }, - { - "id": 604, - "paths": [ - "M708 230l-196 196-196-196 60-60 136 136 136-136zM316 794l196-196 196 196-60 60-136-136-136 136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unfold_less" - ], - "grid": 24 - }, - { - "id": 605, - "paths": [ - "M512 776l136-136 60 60-196 196-196-196 60-60zM512 248l-136 136-60-60 196-196 196 196-60 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unfold_more" - ], - "grid": 24 - }, - { - "id": 606, - "paths": [ - "M170 512l342-342 342 342-62 60-238-238v520h-84v-520l-240 238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_upward" - ], - "grid": 24 - }, - { - "id": 607, - "paths": [ - "M470 384l60 60-154 154h392v-428h86v512h-478l154 154-60 60-256-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subdirectory_arrow_left" - ], - "grid": 24 - }, - { - "id": 608, - "paths": [ - "M810 640l-256 256-60-60 154-154h-478v-512h86v428h392l-154-154 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subdirectory_arrow_right" - ], - "grid": 24 - }, - { - "id": 609, - "paths": [ - "M854 512l-342 342-342-342 62-60 238 238v-520h84v520l240-238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_downward" - ], - "grid": 24 - }, - { - "id": 610, - "paths": [ - "M256 256h86v512h-86v-512zM786 708l-60 60-256-256 256-256 60 60-196 196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "first_page" - ], - "grid": 24 - }, - { - "id": 611, - "paths": [ - "M682 256h86v512h-86v-512zM238 316l60-60 256 256-256 256-60-60 196-196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "last_page" - ], - "grid": 24 - }, - { - "id": 612, - "paths": [ - "M598 298v428l-214-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_left" - ], - "grid": 24 - }, - { - "id": 613, - "paths": [ - "M426 726v-428l214 214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_right" - ], - "grid": 24 - }, - { - "id": 614, - "paths": [ - "M498 166l-346 346 346 346-76 76-422-422 422-422z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_back_ios" - ], - "grid": 24 - }, - { - "id": 615, - "paths": [ - "M250 176l92-90 426 426-426 426-92-90 338-336z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_forward_ios" - ], - "grid": 24 - }, - { - "id": 616, - "paths": [ - "M640 384q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM384 384q18 0 30-12t12-30-12-31-30-13-30 13-12 31 12 30 30 12zM688 186q122 90 122 240v44h-596v-44q0-150 122-240l-90-90 36-34 98 98q64-32 132-32t132 32l98-98 36 34zM214 682v-170h596v170q0 124-87 212t-211 88-211-88-87-212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "adb" - ], - "grid": 24 - }, - { - "id": 617, - "paths": [ - "M426 598q34 0 60-26t26-60-26-60-60-26-59 26-25 60 25 60 59 26zM426 170q142 0 242 101t100 241-100 241-242 101q-140 0-240-100t-100-242 100-242 240-100zM854 298h84v214h-84v-214zM854 682v-84h84v84h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "disc_full" - ], - "grid": 24 - }, - { - "id": 618, - "paths": [ - "M512 854q140 0 241-101t101-241q0-114-74-210l-478 478q96 74 210 74zM170 512q0 114 74 210l478-478q-96-74-210-74-140 0-241 101t-101 241zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "do_not_disturb_alt" - ], - "grid": 24 - }, - { - "id": 619, - "paths": [ - "M214 426h596l-64-192h-468zM746 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM278 640q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM808 214l88 256v340q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-42h-512v42q0 18-12 31t-30 13h-44q-18 0-30-13t-12-31v-340l88-256q14-44 62-44h468q48 0 62 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drive_eta", - "time_to_leave" - ], - "grid": 24 - }, - { - "id": 620, - "paths": [ - "M810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM706 472l-254 254-136-136 46-46 90 90 208-208z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "event_available" - ], - "grid": 24 - }, - { - "id": 621, - "paths": [ - "M810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM398 726l-46-46 104-104-104-104 46-46 104 104 104-104 44 46-104 104 104 104-44 46-104-104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "event_busy" - ], - "grid": 24 - }, - { - "id": 622, - "paths": [ - "M598 598v84h-300v-84h300zM810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42zM726 426v86h-428v-86h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "event_note" - ], - "grid": 24 - }, - { - "id": 623, - "paths": [ - "M766 726l-34-142 110-96-144-12-58-134-58 134-144 12 110 96-34 142 126-74zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "folder_special" - ], - "grid": 24 - }, - { - "id": 624, - "paths": [ - "M214 598h596l-192-256-148 192-108-128zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mms" - ], - "grid": 24 - }, - { - "id": 625, - "paths": [ - "M810 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM598 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM384 576q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM938 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-636q-44 0-72-38l-230-346 230-346q28-38 68-38h640z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "more" - ], - "grid": 24 - }, - { - "id": 626, - "paths": [ - "M896 682v-64q0-26-18-45t-46-19-46 19-18 45v64h128zM938 682q18 0 31 13t13 31v170q0 18-13 30t-31 12h-212q-18 0-31-12t-13-30v-170q0-18 13-31t31-13v-64q0-44 31-75t75-31 75 31 31 75v64zM832 426q-80 0-136 56t-56 136v12q-42 38-42 96v128h-556l812-812v386q-4 0-11-1t-11-1z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "network_locked" - ], - "grid": 24 - }, - { - "id": 627, - "paths": [ - "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM768 308v80l40-40zM768 124v80l40-40zM628 406l-30-30 118-120-118-120 30-30 98 98v-162h20l122 122-92 92 92 92-122 122h-20v-162z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_bluetooth_speaker" - ], - "grid": 24 - }, - { - "id": 628, - "paths": [ - "M854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM768 470v-128h-170v-172h170v-128l214 214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_forwarded" - ], - "grid": 24 - }, - { - "id": 629, - "paths": [ - "M640 512q0-52-38-90t-90-38v-86q88 0 151 63t63 151h-86zM810 512q0-124-87-211t-211-87v-86q160 0 272 112t112 272h-86zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_in_talk" - ], - "grid": 24 - }, - { - "id": 630, - "paths": [ - "M820 170v-20q0-30-22-52t-52-22-51 22-21 52v20h146zM854 170q18 0 30 13t12 31v170q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-170q0-18 12-31t30-13v-20q0-44 31-76t75-32 76 32 32 76v20zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_locked" - ], - "grid": 24 - }, - { - "id": 631, - "paths": [ - "M1012 712q12 12 12 30t-12 30l-106 106q-12 12-30 12t-30-12q-56-52-114-80-24-10-24-38v-132q-92-30-196-30t-196 30v132q0 30-24 40-64 30-114 78-12 12-30 12t-30-12l-106-106q-12-12-12-30t12-30q210-200 500-200 120 0 266 59t234 141zM278 234v150h-64v-256h256v64h-150l192 192 256-256 42 42-298 300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_missed" - ], - "grid": 24 - }, - { - "id": 632, - "paths": [ - "M810 128h86v298h-86v-298zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM726 128v298h-86v-298h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_paused" - ], - "grid": 24 - }, - { - "id": 633, - "paths": [ - "M554 554v-212h-84v212h84zM554 726v-86h-84v86h84zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-512 254-256h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sim_card_alert" - ], - "grid": 24 - }, - { - "id": 634, - "paths": [ - "M554 426v-170h-84v170h84zM554 598v-86h-84v86h84zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sms_failed", - "feedback" - ], - "grid": 24 - }, - { - "id": 635, - "paths": [ - "M854 170l-102 102q42 40 72 111t30 129q0 94-52 180l-64-62q30-60 30-118 0-44-22-96t-54-84l-94 94v-256h256zM122 230l54-54 670 672-54 54-100-100q-48 28-96 40v-88q16-6 34-16l-344-344q-30 60-30 118 0 44 22 96t54 84l94-94v256h-256l102-102q-42-40-72-111t-30-129q0-94 52-180zM426 270q-12 4-32 16l-62-64q50-30 94-40v88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sync_disabled" - ], - "grid": 24 - }, - { - "id": 636, - "paths": [ - "M470 554v-256h84v256h-84zM896 170l-100 102q100 100 100 240 0 118-72 210t-184 120v-88q70-26 120-97t50-145q0-44-21-96t-53-84l-96 94v-256h256zM470 726v-86h84v86h-84zM128 512q0-118 72-210t184-120v88q-70 26-120 97t-50 145q0 44 21 96t53 84l96-94v256h-256l100-102q-100-100-100-240z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sync_problem" - ], - "grid": 24 - }, - { - "id": 637, - "paths": [ - "M682 554l-170 172-170-172h128v-212h84v212h128zM726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "system_update" - ], - "grid": 24 - }, - { - "id": 638, - "paths": [ - "M726 44q34 0 59 25t25 59v726q0 34-25 59t-59 25h-90q-6-86-40-170h130v-554h-428v256q-50-22-84-28v-314q0-34 25-60t59-26zM86 512q194 0 331 137t137 333h-84q0-158-113-271t-271-113v-86zM86 854q52 0 90 38t38 90h-128v-128zM86 682q124 0 211 88t87 212h-86q0-88-62-151t-150-63v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tap_and_play" - ], - "grid": 24 - }, - { - "id": 639, - "paths": [ - "M682 810v-596h-340v596h340zM704 128q28 0 46 18t18 46v640q0 28-18 46t-46 18h-384q-28 0-46-18t-18-46v-640q0-28 18-46t46-18h384zM810 726v-428h86v428h-86zM938 384h86v256h-86v-256zM128 726v-428h86v428h-86zM0 640v-256h86v256h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vibration" - ], - "grid": 24 - }, - { - "id": 640, - "paths": [ - "M768 598v-342l-170 136v-136h-342v342h342v-138zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "voice_chat" - ], - "grid": 24 - }, - { - "id": 641, - "paths": [ - "M426 894v-84q-34 0-59-25t-25-59v-44l-206-204q-8 32-8 76 0 130 86 227t212 113zM808 512h86q2 14 2 42 0 178-125 303t-301 125q-178 0-303-125t-125-303q0-176 125-301t303-125q62 0 128 20v108q0 34-26 60t-60 26h-86v84q0 18-12 31t-30 13h-86v84h256q18 0 31 13t13 31v128h42q62 0 82 58 88-94 88-230 0-28-2-42zM904 170v-20q0-30-21-52t-51-22-51 22-21 52v20h144zM938 170q18 0 31 13t13 31v170q0 18-13 30t-31 12h-212q-18 0-31-12t-13-30v-170q0-18 13-31t31-13v-20q0-44 31-76t75-32 75 32 31 76v20z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vpn_lock" - ], - "grid": 24 - }, - { - "id": 642, - "paths": [ - "M304 516q-34 38-90 38-54 0-90-36-38-34-38-92 0-52 36-88 36-40 92-40 50 0 88 38 40 36 40 90 0 52-38 90zM86 598h852v84h-256v86h-340v-86h-256v-84zM938 470v84h-554v-256h384q70 0 120 51t50 121z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_flat" - ], - "grid": 24 - }, - { - "id": 643, - "paths": [ - "M312 436q-20 12-56 12-34 0-68-21t-48-51q-12-20-12-56 0-34 21-68t51-48q20-12 56-12 34 0 68 21t48 51q12 28 12 56 0 34-21 68t-51 48zM64 518l30-80 810 292-28 80-194-68v68h-340v-192zM950 610l-30 80-528-190 90-242 364 132q46 16 80 63t34 97q0 34-10 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_flat_angled" - ], - "grid": 24 - }, - { - "id": 644, - "paths": [ - "M810 298q70 0 121 51t51 121v256h-940v-428h86v300h342v-300h340zM298 554q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_individual_suite" - ], - "grid": 24 - }, - { - "id": 645, - "paths": [ - "M974 736q14 24 4 50t-34 38l-158 72-146-298h-298q-52 0-90-38t-38-90v-342h256v256h150q22 0 44 14t32 34l144 298 48-22q24-10 49-2t37 30zM170 512q0 52 38 90t90 38h256v86h-256q-88 0-150-63t-62-151v-384h84v384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_legroom_extra" - ], - "grid": 24 - }, - { - "id": 646, - "paths": [ - "M874 768q26 0 45 18t19 46-19 46-45 18h-192v-298h-298q-52 0-90-38t-38-90v-342h256v256h214q34 0 59 26t25 60v298h64zM214 512q0 52 38 90t90 38h256v86h-256q-88 0-151-63t-63-151v-384h86v384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_legroom_normal" - ], - "grid": 24 - }, - { - "id": 647, - "paths": [ - "M214 512q0 52 38 90t90 38h170v86h-170q-88 0-151-63t-63-151v-384h86v384zM852 820q6 30-13 53t-49 23h-192v-128l42-170h-256q-52 0-90-38t-38-90v-342h256v256h214q34 0 59 26t25 60l-84 298h60q24 0 43 15t23 37z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_legroom_reduced" - ], - "grid": 24 - }, - { - "id": 648, - "paths": [ - "M692 640l246 192-64 64-162-128h-292q-44 0-81-30t-45-74l-58-252q0-2-1-8t-1-8q0-34 24-62t56-34h2q2 0 7-1t7-1q34 0 60 20l70 54q96 74 200 54v92q-96 16-220-52l44 174h208zM682 810v86h-300q-76 0-138-52t-74-128l-84-418h84l84 404q8 46 44 77t84 31h300zM228 240q-28-20-34-55t14-63 55-35 63 13q28 22 35 57t-13 63-56 34-64-14z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_recline_extra" - ], - "grid": 24 - }, - { - "id": 649, - "paths": [ - "M854 856l-62 62-150-150h-216q-52 0-90-38t-38-90v-246q0-38 29-67t67-29h2q38 0 70 32l60 66q34 38 91 62t109 24v94q-124 0-236-94v158h148zM256 682q0 52 38 90t90 38h256v86h-256q-88 0-151-63t-63-151v-384h86v384zM324 230q-26-26-26-60t26-60 60-26 60 26 26 60-26 60-60 26-60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airline_seat_recline_normal" - ], - "grid": 24 - }, - { - "id": 650, - "paths": [ - "M554 362v-84h-84v84h84zM554 554v-84h-84v84h84zM554 746v-84h-84v84h84zM938 426q-34 0-59 26t-25 60 25 60 59 26v170q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-170q36 0 60-25t24-61q0-34-25-60t-59-26v-170q0-36 25-61t59-25h684q36 0 60 25t24 61v170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "confirmation_number" - ], - "grid": 24 - }, - { - "id": 651, - "paths": [ - "M384 426l298 172-298 170v-342zM896 854v-512h-768v512h768zM896 256q36 0 61 25t25 61v512q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-512q0-36 25-61t61-25h324l-140-140 30-30 170 170 170-170 30 30-140 140h324z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "live_tv" - ], - "grid": 24 - }, - { - "id": 652, - "paths": [ - "M682 470l-298 170v-342zM896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ondemand_video" - ], - "grid": 24 - }, - { - "id": 653, - "paths": [ - "M896 726v-512h-768v512h768zM896 128q36 0 61 25t25 61l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-36 0-61-24t-25-60v-512q0-36 25-61t61-25h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "personal_video" - ], - "grid": 24 - }, - { - "id": 654, - "paths": [ - "M684 298q32 0 58 27t26 59v234l-150 150v128h-212v-128l-150-150v-234q0-32 26-59t58-27h2v-170h84v170h172v-170h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "power" - ], - "grid": 24 - }, - { - "id": 655, - "paths": [ - "M704 256q-36 0-61-25t-25-61 25-60 61-24 61 24 25 60-25 61-61 25zM320 256q-36 0-61-25t-25-61 25-60 61-24 61 24 25 60-25 61-61 25zM768 938h-128v-256h-128l108-324q8-24 32-42t50-18h4q26 0 50 18t32 42l108 324h-128v256zM234 938v-320h-64v-234q0-34 26-60t60-26h128q34 0 60 26t26 60v234h-64v320h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wc" - ], - "grid": 24 - }, - { - "id": 656, - "paths": [ - "M214 554q124-122 299-122t297 122l-84 86q-36-36-99-62t-115-26-115 26-99 62zM384 726q54-54 128-54t128 54l-128 128zM42 384q196-194 471-194t469 194l-86 86q-160-158-384-158t-384 158z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi" - ], - "grid": 24 - }, - { - "id": 657, - "paths": [ - "M682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM380 256v86h264v-86q0-54-39-93t-93-39-93 39-39 93zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "enhanced_encryption" - ], - "grid": 24 - }, - { - "id": 658, - "paths": [ - "M214 554q128-128 312-122l-56 122q-42 6-92 31t-80 55zM726 640q-22-22-52-42l24-124q64 32 112 80zM896 470q-78-78-176-118l22-120q58 22 128 66t112 86zM42 384q118-118 273-165t313-19l-50 114q-122-16-241 25t-209 131zM678 214q22 0 22 20l-104 550v2q-6 28-30 48t-54 20q-36 0-61-25t-25-61q0-22 10-42l222-496q6-16 20-16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "network_check" - ], - "grid": 24 - }, - { - "id": 659, - "paths": [ - "M380 256v52l-78-78q10-80 69-134t141-54q88 0 151 63t63 151v86h42q34 0 60 25t26 59v356l-442-440h232v-86q0-54-39-93t-93-39-93 39-39 93zM896 930l-52 52-48-48q-16 4-28 4h-512q-34 0-60-25t-26-59v-428q0-50 46-74l-88-86 52-52z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_encryption" - ], - "grid": 24 - }, - { - "id": 660, - "paths": [ - "M726 86l128 128-128 128v-86h-342v-86h342v-84zM768 598v-128h-170v128h170zM470 854q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM854 726h84v84h-340q0 52-38 90t-90 38-90-38-38-90h-86q-34 0-60-25t-26-59v-128h300v-128h-172v84l-128-128 128-128v86h470q34 0 60 26t26 60v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rv_hookup" - ], - "grid": 24 - }, - { - "id": 661, - "paths": [ - "M298 554h148l-86-84h-62v84zM96 96l832 832-56 54-118-120q-108 76-242 76-176 0-301-125t-125-301q0-56 22-126t54-116l-120-118zM726 470h-148l-308-308q108-76 242-76 176 0 301 125t125 301q0 56-22 126t-54 116l-198-200h62v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "do_not_disturb_off" - ], - "grid": 24 - }, - { - "id": 662, - "paths": [ - "M426 128h172v512h-172v-512zM426 810q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "priority_high" - ], - "grid": 24 - }, - { - "id": 663, - "paths": [ - "M308 308q474 476 576 576l-54 54-190-190-22 20v128h-212v-128l-150-150v-234q0-10 2-16l-142-144 54-54 136 138h2zM768 618l-20 22-406-406v-106h84v170h172v-170h84v170q32 0 59 27t27 59v234z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "power_off" - ], - "grid": 24 - }, - { - "id": 664, - "paths": [ - "M896 214q36 0 61 24t25 60v512q0 26-16 48l-70-70v-490h-490l-86-84h132l-140-142 30-30 170 172 170-172 30 30-140 142h324zM128 810h574l-512-512h-62v512zM42 152l54-56 830 832-54 54-84-86h-660q-34 0-60-26t-26-60v-512q0-30 19-53t47-29z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tv_off" - ], - "grid": 24 - }, - { - "id": 665, - "paths": [ - "M384 726q54-54 128-54t128 54l-128 128zM86 130l54-54 724 724-54 54-302-302q-50 0-112 26t-98 62l-84-84v-2q78-78 188-108l-96-94q-98 40-178 118l-86-86q78-78 174-124zM810 554l-40 42-152-150q114 30 192 108zM980 384l-84 86q-168-172-412-158l-106-108q162-34 321 12t281 168z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi_off" - ], - "grid": 24 - }, - { - "id": 666, - "paths": [ - "M860 158l-270 268h178v44h-256v-256h42v182l276-268zM282 460q96 186 282 282l94-94q20-20 44-10 72 24 152 24 18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30q0 80 24 152 8 26-10 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_callback" - ], - "grid": 24 - }, - { - "id": 667, - "paths": [ - "M556 556h382q-14 152-122 260t-260 122v-382zM556 86q152 14 260 122t122 260h-382v-382zM470 86v852q-162-16-273-138t-111-288 111-288 273-138z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pie_chart" - ], - "grid": 24 - }, - { - "id": 668, - "paths": [ - "M554 850q108-14 195-101t101-195h-296v296zM170 512q0 130 86 226t214 112v-676q-126 16-213 112t-87 226zM554 174v296h296q-14-116-97-199t-199-97zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pie_chart_outlined" - ], - "grid": 24 - }, - { - "id": 669, - "paths": [ - "M444 376q0-86 59-146t145-60 146 60 60 146-60 145-146 59-145-59-59-145zM546 768q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61zM170 614q0-56 40-96t98-40q56 0 96 39t40 97-40 97-96 39q-58 0-98-40t-40-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bubble_chart" - ], - "grid": 24 - }, - { - "id": 670, - "paths": [ - "M938 296l-130 146q74 118 88 262h-86q-12-102-62-194l-172 194-170-172-256 256-64-64 320-320 170 172 122-140q-118-138-288-138-146 0-264 104l-60-60q144-128 324-128 204 0 346 158l122-136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "multiline_chart" - ], - "grid": 24 - }, - { - "id": 671, - "paths": [ - "M150 788l-64-64 320-320 170 172 302-340 60 60-362 408-170-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "show_chart" - ], - "grid": 24 - }, - { - "id": 672, - "paths": [ - "M768 384q52 0 90 38t38 90v66q0 34-25 59t-59 25-58-24l-92-92-92 92q-24 24-59 24t-59-24l-90-92-92 92q-24 24-58 24t-59-25-25-59v-66q0-52 38-90t90-38h214v-86h84v86h214zM708 682q44 44 104 44 44 0 84-26v196q0 18-12 30t-30 12h-684q-18 0-30-12t-12-30v-196q38 26 84 26 60 0 104-44l46-46 46 46q42 42 104 42t104-42l46-46zM512 256q-34 0-60-26t-26-60q0-22 14-44l72-126 72 126q14 22 14 44 0 36-25 61t-61 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cake" - ], - "grid": 24 - }, - { - "id": 673, - "paths": [ - "M682 554q56 0 122 16t122 52 56 82v106h-256v-106q0-88-84-148 14-2 40-2zM342 554q56 0 122 16t121 52 55 82v106h-598v-106q0-46 56-82t122-52 122-16zM342 470q-52 0-90-38t-38-90 38-90 90-38 89 38 37 90-37 90-89 38zM682 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "group", - "people" - ], - "grid": 24 - }, - { - "id": 674, - "paths": [ - "M554 554q80 0 168 35t88 93v86h-512v-86q0-58 88-93t168-35zM838 562q74 12 130 43t56 77v86h-128v-86q0-68-58-120zM554 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM768 470q-20 0-38-6 38-54 38-122t-38-122q18-6 38-6 52 0 90 38t38 90-38 90-90 38zM342 426v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "group_add" - ], - "grid": 24 - }, - { - "id": 675, - "paths": [ - "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM554 298v-84h-84v84h84zM554 470v-86h-84v86h84zM554 640v-86h-84v86h84zM554 810v-84h-84v84h84zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM640 470h256v426h-768v-598h256v-84l128-128 128 128v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "location_city" - ], - "grid": 24 - }, - { - "id": 676, - "paths": [ - "M512 598q74 0 133 41t85 107h-436q26-66 85-107t133-41zM362 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 470q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mood_bad" - ], - "grid": 24 - }, - { - "id": 677, - "paths": [ - "M768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notifications" - ], - "grid": 24 - }, - { - "id": 678, - "paths": [ - "M682 726v-256q0-82-46-137t-124-55-124 55-46 137v256h340zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-34 0-60-25t-26-59h172q0 34-26 59t-60 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notifications_none" - ], - "grid": 24 - }, - { - "id": 679, - "paths": [ - "M768 626l-382-402q6-2 16-7l14-7h2l12-6q2 0 8-2t10-2v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v156zM512 938q-36 0-61-24t-25-60h172q0 36-25 60t-61 24zM334 262q48 50 251 258t311 322l-54 54-86-86h-586v-42l86-86v-214q0-82 34-146l-120-118 54-56z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notifications_off" - ], - "grid": 24 - }, - { - "id": 680, - "paths": [ - "M512 938q-36 0-61-25t-25-59h170q0 36-24 60t-60 24zM768 470v212l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174zM852 448q-4-72-48-152t-102-122l60-60q166 128 176 334h-86zM324 174q-58 42-103 122t-49 152h-86q10-206 176-334z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notifications_on" - ], - "grid": 24 - }, - { - "id": 681, - "paths": [ - "M618 418v-76h-212v76h118l-118 146v76h212v-76h-118zM768 682l86 86v42h-684v-42l86-86v-212q0-100 51-174t141-96v-30q0-26 18-45t46-19 46 19 18 45v30q90 22 141 96t51 174v212zM512 938q-36 0-61-24t-25-60h172q0 34-26 59t-60 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "notifications_paused" - ], - "grid": 24 - }, - { - "id": 682, - "paths": [ - "M810 128q34 0 60 26t26 60v256h-214l44-172-172 44v-214h256zM726 726l-44-172h214v256q0 34-26 60t-60 26h-256v-214zM342 554l-44 172 172-44v214h-256q-34 0-60-26t-26-60v-256h214zM128 214q0-34 26-60t60-26h256v214l-172-44 44 172h-214v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pages" - ], - "grid": 24 - }, - { - "id": 683, - "paths": [ - "M512 726q88 0 151-63t63-151q0-18-4-42h-90q8 28 8 42 0 52-38 90t-90 38h-170q66 86 170 86zM512 298q-88 0-151 63t-63 151q0 18 4 42h90q-8-28-8-42 0-52 38-90t90-38h170q-66-86-170-86zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h136l78-84h256l78 84h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "party_mode" - ], - "grid": 24 - }, - { - "id": 684, - "paths": [ - "M704 278q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM704 512q-62 0-106-44t-44-106 44-105 106-43 106 43 44 105-44 106-106 44zM320 278q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM320 512q-62 0-106-44t-44-106 44-105 106-43 106 43 44 105-44 106-106 44zM918 746v-52q0-20-71-48t-143-28q-52 0-128 24 22 26 22 52v52h320zM534 746v-52q0-20-71-48t-143-28-143 28-71 48v52h428zM704 554q86 0 182 39t96 101v116h-940v-116q0-62 96-101t182-39q94 0 192 44 98-44 192-44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "people_outline" - ], - "grid": 24 - }, - { - "id": 685, - "paths": [ - "M512 598q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM512 512q-70 0-120-50t-50-120 50-121 120-51 120 51 50 121-50 120-120 50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person" - ], - "grid": 24 - }, - { - "id": 686, - "paths": [ - "M640 598q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM256 426h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM640 512q-70 0-120-50t-50-120 50-121 120-51 120 51 50 121-50 120-120 50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_add" - ], - "grid": 24 - }, - { - "id": 687, - "paths": [ - "M512 554q64 0 140 18t139 60 63 94v128h-684v-128q0-52 63-94t139-60 140-18zM512 170q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM512 636q-88 0-174 33t-86 57v46h520v-46q0-24-86-57t-174-33zM512 252q-38 0-64 26t-26 64 26 63 64 25 64-25 26-63-26-64-64-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_outline", - "perm_identity" - ], - "grid": 24 - }, - { - "id": 688, - "paths": [ - "M618 260l192-46v554h-84v-452l-108 22v-78zM426 342v170h172v86h-172v170h-84v-170h-172v-86h172v-170h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "plus_one" - ], - "grid": 24 - }, - { - "id": 689, - "paths": [ - "M764 742q90-96 90-230 0-106-59-192t-155-124v18q0 34-26 59t-60 25h-84v86q0 18-13 30t-31 12h-84v86h256q18 0 30 12t12 30v128h42q60 0 82 60zM470 850v-82q-34 0-60-26t-26-60v-42l-204-204q-10 40-10 76 0 130 87 226t213 112zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "public" - ], - "grid": 24 - }, - { - "id": 690, - "paths": [ - "M512 128l470 256v342h-86v-296l-384 210-470-256zM214 562l298 164 298-164v172l-298 162-298-162v-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "school" - ], - "grid": 24 - }, - { - "id": 691, - "paths": [ - "M768 686q52 0 88 37t36 87q0 52-37 89t-87 37-87-37-37-89q0-20 2-28l-302-176q-38 34-88 34-52 0-90-38t-38-90 38-90 90-38q50 0 88 34l300-174q-4-20-4-30 0-52 38-90t90-38 90 38 38 90-38 90-90 38q-48 0-88-36l-300 176q4 20 4 30t-4 30l304 176q36-32 84-32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "share" - ], - "grid": 24 - }, - { - "id": 692, - "paths": [ - "M500 810q86 0 145-59t59-145q0-88-24-172-62 82-198 110-120 26-120 132 0 56 40 95t98 39zM576 28q128 104 203 253t75 317q0 140-100 240t-242 100-242-100-100-240q0-216 138-380v16q0 66 44 112t110 46q64 0 105-45t41-113q0-40-8-92t-16-82z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "whatshot" - ], - "grid": 24 - }, - { - "id": 693, - "paths": [ - "M512 704q-44 0-84 22l-22-24q-2-2-22-24 56-38 128-38 68 0 128 38-4 2-23 23t-21 25q-38-22-84-22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_dissatisfied" - ], - "grid": 24 - }, - { - "id": 694, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM384 662h256v42h-256v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_neutral" - ], - "grid": 24 - }, - { - "id": 695, - "paths": [ - "M512 682q44 0 84-22 38 44 44 50-58 36-128 36-68 0-126-36 24-32 42-50 38 22 84 22zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_satisfied" - ], - "grid": 24 - }, - { - "id": 696, - "paths": [ - "M512 598q74 0 133 41t85 107h-70q-50-84-148-84t-148 84h-70q26-66 85-107t133-41zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_very_dissatisfied" - ], - "grid": 24 - }, - { - "id": 697, - "paths": [ - "M298 598h428q-26 76-84 123t-130 47-130-47-84-123zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM298 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM598 406q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sentiment_very_satisfied" - ], - "grid": 24 - }, - { - "id": 698, - "paths": [ - "M92 474l114-262q26-42 74-42h346q42 0 71 29t29 71v334q0 36-26 62l-274 272-18-20q-24-24-38-52-6-14-4-28l40-198h-236q-34 0-59-26t-25-60v-46q0-20 6-34zM938 170v470h-84q-18 0-31-12t-13-30v-384q0-18 13-31t31-13h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_down_alt" - ], - "grid": 24 - }, - { - "id": 699, - "paths": [ - "M932 550l-114 262q-26 42-74 42h-346q-40 0-70-30t-30-70v-334q0-36 26-62l274-272 18 20q24 24 38 52 6 14 4 28l-40 198h236q34 0 59 26t25 60v46q0 18-6 34zM86 854v-470h84q18 0 31 12t13 30v384q0 18-13 31t-31 13h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_up_alt" - ], - "grid": 24 - }, - { - "id": 700, - "paths": [ - "M426 726l384-384-60-62-324 324-152-152-60 60zM810 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "check_box" - ], - "grid": 24 - }, - { - "id": 701, - "paths": [ - "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM810 214h-596v596h596v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "check_box_outline_blank" - ], - "grid": 24 - }, - { - "id": 702, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM512 298q88 0 151 63t63 151-63 151-151 63-151-63-63-151 63-151 151-63z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "radio_button_on" - ], - "grid": 24 - }, - { - "id": 703, - "paths": [ - "M512 736l-264 160 70-300-232-202 306-26 120-282 120 282 306 26-232 202 70 300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star", - "grade" - ], - "grid": 24 - }, - { - "id": 704, - "paths": [ - "M512 658l160 96-42-182 142-124-188-16-72-172v398zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star_half" - ], - "grid": 24 - }, - { - "id": 705, - "paths": [ - "M512 658l160 96-42-182 142-124-188-16-72-172-72 172-188 16 142 124-42 182zM938 394l-232 202 70 300-264-160-264 160 70-300-232-202 306-26 120-282 120 282z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star_outline" - ], - "grid": 24 - }, - { - "id": 706, - "paths": [ - "M512 0q200 0 347 135t163 333h-64q-10-118-79-214t-175-146l-58 56-162-162zM706 504q0-114-94-114h-40v246h38q72 0 92-68 4-14 4-48v-16zM612 342q106 0 144 94 10 24 10 68v16q0 76-42 118-44 44-114 44h-98v-340h100zM414 508q56 22 56 78 0 20-10 40-12 24-22 32-30 24-80 24-48 0-78-24t-30-70h54q0 22 15 36t39 14q56 0 56-54t-62-54h-32v-44h32q58 0 58-50t-52-50q-50 0-50 46h-56q0-34 30-64 32-26 76-26 48 0 77 24t29 70q0 50-50 72zM320 916l58-56 162 162-28 2q-200 0-347-136t-163-334h64q10 106 84 212t170 150z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "3d_rotation" - ], - "grid": 24 - }, - { - "id": 707, - "paths": [ - "M896 384h-256v554h-86v-256h-84v256h-86v-554h-256v-86h768v86zM512 86q34 0 60 25t26 59-26 60-60 26-60-26-26-60 26-59 60-25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "accessibility" - ], - "grid": 24 - }, - { - "id": 708, - "paths": [ - "M490 42l406 214v86h-810v-86zM682 426h128v300h-128v-300zM86 938v-128h810v128h-810zM426 426h128v300h-128v-300zM170 426h128v300h-128v-300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "account_balance" - ], - "grid": 24 - }, - { - "id": 709, - "paths": [ - "M682 576q26 0 45-18t19-46-19-46-45-18-45 18-19 46 19 46 45 18zM512 682v-340h426v340h-426zM896 768v42q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596q34 0 60 26t26 60v42h-384q-36 0-61 25t-25 61v340q0 36 25 61t61 25h384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "account_balance_wallet" - ], - "grid": 24 - }, - { - "id": 710, - "paths": [ - "M256 726v42h512v-42q0-58-88-95t-168-37-168 37-88 95zM640 384q0-52-38-90t-90-38-90 38-38 90 38 90 90 38 90-38 38-90zM128 214q0-36 25-61t61-25h596q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "account_box" - ], - "grid": 24 - }, - { - "id": 711, - "paths": [ - "M512 820q68 0 143-40t113-98q-2-56-90-94t-166-38-166 37-90 95q38 58 113 98t143 40zM512 214q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "account_circle" - ], - "grid": 24 - }, - { - "id": 712, - "paths": [ - "M306 630q0 10 10 10h494v86h-512q-34 0-59-26t-25-60q0-20 10-40l58-106-154-324h-86v-84h140q40 84 80 170 10 18 46 95t56 119h300q150-272 164-300l74 42-164 298q-24 44-74 44h-318l-38 70zM726 768q34 0 59 26t25 60-25 59-59 25-60-25-26-59 26-60 60-26zM298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26zM470 384v-128h-128v-86h128v-128h84v128h128v86h-128v128h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_shopping_cart" - ], - "grid": 24 - }, - { - "id": 713, - "paths": [ - "M342 140l-36 30-62-60 38-30zM702 784l-420-420q-68 84-68 190 0 124 87 212t211 88q104 0 190-70zM124 98q152 152 433 432t355 354l-54 54-94-94q-110 94-252 94-160 0-272-113t-112-271q0-58 28-132t66-118l-34-34-48 40-60-62 48-38-58-58zM938 244l-54 66-196-166 54-64zM512 256q-54 0-102 18l-66-64q84-40 168-40 160 0 272 113t112 271q0 88-38 168l-66-64q18-48 18-104 0-124-87-211t-211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "alarm_off" - ], - "grid": 24 - }, - { - "id": 714, - "paths": [ - "M450 620l210-212 46 46-256 256-136-136 44-44zM512 854q124 0 211-88t87-212-87-211-211-87-211 87-87 211 87 212 211 88zM512 170q160 0 272 113t112 271-112 271-272 113-272-113-112-271 112-271 272-113zM336 144l-196 164-54-64 196-164zM938 244l-54 66-196-166 54-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "alarm_on" - ], - "grid": 24 - }, - { - "id": 715, - "paths": [ - "M640 214v-44h-42v44h42zM426 214v-44h-42v44h42zM662 92q106 76 106 206h-512q0-54 30-114t74-92l-56-56q-16-16 0-30t30 0l64 64q52-28 114-28 52 0 112 28l64-64q16-14 30 0t0 30zM874 342q26 0 45 19t19 45v298q0 28-19 46t-45 18-45-18-19-46v-298q0-26 19-45t45-19zM150 342q26 0 45 19t19 45v298q0 28-19 46t-45 18-45-18-19-46v-298q0-26 19-45t45-19zM256 768v-426h512v426q0 18-12 30t-30 12h-44v150q0 28-19 46t-45 18-45-18-19-46v-150h-84v150q0 28-19 46t-45 18-45-18-19-46v-150h-44q-18 0-30-12t-12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "android" - ], - "grid": 24 - }, - { - "id": 716, - "paths": [ - "M554 640v-86h-84v86h84zM554 470v-256h-84v256h84zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "announcement" - ], - "grid": 24 - }, - { - "id": 717, - "paths": [ - "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM298 384v128h-84v-214h212v86h-128zM810 512v214h-212v-86h128v-128h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "aspect_ratio" - ], - "grid": 24 - }, - { - "id": 718, - "paths": [ - "M726 384v-86h-428v86h428zM726 554v-84h-428v84h428zM598 726v-86h-300v86h300zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment" - ], - "grid": 24 - }, - { - "id": 719, - "paths": [ - "M768 810v-60q0-58-88-95t-168-37-168 37-88 95v60h512zM512 298q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment_ind" - ], - "grid": 24 - }, - { - "id": 720, - "paths": [ - "M512 214q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM554 598v-256h-84v256h84zM554 768v-86h-84v86h84zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment_late" - ], - "grid": 24 - }, - { - "id": 721, - "paths": [ - "M682 640v-170h-170v-128l-214 212 214 214v-128h170zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment_return" - ], - "grid": 24 - }, - { - "id": 722, - "paths": [ - "M512 768l214-214h-128v-170h-172v170h-128zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment_returned" - ], - "grid": 24 - }, - { - "id": 723, - "paths": [ - "M426 726l342-342-60-60-282 280-110-110-60 60zM512 128q-18 0-30 12t-12 30 12 31 30 13 30-13 12-31-12-30-30-12zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h178q14-38 46-62t74-24 74 24 46 62h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assignment_turned_in" - ], - "grid": 24 - }, - { - "id": 724, - "paths": [ - "M800 330q54 82 54 182 0 140-101 241t-241 101v128l-170-172 170-170v128q106 0 181-75t75-181q0-60-30-120zM512 256q-106 0-181 75t-75 181q0 64 30 120l-62 62q-54-82-54-182 0-140 101-241t241-101v-128l170 172-170 170v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "autorenew" - ], - "grid": 24 - }, - { - "id": 725, - "paths": [ - "M256 170v342l106-64 108 64v-342h-214zM768 86q34 0 60 25t26 59v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book", - "class" - ], - "grid": 24 - }, - { - "id": 726, - "paths": [ - "M726 128q34 0 59 26t25 60v682l-298-128-298 128v-682q0-34 25-60t59-26h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark", - "turned_in" - ], - "grid": 24 - }, - { - "id": 727, - "paths": [ - "M726 768v-554h-428v554l214-94zM726 128q34 0 59 26t25 60v682l-298-128-298 128v-682q0-34 25-60t59-26h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmark_outline", - "turned_in_not" - ], - "grid": 24 - }, - { - "id": 728, - "paths": [ - "M598 512v-86h-172v86h172zM598 682v-84h-172v84h172zM854 342v84h-90q4 28 4 44v42h86v86h-86v42q0 14-4 42h90v86h-120q-34 58-93 93t-129 35-129-35-93-93h-120v-86h90q-4-28-4-42v-42h-86v-86h86v-42q0-16 4-44h-90v-84h120q30-50 78-84l-70-70 60-60 94 92q30-6 60-6t60 6l94-92 60 60-70 70q50 34 78 84h120z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bug_report" - ], - "grid": 24 - }, - { - "id": 729, - "paths": [ - "M968 810q14 8 13 27t-17 33l-98 98q-30 30-60 0l-388-388q-72 30-153 13t-141-77q-64-64-80-152t24-164l188 184 128-128-184-184q76-36 164-22t152 78q60 60 77 141t-13 153z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "build" - ], - "grid": 24 - }, - { - "id": 730, - "paths": [ - "M256 512h128l-170 170-172-170h128q0-140 101-241t241-101q100 0 182 54l-62 62q-54-30-120-30-106 0-181 75t-75 181zM810 342l172 170h-128q0 140-101 241t-241 101q-100 0-182-54l62-62q56 30 120 30 106 0 181-75t75-181h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cached" - ], - "grid": 24 - }, - { - "id": 731, - "paths": [ - "M512 170l426 684h-852zM512 332l-272 436h544z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "change_history" - ], - "grid": 24 - }, - { - "id": 732, - "paths": [ - "M426 726l384-384-60-62-324 324-152-152-60 60zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "check_circle" - ], - "grid": 24 - }, - { - "id": 733, - "paths": [ - "M896 810v-554h-384v554h384zM896 170q34 0 60 26t26 60v554q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-554q0-34 26-60t60-26h768zM554 618h300v64h-300v-64zM554 406h300v64h-300v-64zM554 512h300v64h-300v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "chrome_reader_mode" - ], - "grid": 24 - }, - { - "id": 734, - "paths": [ - "M622 708l198-196-198-196 60-60 256 256-256 256zM402 708l-60 60-256-256 256-256 60 60-198 196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "code" - ], - "grid": 24 - }, - { - "id": 735, - "paths": [ - "M854 342v-86h-684v86h684zM854 768v-256h-684v256h684zM854 170q36 0 60 25t24 61v512q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-512q0-36 24-61t60-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "credit_card", - "payment" - ], - "grid": 24 - }, - { - "id": 736, - "paths": [ - "M554 128h342v256h-342v-256zM554 896v-426h342v426h-342zM128 896v-256h342v256h-342zM128 554v-426h342v426h-342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dashboard" - ], - "grid": 24 - }, - { - "id": 737, - "paths": [ - "M810 170v86h-596v-86h148l44-42h212l44 42h148zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "delete" - ], - "grid": 24 - }, - { - "id": 738, - "paths": [ - "M554 384h236l-236-234v234zM682 598v-86h-340v86h340zM682 768v-86h-340v86h340zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "description" - ], - "grid": 24 - }, - { - "id": 739, - "paths": [ - "M298 384q34 0 60-26t26-60-26-59-60-25-59 25-25 59 25 60 59 26zM854 128q18 0 30 12t12 30v256q0 18-12 31t-30 13h-684q-18 0-30-13t-12-31v-256q0-18 12-30t30-12h684zM298 810q34 0 60-25t26-59-26-60-60-26-59 26-25 60 25 59 59 25zM854 554q18 0 30 13t12 31v256q0 18-12 30t-30 12h-684q-18 0-30-12t-12-30v-256q0-18 12-31t30-13h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dns" - ], - "grid": 24 - }, - { - "id": 740, - "paths": [ - "M384 692l452-454 60 60-512 512-238-238 58-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "done" - ], - "grid": 24 - }, - { - "id": 741, - "paths": [ - "M18 572l60-60 238 238-60 60zM948 238l62 60-512 512-240-238 62-60 178 178zM768 298l-270 272-60-60 270-272z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "done_all" - ], - "grid": 24 - }, - { - "id": 742, - "paths": [ - "M810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-170h86v170h596v-596h-596v170h-86v-170q0-36 25-61t61-25h596zM430 666l110-112h-412v-84h412l-110-112 60-60 214 214-214 214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "exit_to_app" - ], - "grid": 24 - }, - { - "id": 743, - "paths": [ - "M606 606l162-350-350 162-162 350zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM512 466q20 0 33 13t13 33-13 33-33 13-33-13-13-33 13-33 33-13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "explore" - ], - "grid": 24 - }, - { - "id": 744, - "paths": [ - "M874 470q44 0 76 31t32 75-32 75-76 31h-64v172q0 34-25 59t-59 25h-162v-64q0-48-34-81t-82-33-82 33-34 81v64h-162q-34 0-59-25t-25-59v-162h64q48 0 81-34t33-82-33-82-81-34h-64v-162q0-34 25-59t59-25h172v-64q0-44 31-76t75-32 75 32 31 76v64h172q34 0 59 25t25 59v172h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "extension" - ], - "grid": 24 - }, - { - "id": 745, - "paths": [ - "M512 854q140 0 241-101t101-241q0-44-14-96-44 10-98 10-92 0-193-53t-153-127q-66 160-224 230-2 12-2 36 0 140 101 241t241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM640 502q22 0 38 15t16 37-16 38-38 16-38-16-16-38 16-37 38-15zM384 502q22 0 38 15t16 37-16 38-38 16-38-16-16-38 16-37 38-15z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face" - ], - "grid": 24 - }, - { - "id": 746, - "paths": [ - "M512 910l-62-56q-106-96-154-142t-107-114-81-123-22-113q0-98 67-166t167-68q116 0 192 90 76-90 192-90 100 0 167 68t67 166q0 78-52 162t-113 146-199 186z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "favorite" - ], - "grid": 24 - }, - { - "id": 747, - "paths": [ - "M516 792q96-86 142-130t100-104 75-106 21-90q0-64-43-106t-107-42q-50 0-93 28t-59 72h-80q-16-44-59-72t-93-28q-64 0-107 42t-43 106q0 44 21 90t75 106 100 104 142 130l4 4zM704 128q100 0 167 68t67 166q0 58-22 113t-81 123-107 114-154 142l-62 56-62-54q-138-124-199-186t-113-146-52-162q0-98 67-166t167-68q116 0 192 90 76-90 192-90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "favorite_outline" - ], - "grid": 24 - }, - { - "id": 748, - "paths": [ - "M384 554q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM854 836l-164-164q36-56 36-118 0-88-63-150t-151-62-151 62-63 150 63 151 151 63q62 0 118-36l188 190q-22 16-50 16h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342l256 256v494z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "find_in_page" - ], - "grid": 24 - }, - { - "id": 749, - "paths": [ - "M710 646l206 208-62 62-208-206q-80 58-176 58h-2q-50 0-112-26t-98-62l-88 88v-256h256l-108 108q62 62 152 62 72 0 132-50t76-120h86q-10 74-54 134zM470 256q-72 0-134 50t-76 120h-86q16-108 100-182t196-74q50 0 112 26t98 62l88-88v256h-256l108-108q-62-62-150-62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "find_replace" - ], - "grid": 24 - }, - { - "id": 750, - "paths": [ - "M640 726v-86h86v86h-86zM640 214v-86h86v86h-86zM214 298v512h512v86h-512q-36 0-61-25t-25-61v-512h86zM810 726v-86h86q0 34-26 60t-60 26zM810 384v-86h86v86h-86zM810 554v-84h86v84h-86zM384 726q-36 0-61-25t-25-61h86v86zM554 128v86h-84v-86h84zM810 128q34 0 60 26t26 60h-86v-86zM554 640v86h-84v-86h84zM384 128v86h-86q0-36 25-61t61-25zM384 470v84h-86v-84h86zM384 298v86h-86v-86h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flip_to_back" - ], - "grid": 24 - }, - { - "id": 751, - "paths": [ - "M298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM810 640v-426h-426v426h426zM810 128q34 0 60 26t26 60v426q0 34-26 60t-60 26h-426q-36 0-61-25t-25-61v-426q0-36 25-61t61-25h426zM640 896v-86h86v86h-86zM128 384v-86h86v86h-86zM214 896q-36 0-61-25t-25-61h86v86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flip_to_front" - ], - "grid": 24 - }, - { - "id": 752, - "paths": [ - "M682 746q44 0 76-31t32-75-32-75-76-31-75 31-31 75 31 75 75 31zM406 342q0 44 31 75t75 31 75-31 31-75-31-76-75-32-75 32-31 76zM342 746q44 0 75-31t31-75-31-75-75-31-76 31-32 75 32 75 76 31zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "group_work" - ], - "grid": 24 - }, - { - "id": 753, - "paths": [ - "M642 480q40-40 40-96 0-70-50-120t-120-50-120 50-50 120h84q0-34 26-60t60-26 60 26 26 60-26 60l-52 54q-50 54-50 120v22h84q0-66 50-120zM554 810v-84h-84v84h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "help" - ], - "grid": 24 - }, - { - "id": 754, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM622 342l60 60-110 110 110 110-60 60-110-110-110 110-60-60 110-110-110-110 60-60 110 110z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "highlight_remove" - ], - "grid": 24 - }, - { - "id": 755, - "paths": [ - "M512 342h64v180l150 90-32 52-182-110v-212zM554 128q158 0 271 112t113 272-113 272-271 112q-66 0-145-33t-125-79l60-62q88 88 210 88 124 0 212-87t88-211-88-211-212-87-211 87-87 211h128l-172 172-4-6-166-166h128q0-160 113-272t271-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "history", - "restore" - ], - "grid": 24 - }, - { - "id": 756, - "paths": [ - "M426 854h-212v-342h-128l426-384 426 384h-128v342h-212v-256h-172v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "home" - ], - "grid": 24 - }, - { - "id": 757, - "paths": [ - "M512 490l170-170v-150h-340v150zM682 704l-170-170-170 170v150h340v-150zM256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hourglass_empty" - ], - "grid": 24 - }, - { - "id": 758, - "paths": [ - "M256 86h512v256l-170 170 170 170v256h-512v-256l170-170-170-170v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hourglass_full" - ], - "grid": 24 - }, - { - "id": 759, - "paths": [ - "M644 342v-86q0-54-39-93t-93-39-93 39-39 93v86h264zM512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "https", - "lock" - ], - "grid": 24 - }, - { - "id": 760, - "paths": [ - "M554 384v-86h-84v86h84zM554 726v-256h-84v256h84zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "info" - ], - "grid": 24 - }, - { - "id": 761, - "paths": [ - "M470 384v-86h84v86h-84zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 726v-256h84v256h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "info_outline" - ], - "grid": 24 - }, - { - "id": 762, - "paths": [ - "M470 682v-128h-428v-84h428v-128l170 170zM896 128q36 0 61 25t25 61v598q0 34-26 59t-60 25h-768q-34 0-60-25t-26-59v-172h86v172h768v-600h-768v172h-86v-170q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "input" - ], - "grid": 24 - }, - { - "id": 763, - "paths": [ - "M512 836v-618l-180 180q-76 76-76 182 0 104 76 180t180 76zM754 338q100 100 100 241t-100 241-242 100q-58 0-129-29t-113-71q-100-100-100-241t100-241l242-242z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "invert_colors_on" - ], - "grid": 24 - }, - { - "id": 764, - "paths": [ - "M752 250l186 262-186 262q-26 36-70 36h-468q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h468q44 0 70 36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "label" - ], - "grid": 24 - }, - { - "id": 765, - "paths": [ - "M682 726l152-214-152-214h-468v428h468zM752 250l186 262-186 262q-26 36-70 36h-468q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h468q44 0 70 36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "label_outline" - ], - "grid": 24 - }, - { - "id": 766, - "paths": [ - "M698 598h144q12-56 12-86t-12-86h-144q6 42 6 86t-6 86zM622 834q50-16 104-61t82-91h-126q-20 80-60 152zM612 598q6-42 6-86t-6-86h-200q-6 42-6 86t6 86h200zM512 852q56-82 82-170h-164q26 88 82 170zM342 342q24-86 60-152-50 16-105 61t-81 91h126zM216 682q26 46 81 91t105 61q-40-72-60-152h-126zM182 598h144q-6-42-6-86t6-86h-144q-12 56-12 86t12 86zM512 172q-56 82-82 170h164q-26-88-82-170zM808 342q-28-46-82-91t-104-61q36 66 60 152h126zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "language" - ], - "grid": 24 - }, - { - "id": 767, - "paths": [ - "M598 128h298v298h-86v-152l-418 418-60-60 418-418h-152v-86zM810 810v-298h86v298q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h298v86h-298v596h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "launch", - "open_in_new" - ], - "grid": 24 - }, - { - "id": 768, - "paths": [ - "M298 298h598v86h-598v-86zM298 726v-86h598v86h-598zM298 554v-84h598v84h-598zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "list" - ], - "grid": 24 - }, - { - "id": 769, - "paths": [ - "M768 854v-428h-512v428h512zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h388v-86q0-54-39-93t-93-39-93 39-39 93h-82q0-88 63-151t151-63 151 63 63 151v86h42zM512 726q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock_open" - ], - "grid": 24 - }, - { - "id": 770, - "paths": [ - "M768 854v-428h-512v428h512zM380 256v86h264v-86q0-54-39-93t-93-39-93 39-39 93zM768 342q34 0 60 25t26 59v428q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-428q0-34 26-59t60-25h42v-86q0-88 63-151t151-63 151 63 63 151v86h42zM512 726q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock_outline" - ], - "grid": 24 - }, - { - "id": 771, - "paths": [ - "M736 652q32-32 32-76t-31-75-75-31q-46 0-76 30l-32 32-30-32q-30-30-76-30-44 0-75 31t-31 75q0 46 30 76l182 182zM234 298q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM914 494q24 24 24 60t-24 60l-300 300q-24 24-60 24t-60-24l-384-384q-24-24-24-60v-300q0-34 25-59t59-25h300q36 0 60 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "loyalty" - ], - "grid": 24 - }, - { - "id": 772, - "paths": [ - "M854 256q34 0 59 26t25 60v512q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-512q0-34 25-60t59-26h86v-256h342v170h-256v342h84v-256h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "markunread_mailbox" - ], - "grid": 24 - }, - { - "id": 773, - "paths": [ - "M554 384h236l-236-234v234zM682 682v-84h-128v-128h-84v128h-128v84h128v128h84v-128h128zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "note_add" - ], - "grid": 24 - }, - { - "id": 774, - "paths": [ - "M512 426l170 172h-128v256h-84v-256h-128zM810 170q36 0 61 25t25 61v512q0 34-26 60t-60 26h-170v-86h170v-426h-596v426h170v86h-170q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "open_in_browser" - ], - "grid": 24 - }, - { - "id": 775, - "paths": [ - "M598 640v128h128l-214 214-214-214h128v-128h172zM982 512l-214 214v-128h-128v-172h128v-128zM384 426v172h-128v128l-214-214 214-214v128h128zM426 384v-128h-128l214-214 214 214h-128v128h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "open_with" - ], - "grid": 24 - }, - { - "id": 776, - "paths": [ - "M716 776l60-60-124-124q30-50 30-102 0-80-56-136t-136-56-136 56-56 136 56 136 136 56q52 0 102-30zM854 170q34 0 59 26t25 60v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h684zM490 384q44 0 76 31t32 75-32 76-76 32-75-32-31-76 31-75 75-31z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pageview" - ], - "grid": 24 - }, - { - "id": 777, - "paths": [ - "M598 554v-170q0-34-26-60t-60-26-60 26-26 60v170q0 34 26 60t60 26 60-26 26-60zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-300v-90q90-16 152-87t62-165h-86q0 70-50 121t-120 51-120-51-50-121h-86q0 94 62 165t152 87v90h-300q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136l78-86h256l78 86h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_camera_mic" - ], - "grid": 24 - }, - { - "id": 778, - "paths": [ - "M768 768v-42q0-58-88-95t-168-37-168 37-88 95v42h512zM512 256q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h42v-86h86v86h340v-86h86v86h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_contact_calendar" - ], - "grid": 24 - }, - { - "id": 779, - "paths": [ - "M810 874q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM968 832l46 34q4 4 4 10l-2 2v2l-42 74q-6 10-14 6l-52-22q-6 6-36 20l-8 58q0 8-12 8h-84q-12 0-12-8l-8-58q-16-8-36-20l-52 22q-10 4-14-6l-42-74v-2l-2-2q0-6 4-10l46-34q0-4-1-12t-1-10 1-10 1-10l-46-36q-6-6-2-14l42-74q4-8 14-4l52 22q24-16 36-22l8-56q0-8 12-8h84q12 0 12 8l8 56q8 4 36 22l52-22q10-4 14 4l42 74v2q2 2 2 4 0 4-4 8l-46 36q2 6 2 20 0 4-1 12t-1 10zM810 490q-132 0-226 94t-94 226q0 16 4 44h-494l854-854-2 494q-28-4-42-4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_data_setting" - ], - "grid": 24 - }, - { - "id": 780, - "paths": [ - "M726 810v-596h-428v596h428zM726 44q34 0 59 25t25 59v768q0 34-25 60t-59 26h-428q-34 0-59-26t-25-60v-768q0-34 25-60t59-26zM554 470v256h-84v-256h84zM554 298v86h-84v-86h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_device_information" - ], - "grid": 24 - }, - { - "id": 781, - "paths": [ - "M298 640h598l-150-192-106 128-150-192zM938 170q34 0 60 26t26 60v426q0 34-26 60t-60 26h-682q-34 0-60-26t-26-60l2-512q0-34 25-59t59-25h256l86 84h340zM86 256v598h768v84h-768q-34 0-60-25t-26-59v-598h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_media" - ], - "grid": 24 - }, - { - "id": 782, - "paths": [ - "M512 128h384v298h-256l-128 128v-426zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_phone_msg" - ], - "grid": 24 - }, - { - "id": 783, - "paths": [ - "M470 342h84v-86h-84v86zM554 682v-256h-84v256h84zM512 128q272 0 512 182l-512 628-512-630q236-180 512-180z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "perm_scan_wifi" - ], - "grid": 24 - }, - { - "id": 784, - "paths": [ - "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM810 298v256h-340v-256h340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "picture_in_picture" - ], - "grid": 24 - }, - { - "id": 785, - "paths": [ - "M810 170l192 342-192 342h-170l192-342-112-198-336 540h-170l-192-342 192-342h170l-192 342 112 198 336-540h170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "polymer" - ], - "grid": 24 - }, - { - "id": 786, - "paths": [ - "M760 220q136 116 136 292 0 160-112 272t-272 112-272-112-112-272q0-72 40-158t96-134l60 60q-46 38-78 106t-32 126q0 124 87 211t211 87 211-87 87-211q0-58-32-126t-78-104zM554 128v426h-84v-426h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "power_settings_new" - ], - "grid": 24 - }, - { - "id": 787, - "paths": [ - "M128 938v-852l64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64 64 64 64-64v852l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64zM768 384v-86h-512v86h512zM768 554v-84h-512v84h512zM768 726v-86h-512v86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "receipt" - ], - "grid": 24 - }, - { - "id": 788, - "paths": [ - "M854 598v-256h-218l90 120-70 50q-128-174-144-196-16 22-144 196l-70-50 90-120h-218v256h684zM854 810v-84h-684v84h684zM384 170q-18 0-30 13t-12 31 12 30 30 12 30-12 12-30-12-31-30-13zM640 170q-18 0-30 13t-12 31 12 30 30 12 30-12 12-30-12-31-30-13zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h94q-8-28-8-42 0-52 38-90t90-38q66 0 106 56l22 30 22-30q14-24 46-40t60-16q52 0 90 38t38 90q0 14-8 42h94z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "redeem", - "card_giftcard" - ], - "grid": 24 - }, - { - "id": 789, - "paths": [ - "M406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search" - ], - "grid": 24 - }, - { - "id": 790, - "paths": [ - "M512 662q62 0 106-44t44-106-44-106-106-44-106 44-44 106 44 106 106 44zM830 554l90 70q14 10 4 28l-86 148q-8 14-26 8l-106-42q-42 30-72 42l-16 112q-4 18-20 18h-172q-16 0-20-18l-16-112q-38-16-72-42l-106 42q-18 6-26-8l-86-148q-10-18 4-28l90-70q-2-14-2-42t2-42l-90-70q-14-10-4-28l86-148q8-14 26-8l106 42q42-30 72-42l16-112q4-18 20-18h172q16 0 20 18l16 112q38 16 72 42l106-42q18-6 26 8l86 148q10 18-4 28l-90 70q2 14 2 42t-2 42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings" - ], - "grid": 24 - }, - { - "id": 791, - "paths": [ - "M736 512q0-20-2-30l64-48q10-8 2-20l-60-104q-6-10-18-6l-74 30q-26-20-50-30l-12-78q-4-12-14-12h-120q-12 0-14 12l-12 80q-32 14-50 28l-74-30q-10-4-18 8l-60 102q-2 2-2 8 0 10 4 12l64 48q-2 10-2 30t2 30l-64 48q-4 2-4 12 0 6 2 8l60 104q6 10 18 6l74-30q26 20 50 30l12 78q4 12 14 12h120q12 0 14-12l12-80q32-14 50-28l74 30q10 4 18-8l60-102q8-12-2-20l-64-48q2-10 2-30zM810 128q36 0 61 25t25 61v596q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596zM512 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_applications" - ], - "grid": 24 - }, - { - "id": 792, - "paths": [ - "M512 128q160 0 272 112t112 272-112 272-272 112q-54 0-122-23t-112-57l60-60q76 54 174 54 124 0 211-87t87-211-87-211-211-87-211 87-87 211h128l-172 170-170-170h128q0-160 112-272t272-112zM598 512q0 34-26 60t-60 26-60-26-26-60 26-60 60-26 60 26 26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_backup_restore" - ], - "grid": 24 - }, - { - "id": 793, - "paths": [ - "M634 610l-80-80v160zM554 164v160l80-80zM756 244l-184 182 184 184-244 244h-42v-324l-196 196-60-60 238-240-238-238 60-60 196 196v-324h42zM640 1024v-86h86v86h-86zM298 1024v-86h86v86h-86zM470 1024v-86h84v86h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_bluetooth" - ], - "grid": 24 - }, - { - "id": 794, - "paths": [ - "M682 682v-512h-340v512h340zM682 0q34 0 60 26t26 60v682q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60v-682q0-34 26-60t60-26h340zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_cell" - ], - "grid": 24 - }, - { - "id": 795, - "paths": [ - "M512 384v256q52 0 90-38t38-90-38-90-90-38zM342 682v-106l-64-64 64-64v-106h106l64-64 64 64h106v106l64 64-64 64v106h-106l-64 64-64-64h-106zM896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_display" - ], - "grid": 24 - }, - { - "id": 796, - "paths": [ - "M758 234l232 278-232 278-66-54 186-224-186-224zM470 554v-84h84v84h-84zM726 470v84h-86v-84h86zM298 554v-84h86v84h-86zM332 288l-186 224 186 224-66 54-232-278 232-278z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_ethernet" - ], - "grid": 24 - }, - { - "id": 797, - "paths": [ - "M512 42q194 0 332 138t138 332h-86q0-160-112-272t-272-112-272 112-112 272h-86q0-194 138-332t332-138zM554 610v140l146 146-60 60-128-128-128 128-60-60 146-146v-140q-64-26-64-98 0-44 31-75t75-31 75 31 31 75q0 72-64 98zM512 214q124 0 211 87t87 211h-84q0-88-63-151t-151-63-151 63-63 151h-84q0-124 87-211t211-87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_input_antenna" - ], - "grid": 24 - }, - { - "id": 798, - "paths": [ - "M726 682v-84h256v84q0 42-24 74t-62 46v180h-86v-180q-84-30-84-120zM554 86v170h86v256h-256v-256h86v-170q0-18 12-31t30-13 30 13 12 31zM896 256h86v256h-256v-256h84v-170q0-18 13-31t31-13 30 13 12 31v170zM42 682v-84h256v84q0 90-84 120v180h-86v-180q-38-14-62-46t-24-74zM384 682v-84h256v84q0 42-24 74t-62 46v180h-84v-180q-38-14-62-46t-24-74zM214 86v170h84v256h-256v-256h86v-170q0-18 12-31t30-13 31 13 13 31z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_input_component", - "settings_input_composite" - ], - "grid": 24 - }, - { - "id": 799, - "paths": [ - "M342 170v128h84v-84h44v84h84v-84h44v84h84v-128h-340zM768 298h42v256l-128 256v128h-340v-128l-128-256v-256h42v-128q0-34 26-59t60-25h340q34 0 60 25t26 59v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_input_hdmi" - ], - "grid": 24 - }, - { - "id": 800, - "paths": [ - "M662 640q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM746 426q26 0 45 19t19 45-19 45-45 19-45-19-19-45 19-45 45-19zM512 896q160 0 272-112t112-272-112-272-272-112-272 112-112 272 112 272 272 112zM512 42q194 0 332 138t138 332-138 332-332 138-332-138-138-332 138-332 332-138zM362 640q26 0 45 18t19 46-19 46-45 18-45-18-19-46 19-46 45-18zM640 278q0 26-18 45t-46 19h-128q-28 0-46-19t-18-45 18-45 46-19h128q28 0 46 19t18 45zM342 490q0 26-19 45t-45 19-45-19-19-45 19-45 45-19 45 19 19 45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_input_svideo" - ], - "grid": 24 - }, - { - "id": 801, - "paths": [ - "M896 812v-600h-768v600h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768zM598 682l-86 108-86-108h172zM256 426v172l-106-86zM768 426l106 86-106 86v-172zM512 234l86 108h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_overscan" - ], - "grid": 24 - }, - { - "id": 802, - "paths": [ - "M810 384h86v86h-86v-86zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 8 26-10 44l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24zM726 384v86h-86v-86h86zM554 384v86h-84v-86h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_phone" - ], - "grid": 24 - }, - { - "id": 803, - "paths": [ - "M640 1024v-86h86v86h-86zM706 190q148 104 148 280 0 140-100 240t-242 100-242-100-100-240q0-74 43-156t105-124l60 60q-122 76-122 220 0 106 75 181t181 75 181-75 75-181q0-60-36-124t-88-94zM554 86v426h-84v-426h84zM470 1024v-86h84v86h-84zM298 1024v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_power" - ], - "grid": 24 - }, - { - "id": 804, - "paths": [ - "M512 0q198 0 332 138l-60 60q-112-112-272-112t-272 112l-60-60q138-138 332-138zM300 258q88-88 212-88t212 88l-60 60q-26-26-71-44t-81-18-81 18-71 44zM512 640q34 0 60-26t26-60-26-59-60-25-60 25-26 59 26 60 60 26zM640 384q18 0 30 12t12 30v512q0 18-12 31t-30 13h-256q-18 0-30-13t-12-31v-512q0-18 12-30t30-12h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_remote" - ], - "grid": 24 - }, - { - "id": 805, - "paths": [ - "M810 426q0 108-75 190t-181 98v140h-84v-140q-106-16-181-98t-75-190h72q0 94 67 156t159 62 159-62 67-156h72zM640 1024v-86h86v86h-86zM470 1024v-86h84v86h-84zM512 554q-52 0-90-38t-38-90v-256q0-52 38-90t90-38 90 38 38 90v256q0 52-38 90t-90 38zM298 1024v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "settings_voice" - ], - "grid": 24 - }, - { - "id": 806, - "paths": [ - "M384 768l320-214-320-170v384zM426 170v86h172v-86h-172zM682 256h256v554q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-554h256v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shop" - ], - "grid": 24 - }, - { - "id": 807, - "paths": [ - "M512 640l234-170-234-128v298zM512 128v86h170v-86h-170zM768 214h214v468q0 36-25 61t-61 25h-598q-36 0-60-25t-24-61v-468h212v-86q0-36 25-61t61-25h170q36 0 61 25t25 61v86zM128 384v470h682q0 36-24 60t-60 24h-598q-36 0-61-24t-25-60v-470h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shop_two" - ], - "grid": 24 - }, - { - "id": 808, - "paths": [ - "M512 726q34 0 60-26t26-60-26-60-60-26-60 26-26 60 26 60 60 26zM384 384h256l-128-188zM734 384h204q18 0 31 12t13 30q-20 80-60 225t-50 183q-18 62-82 62h-556q-64 0-82-62l-108-396q-2-4-2-12 0-18 13-30t31-12h204l186-280q12-18 36-18 26 0 36 18z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shopping_basket" - ], - "grid": 24 - }, - { - "id": 809, - "paths": [ - "M768 342v-86h-342v86h342zM768 470v-86h-342v86h342zM640 598v-86h-214v86h214zM342 342v-86h-86v86h86zM342 470v-86h-86v86h86zM342 598v-86h-86v86h86zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-598l-170 170v-768q0-34 25-59t59-25h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speaker_notes" - ], - "grid": 24 - }, - { - "id": 810, - "paths": [ - "M922 494l60 60-406 406-216-218 60-60 156 158zM274 470h176l-88-236zM532 682l-50-128h-240l-48 128h-90l218-554h80l218 554h-88z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "spellcheck" - ], - "grid": 24 - }, - { - "id": 811, - "paths": [ - "M692 768l-48-206 160-138-210-18-82-192-82 194-210 16 160 138-48 206 180-108zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stars" - ], - "grid": 24 - }, - { - "id": 812, - "paths": [ - "M170 214h684v84h-684v-84zM170 640v-86h684v86h-684zM854 384v86h-684v-86h684zM598 726v84h-428v-84h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subject" - ], - "grid": 24 - }, - { - "id": 813, - "paths": [ - "M384 554q44 0 102 12-102 56-102 148v96h-298v-106q0-46 55-82t121-52 122-16zM704 598q74 0 154 32t80 84v96h-468v-96q0-52 80-84t154-32zM384 470q-52 0-90-38t-38-90 38-90 90-38 90 38 38 90-38 90-90 38zM704 512q-44 0-75-31t-31-75 31-76 75-32 75 32 31 76-31 75-75 31z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "supervisor_account" - ], - "grid": 24 - }, - { - "id": 814, - "paths": [ - "M896 384l-170 170v-128h-300v-84h300v-128zM298 470v128h300v84h-300v128l-170-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swap_horiz" - ], - "grid": 24 - }, - { - "id": 815, - "paths": [ - "M384 128l170 170h-128v300h-84v-300h-128zM682 726h128l-170 170-170-170h128v-300h84v300z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swap_vert" - ], - "grid": 24 - }, - { - "id": 816, - "paths": [ - "M746 640h-106v-170h-86v170h-106l150 150zM278 384h106v170h86v-170h106l-150-150zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swap_vertical_circle" - ], - "grid": 24 - }, - { - "id": 817, - "paths": [ - "M896 150q34 0 60 25t26 59v598q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h256v84h-256v598h768v-598h-256v-84h256zM512 704l-170-170h128v-384h84v384h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "system_update_tv" - ], - "grid": 24 - }, - { - "id": 818, - "paths": [ - "M896 810v-426h-342v-170h-426v596h768zM896 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tab" - ], - "grid": 24 - }, - { - "id": 819, - "paths": [ - "M726 896v-86h84v86h-84zM554 896v-86h86v86h-86zM896 554v-84h86v84h-86zM896 896v-86h86q0 34-26 60t-60 26zM214 214v-86h84v86h-84zM214 896v-86h84v86h-84zM384 214v-86h86v86h-86zM896 726v-86h86v86h-86zM896 128q34 0 60 26t26 60v170h-428v-256h342zM128 896q-34 0-60-26t-26-60h86v86zM42 726v-86h86v86h-86zM384 896v-86h86v86h-86zM42 214q0-34 26-60t60-26v86h-86zM42 554v-84h86v84h-86zM42 384v-86h86v86h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tab_unselected" - ], - "grid": 24 - }, - { - "id": 820, - "paths": [ - "M810 128h172v512h-172v-512zM640 128q34 0 60 26t26 60v426q0 34-26 60l-280 282-46-46q-18-18-18-44v-14l42-196h-270q-34 0-60-25t-26-59v-86q0-16 6-32l130-300q20-52 78-52h384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_down" - ], - "grid": 24 - }, - { - "id": 821, - "paths": [ - "M982 426v86q0 16-6 32l-130 300q-20 52-78 52h-384q-34 0-60-26t-26-60v-426q0-34 26-60l280-282 46 46q18 18 18 44v14l-42 196h270q34 0 60 25t26 59zM42 896v-512h172v512h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_up" - ], - "grid": 24 - }, - { - "id": 822, - "paths": [ - "M960 426q28 0 46 19t18 45v278q0 28-18 46l-212 210-34-34q-14-14-14-34 6-28 17-80t13-66h-222q-18 0-30-12t-12-30v-54q0-6 4-22l98-226q18-40 58-40h288zM512 256v54q0 6-4 22l-98 226q-18 40-58 40h-288q-28 0-46-19t-18-45v-278q0-28 18-46l212-210 34 34q14 14 14 34-6 28-17 80t-13 66h222q18 0 30 12t12 30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumbs_up_down" - ], - "grid": 24 - }, - { - "id": 823, - "paths": [ - "M810 554v-84h86v84h-86zM810 298h86v86h-86v-86zM810 726v-86h86v86h-86zM128 726v-86h598v86h-598zM128 554v-84h598v84h-598zM128 384v-86h598v86h-598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "toc" - ], - "grid": 24 - }, - { - "id": 824, - "paths": [ - "M298 426h214v214h-214v-214zM810 810v-468h-596v468h596zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-34 25-60t61-26h42v-86h86v86h340v-86h86v86h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "today" - ], - "grid": 24 - }, - { - "id": 825, - "paths": [ - "M128 512q0 74 50 145t120 97v88q-112-28-184-120t-72-210 72-210 184-120v88q-70 26-120 97t-50 145zM640 768q106 0 181-75t75-181-75-181-181-75-181 75-75 181 75 181 181 75zM640 170q140 0 241 101t101 241-101 241-241 101-241-101-101-241 101-241 241-101z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "toll" - ], - "grid": 24 - }, - { - "id": 826, - "paths": [ - "M814 210q124 124 124 302 0 176-125 301t-301 125-301-125-125-301 125-301 301-125h42v352q44 24 44 74 0 34-26 60t-60 26-60-26-26-60q0-50 44-74v-90q-56 16-92 60t-36 104q0 70 50 120t120 50 120-50 50-120q0-66-50-120l60-60q76 76 76 180 0 106-75 181t-181 75-181-75-75-181q0-94 61-165t153-87v-86q-126 16-213 112t-87 226q0 140 101 241t241 101 241-101 101-241q0-58-29-129t-71-113z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "track_changes" - ], - "grid": 24 - }, - { - "id": 827, - "paths": [ - "M678 726h138l-70-186zM790 426l192 512h-86l-48-128h-202l-48 128h-86l192-512h86zM550 642l-34 88-132-132-214 212-60-60 218-214q-80-88-128-194h86q42 80 98 142 92-102 136-228h-478v-86h300v-84h84v84h300v86h-126q-20 64-66 145t-92 133l-2 2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "translate" - ], - "grid": 24 - }, - { - "id": 828, - "paths": [ - "M682 768l98-98-208-208-170 170-316-316 60-60 256 256 170-170 268 268 98-98v256h-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trending_down" - ], - "grid": 24 - }, - { - "id": 829, - "paths": [ - "M938 512l-170 170v-128h-640v-84h640v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trending_neutral" - ], - "grid": 24 - }, - { - "id": 830, - "paths": [ - "M682 256h256v256l-98-98-268 268-170-170-256 256-60-60 316-316 170 170 208-208z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "trending_up" - ], - "grid": 24 - }, - { - "id": 831, - "paths": [ - "M426 726l342-342-60-60-282 280-110-110-60 60zM512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "verified_user" - ], - "grid": 24 - }, - { - "id": 832, - "paths": [ - "M854 128q18 0 30 12t12 30v256q0 18-12 31t-30 13h-726q-18 0-30-13t-12-31v-256q0-18 12-30t30-12h726zM854 554q18 0 30 13t12 31v256q0 18-12 30t-30 12h-726q-18 0-30-12t-12-30v-256q0-18 12-31t30-13h726z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_agenda" - ], - "grid": 24 - }, - { - "id": 833, - "paths": [ - "M342 768v-554h384v554h-384zM768 214h128v554h-128v-554zM170 768v-554h128v554h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_array" - ], - "grid": 24 - }, - { - "id": 834, - "paths": [ - "M768 256h170v470h-170v-470zM86 726v-470h170v470h-170zM298 810v-640h428v640h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_carousel" - ], - "grid": 24 - }, - { - "id": 835, - "paths": [ - "M682 214h214v554h-214v-554zM170 768v-554h214v554h-214zM426 768v-554h214v554h-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_column" - ], - "grid": 24 - }, - { - "id": 836, - "paths": [ - "M86 128h810v128h-810v-128zM854 342q18 0 30 12t12 30v256q0 18-12 30t-30 12h-726q-18 0-30-12t-12-30v-256q0-18 12-30t30-12h726zM86 896v-128h810v128h-810z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_day" - ], - "grid": 24 - }, - { - "id": 837, - "paths": [ - "M170 214h684v84h-684v-84zM170 470v-86h684v86h-684zM170 810v-84h684v84h-684zM170 640v-86h684v86h-684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_headline" - ], - "grid": 24 - }, - { - "id": 838, - "paths": [ - "M384 214h512v170h-512v-170zM384 810v-170h512v170h-512zM384 598v-172h512v172h-512zM170 384v-170h172v170h-172zM170 810v-170h172v170h-172zM170 598v-172h172v172h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_list" - ], - "grid": 24 - }, - { - "id": 839, - "paths": [ - "M682 214h214v256h-214v-256zM426 470v-256h214v256h-214zM682 768v-256h214v256h-214zM426 768v-256h214v256h-214zM170 768v-256h214v256h-214zM170 470v-256h214v256h-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_module" - ], - "grid": 24 - }, - { - "id": 840, - "paths": [ - "M426 214h470v256h-470v-256zM682 768v-256h214v256h-214zM170 768v-554h214v554h-214zM426 768v-256h214v256h-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_quilt" - ], - "grid": 24 - }, - { - "id": 841, - "paths": [ - "M170 214h726v256h-726v-256zM170 768v-256h726v256h-726z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_stream" - ], - "grid": 24 - }, - { - "id": 842, - "paths": [ - "M554 214q18 0 31 12t13 30v512q0 18-13 30t-31 12h-128q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h128zM854 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-128q-18 0-31-12t-13-30v-512q0-18 13-30t31-12h128zM256 214q18 0 30 12t12 30v512q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-512q0-18 12-30t30-12h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_week" - ], - "grid": 24 - }, - { - "id": 843, - "paths": [ - "M506 384h6q52 0 90 38t38 90v8zM322 418q-24 48-24 94 0 88 63 151t151 63q46 0 94-24l-66-66q-16 4-28 4-52 0-90-38t-38-90q0-12 4-28zM86 182l54-54 756 756-54 54q-10-10-63-62t-81-80q-86 36-186 36-158 0-286-88t-184-232q22-52 69-115t91-97q-24-24-67-68t-49-50zM512 298q-40 0-78 16l-92-92q78-30 170-30 158 0 285 88t183 232q-48 118-146 202l-124-124q16-38 16-78 0-88-63-151t-151-63z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "visibility_off" - ], - "grid": 24 - }, - { - "id": 844, - "paths": [ - "M854 426v-256h-684v256h684zM854 640v-86h-684v86h684zM854 86q36 0 60 24t24 60v470q0 36-24 61t-60 25h-172v212l-170-84-170 84v-212h-172q-36 0-60-25t-24-61v-470q0-36 24-60t60-24h684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "card_membership" - ], - "grid": 24 - }, - { - "id": 845, - "paths": [ - "M854 598v-256h-128v84h-86v-84h-256v84h-86v-84h-128v256h684zM854 810v-84h-684v84h684zM384 170v86h256v-86h-256zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h128v-86q0-36 25-60t61-24h256q36 0 61 24t25 60v86h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "card_travel" - ], - "grid": 24 - }, - { - "id": 846, - "paths": [ - "M598 256v-86h-172v86h172zM854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h172v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86h172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "work" - ], - "grid": 24 - }, - { - "id": 847, - "paths": [ - "M726 598l212 212-62 64-214-214v-32l-12-12q-32 26-85 46t-95 20q-80 0-142-38l64-62q40 16 78 16 80 0 136-56t56-136-56-136-136-56-136 56-56 136h148l-176 170-164-170h106q0-114 82-196t196-82q116 0 197 81t81 197q0 42-20 95t-48 85l12 12h34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "youtube_searched_for" - ], - "grid": 24 - }, - { - "id": 848, - "paths": [ - "M512 214l284 426h-568zM214 726h596v84h-596v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eject" - ], - "grid": 24 - }, - { - "id": 849, - "paths": [ - "M512 726l-54-118-116-54 116-52 54-118 54 118 116 52-116 54zM512 768q88 0 151-63t63-151-63-150-151-62-151 62-63 150 63 151 151 63zM384 128h256l78 86h136q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "camera_enhance" - ], - "grid": 24 - }, - { - "id": 850, - "paths": [ - "M512 256q70 0 120 50t50 120q0 54-64 111t-64 103h-84q0-46 20-79t44-48 44-37 20-50q0-34-26-59t-60-25-60 25-26 59h-84q0-70 50-120t120-50zM512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM470 768v-86h84v86h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "help_outline" - ], - "grid": 24 - }, - { - "id": 851, - "paths": [ - "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-84h768v84h-768zM128 640v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "reorder" - ], - "grid": 24 - }, - { - "id": 852, - "paths": [ - "M512 426h-86v86h-42v-86h-86v-42h86v-86h42v86h86v42zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "zoom_in" - ], - "grid": 24 - }, - { - "id": 853, - "paths": [ - "M298 384h214v42h-214v-42zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "zoom_out" - ], - "grid": 24 - }, - { - "id": 854, - "paths": [ - "M918 490v-42h-86v42h86zM918 384q26 0 45 19t19 45v42q0 26-19 45t-45 19h-86v86h-64v-256h150zM534 448v-64h192v64h-64v192h-64v-192h-64zM298 448v-64h192v64h-64v192h-64v-192h-64zM192 470v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "http" - ], - "grid": 24 - }, - { - "id": 855, - "paths": [ - "M726 554h-428v-340q0-34 26-60t60-26h256q34 0 60 26t26 60v340zM86 426h128v128h-128v-128zM810 426h128v128h-128v-128zM170 896v-256h684v256h-128v-128h-428v128h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "event_seat" - ], - "grid": 24 - }, - { - "id": 856, - "paths": [ - "M598 616q-164-46-412-110l-68-20v-220l62 16 40 100 212 56v-352l82 22 118 384 226 60q26 8 39 31t7 49q-8 26-30 38t-48 6zM106 810h812v86h-812v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flight_land" - ], - "grid": 24 - }, - { - "id": 857, - "paths": [ - "M942 412q6 26-7 48t-39 30q-248 66-412 110l-226 60-68 20-112-192 62-16 84 64 212-56-176-306 82-22 294 274 228-60q26-8 49 6t29 40zM106 810h812v86h-812v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flight_takeoff" - ], - "grid": 24 - }, - { - "id": 858, - "paths": [ - "M256 598h86q0 70 50 120t120 50 120-50 50-120h86q0 106-75 181t-181 75-181-75-75-181zM470 214h84v238h150l-192 192-192-192h150v-238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "play_for_work" - ], - "grid": 24 - }, - { - "id": 859, - "paths": [ - "M810 448h-128v42h86v64h-86v86h-64v-256h192v64zM384 384q18 0 30 12t12 30v22h-148v128h84v-64h64v86q0 18-12 30t-30 12h-128q-18 0-30-12t-12-30v-172q0-18 12-30t30-12h128zM490 384h64v256h-64v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gif" - ], - "grid": 24 - }, - { - "id": 860, - "paths": [ - "M726 554v-84h-428v84h428zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "indeterminate_check_box" - ], - "grid": 24 - }, - { - "id": 861, - "paths": [ - "M440 598l286-286-60-60-226 226-82-82-60 60zM726 768v-86h-428v86h428zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "offline_pin" - ], - "grid": 24 - }, - { - "id": 862, - "paths": [ - "M686 684q68-68 68-165t-68-165-165-68-165 68-68 165 68 165 165 68 165-68zM732 308q88 88 88 212t-88 210-212 86-210-86-86-210 86-212 210-88 212 88zM180 348v-170h170zM350 860h-170v-170zM862 690v170h-170zM692 178h170v170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "all_out" - ], - "grid": 24 - }, - { - "id": 863, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM506 390q-80 0-80 116v12q0 116 80 116 30 0 50-17t20-43h76q0 50-44 88-42 36-102 36-80 0-122-48t-42-132v-12q0-82 40-128 48-54 124-54 66 0 104 38 42 42 42 98h-76q0-14-6-26-10-20-14-24-20-20-50-20z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "copyright" - ], - "grid": 24 - }, - { - "id": 864, - "paths": [ - "M636 938h-6q-92-24-158-90-38-38-65-103t-27-119q0-52 38-89t92-37 93 37 39 89q0 34 25 58t63 24 64-24 26-58q0-120-91-206t-219-86q-92 0-168 47t-114 125q-24 50-24 120 0 80 28 154 6 20-14 26t-26-12q-32-82-32-168 0-78 30-138 42-90 129-144t191-54q146 0 249 99t103 237q0 52-39 88t-93 36-92-36-38-88q0-34-26-59t-64-25-63 25-25 59q0 112 80 192 56 56 140 78 18 2 14 26-4 16-20 16zM530 626q0 74 55 128t137 54q4 0 18-2t23-2 18 3 11 13q4 22-18 26-24 4-52 4-80 0-132-38-102-70-102-186 0-22 22-22 20 0 20 22zM416 930q-8 0-14-6-54-54-86-114-46-80-46-184 0-94 71-162t171-68 171 68 71 162q0 20-22 20t-22-20q0-78-58-133t-140-55-140 55-58 133q0 96 38 164 26 46 80 104 16 14 0 30-6 6-16 6zM150 414q-22 0-22-20 0-4 4-12 64-92 160-140 100-52 220-52t220 52q98 48 160 138 4 8 4 12 0 14-16 20t-24-8q-60-82-144-124-92-46-200-47t-200 47q-90 46-146 126-6 8-16 8zM760 190q-8 0-10-2-118-60-238-60-130 0-238 60-10 6-20 0t-10-18q0-14 10-20 116-64 258-64 130 0 258 64 18 10 8 28-8 12-18 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fingerprint" - ], - "grid": 24 - }, - { - "id": 865, - "paths": [ - "M164 404l240 242-120 120-242-240zM526 42l240 242-120 120-242-240zM224 344l120-120 604 604-120 120zM42 896h512v86h-512v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "gavel" - ], - "grid": 24 - }, - { - "id": 866, - "paths": [ - "M634 558q92-64 92-174 0-88-63-151t-151-63-151 63-63 151q0 46 27 96t65 78l36 26v98h172v-98zM512 86q124 0 211 87t87 211q0 156-128 244v98q0 18-12 30t-30 12h-256q-18 0-30-12t-12-30v-98q-128-88-128-244 0-124 87-211t211-87zM384 896v-42h256v42q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lightbulb_outline" - ], - "grid": 24 - }, - { - "id": 867, - "paths": [ - "M896 812v-600h-768v600h768zM982 810q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-598q0-34 26-59t60-25h768q34 0 60 25t26 59v598zM810 470v256h-340v-256h340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "picture_in_picture_alt" - ], - "grid": 24 - }, - { - "id": 868, - "paths": [ - "M510 384h130l-106 76 40 124-104-78-106 78 40-124-106-76h130l42-128zM854 86q36 0 60 24t24 60v214h-84v-214h-768v512h554v86h-86v86h86v84h-342v-84h86v-86h-298q-36 0-61-25t-25-61v-512q0-36 25-60t61-24h768zM982 854v-300h-214v300h214zM982 470q18 0 30 12t12 30v384q0 18-12 30t-30 12h-214q-18 0-30-12t-12-30v-384q0-18 12-30t30-12h214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "important_devices" - ], - "grid": 24 - }, - { - "id": 869, - "paths": [ - "M804 678q38 18 38 58v8l-32 226q-2 24-20 39t-42 15h-290q-26 0-44-18l-212-212 34-34q14-14 34-14 2 0 5 1t5 1l146 30v-458q0-28 19-46t45-18 45 18 19 46v256h34q6 0 22 4zM384 480q-86-56-86-160 0-80 56-136t136-56 136 56 56 136q0 106-84 160v-160q0-44-32-75t-76-31-75 31-31 75v160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "touch_app" - ], - "grid": 24 - }, - { - "id": 870, - "paths": [ - "M548 768h88q-14 70-76 120t-134 50q-88 0-150-62t-62-150q0-72 50-134t120-76v88q-38 14-62 47t-24 75q0 52 38 90t90 38q42 0 75-24t47-62zM426 388q0-48 42-76t86-2h2v2q14 6 26 18l56 62q72 78 172 78v84q-112 0-212-82v146h128q34 0 59 26t25 60v234h-84v-212h-214q-34 0-60-26t-26-60v-252zM426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "accessible" - ], - "grid": 24 - }, - { - "id": 871, - "paths": [ - "M640 554l-170-170 170-170v128h298v84h-298v128zM384 598v-128l170 170-170 170v-128h-298v-84h298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compare_arrows" - ], - "grid": 24 - }, - { - "id": 872, - "paths": [ - "M810 854v-470h-596v470h596zM810 170q34 0 60 26t26 60v598q0 34-26 59t-60 25h-596q-36 0-61-24t-25-60v-598q0-34 25-60t61-26h42v-84h86v84h340v-84h86v84h42zM726 470v84h-86v-84h86zM554 470v84h-84v-84h84zM384 470v84h-86v-84h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "date_range" - ], - "grid": 24 - }, - { - "id": 873, - "paths": [ - "M554 808q96-14 169-86t87-168h128q-16 160-120 265t-264 119v-130zM810 470q-14-96-87-168t-169-86v-130q160 16 264 120t120 264h-128zM470 216q-100 16-178 102t-78 194 78 194 178 102v130q-162-16-273-138t-111-288 111-288 273-138v130z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "donut_large" - ], - "grid": 24 - }, - { - "id": 874, - "paths": [ - "M554 634q54-16 80-80h304q-16 154-121 262t-263 122v-304zM634 470q-24-64-80-80v-304q158 14 263 122t121 262h-304zM470 390q-34 14-60 48t-26 74 26 74 60 48v304q-162-16-273-138t-111-288 111-288 273-138v304z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "donut_small" - ], - "grid": 24 - }, - { - "id": 875, - "paths": [ - "M128 170h768v172h-768v-172zM554 512v-86h342v86h-342zM128 512v-86h342v86h-342zM810 854v-86h86v86h-86zM640 854v-86h86v86h-86zM470 854v-86h84v86h-84zM298 854v-86h86v86h-86zM128 854v-86h86v86h-86zM682 682v-84h214v84h-214zM406 682v-84h212v84h-212zM128 682v-84h214v84h-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "line_style" - ], - "grid": 24 - }, - { - "id": 876, - "paths": [ - "M128 170h768v172h-768v-172zM128 554v-128h768v128h-768zM128 854v-44h768v44h-768zM128 726v-86h768v86h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "line_weight" - ], - "grid": 24 - }, - { - "id": 877, - "paths": [ - "M746 726q44 0 75-32t31-76-31-75-75-31-76 31-32 75 32 76 76 32zM378 652l-122-2v-64h122q-24-74-102-74-44 0-75 31t-31 75 31 76 75 32q32 0 63-22t39-52zM746 426q80 0 136 56t56 136-56 136-136 56-136-56-56-136q0-4 1-10t1-10l-90 54q-12 66-67 112t-121 46q-80 0-136-56t-56-136 55-136 135-56h346l-84-84h-154v-86h188l172 172q0-2 2-2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "motorcycle" - ], - "grid": 24 - }, - { - "id": 878, - "paths": [ - "M256 598h512q0-110-76-186l-180-188-180 186q-76 76-76 188zM754 342q100 100 100 240 0 142-100 242-42 42-113 71t-129 29-129-29-113-71q-100-100-100-242 0-58 29-128t71-112l242-242z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "opacity" - ], - "grid": 24 - }, - { - "id": 879, - "paths": [ - "M740 634l34 34t17 18 16 19 15 19 13 20 10 22 6 23 2 24-1 25q-22 84-100 100-14 2-97-8t-139-10h-8q-56 0-139 10t-97 8q-78-16-100-100-6-40 14-82t37-60 61-62q20-22 53-62t53-62q36-44 74-56 8-4 14-4 12-2 34-2 24 0 34 2 6 0 14 4 38 12 74 56 18 22 52 62t54 62zM726 406q0-44 31-76t75-32 75 32 31 76-31 75-75 31-75-31-31-75zM534 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM278 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM86 406q0-44 31-76t75-32 75 32 31 76-31 75-75 31-75-31-31-75z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pets" - ], - "grid": 24 - }, - { - "id": 880, - "paths": [ - "M682 554v172h-128v212h-128v-212h-84v-300q0-52 38-90t90-38 90 38 38 90q34 14 59 52t25 76zM384 170q0-36 25-60t61-24 60 24 24 60-24 61-60 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pregnant_woman" - ], - "grid": 24 - }, - { - "id": 881, - "paths": [ - "M856 86q124 130 124 301t-124 295l-70-68q88-102 88-233t-88-227zM716 228q64 70 64 158t-64 152l-72-72q28-38 28-83t-28-83zM384 640q108 0 225 47t117 123v86h-684v-86q0-76 117-123t225-47zM214 384q0-70 50-120t120-50 120 50 50 120-50 120-120 50-120-50-50-120z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "record_voice_over" - ], - "grid": 24 - }, - { - "id": 882, - "paths": [ - "M896 342v212h-86v-212q0-52-38-90t-90-38h-212v-86h212q88 0 151 63t63 151zM128 896v-86h86v86h-86zM298 896v-86h86v86h-86zM470 896v-86h84v86h-84zM298 214v-86h86v86h-86zM128 214v-86h86v86h-86zM128 384v-86h86v86h-86zM128 726v-86h86v86h-86zM128 554v-84h86v84h-86zM810 726v-86h86v86h-86zM810 810h86v86h-86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rounded_corner" - ], - "grid": 24 - }, - { - "id": 883, - "paths": [ - "M896 896l-128 128-128-128v-64l-302-302q-14 2-40 2v-92q52 2 108-23t92-63l60-66q32-32 70-32h2q38 0 67 28t29 68v246q0 52-40 92l-152-152v-98q-40 34-98 60l268 268h64zM640 42q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM362 618l108 108h-86l-150 148-64-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rowing" - ], - "grid": 24 - }, - { - "id": 884, - "paths": [ - "M982 342q0 34-26 59t-60 25h-2q-14 0-20-2l-152 152q4 12 4 22 0 34-26 59t-60 25-60-25-26-59q0-10 4-22l-110-110q-12 4-22 4t-22-4l-194 194q4 12 4 22 0 34-26 60t-60 26-60-26-26-60 26-59 60-25q16 0 22 2l194-194q-2-6-2-22 0-34 25-60t59-26 60 26 26 60q0 16-2 22l108 108q6-2 22-2t22 2l152-150q-4-12-4-22 0-34 26-60t60-26 60 26 26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "timeline" - ], - "grid": 24 - }, - { - "id": 885, - "paths": [ - "M534 342v180l148 90-30 52-182-110v-212h64zM896 432h-290l118-120q-88-88-211-89t-211 85q-36 36-62 97t-26 111 26 111 62 97 98 62 112 26 113-26 99-62q86-86 86-208h86q0 158-112 268-112 112-272 112t-272-112q-112-110-112-267t112-269q46-46 125-79t145-33 145 33 125 79l116-120v304z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "update" - ], - "grid": 24 - }, - { - "id": 886, - "paths": [ - "M692 692l34-56-192-116v-222h-64v256zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "watch_later" - ], - "grid": 24 - }, - { - "id": 887, - "paths": [ - "M982 234v620q0 70-51 120t-121 50h-310q-72 0-122-50l-336-342q54-52 56-52 14-12 34-12 14 0 26 6l184 104v-508q0-26 19-45t45-19 45 19 19 45v300h42v-406q0-28 18-46t46-18 46 18 18 46v406h42v-364q0-26 19-45t45-19 45 19 19 45v364h44v-236q0-26 19-45t45-19 45 19 19 45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pan_tool" - ], - "grid": 24 - }, - { - "id": 888, - "paths": [ - "M640 790q102 0 180-68l76 76q-108 98-256 98-124 0-223-72t-139-184h-150v-86h130q-2-12-2-42t2-42h-130v-86h150q40-112 139-184t223-72q60 0 136 29t120 69l-76 76q-78-68-180-68-70 0-142 44t-104 106h246v86h-274q-4 28-4 42t4 42h274v86h-246q32 62 104 106t142 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "euro_symbol" - ], - "grid": 24 - }, - { - "id": 889, - "paths": [ - "M918 874v-596q0-18-13-31t-31-13h-386l56 162h62v-54h54v54h194v56h-82q-30 100-102 180l140 140-40 38-132-132 44 132-84 108h276q18 0 31-13t13-31zM562 452l34 100 36 48q62-68 88-148h-158zM298 682q92 0 149-58t57-150q0-2-6-44h-200v74h126q-4 38-36 70t-90 32q-56 0-95-40t-39-96q0-58 39-98t95-40q54 0 88 34l56-54q-62-56-144-56-88 0-150 63t-62 151 62 150 150 62zM896 170q34 0 60 26t26 60v640q0 34-26 60t-60 26h-384l-42-128h-342q-34 0-60-26t-26-60v-640q0-34 26-60t60-26h298l44 128h426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "g_translate" - ], - "grid": 24 - }, - { - "id": 890, - "paths": [ - "M298 768q34 0 60 26t26 60-26 59-60 25-59-25-25-59 25-60 59-26zM664 554l-384-384h574q18 0 30 13t12 31q0 2-6 20l-152 276q-24 44-74 44zM316 640h216l-86-86h-100l-38 70-2 6q0 10 10 10zM970 970l-54 54-122-122q-26 36-68 36-34 0-60-25t-26-59q0-44 36-70l-60-58h-318q-34 0-59-26t-25-60q0-20 10-40l58-106-94-198-188-188 54-54z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_shopping_cart" - ], - "grid": 24 - }, - { - "id": 891, - "paths": [ - "M512 768q88 0 151-63t63-151-63-150-151-62q-116 0-180 98l-54-56v170h170l-68-68q16-32 55-56t77-24q62 0 106 43t44 105-44 106-106 44q-78 0-122-64h-74q24 58 77 93t119 35zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "restore_page" - ], - "grid": 24 - }, - { - "id": 892, - "paths": [ - "M854 86q34 0 59 25t25 59v512q0 34-24 59t-58 27l-298-298h210v-86h-296l-42-42h338v-86h-342v82l-252-252h680zM256 470h86l-86-86v86zM342 598v-86h-86v86h86zM54 74l884 884-54 54-244-244h-384l-170 170v-724l-86-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speaker_notes_off" - ], - "grid": 24 - }, - { - "id": 893, - "paths": [ - "M662 170h148v86h-596v-86h148l44-42h212zM360 506l92 92-90 90 60 60 90-90 90 90 60-60-90-90 90-92-60-60-90 92-90-92zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "delete_forever" - ], - "grid": 24 - }, - { - "id": 894, - "paths": [ - "M512 256q-34 0-60-26t-26-60 26-59 60-25 60 25 26 59-26 60-60 26zM874 256l22 86q-100 28-256 42v554h-86v-256h-84v256h-86v-554q-156-14-256-42l22-86q156 42 362 42t362-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "accessibility_new" - ], - "grid": 24 - }, - { - "id": 895, - "paths": [ - "M512 854q140 0 241-101t101-241-101-241-241-101-241 101-101 241 101 241 241 101zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125zM708 324l60 60-342 342-212-214 60-60 152 152z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "check_circle_outline" - ], - "grid": 24 - }, - { - "id": 896, - "paths": [ - "M662 170h148v86h-596v-86h148l44-42h212zM342 384v426h340v-426h-340zM256 810v-512h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "delete_outline" - ], - "grid": 24 - }, - { - "id": 897, - "paths": [ - "M844 94l180 180-664 664-360-360 180-180 180 180zM844 214l-484 484-180-178-60 58 240 240 544-544z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "done_outline" - ], - "grid": 24 - }, - { - "id": 898, - "paths": [ - "M128 128h768v86h-768v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "maximize" - ], - "grid": 24 - }, - { - "id": 899, - "paths": [ - "M256 810h512v86h-512v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "minimize" - ], - "grid": 24 - }, - { - "id": 900, - "paths": [ - "M490 854l208-416h-144v-268l-212 416h148v268zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "offline_bolt" - ], - "grid": 24 - }, - { - "id": 901, - "paths": [ - "M384 746v-106h170v-86h-170v-106l-150 150zM640 278v106h-170v86h170v106l150-150zM938 512q0 176-125 301t-301 125-301-125-125-301 125-301 301-125 301 125 125 301z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swap_horizontal_circle" - ], - "grid": 24 - }, - { - "id": 902, - "paths": [ - "M726 576q34 0 59 26t25 60v234h-84v-214h-214q-46 0-72-41t-6-83l78-174h-94l-28 66-82-24 28-76q22-52 80-52h222q48 0 74 40t6 82l-72 156h80zM598 726q0 88-63 150t-151 62-151-62-63-150 63-151 151-63v86q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90h86zM640 194q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "accessible_forward" - ], - "grid": 24 - }, - { - "id": 903, - "paths": [ - "M854 896v-554h-684v554h684zM854 128q34 0 59 26t25 60v682q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-682q0-34 25-60t59-26h44v-86h84v86h428v-86h84v86h44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "calendar_today" - ], - "grid": 24 - }, - { - "id": 904, - "paths": [ - "M128 256h768v86h-768v-86zM128 426h768v214h-768v-214zM128 726h768v84h-768v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "calendar_view_day" - ], - "grid": 24 - }, - { - "id": 905, - "paths": [ - "M150 810l206-298-206-298h468q44 0 70 36l186 262-186 262q-26 36-70 36h-468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "label_important" - ], - "grid": 24 - }, - { - "id": 906, - "paths": [ - "M598 598h84l-170-172-170 172h84v170h172v-170zM256 298h512v512q0 34-26 60t-60 26h-340q-34 0-60-26t-26-60v-512zM810 170v86h-596v-86h148l44-42h212l44 42h148z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "restore_from_trash" - ], - "grid": 24 - }, - { - "id": 907, - "paths": [ - "M512 854q106 0 193-61t125-157q-60-48-164-48-58 0-123 25t-65 65v174q12 2 34 2zM410 678q0-70 80-114-50-10-80-10-54 0-122 19t-98 53q28 76 86 132t134 80v-160zM410 288q-42 0-72 30t-30 72 30 71 72 29 71-29 29-71-29-72-71-30zM666 356q-34 0-58 24t-24 58 24 58 58 24 58-24 24-58-24-58-58-24zM512 86q176 0 301 125t125 301-125 301-301 125q-178 0-303-125t-125-301 125-301 303-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "supervised_user_circle" - ], - "grid": 24 - }, - { - "id": 908, - "paths": [ - "M768 182l128 128h-86v532h-84v-532h-86zM426 624v-160l-214 80zM128 512l470-202v88l-94 40v212l94 40v88l-470-202v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotate_up" - ], - "grid": 24 - }, - { - "id": 909, - "paths": [ - "M256 842l-128-128h86v-532h84v532h86zM560 512h160l-80-214zM672 214l202 468h-88l-40-94h-212l-40 94h-88l202-468h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotate_vertical" - ], - "grid": 24 - }, - { - "id": 910, - "paths": [ - "M608 896h-180l60-60-378-378 62-60 376 378 60-60v180zM538 342l112 112 94-208zM828 210l-190 474-62-62 38-94-150-152-94 40-62-64 474-188z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotation_angledown" - ], - "grid": 24 - }, - { - "id": 911, - "paths": [ - "M878 398v180l-60-60-378 378-60-60 376-378-60-60h182zM324 470l112-112-208-96zM192 180l474 188-62 64-94-40-152 152 40 92-64 64-188-476z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotation_angleup" - ], - "grid": 24 - }, - { - "id": 912, - "paths": [ - "M256 842l-128-128h86v-532h84v532h86zM598 400v160l214-80zM896 512l-470 202v-88l94-40v-212l-94-40v-88l470 202v64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotation_down" - ], - "grid": 24 - }, - { - "id": 913, - "paths": [ - "M874 768l-128 128v-86h-532v-84h532v-86zM432 426h160l-80-214zM544 128l202 470h-88l-40-94h-212l-40 94h-88l202-470h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_rotation_none" - ], - "grid": 24 - }, - { - "id": 914, - "paths": [ - "M854 682q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM512 682q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM530 426l-44 128h394l-44-128h-306zM878 412l60 176v234q0 12-9 22t-21 10h-26q-12 0-20-11t-8-23v-52h-342v52q0 12-9 23t-21 11h-26q-12 0-20-10t-8-22l-2-234 62-176q10-28 42-28h306q32 0 42 28zM214 598q-18 0-31 12t-13 30 13 30 31 12 30-12 12-30-12-30-30-12zM512 170q52 0 90 38t38 90v44h-86v-86h-384v298h214v214l-86-2-84 88h-44v-44l44-42q-52 0-90-38t-38-90v-342q0-52 38-90t90-38h298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "commute" - ], - "grid": 24 - }, - { - "id": 915, - "paths": [ - "M684 470v-128l170 170-170 170v-128h-514v-84h514z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_right_alt" - ], - "grid": 24 - }, - { - "id": 916, - "paths": [ - "M600 256v-88h-174v88h174zM938 340v440l-594-598v-14q0-36 24-60t60-22h172q36-2 60 22t24 60v88h172q36-2 60 23t22 61zM982 928l-54 54-88-88h-668q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h28l-116-116 54-54z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "work_off" - ], - "grid": 24 - }, - { - "id": 917, - "paths": [ - "M854 256q36 0 60 25t24 61v468q0 36-24 61t-60 25h-684q-36 0-60-25t-24-61v-468q0-36 24-61t60-25h172v-86q0-36 24-60t60-24h172q36 0 60 24t24 60v86h172zM170 342v468h684v-468h-684zM598 256v-86h-172v86h172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "work_outline" - ], - "grid": 24 - }, - { - "id": 918, - "paths": [ - "M640 682q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM640 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM640 342q-34 0-60-26t-26-60 26-60 60-26 60 26 26 60-26 60-60 26zM384 170q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM384 426q34 0 60 26t26 60-26 60-60 26-60-26-26-60 26-60 60-26zM470 768q0 34-26 60t-60 26-60-26-26-60 26-60 60-26 60 26 26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drag_indicator" - ], - "grid": 24 - }, - { - "id": 919, - "paths": [ - "M128 214h768v84h-768v-84zM128 470v-86h768v86h-768zM128 810v-256h768v256h-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "horizontal_split" - ], - "grid": 24 - }, - { - "id": 920, - "paths": [ - "M278 726h362l150-214-150-214h-362l148 214zM640 810h-512l192-298-192-298h512q44 0 70 36l186 262-186 262q-26 36-70 36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "label_important_outline" - ], - "grid": 24 - }, - { - "id": 921, - "paths": [ - "M554 214h342v596h-342v-596zM128 214h342v84h-342v-84zM128 470v-86h342v86h-342zM128 810v-84h342v84h-342zM128 640v-86h342v86h-342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vertical_split" - ], - "grid": 24 - }, - { - "id": 922, - "paths": [ - "M856 86q124 130 124 301t-124 295l-70-68q88-102 88-233t-88-227zM716 228q64 70 64 158t-64 152l-72-72q28-38 28-83t-28-83zM182 128l714 714-54 54-126-126q4 10 7 20t3 20v86h-684v-86q0-76 117-123t225-47q22 0 49 3t58 9 60 14 57 20 50 26l-184-184q-42 26-90 26-70 0-120-50t-50-120q0-48 26-90l-112-112zM554 392l-178-178h8q70 0 120 50t50 120v8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "voice_over_off" - ], - "grid": 24 - }, - { - "id": 923, - "paths": [ - "M384 554v-84h512v84h-512zM128 256h768v86h-768v-86zM384 768v-86h512v86h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "segment" - ], - "grid": 24 - }, - { - "id": 924, - "paths": [ - "M534 554q0-46 64-102t64-110q0-70-51-121t-121-51-120 51-50 121h86q0-34 25-60t59-26 60 26 26 60q0 28-20 50t-44 36-44 47-20 79h86zM534 704v-86h-86v86h86zM490 86q150 0 257 106t107 256q0 146-94 281t-248 209v-128h-22q-150 0-256-106t-106-256 106-256 256-106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contact_support" - ], - "grid": 24 - }, - { - "id": 925, - "paths": [ - "M170 512h684v86h-684v-86zM170 384h684v86h-684v-86zM682 170l-170 172-170-172h128v-128h84v128h128zM342 810l170-170 170 170h-128v128h-84v-128h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "compress" - ], - "grid": 24 - }, - { - "id": 926, - "paths": [ - "M182 242q-12-14-12-28 0-18 13-31t31-13h596q18 0 31 13t13 31q2 12-10 26l-246 314v256q0 18-12 31t-30 13h-86q-18 0-31-13t-13-31v-256q-240-306-244-312z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_list_alt" - ], - "grid": 24 - }, - { - "id": 927, - "paths": [ - "M554 384v256h128l-170 170-170-170h128v-256h-128l170-170 170 170h-128zM170 86h684v84h-684v-84zM170 854h684v84h-684v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "expand" - ], - "grid": 24 - }, - { - "id": 928, - "paths": [ - "M86 214l84-86 684 682-86 86-240-240-240 240h-160v-160l240-240zM884 240q12 12 12 30 0 16-12 28l-78 80-160-160 78-78q12-12 30-12t30 12zM518 346l82-82 160 160-82 82z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "edit_off" - ], - "grid": 24 - }, - { - "id": 929, - "paths": [ - "M832 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM554 598v-172q0-18-12-30t-30-12h-106q-18 0-31 12t-13 30v172q0 18 13 30t31 12h106q18 0 30-12t12-30zM320 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM426 448h64v128h-64v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "10k" - ], - "grid": 24 - }, - { - "id": 930, - "paths": [ - "M662 598h64v64h-64v-64zM704 448v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v170q0 18 12 30t30 12h108q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM576 298h64v128h-64v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "10mp" - ], - "grid": 24 - }, - { - "id": 931, - "paths": [ - "M662 598h64v64h-64v-64zM682 234h-128v64h64v192h64v-256zM470 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "11mp" - ], - "grid": 24 - }, - { - "id": 932, - "paths": [ - "M662 598h64v64h-64v-64zM662 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h86zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "12mp" - ], - "grid": 24 - }, - { - "id": 933, - "paths": [ - "M662 598h64v64h-64v-64zM704 448v-170q0-18-12-31t-30-13h-150v64h128v44h-86v42h86v42h-128v64h150q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "13mp" - ], - "grid": 24 - }, - { - "id": 934, - "paths": [ - "M662 598h64v64h-64v-64zM746 426v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "14mp" - ], - "grid": 24 - }, - { - "id": 935, - "paths": [ - "M662 598h64v64h-64v-64zM704 298v-64h-192v150h128v42h-128v64h150q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "15mp" - ], - "grid": 24 - }, - { - "id": 936, - "paths": [ - "M662 598h64v64h-64v-64zM554 490h108q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128v-64h-150q-18 0-30 13t-12 31v170q0 18 12 30t30 12zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM576 384h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "16mp" - ], - "grid": 24 - }, - { - "id": 937, - "paths": [ - "M662 598h64v64h-64v-64zM640 490l62-200q6-22-6-39t-34-17h-150v64h112l-58 192h74zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "17mp" - ], - "grid": 24 - }, - { - "id": 938, - "paths": [ - "M662 598h64v64h-64v-64zM576 342v-64h64v64h-64zM576 448v-64h64v64h-64zM704 448v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v170q0 18 12 30t30 12h108q18 0 30-12t12-30zM426 234h-128v64h64v192h64v-256zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "18mp" - ], - "grid": 24 - }, - { - "id": 939, - "paths": [ - "M662 598h64v64h-64v-64zM790 682v-106q0-18-13-30t-31-12h-148v256h64v-64h84q18 0 31-13t13-31zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM298 234v64h64v192h64v-256h-128zM576 342v-64h64v64h-64zM512 426v64h150q18 0 30-12t12-30v-170q0-18-12-31t-30-13h-108q-18 0-30 13t-12 31v64q0 18 12 30t30 12h86v42h-128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "19mp" - ], - "grid": 24 - }, - { - "id": 940, - "paths": [ - "M746 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM448 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "1k" - ], - "grid": 24 - }, - { - "id": 941, - "paths": [ - "M832 534v-44h-64v-64h-42v64h-64v44h64v64h42v-64h64zM586 640h76l-96-128 96-128h-76l-74 96v-96h-64v256h64v-96zM384 640v-256h-128v64h64v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "1k_plus" - ], - "grid": 24 - }, - { - "id": 942, - "paths": [ - "M662 598h64v64h-64v-64zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM746 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v170q0 18 13 30t31 12h106q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM618 298h64v128h-64v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "20mp" - ], - "grid": 24 - }, - { - "id": 943, - "paths": [ - "M662 598h64v64h-64v-64zM598 234v64h64v192h64v-256h-128zM470 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h86zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "21mp" - ], - "grid": 24 - }, - { - "id": 944, - "paths": [ - "M662 598h64v64h-64v-64zM704 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-84q-18 0-31 12t-13 30v106h192v-64h-128v-42h86zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "22mp" - ], - "grid": 24 - }, - { - "id": 945, - "paths": [ - "M662 598h64v64h-64v-64zM746 448v-170q0-18-12-31t-30-13h-150v64h128v44h-84v42h84v42h-128v64h150q18 0 30-12t12-30zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "23mp" - ], - "grid": 24 - }, - { - "id": 946, - "paths": [ - "M662 598h64v64h-64v-64zM790 426v-64h-44v-128h-64v128h-64v-128h-64v192h128v64h64v-64h44zM426 384q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-148v64h128v44h-86q-18 0-30 12t-12 30v106h192v-64h-128v-42h84zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "24mp" - ], - "grid": 24 - }, - { - "id": 947, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM426 534q18 0 31-13t13-31v-64q0-18-13-30t-31-12h-148v64h128v42h-86q-18 0-30 13t-12 31v106h192v-64h-128v-42h84zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "2k" - ], - "grid": 24 - }, - { - "id": 948, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM608 640h74l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96zM406 490v-64q0-18-13-30t-31-12h-148v64h128v42h-86q-18 0-30 13t-12 31v106h192v-64h-128v-42h84q18 0 31-13t13-31zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "2k_plus" - ], - "grid": 24 - }, - { - "id": 949, - "paths": [ - "M662 598h64v64h-64v-64zM576 384q18 0 30-12t12-30v-64q0-18-12-31t-30-13h-150v64h128v44h-84q-18 0-31 12t-13 30v106h192v-64h-128v-42h86zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "2mp" - ], - "grid": 24 - }, - { - "id": 950, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-148v64h128v42h-86v44h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "3k" - ], - "grid": 24 - }, - { - "id": 951, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-148v64h128v42h-86v44h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "3k_plus" - ], - "grid": 24 - }, - { - "id": 952, - "paths": [ - "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-150v64h128v44h-84v42h84v42h-128v64h150q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "3mp" - ], - "grid": 24 - }, - { - "id": 953, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM448 576v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "4k_plus" - ], - "grid": 24 - }, - { - "id": 954, - "paths": [ - "M662 598h64v64h-64v-64zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM640 426v-64h-42v-128h-64v128h-64v-128h-64v192h128v64h64v-64h42zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "4mp" - ], - "grid": 24 - }, - { - "id": 955, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 448v-64h-192v150h128v42h-128v64h148q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "5k" - ], - "grid": 24 - }, - { - "id": 956, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 448v-64h-192v150h128v42h-128v64h148q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "5k_plus" - ], - "grid": 24 - }, - { - "id": 957, - "paths": [ - "M662 598h64v64h-64v-64zM618 298v-64h-192v150h128v42h-128v64h150q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "5mp" - ], - "grid": 24 - }, - { - "id": 958, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 448v-64h-150q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 534h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "6k" - ], - "grid": 24 - }, - { - "id": 959, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 448v-64h-150q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-84v-42h128zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 534h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "6k_plus" - ], - "grid": 24 - }, - { - "id": 960, - "paths": [ - "M662 598h64v64h-64v-64zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM470 490h106q18 0 30-12t12-30v-64q0-18-12-30t-30-12h-86v-44h128v-64h-148q-18 0-31 13t-13 31v170q0 18 13 30t31 12zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 384h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "6mp" - ], - "grid": 24 - }, - { - "id": 961, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM406 640l62-200q6-20-7-38t-35-18h-148v64h112l-60 192h76zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "7k" - ], - "grid": 24 - }, - { - "id": 962, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM342 640l62-200q6-20-7-38t-35-18h-148v64h112l-60 192h76zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "7k_plus" - ], - "grid": 24 - }, - { - "id": 963, - "paths": [ - "M662 598h64v64h-64v-64zM554 490l62-200q6-22-7-39t-33-17h-150v64h112l-58 192h74zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "7mp" - ], - "grid": 24 - }, - { - "id": 964, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 426h64v64h-64v-64zM342 534h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "8k" - ], - "grid": 24 - }, - { - "id": 965, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v172q0 18 12 30t30 12h106q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 426h64v64h-64v-64zM278 534h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "8k_plus" - ], - "grid": 24 - }, - { - "id": 966, - "paths": [ - "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v170q0 18 13 30t31 12h106q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 278h64v64h-64v-64zM490 384h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "8mp" - ], - "grid": 24 - }, - { - "id": 967, - "paths": [ - "M768 640l-96-128 96-128h-74l-76 96v-96h-64v256h64v-96l76 96h74zM470 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v64q0 18 12 31t30 13h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM342 426h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "9k" - ], - "grid": 24 - }, - { - "id": 968, - "paths": [ - "M854 534v-44h-64v-64h-44v64h-64v44h64v64h44v-64h64zM682 640l-96-128 96-128h-74l-74 96v-96h-64v256h64v-96l74 96h74zM406 598v-172q0-18-13-30t-31-12h-106q-18 0-30 12t-12 30v64q0 18 12 31t30 13h86v42h-128v64h148q18 0 31-12t13-30zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM278 426h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "9k_plus" - ], - "grid": 24 - }, - { - "id": 969, - "paths": [ - "M662 598h64v64h-64v-64zM618 448v-170q0-18-12-31t-30-13h-106q-18 0-31 13t-13 31v64q0 18 13 30t31 12h84v42h-128v64h150q18 0 30-12t12-30zM662 790v-64h84q18 0 31-13t13-31v-106q0-18-13-30t-31-12h-148v256h64zM512 790v-214q0-18-12-30t-30-12h-192q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596zM490 278h64v64h-64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "9mp" - ], - "grid": 24 - }, - { - "id": 970, - "paths": [ - "M938 470h-298v-128h-86v340h86v-128h298v342h-298v-128h-170v-426h-86v128h-298v-342h298v128h256v-128h298v342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "account_tree" - ], - "grid": 24 - }, - { - "id": 971, - "paths": [ - "M768 810v-212h86v212q0 34-26 60t-60 26h-598q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h512v86h-512v596h598zM854 298h128v86h-128v128h-86v-128h-128v-86h128v-128h86v128zM426 298h86v426h-86v-426zM598 554h84v170h-84v-170zM256 426h86v298h-86v-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_chart" - ], - "grid": 24 - }, - { - "id": 972, - "paths": [ - "M896 256v86h-128v128h-86v-128h-128v-86h128v-128h86v128h128zM854 662q18 0 30 12t12 30v150q0 18-12 30t-30 12q-300 0-513-213t-213-513q0-18 12-30t30-12h150q18 0 30 12t12 30v2q0 82 24 150 4 8 4 14 0 20-14 30l-94 94q40 76 123 159t159 123l94-94q14-14 30-14 6 0 14 4 72 24 152 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_ic_call" - ], - "grid": 24 - }, - { - "id": 973, - "paths": [ - "M810 854v126h-84v-126h-128v-86h128v-128h84v128h128v86h-128zM564 964q-4 2-23 9t-29 9q-164-40-274-187t-110-325v-256l384-172 384 172v256q0 54-12 112-52-28-116-28-106 0-181 75t-75 181q0 86 52 154z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_moderator" - ], - "grid": 24 - }, - { - "id": 974, - "paths": [ - "M640 682h256v128q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-128h256q0 52 38 90t90 38 90-38 38-90zM810 384v-170h-596v170h170q0 52 38 90t90 38 90-38 38-90h170zM810 128q34 0 60 26t26 60v298q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-298q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "all_inbox" - ], - "grid": 24 - }, - { - "id": 975, - "paths": [ - "M512 470l128-172q0-52-38-90t-90-38-90 38-38 90zM512 86q88 0 151 62t63 150l-214 300h256q34 0 60 25t26 59v256h-684v-256q0-34 26-59t60-25h256l-214-300q0-88 63-150t151-62zM768 768v-86h-512v86h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "approval" - ], - "grid": 24 - }, - { - "id": 976, - "paths": [ - "M842 536q28-28 0-48l-306-308q-26-20-50 0l-306 308q-10 16-10 24t10 24l306 308q26 20 50 0zM512 42q196 0 333 137t137 333-137 333-333 137-333-137-137-333 137-333 333-137zM598 426v-106l148 150-148 148v-106h-172v128h-84v-170q0-44 42-44h214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assistant_direction" - ], - "grid": 24 - }, - { - "id": 977, - "paths": [ - "M664 726l16-16-168-412-168 412 16 16 152-68zM512 42q194 0 332 138t138 332-138 332-332 138-332-138-138-332 138-332 332-138z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "assistant_navigation" - ], - "grid": 24 - }, - { - "id": 978, - "paths": [ - "M640 214q34 0 60 25t26 59v684l-300-128-298 128v-684q0-34 26-59t60-25h426zM810 768v-554q0-34-25-60t-59-26h-428q0-34 26-60t60-26h426q34 0 60 26t26 60v682z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bookmarks" - ], - "grid": 24 - }, - { - "id": 979, - "paths": [ - "M640 426h86v86h-86v-86zM640 170h86v214h-86v-214zM682 554q88 0 151-62t63-150-63-151-151-63-150 63-62 151 62 150 150 62zM576 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 554h346q-90-86-90-212h-256v212zM192 810q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM682 42q124 2 211 90t87 210q0 106-74 192t-180 102v132q0 54-44 94v76q0 18-12 31t-30 13h-42q-18 0-31-13t-13-31v-42h-340v42q0 18-13 31t-31 13h-42q-18 0-30-13t-12-31v-76q-44-40-44-94v-426q0-102 88-137t254-35q8 0 26 1t26 1q38-54 109-92t137-38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bus_alert" - ], - "grid": 24 - }, - { - "id": 980, - "paths": [ - "M170 384v470h684q0 36-25 60t-61 24h-598q-36 0-60-24t-24-60v-470h84zM682 256v-42q0-16-14-30t-28-14h-128q-16 0-29 13t-13 31v42h212zM384 256v-86l86-84h212l86 84v86h170v470q0 34-25 59t-59 25h-556q-34 0-59-25t-25-59v-470h170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cases" - ], - "grid": 24 - }, - { - "id": 981, - "paths": [ - "M726 682v-42l-44-42v-112q0-70-33-122t-95-66v-20q0-18-12-31t-30-13-30 13-12 31v20q-62 14-95 66t-33 122v112l-44 42v42h428zM512 790q28 0 46-19t18-45h-128q0 26 18 45t46 19zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "circle_notifications" - ], - "grid": 24 - }, - { - "id": 982, - "paths": [ - "M768 470h-64v-22h-86v128h86v-22h64v44q0 18-12 30t-30 12h-128q-18 0-31-12t-13-30v-172q0-18 13-30t31-12h128q18 0 30 12t12 30v44zM470 470h-64v-22h-86v128h86v-22h64v44q0 18-13 30t-31 12h-128q-18 0-30-12t-12-30v-172q0-18 12-30t30-12h128q18 0 31 12t13 30v44zM810 170q34 0 60 26t26 60v512q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-512q0-36 25-61t61-25h596zM832 234h-640v556h640v-556z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "closed_caption_off" - ], - "grid": 24 - }, - { - "id": 983, - "paths": [ - "M170 342q142 0 242 100t100 240h-62q0-116-82-197t-198-81v-62zM170 470q88 0 151 62t63 150h-62q0-62-45-107t-107-45v-60zM170 598q36 0 61 24t25 60h-86v-84zM896 726v-512h-768v512h768zM896 128q34 0 60 26t26 60l-2 512q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "connected_tv" - ], - "grid": 24 - }, - { - "id": 984, - "paths": [ - "M726 672l-160-160 160-160-54-54-160 160-160-160-54 54 160 160-160 160 54 54 160-160 160 160zM672 128l224 224v320l-224 224h-320l-224-224v-320l224-224h320z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dangerous" - ], - "grid": 24 - }, - { - "id": 985, - "paths": [ - "M768 554v128h128v86h-128v128h-86v-128h-128v-86h128v-128h86zM128 554h342v342h-342v-342zM554 128h342v342h-342v-342zM128 128h342v342h-342v-342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dashboard_customize" - ], - "grid": 24 - }, - { - "id": 986, - "paths": [ - "M128 682h422l-422-422v422zM636 768h-38v86h84v84h-340v-84h84v-86h-298q-34 0-60-26t-26-60v-508l-42-42 52-56q48 48 304 302t390 390l202 200-56 56zM982 682q0 34-26 60t-60 26h-42l-86-86h128v-512h-640l-86-84h726q34 0 60 25t26 59v512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "desktop_access_disabled" - ], - "grid": 24 - }, - { - "id": 987, - "paths": [ - "M512 384l170 172-170 170-62-60 68-68h-176v-86h176l-66-68zM854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drive_file_move_outline" - ], - "grid": 24 - }, - { - "id": 988, - "paths": [ - "M470 854l170-172h256v172h-426zM264 768l370-370-52-52-368 370v52h50zM786 248q26 26 26 60t-26 60l-486 486h-172v-174q480-478 486-484 26-26 60-26t60 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drive_file_rename_outline" - ], - "grid": 24 - }, - { - "id": 989, - "paths": [ - "M342 556l170-172 170 172-60 60-68-68v178h-84v-178l-68 68zM854 768v-426h-684v426h684zM854 256q34 0 59 26t25 60v426q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-60t59-26h256l86 86h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drive_folder_upload" - ], - "grid": 24 - }, - { - "id": 990, - "paths": [ - "M726 640v-256l-128 86v-86h-300v256h300v-86zM854 86q34 0 59 25t25 59v342q0 180-128 303t-310 123q-168 0-291-124t-123-290q0-182 124-310t302-128h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "duo" - ], - "grid": 24 - }, - { - "id": 991, - "paths": [ - "M938 512q0 28-2 40v12q0 10-4 26 0 6-4 14l-6 24q-2 2-2 7t-2 7q-2 6-6 17t-6 15q-4 12-14 32l-7 14t-9 14q-2 2-7 10t-7 10l-222-222 128-276-276 128-222-222q2-2 10-7t10-7q2 0 6-4 4 0 4-2l8-4t7-4 8-4 9-4 10-6 10-4q4-2 14-5t16-5l14-4 24-6q6 0 14-4 16-4 26-4h14q6 0 18-1t20-1q176 0 301 125t125 301zM256 768l276-128-148-148zM96 96l832 832-56 54-118-120q-2 2-10 7t-10 7q-2 0-6 4-4 0-4 2-20 14-52 24l-30 12q-2 2-7 2t-7 2l-24 6q-8 4-14 4-16 4-26 4h-12q-12 2-40 2-176 0-301-125t-125-301q0-26 2-38v-14q0-10 4-26 4-8 4-14l6-24 4-14q2-6 5-16t5-14q0-2 4-9t6-11l16-32q2 0 4-4t2-6q2-2 7-10t7-10l-120-118z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "explore_off" - ], - "grid": 24 - }, - { - "id": 992, - "paths": [ - "M410 652l-196-196 84-80 112 110 316-316 84 86zM214 768h596v86h-596v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file_download_done" - ], - "grid": 24 - }, - { - "id": 993, - "paths": [ - "M382 554l-14 86h-256l14-86h256zM354 726l-12 84h-256l12-84h256zM316 384l-14 86h-170l12-86h172zM342 214l-14 84h-170l12-84h172zM386 128h552l-46 302h-114l30-192h-110l-84 548h100l-18 110h-310l18-110h100l86-548h-110l-30 192h-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rtt" - ], - "grid": 24 - }, - { - "id": 994, - "paths": [ - "M810 810v-170h-170v170h170zM554 554h342v342h-342v-342zM810 384v-170h-170v170h170zM554 128h342v342h-342v-342zM384 810v-170h-170v170h170zM128 554h342v342h-342v-342zM384 384v-170h-170v170h170zM128 128h342v342h-342v-342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grid_view" - ], - "grid": 24 - }, - { - "id": 995, - "paths": [ - "M170 682h128v256h-128v-256zM810 102q-4 94-48 163t-122 93v580h-86v-256h-84v256h-86v-508q-18 6-26 14-60 48-60 132v22h-84v-22q0-126 90-204 90-74 208-74 90 0 148-44 66-54 66-148v-20h84v16zM512 256q-34 0-60-26t-26-60 26-59 60-25 60 25 26 59-26 60-60 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hail" - ], - "grid": 24 - }, - { - "id": 996, - "paths": [ - "M512 128l342 256v512h-214v-298h-256v298h-214v-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "home_filled" - ], - "grid": 24 - }, - { - "id": 997, - "paths": [ - "M854 86v256h-598v-86h-86v170h428v214h84v342h-256v-342h86v-128h-426v-342h170v-84h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "imagesearch_roller" - ], - "grid": 24 - }, - { - "id": 998, - "paths": [ - "M938 512l-128 170-468-468h340q44 0 70 36zM138 118l726 724-54 54-84-86h-512q-34 0-60-25t-26-59v-428q0-34 26-60l-68-68z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "label_off" - ], - "grid": 24 - }, - { - "id": 999, - "paths": [ - "M170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84zM532 598l278-282-60-60-218 220-88-88-60 60zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "library_add_check" - ], - "grid": 24 - }, - { - "id": 1000, - "paths": [ - "M170 214v596h342v86h-342q-34 0-59-26t-25-60v-596q0-34 25-60t59-26h342v86h-342zM726 298l212 214-212 214-60-62 110-110h-434v-84h434l-110-112z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "logout" - ], - "grid": 24 - }, - { - "id": 1001, - "paths": [ - "M640 470h86v84h-86v-84zM470 470h84v84h-84v-84zM298 470h86v84h-86v-84zM640 298h86v86h-86v-86zM298 298h86v86h-86v-86zM470 298h84v86h-84v-86zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "margin" - ], - "grid": 24 - }, - { - "id": 1002, - "paths": [ - "M854 498v-72l-278 142-278-142v72l278 142zM854 342q34 0 59 25t25 59v384q0 34-25 60t-59 26h-556q-34 0-59-26t-25-60v-384q0-34 25-59t59-25h556zM804 298h-112l-244-128-278 146v410q-34 0-59-26t-25-60v-334q0-42 34-58l328-162 322 162q30 18 34 50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mark_as_unread" - ], - "grid": 24 - }, - { - "id": 1003, - "paths": [ - "M896 666l-60 60-214-214 214-214 60 60-152 154zM128 256h554v86h-554v-86zM128 554v-84h426v84h-426zM128 768v-86h554v86h-554z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "menu_open" - ], - "grid": 24 - }, - { - "id": 1004, - "paths": [ - "M662 512v-64h64v64h-64zM662 640v-64h84q18 0 31-12t13-30v-108q0-18-13-30t-31-12h-148v256h64zM278 384q-18 0-31 12t-13 30v214h64v-192h44v128h64v-128h42v192h64v-214q0-18-12-30t-30-12h-192zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mp" - ], - "grid": 24 - }, - { - "id": 1005, - "paths": [ - "M768 682v-512h-342v512h342zM768 42q34 0 60 26t26 60v598q0 34-26 59t-60 25h-342q-34 0-59-25t-25-59v-598q0-34 25-60t59-26h342zM682 982h-426q-34 0-60-26t-26-60v-682h86v682h426v86zM622 438q-100 0-152 70 28-132 152-150v-56l104 96-104 96v-56z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "offline_share" - ], - "grid": 24 - }, - { - "id": 1006, - "paths": [ - "M640 298h86v86h-86v-86zM298 298h86v86h-86v-86zM470 298h84v86h-84v-86zM810 810v-596h-596v596h596zM128 128h768v768h-768v-768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "padding" - ], - "grid": 24 - }, - { - "id": 1007, - "paths": [ - "M960 364q22 12 22 34v228q0 24-22 36-20 10-60 26-44 98-124 161t-172 80-184 0-172-80-124-161q-20-8-60-28-22-10-22-34v-228q0-24 22-34 40-20 60-28 50-112 155-181t233-69 233 69 155 181q20 8 60 28zM512 162q-170 0-274 134 272-80 548 0-108-134-274-134zM512 862q70 0 150-39t124-95q-278 80-548 0 106 134 274 134zM914 608v-192q-404-190-804 0v192q2 0 6 2t6 2q156 78 390 78 152 0 258-32 100-28 144-50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_photosphere" - ], - "grid": 24 - }, - { - "id": 1008, - "paths": [ - "M238 728q44 56 124 95t150 39 150-39 124-95q-278 80-548 0zM512 162q-170 0-274 134 272-80 548 0-108-134-274-134zM960 364q22 12 22 34v228q0 24-22 36-20 10-60 26-44 98-124 161t-172 80-184 0-172-80-124-161q-20-8-60-28-22-10-22-34v-228q0-24 22-34 40-20 60-28 50-112 155-181t233-69 233 69 155 181q20 8 60 28z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_photosphere_select" - ], - "grid": 24 - }, - { - "id": 1009, - "paths": [ - "M256 426h38l-38-38v38zM486 618l-106-106h-124v128h-86v-128h-128v-86h128v-124l-170-170 52-56 896 892-56 56-170-170h-424v-86q0-50 54-89t134-61zM982 854h-40l-256-252q104 6 200 52t96 114v86zM470 342q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_add_disabled" - ], - "grid": 24 - }, - { - "id": 1010, - "paths": [ - "M620 740q-80 64-212 110t-236 46h-2q-18 0-30-12t-12-30v-150q0-18 12-30t30-12q80 0 152-24 24-10 44 10l94 94q60-32 98-62l-498-500 60-60 784 784-60 60zM740 620l-62-60q38-50 64-100l-94-94q-18-18-10-44 24-72 24-152 0-18 12-30t30-12h150q18 0 30 12t12 30q0 252-156 450z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_disabled" - ], - "grid": 24 - }, - { - "id": 1011, - "paths": [ - "M742 460l-94-94q-18-18-10-44 24-72 24-152 0-18 12-30t30-12h150q18 0 30 12t12 30q0 300-213 513t-513 213q-18 0-30-12t-12-30v-150q0-18 12-30t30-12q80 0 152-24 24-10 44 10l94 94q186-96 282-282z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "phone_enabled" - ], - "grid": 24 - }, - { - "id": 1012, - "paths": [ - "M598 554l170-170 170 170h-128v68q0 78-55 133t-133 55h-68v128l-170-170 170-170v128h68q42 0 73-30t31-74v-68h-128zM214 896q-34 0-60-26t-26-60v-384h214v470h-128zM128 342v-128q0-34 26-60t60-26h128v214h-214zM426 342v-214h384q34 0 60 26t26 60v128h-470z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pivot_table_chart" - ], - "grid": 24 - }, - { - "id": 1013, - "paths": [ - "M342 810h336l-212-212h-124v212zM52 76l896 892-56 56-128-128h-508v-170h-170v-256q0-50 36-87t88-41l-210-214zM768 298h-384l-128-124v-46h512v170zM810 426q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM814 726l-388-384h384q54 0 91 37t37 91v256h-124z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "print_disabled" - ], - "grid": 24 - }, - { - "id": 1014, - "paths": [ - "M640 426h86v86h-86v-86zM640 170h86v214h-86v-214zM626 546q8 4 18 6h12l6 2h42l8-2q76-12 129-74t53-136q0-86-62-149t-150-65q-56 0-108 30l-2 2-20 12v2q-26 20-36 34l-16 24-8 16-4 6-6 16q-12 36-12 72 0 64 43 123t103 79q2 2 10 2zM384 810q34 0 60-25t26-59-26-60-60-26-60 26-26 60 26 59 60 25zM128 512h310q-54-76-54-170 0-20 4-44h-260v214zM982 342q0 106-75 193t-181 101v110q0 62-44 106t-106 44l64 64v22h-512v-22l64-64q-62 0-106-44t-44-106v-448q0-102 88-136t254-34h8q58 0 80 2 36-36 98-62t112-26q122 0 211 89t89 211z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "railway_alert" - ], - "grid": 24 - }, - { - "id": 1015, - "paths": [ - "M768 506v-36q0-18-12-31t-30-13h-196l24-144v-10q0-18-12-30l-30-28-196 212q-18 14-18 40v216q0 36 25 61t61 25h238q36 0 52-34l90-210q4-8 4-18zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "recommend" - ], - "grid": 24 - }, - { - "id": 1016, - "paths": [ - "M766 298l-156 156-60-60 156-156zM732 576l-62-62 278-276 60 60zM96 180l60-60 724 724-60 60-210-208-114 114-238-238 60-60 178 178 54-54zM76 512l238 238-60 60-238-238z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_done" - ], - "grid": 24 - }, - { - "id": 1017, - "paths": [ - "M840 708l-562-562 234-104 384 172v256q0 122-56 238zM950 928l-54 54-146-146q-104 114-238 146-164-40-274-187t-110-325v-256l-86-86 54-54 222 222t260 259 222 221z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "remove_moderator" - ], - "grid": 24 - }, - { - "id": 1018, - "paths": [ - "M726 726h-428v-128l-170 170 170 170v-128h512v-256h-84v172zM298 298h428v128l170-170-170-170v128h-512v256h84v-172zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "repeat_on" - ], - "grid": 24 - }, - { - "id": 1019, - "paths": [ - "M554 640v-256h-42l-86 42v44h64v170h64zM726 726h-428v-128l-170 170 170 170v-128h512v-256h-84v172zM298 298h428v128l170-170-170-170v128h-512v256h84v-172zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "repeat_one_on" - ], - "grid": 24 - }, - { - "id": 1020, - "paths": [ - "M768 512q0-106-75-181t-181-75v-128l-170 170 170 172v-128q70 0 120 50t50 120-50 120-120 50-120-50-50-120h-86q0 106 75 181t181 75 181-75 75-181zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "replay_circle_filled" - ], - "grid": 24 - }, - { - "id": 1021, - "paths": [ - "M896 426q34 0 60 26t26 60h-2v214q0 34-25 59t-59 25h-214v86h-340v-86h-214q-34 0-60-25t-26-59v-512q0-34 26-60t60-26h768q34 0 60 26t26 60v128h-86v-128h-768v512h768v-214h-342v128l-170-170 170-172v128h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "reset_tv" - ], - "grid": 24 - }, - { - "id": 1022, - "paths": [ - "M618 576v-128h86v128h-86zM406 576h-86v-22h-64v44q0 18 12 30t30 12h128q18 0 31-12t13-30v-64q0-18-13-31t-31-13h-106v-42h86v22h64v-44q0-18-13-30t-31-12h-128q-18 0-30 12t-12 30v64q0 18 12 31t30 13h108v42zM554 384v256h172q18 0 30-12t12-30v-172q0-18-12-30t-30-12h-172zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-36 0-61-25t-25-61v-596q0-36 25-61t61-25h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sd" - ], - "grid": 24 - }, - { - "id": 1023, - "paths": [ - "M512 42l384 172v256q0 178-110 325t-274 187q-164-40-274-187t-110-325v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shield" - ], - "grid": 24 - }, - { - "id": 1024, - "paths": [ - "M632 572l-60 60 134 134-88 88h236v-236l-88 88zM618 170l88 88-536 536 60 60 536-536 88 88v-236h-236zM452 392l-222-222-60 60 222 222zM896 42q34 0 60 26t26 60v768q0 34-26 60t-60 26h-768q-34 0-60-26t-26-60v-768q0-34 26-60t60-26h768z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shuffle_on" - ], - "grid": 24 - }, - { - "id": 1025, - "paths": [ - "M512 682q-34 0-60-25t-26-59q0-36 26-62l362-240-242 362q-24 24-60 24zM870 366q28 44 48 112t20 120q0 118-56 212-26 44-74 44h-592q-48 0-74-44-56-94-56-212 0-176 125-301t303-125q52 0 119 20t111 48l-80 52q-72-36-152-36-140 0-241 100t-101 242q0 92 46 170h592q46-78 46-170 0-82-36-154z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "speed" - ], - "grid": 24 - }, - { - "id": 1026, - "paths": [ - "M470 384h128v128h-128v-128zM470 554h128v300h-128v-300zM682 554h128v86h-128v-86zM682 682h128v172h-128v-172zM256 214h128v170h-128v-170zM256 426h128v428h-128v-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stacked_bar_chart" - ], - "grid": 24 - }, - { - "id": 1027, - "paths": [ - "M426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61zM844 780l-62 60q-36-36-102-103t-82-83l60-60 14 16zM428 656q-36 36-103 102t-83 82l-62-60q36-36 103-102t83-82zM594 368l188-188 62 60-188 188zM428 366l-60 60-14-12-170-174 60-60 12 14h2zM426 854q0-36 25-61t61-25 61 25 25 61-25 60-61 24-61-24-25-60zM86 512q0-36 24-61t60-25 61 25 25 61-25 61-61 25-60-25-24-61zM768 512q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stream" - ], - "grid": 24 - }, - { - "id": 1028, - "paths": [ - "M858 166l80-80v212h-212l88-88q-34-44-116-74t-186-30-186 30-116 74l88 88h-212v-212l80 80q48-56 141-90t205-34 205 34 141 90zM842 694v8l-32 224q-4 24-21 40t-41 16h-290q-24 0-44-20l-212-210 34-34q14-14 34-14h10l146 32v-458q0-26 19-45t45-19 45 19 19 45v256h34q6 0 22 4l194 96q38 18 38 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "swipe" - ], - "grid": 24 - }, - { - "id": 1029, - "paths": [ - "M854 682v-64q0-56-88-92t-168-36-168 36-88 92v64h512zM598 170q-52 0-90 38t-38 90 38 90 90 38 90-38 38-90-38-90-90-38zM854 86q34 0 59 25t25 59v512q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h512zM170 256v598h598v84h-598q-34 0-59-25t-25-59v-598h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "switch_account" - ], - "grid": 24 - }, - { - "id": 1030, - "paths": [ - "M598 598v-172h-172v172h172zM854 426h-172v172h172v84h-172v172h-84v-172h-172v172h-84v-172h-172v-84h172v-172h-172v-84h172v-172h84v172h172v-172h84v172h172v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tag" - ], - "grid": 24 - }, - { - "id": 1031, - "paths": [ - "M854 640q-18 0-31-12t-13-30v-384q0-18 13-31t31-13h84v470h-84zM426 938l-18-20q-24-24-38-52-6-14-4-28l40-198h-236q-34 0-59-26t-25-60v-46q0-20 6-34l114-262q26-42 74-42h346q42 0 71 29t29 71v334q0 36-26 62zM464 780l176-174v-336q0-14-14-14h-346l-110 252v46h236q38 0 65 31t17 71z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_down_off_alt" - ], - "grid": 24 - }, - { - "id": 1032, - "paths": [ - "M170 384q18 0 31 12t13 30v384q0 18-13 31t-31 13h-84v-470h84zM598 86l18 20q24 24 38 52 6 14 4 28l-40 198h236q34 0 59 26t25 60v46q0 18-6 34l-114 262q-26 42-74 42h-346q-42 0-71-29t-29-71v-334q0-36 26-62zM560 244l-176 174v336q0 14 14 14h346l110-252v-46h-236q-38 0-65-31t-17-71z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "thumb_up_off_alt" - ], - "grid": 24 - }, - { - "id": 1033, - "paths": [ - "M298 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 298q88 0 150 63t62 151-62 151-150 63h-428q-88 0-150-63t-62-151 62-151 150-63h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "toggle_off" - ], - "grid": 24 - }, - { - "id": 1034, - "paths": [ - "M726 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM726 298q88 0 150 63t62 151-62 151-150 63h-428q-88 0-150-63t-62-151 62-151 150-63h428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "toggle_on" - ], - "grid": 24 - }, - { - "id": 1035, - "paths": [ - "M234 534q-34 0-59 25t-25 59 25 60 59 26 60-26 26-60-26-59-60-25zM790 470q62 0 105 43t43 105-43 106-105 44-106-44-44-106q0-66 50-110l-18-22-118 196h-128l-44-40q-10 54-52 90t-96 36q-62 0-105-44t-43-106q0-24 8-47t21-41 33-32 42-22l-40-34h-64v-36h156l90 56 144-56h130l-52-64h-84v-44h122l52 66 124-48v90h-90l56 74q10-2 19-5t18-4 19-1zM790 534q-34 0-60 25t-26 59 26 60 60 26 59-26 25-60-25-59-59-25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "two_wheeler" - ], - "grid": 24 - }, - { - "id": 1036, - "paths": [ - "M342 640l170-170 170 170-60 62-68-68v176h-84v-176l-68 66zM768 854v-470h-214v-214h-298v684h512zM598 86l256 256v512q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59l2-684q0-34 25-59t59-25h342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "upload_file" - ], - "grid": 24 - }, - { - "id": 1037, - "paths": [ - "M726 938v-84h128v-128h84v148q0 26-19 45t-45 19h-148zM298 938h-148q-26 0-45-19t-19-45v-148h84v128h128v84zM726 86h148q26 0 45 19t19 45v148h-84v-128h-128v-84zM298 86v84h-128v128h-84v-148q0-26 19-45t45-19h148zM554 736l172-98v-196l-172 98v196zM512 466l170-98-170-100-170 100zM298 638l172 98v-196l-172-98v196zM778 324q32 20 32 56v270q0 36-32 56l-234 136q-32 20-64 0l-234-136q-32-20-32-56v-270q0-36 32-56l234-136q16-8 32-8t32 8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_in_ar" - ], - "grid": 24 - }, - { - "id": 1038, - "paths": [ - "M298 426h128v172h-128v-172zM426 214h128v170h-128v-170zM598 170h128v128h-128v-128zM128 554h128v300h-128v-300zM768 170h128v684h-128v-684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "waterfall_chart" - ], - "grid": 24 - }, - { - "id": 1039, - "paths": [ - "M384 598v-172h-86v172h86zM342 170l256 256h-86v428h-342v-428h-84zM598 854v-128l128 128h-128zM598 512l340 342h-106l-234-236v-106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_shade" - ], - "grid": 24 - }, - { - "id": 1040, - "paths": [ - "M152 338l60-60 90 90-60 60zM470 170h84v128h-84v-128zM86 682h852v172h-852v-172zM764 598h-504q16-92 87-153t165-61 165 61 87 153zM724 370l90-90 60 60-90 90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wb_twighlight" - ], - "grid": 24 - }, - { - "id": 1041, - "paths": [ - "M426 128h556v768h-256v-170h84v-86h-84v-86h84v-84h-84v-78l-86-58v-36h-54q-68-44-160-106v-64zM348 244l292 194v458h-214v-342h-170v342h-214v-448z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "home_work" - ], - "grid": 24 - }, - { - "id": 1042, - "paths": [ - "M682 896q88 0 151-63t63-151-63-151-151-63q-86 0-149 62t-63 150v4q0 88 62 150t150 62zM682 384q124 0 212 88t88 210-89 211-211 89q-102 0-181-61t-105-157l-310 132v-298l384-86-384-86v-298zM704 534v138l96 64-32 54-128-86v-170h64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "schedule_send" - ], - "grid": 24 - }, - { - "id": 1043, - "paths": [ - "M470 896h-44l44-298h-150q-32 0-16-28 6-10 2-6 102-178 248-436h44l-44 298h150q28 0 18 28z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bolt" - ], - "grid": 24 - }, - { - "id": 1044, - "paths": [ - "M704 854l-150-172h86v-128h128v128h86zM896 896v-384h-384v384h384zM896 426q34 0 60 26t26 60v384q0 34-26 60t-60 26h-384q-34 0-60-26t-26-60v-150l-340 150v-298l384-86-384-86v-298l682 298h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "send_and_archive" - ], - "grid": 24 - }, - { - "id": 1045, - "paths": [ - "M768 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM512 128q70 0 120 50t50 120-50 121-120 51-120-51-50-121 50-120 120-50zM256 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "workspaces_filled" - ], - "grid": 24 - }, - { - "id": 1046, - "paths": [ - "M682 426v214q0 70-50 120t-120 50-120-50-50-120v-278q0-44 31-75t75-31h12q42 4 68 37t26 75v272h-84v-278q0-20-22-20t-22 20v278q0 34 26 60t60 26 60-26 26-60v-214h84zM256 854h512v-512h-170v-172h-342v684zM640 86l214 212v556q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-34 26-59t60-25h384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "file_present" - ], - "grid": 24 - }, - { - "id": 1047, - "paths": [ - "M768 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM768 640q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26zM512 128q70 0 120 50t50 120-50 121-120 51-120-51-50-121 50-120 120-50zM512 214q-34 0-60 25t-26 59 26 60 60 26 60-26 26-60-26-59-60-25zM256 554q70 0 120 51t50 121-50 120-120 50-120-50-50-120 50-121 120-51zM256 640q-34 0-60 26t-26 60 26 59 60 25 60-25 26-59-26-60-60-26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "workspaces_outline" - ], - "grid": 24 - }, - { - "id": 1048, - "paths": [ - "M768 342v340h-512v-340h512zM298 768v86h-128q-34 0-59-26t-25-60v-86h84v86h128zM854 682h84v86q0 34-25 60t-59 26h-128v-86h128v-86zM170 342h-84v-86q0-34 25-60t59-26h128v86h-128v86zM726 170h128q34 0 59 26t25 60v86h-84v-86h-128v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fit_screen" - ], - "grid": 24 - }, - { - "id": 1049, - "paths": [ - "M312 534l36-106-92-64h112l36-108 36 108h112l-92 64 36 106-92-66zM406 598q80 0 136-56t56-136-56-136-136-56-136 56-56 136 56 136 136 56zM662 598l212 212-64 64-212-212v-34l-12-12q-76 66-180 66-116 0-197-80t-81-196 81-197 197-81 196 81 80 197q0 42-20 95t-46 85l12 12h34z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "saved_search" - ], - "grid": 24 - }, - { - "id": 1050, - "paths": [ - "M214 810h598v-256h-10q-60 0-96-40-40 40-96 40-54 0-98-40-40 40-94 40-60 0-100-40-36 40-94 40h-10v256zM172 400q-6 28 12 50 14 20 40 20 42 0 50-50l26-206h-84zM362 412q0 22 15 40t37 18q24 0 40-17t16-39v-200h-84l-24 192v6zM554 214v200q0 22 16 39t36 17q26 0 43-19t13-45l-24-192h-84zM806 212l-82 2 26 206q2 20 16 35t34 15q24 0 40-20 18-22 12-50zM934 380q16 70-26 122l-12 12v296q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-296l-12-12q-42-52-26-122l44-188q6-28 30-46t52-18h592q28 0 51 18t31 46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "storefront" - ], - "grid": 24 - }, - { - "id": 1051, - "paths": [ - "M810 256h86v470h-86v-470zM128 256h86v470h-86v-470zM298 170h428v640h-428v-640z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "amp_stories" - ], - "grid": 24 - }, - { - "id": 1052, - "paths": [ - "M170 512v298h384v86h-384q-34 0-59-26t-25-60v-298h84zM854 470v-172h-342v172h342zM854 128q34 0 59 26t25 60v256q0 34-25 59t-59 25h-342q-34 0-60-25t-26-59v-256q0-34 26-60t60-26h342zM342 342v298h384v86h-384q-34 0-60-26t-26-60v-298h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dynamic_feed" - ], - "grid": 24 - }, - { - "id": 1053, - "paths": [ - "M640 790q102 0 180-68l76 76q-108 98-256 98-124 0-223-72t-139-184h-192l42-86h130q-2-12-2-42t2-42h-172l42-86h150q40-112 139-184t223-72q60 0 136 29t120 69l-76 76q-78-68-180-68-70 0-142 44t-104 106h288l-42 86h-274q-4 28-4 42t4 42h316l-42 86h-246q32 62 104 106t142 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "euro" - ], - "grid": 24 - }, - { - "id": 1054, - "paths": [ - "M554 298v428h128l-170 170-170-170h128v-428h-128l170-170 170 170h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "height" - ], - "grid": 24 - }, - { - "id": 1055, - "paths": [ - "M384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90zM896 214v256q0 152-82 284l-124-124q36-54 36-118 0-36-18-81t-44-71-71-44-81-18-80 18-70 44-45 71-19 81 19 80 45 70 70 45 80 19q64 0 118-36l132 134q-104 122-250 158-164-40-274-187t-110-325v-256l384-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "policy" - ], - "grid": 24 - }, - { - "id": 1056, - "paths": [ - "M86 682l170-170v128h640v86h-640v128zM938 342l-170 170v-128h-640v-86h640v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sync_alt" - ], - "grid": 24 - }, - { - "id": 1057, - "paths": [ - "M746 612q52 0 108 10v64q-40-10-108-10-120 0-192 42v-72q76-34 192-34zM554 532q84-34 192-34 52 0 108 10v64q-40-10-108-10-120 0-192 42v-72zM746 448q-120 0-192 42v-70q80-36 192-36 52 0 108 10v66q-48-12-108-12zM896 790v-492q-66-20-150-20-130 0-234 64v490q104-64 234-64 78 0 150 22zM746 192q152 0 236 64v622q0 8-7 15t-15 7q-6 0-10-2-82-44-204-44-130 0-234 64-86-64-234-64-108 0-204 46-2 0-5 1t-5 1q-8 0-15-6t-7-14v-626q86-64 236-64 148 0 234 64 86-64 234-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "menu_book" - ], - "grid": 24 - }, - { - "id": 1058, - "paths": [ - "M768 726v-256h-214l-42-86h-214v256h256l44 86h170zM598 384h256v426h-300l-42-84h-214v170h-84v-652q-44-24-44-74 0-34 26-59t60-25 60 25 26 59q0 50-44 74v54h256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_flags" - ], - "grid": 24 - }, - { - "id": 1059, - "paths": [ - "M170 810h684v86h-684v-86zM854 342v-128h-86v128h86zM854 128q36 0 60 25t24 61v128q0 36-24 60t-60 24h-86v128q0 70-50 121t-120 51h-256q-70 0-121-51t-51-121v-426h172v102l-78 62q-8 6-8 16v182q0 22 22 22h170q22 0 22-22v-182q0-10-8-16l-78-62v-102h470z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_food_beverage" - ], - "grid": 24 - }, - { - "id": 1060, - "paths": [ - "M520 622q22-26 20-57t-26-55q-26-26-58-26-30 0-54 20l68 26q2 0 6 2l16 16 2 4v2zM468 850q40-14 26-54l-50-134q-52 100-30 162 16 42 54 26zM200 610q62 22 162-30l-136-50q-38-14-52 26-16 38 26 54zM512 408q76 26 102 104h68v44h-58q6 80-48 134l-24 18 24 60q6 18 6 42 0 38-24 74t-60 48q-22 6-44 6-68 0-104-54-18 6-48 6-68 0-118-50-70-70-44-166-30-20-47-63t-1-85q12-34 48-59t74-25q24 0 42 6l60 24 18-24q50-50 120-50 2 0 8 1t8 1v-58h42v66zM768 298q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM936 208q14 40-24 64l-36 22 16 52q12 26-5 53t-47 27q-24 0-38-12l-34-30-34 30q-14 12-38 12-30 0-47-27t-5-53l18-52-38-22q-38-24-24-64 14-38 54-38h46l12-40q10-44 56-44t56 44l12 40h48q36 0 52 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_nature" - ], - "grid": 24 - }, - { - "id": 1061, - "paths": [ - "M678 346l190 192-60 60-168-170v510h-86v-256h-84v256h-86v-566q-94-28-154-107t-60-179h86q0 88 62 150t150 62h110q52 0 100 48zM426 170q0-36 25-60t61-24 61 24 25 60-25 61-61 25-61-25-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_people" - ], - "grid": 24 - }, - { - "id": 1062, - "paths": [ - "M214 832q0 8 7 15t13 7q8 0 16-8l46-44-32-30-44 44q-6 6-6 16zM264 600q-6 0-13 6t-7 14q0 10 6 16l14 16 16-16q16-16 0-30-6-6-16-6zM416 680l60 62-60 60 60 60-60 60-60-60-46 46q-30 30-76 30t-76-30q-32-32-32-76t32-76l46-46-14-14q-32-32-32-76t31-75 75-31 76 31 32 75-32 76l-14 14 30 32zM662 470q-44 0-76-32t-32-76 32-75 76-31q36 0 64 22v-192h170v84h-128v192q0 44-31 76t-75 32zM768 832q0-28 18-46t46-18 46 18 18 46-18 46-46 18-46-18-18-46zM554 618q0-26 19-45t45-19 45 19 19 45-19 45-45 19-45-19-19-45zM530 862l332-332 60 60-332 332zM256 470v-172h-128v-84h342v84h-128v172h-86zM128 86h342v84h-342v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_symbols" - ], - "grid": 24 - }, - { - "id": 1063, - "paths": [ - "M214 810h84v86h-84v-86zM214 640h84v86h-84v-86zM426 214h86v84h-86v-84zM214 470h84v84h-84v-84zM598 384v-214h-256v214h-214v512h-42v-554h212v-214h342v256h-42zM854 726q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM512 726q18 0 30-13t12-31-12-30-30-12-30 12-12 30 12 31 30 13zM530 470l-44 128h394l-44-128h-306zM878 454l60 176v236q0 12-9 21t-21 9h-26q-12 0-20-10t-8-22v-54h-342v54q0 12-9 22t-21 10h-26q-28 0-28-30l-2-236 62-176q10-28 42-28h306q32 0 42 28z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_transportation" - ], - "grid": 24 - }, - { - "id": 1064, - "paths": [ - "M298 640h342v86h-342v-86zM298 512h342v86h-342v-86zM298 384h342v86h-342v-86zM810 86v128h128v84h-128v128h-84v-128h-128v-84h128v-128h84zM726 820v-308h84v298q0 34-25 60t-59 26h-512q-34 0-60-26t-26-60v-512q0-34 26-59t60-25h298v84h-298v522h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "post_add" - ], - "grid": 24 - }, - { - "id": 1065, - "paths": [ - "M384 554q64 0 140 18t139 60 63 94v128h-684v-128q0-52 63-94t139-60 140-18zM640 512q-26 0-56-10 56-66 56-160 0-38-16-86t-40-76q30-10 56-10 70 0 120 51t50 121-50 120-120 50zM214 342q0-70 50-121t120-51 120 51 50 121-50 120-120 50-120-50-50-120zM712 560q106 16 188 59t82 107v128h-172v-128q0-98-98-166z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "people_alt" - ], - "grid": 24 - }, - { - "id": 1066, - "paths": [ - "M662 470q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM512 768q72 0 130-47t84-123h-428q26 76 84 123t130 47zM362 342q-26 0-45 19t-19 45 19 45 45 19 45-19 19-45-19-45-45-19zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_emotions" - ], - "grid": 24 - }, - { - "id": 1067, - "paths": [ - "M810 342v-44h-84v164q84-30 84-120zM298 462v-164h-84v44q0 90 84 120zM810 214q34 0 60 25t26 59v44q0 80-54 140t-134 70q-18 44-63 80t-91 46v132h172v86h-428v-86h172v-132q-46-10-91-46t-63-80q-80-10-134-70t-54-140v-44q0-34 26-59t60-25h84v-86h428v86h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_events" - ], - "grid": 24 - }, - { - "id": 1068, - "paths": [ - "M534 486l78-76-30-32-70 70-70-70-30 32 78 76v112h44v-112zM598 726v-44h-172v44h172zM598 810v-42h-172v42h172zM512 128q124 0 211 87t87 211v2q0 56-29 121t-71 101q-28 24-28 62v98q0 34-25 60t-59 26h-12q-24 42-74 42t-74-42h-12q-34 0-59-26t-25-60v-98q0-38-28-62-126-112-96-280 16-88 81-154t153-82q30-6 60-6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "emoji_objects" - ], - "grid": 24 - }, - { - "id": 1069, - "paths": [ - "M382 554h88v382q-62-6-139-43t-123-83q62-34 113-110t61-146zM730 554h206q-10 100-66 188-50-24-90-79t-50-109zM154 742q-58-90-66-188h206q-10 54-50 109t-90 79zM642 554q10 70 61 146t113 110q-44 46-121 83t-141 43v-382h88zM382 470q-10-70-61-146t-113-110q44-46 121-83t141-43v382h-88zM642 470h-88v-382q62 6 139 43t123 83q-62 34-113 110t-61 146zM294 470h-206q10-100 66-188 50 24 90 79t50 109zM730 470q10-54 50-109t90-79q56 88 66 188h-206z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_basketball" - ], - "grid": 24 - }, - { - "id": 1070, - "paths": [ - "M640 234q0-62 44-105t106-43 105 43 43 105-43 106-105 44-106-44-44-106zM612 758l60-60 182 180-62 60zM642 546q12 12 12 30t-12 30l-120 122q-12 12-30 12t-30-12l-364-362q-12-12-12-30t12-30l122-122q12-12 30-12t30 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_cricket" - ], - "grid": 24 - }, - { - "id": 1071, - "paths": [ - "M726 554q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM640 426q18 0 30-12t12-30-12-30-30-12-30 12-12 30 12 30 30 12zM470 470v-44h-86v-84h-42v84h-86v44h86v84h42v-84h86zM920 686q8 50-25 87t-83 37q-44 0-76-32l-96-96h-256l-96 96q-32 32-78 32t-77-31-31-77q0-2 1-8t1-8l46-326q8-62 56-104t112-42h388q62 0 110 43t58 103z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_esports" - ], - "grid": 24 - }, - { - "id": 1072, - "paths": [ - "M896 358l-230-230q70-2 129 8t71 22 22 70 8 130zM422 662l240-240-60-60-240 240zM558 140l326 326q-32 178-136 282t-282 136l-326-326q32-178 136-282t282-136zM128 666l230 230q-70 2-129-8t-71-22-22-70-8-130z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_football" - ], - "grid": 24 - }, - { - "id": 1073, - "paths": [ - "M298 810v-84h428v84h-86q-34 0-60 26t-26 60v42h-84v-42q0-34-26-60t-60-26h-86zM470 256q0-18 12-30t30-12 30 12 12 30-12 30-30 12-30-12-12-30zM554 342q0-18 13-31t31-13 30 13 12 31-12 30-30 12-31-12-13-30zM384 342q0-18 12-31t30-13 31 13 13 31-13 30-31 12-30-12-12-30zM512 170q-88 0-151 63t-63 151 63 151 151 63 151-63 63-151-63-151-151-63zM512 682q-124 0-211-87t-87-211 87-211 211-87 211 87 87 211-87 211-211 87z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_golf" - ], - "grid": 24 - }, - { - "id": 1074, - "paths": [ - "M580 548l60 134h170v172l-200-2q-26 0-38-22l-60-132q-14-28-38-82t-30-68l-174-378h144l98 222q4-10 13-29t11-23l74-170h144zM896 682q18 0 30 13t12 31v128h-84v-172h42zM384 682l36-82 68 148-36 82q-12 22-38 22l-200 2v-172h170zM86 726q0-18 12-31t30-13h42v172h-84v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_hockey" - ], - "grid": 24 - }, - { - "id": 1075, - "paths": [ - "M640 426v-128h-342v128h342zM768 298q18 0 30 13t12 31v118q0 12-2 18l-34 170q-8 34-40 34h-444q-34 0-40-34l-34-170q-2-6-2-18v-246q0-34 25-60t59-26h342q34 0 60 26t26 60v128q0-18 12-31t30-13zM298 854v-128h428v128q0 18-13 30t-31 12h-340q-18 0-31-12t-13-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_mma" - ], - "grid": 24 - }, - { - "id": 1076, - "paths": [ - "M936 478q14 152-87 264t-251 112h-428q-34 0-59-26t-25-60v-34q0-38 8-94h348q62 0 108-46t46-108q0-102-92-142l-204-86q108-78 254-86 144-10 256 79t126 227zM512 486q0 28-20 48t-48 20h-332q38-140 120-232l238 100q42 16 42 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_motorsports" - ], - "grid": 24 - }, - { - "id": 1077, - "paths": [ - "M692 692q130-130 138-342-70 154-198 282t-282 198q210-6 342-138zM332 332q-130 130-138 342 30-64 88-147t110-135q128-128 282-198-210 6-342 138zM874 150q34 34 42 136t-31 239-131 229q-84 84-199 123t-227 39q-136 0-178-42-34-34-42-136t31-239 131-229q84-84 199-123t227-39q136 0 178 42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_rugby" - ], - "grid": 24 - }, - { - "id": 1078, - "paths": [ - "M770 734q84-96 84-222 0-4-1-8t-1-6l-42-32-60 20-62 186 34 58zM608 640l58-172-154-108-154 108 58 172h192zM618 836l30-64-26-46h-218l-28 46 30 64q50 18 106 18t106-18zM302 730l34-58-62-186-60-20-42 32q0 2-1 6t-1 8q0 52 25 117t59 105zM412 186q-50 14-105 56t-83 86l18 58 58 18 170-118v-60zM554 226v60l170 118 58-18 18-58q-28-44-83-86t-105-56zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_soccer" - ], - "grid": 24 - }, - { - "id": 1079, - "paths": [ - "M384 512q0-36 25-61t61-25 60 25 24 61-24 61-60 25-61-25-25-61zM470 640q52 0 90-38t38-90-38-90-90-38-90 38-38 90 38 90 90 38zM192 384q22 0 22-22 0-20-22-20t-22 20q0 22 22 22zM480 256h458v172h-172q-20 0-33 14t-11 34q6 46-2 88-16 80-78 136t-144 66q-4 0-14 1t-14 1q-106 0-181-75t-75-181v-12q0-14 4-34-16 4-26 4-44 0-75-32t-31-76 31-75 75-31q36 0 64 21t38 53q78-74 186-74z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports" - ], - "grid": 24 - }, - { - "id": 1080, - "paths": [ - "M936 462l-382-220v-154q148 16 256 121t126 253zM344 904l382-220 132 78q-128 176-346 176-88 0-168-34zM554 340l382 220q-8 66-36 126l-346-198v-148zM512 562l128 74-382 218q-50-36-92-94zM470 488l-128 74v-440q62-28 128-34v400zM256 172v438l-132 78q-38-86-38-176 0-212 170-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_volleyball" - ], - "grid": 24 - }, - { - "id": 1081, - "paths": [ - "M768 640q70 0 120 50t50 120-50 121-120 51-120-50-50-122q0-70 50-120t120-50zM768 726q-36 0-60 24-26 26-26 60t26 60 60 26q36 0 60-24 26-26 26-61t-26-61q-24-24-60-24zM440 498q50 50 135 37t153-81 81-153-37-135-134-36-152 82-82 152 36 134zM832 106q74 76 62 195t-106 213q-50 50-115 79t-119 29h-65t-34 1-37 5-33 10-35 17-30 25l-180 180-62-60 182-180q14-14 25-30t17-35 10-34 5-38 1-34v-65q0-52 29-117t79-115q94-94 213-108t193 62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_tennis" - ], - "grid": 24 - }, - { - "id": 1082, - "paths": [ - "M544 162q-32-18-32-54 0-28 18-46t46-18q38 0 56 32t0 62q-14 22-40 30t-48-6zM676 444q92 76 109 189t-37 199l-74-44q28-50 28-106 0-64-42-126l-268 464-74-42 128-222-74-42-64 110-72-42 218-380q-66-72-78-170t38-186l74 44q-44 76-22 161t98 129zM608 256q18-30 53-40t65 8 39 53-9 65-52 39-64-9-40-52 8-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_handball" - ], - "grid": 24 - }, - { - "id": 1083, - "paths": [ - "M480 450q66 66 154 66l6 88q-124 0-216-88l-30-30-100 102 90 90v256h-86v-220l-54-50v94l-182 180-60-60 156-154-46-126q0-2-2-7t-3-9-1-8q-4-36 26-66l142-142q26-26 60-26 30 0 48 14 12 12 98 96zM470 358q-32-6-54-36t-14-64q6-46 52-64 12-4 18-4 4 0 8-2h6q4 0 9 1t7 1q20 0 44 24t25 58-25 62q-12 12-28 18-2 0-7 3t-9 3q-6 2-16 2-2 0-8-1t-8-1zM1024 506h-86v-144l-76-30 38 190t44 222 38 190h-90l-78-342-88 86v256h-86v-320q36-34 90-86l-26-128q-36 40-90 70-60-6-106-52 100-18 144-98l44-70q40-64 112-34l216 90v200zM618 102q0-36 25-61t61-25 61 25 25 61-25 60-61 24-61-24-25-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_kabaddi" - ], - "grid": 24 - }, - { - "id": 1084, - "paths": [ - "M258 344q66-66 215-109t265-55l116-10q-2 50-11 129t-53 240-110 227q-68 68-162 83t-176-25q18-100 86-217t144-181q-218 112-314 340-36-36-62-99t-26-113 26-112 62-98z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "eco" - ], - "grid": 24 - }, - { - "id": 1085, - "paths": [ - "M682 768v-298h-84l-86 128-86-128h-84v298h84v-170l86 128 86-128v170h84zM938 470h-84v384h84v84h-852v-84h84v-384h-84v-86l426-298 426 298v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "museum" - ], - "grid": 24 - }, - { - "id": 1086, - "paths": [ - "M682 598h256v256h-84v-86q-128 170-342 170-154 0-271-97t-147-243h88q28 110 120 183t210 73q92 0 171-47t123-125h-124v-84zM342 426h-256v-256h84v86q128-170 342-170 154 0 271 97t147 243h-88q-28-110-120-183t-210-73q-92 0-171 47t-123 125h124v84zM384 512q0-52 38-90t90-38 90 38 38 90-38 90-90 38-90-38-38-90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flip_camera_android" - ], - "grid": 24 - }, - { - "id": 1087, - "paths": [ - "M704 662l106-108h-84q0-88-63-150t-151-62q-52 0-100 26l30 30q28-14 70-14 70 0 120 50t50 120h-84zM512 768q52 0 100-26l-30-32q-32 16-70 16-70 0-120-51t-50-121h84l-106-106-106 106h84q0 88 63 151t151 63zM854 214q34 0 59 25t25 59v512q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-512q0-34 25-59t59-25h136l78-86h256l78 86h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flip_camera_ios" - ], - "grid": 24 - }, - { - "id": 1088, - "paths": [ - "M780 598l30 30-76 76 76 76-30 30-76-76-76 76-30-30 76-76-76-76 30-30 76 76zM704 938q98 0 166-68t68-166-68-166-166-68-166 68-68 166 68 166 166 68zM704 384q132 0 226 94t94 226-94 226-226 94q-120 0-210-79t-106-197l-344 148-2-298 384-86-384-86 2-298 608 260q36-4 52-4z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cancel_schedule_send" - ], - "grid": 24 - }, - { - "id": 1089, - "paths": [ - "M810 640v-86h-84v86h84zM810 810v-84h-84v84h84zM640 298v-84h-86v84h86zM640 470v-86h-86v86h86zM640 640v-86h-86v86h86zM470 298v-84h-86v84h86zM470 470v-86h-86v86h86zM470 640v-86h-86v86h86zM298 470v-86h-84v86h84zM298 640v-86h-84v86h84zM298 810v-84h-84v84h84zM726 470h170v426h-342v-170h-84v170h-342v-598h170v-170h428v342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "apartment" - ], - "grid": 24 - }, - { - "id": 1090, - "paths": [ - "M854 554h84v256q0 34-25 60t-59 26q0 18-13 30t-31 12h-596q-18 0-31-12t-13-30q-34 0-59-26t-25-60v-256h128v-32q0-38 29-67t67-29q40 0 72 32l58 66q12 14 36 30h292v-348q0-14-10-25t-26-11q-14 0-24 10l-54 54q4 16 4 22 0 22-14 46l-118-118q24-14 46-14 10 0 22 4l54-54q34-34 84-34t86 35 36 85v348zM214 298q0-36 24-60t60-24 61 24 25 60-25 61-61 25-60-25-24-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bathtub" - ], - "grid": 24 - }, - { - "id": 1091, - "paths": [ - "M814 682l34-170 82 16-34 186v224h-86v-170h-84v170h-86v-256h174zM176 512l34 170h174v256h-86v-170h-84v170h-86v-224l-34-186zM938 384h-384v554h-84v-554h-384l426-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "deck" - ], - "grid": 24 - }, - { - "id": 1092, - "paths": [ - "M854 854v-684h-684v684h86v-86h96q-50-64-54-128l-2-12v-18t3-25 7-32 12-36 21-40 33-42 45-45 60-46 77-46q-4 12-6 33t20 74 78 91q80 56 80 144 0 70-44 128h86v86h86zM506 724q40 34 89 15t55-73q4-38-36-78t-48-56q-10 28-4 54 2 8 6 23t5 22-1 23q-4 20-23 41t-43 29zM86 86h852v852h-852v-852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fireplace" - ], - "grid": 24 - }, - { - "id": 1093, - "paths": [ - "M426 426h172q0-34-26-59t-60-25-60 25-26 59zM810 396l128 116h-128v342h-212v-256h-172v256h-212v-342h-128l426-384 170 154v-112h128v226z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "house" - ], - "grid": 24 - }, - { - "id": 1094, - "paths": [ - "M768 426v-128h-214v128h214zM470 426v-128h-214v128h214zM854 426q34 0 59 26t25 60v214h-56l-28 84h-44l-28-84h-540l-28 84h-44l-28-84h-56v-214q0-34 25-60t59-26v-128q0-34 26-59t60-25h512q34 0 60 25t26 59v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "king_bed" - ], - "grid": 24 - }, - { - "id": 1095, - "paths": [ - "M298 682q34 0 60 26t26 60-26 60-60 26h-128q-52 0-90-38t-38-90 38-90 90-38q90 0 120 84h8zM474 516q66 128 183 184t211 46q-58 90-152 142t-204 52q-68 0-134-22 92-52 92-150 0-54-36-101t-88-63q-66-92-176-92-46 0-84 18 0-2-1-8t-1-10q0-172 120-296t292-130q-30 46-50 100t-19 148 47 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nights_stay" - ], - "grid": 24 - }, - { - "id": 1096, - "paths": [ - "M614 298q14-54-18-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-44zM508 298q12-54-20-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-42zM402 298q12-54-20-86-50-52-38-126h42q-10 50 20 86 34 38 40 65t-2 61h-42zM726 768q-18 0-31 12t-13 30 13 31 31 13 30-13 12-31-12-30-30-12zM726 938q-42 0-74-24t-46-62h-272l-42 68q-10 18-36 18-16 0-24-6-18-10-18-36 0-16 6-24l170-258q-80-36-128-109t-48-163h596q0 80-51 160t-123 112l24 38q-40 16-68 52l-42-66q-10 2-38 2t-38-2l-84 130h216q14-38 46-62t74-24q52 0 90 38t38 90-38 90-90 38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outdoor_grill" - ], - "grid": 24 - }, - { - "id": 1097, - "paths": [ - "M256 512v128h512v-128h-512zM342 298v128h128v-128h-128zM682 426v-128h-128v128h128zM854 512v214h-58l-28 84h-42l-28-84h-370l-30 84h-42l-28-84h-58v-214q0-34 26-60t60-26v-128q0-34 26-59t60-25h340q34 0 60 25t26 59v128q34 0 60 26t26 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "single_bed" - ], - "grid": 24 - }, - { - "id": 1098, - "paths": [ - "M298 726h246l-246-246v246zM754 754l100 100h-598q-34 0-60-26t-26-60v-598l100 100-44 46 30 30 44-46 84 84-46 44 30 32 46-46 84 84-46 44 30 30 46-44 82 82-46 46 32 30 44-46 84 84-46 44 30 30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "square_foot" - ], - "grid": 24 - }, - { - "id": 1099, - "paths": [ - "M362 214l214 298-214 298h-192l214-298-214-298h192zM662 214l212 298-212 298h-192l212-298-212-298h192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "double_arrow" - ], - "grid": 24 - }, - { - "id": 1100, - "paths": [ - "M598 512q0 92 60 183t144 129q-124 114-290 114t-290-114q92-40 148-124t56-188-56-188-148-124q124-114 290-114t290 114q-92 40-148 124t-56 188zM862 268q76 110 76 244t-76 244q-78-24-129-92t-51-152 51-152 129-92zM162 268q78 24 129 92t51 152-51 152-129 92q-76-110-76-244t76-244z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_baseball" - ], - "grid": 24 - }, - { - "id": 1101, - "paths": [ - "M164 408q-26-20-32-51t10-59 47-38 59 2q30-32 83-62t97-40q4-32 28-53t56-21 56 21 28 53q102 24 178 102 12-6 34-6 50 0 74 42 16 28 10 59t-32 51q14 44 14 104t-14 104q26 20 32 51t-10 59-48 38-60-2q-30 30-56 48l56 128h-78l-42-92q-26 12-58 18-4 32-28 53t-56 21-56-21-28-53q-6-2-19-5t-23-6-18-7l-42 92h-80l58-128q-24-18-54-48-30 12-61 2t-47-38-10-59 32-51q-14-44-14-104t14-104zM220 426q-10 36-10 80 0 50 14 92 46 4 66 42 20 36 4 76 18 16 38 32l64-144q-32-38-32-92 0-60 43-102t105-42 105 42 43 102q0 50-34 94l64 142q14-10 38-34-16-40 8-77t62-39q16-48 16-92 0-36-12-80-48-4-68-42-24-40 0-84-60-66-148-88-24 44-74 44t-74-44q-84 22-148 88 24 44 0 84-20 38-70 42zM446 800q26-32 66-32t66 32q16-4 48-16l-60-136q-24 10-54 10-32 0-56-10l-60 136q32 12 50 16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "attractions" - ], - "grid": 24 - }, - { - "id": 1102, - "paths": [ - "M588 640h-152l-32-294q-2-20 10-34t28-14h140q16 0 28 14t10 34zM368 400l28 240h-76l-90-174q-20-38 16-60l68-38q16-10 34 0t20 32zM656 400q4-22 20-32t34 0l68 38q36 22 14 60l-88 174h-76zM202 698q-10 6-24 6-24 0-36-24l-10-20q-10-24 2-42l36-54q10-18 34-18t34 18l42 76zM822 698l-78-58q14-26 42-76 10-18 34-18t34 18l34 54q14 20 4 42l-10 20q-10 24-36 24-14 0-24-6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bakery_dining" - ], - "grid": 24 - }, - { - "id": 1103, - "paths": [ - "M598 640v-170h-172v170h172zM768 128q70 0 120 50t50 120q0 98-84 148v364q0 34-26 60t-60 26h-512q-34 0-60-26t-26-60v-364q-84-50-84-148 0-70 50-120t120-50h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "breakfast_dining" - ], - "grid": 24 - }, - { - "id": 1104, - "paths": [ - "M342 214q18 0 30-13t12-31-12-30-30-12-31 12-13 30 13 31 31 13zM462 128h348v86h-42v84h-86v-84h-220q-30 84-120 84-52 0-90-38t-38-90 38-90 90-38q38 0 73 25t47 61zM268 598h488l-56-172h-374zM692 768q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15zM332 768q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15zM700 384q28 0 40 30l70 212v292q0 20-20 20h-44q-20 0-20-20v-64h-428v64q0 20-20 20h-44q-20 0-20-22v-290l70-212q10-30 40-30h376z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "car_rental" - ], - "grid": 24 - }, - { - "id": 1105, - "paths": [ - "M170 726h684v84h-300v128h-84v-128h-300v-84zM736 154q6 12 74 216v278q0 34-32 34h-20q-32 0-32-34v-50h-428v50q0 34-32 34h-20q-32 0-32-34v-278q58-172 66-200 0-2 4-7t4-9l2-2q8-10 18-16t16-8h370q24 2 40 24 2 0 2 2zM324 170l-56 172h488l-58-172h-374zM280 460q0 22 15 37t37 15 37-15 15-37-15-37-37-15-37 15-15 37zM692 512q22 0 37-15t15-37-15-37-37-15-37 15-15 37 15 37 37 15z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "car_repair" - ], - "grid": 24 - }, - { - "id": 1106, - "paths": [ - "M170 704v-362h-42v-44h42v-42h-42v-42h42v-44h-42v-42h256q32 2 57 27t29 59h426v42h-426q-4 34-29 61t-57 25h-86v300q4 0 11-1t11-1q36 0 82 18 26-60 90-103t128-43q98 0 166 68t68 166q0 4-1 12t-1 10h-718q8-32 36-64zM256 650v-308h-42v328q30-16 42-20zM384 298v-42h-86v42h86zM384 170h-86v44h86v-44zM214 170v44h42v-44h-42zM214 256v42h42v-42h-42zM86 810h852l-84 86h-684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dinner_dining" - ], - "grid": 24 - }, - { - "id": 1107, - "paths": [ - "M792 598q18 0 18-18 0-14-10-18l-288-128-288 128q-10 4-10 16 0 20 18 20h66v-44h428v44h66zM834 484q62 26 62 94v2q0 44-30 73t-74 29h-66v256h-428v-256h-66q-44 0-74-29t-30-73v-2q0-66 62-92l280-126v-26q-44-16-68-57t-16-89q8-38 36-65t66-35q60-10 106 28t46 98h-86q0-18-12-31t-30-13-30 13-12 31 12 30 30 12 30 12 12 30v62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dry_cleaning" - ], - "grid": 24 - }, - { - "id": 1108, - "paths": [ - "M384 554h256v300q0 18-12 30t-30 12h-172q-18 0-30-12t-12-30v-300zM768 128h86v342h-86l-128-128v128h-256v-128h-214q0-88 63-151t151-63h256v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hardware" - ], - "grid": 24 - }, - { - "id": 1109, - "paths": [ - "M854 854v-86h-300v86h300zM554 446v66h300v-66l-42-14q-36-12-61-48t-25-74v-12h-44v12q0 92-86 122zM682 170v44h44v-44h-44zM880 364q58 20 58 82v408q0 34-25 59t-59 25h-300q-34 0-59-25t-25-59v-408q0-62 58-82l40-12q30-10 30-42v-182q0-18 12-30t30-12h128q18 0 30 12t12 30v182q0 28 30 40zM214 342v128h84v-128h-84zM128 598v-342h256v342q0 42-24 74t-62 46v136h86v84h-256v-84h86v-136q-38-14-62-46t-24-74z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "liquor" - ], - "grid": 24 - }, - { - "id": 1110, - "paths": [ - "M86 682h852v86q0 34-25 60t-59 26h-684q-34 0-59-26t-25-60v-86zM228 576q-22 0-48 16-44 26-94 26v-84q22 0 48-16 46-28 94-28 46 0 92 28 26 16 50 16 22 0 48-16 46-28 94-28 46 0 92 28 26 16 50 16 22 0 48-16 46-28 94-28 46 0 92 28l50 16v84q-48 0-92-26-26-16-50-16-22 0-48 16-44 26-94 26-48 0-92-26-26-16-50-16-22 0-48 16-44 26-94 26-48 0-92-26-26-16-50-16zM938 426h-852q-10-104 116-180t310-76 310 76 116 180z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lunch_dining" - ], - "grid": 24 - }, - { - "id": 1111, - "paths": [ - "M726 214h212v128h-128v384q0 52-38 90t-90 38-90-38-38-90 38-90 90-38q26 0 44 6v-390zM430 384l60-86h-298l60 86h178zM42 214h598l-256 384v170h86v86h-256v-86h84v-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nightlife" - ], - "grid": 24 - }, - { - "id": 1112, - "paths": [ - "M726 512l170 256h-300v170h-168v-170h-296l166-256h-82l296-426 298 426h-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "park" - ], - "grid": 24 - }, - { - "id": 1113, - "paths": [ - "M938 128l-512 60v68h512v42h-512v214h512q0 116-71 211t-185 141v74h-340v-74q-114-46-185-141t-71-211h128v-342l724-84v42zM256 208v48h42v-52zM256 298v214h42v-214h-42zM384 512v-214h-42v214h42zM384 256v-62l-42 4v58h42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ramen_dining" - ], - "grid": 24 - }, - { - "id": 1114, - "paths": [ - "M642 250q14-14 14-36t-14-38l-68-68 46-46 68 68q34 38 34 84 0 44-34 82l-154 154-44-46zM728 506q38-34 82-34 46 0 84 34l68 70-44 44-70-68q-16-16-38-16-20 0-36 16l-68 68-46-46zM430 294q14-14 14-38t-14-38l-26-24 46-46 24 24q34 38 34 84 0 44-34 82l-24 26-46-46zM620 534l-46-44 240-240q38-34 82-34 46 0 84 34l24 26-44 46-26-26q-16-16-38-16t-38 16zM86 938l212-596 384 384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "celebration" - ], - "grid": 24 - }, - { - "id": 1115, - "paths": [ - "M810 344q18 0 31-12t13-30-13-30-31-12-30 12-12 30 12 30 30 12zM598 344q18 0 30-12t12-30-12-30-30-12-31 12-13 30 13 30 31 12zM470 128h468v278q0 98-68 166t-166 68q-54 0-106-26v-124h212q0-26-31-45t-75-19-75 19-31 45v-106h-128v-256zM214 554q-18 0-31 13t-13 31 13 30 31 12 30-12 12-30-12-31-30-13zM426 554q-18 0-30 13t-12 31 12 30 30 12 31-12 13-30-13-31-31-13zM320 790q44 0 75-19t31-45h-212q0 26 31 45t75 19zM86 704v-278h468v278q0 98-68 166t-166 68-166-68-68-166z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "theater_comedy" - ], - "grid": 24 - }, - { - "id": 1116, - "paths": [ - "M768 576v-64h-170v64h170zM768 704v-64h-170v64h170zM554 384v-214h-84v214h84zM512 768v-32q0-28-44-46t-84-18-84 18-44 46v32h256zM384 512q-28 0-46 18t-18 46 18 46 46 18 46-18 18-46-18-46-46-18zM854 298q34 0 59 26t25 60v470q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-470q0-34 25-60t59-26h214v-128q0-34 26-59t60-25h84q34 0 60 25t26 59v128h214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "badge" - ], - "grid": 24 - }, - { - "id": 1117, - "paths": [ - "M554 244l384 268v426h-298v-212l-126-86-130 86v212h-298v-426l384-268v-202h212l-42 66 42 62h-128v74z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "festival" - ], - "grid": 24 - }, - { - "id": 1118, - "paths": [ - "M292 554q-50-4-86-41t-36-87q0-46 31-82t77-44q8-90 75-152t159-62 159 62 75 152q46 8 77 44t31 82q0 50-35 87t-85 41l-220 428zM376 530l138 264 136-264q-2-2-7-6t-7-6q-58 36-124 36t-124-36q-2 2-4 5t-4 5-4 2z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "icecream" - ], - "grid": 24 - }, - { - "id": 1119, - "paths": [ - "M854 726q36 0 61 25t25 59l-342 128-300-84v-384h84l310 114q34 14 34 48 0 20-15 35t-37 15h-120l-74-28-14 40 88 32h300zM682 138q46-52 116-52 58 0 99 41t41 99q0 44-42 105t-84 102-130 121q-88-80-130-121t-84-102-42-105q0-58 42-99t100-41q68 0 114 52zM42 470h172v468h-172v-468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "volunteer_activism" - ], - "grid": 24 - }, - { - "id": 1120, - "paths": [ - "M626 740q56-114 56-228 0-116-56-228l-58 30q50 98 50 198t-50 200zM492 684q42-74 42-166 0-94-42-174l-56 28q34 72 34 146 0 72-34 134zM360 616q24-52 24-106 0-48-24-102l-58 26q18 36 18 76 0 42-18 80zM512 86q176 0 301 125t125 301-125 301-301 125-301-125-125-301 125-301 301-125z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contactless" - ], - "grid": 24 - }, - { - "id": 1121, - "paths": [ - "M810 726q18 0 31-13t13-31-13-30-31-12-30 12-12 30 12 31 30 13zM810 554q52 0 90 38t38 90-38 90-90 38-90-38-38-90 38-90 90-38zM214 256h212v86h-212v-86zM298 726q18 0 31-13t13-31h-86q0 18 12 31t30 13zM810 298v144l-192 240h-192q0 52-38 90t-90 38-90-38-38-90h-84v-128q0-70 50-120t120-50h170v214h150l150-186v-114h-128v-84h128q34 0 59 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "delivery_dining" - ], - "grid": 24 - }, - { - "id": 1122, - "paths": [ - "M298 682v-84h172v84h192q20 0 20 22v42q0 22-20 22h-556q-20 0-20-22v-42q0-22 20-22h192zM768 678l-18-18q-28-30-48-80t-20-90v-404h256v406q0 98-64 168l-20 22v172h84v84h-170v-260zM662 938h-556q-20 0-20-20v-64h596v64q0 20-20 20zM768 342h86v-172h-86v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "brunch_dining" - ], - "grid": 24 - }, - { - "id": 1123, - "paths": [ - "M384 170h254l172 144 68-66 60 60-118 118h-616l-118-118 60-60 68 66zM224 470h576l-30 384h-516z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "takeout_dining" - ], - "grid": 24 - }, - { - "id": 1124, - "paths": [ - "M938 470v84h-178l138 138-60 62-198-200h-86v86l200 198-62 60-138-138v178h-84v-178l-138 138-62-60 200-198v-86h-86l-198 200-60-62 138-138h-178v-84h178l-138-138 60-62 198 200h86v-86l-200-198 62-60 138 138v-178h84v178l138-138 62 60-200 198v86h86l198-200 60 62-138 138h178z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ac_unit" - ], - "grid": 24 - }, - { - "id": 1125, - "paths": [ - "M640 470h214l-172-172h-42v172zM746 746q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM554 470v-172h-170v172h170zM256 746q28 0 46-19t18-45-18-45-46-19-46 19-18 45 18 45 46 19zM128 470h170v-172h-170v172zM726 214l256 256v212h-108q0 52-38 90t-90 38-90-38-38-90h-234q0 52-38 90t-90 38-90-38-38-90h-86v-384q0-36 25-60t61-24h598z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "airport_shuttle" - ], - "grid": 24 - }, - { - "id": 1126, - "paths": [ - "M794 282q96 0 163 68t67 162-67 162-163 68h-2q-38 0-85-20t-77-48l-54-48 64-56 50 42q44 44 104 44t102-42 42-102-42-102-102-42-102 42q-142 124-180 160l-120 106q-66 66-162 66t-163-68-67-162 67-162 163-68h2q40 0 87 20t75 48l54 48-66 56-48-42q-44-44-104-44t-102 42-42 102 42 102 102 42 102-42q142-124 180-160l120-106q66-66 162-66z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "all_inclusive" - ], - "grid": 24 - }, - { - "id": 1127, - "paths": [ - "M742 376q-100-100-231-132t-255 10q96-12 211 37t213 147l-244 244q-98-98-147-213t-37-211q-42 124-10 255t132 231l-122 122q-126-126-126-305t126-305q0-2 2-2 140-140 336-124 162 12 274 124zM558 622l62-62 274 276-62 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "beach_access" - ], - "grid": 24 - }, - { - "id": 1128, - "paths": [ - "M598 298v-84h-172v84h172zM854 298q34 0 59 26t25 60v128q0 34-25 60t-59 26h-256v-86h-172v86h-256q-36 0-60-25t-24-61v-128q0-34 25-60t59-26h170v-84l86-86h170l86 86v84h172zM426 682h172v-42h298v170q0 36-25 61t-61 25h-596q-36 0-61-25t-25-61v-170h298v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "business_center" - ], - "grid": 24 - }, - { - "id": 1129, - "paths": [ - "M704 384q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM704 768q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM512 576q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM320 384q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM320 768q28 0 46-18t18-46-18-46-46-18-46 18-18 46 18 46 46 18zM810 128q34 0 60 26t26 60v596q0 34-26 60t-60 26h-596q-34 0-60-26t-26-60v-596q0-34 26-60t60-26h596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "casino" - ], - "grid": 24 - }, - { - "id": 1130, - "paths": [ - "M320 598h384q-24 58-76 93t-116 35-116-35-76-93zM512 810q102 0 181-60t105-154q2 0 6 1t6 1q34 0 60-26t26-60-26-60-60-26q-2 0-6 1t-6 1q-26-94-105-154t-181-60-181 60-105 154q-2 0-6-1t-6-1q-34 0-60 26t-26 60 26 60 60 26q2 0 6-1t6-1q26 94 105 154t181 60zM978 540q-8 44-42 84t-76 52q-44 94-139 157t-209 63q-142 0-254-98-62-54-92-122-42-12-77-52t-43-84q-4-16-4-28t4-28q8-44 43-84t77-52q34-76 92-124 108-96 254-96t254 96q62 58 92 124 42 12 77 52t43 84q4 16 4 28t-4 28zM352 448q0-22 16-38t38-16 37 16 15 38-15 38-37 16-38-16-16-38zM566 448q0-22 15-38t37-16 38 16 16 38-16 38-38 16-37-16-15-38z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "child_care" - ], - "grid": 24 - }, - { - "id": 1131, - "paths": [ - "M726 854q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM342 854q26 0 45-19t19-45-19-45-45-19-45 19-19 45 19 45 45 19zM824 678q50 46 50 112 0 62-43 105t-105 43q-56 0-98-37t-50-91h-90q-8 54-49 91t-97 37q-62 0-106-43t-44-105q0-88 78-132l-90-188h-94v-86h148l40 86h622q0 48-21 109t-51 99zM554 86q142 0 242 100t100 240h-342v-340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "child_friendly" - ], - "grid": 24 - }, - { - "id": 1132, - "paths": [ - "M878 634l60 62-90 90 60 62-60 60-62-60-90 90-62-60-60 60-62-60 152-152-366-366-152 152-60-62 60-60-60-62 90-90-60-62 60-60 62 60 90-90 62 60 60-60 62 60-152 152 366 366 152-152 60 62z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fitness_center" - ], - "grid": 24 - }, - { - "id": 1133, - "paths": [ - "M726 252l-256 132v386q92 4 152 28t60 56q0 34-75 59t-181 25-181-25-75-59q0-50 128-74v74h86v-768zM768 832q0-28 18-46t46-18 46 18 18 46-18 46-46 18-46-18-18-46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "golf_course" - ], - "grid": 24 - }, - { - "id": 1134, - "paths": [ - "M626 250q66 64 54 158l-2 18h-82l6-24q10-54-32-96-68-68-56-160l2-18h82l-4 26q-10 54 28 94zM796 250q68 66 56 158l-4 18h-80l4-24q10-54-28-94l-4-2q-68-68-56-160l4-18h80l-4 26q-10 54 28 94zM810 854v-256h-84v256h84zM640 854v-256h-86v256h86zM470 854v-256h-86v256h86zM298 854v-256h-84v256h84zM476 512h462v342q0 34-25 59t-59 25h-684q-34 0-59-25t-25-59v-342h128v-32q0-40 29-68t67-28q40 0 72 32l58 66q8 10 36 30zM214 256q0-36 24-61t60-25 61 25 25 61-25 61-61 25-60-25-24-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hot_tub" - ], - "grid": 24 - }, - { - "id": 1135, - "paths": [ - "M342 512h84v214h-84v-214zM342 214h84v128h-84v-128zM768 384v-214h-512v214h512zM768 854v-386h-512v386h512zM768 86q36 0 61 24t25 60v684q0 34-26 59t-60 25h-512q-34 0-60-25t-26-59v-684q0-36 25-60t61-24h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "kitchen" - ], - "grid": 24 - }, - { - "id": 1136, - "paths": [ - "M598 234q0-44 31-75t75-31 75 31 31 75-31 76-75 32-75-32-31-76zM370 512q-24 0-50-16-8-6-32-16l138-138-42-44q-64-64-170-64v-106q82 0 134 19t100 67l274 272q-12 8-18 10-26 16-50 16-22 0-48-16-44-26-94-26t-94 26q-26 16-48 16zM938 704q-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28v-86q26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14v86zM938 896q-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28-46 0-92-28-22-14-50-14-26 0-48 14-46 28-94 28t-94-28q-22-14-48-14-28 0-50 14-46 28-92 28v-86q26 0 48-14 46-28 94-28 46 0 92 28 22 14 50 14 26 0 48-14 46-28 94-28t94 28q22 14 48 14 28 0 50-14 46-28 92-28 48 0 94 28 22 14 48 14v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pool" - ], - "grid": 24 - }, - { - "id": 1137, - "paths": [ - "M590 332q126 26 212 123t94 227h-768q8-130 94-227t212-123q-8-16-8-34 0-36 25-60t61-24 61 24 25 60q0 18-8 34zM86 726h852v84h-852v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "room_service" - ], - "grid": 24 - }, - { - "id": 1138, - "paths": [ - "M726 680l-126-126h126v126zM618 372q-58 0-100-43t-42-101 42-100 100-42v64q-34 0-56 21t-22 53q0 34 23 60t55 26h66q60 0 104 39t44 95v68h-64v-54q0-40-25-63t-59-23h-66zM804 208q60 28 97 86t37 130v88h-64v-88q0-72-49-123t-121-51v-64q32 0 55-23t23-57h64q0 60-42 102zM768 554h64v128h-64v-128zM874 554h64v128h-64v-128zM86 256l52-54 726 726-54 54-298-300h-426v-128h298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smoke_free" - ], - "grid": 24 - }, - { - "id": 1139, - "paths": [ - "M684 436q62 0 105 38t43 96v70h-64v-56q0-40-25-63t-59-23h-66q-58 0-100-43t-42-101 42-100 100-42v64q-34 0-56 21t-22 53q0 34 23 60t55 26h66zM804 330q60 28 97 86t37 128v96h-64v-96q0-72-49-122t-121-50v-64q32 0 55-23t23-57q0-32-23-55t-55-23v-64q58 0 100 42t42 100q0 60-42 102zM768 682h64v128h-64v-128zM874 682h64v128h-64v-128zM86 682h640v128h-640v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smoking_rooms" - ], - "grid": 24 - }, - { - "id": 1140, - "paths": [ - "M660 410q-84 46-148 114-64-68-148-114 6-78 50-173t100-151q134 134 146 324zM86 426q136 0 248 66t178 168q66-102 178-168t248-66q0 168-95 302t-247 188q-34 12-84 22-42-6-84-22-152-54-247-188t-95-302z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "spa" - ], - "grid": 24 - }, - { - "id": 1141, - "paths": [ - "M598 490l-362-362h362v42h212v534l-84-86v-362h-128v234zM470 470h-44v84h86v-42l416 416-56 54-274-276v190h-470v-86h86v-488l-172-170 54-56z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_meeting_room" - ], - "grid": 24 - }, - { - "id": 1142, - "paths": [ - "M426 470v84h86v-84h-86zM598 256v640h-470v-86h86v-682h384v42h212v640h86v86h-170v-640h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "meeting_room" - ], - "grid": 24 - }, - { - "id": 1143, - "paths": [ - "M1022 388q2 2 2 5t-2 5l-50 64q-4 4-8 4l-30-6-14 44q-4 8-13 8t-13-8l-28-60-46-10-94 224 34 272q0 8-8 8h-40q-4 0-8-6l-40-162-20-34-50 196q0 6-8 6h-42q-8 0-8-8l46-270h-270l-70 132 16 136q4 10-8 10h-40q-6 0-8-4l-56-204-68 78 12 120q4 10-8 10h-44q-8 0-8-4l-26-112 42-164v-288q-46-18-46-60h548q96 2 190-66-16-44 12-72 56 40 72 50 14 8 23-3t5-25q-18-56-90-84-2 0-6-2-24-6-20-16 0-6 8-6 58 8 99 45t55 71l8 6q6 8 13 16t12 23 3 31q0 10 4 14z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "goat" - ], - "grid": 24 - }, - { - "id": 1144, - "paths": [ - "M726 554h84v86h-212v-256h298q0-36-25-61t-61-25h-212q-36 0-61 25t-25 61v256q0 36 25 61t61 25h212q36 0 61-25t25-61v-170h-170v84zM128 554h214v86h-214v86h214q34 0 59-25t25-61v-86q0-34-25-59t-59-25h-128v-86h212v-86h-298v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "5g" - ], - "grid": 24 - }, - { - "id": 1145, - "paths": [ - "M726 42h-428q-34 0-59 25t-25 61v768q0 36 25 61t59 25h428q34 0 59-25t25-61v-768q0-36-25-61t-59-25zM726 810h-428v-596h428v596zM342 256h340v86h-340v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ad_units" - ], - "grid": 24 - }, - { - "id": 1146, - "paths": [ - "M640 726h86v-128h42v-86l-42-214h-640l-44 214v86h44v256h384v-256h170v128zM384 768h-214v-170h214v170zM86 170h640v86h-640v-86zM854 768v-128h-86v128h-128v86h128v128h86v-128h128v-86h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_business" - ], - "grid": 24 - }, - { - "id": 1147, - "paths": [ - "M854 42v128h128v86h-128v128h-86v-128h-128v-86h128v-128h86zM512 554q36 0 61-25t25-59q0-36-25-61t-61-25-61 25-25 61q0 34 25 59t61 25zM598 138v160h128v128h124q4 28 4 52 0 212-342 504-342-292-342-504 0-80 28-144t76-110 109-71 129-25q44 0 86 10z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_location_alt" - ], - "grid": 24 - }, - { - "id": 1148, - "paths": [ - "M854 768v-128h-86v128h-128v86h128v128h86v-128h128v-86h-128zM768 170h86v384h-86v-384zM170 170h86v684h-86v-684zM470 170h84v172h-84v-172zM470 426h84v172h-84v-172zM470 682h84v172h-84v-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_road" - ], - "grid": 24 - }, - { - "id": 1149, - "paths": [ - "M328 150l-278 490 144 256 280-490-146-256zM570 640h-154l-148 256h352q-30-34-48-78t-18-92q0-24 4-45t12-41zM854 682v-128h-86v128h-128v86h128v128h86v-128h128v-86h-128zM884 480l-226-394h-292l262 460q36-36 83-56t99-20q38 0 74 10z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_to_drive" - ], - "grid": 24 - }, - { - "id": 1150, - "paths": [ - "M938 214v84h-128v128h-84v-128h-128v-84h128v-128h84v128h128zM810 810h-596v-596h256v-86h-256q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-256h-86v256zM640 554v172h86v-172h-86zM470 726h84v-342h-84v342zM384 726v-256h-86v256h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "addchart" - ], - "grid": 24 - }, - { - "id": 1151, - "paths": [ - "M726 470q10 0 21 1t21 3v-206l-320-140-320 140v210q0 72 24 140t67 125 102 97 127 56q18-4 35-10t33-14q-22-30-34-68t-12-78q0-72 34-130t92-92 130-34zM726 554q-48 0-87 23t-62 62-23 87q0 46 23 85t62 62 87 23q46 0 85-23t62-62 23-85q0-48-23-87t-62-62-85-23zM726 614q20 0 34 14t14 34q0 18-15 33t-33 15q-20 0-34-15t-14-33q0-20 14-34t34-14zM726 842q-30 0-55-13t-41-37q0-14 18-25t40-16 38-5q14 0 37 5t40 16 17 25q-16 24-40 37t-54 13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "admin_panel_settings" - ], - "grid": 24 - }, - { - "id": 1152, - "paths": [ - "M832 512q30 0 57 9t49 23v-202q0-36-25-61t-59-25h-270l-44-46 60-60-30-30-152 150 32 32 60-60 44 44v98q0 36-25 61t-59 25h-24q30 34 48 77t18 93q0 10-1 21t-3 21h134q6-48 32-86t67-61 91-23zM832 554q-42 0-75 21t-54 54-21 75 21 75 54 54 75 21 75-21 54-54 21-75-21-75-54-54-75-21zM832 768q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM170 384h214q0-36-25-61t-61-25h-128q-16 0-29 13t-13 31q0 16 13 29t29 13zM420 590l-8-20 40-16q-30-68-100-104l-16 38-20-8 18-38q-38-16-78-16-16 0-33 3t-31 9l14 38-20 8-16-40q-68 30-104 100l38 16-8 20-38-18q-16 38-16 78 0 16 3 33t9 31l38-14 8 20-40 16q30 68 100 104l16-38 20 8-18 38q38 16 78 16 16 0 33-3t31-9l-14-38 20-8 16 40q68-30 104-100l-38-16 8-20 38 18q16-38 16-78 0-16-3-33t-9-31zM306 758q-34 14-67 9t-60-25-41-52q-14-34-9-67t25-60 52-41q34-14 67-9t60 25 41 52q14 34 9 67t-25 60-52 41z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "agriculture" - ], - "grid": 24 - }, - { - "id": 1153, - "paths": [ - "M418 476l-62 60q-22-22-42-52t-34-72l84-22q10 28 24 49t30 37zM470 256l-172-170-170 170h128q2 54 8 92l84-20q-2-16-4-34t-2-38h128zM896 256l-170-170-172 170h128q-2 78-18 124t-40 74-50 52q-16 14-32 30t-30 38q-10-16-23-29l-25-25-60 60q20 18 35 36t23 44 8 66v0 0 0 212h84v-212q0-44 10-70t27-45 41-41q22-20 45-44t43-59 33-86 15-125h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "alt_route" - ], - "grid": 24 - }, - { - "id": 1154, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM384 726h-86v-214h86v214zM554 726h-84v-128h84v128zM554 512h-84v-86h84v86zM726 726h-86v-428h86v428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "analytics" - ], - "grid": 24 - }, - { - "id": 1155, - "paths": [ - "M726 640l66 66q-22 36-59 66t-84 50-95 28v-380h128v-86h-128v-50q38-14 62-47t24-73q0-36-17-65t-46-46-65-17-65 17-46 46-17 65q0 40 24 73t62 47v50h-128v86h128v380q-48-8-95-28t-84-50-59-66l66-66-170-128v128q0 62 35 116t92 95 124 64 133 23 133-23 124-64 92-95 35-116v-128zM512 170q18 0 30 13t12 31q0 16-12 29t-30 13-30-13-12-29q0-18 12-31t30-13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "anchor" - ], - "grid": 24 - }, - { - "id": 1156, - "paths": [ - "M640 86q-86 0-157 44t-109 116q-84 46-128 128-72 38-116 109t-44 157q0 62 23 116t64 95 95 64 116 23q86 0 157-44t109-116q84-46 128-128 72-38 116-109t44-157q0-62-23-116t-64-95-95-64-116-23zM384 854q-58 0-107-29t-78-78-29-107q0-36 12-69t32-59q0 62 23 116t64 95 95 64 116 23q-26 20-59 32t-69 12zM512 726q-58 0-107-29t-78-78-29-107q0-36 12-69t32-59q0 62 23 116t64 95 95 64 116 23q-26 20-59 32t-69 12zM712 584q-36 14-72 14-58 0-107-29t-78-78-29-107q0-36 14-72 36-14 72-14 58 0 107 29t78 78 29 107q0 36-14 72zM810 512q0-62-23-116t-64-95-95-64-116-23q26-20 59-32t69-12q58 0 107 29t78 78 29 107q0 36-12 69t-32 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "animation" - ], - "grid": 24 - }, - { - "id": 1157, - "paths": [ - "M598 512l-86 86-86-86 86-86zM512 256l90 90 108-106-198-198-198 198 108 106zM256 512l90-90-106-108-198 198 198 198 106-108zM768 512l-90 90 106 108 198-198-198-198-106 108zM512 768l-90-90-108 106 198 198 198-198-108-106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "api" - ], - "grid": 24 - }, - { - "id": 1158, - "paths": [ - "M768 342q-48 0-86 23t-61 61-23 86 23 86 61 61 86 23 86-23 61-61 23-86-23-86-61-61-86-23zM662 512q0-44 31-75t75-31q26 0 50 12l-144 144q-12-24-12-50v0zM768 618q-26 0-50-12l144-144q12 24 12 50 0 44-31 75t-75 31v0zM726 768h-428v-512h428v42h84v-170q0-36-25-61t-59-25h-428q-34 0-59 25t-25 61v768q0 36 25 61t59 25h428q34 0 59-25t25-61v-170h-84v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "app_blocking" - ], - "grid": 24 - }, - { - "id": 1159, - "paths": [ - "M426 170h172v172h-172v-172zM170 682h172v172h-172v-172zM170 426h172v172h-172v-172zM170 170h172v172h-172v-172zM598 530v-104h-172v172h104zM890 482l-50-50q-4-6-11-6t-13 6l-38 38 76 74 36-38q6-4 6-12t-6-12zM470 778v76h74l284-286-74-74zM682 170h172v172h-172v-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "app_registration" - ], - "grid": 24 - }, - { - "id": 1160, - "paths": [ - "M930 544l-34-28v-8l34-28q12-8 4-22l-36-62q-4-10-16-10-2 0-6 2l-40 16q-6-2-8-4l-6-44q-2-14-18-14h-72q-16 0-18 14l-6 42q0 2-2 2t-2 2l-4 2-40-16q-4-2-6-2-10 0-16 8l-36 64q-8 12 4 22l34 26v10l-34 28q-12 8-4 20l36 64q4 8 16 8h6l40-16 8 4 8 44q2 14 16 14h74q14 0 16-14l6-44q2 0 3-1l1-1 4-2 42 16q2 2 6 2 10 0 14-10l36-62q8-14-4-22v0zM768 576q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM726 726h84v170q0 36-25 61t-59 25h-428q-34 0-59-25t-25-61v-768q0-36 25-61t59-25h428q34 0 59 25t25 61v170h-84v-42h-428v512h428v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "app_settings_alt" - ], - "grid": 24 - }, - { - "id": 1161, - "paths": [ - "M272 802l10 94 70-66 118-324q-44-10-76-42zM630 464q-32 32-76 42l118 324 70 66 12-94zM640 342q0-42-24-75t-62-45v-94h-84v94q-38 12-62 45t-24 75q0 34 17 63t46 47 65 18 65-18 46-47 17-63zM512 384q-18 0-30-13t-12-29q0-18 12-31t30-13 30 13 12 31q0 16-12 29t-30 13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "architecture" - ], - "grid": 24 - }, - { - "id": 1162, - "paths": [ - "M512 170q70 0 132 27t109 74 74 109 27 132-27 132-74 109-109 74-132 27-132-27-109-74-74-109-27-132 27-132 74-109 109-74 132-27zM512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33v0zM554 512v-170h-84v170h-128l170 170 170-170h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_circle_down" - ], - "grid": 24 - }, - { - "id": 1163, - "paths": [ - "M512 854q-70 0-132-27t-109-74-74-109-27-132 27-132 74-109 109-74 132-27 132 27 109 74 74 109 27 132-27 132-74 109-109 74-132 27zM512 938q88 0 165-33t136-92 92-136 33-165-33-165-92-136-136-92-165-33-165 33-136 92-92 136-33 165 33 165 92 136 136 92 165 33v0zM470 512v170h84v-170h128l-170-170-170 170h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "arrow_circle_up" - ], - "grid": 24 - }, - { - "id": 1164, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM598 726h-300v-86h300v86zM726 554h-428v-84h428v84zM726 384h-428v-86h428v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "article" - ], - "grid": 24 - }, - { - "id": 1165, - "paths": [ - "M896 426v-256q0-34-25-59t-61-25h-682q-36 0-60 25t-24 59l-2 512q0 36 25 61t61 25h470v-214q0-34 17-63t46-47 65-18h170zM470 470l-342-214v-86l342 214 340-214v86zM896 598v170q0 36-25 61t-61 25q-34 0-59-25t-25-61v-192q0-8 6-15t14-7q10 0 16 7t6 15v192h86v-192q0-44-32-75t-76-31-75 31-31 75v192q0 48 23 86t62 61 85 23q48 0 87-23t62-61 23-86v-170h-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "attach_email" - ], - "grid": 24 - }, - { - "id": 1166, - "paths": [ - "M810 384l54-118 118-52-118-54-54-118-52 118-118 54 118 52zM490 406l-106-236-106 236-236 106 236 106 106 236 106-236 236-106zM810 640l-52 118-118 52 118 54 52 118 54-118 118-54-118-52z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_awesome" - ], - "grid": 24 - }, - { - "id": 1167, - "paths": [ - "M128 214v596q0 36 25 61t61 25h256v-768h-256q-36 0-61 25t-25 61zM810 128h-256v342h342v-256q0-36-25-61t-61-25zM554 896h256q36 0 61-25t25-61v-256h-342v342z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_awesome_mosaic" - ], - "grid": 24 - }, - { - "id": 1168, - "paths": [ - "M598 86h-428q-34 0-59 25t-25 59v428h84v-428h428v-84zM768 256h-426q-36 0-61 25t-25 61v426h86v-426h426v-86zM854 426h-342q-36 0-61 25t-25 61v342q0 34 25 59t61 25h342q34 0 59-25t25-59v-342q0-36-25-61t-59-25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_awesome_motion" - ], - "grid": 24 - }, - { - "id": 1169, - "paths": [ - "M640 86h-150l-42-44h-214l-42 44h-150v84h598v-84zM682 384q-44 0-84 12v-182h-512v512q0 34 25 59t59 25h244q34 76 107 124t161 48q62 0 116-24t95-65 65-95 24-116-24-116-65-95-95-64-116-23zM682 896q-58 0-107-29t-77-77-28-108q0-58 28-107t77-77 107-28q60 0 108 28t77 77 29 107q0 60-29 108t-77 77-108 29zM704 512h-64v214l154 88 34-50-124-72v-180z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_delete" - ], - "grid": 24 - }, - { - "id": 1170, - "paths": [ - "M320 238l106 60-60-106 60-106-106 60-106-60 60 106-60 106zM832 658l-106-60 60 106-60 106 106-60 106 60-60-106 60-106zM938 86l-106 60-106-60 60 106-60 106 106-60 106 60-60-106zM614 312q-14-14-31-14t-31 14l-496 496q-14 14-14 31t14 31l98 98q14 14 31 14t31-14l496-496q14-14 14-31t-14-29l-98-100zM570 546l-92-92 104-104 92 92-104 104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_fix_high" - ], - "grid": 24 - }, - { - "id": 1171, - "paths": [ - "M938 86l-106 60-106-60 60 106-60 106 106-60 106 60-60-106zM614 312q-14-14-31-14t-31 14l-496 496q-14 14-14 31t14 31l98 98q14 14 31 14t31-14l496-496q14-14 14-31t-14-29l-98-100zM570 546l-92-92 104-104 92 92-104 104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_fix_normal" - ], - "grid": 24 - }, - { - "id": 1172, - "paths": [ - "M982 42l-108 60-106-60 60 108-60 106 106-60 108 60-60-106zM626 308l90 90-104 104 34 36 110-110q12-12 12-30t-12-30l-100-100q-14-12-31-12t-29 12l-110 110 34 34 106-104zM592 592l-452-452-54 54 292 292-280 280q-12 12-12 30t12 30l100 100q12 12 30 12t30-12l280-280 292 292 54-54-292-292z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_fix_off" - ], - "grid": 24 - }, - { - "id": 1173, - "paths": [ - "M810 42l-212 214v470l212-192v-492zM42 256v626q0 8 7 14t15 6q4 0 6-1t4-1q44-20 100-33t104-13q62 0 125 14t109 50v-662q-46-36-109-50t-125-14q-64 0-126 14t-110 50zM982 832v-576q-20-14-41-24t-45-18v576q-36-12-73-17t-77-5q-36 0-79 8t-85 23-70 33v86q28-18 70-33t85-23 79-8q54 0 106 10t98 34q4 2 10 2 8 0 15-7t7-15v-46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "auto_stories" - ], - "grid": 24 - }, - { - "id": 1174, - "paths": [ - "M598 342v84h-128l-116-50-56 168v394h-170v-426l68-198q12-36 46-51t70 1l176 78h110zM342 42q-36 0-61 25t-25 61 25 61 61 25q34 0 59-25t25-61-25-61-59-25zM384 810h512v-84h-512v84zM832 682q26 0 45-18t19-46q0-26-19-45t-45-19-45 19-19 45q0 28 19 46t45 18zM554 512q0-18-12-30t-30-12h-128v84h86v44q0 34 25 59t59 25h86q36 0 61-25t25-59v-128h-86v84h-86v-42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "baby_changing_station" - ], - "grid": 24 - }, - { - "id": 1175, - "paths": [ - "M854 342v512q0 34-25 59t-61 25h-512q-36 0-61-25t-25-59v-512q0-60 37-105t91-61v-90h128v84h172v-84h128v90q54 16 91 61t37 105zM256 512v86h426v84h86v-170h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "backpack" - ], - "grid": 24 - }, - { - "id": 1176, - "paths": [ - "M854 256v598h-598v84h598q34 0 59-25t25-59v-598h-84zM682 86h-512q-34 0-59 25t-25 59v512q0 36 25 61t59 25h512q36 0 61-25t25-61v-512q0-34-25-59t-61-25zM384 682h-214v-212h214v212zM682 682h-212v-212h212v212zM682 384h-512v-214h512v214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "backup_table" - ], - "grid": 24 - }, - { - "id": 1177, - "paths": [ - "M726 342h-428q-34 0-59 25t-25 59v428q0 34 25 59t59 25h428q34 0 59-25t25-59v-428q0-34-25-59t-59-25zM554 874h-84v-64h84v64zM554 768h-84q0-24-16-48t-38-50-38-55-16-61q0-40 21-74t54-54 75-20 75 20 54 54 21 74q0 32-16 61t-38 55-38 50-16 48zM768 278h-512q0-28 19-46t45-18h384q26 0 45 18t19 46v0zM726 150h-428q0-28 19-46t45-18h300q26 0 45 18t19 46v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "batch_prediction" - ], - "grid": 24 - }, - { - "id": 1178, - "paths": [ - "M526 86q-92-4-172 29t-140 92-94 137-34 168q0 88 33 165t92 136 136 92 165 33q80 0 150-27t126-75 94-112q-96-2-175-42t-135-106-83-148-19-170 56-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bedtime" - ], - "grid": 24 - }, - { - "id": 1179, - "paths": [ - "M682 470v-256h172q34 0 59 25t25 59v172h-256zM854 810q34 0 59-25t25-59v-172h-256v256h172zM598 214v596h-428q-34 0-59-25t-25-59v-428q0-34 25-59t59-25h428zM406 512q0-26-19-45t-45-19q-28 0-46 19t-18 45 18 45 46 19q26 0 45-19t19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bento" - ], - "grid": 24 - }, - { - "id": 1180, - "paths": [ - "M426 598h32l-82-360q-6-30-30-49t-52-19h-166v86h166l60 266q-70 22-119 76t-61 128h-174v84h256v-42q0-48 23-86t62-61 85-23zM810 342h-34l-58-158q-8-26-30-41t-50-15h-168v86h168l48 128h-242l20 84h176q-14 20-24 41t-14 45h-120l20 86h100q8 46 37 84t70 61 91 25q60 2 111-26t82-78 31-110-28-108-77-76-109-28zM810 682q-36 0-65-17t-46-46-17-65q0-30 12-55t34-41l40 112 80-28-40-114 1-1t3-1q34 0 63 17t47 46 18 65-18 65-47 46-65 17zM426 640q-34 0-63 17t-47 46-18 65 18 65 47 46 63 17q36 0 65-17t46-46 17-65-17-65-46-46-65-17zM426 810q-16 0-29-12t-13-30 13-30 29-12q18 0 31 12t13 30-13 30-31 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "bike_scooter" - ], - "grid": 24 - }, - { - "id": 1181, - "paths": [ - "M298 810q-34 0-59 25t-25 61h596q0-36-25-61t-59-25h-172v-84h128q36 0 61-25t25-61h-342q-34 0-63-17t-47-46-18-65q0-34 18-63t44-47q-18-26-18-60 0-8 1-14t3-14q-58 24-95 78t-37 120q0 58 28 107t77 78 107 29v84h-128zM450 236q44 0 74 31t30 75q0 24-9 44t-27 36l26 68 40-14 14 40 80-30-14-40 40-14-116-322-42 16-14-40-80 28 14 40-40 16zM384 342q0-28 19-46t45-18 45 18 19 46q0 26-19 45t-45 19-45-19-19-45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "biotech" - ], - "grid": 24 - }, - { - "id": 1182, - "paths": [ - "M938 512q0-88-33-165t-92-136-136-92-165-33-165 33-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165zM244 302l478 478q-86 74-210 74-70 0-132-27t-109-74-74-109-27-132q0-124 74-210zM854 512q0 124-74 210l-478-478q86-74 210-74 70 0 132 27t109 74 74 109 27 132z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "block_flipped" - ], - "grid": 24 - }, - { - "id": 1183, - "paths": [ - "M810 256v448l84 84q2-12 2-20v-512q0-36-25-61t-61-25h-532l84 86h448zM138 142l-54 54 44 44v528q0 36 25 61t61 25h526l88 88 54-54zM640 768h-426v-442l442 442h-16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "browser_not_supported" - ], - "grid": 24 - }, - { - "id": 1184, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM722 660l-60 60q-8 8-16 8t-14-8l-146-144q-40 12-82 4t-72-40q-36-34-42-83t16-91l100 100 60-60-100-100q42-22 91-16t85 42q30 30 39 72t-5 82l146 146q6 6 6 14t-6 14z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "build_circle" - ], - "grid": 24 - }, - { - "id": 1185, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM556 302l46-46 60 60 60-60 44 46-60 60 60 60-44 44-60-58-60 60-46-46 60-60zM266 330h214v64h-214v-64zM490 682h-84v86h-64v-86h-86v-64h86v-84h64v84h84v64zM768 736h-214v-64h214v64zM768 630h-214v-64h214v64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "calculate" - ], - "grid": 24 - }, - { - "id": 1186, - "paths": [ - "M768 470v84h170v-84h-170zM682 752q32 22 69 50t69 52q12-18 25-35t25-33q-32-24-69-52t-67-52q-12 18-25 35t-27 35zM870 238q-12-16-25-33t-25-35q-32 24-69 52t-69 52q14 16 27 33t25 35q30-24 67-52t69-52zM170 384q-34 0-59 25t-25 61v84q0 36 25 61t59 25h44v170h84v-170h44l212 128v-512l-212 128h-172zM662 512q0-42-18-79t-46-63v284q28-26 46-63t18-79z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "campaign" - ], - "grid": 24 - }, - { - "id": 1187, - "paths": [ - "M842 608l-544-544-166 166 348 498q-26 24-26 60t26 60l60 60q24 26 60 26t60-26l182-180q24-26 24-61t-24-59zM600 848l-60-60 182-180 60 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "carpenter" - ], - "grid": 24 - }, - { - "id": 1188, - "paths": [ - "M896 128h-768q-36 0-61 25t-25 61v128h86v-128h768v596h-298v86h298q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM42 768v128h128q0-36-17-65t-46-46-65-17zM42 598v84q60 0 108 29t77 78 29 107h86q0-62-24-116t-65-95-95-64-116-23zM42 426v86q80 0 150 30t122 83 82 122 30 149h86q0-98-36-183t-101-149-150-101-183-37zM470 474v84l148 82 150-82v-84l-150 80zM618 256l-234 128 234 128 236-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cast_for_education" - ], - "grid": 24 - }, - { - "id": 1189, - "paths": [ - "M618 470l-128 256v-172h-84l128-256v172h84zM298 42h428q34 0 59 25t25 61v768q0 36-25 61t-59 25h-428q-34 0-59-25t-25-61v-768q0-36 25-61t59-25zM298 256v512h428v-512h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "charging_station" - ], - "grid": 24 - }, - { - "id": 1190, - "paths": [ - "M922 776l-368-274v-40q36-10 62-36t38-61 4-75q-8-42-39-74t-73-42q-48-10-90 7t-68 55-26 84h86q0-26 19-45t45-19 45 19 19 45-19 45-47 19q-16 0-28 12t-12 30v76l-368 274q-16 12-17 31t11 33 32 14h768q20 0 32-14t11-33-17-31zM256 768l256-192 256 192h-512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "checkroom" - ], - "grid": 24 - }, - { - "id": 1191, - "paths": [ - "M512 86q-88 0-166 33t-136 91-91 136-33 166 33 166 91 136 136 91 166 33 166-33 136-91 91-136 33-166-33-166-91-136-136-91-166-33z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "circle" - ], - "grid": 24 - }, - { - "id": 1192, - "paths": [ - "M682 470h-42v-342q0-36-25-61t-61-25h-84q-36 0-61 25t-25 61v342h-42q-60 0-108 28t-77 77-29 107v300h768v-300q0-58-29-107t-77-77-108-28zM810 896h-84v-128q0-18-13-30t-31-12q-16 0-29 12t-13 30v128h-86v-128q0-18-12-30t-30-12-30 12-12 30v128h-86v-128q0-18-13-30t-29-12q-18 0-31 12t-13 30v128h-84v-214q0-34 17-63t46-47 65-18h340q36 0 65 18t46 47 17 63v214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "cleaning_services" - ], - "grid": 24 - }, - { - "id": 1193, - "paths": [ - "M938 146l-226 226 142 140h-342v-342l140 142 226-226zM146 938l226-226 140 142v-342h-342l142 140-226 226z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "close_fullscreen" - ], - "grid": 24 - }, - { - "id": 1194, - "paths": [ - "M292 170h518q36 0 61 25t25 61v518l-146-144q18-12 18-32v-44h-64v22h-8l-78-78v-50h86v22h64v-44q0-16-13-29t-29-13h-128q-18 0-31 13t-13 29v8zM844 964l-112-110h-518q-36 0-61-25t-25-61v-518l-68-70 60-60 784 784zM470 590l-36-36h-28v22h-86v-128h8l-54-54q-18 12-18 32v172q0 16 13 29t29 13h128q18 0 31-13t13-29v-8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "closed_caption_disabled" - ], - "grid": 24 - }, - { - "id": 1195, - "paths": [ - "M854 86h-684q-34 0-59 25t-25 59v768l170-170h598q34 0 59-25t25-61v-512q0-34-25-59t-59-25zM810 554l-106-64-106 64v-340h212v340z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "comment_bank" - ], - "grid": 24 - }, - { - "id": 1196, - "paths": [ - "M588 648l90-92 256 256-90 92zM746 426q42 0 76-20t54-54 20-74q0-20-5-37t-13-31l-114 114-64-64 114-114q-14-8-31-13t-37-5q-40 0-74 20t-54 54-20 76q0 24 8 48l-78 80-76-76 30-30-60-60 90-92q-24-24-57-32t-66 0-57 32l-152 152 60 60h-120l-30 30 150 152 30-30v-122l62 60 30-30 76 76-316 316 90 90 486-484q24 8 48 8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "construction" - ], - "grid": 24 - }, - { - "id": 1197, - "paths": [ - "M512 298v-170h-426v768h852v-598h-426zM426 810h-256v-84h256v84zM426 640h-256v-86h256v86zM426 470h-256v-86h256v86zM426 298h-256v-84h256v84zM854 810h-342v-426h342v426zM768 470h-170v84h170v-84zM768 640h-170v86h170v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "corporate_fare" - ], - "grid": 24 - }, - { - "id": 1198, - "paths": [ - "M768 426v-128q0-34-17-63t-46-47-65-18-65 18-46 47-17 63h86q0-16 12-29t30-13 30 13 12 29v128h-340q34 0 59-25t25-59v-172h-256v172q0 34 25 59t61 25h-170v86h84v342h684v-342h84v-86h-170zM554 768h-84v-256h84v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "countertops" - ], - "grid": 24 - }, - { - "id": 1199, - "paths": [ - "M692 492l68-68-160-160-68 68-176-178q-24-24-60-24t-60 24l-82 82q-24 24-24 60t24 60l176 176-202 204v160h160l204-204 176 178q20 20 43 23t44-4 33-19l82-82q24-24 24-60t-24-60zM392 472l-176-176 80-80 54 54-50 50 60 60 50-50 62 62zM728 808l-176-176 80-80 62 62-50 50 60 60 50-50 54 54zM884 300q12-12 12-30t-12-30l-100-100q-16-14-34-11t-26 11l-78 78 160 160z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "design_services" - ], - "grid": 24 - }, - { - "id": 1200, - "paths": [ - "M402 280l110-110 342 342-110 110 60 60 110-110q24-24 24-60t-24-60l-342-342q-24-24-60-24t-60 24l-110 110zM120 120l-60 60 160 162-110 110q-24 24-24 60t24 60l342 342q24 24 60 24t60-24l110-110 162 160 60-60zM512 854l-342-342 110-110 68 68h-50v84h136l64 64-46 48 60 60 46-48 64 64zM466 346l46-48 214 214-46 46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "directions_off" - ], - "grid": 24 - }, - { - "id": 1201, - "paths": [ - "M552 810h302v-512h-684v512h310l8-60t-16-44q-10-6-20 0t-19 19-20 25-26 18-33-4q-18-14-19-24t7-20 18-23 16-30-2-41q-2-14-18-15t-34 0-33-6-17-33q-2-16 8-24t23-12 23-10 10-18q2-12-4-21l-12-18t-6-19 12-22q8-8 20-10t18 0q14 6 26 18t25 23 27 16 30-5q14-8 10-21t-14-28-18-29-5-26 27-18q26-8 39 5t22 34 20 40 31 25q22 6 39-6t31-31 28-40 28-34 29-13 35 24q18 26 16 43t-18 30-39 23-44 20-32 23-5 33q4 12 15 12t25-7 29-11 28 1 21 27q8 24-3 35t-32 14-43 4-38 4-14 13q0 14 15 21t33 14 26 19-4 38q-16 24-33 27t-36-5-36-18-32-13-27 13q-12 18-6 45t12 53v0zM854 214q34 0 59 25t25 59v512q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-512q0-34 25-59t59-25h136l78-86h256l78 86h136zM774 768q-16 0-26-10t-10-26 10-26 26-10 26 10 10 26-10 26-26 10z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dirty_lens" - ], - "grid": 24 - }, - { - "id": 1202, - "paths": [ - "M60 180l336 338q14 14 0 28-6 8-14 8-10 0-16-8l-72-72q-8 26-20 48l60 60q6 6 6 15t-6 15-16 6q-8 0-14-6l-54-54q-16 18-34 34l56 54q6 6 6 15t-6 15q-8 6-16 6-10 0-14-6l-60-58q-22 14-44 25t-40 17q-24 10-40 32t-16 50v112h406l142-142 254 252 60-60-784-784zM790 670l-60-62 190-190 62 60zM890 388l-190 190-304-302 192-190z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "do_not_step" - ], - "grid": 24 - }, - { - "id": 1203, - "paths": [ - "M554 434l-106-106v-232q0-22 16-38t38-16 37 16 15 38v338zM854 544v-320q0-22-16-38t-38-16-38 16-16 38v246h-42v-332q0-22-16-37t-38-15-37 15-15 37v338l256 256v-188zM406 182q0-22-16-38t-38-16-37 15-15 35l106 106v-102zM554 434l-106-106v-232q0-22 16-38t38-16 37 16 15 38v338zM854 544v-320q0-22-16-38t-38-16-38 16-16 38v246h-42v-332q0-22-16-37t-38-15-37 15-15 37v338l256 256v-188zM406 182q0-22-16-38t-38-16-37 15-15 35l106 106v-102zM904 904l-784-784-60 60 240 240h-2v182q-24-12-49-27t-43-25l-18-10q-12-6-24-6-16 0-30 10 0 2-7 9t-17 16-17 16l-7 7 290 306q38 40 92 40h258q38 0 70-22h-2l50 48z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "do_not_touch" - ], - "grid": 24 - }, - { - "id": 1204, - "paths": [ - "M708 464l-60-60-182 180-90-90-60 60 150 152zM810 170h-596q-36 0-61 25t-25 61v512q0 36 25 61t61 25h596q36 0 61-25t25-61v-512q0-36-25-61t-61-25zM810 768h-596v-426h596v426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "domain_verification" - ], - "grid": 24 - }, - { - "id": 1205, - "paths": [ - "M854 256h-342l-86-86h-256q-34 0-59 25t-25 61v512q0 36 25 61t59 25h684q34 0 59-25t25-61v-426q0-36-25-61t-59-25zM598 768v-128h-172v-170h172v-128l212 212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "drive_file_move" - ], - "grid": 24 - }, - { - "id": 1206, - "paths": [ - "M668 208l-4-4q-38-42-28-94l4-24h-80l-4 18q-12 90 56 158l4 2q38 42 28 94l-4 26h80l4-18q6-44-9-85t-47-73zM838 208l-2-4q-40-42-30-94l4-24h-80l-2 18q-14 90 54 158l4 2q38 42 28 94l-4 26h82l2-18q6-44-8-85t-48-73zM390 214l-308 290q-40 36-40 92v258q0 34 18 63t47 47 63 18h588q22 0 37-16t15-38-15-38-37-16h-246v-42h330q22 0 38-16t16-38-16-37-38-15h-330v-44h374q22 0 37-15t15-37-15-38-37-16h-374v-42h288q22 0 38-16t16-38-16-38-38-16h-422q14-24 29-49t25-43l10-18q6-12 6-24 0-16-12-30l-7-7t-16-17-16-17l-7-7z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dry" - ], - "grid": 24 - }, - { - "id": 1207, - "paths": [ - "M726 854v-384h-86v-300h298l-84 214h84zM640 554v300h-470q-34 0-59-25t-25-61v-128q0-36 25-61t59-25h470zM266 672h-64v64h64v-64zM554 170v300h-384q-34 0-59-25t-25-61v-128q0-36 25-61t59-25h384zM266 288h-64v64h64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "dynamic_form" - ], - "grid": 24 - }, - { - "id": 1208, - "paths": [ - "M640 214l-60 60 196 196h-690v84h690l-196 196 60 60 298-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "east" - ], - "grid": 24 - }, - { - "id": 1209, - "paths": [ - "M768 170h-86v338l86-86v-252zM170 170h86v684h-86v-684zM426 170h86v172h-86v-172zM426 426h86v172h-86v-172zM426 682h86v172h-86v-172zM962 538l-48-50q-20-18-46-18t-44 18l-226 226v140h138l226-226q20-20 20-46t-20-44zM708 788h-44v-44l146-148 44 44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "edit_road" - ], - "grid": 24 - }, - { - "id": 1210, - "paths": [ - "M810 298h-34l-72-200q-10-24-32-40t-50-16h-110v86h110l64 170h-206l-16-42h48v-86h-214v86h76l76 214h-28q-8-48-37-86t-70-60-91-24q-60-4-111 25t-82 78-31 109 28 108 77 77 109 29q52 0 96-22t73-61 39-89h180q8 48 37 86t70 60 91 24q60 4 111-25t82-78 31-109-28-108-77-77-109-29zM334 554q-14 38-46 62t-74 24q-36 0-65-17t-46-46-17-65 17-65 46-46 65-17q42 0 74 24t46 62h-120v84h120zM602 470h-60l-32-86h130q-14 18-24 40t-14 46zM810 640q-36 0-65-17t-46-46-17-65q0-30 12-55t34-43l40 114 80-30-40-114h2q36 0 65 17t46 46 17 65-17 65-46 46-65 17zM470 854h-172l256 128v-86h172l-256-128v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electric_bike" - ], - "grid": 24 - }, - { - "id": 1211, - "paths": [ - "M808 86q-8-20-24-32t-38-12h-468q-22 0-38 12t-24 32l-88 256v340q0 18 13 31t29 13h44q16 0 29-13t13-31v-42h512v42q0 18 13 31t29 13h44q16 0 29-13t13-31v-340zM278 512q-28 0-46-19t-18-45 18-45 46-19q26 0 45 19t19 45-19 45-45 19zM746 512q-26 0-45-19t-19-45 19-45 45-19q28 0 46 19t18 45-18 45-46 19zM214 298l64-192h468l64 192h-596zM298 854h172v-86l256 128h-172v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electric_car" - ], - "grid": 24 - }, - { - "id": 1212, - "paths": [ - "M810 214q0-36-25-61t-59-25h-128v86h128v112l-150 186h-150v-214h-170q-48 0-86 23t-61 62-23 87v128h84q0 34 18 63t47 47 63 18q36 0 65-18t46-47 17-63h192l192-242v-142zM298 640q-16 0-29-13t-13-29h86q0 16-13 29t-31 13zM214 170h212v86h-212v-86zM810 470q-34 0-63 17t-47 46-18 65q0 34 18 63t47 47 63 18q36 0 65-18t46-47 17-63q0-36-17-65t-46-46-65-17zM810 640q-16 0-29-13t-13-29q0-18 13-31t29-13q18 0 31 13t13 31q0 16-13 29t-31 13zM298 854h172v-86l256 128h-172v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electric_moped" - ], - "grid": 24 - }, - { - "id": 1213, - "paths": [ - "M896 478v-64q0-30-20-54l-168-202q-26-30-66-30h-514q-36 0-61 25t-25 61v340q0 36 25 61t61 25h8q14 38 46 62t74 24 74-24 46-62h358q12 38 45 62t75 24q36 0 65-18t46-47 17-63q0-42-24-75t-62-45zM786 384h-104v-122zM128 214h170v170h-170v-170zM256 640q-18 0-30-13t-12-29q0-18 12-31t30-13 30 13 12 31q0 16-12 29t-30 13zM384 554v-84h128v-86h-128v-170h214v340h-214zM854 640q-18 0-31-13t-13-29q0-18 13-31t31-13q16 0 29 13t13 31q0 16-13 29t-29 13zM298 854h172v-86l256 128h-172v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electric_rickshaw" - ], - "grid": 24 - }, - { - "id": 1214, - "paths": [ - "M334 682h306v-42q0-48 23-86t62-61 85-23h32l-80-360q-8-30-31-49t-53-19h-166v86h166l60 266q-70 22-119 76t-61 128h-224q-16-44-56-69t-90-15q-38 8-66 36t-34 66q-8 40 8 75t47 56 71 21 73-24 47-62zM214 682q-18 0-31-12t-13-30 13-30 31-12q16 0 29 12t13 30-13 30-29 12zM810 512q-34 0-63 17t-47 46-18 65 18 65 47 46 63 17q36 0 65-17t46-46 17-65-17-65-46-46-65-17zM810 682q-16 0-29-12t-13-30 13-30 29-12q18 0 31 12t13 30-13 30-31 12zM470 854h-172l256 128v-86h172l-256-128v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electric_scooter" - ], - "grid": 24 - }, - { - "id": 1215, - "paths": [ - "M896 598q0-18-13-31t-29-13h-86v86h86q16 0 29-13t13-29zM854 726h-86v84h86q16 0 29-12t13-30-13-30-29-12zM512 598h-86v170h86q0 36 25 61t61 25h128v-342h-128q-36 0-61 25t-25 61zM214 554q0-34 25-59t59-25h64q42 0 76-21t54-54 20-75-20-75-54-54-76-21h-148q-18 0-31 13t-13 31q0 16 13 29t31 13h148q28 0 46 19t18 45-18 45-46 19h-64q-46 0-85 23t-62 62-23 85q0 48 23 87t62 62 85 23h86v-86h-86q-34 0-59-25t-25-61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "electrical_services" - ], - "grid": 24 - }, - { - "id": 1216, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM362 256q22 0 38 16t16 38-16 37-38 15-37-15-15-37 15-38 37-16zM470 598h-44v170h-128v-170h-42v-108q0-34 25-59t61-25h42q36 0 61 25t25 59v108zM662 726l-108-172h214zM554 470l108-172 106 172h-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "elevator" - ], - "grid": 24 - }, - { - "id": 1217, - "paths": [ - "M384 640q-34 0-79 7t-91 21-85 34-63 47-24 61v86h684v-86q0-34-24-61t-63-47-85-34-91-21-79-7zM942 292q2-4 2-7v-7q0-8-2-16l32-24q6-4 2-10l-30-50q-2-6-10-4l-36 14q-10-8-24-14l-6-40q-2-6-8-6h-60q-6 0-8 6l-4 40q-14 6-26 14l-36-14q-8-2-10 4l-30 50q-2 6 2 10l32 24q-2 8-2 16 0 6 2 14l-32 24q-6 4-2 10l30 52q2 4 10 4l36-16q10 8 26 14l4 40q2 6 8 6h60q6 0 8-6l4-40q14-4 26-14l36 16q8 2 10-4l30-52q2-6-2-10zM832 330q-22 0-38-15t-16-37 16-38 38-16 38 16 16 38-16 37-38 15zM850 498l-22-36q-2-6-6-4l-26 12q-8-8-18-10l-4-30q-2-4-6-4h-42q-6 0-6 6l-4 28q-4 2-9 4t-9 6l-26-10q-4-2-6 2l-22 36q-2 4 2 8l22 18v20l-22 18q-4 2-2 6l22 38q2 4 6 2l26-12q8 8 18 12l4 28q0 4 6 4h42q6 0 6-4l2-28q6-2 10-5t8-7l28 12q4 2 6-2l22-38q2-4-2-6l-22-18v-20l22-18q4-4 2-8zM746 568q-14 0-24-10t-10-24q0-16 10-26t24-10q16 0 26 10t10 26q0 14-10 24t-26 10zM202 384h364q8 0 15-6t7-14v-2q0-8-7-14t-15-6h-12q0-48-23-87t-61-61v40q0 10-7 16t-15 6-15-6-7-16v-58l-20-4t-22-2-22 2l-20 4v58q0 10-7 16t-15 6-15-6-7-16v-40q-38 22-61 61t-23 87h-12q-8 0-14 6t-6 14v2q0 8 6 14t14 6zM384 554q60 0 105-36t59-92h-328q14 56 59 92t105 36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "engineering" - ], - "grid": 24 - }, - { - "id": 1218, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM726 384h-74l-212 384h-142q-26 0-45-19t-19-45 19-45 45-19h74l212-384h142q26 0 45 19t19 45-19 45-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "escalator" - ], - "grid": 24 - }, - { - "id": 1219, - "paths": [ - "M278 86q34 0 59 25t25 59q0 36-25 61t-59 25q-36 0-61-25t-25-61q0-34 25-59t61-25zM662 406q0 26 18 45t46 19q26 0 45-19t19-45q0-28-19-46t-45-18q-28 0-46 18t-18 46zM790 512h-122q-18 0-35 10t-27 26l-38 58-154-264q-12-20-31-32t-41-12h-128q-36 0-61 25t-25 61v256h64v298h214v-442l108 186h94l32-46v302h170v-212h44v-150q0-26-19-45t-45-19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "escalator_warning" - ], - "grid": 24 - }, - { - "id": 1220, - "paths": [ - "M330 554q0-22 16-37t38-15 38 15 16 37-16 38-38 16-38-16-16-38v0zM886 366l-40 86q4 14 6 29t2 31q0 70-27 132t-74 109-109 74-132 27-132-27-109-74-74-109-27-132v-6q84-32 148-93t98-143q58 72 144 114t186 42q16 0 30-1t28-3l-26-56-38-82-82-38-120-54 120-54 30-14q-40-18-84-28t-92-10q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165q0-48-10-92t-28-84l-14 30zM586 554q0-22 16-37t38-15 38 15 16 37-16 38-38 16-38-16-16-38zM878 238l-46 104-46-104-104-46 104-46 46-104 46 104 104 46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "face_retouching_natural" - ], - "grid": 24 - }, - { - "id": 1221, - "paths": [ - "M854 128h-684q-34 0-59 25t-25 61v596q0 36 25 61t59 25h684q34 0 59-25t25-61v-596q0-36-25-61t-59-25zM426 726h-212v-86h212v86zM426 554h-212v-84h212v84zM426 384h-212v-86h212v86zM632 640l-120-122 60-60 60 62 136-136 60 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fact_check" - ], - "grid": 24 - }, - { - "id": 1222, - "paths": [ - "M682 170q0-34 25-59t61-25 61 25 25 59q0 36-25 61t-61 25-61-25-25-61zM854 938v-256h106l-108-324q-10-28-32-44t-50-16h-4q-28 0-50 16t-32 44l-36 110q34 18 56 53t22 77v340h128zM534 490q26 0 45-18t19-46q0-26-19-45t-45-19q-28 0-46 19t-18 45q0 28 18 46t46 18zM234 256q36 0 61-25t25-61q0-34-25-59t-61-25q-34 0-59 25t-25 59q0 36 25 61t59 25zM320 938v-298h64v-256q0-36-25-61t-61-25h-128q-34 0-59 25t-25 61v256h64v298h170zM598 938v-170h42v-170q0-26-19-45t-45-19h-86q-26 0-45 19t-19 45v170h44v170h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "family_restroom" - ], - "grid": 24 - }, - { - "id": 1223, - "paths": [ - "M896 512v-86h-86v-128l-128-128-84 86-86-86-86 86-84-86-128 128v128h-86v86h86v86h-86v84h86v172h596v-172h86v-84h-86v-86h86zM682 292l44 42v92h-86v-92l18-18zM512 292l26 24 16 18v92h-84v-92l16-18zM470 598v-86h84v86h-84zM554 682v86h-84v-86h84zM298 334l44-42 42 42v92h-86v-92zM298 512h86v86h-86v-86zM298 682h86v86h-86v-86zM726 768h-86v-86h86v86zM726 598h-86v-86h86v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fence" - ], - "grid": 24 - }, - { - "id": 1224, - "paths": [ - "M182 240q26 32 58 74t65 84 60 78 44 57l17 21v256q0 18 13 31t31 13h84q18 0 31-13t13-31v-256l17-21t44-57 60-78 65-84 58-74q12-14 10-30t-14-28-30-12h-592q-18 0-30 12t-14 28 10 30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "filter_alt" - ], - "grid": 24 - }, - { - "id": 1225, - "paths": [ - "M298 810h428v44q0 34-25 59t-61 25h-256q-36 0-61-25t-25-59v-44zM298 768h428v-214h-428v214zM726 128v256l-136-28q50 20 85 61t47 95h-420q12-54 47-95t85-61q-22-16-34-40l-186-38v-44l186-38q16-30 46-49t66-19q22 0 42 8t36 20zM554 256q0-18-12-30t-30-12-30 12-12 30 12 30 30 12 30-12 12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "fire_extinguisher", - "fire_hydrant" - ], - "grid": 24 - }, - { - "id": 1226, - "paths": [ - "M600 750v0l-104-102 46-46 58 58 106-106 44 46-150 150zM512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM314 268l60 60 60-60 44 46-60 60 60 60-44 44-60-60-60 60-46-44 60-60-60-60zM512 854q-70 0-133-27t-111-71l488-488q44 48 71 111t27 133-27 132-74 109-109 74-132 27z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "flaky" - ], - "grid": 24 - }, - { - "id": 1227, - "paths": [ - "M512 128l-342 256v512h684v-512zM534 534q0 26-19 45t-45 19v170h-44v-170q-26 0-45-19t-19-45v-128h44v128h20v-128h44v128h20v-128h44v128zM640 768h-42v-150h-44v-128q0-34 25-59t61-25v362z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "food_bank" - ], - "grid": 24 - }, - { - "id": 1228, - "paths": [ - "M854 170h-684q-34 0-59 25t-25 61v512q0 36 25 61t59 25h384v-86h-384v-426l342 212 342-212v212h84v-298q0-36-25-61t-59-25zM512 470l-342-214h684zM810 640l172 170-172 172v-128h-170v-86h170v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "forward_to_inbox" - ], - "grid": 24 - }, - { - "id": 1229, - "paths": [ - "M810 512h128l-426-384-426 384h128v128h-86v86h86v128h84v-128h172v128h84v-128h172v128h84v-128h86v-86h-86v-128zM298 640v-206l172-152v358h-172zM554 640v-358l172 152v206h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "foundation" - ], - "grid": 24 - }, - { - "id": 1230, - "paths": [ - "M170 298h684v86h-684v-86zM170 554h684v-84h-684v84zM170 726h300v-86h-300v86zM170 896h300v-86h-300v86zM658 776l-60-62-60 60 120 122 196-196-62-60zM170 128v86h684v-86h-684z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grading" - ], - "grid": 24 - }, - { - "id": 1231, - "paths": [ - "M512 854h-426v-86h244q-22-90-88-156t-156-88q20-6 41-9t43-3q72 0 134 27t108 73 73 108 27 134zM938 524q-20-6-41-9t-43-3q-94 0-172 46t-122 122q10 20 17 42t11 46q8 42 8 86h342v-86h-246q24-90 90-156t156-88zM668 470q24-66 69-121t105-93q-68 4-128 31t-105 73-71 107-26 131v0 0q62-82 156-128zM488 378q-28-70-80-124t-122-84q46 60 72 133t26 153q0 8-1 14t-1 12q14 8 27 17t25 19q8-38 21-73t33-67z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "grass" - ], - "grid": 24 - }, - { - "id": 1232, - "paths": [ - "M924 776l-226-226h-42l-108 108v42l226 226q12 12 30 12t30-12l90-90q14-12 14-30t-14-30zM740 434l60-60 90 92q26-26 34-59t0-65-34-58l-150-150-60 60v-122l-30-30-152 152 30 30h122l-60 60 44 46-122 122-178-176v-60l-128-128-120 120 128 130h60l176 176-36 36h-90l-226 226q-12 12-12 30t12 30l90 90q14 12 31 12t29-12l226-226v-90l220-220z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "handyman" - ], - "grid": 24 - }, - { - "id": 1233, - "paths": [ - "M512 86q70 0 128 34t93 92 35 130q0 70-35 128t-93 93-128 35-128-35-93-93-35-128q0-72 35-130t93-92 128-34zM512 170q-48 0-86 23t-61 62-23 87q0 46 23 85t61 62 86 23 86-23 61-62 23-85q0-48-23-87t-61-62-86-23zM554 470h-84v-86h-86v-86h86v-84h84v84h86v86h-86v86zM1024 854h-86v84h-64v-84h-84v-64h84v-86h64v86h86v64zM768 790q0 18-11 34t-27 26l38 88h-64l-38-84h-48v84h-64v-256h150q26 0 45 20t19 44v44zM704 790v-44h-86v44h86zM150 768v-86h64v256h-64v-106h-86v106h-64v-256h64v86h86zM426 682q26 0 45 20t19 44v128q0 26-19 45t-45 19h-148v-256h148zM426 874v-128h-84v128h84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hdr_enhanced_select" - ], - "grid": 24 - }, - { - "id": 1234, - "paths": [ - "M258 136q36-24 78-37t90-13q64 0 118 23t95 63 64 95 23 117q0 84-46 166 0 2-1 3l-3 3-62-64q26-56 26-108 0-60-28-108t-77-77-109-29q-28 0-55 8t-51 22zM734 614l62 60q46-60 73-134t27-156q0-98-37-183t-101-149l-60 60q52 52 82 122t30 150q0 64-20 123t-56 107zM426 278q-12 0-24 2l128 130q4-14 4-26 0-44-32-75t-76-31zM904 904l-784-784-60 60 90 90q-10 26-16 55t-6 59h86q0-12 1-23t3-21l282 282q-28 20-54 48t-42 74q-16 48-33 69t-41 33q-12 8-32 8-34 0-59-25t-25-61h-86q0 48 23 86t62 61 85 23q38 0 70-14 44-22 71-58t47-94q10-32 28-50t44-38q2 0 2-1t2-1l282 282z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hearing_disabled" - ], - "grid": 24 - }, - { - "id": 1235, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM512 768q-22 0-38-16t-16-38 16-38 38-16q24 0 39 16t15 38-15 38-39 16zM640 452q-24 36-45 53t-33 39q-6 10-8 21t-2 41h-78v-40t14-46q14-28 40-47t42-45q14-16 12-40t-19-42-51-18-52 21-24 43l-70-30q14-42 51-74t95-32q46 0 79 19t49 45q14 24 18 62t-18 70z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "help_center" - ], - "grid": 24 - }, - { - "id": 1236, - "paths": [ - "M726 214h-86v-86h86v86zM640 896h86v-110l110 110 60-60-110-110h110v-86h-256v256zM810 384h86v-86h-86v86zM810 554h86v-84h-86v84zM470 896h84v-86h-84v86zM298 214h86v-86h-86v86zM128 726h86v-86h-86v86zM214 896v-86h-86q0 36 25 61t61 25zM810 128v86h86q0-36-25-61t-61-25zM470 214h84v-86h-84v86zM128 384h86v-86h-86v86zM298 896h86v-86h-86v86zM128 554h86v-84h-86v84zM128 214h86v-86q-36 0-61 25t-25 61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "highlight_alt" - ], - "grid": 24 - }, - { - "id": 1237, - "paths": [ - "M384 170v60q-54-22-112-22-56 0-111 22t-99 66l142 142h46v48q28 26 63 41t71 17v96h-128v128q0 36 25 61t61 25h426q36 0 65-18t46-47 17-63v-556h-512zM336 444v-92h-96l-46-44q38-14 78-14 88 0 152 62l60 60-8 8q-34 34-82 34-30 0-58-14zM810 726q0 16-12 29t-30 13-30-13-12-29v-86h-256v-110q38-16 66-44l8-8 122 120h60v-60l-256-256v-26h340v470z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "history_edu" - ], - "grid": 24 - }, - { - "id": 1238, - "paths": [ - "M644 826l42 74q-62 30-132 36v-86q48-6 90-24zM174 554h-86q6 70 36 132l74-42q-18-42-24-90zM644 198l42-74q-62-30-132-36v86q48 6 90 24zM850 470h86q-6-70-36-132l-74 42q18 42 24 90zM380 826l-42 74q62 30 132 36v-86q-48-6-90-24zM470 174v-86q-70 6-132 36l42 74q42-18 90-24zM784 306l74-44q-42-56-98-96l-42 74q38 28 66 66zM198 380l-74-42q-30 62-36 132h86q6-48 24-90zM850 554q-6 48-24 90l74 42q30-62 36-132h-86zM718 784l44 74q56-42 96-98l-74-42q-28 38-66 66zM306 240l-42-74q-58 42-98 98l74 42q28-36 66-66zM240 718l-74 42q42 56 98 98l42-74q-36-28-66-66zM554 298h-84v232l182 182 60-60-158-158v-196z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "history_toggle_off" - ], - "grid": 24 - }, - { - "id": 1239, - "paths": [ - "M768 682h-86v-42h-340v42h-86v-42h-170v214h852v-214h-170v42zM854 342h-128v-86q0-36-25-61t-61-25h-256q-36 0-61 25t-25 61v86h-128q-34 0-59 25t-25 59v172h170v-86h86v86h340v-86h86v86h170v-172q0-34-25-59t-59-25zM640 342h-256v-86h256v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "home_repair_service" - ], - "grid": 24 - }, - { - "id": 1240, - "paths": [ - "M170 470h684v84h-684v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "horizontal_rule" - ], - "grid": 24 - }, - { - "id": 1241, - "paths": [ - "M768 938v-256l-170-170 170-172v-254h-512v256l170 170-170 170v256h512zM342 320v-150h340v150l-170 170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hourglass_bottom" - ], - "grid": 24 - }, - { - "id": 1242, - "paths": [ - "M342 170h340v150l-120 122 52 52 154-152v-256h-512v50l86 84v-50zM90 90l-60 60 380 380-154 152v256h512v-50l106 106 60-60zM682 854h-340v-150l120-122 220 222v50z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hourglass_disabled" - ], - "grid": 24 - }, - { - "id": 1243, - "paths": [ - "M256 86v256l170 170-170 172v254h512v-256l-170-170 170-170v-256h-512zM682 704v150h-340v-150l170-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hourglass_top" - ], - "grid": 24 - }, - { - "id": 1244, - "paths": [ - "M810 512h128l-426-384-426 384h128v342h84v-86h428v86h84v-342zM308 426h408l10 8v78h-428v-78zM622 342h-220l110-100zM298 682v-84h428v84h-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "house_siding" - ], - "grid": 24 - }, - { - "id": 1245, - "paths": [ - "M512 682q32 0 61-11t51-31h-224q22 20 51 31t61 11zM366 598h294q16-30 20-64h-336q4 34 22 64zM512 342q-32 0-61 11t-51 31h224q-22-20-51-31t-61-11zM366 426q-18 30-22 64h336q-4-34-22-64h-292zM810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM512 768q-70 0-128-35t-93-93-35-128 35-128 93-93 128-35 128 35 93 93 35 128-35 128-93 93-128 35z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "hvac" - ], - "grid": 24 - }, - { - "id": 1246, - "paths": [ - "M934 934l-844-844-60 60 98 98v562q0 36 25 61t61 25h562l98 98zM214 768l148-192 108 128 50-64 128 128h-434zM896 776l-648-648h562q36 0 61 25t25 61v562z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "image_not_supported" - ], - "grid": 24 - }, - { - "id": 1247, - "paths": [ - "M896 342q-30 0-51 17t-30 42-1 47l-152 152q-22-6-44 0l-108-108q6-24-2-49t-29-42-53-17q-30 0-51 17t-29 42-2 49l-194 194q-24-8-48 1t-42 30-18 51q0 36 25 61t61 25q30 0 51-18t30-42 1-48l194-194q22 6 44 0l110 108q-8 24 0 49t29 42 53 17q30 0 51-17t30-42 1-49l152-150q24 6 48-2t42-29 18-53q0-34-25-59t-61-25zM640 384l40-88 88-40-88-40-40-88-40 88-88 40 88 40zM150 470l20-86 86-22-86-20-20-86-22 86-86 20 86 22z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "insights" - ], - "grid": 24 - }, - { - "id": 1248, - "paths": [ - "M810 128h-178q-14-38-46-62t-74-24-74 24-46 62h-178q-10 0-18 2-24 4-42 24-12 12-20 26-6 16-6 34v596q0 18 6 34 6 14 20 28 18 18 42 22 8 2 18 2h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM470 604l-60 62-154-154 154-154 60 62-94 92zM512 182q-14 0-23-10t-9-22q0-14 9-23t23-9 23 9 9 23q0 12-9 22t-23 10zM614 666l-60-62 94-92-94-92 60-62 154 154z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "integration_instructions" - ], - "grid": 24 - }, - { - "id": 1249, - "paths": [ - "M682 214l-60 60-68-68v476h-84v-476l-68 68-60-60 170-172zM854 426v470q0 36-25 61t-61 25h-512q-36 0-61-25t-25-61v-470q0-34 25-59t61-25h128v84h-128v470h512v-470h-128v-84h128q36 0 61 25t25 59z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "ios_share" - ], - "grid": 24 - }, - { - "id": 1250, - "paths": [ - "M854 640h-684v-86h684v86zM854 726h-684v84h684v-84zM640 470l214-152v-104l-214 150-214-150-256 156v100l254-154z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "legend_toggle" - ], - "grid": 24 - }, - { - "id": 1251, - "paths": [ - "M628 752q-10 10-25 18t-27 12q-36 12-71 1t-59-31q-4-4-3-8t5-6q38-12 60-38t30-56q6-28-2-54t-12-54q-4-22-3-43t9-41q0-4 4-4t6 2q12 26 31 46t40 38 38 39 21 49q2 12 2 22 2 30-10 60t-34 48zM748 410q-24-22-50-40t-50-42q-48-48-63-112t5-130q4-10-3-17t-17-3q-24 10-45 24t-41 28q-62 52-98 123t-41 152 25 159q0 4 1 8t1 8q0 18-16 26t-32-6q-4-6-6-10-32-40-43-91t-3-101q2-12-9-18t-19 4q-40 52-58 115t-14 127q0 18 3 37t9 37q14 48 38 88 38 64 102 107t138 53q78 10 157-8t139-72q44-42 69-97t27-115-22-116q-2-4-3-7t-3-7q-18-34-40-62-8-12-17-22t-21-20z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_fire_department" - ], - "grid": 24 - }, - { - "id": 1252, - "paths": [ - "M512 42l-384 172v256q0 88 29 171t81 153 122 119 152 69q82-20 152-69t122-119 81-153 29-171v-256zM618 538l40 164-146-86-146 86 40-164-128-110 168-16 66-156 66 156 168 14z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "local_police" - ], - "grid": 24 - }, - { - "id": 1253, - "paths": [ - "M512 86v0q-62 0-116 23t-95 64-64 95-23 116q0 56 15 108t45 98q30 50 67 94t67 94q16 24 27 47t23 49q6 12 12 27t16 26 26 11v0q16 0 26-11t16-26 12-27q12-26 23-49t27-47q30-48 67-93t67-95q30-46 45-98t15-108q0-62-23-116t-64-95-95-64-116-23zM512 502q-44 0-75-32t-31-76 31-75 75-31 75 31 31 75-31 76-75 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "location_pin" - ], - "grid": 24 - }, - { - "id": 1254, - "paths": [ - "M618 606l124 72-34 56-154-94v-214h64v180zM938 598q0 70-26 132t-73 109-109 73-132 26q-66 0-123-22t-103-62h-202q-36 0-60-25t-24-61v-384q0-36 25-60t59-26v-20q0-54 26-97t70-69 96-26q50 0 92 23t68 62 30 89q24-4 46-4 70 0 132 27t109 74 73 108 26 133zM256 298h214v-30q-4-42-35-70t-73-28q-44 0-75 32t-31 76v20zM854 598q0-72-35-130t-93-92-128-34q-72 0-130 34t-92 92-34 130q0 70 34 128t92 93 130 35q70 0 128-35t93-93 35-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "lock_clock" - ], - "grid": 24 - }, - { - "id": 1255, - "paths": [ - "M470 298l-60 60 110 112h-434v84h434l-110 112 60 60 212-214zM854 810h-342v86h342q34 0 59-25t25-61v-596q0-36-25-61t-59-25h-342v86h342v596z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "login" - ], - "grid": 24 - }, - { - "id": 1256, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165q0 50 11 96t29 88l-84 286 286-84q42 18 88 29t96 11q88 0 165-33t136-92 92-136 33-165-33-165-92-136-136-92-165-33zM682 554h-128v128h-84v-128h-128v-84h128v-128h84v128h128v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "maps_ugc" - ], - "grid": 24 - }, - { - "id": 1257, - "paths": [ - "M740 854l-152-152 60-60 92 90 180-180 62 60zM512 726q0-62 23-116t64-95 95-65 116-24q36 0 68 8t60 22v-286q0-34-25-59t-59-25h-684q-34 0-59 25t-25 59v768l170-170h256q0-10 2-22-2-10-2-20z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mark_chat_read" - ], - "grid": 24 - }, - { - "id": 1258, - "paths": [ - "M938 298v384q0 36-25 61t-59 25h-598l-170 170v-768q0-34 25-59t59-25h432q-2 10-3 21t-1 21q0 58 28 107t77 78 107 29q36 0 69-12t59-32zM682 128q0 36 18 65t47 46 63 17q36 0 65-17t46-46 17-65-17-65-46-46-65-17q-34 0-63 17t-47 46-18 65z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mark_chat_unread" - ], - "grid": 24 - }, - { - "id": 1259, - "paths": [ - "M512 810q0-62 23-116t64-95 95-64 116-23q36 0 68 8t60 22v-286q0-36-25-61t-59-25h-684q-34 0-59 25t-25 61v512q0 36 25 61t59 25h346q-4-24-4-44zM170 256l342 214 342-214v86l-342 212-342-212v-86zM740 938l-152-150 60-60 92 90 180-180 62 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mark_email_read" - ], - "grid": 24 - }, - { - "id": 1260, - "paths": [ - "M938 384v384q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-512q0-36 25-61t59-25h432q-2 10-3 21t-1 23q0 46 19 87t51 71l-156 98-342-214v86l342 212 226-140q18 6 36 9t36 3q36 0 69-11t59-31zM682 214q0 34 18 63t47 47 63 18q36 0 65-18t46-47 17-63q0-36-17-65t-46-46-65-17q-34 0-63 17t-47 46-18 65z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mark_email_unread" - ], - "grid": 24 - }, - { - "id": 1261, - "paths": [ - "M938 512l-170 170-60-60 68-68h-224q-10 100-67 179t-143 123q-2 34-19 63t-46 46-63 17q-36 0-65-18t-46-47-17-63q0-36 17-65t46-46 65-17q30 0 56 13t42 35q62-32 103-90t51-130h-132q-14 38-47 62t-73 24q-36 0-65-17t-46-46-17-65 17-65 46-46 65-17q40 0 73 24t47 62h132q-10-72-51-129t-103-91q-16 22-42 35t-56 13q-36 0-65-17t-46-46-17-65q0-34 17-63t46-47 65-18q34 0 63 17t46 46 17 63q86 44 143 123t69 179h222l-66-68 60-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mediation" - ], - "grid": 24 - }, - { - "id": 1262, - "paths": [ - "M854 256h-172v-86q0-34-25-59t-59-25h-172q-34 0-59 25t-25 59v86h-172q-34 0-59 25t-25 61v512q0 34 25 59t59 25h684q34 0 59-25t25-59v-512q0-36-25-61t-59-25zM426 170h172v86h-172v-86zM682 640h-128v128h-84v-128h-128v-86h128v-128h84v128h128v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "medical_services" - ], - "grid": 24 - }, - { - "id": 1263, - "paths": [ - "M904 904l-784-784-60 60 160 162h-50l44 426h42q0 48 23 86t62 61 85 23q48 0 87-23t62-61 23-86v-50l246 246 60-60zM512 768q0 36-25 61t-61 25q-34 0-59-25t-25-61h42l24-240 104 104v136zM598 256v220l-86-84v-136q0-48 23-86t62-61 85-23q48 0 87 23t62 61 23 86v476l-86-84v-392q0-36-25-61t-61-25q-34 0-59 25t-25 61zM426 214q0 20-6 37t-16 33l-176-176q32-22 70-22 36 0 65 17t46 46 17 65z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mic_external_off" - ], - "grid": 24 - }, - { - "id": 1264, - "paths": [ - "M394 298h-190q-16-16-25-38t-9-46q0-36 18-65t47-46 63-17q36 0 65 17t46 46 17 65q0 24-9 46t-23 38zM682 86q48 0 87 23t62 61 23 86v682h-86v-682q0-36-25-61t-61-25q-34 0-59 25t-25 61v512q0 48-23 86t-62 61-87 23q-46 0-85-23t-62-61-23-86h-42l-44-426h256l-42 426h-42q0 36 25 61t59 25q36 0 61-25t25-61v-512q0-48 23-86t62-61 85-23z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "mic_external_on" - ], - "grid": 24 - }, - { - "id": 1265, - "paths": [ - "M290 452l-60-60q10-12 37-31t63-19q26 0 45 9t33 19q20 14 30 14 12 0 24-10t16-16l60 60q-12 14-38 33t-62 19q-26 0-45-10t-33-18q-10-8-17-12t-13-4q-12 0-24 10t-16 16zM330 640q6 0 13 4t17 10q14 10 33 19t45 9q36 0 62-19t38-31l-60-60q-4 6-17 16t-23 10-30-14q-14-10-33-20t-45-10q-36 0-63 19t-37 33l60 60q4-6 16-16t24-10zM938 256v512q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-512q0-36 25-61t59-25h684q34 0 59 25t25 61zM598 256h-428v512h428v-512zM810 682q0-16-12-29t-30-13-30 13-12 29q0 18 12 31t30 13 30-13 12-31zM810 512q0-18-12-30t-30-12-30 12-12 30 12 30 30 12 30-12 12-30zM810 298h-84v86h84v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "microwave" - ], - "grid": 24 - }, - { - "id": 1266, - "paths": [ - "M726 446v-360h-428v360q0 24 22 36l178 106-42 100-146 14 110 94-34 142 126-74 126 74-34-142 110-94-146-14-42-100 178-106q22-12 22-36zM554 522l-42 26-42-26v-394h84v394z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "military_tech" - ], - "grid": 24 - }, - { - "id": 1267, - "paths": [ - "M604 584l60-102q6-12-4-20l-62-48q2-16 2-30t-2-30l62-48q10-10 4-20l-60-104q-6-10-18-6l-74 30q-24-18-50-30l-12-78q-2-12-14-12h-120q-12 0-14 12l-12 80q-28 10-50 28l-74-30q-12-4-18 8l-60 102q-8 12 2 20l64 48q-2 16-2 30t2 30l-64 48q-10 10-2 20l60 104q6 10 18 6l74-30q24 18 50 30l12 78q2 12 14 12h120q12 0 14-12l12-80q28-10 50-28l74 30q12 4 18-8zM376 470q-36 0-61-25t-25-61 25-61 61-25 61 25 25 61-25 61-61 25zM936 796l-42-30q0-6 1-10t1-10q0-10-2-18l40-32q8-6 2-12l-38-66q-2-8-12-4l-46 18q-16-12-34-18l-6-50q-2-10-10-10h-76q-8 0-10 8l-6 52q-10 2-18 7t-14 11l-48-20q-8-2-12 4l-38 68q-4 6 2 12l40 32q-2 8-2 18t2 18l-40 32q-6 6-2 12l38 66q4 8 12 4l48-18q14 12 32 18l6 50q2 8 10 8h76q10 0 10-8l8-50 16-8t16-10l48 18q6 4 10-4l40-66q4-6-2-12zM752 804q-24 0-41-17t-17-41 17-41 41-17 41 17 17 41-17 41-41 17z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "miscellaneous_services" - ], - "grid": 24 - }, - { - "id": 1268, - "paths": [ - "M662 576q0 32-16 60t-38 54-38 51-16 49h-84q0-24-16-49t-38-51-38-54-16-60q0-42 21-75t54-54 75-21v0q42 0 75 21t54 54 21 75zM554 832h-84v64h84v-64zM810 554q0 54-18 102t-48 88l60 60q42-50 67-114t25-136q0-88-37-163t-97-129l-62 62q50 40 80 100t30 130zM682 214l-170-172v128q-80 0-149 30t-122 83-83 123-30 148q0 72 25 136t67 114l60-60q-30-40-48-88t-18-102q0-62 23-116t64-95 95-64 116-23v0 0 128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "model_training" - ], - "grid": 24 - }, - { - "id": 1269, - "paths": [ - "M854 128h-684q-34 0-59 25t-25 61v468q0 36 25 61t59 25h128l-42 42v86h512v-86l-42-42h128q34 0 59-25t25-61v-468q0-36-25-61t-59-25zM854 682h-684v-468h684v468z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "monitor" - ], - "grid": 24 - }, - { - "id": 1270, - "paths": [ - "M810 298q0-34-25-59t-59-25h-128v84h128v114l-150 186h-150v-214h-170q-48 0-86 23t-61 62-23 85v128h84q0 36 18 65t47 46 63 17q36 0 65-17t46-46 17-65h192l192-240v-144zM298 726q-16 0-29-13t-13-31h86q0 18-13 31t-31 13zM214 256h212v86h-212v-86zM810 554q-34 0-63 18t-47 47-18 63q0 36 18 65t47 46 63 17q36 0 65-17t46-46 17-65q0-34-17-63t-46-47-65-18zM810 726q-16 0-29-13t-13-31q0-16 13-29t29-13q18 0 31 13t13 29q0 18-13 31t-31 13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "moped" - ], - "grid": 24 - }, - { - "id": 1271, - "paths": [ - "M426 342v256l202 124 34-52-172-102v-226h-64zM764 512q4 22 4 42 0 64-23 118t-64 95-95 64-116 23q-64 0-118-23t-95-64-64-95-23-118q0-62 23-116t64-95 95-64 118-23q44 0 84 12v-88q-42-10-84-10-80 0-150 30t-123 83-82 122-29 149 29 150 82 123 123 82 150 29 149-29 122-82 83-123 30-150q0-20-4-42h-86zM854 214v-128h-86v128h-128v84h128v128h86v-128h128v-84h-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "more_time" - ], - "grid": 24 - }, - { - "id": 1272, - "paths": [ - "M890 890l-756-756-54 56 82 80q-36 52-56 113t-20 129q0 88 33 165t92 136 136 92 165 33q68 0 129-20t113-54l80 80zM512 854q-70 0-132-27t-109-74-74-109-27-132q0-50 14-96t38-84l64 62q-14 26-22 56t-8 62q0 70 35 128t93 93 128 35q32 0 62-8t56-22l62 64q-38 24-84 38t-96 14zM270 160q52-34 113-54t129-20q88 0 165 33t136 92 92 136 33 165q0 68-20 129t-54 113l-62-62q24-38 38-84t14-96q0-70-27-132t-74-109-109-74-132-27q-50 0-96 14t-84 38zM768 512q0 32-8 62t-22 56l-344-344q26-14 56-22t62-8q70 0 128 35t93 93 35 128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "motion_photos_off" - ], - "grid": 24 - }, - { - "id": 1273, - "paths": [ - "M122 336l66 66q-18 54-18 110 0 70 27 132t74 109 109 74 132 27 132-27 109-74 74-109 27-132-27-132-74-109-109-74-132-27q-58 0-114 20l-64-66q40-18 85-28t93-10q88 0 165 33t136 92 92 136 33 165-33 165-92 136-136 92-165 33-165-33-136-92-92-136-33-165q0-48 9-92t27-84zM256 512q0-70 35-128t93-93 128-35 128 35 93 93 35 128-35 128-93 93-128 35-128-35-93-93-35-128zM298 234q0 28-18 46t-46 18q-26 0-45-18t-19-46q0-26 19-45t45-19q28 0 46 19t18 45z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "motion_photos_on" - ], - "grid": 24 - }, - { - "id": 1274, - "paths": [ - "M938 512q0 88-33 165t-92 136-136 92-165 33-165-33-136-92-92-136-33-165q0-38 6-74t18-70l82 28q-22 56-22 116 0 70 27 132t74 109 109 74 132 27 132-27 109-74 74-109 27-132-27-132-74-109-109-74-132-27q-60 0-114 22l-30-82q34-12 70-18t74-6q88 0 165 33t136 92 92 136 33 165zM234 170q-26 0-45 19t-19 45q0 28 19 46t45 18q28 0 46-18t18-46q0-26-18-45t-46-19zM768 512q0 70-35 128t-93 93-128 35-128-35-93-93-35-128 35-128 93-93 128-35 128 35 93 93 35 128zM470 384h-86v256h86v-256zM640 384h-86v256h86v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "motion_photos_paused", - "motion_photos_pause" - ], - "grid": 24 - }, - { - "id": 1275, - "paths": [ - "M726 170l170 172-170 170v-128h-172v-86h172v-128zM426 298q-16 0-29 13t-13 31q0 16 13 29t29 13q18 0 31-13t13-29q0-18-13-31t-31-13zM256 298q-18 0-30 13t-12 31q0 16 12 29t30 13 30-13 12-29q0-18-12-31t-30-13zM298 726h172v-86h-172v-128l-170 170 170 172v-128zM598 726q16 0 29-13t13-31q0-16-13-29t-29-13q-18 0-31 13t-13 29q0 18 13 31t31 13zM768 726q18 0 30-13t12-31q0-16-12-29t-30-13-30 13-12 29q0 18 12 31t30 13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "multiple_stop" - ], - "grid": 24 - }, - { - "id": 1276, - "paths": [ - "M290 554h180v-84h-180q-12-38-45-62t-75-24q-34 0-63 17t-47 46-18 65 18 65 47 46 63 17q42 0 75-24t45-62zM170 554q-16 0-29-12t-13-30 13-30 29-12q18 0 31 12t13 30-13 30-31 12zM982 512l-172-128v86h-172q-8-82-44-152t-93-122-131-81-156-29v84q70 0 132 27t109 74 73 109 26 132-26 132-73 109-109 74-132 27v84q82 0 156-29t131-81 93-122 44-152h172v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nat" - ], - "grid": 24 - }, - { - "id": 1277, - "paths": [ - "M512 270l384-142-142 384zM964 844l-784-784-60 60 216 216-208 78v60l302 120 120 302h60l78-208 216 216z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "near_me_disabled" - ], - "grid": 24 - }, - { - "id": 1278, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM768 596h-214l98-96q-30-34-72-54t-90-20q-50 0-93 21t-73 59-40 84l-42-12q14-56 50-100t87-70 111-26q58 0 107 24t85 64l86-88v214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "next_plan" - ], - "grid": 24 - }, - { - "id": 1279, - "paths": [ - "M512 128l-342 256v512h684v-512zM416 534q22 0 38 15t16 37-16 38-38 16-38-16-16-38 16-37 38-15zM726 768h-44v-64h-340v64h-44v-298h44v192h148v-150h150q36 0 61 25t25 61v170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "night_shelter" - ], - "grid": 24 - }, - { - "id": 1280, - "paths": [ - "M512 512q0-76 29-143t80-117 117-76q20-8 25-25t-4-34-29-21q-34-8-71-10t-77 4q-72 8-135 41t-112 84-80 115-39 136q-10 96 19 181t89 151 141 103 175 37q46 0 90-10 22-4 30-20t3-34-23-26q-70-28-121-79t-79-117-28-140v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "nightlight_round" - ], - "grid": 24 - }, - { - "id": 1281, - "paths": [ - "M376 256l-158-158q10-24 32-40t48-16l428 2q34 0 59 24t25 60v562l-84-86v-348h-350zM844 964l-38-38q-10 24-32 40t-48 16h-428q-34 0-59-25t-25-61v-562l-154-154 60-60 784 784zM648 768l-350-348v348h350z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_cell" - ], - "grid": 24 - }, - { - "id": 1282, - "paths": [ - "M248 128h648v86l-264 296-212-212h286l76-84h-448zM844 964l-76-76v8h-512v-86h214v-212l-60-66-350-352 60-60 784 784zM690 810l-136-134v134h136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_drinks" - ], - "grid": 24 - }, - { - "id": 1283, - "paths": [ - "M594 594l-490-490-60 62 226 226-8 10h-108q-28 0-48 20t-20 48v400q0 28 20 48t48 20h546q24 0 42-14t24-38l92 94 62-60-152-152zM426 854q-46 0-85-23t-62-62-23-87q0-40 18-76t50-60 70-30l68 66q-18-6-36-6-44 0-75 31t-31 75 31 76 75 32 76-32 32-76q0-16-8-34l68 66q-8 40-32 71t-59 50-77 19zM768 648l-306-306h74l56 60h108q28 0 48 20t20 48v178zM870 238h68l-128 232v-172h-42v-212h170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_flash" - ], - "grid": 24 - }, - { - "id": 1284, - "paths": [ - "M484 364l-14-150h212v-172h86v172h214l-60 588zM42 896v42q0 18 13 31t31 13h554q18 0 30-13t12-31v-42h-640zM934 934l-844-844-60 60 242 242q-66 16-118 49t-82 84-30 115h478l84 86h-562v84h640v-6l192 190z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_food" - ], - "grid": 24 - }, - { - "id": 1285, - "paths": [ - "M682 598v-342q0-28 17-58t46-56 68-41 83-15v690l-86-86v-92h-128zM874 994l-446-446q-12 4-22 5t-22 1v384h-86v-384q-46 0-85-23t-62-61-23-86v-136l-98-98 60-60 844 844zM264 384l-50-50v50h50zM384 86h-86v92l86 86v-178zM554 384v-298h-84v262l78 80q4-12 5-22t1-22z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_meals", - "no_meals_ouline" - ], - "grid": 24 - }, - { - "id": 1286, - "paths": [ - "M466 346l-146-148 64-70h256l78 86h136q34 0 59 25t25 59v520l-218-218q6-22 6-46 0-58-29-107t-78-77-107-28q-22 0-46 4zM874 994l-98-98h-606q-34 0-59-25t-25-61v-512q0-18 8-35t20-27l-84-86 60-60 844 844zM618 738l-64-64q-10 4-20 6t-22 2q-36 0-65-17t-46-46-17-65q0-10 2-21t6-21l-64-64q-30 50-30 106 0 60 29 108t78 77 107 29q30 0 56-8t50-22z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_photography" - ], - "grid": 24 - }, - { - "id": 1287, - "paths": [ - "M256 768q36 0 61 25t25 61q0 34-25 59t-61 25-61-25-25-59q0-36 25-61t61-25zM796 128q-36 0-61 15t-43 35-32 36l-150 176 216 214v-336q18-22 33-38t37-16q24 0 41 18t17 44v22h84v-22q0-40-19-74t-51-54-72-20zM456 456l-336-336-60 60 340 340-114 134q-12 14-10 30t13 28 29 12h284l50 50q-24 8-39 30t-15 50q0 34 25 59t59 25q28 0 50-15t30-39l82 80 60-60-204-204zM574 214q10-10 20-22t22-24q-78-38-166-39t-166 33l180 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_stroller" - ], - "grid": 24 - }, - { - "id": 1288, - "paths": [ - "M904 904l-784-784-60 60 110 112v390q0 28 12 53t32 43v76q0 16 12 29t30 13h42q18 0 31-13t13-29v-44h340v44q0 16 13 29t31 13h45t3-2l70 70zM320 726q-26 0-45-19t-19-45q0-28 19-46t45-18 45 18 19 46q0 26-19 45t-45 19zM256 470v-94l92 94h-92zM376 256l-130-130q48-26 117-33t149-7q70 0 132 6t109 23 74 51 27 90v426q0 12-3 22t-5 20l-256-254h178v-214h-392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_transfer" - ], - "grid": 24 - }, - { - "id": 1289, - "paths": [ - "M214 384l60 60 196-196v690h84v-690l196 196 60-60-298-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "north" - ], - "grid": 24 - }, - { - "id": 1290, - "paths": [ - "M384 214v84h282l-496 496 60 60 496-496v282h84v-426h-426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "north_east" - ], - "grid": 24 - }, - { - "id": 1291, - "paths": [ - "M214 640h84v-282l496 496 60-60-496-496h282v-84h-426v426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "north_west" - ], - "grid": 24 - }, - { - "id": 1292, - "paths": [ - "M598 472l-146-146q22-24 52-26 16-2 28 1t24 9l12 8t14 12l56 62q30 34 77 56t95 22v84q-56 0-114-24t-98-58zM512 256q36 0 61-25t25-61q0-34-25-59t-61-25-61 25-25 59q0 36 25 61t61 25zM120 120l-60 60 366 368v92q0 36 25 61t61 25h92l240 238 60-60zM426 854q-34 0-63-18t-47-47-18-63q0-42 24-75t62-47v-88q-48 10-87 40t-61 74-22 96q0 58 28 107t77 77 107 28q52 0 96-22t74-61 40-87h-88q-14 38-47 62t-75 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "not_accessible" - ], - "grid": 24 - }, - { - "id": 1293, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM470 682h-86v-340h86v340zM512 682v-340l214 170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "not_started" - ], - "grid": 24 - }, - { - "id": 1294, - "paths": [ - "M662 490q0 32-16 61t-38 55-38 50-16 48h-84q0-24-16-48t-38-50-38-55-16-61q0-40 21-74t54-54 75-20 75 20 54 54 21 74zM554 746h-84v64h84v-64zM938 512q0-88-33-166t-91-136l-46 46q50 48 78 115t28 141-28 141-78 115l46 46q58-58 91-136t33-166zM150 512q0-74 28-141t78-115l-46-46q-58 58-91 136t-33 166 33 166 91 136l46-46q-50-48-78-115t-28-141zM746 512q0 48-18 91t-50 75l46 46q40-42 63-96t23-116-23-116-63-96l-46 46q32 32 50 75t18 91zM300 724l46-46q-32-32-50-75t-18-91 18-91 50-75l-46-46q-40 42-63 96t-23 116 23 116 63 96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "online_prediction" - ], - "grid": 24 - }, - { - "id": 1295, - "paths": [ - "M896 470v-342h-342l142 140-428 428-140-142v342h342l-142-140 428-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "open_in_full" - ], - "grid": 24 - }, - { - "id": 1296, - "paths": [ - "M810 128h-598q-34 0-59 25t-25 61v596q0 36 25 61t59 25h598q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM810 640h-170q0 36-17 65t-46 46-65 17-65-17-46-46-17-65h-172v-426h598v426zM342 470h84v128h172v-128h84l-170-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outbox" - ], - "grid": 24 - }, - { - "id": 1297, - "paths": [ - "M790 470h20v-176q0-34-23-57t-57-23h-564q-34 0-57 23t-23 57v436q0 34 23 57t57 23h414q-12-24-19-51t-7-55q0-64 32-118t85-85 119-31zM444 554l-274-162v-94h10l264 158 270-158h12v92zM810 554l-60 60 68 68h-178v86h178l-68 68 60 60 172-170z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outgoing_mail" - ], - "grid": 24 - }, - { - "id": 1298, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM384 512q-18 0-30-13t-12-29v-128q0-18 12-31t30-13 30 13 12 31v128q0 16-12 29t-30 13zM598 768h-172v-86q0-34 25-59t61-25 61 25 25 59v86zM682 470q0 16-12 29t-30 13-30-13-12-29v-128q0-18 12-31t30-13 30 13 12 31v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outlet" - ], - "grid": 24 - }, - { - "id": 1299, - "paths": [ - "M914 170q-6 0-12 4-94 34-193 52t-197 18q-200 0-390-70-6-4-12-4-24 0-24 28v628q0 28 24 28 6 0 12-4 94-34 193-52t197-18q200 0 390 70 6 4 12 4 24 0 24-28v-628q0-28-24-28v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_horizontal_select" - ], - "grid": 24 - }, - { - "id": 1300, - "paths": [ - "M850 902q-34-94-52-193t-18-197q0-200 70-390 4-6 4-12 0-24-28-24h-628q-28 0-28 24 0 6 2 12 36 94 54 193t18 197q0 200-70 390-4 6-4 12 0 24 28 24h628q28 0 28-24 0-6-4-12v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_vertical_select" - ], - "grid": 24 - }, - { - "id": 1301, - "paths": [ - "M512 170q-88 0-170 8t-170 24l-38 6-12 38q-36 134-36 266t36 266l12 38 38 6q88 16 170 24t170 8 170-8 170-24l38-6 12-38q36-134 36-266t-36-266l-12-38-38-6q-88-16-170-24t-170-8z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "panorama_wide_angle_select" - ], - "grid": 24 - }, - { - "id": 1302, - "paths": [ - "M810 598v-342q0-36-25-61t-59-25h-598q-36 0-61 25t-25 61v342q0 34 25 59t61 25h598q34 0 59-25t25-59zM426 554q-34 0-63-17t-47-46-18-65q0-34 18-63t47-47 63-18q36 0 65 18t46 47 17 63q0 36-17 65t-46 46-65 17zM982 298v470q0 36-25 61t-61 25h-726v-86h726v-470h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "payments" - ], - "grid": 24 - }, - { - "id": 1303, - "paths": [ - "M776 426l-72-200q-10-24-32-40t-50-16h-110v86h110l64 170h-206l-16-42h48v-86h-214v86h76l76 214h-28q-8-48-37-86t-70-60-91-24q-60-4-111 25t-82 78-31 109 28 108 77 77 109 29q52 0 96-22t73-61 39-89h180q8 48 37 86t70 60 91 24q60 4 111-25t82-78 31-109-28-108-77-77-109-29h-34zM334 682q-14 38-46 62t-74 24q-36 0-65-17t-46-46-17-65 17-65 46-46 65-17q42 0 74 24t46 62h-120v84h120zM602 598h-60l-32-86h130q-14 18-24 40t-14 46zM810 768q-36 0-65-17t-46-46-17-65q0-30 12-55t34-43l40 114 80-30-40-114h4q34 0 63 17t47 46 18 65-18 65-47 46-65 17z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pedal_bike" - ], - "grid": 24 - }, - { - "id": 1304, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM298 576q-26 0-45-19t-19-45 19-45 45-19q28 0 46 19t18 45-18 45-46 19zM512 576q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM726 576q-28 0-46-19t-18-45 18-45 46-19q26 0 45 19t19 45-19 45-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pending" - ], - "grid": 24 - }, - { - "id": 1305, - "paths": [ - "M726 512q-60 0-108 29t-77 77-29 108q0 58 29 107t77 77 108 28q58 0 107-28t77-77 28-107q0-60-28-108t-77-77-107-29zM796 826l-92-92v-136h42v118l80 80zM768 128h-136q-14-38-46-62t-74-24-74 24-46 62h-136q-36 0-61 25t-25 61v640q0 34 25 59t61 25h260q-38-36-60-84h-200v-640h86v128h340v-128h86v216q44 6 86 26v-242q0-36-25-61t-61-25zM512 214q-18 0-30-13t-12-31q0-16 12-29t30-13 30 13 12 29q0 18-12 31t-30 13z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pending_actions" - ], - "grid": 24 - }, - { - "id": 1306, - "paths": [ - "M554 342q0-48-23-87t-61-62-86-23-86 23-61 62-23 87q0 46 23 85t61 62 86 23 86-23 61-62 23-85zM470 342q0 34-25 59t-61 25-61-25-25-59q0-36 25-61t61-25 61 25 25 61zM42 768v86h684v-86q0-34-24-61t-63-48-85-34-91-20-79-7-79 7-91 20-85 34-63 48-24 61zM128 768q4-12 27-26t61-28 81-23 87-9 87 9 80 23 61 28 28 26h-512zM854 640v-128h128v-86h-128v-128h-86v128h-128v86h128v128h86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_add_alt" - ], - "grid": 24 - }, - { - "id": 1307, - "paths": [ - "M554 342q0-48-23-87t-61-62-86-23-86 23-61 62-23 87q0 46 23 85t61 62 86 23 86-23 61-62 23-85zM640 426v86h128v128h86v-128h128v-86h-128v-128h-86v128h-128zM42 768v86h684v-86q0-34-24-61t-63-48-85-34-91-20-79-7-79 7-91 20-85 34-63 48-24 61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_add_alt_1" - ], - "grid": 24 - }, - { - "id": 1308, - "paths": [ - "M598 342q0-48-23-87t-62-62-87-23q-46 0-85 23t-62 62-23 87q0 46 23 85t62 62 85 23q48 0 87-23t62-62 23-85zM726 426v86h256v-86h-256zM86 768v86h682v-86q0-34-24-61t-63-48-85-34-91-20-79-7-78 7-90 20-85 34-63 48-24 61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_remove", - "person_remove_alt_1" - ], - "grid": 24 - }, - { - "id": 1309, - "paths": [ - "M256 342q0-48 23-87t62-62 85-23q48 0 87 23t62 62 23 87q0 46-23 85t-62 62-87 23q-46 0-85-23t-62-62-23-85zM442 598q-36-2-82 4t-94 20-89 35-66 49-25 62v86h406q-40-44-53-89t-12-82 7-60 8-25zM830 768q24-40 24-86t-23-85-62-62-87-23q-46 0-85 23t-62 62-23 85q0 48 23 87t62 62 85 23q24 0 46-7t40-17l110 108 60-60zM682 768q-34 0-59-25t-25-61q0-34 25-59t59-25q36 0 61 25t25 59q0 36-25 61t-61 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "person_search" - ], - "grid": 24 - }, - { - "id": 1310, - "paths": [ - "M896 640v-86h-130q-4-26-10-48l110-64-42-74-102 58-20-28t-22-26q0-8 1-15t1-15q0-52-28-94l72-70-60-60-74 74q-36-20-67-21t-55 6-38 15l-74-74-60 60 72 70q-28 42-28 94 0 8 1 15t1 15q-24 26-42 54l-102-58-42 74 110 64q-6 22-10 48h-130v86h130q4 26 10 48l-110 64 42 74 102-58q34 58 89 93t121 35 121-35 89-93l102 58 42-74-110-62q6-24 10-50h130zM554 726h-84v-256h84v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pest_control" - ], - "grid": 24 - }, - { - "id": 1311, - "paths": [ - "M910 742l-102-92q10-50-9-91t-56-65-81-24q-20 0-45 7t-49 25-40 47-16 69q0 32 12 59t32 47l-30 30q-26-26-41-61t-15-75q0-54 28-98t72-70q-48-24-98-24t-94 22-74 59-42 85q-40-12-66-46t-26-76q0-36 18-65t47-46 63-17h108q44 0 75-32t31-76-31-75-75-31h-64q-18 0-31 13t-13 29q0 18 13 31t31 13h64q8 0 14 6t6 14q0 10-6 16t-14 6h-108q-58 0-107 29t-77 77-28 108q0 50 22 94t61 74 87 40v2q0 60 29 109t78 78 109 29h378q30 0 51-16t31-41 5-51-27-46zM768 810q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "pest_control_rodent" - ], - "grid": 24 - }, - { - "id": 1312, - "paths": [ - "M854 214q34 0 59 25t25 59v512q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-512q0-34 25-59t59-25h136l78-86h256l78 86h136zM854 810v-512h-684v512h684zM598 512l-128 158-86-116-128 172h512z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_camera_back" - ], - "grid": 24 - }, - { - "id": 1313, - "paths": [ - "M768 448l170-170v468l-170-170v192q0 36-25 61t-61 25h-512q-34 0-59-25t-25-61v-512q0-36 25-61t59-25h512q36 0 61 25t25 61v192zM682 414v-158h-512v512h512v-354zM426 512q-34 0-59-25t-25-61q0-34 25-59t59-25q36 0 61 25t25 59q0 36-25 61t-61 25zM426 554q22 0 51 6t56 16 46 26 19 38v42h-342v-42q0-22 18-38t46-26 57-16 49-6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "photo_camera_front" - ], - "grid": 24 - }, - { - "id": 1314, - "paths": [ - "M598 86h-342q-36 0-61 25t-25 59v684q0 34 25 59t61 25h512q36 0 61-25t25-59v-512zM642 830l-80-80q-44 22-92 16t-84-42q-30-28-40-67t0-77 40-66q28-30 66-40t77 0 67 40q36 36 42 84t-16 92l80 80zM554 384v-234l236 234h-236zM426 618q0-26 19-45t45-19q28 0 46 19t18 45q0 28-18 46t-46 18q-26 0-45-18t-19-46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "plagiarism" - ], - "grid": 24 - }, - { - "id": 1315, - "paths": [ - "M342 222v-8l468 298-108 70zM854 842l-672-672-54 54 214 214v372l226-144 232 230z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "play_disabled" - ], - "grid": 24 - }, - { - "id": 1316, - "paths": [ - "M822 210l-90-90q-24-26-60-26t-60 26l-122 120 92 92 90-92 150 152q26-26 34-59t0-65-34-58zM234 588q20 18 46 18t44-18l106-106-90-90-106 104q-18 20-18 46t18 46v0zM642 332l-60 60-136-136q-20-20-46-20t-46 20q-18 18-18 45t18 45l136 136-30 30-270 272q-26 24-26 60t26 60q24 26 59 26t61-26l392-392q12 12 30 12t30-12 12-30-12-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "plumbing" - ], - "grid": 24 - }, - { - "id": 1317, - "paths": [ - "M726 86h-428q-34 0-59 25t-25 59v86q0 36 25 61t59 25h428q34 0 59-25t25-61v-86q0-34-25-59t-59-25zM726 256h-428v-86h428v86zM854 938h-684q-34 0-59-25t-25-59v-44h852v44q0 34-25 59t-59 25zM790 434q-10-22-31-36t-47-14h-400q-26 0-47 14t-31 36l-148 334h852zM406 682h-44q-8 0-14-6t-6-14q0-10 6-16t14-6h44q8 0 14 6t6 16q0 8-6 14t-14 6zM406 598h-44q-8 0-14-7t-6-15 6-15 14-7h44q8 0 14 7t6 15-6 15-14 7zM406 512h-44q-8 0-14-6t-6-16q0-8 6-14t14-6h44q8 0 14 6t6 14q0 10-6 16t-14 6zM534 682h-44q-8 0-14-6t-6-14q0-10 6-16t14-6h44q8 0 14 6t6 16q0 8-6 14t-14 6zM534 598h-44q-8 0-14-7t-6-15 6-15 14-7h44q8 0 14 7t6 15-6 15-14 7zM534 512h-44q-8 0-14-6t-6-16q0-8 6-14t14-6h44q8 0 14 6t6 14q0 10-6 16t-14 6zM662 682h-44q-8 0-14-6t-6-14q0-10 6-16t14-6h44q8 0 14 6t6 16q0 8-6 14t-14 6zM662 598h-44q-8 0-14-7t-6-15 6-15 14-7h44q8 0 14 7t6 15-6 15-14 7zM662 512h-44q-8 0-14-6t-6-16q0-8 6-14t14-6h44q8 0 14 6t6 14q0 10-6 16t-14 6z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "point_of_sale" - ], - "grid": 24 - }, - { - "id": 1318, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM810 810h-596v-512h596v512zM576 554q0 28-19 46t-45 18-45-18-19-46q0-26 19-45t45-19 45 19 19 45zM512 384q-58 0-109 22t-89 60-58 88q20 50 58 89t89 61 109 22 109-22 89-61 58-89q-20-50-58-88t-89-60-109-22zM512 662q-44 0-75-32t-31-76 31-75 75-31 75 31 31 75-31 76-75 32z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "preview" - ], - "grid": 24 - }, - { - "id": 1319, - "paths": [ - "M512 42l-384 172v256q0 88 29 171t81 153 122 119 152 69q82-20 152-69t122-119 81-153 29-171v-256l-384-172zM470 298h84v86h-84v-86zM470 470h84v256h-84v-256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "privacy_tip" - ], - "grid": 24 - }, - { - "id": 1320, - "paths": [ - "M554 366q-24 0-42 18t-18 42q0 26 18 44t42 18q26 0 44-18t18-44q0-24-18-42t-44-18zM554 128q-60 0-112 22t-93 61-65 90-28 111l-82 108q-8 12-2 23t20 11h64v128q0 36 25 61t61 25h42v128h298v-200q76-36 124-108t48-162q0-62-24-116t-65-95-95-64-116-23zM682 426v18l36 28q4 4 2 10l-34 60q-4 6-12 4l-42-18q-12 10-28 16l-6 46q-2 8-10 8h-68q-6 0-8-8l-6-46q-16-6-30-16l-42 18q-6 2-10-4l-34-60q-4-6 2-10l36-28q0-4-1-9t-1-9 1-8 1-8l-36-28q-6-4-2-12l34-58q4-6 10-4l44 18q14-12 28-18l6-44q2-8 8-8h68q8 0 10 8l6 44q14 6 28 18l42-18q8-2 12 4l34 58q4 8-2 12l-38 28q2 6 2 16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "psychology" - ], - "grid": 24 - }, - { - "id": 1321, - "paths": [ - "M470 348l-194-192q52-34 111-52t125-18q88 0 165 33t136 92 92 136 33 165q0 66-18 125t-52 111l-62-64q22-36 35-80t13-92q0-72-28-134t-76-109-110-73v18q0 34-25 59t-61 25h-84v50zM904 904l-60 60-96-96q-52 34-111 52t-125 18q-88 0-165-33t-136-92-92-136-33-165q0-66 18-125t52-111l-96-96 60-60zM470 768q-36 0-61-25t-25-61v-42l-204-204q-4 18-7 37t-3 39q0 88 40 160t108 120 152 58v-82z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "public_off" - ], - "grid": 24 - }, - { - "id": 1322, - "paths": [ - "M682 384v-214h44q16 0 29-12t13-30v0q0-18-13-30t-29-12h-428q-16 0-29 12t-13 30v0q0 18 13 30t29 12h44v214q0 36-18 65t-47 46-63 17v0 86h254v298l42 42 44-42v-298h256v-86q-34 0-63-17t-47-46-18-65z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "push_pin" - ], - "grid": 24 - }, - { - "id": 1323, - "paths": [ - "M128 470h342v-342h-342v342zM214 214h170v170h-170v-170zM128 896h342v-342h-342v342zM214 640h170v170h-170v-170zM554 128v342h342v-342h-342zM810 384h-170v-170h170v170zM810 810h86v86h-86v-86zM554 554h86v86h-86v-86zM640 640h86v86h-86v-86zM554 726h86v84h-86v-84zM640 810h86v86h-86v-86zM726 726h84v84h-84v-84zM726 554h84v86h-84v-86zM810 640h86v86h-86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "qr_code" - ], - "grid": 24 - }, - { - "id": 1324, - "paths": [ - "M406 278v128h-128v-128h128zM470 214h-256v256h256v-256zM406 618v128h-128v-128h128zM470 554h-256v256h256v-256zM746 278v128h-128v-128h128zM810 214h-256v256h256v-256zM554 554h64v64h-64v-64zM618 618h64v64h-64v-64zM682 554h64v64h-64v-64zM554 682h64v64h-64v-64zM618 746h64v64h-64v-64zM682 682h64v64h-64v-64zM746 618h64v64h-64v-64zM746 746h64v64h-64v-64zM938 298h-84v-128h-128v-84h212v212zM938 938v-212h-84v128h-128v84h212zM86 938h212v-84h-128v-128h-84v212zM86 86v212h84v-128h128v-84h-212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "qr_code_scanner" - ], - "grid": 24 - }, - { - "id": 1325, - "paths": [ - "M938 170q0-34-25-59t-59-25h-684q-34 0-59 25t-25 59v768l170-170h384v-342h298v-256zM960 682h-94l72-170h-212v256h84v214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "quickreply" - ], - "grid": 24 - }, - { - "id": 1326, - "paths": [ - "M554 298h384v86h-384v-86zM554 640h384v86h-384v-86zM682 470h256v84h-256v-84zM554 512l-212-214v172h-256v84h256v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "read_more" - ], - "grid": 24 - }, - { - "id": 1327, - "paths": [ - "M832 150l-64-64-64 64-64-64-64 64-64-64-64 64-64-64-64 64-64-64v596h-128v128q0 36 17 65t46 46 65 17h512q36 0 65-17t46-46 17-65v-724zM810 810q0 18-12 31t-30 13-30-13-12-31v-128h-384v-468h468v596zM384 298h256v86h-256v-86zM682 298h86v86h-86v-86zM384 426h256v86h-256v-86zM682 426h86v86h-86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "receipt_long" - ], - "grid": 24 - }, - { - "id": 1328, - "paths": [ - "M598 86h-342q-36 0-60 25t-24 59l-2 684q0 34 25 59t61 25h512q36 0 61-25t25-59v-512zM640 512h-170v42h128q16 0 29 13t13 31v128q0 16-13 29t-29 13h-44v42h-84v-42h-86v-86h170v-42h-128q-16 0-29-13t-13-29v-128q0-18 13-31t29-13h44v-42h84v42h86v86zM554 342v-192l192 192h-192z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "request_quote" - ], - "grid": 24 - }, - { - "id": 1329, - "paths": [ - "M938 512v0q0-88-33-165t-92-136-136-92-165-33-165 33-136 92-92 136-33 165q0 78 32 147t90 122 134 83v74h340v-74q76-30 134-83t90-122 32-147zM854 512h-172v-296q78 46 125 124t47 172zM598 182v330h-172v-330q22-6 43-9t43-3 43 3 43 9zM170 512q0-94 47-172t125-124v296h-172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rice_bowl" - ], - "grid": 24 - }, - { - "id": 1330, - "paths": [ - "M554 768h-84v-86h84v86zM640 598h-256v256h256v-256zM810 396v0-226h-128v112l-170-154-426 384h128l298-270 298 270h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "roofing" - ], - "grid": 24 - }, - { - "id": 1331, - "paths": [ - "M598 480v-224h128v170h84v-256h-212v-42h-384v682h-86v86h396q-26-36-40-79t-14-91q0-76 35-140t93-106zM426 470h86v84h-86v-84zM926 698l48-42-42-74-62 20q-20-16-46-26l-14-64h-84l-14 64q-26 10-46 26l-62-20-42 74 48 42q-4 26 0 54l-48 42 42 74 62-20q20 16 46 26l14 64h84l14-62q26-10 46-28l62 22 42-74-48-44q2-16 2-27t-2-27zM768 810q-36 0-61-25t-25-59q0-36 25-61t61-25 61 25 25 61q0 34-25 59t-61 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "room_preferences" - ], - "grid": 24 - }, - { - "id": 1332, - "paths": [ - "M706 470l-152-152 60-60 92 90 180-180 60 60zM470 298h-384v86h384v-86zM896 572l-60-60-110 110-112-110-60 60 112 110-112 112 60 60 112-112 110 112 60-60-110-112zM470 640h-384v86h384v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rule" - ], - "grid": 24 - }, - { - "id": 1333, - "paths": [ - "M854 256h-342l-86-86h-256q-34 0-59 25t-25 61v512q0 36 25 61t59 25h684q34 0 59-25t25-61v-426q0-36-25-61t-59-25zM334 682l-120-120 60-60 60 60 150-152 60 62zM742 554l68 68-60 60-68-68-68 68-60-60 68-68-68-68 60-60 68 68 68-68 60 60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "rule_folder" - ], - "grid": 24 - }, - { - "id": 1334, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM576 256q18 0 30 13t12 29q0 18-12 31t-30 13-30-13-12-31q0-16 12-29t30-13zM682 512q-22 0-58-18t-66-58l-16 102 56 60v170h-44v-152l-46-52-22 112-162-32 8-42 120 24 40-208-66 24v70h-42v-100l140-52q16-6 31 1t23 21q18 36 39 55t39 26 26 7v42z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "run_circle" - ], - "grid": 24 - }, - { - "id": 1335, - "paths": [ - "M844 786l-246-330v-178l56-72q10-12 4-24t-20-12h-252q-14 0-20 12t4 24l56 72v178l-246 330q-12 14-10 29t14 27 30 12h596q18 0 30-12t14-27-10-29z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "science" - ], - "grid": 24 - }, - { - "id": 1336, - "paths": [ - "M410 716h204v78h-204v-78zM854 768q34 0 59-25t25-61v-426q0-36-25-61t-59-25h-684q-34 0-59 25t-25 61v426q0 36 25 61t59 25h-170v86h1024v-86h-170zM170 682v-426h684v428zM388 424q0-32 23-55t57-23q32 0 56 23t24 55q0 34-24 57t-56 23q-34 0-57-23t-23-57zM688 606l-106-106q22-34 22-76 0-38-18-69t-49-49-69-18-69 18-50 49-19 69 19 69 50 50 69 19q40 0 74-22l106 106zM0 0h1024v1024h-1024v-1024z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "screen_search_desktop" - ], - "grid": 24 - }, - { - "id": 1337, - "paths": [ - "M662 598h-34l-12-12q32-36 49-83t17-97q0-58-21-108t-59-88-89-60-107-22q-74 0-135 34t-99 92-42 130h86q4-48 31-87t68-61 91-22q52 0 96 26t70 69 26 97q0 52-26 96t-70 70-96 26q-6 0-11-1t-11-1v86h22q50 0 97-17t83-49l12 12v34l212 212 64-64zM276 462l-106 106-104-106-32 30 106 106-106 104 32 32 104-106 106 106 30-32-106-104 106-106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "search_off" - ], - "grid": 24 - }, - { - "id": 1338, - "paths": [ - "M426 256q0-36 25-61t61-25 61 25 25 61-25 61-61 25-61-25-25-61zM896 682v-84q-72 0-132-30t-106-86l-58-68q-26-30-66-30h-44q-40 0-66 30l-56 68q-48 56-108 86t-132 30v84q88 0 164-36t134-102v96l-164 66q-22 8-35 28t-13 42q0 32 22 55t54 23h94v-22q0-44 31-75t75-31h128q10 0 16 6t6 14q0 10-6 16t-16 6h-128q-26 0-45 19t-19 45v22h308q32 0 54-23t22-55q0-22-13-42t-35-28l-164-66v-96q58 66 134 102t164 36z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "self_improvement" - ], - "grid": 24 - }, - { - "id": 1339, - "paths": [ - "M768 86h-512q-36 0-61 25t-25 59v768h684v-768q0-34-25-59t-61-25zM662 576q-28 0-46-19t-18-45 18-45 46-19q26 0 45 19t19 45-19 45-45 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sensor_door" - ], - "grid": 24 - }, - { - "id": 1340, - "paths": [ - "M768 170v684h-512v-684h512zM768 86h-512q-36 0-61 25t-25 59v684q0 34 25 59t61 25h512q36 0 61-25t25-59v-684q0-34-25-59t-61-25v0zM298 810h428v-256h-428v256zM426 426h172v44h128v-256h-428v256h128v-44z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sensor_window" - ], - "grid": 24 - }, - { - "id": 1341, - "paths": [ - "M898 750l-766 40-4-64 768-40zM896 832h-768v64h768v-64zM938 214v298q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-298q0-36 25-61t59-25h684q34 0 59 25t25 61zM854 256q-54 0-93 28t-45 68q-10-12-32-32t-56-39-82-33-108-14q-76 0-130 20t-89 45-52 44l-17 19 17 20t52 45 89 44 130 19q60 0 108-13t82-33 56-39 32-31q6 40 45 68t93 28v-214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "set_meal" - ], - "grid": 24 - }, - { - "id": 1342, - "paths": [ - "M768 256h-86q0-48-23-86t-61-61-86-23-86 23-61 61-23 86h-86q-36 0-61 25t-25 61v512q0 34 25 59t61 25h512q36 0 61-25t25-59v-512q0-36-25-61t-61-25zM426 426q0 18-12 31t-30 13-30-13-12-31v-84h84v84zM512 170q36 0 61 25t25 61h-172q0-36 25-61t61-25zM682 426q0 18-12 31t-30 13-30-13-12-31v-84h84v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "shopping_bag" - ], - "grid": 24 - }, - { - "id": 1343, - "paths": [ - "M86 938h852v-852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_cellular_0_bar" - ], - "grid": 24 - }, - { - "id": 1344, - "paths": [ - "M512 916l496-618q-6-4-31-22t-69-43-103-49-133-40-160-16-160 16-133 40-103 49-69 43-31 22l496 618v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "signal_wifi_0_bar" - ], - "grid": 24 - }, - { - "id": 1345, - "paths": [ - "M938 384v256q0 36-25 61t-59 25h-44v-86h44v-256h-684v256h256v86h-256q-34 0-59-25t-25-61v-256q0-36 25-61t59-25h684q34 0 59 25t25 61zM618 810l48-102 102-46-102-48-48-102-46 102-102 48 102 46zM726 598l26-60 58-26-58-26-26-60-28 60-58 26 58 26zM618 810l48-102 102-46-102-48-48-102-46 102-102 48 102 46zM726 598l26-60 58-26-58-26-26-60-28 60-58 26 58 26z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "smart_button" - ], - "grid": 24 - }, - { - "id": 1346, - "paths": [ - "M678 448l68 70v144h-128v-214h60zM938 342v426q0 36-25 61t-59 25h-684q-34 0-59-25t-25-61v-512q0-36 25-61t59-25h256l86 86h342q34 0 59 25t25 61zM810 490l-106-106h-150v342h256v-236z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "snippet_folder" - ], - "grid": 24 - }, - { - "id": 1347, - "paths": [ - "M390 214l-308 290q-40 36-40 92v258q0 34 18 63t47 47 63 18h588q22 0 37-16t15-38-15-38-37-16h-246v-42h330q22 0 38-16t16-38-16-37-38-15h-330v-44h374q22 0 37-15t15-37-15-38-37-16h-374v-42h288q22 0 38-16t16-38-16-38-38-16h-422q14-24 29-49t25-43l10-18q6-12 6-24 0-16-12-30l-7-7t-16-17-16-17l-7-7zM598 266q12 0 22 10t10 22q0 14-10 23t-22 9q-14 0-23-9t-9-23q0-12 9-22t23-10zM598 202q-40 0-68 28t-28 68 28 68 68 28 68-28 28-68-28-68-68-28v0zM842 234q10 0 16 7t6 15-6 15-16 7q-8 0-14-7t-6-15 6-15 14-7zM842 170q-34 0-59 25t-25 61 25 61 59 25q36 0 61-25t25-61-25-61-61-25v0zM704 42q-26 0-45 19t-19 45q0 28 19 46t45 18 45-18 19-46q0-26-19-45t-45-19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "soap" - ], - "grid": 24 - }, - { - "id": 1348, - "paths": [ - "M854 256h-342l-86-86h-256q-34 0-59 25t-25 61v512q0 36 25 61t59 25h684q34 0 59-25t25-61v-426q0-36-25-61t-59-25zM598 682h-342v-84h342v84zM768 512h-512v-86h512v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "source", - "topic" - ], - "grid": 24 - }, - { - "id": 1349, - "paths": [ - "M810 640l-60-60-196 196v-690h-84v690l-196-196-60 60 298 298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "south" - ], - "grid": 24 - }, - { - "id": 1350, - "paths": [ - "M810 384h-84v282l-496-496-60 60 496 496h-282v84h426v-426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "south_east" - ], - "grid": 24 - }, - { - "id": 1351, - "paths": [ - "M640 810v-84h-282l496-496-60-60-496 496v-282h-84v426h426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "south_west" - ], - "grid": 24 - }, - { - "id": 1352, - "paths": [ - "M810 384h-66q12-18 18-40t6-46q0-46-23-85t-62-62-85-23q-20 0-42 6-26-22-59-35t-71-13q-60 0-109 32t-73 84q-50 16-83 60t-33 100q0 60 36 105t92 61v368h470v-86h84q36 0 61-25t25-59v-256q0-36-25-61t-61-25zM298 448q-34 0-59-25t-25-61q0-26 16-48t42-32l34-12 16-32q14-30 42-48t62-18q26 0 45 9t29 19l34 26 18-6t44-6q36 0 61 25t25 59h-128q-42 0-72 15t-53 38-42 45-40 37-49 15zM810 726h-84v-256h84v256z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sports_bar" - ], - "grid": 24 - }, - { - "id": 1353, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM768 342h-104v142h-110v142h-110v142h-188v-86h104v-142h110v-142h110v-142h188v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stairs" - ], - "grid": 24 - }, - { - "id": 1354, - "paths": [ - "M938 394l-306-26-120-282-120 282-306 26 232 202-70 300 264-160 264 160-70-300zM512 658l-160 96 42-182-142-124 188-16 72-172 72 172 188 16-142 124 42 182z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star_outline" - ], - "grid": 24 - }, - { - "id": 1355, - "paths": [ - "M616 426l-104-340-104 340h-322l264 188-102 324 264-200 264 200-100-324 262-188h-322z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "star_rate" - ], - "grid": 24 - }, - { - "id": 1356, - "paths": [ - "M810 128h-598q-34 0-59 25t-25 61v596q0 36 25 61t61 25h426l256-256v-426q0-36-25-61t-61-25zM298 342h428v84h-428v-84zM512 598h-214v-86h214v86zM598 832v-234h234z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sticky_note_2" - ], - "grid": 24 - }, - { - "id": 1357, - "paths": [ - "M342 682h340v-340h-340v340zM512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33v0z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stop_circle" - ], - "grid": 24 - }, - { - "id": 1358, - "paths": [ - "M598 854q0-36 25-61t59-25q36 0 61 25t25 61q0 34-25 59t-61 25q-34 0-59-25t-25-59zM170 854q0-36 25-61t61-25 61 25 25 61q0 34-25 59t-61 25-61-25-25-59zM938 298v-22q0-40-19-74t-51-54-72-20q-36 0-61 15t-43 35-32 36l-376 440q-12 14-10 31t13 29 31 12h322q36 0 61-25t25-61v-372q18-22 33-38t37-16q24 0 41 18t17 44v22h84zM610 174q-40-22-87-34t-97-12q-62 0-119 19t-105 55l208 208z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stroller" - ], - "grid": 24 - }, - { - "id": 1359, - "paths": [ - "M938 768h-84v42h128v44h-172v-86q0-18 13-30t31-12h84v-44h-128v-42h128q18 0 31 13t13 29v44q0 16-13 29t-31 13zM250 768h114l146-232h4l146 232h114l-200-310 186-288h-114l-132 214h-4l-132-214h-114l184 288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subscript" - ], - "grid": 24 - }, - { - "id": 1360, - "paths": [ - "M854 170h-562l340 342h222v86h-136l210 210q10-20 10-40v-512q0-36-25-61t-59-25zM44 166l52 50q-10 20-10 40v512q0 36 25 61t59 25h562l126 126 62-60-816-816zM342 512v86h-172v-86h172zM598 718v50h-428v-86h392z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "subtitles_off" - ], - "grid": 24 - }, - { - "id": 1361, - "paths": [ - "M938 298h-84v44h128v42h-172v-86q0-16 13-29t31-13h84v-42h-128v-44h128q18 0 31 13t13 31v42q0 18-13 30t-31 12zM250 854h114l146-232h4l146 232h114l-200-310 186-288h-114l-132 212h-4l-132-212h-114l184 288z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "superscript" - ], - "grid": 24 - }, - { - "id": 1362, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM830 390l-118 48q-16-44-49-77t-77-49l48-118q68 26 119 77t77 119zM512 640q-36 0-65-17t-46-46-17-65 17-65 46-46 65-17 65 17 46 46 17 65-17 65-46 46-65 17zM390 194l50 118q-44 16-78 49t-50 79l-118-50q26-68 77-119t119-77zM194 634l118-48q16 44 49 77t79 49l-50 118q-68-26-119-77t-77-119zM634 830l-48-118q44-16 77-49t49-79l118 50q-26 68-77 119t-119 77z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "support" - ], - "grid": 24 - }, - { - "id": 1363, - "paths": [ - "M896 522q0-88-31-160t-85-125-123-81-145-28-144 28-123 80-86 125-31 163q-20 10-31 30t-11 44v84q0 36 25 61t59 25h44v-260q0-62 23-116t64-95 95-64 116-23 116 23 95 64 64 95 23 116v302h-340v86h340q36 0 61-25t25-61v-52q18-10 30-28t12-42v-98q0-22-12-40t-30-28zM342 554q0-18 12-30t30-12 30 12 12 30-12 31-30 13-30-13-12-31zM598 554q0-18 12-30t30-12 30 12 12 30-12 31-30 13-30-13-12-31zM768 470q-10-60-46-109t-90-77-118-28q-48 0-96 19t-86 55-59 87-17 115q80-34 136-100t72-152q28 56 74 99t105 67 125 24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "support_agent" - ], - "grid": 24 - }, - { - "id": 1364, - "paths": [ - "M362 368v288l-144-144zM426 214l-298 298 298 298v-596zM598 214v596l298-298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "switch_left" - ], - "grid": 24 - }, - { - "id": 1365, - "paths": [ - "M662 656v-288l144 144zM598 810l298-298-298-298v596zM426 810v-596l-298 298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "switch_right" - ], - "grid": 24 - }, - { - "id": 1366, - "paths": [ - "M938 298h-852v-212h852v212zM938 406h-852v212h852v-212zM938 726h-852v212h852v-212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "table_rows" - ], - "grid": 24 - }, - { - "id": 1367, - "paths": [ - "M810 298h-426q-36 0-61 25t-25 61v426q0 36 25 61t61 25h426q36 0 61-25t25-61v-426q0-36-25-61t-61-25zM810 384v86h-426v-86h426zM554 640v-86h86v86h-86zM640 726v84h-86v-84h86zM470 640h-86v-86h86v86zM726 554h84v86h-84v-86zM384 726h86v84h-86v-84zM726 810v-84h84v84h-84zM256 726h-42q-36 0-61-25t-25-61v-426q0-36 25-61t61-25h426q36 0 61 25t25 61v42h-86v-42h-426v426h42v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "table_view" - ], - "grid": 24 - }, - { - "id": 1368, - "paths": [ - "M938 426v-384h-340v384q0 60 36 105t92 61v304h-86v86h256v-86h-86v-304q56-16 92-61t36-105zM854 128v128h-172v-128h172zM534 490q0 44-32 76t-76 32h-84v384h-86v-384h-86q-44 0-75-32t-31-76 31-75 75-31h86v-42h-86q-44 0-75-32t-31-76 31-75 75-31h86v-86h86v86h84q44 0 76 31t32 75-32 76-76 32h-84v42h84q44 0 76 31t32 75z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tapas" - ], - "grid": 24 - }, - { - "id": 1369, - "paths": [ - "M982 342q0-70-30-131t-83-103-121-58q-68-14-134 1t-118 57-82 106h-116v84h-106q-20 0-37 12t-23 32l-90 256v340q0 18 13 31t31 13h42q18 0 30-13t12-31v-42h512v42q0 18 13 31t31 13h42q18 0 30-13t12-31v-328q78-36 125-109t47-159zM192 362h194q6 114 88 192h-346zM192 768q-26 0-45-19t-19-45 19-45 45-19 45 19 19 45-19 45-45 19zM662 768q-28 0-46-19t-18-45 18-45 46-19q26 0 45 19t19 45-19 45-45 19zM786 528l-16 8q-10 4-18 8l-20 4-8 2q-92 20-168-38-76-56-86-150v-40l2-8v-12l2-8 2-10 4-10 2-6q18-48 54-82t84-49 100-7q50 10 90 40t63 75 23 95q0 60-29 110t-81 78v0zM640 170h86v214h-86v-214zM640 426h86v86h-86v-86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "taxi_alert" - ], - "grid": 24 - }, - { - "id": 1370, - "paths": [ - "M870 358l-206-206q-24-24-60-24h-390q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-390q0-36-26-62zM298 298h300v86h-300v-86zM726 726h-428v-86h428v86zM726 554h-428v-84h428v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "text_snippet" - ], - "grid": 24 - }, - { - "id": 1371, - "paths": [ - "M896 170h-598v-84h-84v852h84v-340h598l-86-214zM640 384q0 36-25 61t-61 25q-34 0-59-25t-25-61 25-61 59-25q36 0 61 25t25 61z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tour" - ], - "grid": 24 - }, - { - "id": 1372, - "paths": [ - "M598 170h84v86h-84v-86zM554 298h86v86h-86v-86zM470 170h84v86h-84v-86zM768 384h-86v-86h86v86zM810 256h-84v-86h84v86zM896 384h-86v-86h86v86zM938 256h-84v-86h84v86zM624 614l-108 108q-162-94-256-256l108-108q16-16 12-38l-32-158q-2-14-14-24t-28-10h-176q-18 0-31 13t-13 31q6 92 32 178t72 162q50 88 121 159t159 121q76 44 161 71t179 31q18 2 31-11t13-31v-178q0-14-10-26t-24-14l-158-32q-22-4-38 12zM598 426h84v86h-84v-86zM470 426h84v86h-84v-86zM810 512h-84v-86h84v86zM938 512h-84v-86h84v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "tty" - ], - "grid": 24 - }, - { - "id": 1373, - "paths": [ - "M618 296l-64-50v-100q0-10 7-16t15-6 15 6 7 16v24h84v-24q0-44-31-74t-75-30-75 30-31 74v100l-64 50-150-38 216 652q4 14 16 21t24 7 24-7 16-21l216-652zM566 362l34 26 38-10-84 254v-278zM424 388l34-24 12-10v278l-84-254z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "umbrella" - ], - "grid": 24 - }, - { - "id": 1374, - "paths": [ - "M682 768v86h-340v-86h340zM470 340v342h84v-342h128l-170-170-170 170h128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "upgrade" - ], - "grid": 24 - }, - { - "id": 1375, - "paths": [ - "M982 512l-104-120 14-156-154-36-80-136-146 62-146-62-80 136-154 34 14 158-104 120 104 120-14 156 154 36 80 136 146-62 146 62 80-136 154-36-14-156zM430 714l-162-164 64-62 98 100 250-252 64 64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "verified" - ], - "grid": 24 - }, - { - "id": 1376, - "paths": [ - "M128 256h768v214h86v-214q0-36-25-61t-61-25h-768q-36 0-61 25t-25 61v512q0 36 25 61t61 25h384v-86h-384v-512zM640 512l-256-170v340zM968 786q4-20 2-36l46-36q6-6 2-14l-44-76q-4-8-14-6l-54 22q-14-10-32-18l-8-58q-2-10-12-10h-88q-8 0-10 10l-8 58q-10 4-18 8t-14 10l-56-22q-8-4-12 4l-44 78q-4 8 2 12l46 38q-2 20 0 36l-46 36q-8 6-2 14l44 76q4 8 12 6l54-22q16 10 32 18l10 58q0 8 10 8h88q10 0 10-8l10-58 16-8t14-10l56 22q8 2 12-6l44-76q6-8-2-14zM810 832q-26 0-45-19t-19-45 19-45 45-19q28 0 46 19t18 45-18 45-46 19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "video_settings" - ], - "grid": 24 - }, - { - "id": 1377, - "paths": [ - "M682 854h-596v-684h596v684zM768 342h170v-172h-170v172zM768 854h170v-172h-170v172zM768 598h170v-172h-170v172z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "view_sidebar" - ], - "grid": 24 - }, - { - "id": 1378, - "paths": [ - "M790 342q44 0 75-32t31-76q0-26-16-59t-37-63-37-50l-16-20-16 20t-38 50-38 63-16 59q0 44 32 76t76 32zM576 384q26 0 45-19t19-45q0-14-10-32t-22-35-22-28l-10-11-10 11t-22 28-22 35-10 32q0 26 19 45t45 19zM390 214l-308 290q-40 36-40 92v258q0 34 18 63t47 47 63 18h588q22 0 37-16t15-38-15-38-37-16h-246v-42h330q22 0 38-16t16-38-16-37-38-15h-330v-44h374q22 0 37-15t15-37-15-38-37-16h-374v-42h288q22 0 38-16t16-38-16-38-38-16h-422q14-24 29-49t25-43l10-18q6-12 6-24 0-16-12-30l-7-7t-16-17-16-17l-7-7z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wash" - ], - "grid": 24 - }, - { - "id": 1379, - "paths": [ - "M512 128l-426 384h128v342h596v-342h128zM512 682q-36 0-61-25t-25-59q0-18 13-46t30-57 30-49l13-20 13 20t30 49 30 57 13 46q0 34-25 59t-61 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "water_damage" - ], - "grid": 24 - }, - { - "id": 1380, - "paths": [ - "M384 810l60-60-196-196h690v-84h-690l196-196-60-60-298 298z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "west" - ], - "grid": 24 - }, - { - "id": 1381, - "paths": [ - "M192 170q0-34 25-59t61-25q34 0 59 25t25 59q0 36-25 61t-59 25q-36 0-61-25t-25-61zM426 468v-84q0-36-25-61t-59-25h-128q-36 0-61 25t-25 61v256h86v298h148v-4q-40-40-62-94t-22-114q0-84 41-152t107-106zM704 726q0 34-17 63t-46 47-65 18-65-18-46-47-17-63q0-36 18-65t46-45v-92q-64 20-107 75t-43 127q0 58 29 107t78 77 107 28 107-28 78-77 29-107h-86zM834 598h-194v-256h-86v340h234l106 158 70-46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wheelchair_pickup" - ], - "grid": 24 - }, - { - "id": 1382, - "paths": [ - "M938 212q-2-4-20-17t-49-28-73-27-92-12-92 12-73 27-49 28-20 17l234 300zM854 662q-80 0-152-24-26-10-44 10l-94 94q-90-46-163-119t-119-163l94-94q18-18 10-44-24-72-24-152 0-16-12-29t-30-13h-150q-16 0-29 13t-13 29q0 120 37 229t103 200 157 157 200 103 229 37q16 0 29-13t13-29v-150q0-18-13-30t-29-12z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi_calling" - ], - "grid": 24 - }, - { - "id": 1383, - "paths": [ - "M712 226l98-98h-340v342l98-98q62 46 100 117t38 157q0 42-10 81t-28 73q76-48 121-128t45-176q0-80-33-150t-89-120zM318 378q0-42 10-81t28-73q-76 48-121 128t-45 176q0 80 33 150t89 120l-98 98h340v-342l-98 98q-62-46-100-117t-38-157z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wifi_protected_setup" - ], - "grid": 24 - }, - { - "id": 1384, - "paths": [ - "M256 128v256q0 64 28 117t76 89 110 46v174h-128v86h340v-86h-128v-174q62-10 110-46t76-89 28-117v-256h-512zM682 342h-340v-128h340v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wine_bar" - ], - "grid": 24 - }, - { - "id": 1385, - "paths": [ - "M598 426v-286q-44-12-86-12-68 0-129 25t-109 71-76 110-28 144q0 212 342 504 342-292 342-504 0-14-1-26t-3-26h-252zM512 554q-36 0-61-25t-25-59q0-36 25-61t61-25 61 25 25 61q0 34-25 59t-61 25zM962 122l-60-60-92 92-90-92-60 60 90 92-90 90 60 60 90-90 92 90 60-60-92-90z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wrong_location" - ], - "grid": 24 - }, - { - "id": 1386, - "paths": [ - "M810 128h-596q-36 0-61 25t-25 61v596q0 36 25 61t61 25h596q36 0 61-25t25-61v-596q0-36-25-61t-61-25zM810 810h-596v-512h596v512zM726 512h-428v-86h428v86zM554 682h-256v-84h256v84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "wysiwyg" - ], - "grid": 24 - }, - { - "id": 1387, - "paths": [ - "M320 896h-234v-512h234v512zM630 128h-236v768h236v-768zM938 470h-234v426h234v-426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "leaderboard" - ], - "grid": 24 - }, - { - "id": 1388, - "paths": [ - "M256 256q36 0 61-25t25-61q0-34-25-59t-61-25-61 25-25 59q0 36 25 61t61 25zM426 402q0-26-14-47t-38-31q-26-12-56-19t-62-7-62 7-56 19q-24 10-38 31t-14 47v24h340v-24zM768 256q36 0 61-25t25-61q0-34-25-59t-61-25-61 25-25 59q0 36 25 61t61 25zM938 402q0-26-14-47t-38-31q-26-12-56-19t-62-7-62 7-56 19q-24 10-38 31t-14 47v24h340v-24zM810 726v-86h-596v86l-128-128 128-128v86l596-2v-84l128 128zM426 810v-42h-106q-8 0-15 6t-7 16v128q0 8 7 14t15 6h86q8 0 14-6t6-14v-64q0-10-6-16t-14-6h-64v-22h84zM384 874v22h-42v-22h42zM746 810h-42v128h-42v-128h-44v-42h128v42zM534 810v22h42v42h-42v64h-44v-170h108v42h-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "6_ft_apart" - ], - "grid": 24 - }, - { - "id": 1389, - "paths": [ - "M570 854l24 84h-380q-36 0-61-25t-25-59v-598q0-36 25-61t61-25h42v-84h86v84h340v-84h86v84h42q36 0 61 25t25 61v380l-86-24v-186h-596v428h356zM926 908l-138-138 108-44-298-86 84 298 46-106 138 136zM512 726v-214h-214v214h214z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "book_online" - ], - "grid": 24 - }, - { - "id": 1390, - "paths": [ - "M724 214l28 58 58 26-58 28-28 58-26-58-58-28 58-26zM470 262v-92h84q36 0 66 20l62-62q-26-20-59-31t-69-11h-234v84h64v92q-56 12-99 50t-61 94h170l246 92v-28q0-52-22-95t-61-73-87-40zM42 938h172v-468h-172v468zM854 726h-300l-88-32 14-40 74 28h120q22 0 37-14t15-36v0q0-34-34-48l-310-114h-84v384l300 84 340-128q0-34-25-59t-59-25zM854 598q34 0 59-25t25-61q0-18-13-46t-29-57-29-48l-13-19-13 19t-30 48-30 57-13 46q0 36 25 61t61 25z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "clean_hands" - ], - "grid": 24 - }, - { - "id": 1391, - "paths": [ - "M470 598h-86q0-80 30-150t83-122 122-82 149-30v84q-62 0-116 24t-95 65-64 95-23 116zM768 470v-86q-58 0-107 29t-78 77-29 108h86q0-36 17-65t46-46 65-17zM298 170q0-34-25-59t-59-25q-36 0-61 25t-25 59q0 36 25 61t61 25q34 0 59-25t25-61zM488 192h-84q-8 46-43 76t-83 30h-128q-28 0-46 19t-18 45v108h256v-98q58-18 99-67t47-113zM810 726q36 0 61-25t25-61-25-61-61-25q-34 0-59 25t-25 61 25 61 59 25zM874 768h-128q-48 0-83-31t-43-75h-84q6 64 47 113t99 67v96h256v-106q0-26-18-45t-46-19z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "connect_without_contact" - ], - "grid": 24 - }, - { - "id": 1392, - "paths": [ - "M906 448q-12 0-22 9t-10 23h-66q-8-88-64-156l46-46h2q8 10 21 10t23-10 10-23-10-23l-44-44q-10-10-23-10t-23 10-10 23 10 21l-48 48q-32-28-71-44t-83-22v-64q14 0 23-10t9-22q0-14-9-23t-23-9h-64q-14 0-23 9t-9 23q0 12 9 22t23 10v66q-44 4-84 21t-72 43l-46-46v-2q10-8 10-21t-10-23-23-10-23 10l-44 44q-10 10-10 23t10 23 23 10 21-10l48 48q-28 32-44 71t-20 83h-66q0-14-10-23t-22-9q-14 0-23 9t-9 23v64q0 14 9 23t23 9q12 0 22-9t10-23h66q4 44 21 83t43 71l-48 48q-8-10-21-10t-23 10-10 23 10 23l44 44q10 10 23 10t23-10 10-23-10-21v-2l46-46q32 26 72 43t84 21v66q-14 0-23 10t-9 22q0 14 9 23t23 9h64q12 0 22-9t10-23q0-12-10-22t-22-10v0-66q42-4 82-21t72-43l46 48q-8 8-8 21t10 23q8 10 22 10t22-10l46-46q10-8 10-22t-10-22q-10-10-23-10t-23 10v0l-46-46q26-34 43-73t21-83h66q0 12 10 22t22 10q14 0 23-10t9-22v-64q0-14-9-23t-23-9zM586 342q18 0 31 12t13 30-13 30-31 12q-16 0-29-12t-13-30 13-30 29-12zM512 554q-18 0-30-12t-12-30 12-30 30-12 30 12 12 30-12 30-30 12zM438 342q16 0 29 12t13 30-13 30-29 12q-18 0-31-12t-13-30 13-30 31-12zM362 554q-16 0-29-12t-13-30 13-30 29-12q18 0 31 12t13 30-13 30-31 12zM438 682q-18 0-31-12t-13-30 13-30 31-12q16 0 29 12t13 30-13 30-29 12zM586 682q-16 0-29-12t-13-30 13-30 29-12q18 0 31 12t13 30-13 30-31 12zM618 512q0-18 13-30t31-12q16 0 29 12t13 30-13 30-29 12q-18 0-31-12t-13-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "coronavirus" - ], - "grid": 24 - }, - { - "id": 1393, - "paths": [ - "M576 234q36 0 61-25t25-59q0-36-25-61t-61-25-61 25-25 61q0 34 25 59t61 25zM854 534v448h-44v-448q0-10-6-16t-14-6q-10 0-16 6t-6 16v42h-42v-30q-48-12-86-40t-64-66q-10 26-16 55t-6 59q0 8 1 15t1 15l84 120v278h-86v-214l-76-108-8 150-128 172-68-52 110-148v-228q0-36 6-72t16-72l-64 36v152h-86v-202l230-130q20-10 42-10t42 12q22 12 34 36v0l34 72q20 40 61 67t91 27q26 0 45 18t19 46z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "elderly" - ], - "grid": 24 - }, - { - "id": 1394, - "paths": [ - "M406 234q34 0 59-25t25-59q0-36-25-61t-59-25q-36 0-61 25t-25 61q0 34 25 59t61 25zM246 380l-118 602h90l74-342 92 86v256h86v-322l-88-88 26-128q42 50 102 80t130 30v-84q-60 0-108-29t-78-77l-40-68q-12-18-31-29t-41-11q-16 0-32 6l-224 92v200h84v-142zM554 86v298h160v598h64v-598h160v-298h-384zM768 342v-76h-150v-64h150v-74l106 106z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "follow_the_signs" - ], - "grid": 24 - }, - { - "id": 1395, - "paths": [ - "M504 384h40v40l74 74v-114h64v178l128 128v-348q0-36-25-61t-59-25h-86v-128q0-18-13-30t-29-12h-172q-16 0-29 12t-13 30v128h-8zM470 170h84v86h-84v-86zM904 904l-784-784-60 60 154 154v476q0 36 25 61t59 25q0 18 13 30t31 12q16 0 29-12t13-30h256q0 18 13 30t29 12q18 0 31-12t13-30q20 0 40-10l78 78zM342 768v-306l64 64v242h-64zM480 768v-168l64 64v104h-64zM618 768v-28l30 28h-30z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "leave_bags_at_home" - ], - "grid": 24 - }, - { - "id": 1396, - "paths": [ - "M832 256q-42 0-72 28t-34 70q-40-10-71-29t-64-33-79-14-79 14-64 33-71 29q-4-40-34-69t-72-29q-44 0-75 31t-31 75v22q0 96 25 160t67 103 90 57 96 20q32 20 70 32t78 12 78-12 70-32q48-2 96-20t90-57 67-103 25-160v-22q0-44-31-75t-75-31zM150 384v-22q0-16 12-29t30-13 30 13 12 29v128q0 42 12 79t32 71q-32-16-62-46t-48-81-18-129zM874 384q0 78-18 129t-48 81-62 46q20-34 32-71t12-79v-128q0-16 12-29t30-13 30 13 12 29v22zM456 448q-14 8-31 17t-41 15v-44q16-6 28-13t22-13q18-10 36-18t42-8 42 8 34 18q12 6 24 13t28 13v44q-24-6-41-15t-31-19l-28-14t-28-6-28 6-28 16z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "masks" - ], - "grid": 24 - }, - { - "id": 1397, - "paths": [ - "M682 170q0-34 25-59t61-25 61 25 25 59q0 36-25 61t-61 25-61-25-25-61zM886 324q-26-12-56-19t-62-7q-42 0-82 12 40 38 40 92v24h212v-24q0-26-14-47t-38-31zM256 256q36 0 61-25t25-61q0-34-25-59t-61-25-61 25-25 59q0 36 25 61t61 25zM338 310q-40-12-82-12-32 0-62 7t-56 19q-24 10-38 31t-14 47v24h212v-24q0-54 40-92zM426 170q0-34 25-59t61-25 61 25 25 59q0 36-25 61t-61 25-61-25-25-61zM682 426h-340v-24q0-26 14-47t38-31q26-12 56-19t62-7 62 7 56 19q24 10 38 31t14 47v24zM640 682q0-34 25-59t61-25q34 0 59 25t25 59q0 36-25 61t-59 25q-36 0-61-25t-25-61zM896 938h-342v-24q0-26 15-47t37-31q28-12 58-19t62-7 61 7 57 19q24 10 38 31t14 47v24zM214 682q0-34 25-59t59-25q36 0 61 25t25 59q0 36-25 61t-61 25q-34 0-59-25t-25-61zM470 938h-342v-24q0-26 14-47t38-31q28-12 57-19t61-7 62 7 58 19q22 10 37 31t15 47v24zM544 554v-84h-64v84h-96l128 128 128-128h-96z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "reduce_capacity" - ], - "grid": 24 - }, - { - "id": 1398, - "paths": [ - "M662 278q0-14 9-32t22-35 23-29l10-12 9 12t22 29 23 35 10 32q0 26-19 45t-45 19q-28 0-46-19t-18-45zM832 640q44 0 75-31t31-75q0-28-16-61t-37-63-37-49l-16-19-16 19t-37 49-37 63-16 61q0 44 31 75t75 31zM554 598h-84v-86h-86v86h-86v84h86v86h86v-86h84v-84zM682 512v426h-512v-426q0-64 28-117t77-89 109-46v-90h-86v-84h256q36 0 69 11t59 31l-60 62q-16-10-33-15t-35-5h-84v90q60 10 108 46t76 89 28 117z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sanitizer" - ], - "grid": 24 - }, - { - "id": 1399, - "paths": [ - "M726 726h84v170q0 36-25 61t-59 25h-428q-34 0-59-25t-25-61v-768q0-36 25-60t59-24l428-2q34 0 59 25t25 61v170h-84v-42h-428v512h428v-42zM938 512l-170-170v128h-214v84h214v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "send_to_mobile" - ], - "grid": 24 - }, - { - "id": 1400, - "paths": [ - "M896 384q-36 0-61-25t-25-61q0-16 13-45t30-57 30-48l13-20 13 20t30 48 30 57 13 45q0 36-25 61t-61 25zM746 298q0-22 12-52t28-60q-56-48-126-74t-148-26q-88 0-166 33t-136 92-91 136-33 165 33 165 91 136 136 92 166 33 165-33 136-92 92-136 33-165q0-18-1-35t-5-35q-8 4-17 5t-19 1q-42 0-75-20t-54-54-21-76zM666 314l46 46-46 46 46 44-46 46-90-90zM312 360l46-46 90 92-90 90-46-46 46-44zM658 726q-22-38-60-62t-86-24-86 24-60 62h-72q18-48 56-86l-126-72q-32 18-64 0-24-14-30-39t6-49q14-24 39-30t49 6q16 10 24 25t8 31l152 88q48-24 104-24 74 0 133 42t85 108h-72z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "sick" - ], - "grid": 24 - }, - { - "id": 1401, - "paths": [ - "M938 222l-486 486-182-180 62-60 120 120 426-426zM512 854q-70 0-132-27t-109-74-74-109-27-132 27-132 74-109 109-74 132-27q50 0 96 14t86 40l62-62q-52-36-114-56t-130-20q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33q56 0 107-13t97-39l-64-64q-32 16-67 24t-73 8zM810 640h-128v86h128v128h86v-128h128v-86h-128v-128h-86v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "add_task" - ], - "grid": 24 - }, - { - "id": 1402, - "paths": [ - "M598 86h-342q-36 0-61 25t-25 59v684q0 34 25 59t61 25h512q36 0 61-25t25-59v-512zM512 426q36 0 61 25t25 61-25 61-61 25-61-25-25-61 25-61 61-25zM682 768h-340v-24q0-26 14-48t38-32q26-12 56-18t62-6 62 6 56 18q24 10 38 32t14 48v24z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "contact_page" - ], - "grid": 24 - }, - { - "id": 1403, - "paths": [ - "M128 128v768h768v-768h-768zM726 666l-60 60-154-154-154 154-60-60 154-154-154-154 60-60 154 154 154-154 60 60-154 154z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "disabled_by_default" - ], - "grid": 24 - }, - { - "id": 1404, - "paths": [ - "M938 512q0-88-33-165t-92-136-136-92-165-33-165 33-136 92-92 136-33 165q0 78 25 147t72 125 109 94 134 52v-290h-84v-128h84v-106q0-42 21-76t54-54 75-20h106v128h-84q-18 0-31 13t-13 29v86h128v128h-128v296q82-8 152-44t122-93 81-130 29-157z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "facebook" - ], - "grid": 24 - }, - { - "id": 1405, - "paths": [ - "M512 544q52 0 98 11t82 27 56 48 20 68v70h-512v-68q0-38 20-70t56-48 82-27 98-11zM170 554q36 0 61-25t25-59q0-36-25-61t-61-25q-34 0-59 25t-25 61q0 34 25 59t59 25zM218 602q-10-2-22-3t-26-1q-32 0-61 6t-57 18q-24 10-38 32t-14 48v66h192v-68q0-52 26-98zM854 554q34 0 59-25t25-59q0-36-25-61t-59-25q-36 0-61 25t-25 61q0 34 25 59t61 25zM1024 702q0-26-14-48t-38-32q-28-12-57-18t-61-6q-14 0-26 1t-22 3q26 46 26 98v68h192v-66zM512 256q36 0 65 17t46 46 17 65-17 65-46 46-65 17-65-17-46-46-17-65 17-65 46-46 65-17z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "groups" - ], - "grid": 24 - }, - { - "id": 1406, - "paths": [ - "M726 256h-86v-128q0-18-13-30t-29-12h-172q-16 0-29 12t-13 30v128h-86q-34 0-59 25t-25 61v468q0 36 25 61t59 25q0 18 13 30t31 12q16 0 29-12t13-30h256q0 18 13 30t29 12q18 0 31-12t13-30q34 0 59-25t25-61v-468q0-36-25-61t-59-25zM406 768h-64v-384h64v384zM544 768h-64v-384h64v384zM576 256h-128v-106h128v106zM682 768h-64v-384h64v384z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "luggage" - ], - "grid": 24 - }, - { - "id": 1407, - "paths": [ - "M904 904l-784-784-60 60 118 118q-4 10-6 21t-2 23v512q0 34 25 59t61 25h512q20 0 40-10l36 36zM256 598v-86h136l84 86h-220zM632 512l-334-334v-92h128v84h172v-84h128v90q54 16 91 61t37 105v390l-86-84v-136h-136z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_backpack" - ], - "grid": 24 - }, - { - "id": 1408, - "paths": [ - "M544 384v40l74 74v-114h64v178l128 128v-348q0-36-25-61t-59-25h-86v-128q0-18-13-30t-29-12h-172q-16 0-29 12t-13 30v128h-8l128 128h40zM448 150h128v106h-128v-106zM904 904l-784-784-60 60 154 154v476q0 36 25 61t59 25q0 18 13 30t31 12q16 0 29-12t13-30h256q0 18 13 30t29 12q18 0 31-12t13-30q20 0 40-10l78 78zM342 768v-306l64 64v242h-64zM544 768h-64v-168l64 64v104z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "no_luggage" - ], - "grid": 24 - }, - { - "id": 1409, - "paths": [ - "M512 86q-88 0-165 33t-136 92-92 136-33 165 33 165 92 136 136 92 165 33 165-33 136-92 92-136 33-165-33-165-92-136-136-92-165-33zM592 492l-212 212-60-60 212-212-90-90h240v240z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "outbond" - ], - "grid": 24 - }, - { - "id": 1410, - "paths": [ - "M754 406l-302 302-182-180 62-60 120 120 242-242zM170 512q0-74 31-139t81-111l102 100v-256h-256l94 94q-62 58-99 139t-37 173q0 84 29 157t81 130 122 93 152 44v-86q-64-8-118-37t-95-75-64-103-23-123zM938 512q0-84-29-157t-81-130-122-93-152-44v86q64 8 118 37t95 75 64 103 23 123q0 74-31 139t-81 111l-102-100v256h256l-94-94q62-58 99-139t37-173z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "published_with_changes" - ], - "grid": 24 - }, - { - "id": 1411, - "paths": [ - "M598 86h-342q-36 0-61 25t-25 59v684q0 34 25 59t61 25h512q36 0 61-25t25-59v-512zM640 470h-170v42h128q16 0 29 13t13 29v128q0 18-13 31t-29 13h-44v42h-84v-42h-86v-86h170v-42h-128q-16 0-29-13t-13-31v-128q0-16 13-29t29-13h44v-42h84v42h86v86z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "request_page" - ], - "grid": 24 - }, - { - "id": 1412, - "paths": [ - "M86 852l320-320 170 172 302-340 60 60-362 408-170-172-256 256zM150 660l256-256 170 172 362-408-60-60-302 340-170-172-320 320z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "stacked_line_chart" - ], - "grid": 24 - }, - { - "id": 1413, - "paths": [ - "M904 904l-784-784-60 60 96 96q-34 52-52 111t-18 125q0 88 33 165t92 136 136 92 165 33q66 0 125-18t111-52l96 96zM452 708l-182-180 62-60 120 120 8-8 60 60zM580 460l-304-304q52-34 111-52t125-18q88 0 165 33t136 92 92 136 33 165q0 66-18 125t-52 111l-228-228 114-114-62-60z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "unpublished" - ], - "grid": 24 - }, - { - "id": 1414, - "paths": [ - "M470 86h84v212h342v128h-342v172h214v128h-214v212h-84v-212h-214v-128h214v-172h-342v-128h342v-212z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_horizontal_center" - ], - "grid": 24 - }, - { - "id": 1415, - "paths": [ - "M170 938h-84v-852h84v852zM938 298h-682v128h682v-128zM682 598h-426v128h426v-128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_horizontal_left" - ], - "grid": 24 - }, - { - "id": 1416, - "paths": [ - "M854 86h84v852h-84v-852zM86 426h682v-128h-682v128zM342 726h426v-128h-426v128z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_horizontal_right" - ], - "grid": 24 - }, - { - "id": 1417, - "paths": [ - "M938 938h-852v-84h852v84zM426 86h-128v682h128v-682zM726 342h-128v426h128v-426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_vertical_bottom" - ], - "grid": 24 - }, - { - "id": 1418, - "paths": [ - "M938 470h-212v-214h-128v214h-172v-342h-128v342h-220v84h220v342h128v-342h172v214h128v-214h212v-84z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_vertical_center" - ], - "grid": 24 - }, - { - "id": 1419, - "paths": [ - "M938 86v84h-852v-84h852zM298 938h128v-682h-128v682zM598 682h128v-426h-128v426z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "align_vertical_top" - ], - "grid": 24 - }, - { - "id": 1420, - "paths": [ - "M170 938h-84v-852h84v852zM938 86h-84v852h84v-852zM576 298h-128v428h128v-428z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "horizontal_distribute" - ], - "grid": 24 - }, - { - "id": 1421, - "paths": [ - "M640 896h-86v-86h86v86zM554 598h-84v212h84v-212zM896 512h-86v170h86v-170zM810 426h-84v86h84v-86zM298 512h-84v86h84v-86zM214 426h-86v86h86v-86zM512 214h86v-86h-86v86zM192 192v128h128v-128h-128zM384 384h-256v-256h256v256zM192 704v128h128v-128h-128zM384 896h-256v-256h256v256zM704 192v128h128v-128h-128zM896 384h-256v-256h256v256zM810 810v-128h-170v86h86v128h170v-86h-86zM726 512h-172v86h172v-86zM554 426h-256v86h86v86h86v-86h84v-86zM598 384v-86h-86v-84h-86v170h172zM288 224h-64v64h64v-64zM288 736h-64v64h64v-64zM800 224h-64v64h64v-64z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "qr_code_2" - ], - "grid": 24 - }, - { - "id": 1422, - "paths": [ - "M370 250l-62-62q44-28 96-44t108-16q88 0 164 37t128 97l92-92v256h-256l102-102q-40-50-100-80t-130-30q-38 0-74 9t-68 27zM554 298h-84v50l84 86v-136zM844 964l-128-128q-44 28-96 44t-108 16q-80 0-149-30t-122-83-83-122-30-149q0-56 16-108t44-96l-128-128 60-60 784 784zM654 774l-404-404q-18 32-27 68t-9 74q0 62 23 116t64 95 95 64 116 23q38 0 74-9t68-27zM894 554h-86q-8 52-34 100l64 62q22-36 36-77t20-85z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "update_disabled" - ], - "grid": 24 - }, - { - "id": 1423, - "paths": [ - "M938 86v84h-852v-84h852zM298 448v128h428v-128h-428zM86 854v84h852v-84h-852z" - ], - "attrs": [], - "isMulticolor": false, - "isMulticolor2": false, - "tags": [ - "vertical_distribute" - ], - "grid": 24 - } - ], - "colorThemes": [], - "colorThemeIdx": 0 - } - ], - "preferences": { - "showGlyphs": true, - "showCodes": true, - "showQuickUse": true, - "showQuickUse2": true, - "showSVGs": true, - "fontPref": { - "prefix": "icon-", - "metadata": { - "fontFamily": "icons_sys_48", - "majorVersion": 1, - "minorVersion": 0 - }, - "metrics": { - "emSize": 1024, - "baseline": 6.25, - "whitespace": 50 - }, - "embed": false, - "showSelector": false, - "showMetrics": false, - "showMetadata": false, - "showVersion": false, - "noie8": false, - "ie7": true - }, - "imagePref": { - "prefix": "icon-", - "png": true, - "useClassSelector": true, - "color": 0, - "bgColor": 16777215, - "name": "icomoon", - "classSelector": ".icon" - }, - "historySize": 50 - }, - "uid": -1 -} \ No newline at end of file diff --git a/src/displayapp/fonts/material-design-icons/LICENSE b/src/displayapp/fonts/material-design-icons/LICENSE new file mode 100644 index 00000000..7a4a3ea2 --- /dev/null +++ b/src/displayapp/fonts/material-design-icons/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/src/displayapp/fonts/material-design-icons/MaterialIcons-Regular.ttf b/src/displayapp/fonts/material-design-icons/MaterialIcons-Regular.ttf new file mode 100644 index 00000000..59404102 Binary files /dev/null and b/src/displayapp/fonts/material-design-icons/MaterialIcons-Regular.ttf differ diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp index db3219cf..b00bb0fa 100644 --- a/src/displayapp/screens/FlashLight.cpp +++ b/src/displayapp/screens/FlashLight.cpp @@ -22,7 +22,7 @@ FlashLight::FlashLight(Pinetime::Applications::DisplayApp* app, flashLight = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48); - lv_label_set_text_static(flashLight, Symbols::highlight); + lv_label_set_text_static(flashLight, Symbols::flashlight); lv_obj_align(flashLight, nullptr, LV_ALIGN_CENTER, 0, 0); for (auto& indicator : indicators) { diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index f9731816..c6e76e36 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -39,17 +39,16 @@ namespace Pinetime { static constexpr const char* home = "\xEF\x80\x95"; // lv_font_sys_48.c - static constexpr const char* settings = "\xEE\xA4\x82"; // e902 + static constexpr const char* settings = "\xEE\xA2\xB8"; - static constexpr const char* brightnessHigh = "\xEE\xA4\x84"; // e904 - static constexpr const char* brightnessLow = "\xEE\xA4\x85"; // e905 - static constexpr const char* brightnessMedium = "\xEE\xA4\x86"; // e906 + static constexpr const char* brightnessLow = "\xEE\x8E\xAA"; + static constexpr const char* brightnessMedium = "\xEE\x8E\xAB"; + static constexpr const char* brightnessHigh = "\xEE\x8E\xAC"; - static constexpr const char* notificationsOff = "\xEE\xA4\x8B"; // e90b - static constexpr const char* notificationsOn = "\xEE\xA4\x8C"; // e90c - - static constexpr const char* highlight = "\xEE\xA4\x87"; // e907 + static constexpr const char* notificationsOff = "\xEE\x9F\xB6"; + static constexpr const char* notificationsOn = "\xEE\x9F\xB7"; + static constexpr const char* flashlight = "\xEF\x80\x8B"; } } } diff --git a/src/displayapp/screens/settings/QuickSettings.cpp b/src/displayapp/screens/settings/QuickSettings.cpp index 708d5109..e0e2f9b6 100644 --- a/src/displayapp/screens/settings/QuickSettings.cpp +++ b/src/displayapp/screens/settings/QuickSettings.cpp @@ -72,7 +72,7 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, lv_obj_t* lbl_btn; lbl_btn = lv_label_create(btn2, nullptr); lv_obj_set_style_local_text_font(lbl_btn, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48); - lv_label_set_text_static(lbl_btn, Symbols::highlight); + lv_label_set_text_static(lbl_btn, Symbols::flashlight); btn3 = lv_btn_create(lv_scr_act(), nullptr); btn3->user_data = this; -- cgit v1.2.3 From 4450c58216822e9e80f85999bf88f848d9b72464 Mon Sep 17 00:00:00 2001 From: Zach DeCook Date: Mon, 25 Jul 2022 02:26:09 -0400 Subject: Date formats: Use ISO 8601 (#1040) * System Info: Use YYYY-MM-DD The date format with the slashes has different meaning in different regions * Terminal Watchface: Use dashes as date separator Using the popular ISO 8601 format instead Co-authored-by: Riku Isokoski --- src/displayapp/screens/SystemInfo.cpp | 6 +++--- src/displayapp/screens/WatchFaceTerminal.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index 7e1ae2f8..54059796 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -143,7 +143,7 @@ std::unique_ptr SystemInfo::CreateScreen2() { lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr); lv_label_set_recolor(label, true); lv_label_set_text_fmt(label, - "#808080 Date# %02d/%02d/%04d\n" + "#808080 Date# %04d-%02d-%02d\n" "#808080 Time# %02d:%02d:%02d\n" "#808080 Uptime#\n %02lud %02lu:%02lu:%02lu\n" "#808080 Battery# %d%%/%03imV\n" @@ -152,9 +152,9 @@ std::unique_ptr SystemInfo::CreateScreen2() { "#808080 Accel.# %s\n" "#808080 Touch.# %x.%x.%x\n" "#808080 Model# %s", - dateTimeController.Day(), - static_cast(dateTimeController.Month()), dateTimeController.Year(), + static_cast(dateTimeController.Month()), + dateTimeController.Day(), dateTimeController.Hours(), dateTimeController.Minutes(), dateTimeController.Seconds(), diff --git a/src/displayapp/screens/WatchFaceTerminal.cpp b/src/displayapp/screens/WatchFaceTerminal.cpp index c899648c..f5490b44 100644 --- a/src/displayapp/screens/WatchFaceTerminal.cpp +++ b/src/displayapp/screens/WatchFaceTerminal.cpp @@ -149,7 +149,7 @@ void WatchFaceTerminal::Refresh() { } if ((year != currentYear) || (month != currentMonth) || (dayOfWeek != currentDayOfWeek) || (day != currentDay)) { - lv_label_set_text_fmt(label_date, "[DATE]#007fff %04d.%02d.%02d#", short(year), char(month), char(day)); + lv_label_set_text_fmt(label_date, "[DATE]#007fff %04d-%02d-%02d#", short(year), char(month), char(day)); currentYear = year; currentMonth = month; -- cgit v1.2.3 From 80c1a5a0a463c68a1e3c06c76133a68d72d3dde1 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sun, 31 Jul 2022 08:19:20 +0300 Subject: Theme cleanup (#1256) Remove unnecessary comments, styles, colors, overrides. Fix arc colors --- src/displayapp/lv_pinetime_theme.c | 152 +++++----------------- src/displayapp/lv_pinetime_theme.h | 39 +----- src/displayapp/screens/StopWatch.cpp | 4 - src/displayapp/screens/settings/QuickSettings.cpp | 1 - 4 files changed, 34 insertions(+), 162 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/lv_pinetime_theme.c b/src/displayapp/lv_pinetime_theme.c index e18742c2..9c90ce12 100644 --- a/src/displayapp/lv_pinetime_theme.c +++ b/src/displayapp/lv_pinetime_theme.c @@ -1,41 +1,13 @@ -/** - * @file lv_pinetime_theme.c - * - */ - -/********************* - * INCLUDES - *********************/ #include "displayapp/lv_pinetime_theme.h" -/********************* - * DEFINES - *********************/ - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * STATIC PROTOTYPES - **********************/ static void theme_apply(lv_obj_t* obj, lv_theme_style_t name); -/********************** - * STATIC VARIABLES - **********************/ static lv_theme_t theme; -static lv_style_t style_circle; - static lv_style_t style_bg; static lv_style_t style_box; -static lv_style_t style_box_border; static lv_style_t style_btn; -static lv_style_t style_btn_border; -static lv_style_t style_title; static lv_style_t style_label_white; -static lv_style_t style_back; static lv_style_t style_icon; static lv_style_t style_bar_indic; static lv_style_t style_slider_knob; @@ -51,7 +23,6 @@ static lv_style_t style_arc_knob; static lv_style_t style_arc_indic; static lv_style_t style_table_cell; static lv_style_t style_pad_small; -static lv_style_t style_bg_grad; static lv_style_t style_lmeter; static lv_style_t style_chart_serie; static lv_style_t style_cb_bg; @@ -59,14 +30,6 @@ static lv_style_t style_cb_bullet; static bool inited; -/********************** - * MACROS - **********************/ - -/********************** - * STATIC FUNCTIONS - **********************/ - static void style_init_reset(lv_style_t* style) { if (inited) lv_style_reset(style); @@ -75,10 +38,6 @@ static void style_init_reset(lv_style_t* style) { } static void basic_init(void) { - - style_init_reset(&style_circle); - lv_style_set_radius(&style_circle, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - style_init_reset(&style_bg); lv_style_set_bg_opa(&style_bg, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_bg_color(&style_bg, LV_STATE_DEFAULT, LV_COLOR_BLACK); @@ -87,41 +46,27 @@ static void basic_init(void) { style_init_reset(&style_box); lv_style_set_bg_opa(&style_box, LV_STATE_DEFAULT, LV_OPA_COVER); lv_style_set_radius(&style_box, LV_STATE_DEFAULT, 10); - lv_style_set_value_color(&style_box, LV_STATE_DEFAULT, LV_PINETIME_BLUE); + lv_style_set_value_color(&style_box, LV_STATE_DEFAULT, IT_COLOR_BG); lv_style_set_value_font(&style_box, LV_STATE_DEFAULT, theme.font_normal); - style_init_reset(&style_box_border); - lv_style_set_bg_opa(&style_box_border, LV_STATE_DEFAULT, LV_OPA_TRANSP); - lv_style_set_border_width(&style_box_border, LV_STATE_DEFAULT, 2); - lv_style_set_border_color(&style_box_border, LV_STATE_DEFAULT, LV_PINETIME_GRAY); - lv_style_set_text_color(&style_box, LV_STATE_DEFAULT, LV_PINETIME_BLUE); - - style_init_reset(&style_title); - lv_style_set_text_color(&style_title, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_text_font(&style_title, LV_STATE_DEFAULT, theme.font_subtitle); - style_init_reset(&style_label_white); - lv_style_set_text_color(&style_label_white, LV_STATE_DEFAULT, LV_PINETIME_WHITE); + lv_style_set_text_color(&style_label_white, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_label_white, LV_STATE_DISABLED, LV_COLOR_GRAY); style_init_reset(&style_btn); lv_style_set_radius(&style_btn, LV_STATE_DEFAULT, 10); lv_style_set_bg_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_btn, LV_STATE_DEFAULT, LV_PINETIME_BLUE); - lv_style_set_bg_color(&style_btn, LV_STATE_CHECKED, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); - lv_style_set_bg_color(&style_btn, LV_STATE_DISABLED, LV_PINETIME_BLUE); - lv_style_set_bg_color(&style_btn, LV_STATE_DISABLED | LV_STATE_CHECKED, lv_color_hex3(0x888)); - lv_style_set_border_color(&style_btn, LV_STATE_DEFAULT, theme.color_primary); + lv_style_set_bg_color(&style_btn, LV_STATE_DEFAULT, IT_COLOR_BG); + lv_style_set_bg_color(&style_btn, LV_STATE_CHECKED, IT_COLOR_SEL); + lv_style_set_bg_color(&style_btn, LV_STATE_DISABLED, IT_COLOR_BG_DARK); + lv_style_set_border_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); lv_style_set_border_width(&style_btn, LV_STATE_DEFAULT, 0); - lv_style_set_text_color(&style_btn, LV_STATE_DEFAULT, lv_color_hex(0xffffff)); - lv_style_set_text_color(&style_btn, LV_STATE_CHECKED, lv_color_hex(0xffffff)); - lv_style_set_text_color(&style_btn, LV_STATE_CHECKED, lv_color_hex(0xffffff)); - lv_style_set_text_color(&style_btn, LV_STATE_DISABLED, lv_color_hex(0x888888)); + lv_style_set_text_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); - lv_style_set_value_color(&style_btn, LV_STATE_DEFAULT, lv_color_hex(0xffffff)); - lv_style_set_value_color(&style_btn, LV_STATE_CHECKED, lv_color_hex(0xffffff)); - lv_style_set_value_color(&style_btn, LV_STATE_CHECKED, lv_color_hex(0xffffff)); - lv_style_set_value_color(&style_btn, LV_STATE_DISABLED, lv_color_hex(0x888888)); + lv_style_set_value_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_value_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); lv_style_set_pad_left(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); lv_style_set_pad_right(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); @@ -130,27 +75,12 @@ static void basic_init(void) { lv_style_set_pad_inner(&style_btn, LV_STATE_DEFAULT, LV_DPX(15)); lv_style_set_outline_width(&style_btn, LV_STATE_DEFAULT, LV_DPX(2)); lv_style_set_outline_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_0); - lv_style_set_outline_color(&style_btn, LV_STATE_DEFAULT, theme.color_primary); + lv_style_set_outline_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); lv_style_set_transition_time(&style_btn, LV_STATE_DEFAULT, 0); lv_style_set_transition_delay(&style_btn, LV_STATE_DEFAULT, 0); - style_init_reset(&style_btn_border); - lv_style_set_radius(&style_btn_border, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_border_color(&style_btn_border, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_border_width(&style_btn_border, LV_STATE_DEFAULT, 2); - lv_style_set_bg_opa(&style_btn_border, LV_STATE_DEFAULT, LV_OPA_TRANSP); - lv_style_set_bg_color(&style_btn_border, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_text_color(&style_btn_border, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_value_color(&style_btn_border, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_transition_prop_3(&style_btn_border, LV_STATE_DEFAULT, LV_STYLE_BG_OPA); - style_init_reset(&style_icon); - lv_style_set_text_color(&style_icon, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - - style_init_reset(&style_back); - lv_style_set_value_color(&style_back, LV_STATE_DEFAULT, LV_PINETIME_GRAY); - lv_style_set_value_str(&style_back, LV_STATE_DEFAULT, LV_SYMBOL_LEFT); - lv_style_set_value_font(&style_back, LV_STATE_DEFAULT, theme.font_subtitle); + lv_style_set_text_color(&style_icon, LV_STATE_DEFAULT, LV_COLOR_WHITE); style_init_reset(&style_bar_indic); lv_style_set_bg_opa(&style_bar_indic, LV_STATE_DEFAULT, LV_OPA_COVER); @@ -165,15 +95,11 @@ static void basic_init(void) { style_init_reset(&style_list_btn); lv_style_set_bg_opa(&style_list_btn, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_list_btn, LV_STATE_DEFAULT, LV_PINETIME_WHITE); - lv_style_set_bg_color(&style_list_btn, LV_STATE_CHECKED, LV_PINETIME_GRAY); - lv_style_set_bg_color(&style_list_btn, LV_STATE_CHECKED | LV_STATE_PRESSED, lv_color_darken(LV_PINETIME_GRAY, LV_OPA_20)); - lv_style_set_text_color(&style_list_btn, LV_STATE_DEFAULT, LV_PINETIME_BLUE); - lv_style_set_text_color(&style_list_btn, LV_STATE_CHECKED, LV_PINETIME_WHITE); - lv_style_set_text_color(&style_list_btn, LV_STATE_CHECKED | LV_STATE_PRESSED, LV_PINETIME_WHITE); - lv_style_set_image_recolor(&style_list_btn, LV_STATE_DEFAULT, LV_PINETIME_BLUE); - lv_style_set_image_recolor(&style_list_btn, LV_STATE_CHECKED, LV_PINETIME_WHITE); - lv_style_set_image_recolor(&style_list_btn, LV_STATE_CHECKED | LV_STATE_PRESSED, LV_PINETIME_WHITE); + lv_style_set_bg_color(&style_list_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_list_btn, LV_STATE_DEFAULT, IT_COLOR_BG); + lv_style_set_text_color(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); + lv_style_set_image_recolor(&style_list_btn, LV_STATE_DEFAULT, IT_COLOR_BG); + lv_style_set_image_recolor(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); lv_style_set_pad_left(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); lv_style_set_pad_right(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); lv_style_set_pad_top(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 100); @@ -182,25 +108,23 @@ static void basic_init(void) { style_init_reset(&style_ddlist_list); // Causes lag unfortunately, so we'll have to live with the selected item overflowing the corner - //lv_style_set_clip_corner(&style_ddlist_list, LV_STATE_DEFAULT, true); + // lv_style_set_clip_corner(&style_ddlist_list, LV_STATE_DEFAULT, true); lv_style_set_text_line_space(&style_ddlist_list, LV_STATE_DEFAULT, LV_VER_RES / 25); - lv_style_set_shadow_width(&style_ddlist_list, LV_STATE_DEFAULT, LV_VER_RES / 20); - lv_style_set_shadow_color(&style_ddlist_list, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_style_set_bg_color(&style_ddlist_list, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_style_set_pad_all(&style_ddlist_list, LV_STATE_DEFAULT, 20); style_init_reset(&style_ddlist_selected); lv_style_set_bg_opa(&style_ddlist_selected, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_ddlist_selected, LV_STATE_DEFAULT, LV_PINETIME_BLUE); + lv_style_set_bg_color(&style_ddlist_selected, LV_STATE_DEFAULT, IT_COLOR_BG); style_init_reset(&style_sw_bg); lv_style_set_bg_opa(&style_sw_bg, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_sw_bg, LV_STATE_DEFAULT, LV_PINETIME_BLUE); + lv_style_set_bg_color(&style_sw_bg, LV_STATE_DEFAULT, IT_COLOR_BG); lv_style_set_radius(&style_sw_bg, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); style_init_reset(&style_sw_indic); lv_style_set_bg_opa(&style_sw_indic, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_sw_indic, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_style_set_bg_color(&style_sw_indic, LV_STATE_DEFAULT, IT_COLOR_SEL); style_init_reset(&style_sw_knob); lv_style_set_bg_opa(&style_sw_knob, LV_STATE_DEFAULT, LV_OPA_COVER); @@ -228,12 +152,12 @@ static void basic_init(void) { lv_style_set_pad_right(&style_slider_knob, LV_STATE_PRESSED, 14); style_init_reset(&style_arc_indic); - lv_style_set_line_color(&style_arc_indic, LV_STATE_DEFAULT, LV_PINETIME_BLUE); + lv_style_set_line_color(&style_arc_indic, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_style_set_line_width(&style_arc_indic, LV_STATE_DEFAULT, LV_DPX(25)); lv_style_set_line_rounded(&style_arc_indic, LV_STATE_DEFAULT, true); style_init_reset(&style_arc_bg); - lv_style_set_line_color(&style_arc_bg, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_style_set_line_color(&style_arc_bg, LV_STATE_DEFAULT, IT_COLOR_BG); lv_style_set_line_width(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(25)); lv_style_set_line_rounded(&style_arc_bg, LV_STATE_DEFAULT, true); lv_style_set_pad_all(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(5)); @@ -245,7 +169,7 @@ static void basic_init(void) { lv_style_set_pad_all(&style_arc_knob, LV_STATE_DEFAULT, LV_DPX(5)); style_init_reset(&style_table_cell); - lv_style_set_border_color(&style_table_cell, LV_STATE_DEFAULT, LV_PINETIME_GRAY); + lv_style_set_border_color(&style_table_cell, LV_STATE_DEFAULT, LV_COLOR_GRAY); lv_style_set_border_width(&style_table_cell, LV_STATE_DEFAULT, 1); lv_style_set_border_side(&style_table_cell, LV_STATE_DEFAULT, LV_BORDER_SIDE_FULL); lv_style_set_pad_left(&style_table_cell, LV_STATE_DEFAULT, 5); @@ -261,11 +185,6 @@ static void basic_init(void) { lv_style_set_pad_bottom(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); lv_style_set_pad_inner(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - style_init_reset(&style_bg_grad); - lv_style_set_bg_color(&style_bg_grad, LV_STATE_DEFAULT, lv_color_hsv_to_rgb(10, 10, 40)); - lv_style_set_bg_grad_color(&style_bg_grad, LV_STATE_DEFAULT, lv_color_hsv_to_rgb(10, 10, 20)); - lv_style_set_bg_grad_dir(&style_bg_grad, LV_STATE_DEFAULT, LV_GRAD_DIR_VER); - style_init_reset(&style_lmeter); lv_style_set_radius(&style_lmeter, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); lv_style_set_pad_left(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); @@ -274,14 +193,14 @@ static void basic_init(void) { lv_style_set_pad_inner(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(30)); lv_style_set_scale_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(25)); - lv_style_set_line_color(&style_lmeter, LV_STATE_DEFAULT, theme.color_primary); - lv_style_set_scale_grad_color(&style_lmeter, LV_STATE_DEFAULT, theme.color_primary); - lv_style_set_scale_end_color(&style_lmeter, LV_STATE_DEFAULT, lv_color_hex3(0x888)); + lv_style_set_line_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_scale_grad_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_scale_end_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_GRAY); lv_style_set_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(10)); lv_style_set_scale_end_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(7)); style_init_reset(&style_chart_serie); - lv_style_set_line_color(&style_chart_serie, LV_STATE_DEFAULT, LV_PINETIME_WHITE); + lv_style_set_line_color(&style_chart_serie, LV_STATE_DEFAULT, LV_COLOR_WHITE); lv_style_set_line_width(&style_chart_serie, LV_STATE_DEFAULT, 4); lv_style_set_size(&style_chart_serie, LV_STATE_DEFAULT, 4); lv_style_set_bg_opa(&style_chart_serie, LV_STATE_DEFAULT, 0); @@ -289,7 +208,7 @@ static void basic_init(void) { lv_style_reset(&style_cb_bg); lv_style_set_radius(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(4)); lv_style_set_pad_inner(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(10)); - lv_style_set_outline_color(&style_cb_bg, LV_STATE_DEFAULT, theme.color_primary); + lv_style_set_outline_color(&style_cb_bg, LV_STATE_DEFAULT, LV_COLOR_WHITE); lv_style_set_outline_width(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(2)); lv_style_set_outline_pad(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(20)); lv_style_set_transition_time(&style_cb_bg, LV_STATE_DEFAULT, 0); @@ -305,10 +224,6 @@ static void basic_init(void) { lv_style_set_pad_bottom(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); } -/********************** - * GLOBAL FUNCTIONS - **********************/ - /** * Initialize the default * @param color_primary the primary color of the theme @@ -376,7 +291,6 @@ static void theme_apply(lv_obj_t* obj, lv_theme_style_t name) { lv_obj_clean_style_list(obj, LV_BTN_PART_MAIN); list = lv_obj_get_style_list(obj, LV_BTN_PART_MAIN); _lv_style_list_add_style(list, &style_btn); - //_lv_style_list_add_style(list, &style_bg_grad); break; case LV_THEME_BTNMATRIX: @@ -386,8 +300,6 @@ static void theme_apply(lv_obj_t* obj, lv_theme_style_t name) { list = lv_obj_get_style_list(obj, LV_BTNMATRIX_PART_BTN); _lv_style_list_add_style(list, &style_btn); - //_lv_style_list_add_style(list, &style_bg_grad); - //_lv_style_list_add_style(list, &style_bg_click); break; case LV_THEME_BAR: @@ -533,7 +445,3 @@ static void theme_apply(lv_obj_t* obj, lv_theme_style_t name) { lv_obj_refresh_style(obj, LV_OBJ_PART_ALL, LV_STYLE_PROP_ALL); } - -/********************** - * STATIC FUNCTIONS - **********************/ diff --git a/src/displayapp/lv_pinetime_theme.h b/src/displayapp/lv_pinetime_theme.h index 67cee0fa..b68b7380 100644 --- a/src/displayapp/lv_pinetime_theme.h +++ b/src/displayapp/lv_pinetime_theme.h @@ -1,39 +1,14 @@ -/** - * @file lv_pinetime_theme.h - * - */ - -#ifndef LV_PINETIME_THEME_H -#define LV_PINETIME_THEME_H +#pragma once #ifdef __cplusplus extern "C" { #endif -/********************* - * INCLUDES - *********************/ #include -/********************* - * DEFINES - *********************/ -/*Colors*/ -#define LV_PINETIME_WHITE lv_color_hex(0xffffff) -#define LV_PINETIME_LIGHT lv_color_hex(0xf3f8fe) -#define LV_PINETIME_GRAY lv_color_hex(0x8a8a8a) -#define LV_PINETIME_LIGHT_GRAY lv_color_hex(0xc4c4c4) -#define LV_PINETIME_BLUE lv_color_hex(0x5d697e) -#define LV_PINETIME_GREEN lv_color_hex(0x4cb242) -#define LV_PINETIME_RED lv_color_hex(0xd51732) - -/********************** - * TYPEDEFS - **********************/ - -/********************** - * GLOBAL PROTOTYPES - **********************/ +#define IT_COLOR_BG LV_COLOR_MAKE(0x5d, 0x69, 0x7e) +#define IT_COLOR_BG_DARK LV_COLOR_MAKE(0x18, 0x18, 0x18) +#define IT_COLOR_SEL LV_COLOR_MAKE(0x0, 0xb0, 0x0) /** * Initialize the default @@ -53,12 +28,6 @@ lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary, const lv_font_t* font_normal, const lv_font_t* font_subtitle, const lv_font_t* font_title); -/********************** - * MACROS - **********************/ - -#endif - #ifdef __cplusplus } /* extern "C" */ #endif diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp index d0db59c0..614b21ea 100644 --- a/src/displayapp/screens/StopWatch.cpp +++ b/src/displayapp/screens/StopWatch.cpp @@ -65,21 +65,17 @@ StopWatch::StopWatch(DisplayApp* app, System::SystemTask& systemTask) lv_obj_set_event_cb(btnStopLap, stop_lap_event_handler); lv_obj_set_size(btnStopLap, 115, 50); lv_obj_align(btnStopLap, lv_scr_act(), LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); - lv_obj_set_style_local_bg_color(btnStopLap, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_MAKE(0x18, 0x18, 0x18)); txtStopLap = lv_label_create(btnStopLap, nullptr); - lv_obj_set_style_local_text_color(txtStopLap, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_label_set_text_static(txtStopLap, Symbols::stop); lv_obj_set_state(btnStopLap, LV_STATE_DISABLED); lv_obj_set_state(txtStopLap, LV_STATE_DISABLED); lapOneText = lv_label_create(lv_scr_act(), nullptr); - // lv_obj_set_style_local_text_font(lapOneText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); lv_obj_set_style_local_text_color(lapOneText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); lv_obj_align(lapOneText, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 50, 30); lv_label_set_text_static(lapOneText, ""); lapTwoText = lv_label_create(lv_scr_act(), nullptr); - // lv_obj_set_style_local_text_font(lapTwoText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); lv_obj_set_style_local_text_color(lapTwoText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); lv_obj_align(lapTwoText, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 50, 55); lv_label_set_text_static(lapTwoText, ""); diff --git a/src/displayapp/screens/settings/QuickSettings.cpp b/src/displayapp/screens/settings/QuickSettings.cpp index e0e2f9b6..ab5a437b 100644 --- a/src/displayapp/screens/settings/QuickSettings.cpp +++ b/src/displayapp/screens/settings/QuickSettings.cpp @@ -79,7 +79,6 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, lv_obj_set_event_cb(btn3, ButtonEventHandler); lv_btn_set_checkable(btn3, true); lv_obj_add_style(btn3, LV_BTN_PART_MAIN, &btn_style); - lv_obj_set_style_local_bg_color(btn3, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); lv_obj_set_size(btn3, buttonWidth, buttonHeight); lv_obj_align(btn3, nullptr, LV_ALIGN_IN_BOTTOM_LEFT, buttonXOffset, 0); -- cgit v1.2.3 From edba1d9ccfb2b16c26b12428acb71425f4f41cd5 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 19:27:52 +0300 Subject: Add status icons widget --- src/CMakeLists.txt | 2 + src/displayapp/DisplayApp.cpp | 6 ++- src/displayapp/screens/ApplicationList.cpp | 11 ++++- src/displayapp/screens/ApplicationList.h | 2 + src/displayapp/screens/Tile.cpp | 19 +++++--- src/displayapp/screens/Tile.h | 10 ++--- src/displayapp/screens/WatchFaceDigital.cpp | 40 +++-------------- src/displayapp/screens/WatchFaceDigital.h | 9 +--- src/displayapp/screens/settings/QuickSettings.cpp | 15 ++++--- src/displayapp/screens/settings/QuickSettings.h | 13 ++++-- src/displayapp/widgets/StatusIcons.cpp | 55 +++++++++++++++++++++++ src/displayapp/widgets/StatusIcons.h | 38 ++++++++++++++++ 12 files changed, 151 insertions(+), 69 deletions(-) create mode 100644 src/displayapp/widgets/StatusIcons.cpp create mode 100644 src/displayapp/widgets/StatusIcons.h (limited to 'src/displayapp') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6069aca6..e6971a56 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -406,6 +406,7 @@ list(APPEND SOURCE_FILES displayapp/Colors.cpp displayapp/widgets/Counter.cpp displayapp/widgets/PageIndicator.cpp + displayapp/widgets/StatusIcons.cpp ## Settings displayapp/screens/settings/QuickSettings.cpp @@ -611,6 +612,7 @@ set(INCLUDE_FILES displayapp/Colors.h displayapp/widgets/Counter.h displayapp/widgets/PageIndicator.h + displayapp/widgets/StatusIcons.h drivers/St7789.h drivers/SpiNorFlash.h drivers/SpiMaster.h diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index 93d7277d..d5cc9810 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -311,7 +311,8 @@ void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction) switch (app) { case Apps::Launcher: - currentScreen = std::make_unique(this, settingsController, batteryController, dateTimeController); + currentScreen = + std::make_unique(this, settingsController, batteryController, bleController, dateTimeController); ReturnApp(Apps::Clock, FullRefreshDirections::Down, TouchEvents::SwipeDown); break; case Apps::None: @@ -377,7 +378,8 @@ void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction) dateTimeController, brightnessController, motorController, - settingsController); + settingsController, + bleController); ReturnApp(Apps::Clock, FullRefreshDirections::LeftAnim, TouchEvents::SwipeLeft); break; case Apps::Settings: diff --git a/src/displayapp/screens/ApplicationList.cpp b/src/displayapp/screens/ApplicationList.cpp index 9fd408e1..9f3e9568 100644 --- a/src/displayapp/screens/ApplicationList.cpp +++ b/src/displayapp/screens/ApplicationList.cpp @@ -21,10 +21,12 @@ auto ApplicationList::CreateScreenList() const { ApplicationList::ApplicationList(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController, Pinetime::Controllers::Battery& batteryController, + Pinetime::Controllers::Ble& bleController, Controllers::DateTime& dateTimeController) : Screen(app), settingsController {settingsController}, batteryController {batteryController}, + bleController {bleController}, dateTimeController {dateTimeController}, screens {app, settingsController.GetAppMenu(), CreateScreenList(), Screens::ScreenListModes::UpDown} { } @@ -43,5 +45,12 @@ std::unique_ptr ApplicationList::CreateScreen(unsigned int screenNum) co apps[i] = applications[screenNum * appsPerScreen + i]; } - return std::make_unique(screenNum, nScreens, app, settingsController, batteryController, dateTimeController, apps); + return std::make_unique(screenNum, + nScreens, + app, + settingsController, + batteryController, + bleController, + dateTimeController, + apps); } diff --git a/src/displayapp/screens/ApplicationList.h b/src/displayapp/screens/ApplicationList.h index 14d7623c..e7c094bf 100644 --- a/src/displayapp/screens/ApplicationList.h +++ b/src/displayapp/screens/ApplicationList.h @@ -19,6 +19,7 @@ namespace Pinetime { explicit ApplicationList(DisplayApp* app, Pinetime::Controllers::Settings& settingsController, Pinetime::Controllers::Battery& batteryController, + Pinetime::Controllers::Ble& bleController, Controllers::DateTime& dateTimeController); ~ApplicationList() override; bool OnTouchEvent(TouchEvents event) override; @@ -29,6 +30,7 @@ namespace Pinetime { Controllers::Settings& settingsController; Pinetime::Controllers::Battery& batteryController; + Pinetime::Controllers::Ble& bleController; Controllers::DateTime& dateTimeController; static constexpr int appsPerScreen = 6; diff --git a/src/displayapp/screens/Tile.cpp b/src/displayapp/screens/Tile.cpp index c633e17b..2af04ab0 100644 --- a/src/displayapp/screens/Tile.cpp +++ b/src/displayapp/screens/Tile.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/Tile.h" #include "displayapp/DisplayApp.h" #include "displayapp/screens/BatteryIcon.h" +#include "components/ble/BleController.h" using namespace Pinetime::Applications::Screens; @@ -26,22 +27,26 @@ Tile::Tile(uint8_t screenID, uint8_t numScreens, DisplayApp* app, Controllers::Settings& settingsController, - Pinetime::Controllers::Battery& batteryController, + Controllers::Battery& batteryController, + Controllers::Ble& bleController, Controllers::DateTime& dateTimeController, std::array& applications) - : Screen(app), batteryController {batteryController}, dateTimeController {dateTimeController}, pageIndicator(screenID, numScreens) { + : Screen(app), + dateTimeController {dateTimeController}, + pageIndicator(screenID, numScreens), + statusIcons(batteryController, bleController) { settingsController.SetAppMenu(screenID); + statusIcons.Create(); + lv_obj_align(statusIcons.GetObject(), lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, -8, 0); + statusIcons.Align(); + // Time label_time = lv_label_create(lv_scr_act(), nullptr); lv_label_set_align(label_time, LV_LABEL_ALIGN_CENTER); lv_obj_align(label_time, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); - // Battery - batteryIcon.Create(lv_scr_act()); - lv_obj_align(batteryIcon.GetObject(), nullptr, LV_ALIGN_IN_TOP_RIGHT, -8, 0); - pageIndicator.Create(); uint8_t btIndex = 0; @@ -93,7 +98,7 @@ Tile::~Tile() { void Tile::UpdateScreen() { lv_label_set_text(label_time, dateTimeController.FormattedTime().c_str()); - batteryIcon.SetBatteryPercentage(batteryController.PercentRemaining()); + statusIcons.Update(); } void Tile::OnValueChangedEvent(lv_obj_t* obj, uint32_t buttonId) { diff --git a/src/displayapp/screens/Tile.h b/src/displayapp/screens/Tile.h index ff121376..d8a68128 100644 --- a/src/displayapp/screens/Tile.h +++ b/src/displayapp/screens/Tile.h @@ -7,10 +7,9 @@ #include "displayapp/Apps.h" #include "components/datetime/DateTimeController.h" #include "components/settings/Settings.h" -#include "components/datetime/DateTimeController.h" #include "components/battery/BatteryController.h" -#include "displayapp/screens/BatteryIcon.h" #include "displayapp/widgets/PageIndicator.h" +#include "displayapp/widgets/StatusIcons.h" namespace Pinetime { namespace Applications { @@ -26,7 +25,8 @@ namespace Pinetime { uint8_t numScreens, DisplayApp* app, Controllers::Settings& settingsController, - Pinetime::Controllers::Battery& batteryController, + Controllers::Battery& batteryController, + Controllers::Ble& bleController, Controllers::DateTime& dateTimeController, std::array& applications); @@ -36,7 +36,6 @@ namespace Pinetime { void OnValueChangedEvent(lv_obj_t* obj, uint32_t buttonId); private: - Pinetime::Controllers::Battery& batteryController; Controllers::DateTime& dateTimeController; lv_task_t* taskUpdate; @@ -45,8 +44,7 @@ namespace Pinetime { lv_obj_t* btnm1; Widgets::PageIndicator pageIndicator; - - BatteryIcon batteryIcon; + Widgets::StatusIcons statusIcons; const char* btnmMap[8]; Pinetime::Applications::Apps apps[6]; diff --git a/src/displayapp/screens/WatchFaceDigital.cpp b/src/displayapp/screens/WatchFaceDigital.cpp index d10f8532..7e876d8f 100644 --- a/src/displayapp/screens/WatchFaceDigital.cpp +++ b/src/displayapp/screens/WatchFaceDigital.cpp @@ -3,8 +3,6 @@ #include #include #include -#include "displayapp/screens/BatteryIcon.h" -#include "displayapp/screens/BleIcon.h" #include "displayapp/screens/NotificationIcon.h" #include "displayapp/screens/Symbols.h" #include "components/battery/BatteryController.h" @@ -13,6 +11,7 @@ #include "components/heartrate/HeartRateController.h" #include "components/motion/MotionController.h" #include "components/settings/Settings.h" + using namespace Pinetime::Applications::Screens; WatchFaceDigital::WatchFaceDigital(DisplayApp* app, @@ -26,25 +25,13 @@ WatchFaceDigital::WatchFaceDigital(DisplayApp* app, : Screen(app), currentDateTime {{}}, dateTimeController {dateTimeController}, - batteryController {batteryController}, - bleController {bleController}, notificatioManager {notificatioManager}, settingsController {settingsController}, heartRateController {heartRateController}, - motionController {motionController} { - - batteryIcon.Create(lv_scr_act()); - lv_obj_align(batteryIcon.GetObject(), lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0); + motionController {motionController}, + statusIcons(batteryController, bleController) { - batteryPlug = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(batteryPlug, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); - lv_label_set_text_static(batteryPlug, Symbols::plug); - lv_obj_align(batteryPlug, batteryIcon.GetObject(), LV_ALIGN_OUT_LEFT_MID, -5, 0); - - bleIcon = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); - lv_label_set_text_static(bleIcon, Symbols::bluetooth); - lv_obj_align(bleIcon, batteryPlug, LV_ALIGN_OUT_LEFT_MID, -5, 0); + statusIcons.Create(); notificationIcon = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FF00)); @@ -94,24 +81,7 @@ WatchFaceDigital::~WatchFaceDigital() { } void WatchFaceDigital::Refresh() { - powerPresent = batteryController.IsPowerPresent(); - if (powerPresent.IsUpdated()) { - lv_label_set_text_static(batteryPlug, BatteryIcon::GetPlugIcon(powerPresent.Get())); - } - - batteryPercentRemaining = batteryController.PercentRemaining(); - if (batteryPercentRemaining.IsUpdated()) { - auto batteryPercent = batteryPercentRemaining.Get(); - batteryIcon.SetBatteryPercentage(batteryPercent); - } - - bleState = bleController.IsConnected(); - bleRadioEnabled = bleController.IsRadioEnabled(); - if (bleState.IsUpdated() || bleRadioEnabled.IsUpdated()) { - lv_label_set_text_static(bleIcon, BleIcon::GetIcon(bleState.Get())); - } - lv_obj_realign(batteryPlug); - lv_obj_realign(bleIcon); + statusIcons.Update(); notificationState = notificatioManager.AreNewNotificationsAvailable(); if (notificationState.IsUpdated()) { diff --git a/src/displayapp/screens/WatchFaceDigital.h b/src/displayapp/screens/WatchFaceDigital.h index bd27806f..49935792 100644 --- a/src/displayapp/screens/WatchFaceDigital.h +++ b/src/displayapp/screens/WatchFaceDigital.h @@ -1,6 +1,5 @@ #pragma once -#include #include #include #include @@ -8,6 +7,7 @@ #include "displayapp/screens/Screen.h" #include "components/datetime/DateTimeController.h" #include "components/ble/BleController.h" +#include "displayapp/widgets/StatusIcons.h" namespace Pinetime { namespace Controllers { @@ -59,25 +59,20 @@ namespace Pinetime { lv_obj_t* label_time; lv_obj_t* label_time_ampm; lv_obj_t* label_date; - lv_obj_t* bleIcon; - lv_obj_t* batteryPlug; lv_obj_t* heartbeatIcon; lv_obj_t* heartbeatValue; lv_obj_t* stepIcon; lv_obj_t* stepValue; lv_obj_t* notificationIcon; - BatteryIcon batteryIcon; - Controllers::DateTime& dateTimeController; - Controllers::Battery& batteryController; - Controllers::Ble& bleController; Controllers::NotificationManager& notificatioManager; Controllers::Settings& settingsController; Controllers::HeartRateController& heartRateController; Controllers::MotionController& motionController; lv_task_t* taskRefresh; + Widgets::StatusIcons statusIcons; }; } } diff --git a/src/displayapp/screens/settings/QuickSettings.cpp b/src/displayapp/screens/settings/QuickSettings.cpp index ab5a437b..f7560066 100644 --- a/src/displayapp/screens/settings/QuickSettings.cpp +++ b/src/displayapp/screens/settings/QuickSettings.cpp @@ -2,6 +2,7 @@ #include "displayapp/DisplayApp.h" #include "displayapp/screens/Symbols.h" #include "displayapp/screens/BatteryIcon.h" +#include using namespace Pinetime::Applications::Screens; @@ -22,13 +23,16 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, Controllers::DateTime& dateTimeController, Controllers::BrightnessController& brightness, Controllers::MotorController& motorController, - Pinetime::Controllers::Settings& settingsController) + Pinetime::Controllers::Settings& settingsController, + Controllers::Ble& bleController) : Screen(app), - batteryController {batteryController}, dateTimeController {dateTimeController}, brightness {brightness}, motorController {motorController}, - settingsController {settingsController} { + settingsController {settingsController}, + statusIcons(batteryController, bleController) { + + statusIcons.Create(); // This is the distance (padding) between all objects on this screen. static constexpr uint8_t innerDistance = 10; @@ -38,9 +42,6 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, lv_label_set_align(label_time, LV_LABEL_ALIGN_CENTER); lv_obj_align(label_time, lv_scr_act(), LV_ALIGN_IN_TOP_LEFT, 0, 0); - batteryIcon.Create(lv_scr_act()); - lv_obj_align(batteryIcon.GetObject(), nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); - static constexpr uint8_t barHeight = 20 + innerDistance; static constexpr uint8_t buttonHeight = (LV_VER_RES_MAX - barHeight - innerDistance) / 2; static constexpr uint8_t buttonWidth = (LV_HOR_RES_MAX - innerDistance) / 2; // wide buttons @@ -117,7 +118,7 @@ QuickSettings::~QuickSettings() { void QuickSettings::UpdateScreen() { lv_label_set_text(label_time, dateTimeController.FormattedTime().c_str()); - batteryIcon.SetBatteryPercentage(batteryController.PercentRemaining()); + statusIcons.Update(); } void QuickSettings::OnButtonEvent(lv_obj_t* object, lv_event_t event) { diff --git a/src/displayapp/screens/settings/QuickSettings.h b/src/displayapp/screens/settings/QuickSettings.h index 40a2a2ef..fd1b5ea4 100644 --- a/src/displayapp/screens/settings/QuickSettings.h +++ b/src/displayapp/screens/settings/QuickSettings.h @@ -8,7 +8,7 @@ #include "components/motor/MotorController.h" #include "components/settings/Settings.h" #include "components/battery/BatteryController.h" -#include +#include "displayapp/widgets/StatusIcons.h" namespace Pinetime { @@ -22,7 +22,8 @@ namespace Pinetime { Controllers::DateTime& dateTimeController, Controllers::BrightnessController& brightness, Controllers::MotorController& motorController, - Pinetime::Controllers::Settings& settingsController); + Pinetime::Controllers::Settings& settingsController, + Controllers::Ble& bleController); ~QuickSettings() override; @@ -31,7 +32,6 @@ namespace Pinetime { void UpdateScreen(); private: - Pinetime::Controllers::Battery& batteryController; Controllers::DateTime& dateTimeController; Controllers::BrightnessController& brightness; Controllers::MotorController& motorController; @@ -40,6 +40,11 @@ namespace Pinetime { lv_task_t* taskUpdate; lv_obj_t* label_time; + DirtyValue batteryPercentRemaining {}; + DirtyValue powerPresent {}; + DirtyValue bleState {}; + DirtyValue bleRadioEnabled {}; + lv_style_t btn_style; lv_obj_t* btn1; @@ -49,7 +54,7 @@ namespace Pinetime { lv_obj_t* btn3_lvl; lv_obj_t* btn4; - BatteryIcon batteryIcon; + Widgets::StatusIcons statusIcons; }; } } diff --git a/src/displayapp/widgets/StatusIcons.cpp b/src/displayapp/widgets/StatusIcons.cpp new file mode 100644 index 00000000..d8f294b5 --- /dev/null +++ b/src/displayapp/widgets/StatusIcons.cpp @@ -0,0 +1,55 @@ +#include "displayapp/widgets/StatusIcons.h" +#include "displayapp/screens/Symbols.h" + +using namespace Pinetime::Applications::Widgets; + +StatusIcons::StatusIcons(Controllers::Battery& batteryController, Controllers::Ble& bleController) + : batteryController {batteryController}, bleController {bleController} { +} + +void StatusIcons::Align() { + lv_obj_t* lastIcon = batteryIcon.GetObject(); + + for (auto& icon : icons) { + if (!lv_obj_get_hidden(icon)) { + lv_obj_align(icon, lastIcon, LV_ALIGN_OUT_LEFT_MID, -5, 0); + lastIcon = icon; + } + } +} + +void StatusIcons::Create() { + batteryIcon.Create(lv_scr_act()); + lv_obj_align(batteryIcon.GetObject(), lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0); + + icons[Icons::BatteryPlug] = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_color(icons[Icons::BatteryPlug], LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); + lv_label_set_text_static(icons[Icons::BatteryPlug], Screens::Symbols::plug); + + icons[Icons::BleIcon] = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_color(icons[Icons::BleIcon], LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); + lv_label_set_text_static(icons[Icons::BleIcon], Screens::Symbols::bluetooth); + + Align(); +} + +void StatusIcons::Update() { + powerPresent = batteryController.IsPowerPresent(); + if (powerPresent.IsUpdated()) { + lv_obj_set_hidden(icons[Icons::BatteryPlug], !powerPresent.Get()); + } + + batteryPercentRemaining = batteryController.PercentRemaining(); + if (batteryPercentRemaining.IsUpdated()) { + auto batteryPercent = batteryPercentRemaining.Get(); + batteryIcon.SetBatteryPercentage(batteryPercent); + } + + bleState = bleController.IsConnected(); + bleRadioEnabled = bleController.IsRadioEnabled(); + if (bleState.IsUpdated() || bleRadioEnabled.IsUpdated()) { + lv_obj_set_hidden(icons[Icons::BleIcon], !bleState.Get()); + } + + Align(); +} diff --git a/src/displayapp/widgets/StatusIcons.h b/src/displayapp/widgets/StatusIcons.h new file mode 100644 index 00000000..b6e713e2 --- /dev/null +++ b/src/displayapp/widgets/StatusIcons.h @@ -0,0 +1,38 @@ +#pragma once + +#include + +#include "displayapp/screens/Screen.h" +#include "components/battery/BatteryController.h" +#include "components/ble/BleController.h" +#include "displayapp/screens/BatteryIcon.h" + +namespace Pinetime { + namespace Applications { + namespace Widgets { + class StatusIcons { + public: + StatusIcons(Controllers::Battery& batteryController, Controllers::Ble& bleController); + void Align(); + void Create(); + lv_obj_t* GetObject() { + return batteryIcon.GetObject(); + } + void Update(); + + private: + Screens::BatteryIcon batteryIcon; + Pinetime::Controllers::Battery& batteryController; + Controllers::Ble& bleController; + + Screens::DirtyValue batteryPercentRemaining {}; + Screens::DirtyValue powerPresent {}; + Screens::DirtyValue bleState {}; + Screens::DirtyValue bleRadioEnabled {}; + + enum Icons { BatteryPlug, BleIcon }; + lv_obj_t* icons[2]; + }; + } + } +} -- cgit v1.2.3 From 28a528761f4ccbc8f54eb35bee14e03096235249 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Thu, 21 Jul 2022 23:43:10 +0300 Subject: Remove leftover change --- src/displayapp/screens/settings/QuickSettings.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/settings/QuickSettings.h b/src/displayapp/screens/settings/QuickSettings.h index fd1b5ea4..cd342b0c 100644 --- a/src/displayapp/screens/settings/QuickSettings.h +++ b/src/displayapp/screens/settings/QuickSettings.h @@ -40,11 +40,6 @@ namespace Pinetime { lv_task_t* taskUpdate; lv_obj_t* label_time; - DirtyValue batteryPercentRemaining {}; - DirtyValue powerPresent {}; - DirtyValue bleState {}; - DirtyValue bleRadioEnabled {}; - lv_style_t btn_style; lv_obj_t* btn1; -- cgit v1.2.3 From 9f851f632128a7c78a82ce37a8517a3025fbf781 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sat, 23 Jul 2022 19:13:56 +0300 Subject: Automatic alignment with containers --- src/displayapp/screens/Tile.cpp | 1 - src/displayapp/widgets/StatusIcons.cpp | 40 +++++++++++++++------------------- src/displayapp/widgets/StatusIcons.h | 7 +++--- 3 files changed, 21 insertions(+), 27 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Tile.cpp b/src/displayapp/screens/Tile.cpp index 2af04ab0..bf0780f1 100644 --- a/src/displayapp/screens/Tile.cpp +++ b/src/displayapp/screens/Tile.cpp @@ -40,7 +40,6 @@ Tile::Tile(uint8_t screenID, statusIcons.Create(); lv_obj_align(statusIcons.GetObject(), lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, -8, 0); - statusIcons.Align(); // Time label_time = lv_label_create(lv_scr_act(), nullptr); diff --git a/src/displayapp/widgets/StatusIcons.cpp b/src/displayapp/widgets/StatusIcons.cpp index d8f294b5..c1004b77 100644 --- a/src/displayapp/widgets/StatusIcons.cpp +++ b/src/displayapp/widgets/StatusIcons.cpp @@ -7,36 +7,30 @@ StatusIcons::StatusIcons(Controllers::Battery& batteryController, Controllers::B : batteryController {batteryController}, bleController {bleController} { } -void StatusIcons::Align() { - lv_obj_t* lastIcon = batteryIcon.GetObject(); - - for (auto& icon : icons) { - if (!lv_obj_get_hidden(icon)) { - lv_obj_align(icon, lastIcon, LV_ALIGN_OUT_LEFT_MID, -5, 0); - lastIcon = icon; - } - } -} - void StatusIcons::Create() { - batteryIcon.Create(lv_scr_act()); - lv_obj_align(batteryIcon.GetObject(), lv_scr_act(), LV_ALIGN_IN_TOP_RIGHT, 0, 0); + container = lv_cont_create(lv_scr_act(), nullptr); + lv_cont_set_layout(container, LV_LAYOUT_ROW_TOP); + lv_cont_set_fit(container, LV_FIT_TIGHT); + lv_obj_set_style_local_pad_inner(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); + lv_obj_set_style_local_bg_opa(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP); + + bleIcon = lv_label_create(container, nullptr); + lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); + lv_label_set_text_static(bleIcon, Screens::Symbols::bluetooth); - icons[Icons::BatteryPlug] = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(icons[Icons::BatteryPlug], LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); - lv_label_set_text_static(icons[Icons::BatteryPlug], Screens::Symbols::plug); + batteryPlug = lv_label_create(container, nullptr); + lv_obj_set_style_local_text_color(batteryPlug, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); + lv_label_set_text_static(batteryPlug, Screens::Symbols::plug); - icons[Icons::BleIcon] = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(icons[Icons::BleIcon], LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x0082FC)); - lv_label_set_text_static(icons[Icons::BleIcon], Screens::Symbols::bluetooth); + batteryIcon.Create(container); - Align(); + lv_obj_align(container, nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); } void StatusIcons::Update() { powerPresent = batteryController.IsPowerPresent(); if (powerPresent.IsUpdated()) { - lv_obj_set_hidden(icons[Icons::BatteryPlug], !powerPresent.Get()); + lv_obj_set_hidden(batteryPlug, !powerPresent.Get()); } batteryPercentRemaining = batteryController.PercentRemaining(); @@ -48,8 +42,8 @@ void StatusIcons::Update() { bleState = bleController.IsConnected(); bleRadioEnabled = bleController.IsRadioEnabled(); if (bleState.IsUpdated() || bleRadioEnabled.IsUpdated()) { - lv_obj_set_hidden(icons[Icons::BleIcon], !bleState.Get()); + lv_obj_set_hidden(bleIcon, !bleState.Get()); } - Align(); + lv_obj_realign(container); } diff --git a/src/displayapp/widgets/StatusIcons.h b/src/displayapp/widgets/StatusIcons.h index b6e713e2..f4a30a80 100644 --- a/src/displayapp/widgets/StatusIcons.h +++ b/src/displayapp/widgets/StatusIcons.h @@ -16,7 +16,7 @@ namespace Pinetime { void Align(); void Create(); lv_obj_t* GetObject() { - return batteryIcon.GetObject(); + return container; } void Update(); @@ -30,8 +30,9 @@ namespace Pinetime { Screens::DirtyValue bleState {}; Screens::DirtyValue bleRadioEnabled {}; - enum Icons { BatteryPlug, BleIcon }; - lv_obj_t* icons[2]; + lv_obj_t* bleIcon; + lv_obj_t* batteryPlug; + lv_obj_t* container; }; } } -- cgit v1.2.3 From 97048121b05abb2c51c09a4340fe0aa223f46182 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Fri, 22 Jul 2022 08:33:15 +0300 Subject: Use Counter widget in Alarm --- src/displayapp/DisplayApp.cpp | 2 +- src/displayapp/screens/Alarm.cpp | 162 +++++++++++++-------------------------- src/displayapp/screens/Alarm.h | 14 ++-- 3 files changed, 61 insertions(+), 117 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/DisplayApp.cpp b/src/displayapp/DisplayApp.cpp index d5cc9810..29684466 100644 --- a/src/displayapp/DisplayApp.cpp +++ b/src/displayapp/DisplayApp.cpp @@ -368,7 +368,7 @@ void DisplayApp::LoadApp(Apps app, DisplayApp::FullRefreshDirections direction) currentScreen = std::make_unique(this, timerController); break; case Apps::Alarm: - currentScreen = std::make_unique(this, alarmController, settingsController, *systemTask); + currentScreen = std::make_unique(this, alarmController, settingsController.GetClockType(), *systemTask); break; // Settings diff --git a/src/displayapp/screens/Alarm.cpp b/src/displayapp/screens/Alarm.cpp index c1ee6469..d508dd39 100644 --- a/src/displayapp/screens/Alarm.cpp +++ b/src/displayapp/screens/Alarm.cpp @@ -22,6 +22,13 @@ using namespace Pinetime::Applications::Screens; using Pinetime::Controllers::AlarmController; +namespace { + void ValueChangedHandler(void* userData) { + auto* screen = static_cast(userData); + screen->OnValueChanged(); + } +} + static void btnEventHandler(lv_obj_t* obj, lv_event_t event) { auto* screen = static_cast(obj->user_data); screen->OnButtonEvent(obj, event); @@ -34,59 +41,34 @@ static void StopAlarmTaskCallback(lv_task_t* task) { Alarm::Alarm(DisplayApp* app, Controllers::AlarmController& alarmController, - Pinetime::Controllers::Settings& settingsController, + Controllers::Settings::ClockType clockType, System::SystemTask& systemTask) - : Screen(app), alarmController {alarmController}, settingsController {settingsController}, systemTask {systemTask} { + : Screen(app), alarmController {alarmController}, clockType {clockType}, systemTask {systemTask} { - time = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); - lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + hourCounter.Create(); + lv_obj_align(hourCounter.GetObject(), nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); + if (clockType == Controllers::Settings::ClockType::H12) { + hourCounter.EnableTwelveHourMode(); + } + hourCounter.SetValue(alarmController.Hours()); + hourCounter.SetValueChangedEventCallback(this, ValueChangedHandler); - alarmHours = alarmController.Hours(); - alarmMinutes = alarmController.Minutes(); - lv_label_set_text_fmt(time, "%02hhu:%02hhu", alarmHours, alarmMinutes); + minuteCounter.Create(); + lv_obj_align(minuteCounter.GetObject(), nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); + minuteCounter.SetValue(alarmController.Minutes()); + minuteCounter.SetValueChangedEventCallback(this, ValueChangedHandler); - lv_obj_align(time, lv_scr_act(), LV_ALIGN_CENTER, 0, -25); + lv_obj_t* colonLabel = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_font(colonLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); + lv_label_set_text_static(colonLabel, ":"); + lv_obj_align(colonLabel, lv_scr_act(), LV_ALIGN_CENTER, 0, -29); lblampm = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(lblampm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); - lv_obj_set_style_local_text_color(lblampm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); lv_label_set_text_static(lblampm, " "); lv_label_set_align(lblampm, LV_LABEL_ALIGN_CENTER); lv_obj_align(lblampm, lv_scr_act(), LV_ALIGN_CENTER, 0, 30); - btnHoursUp = lv_btn_create(lv_scr_act(), nullptr); - btnHoursUp->user_data = this; - lv_obj_set_event_cb(btnHoursUp, btnEventHandler); - lv_obj_set_size(btnHoursUp, 60, 40); - lv_obj_align(btnHoursUp, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 20, -85); - txtHrUp = lv_label_create(btnHoursUp, nullptr); - lv_label_set_text_static(txtHrUp, "+"); - - btnHoursDown = lv_btn_create(lv_scr_act(), nullptr); - btnHoursDown->user_data = this; - lv_obj_set_event_cb(btnHoursDown, btnEventHandler); - lv_obj_set_size(btnHoursDown, 60, 40); - lv_obj_align(btnHoursDown, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 20, 35); - txtHrDown = lv_label_create(btnHoursDown, nullptr); - lv_label_set_text_static(txtHrDown, "-"); - - btnMinutesUp = lv_btn_create(lv_scr_act(), nullptr); - btnMinutesUp->user_data = this; - lv_obj_set_event_cb(btnMinutesUp, btnEventHandler); - lv_obj_set_size(btnMinutesUp, 60, 40); - lv_obj_align(btnMinutesUp, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, -20, -85); - txtMinUp = lv_label_create(btnMinutesUp, nullptr); - lv_label_set_text_static(txtMinUp, "+"); - - btnMinutesDown = lv_btn_create(lv_scr_act(), nullptr); - btnMinutesDown->user_data = this; - lv_obj_set_event_cb(btnMinutesDown, btnEventHandler); - lv_obj_set_size(btnMinutesDown, 60, 40); - lv_obj_align(btnMinutesDown, lv_scr_act(), LV_ALIGN_IN_RIGHT_MID, -20, 35); - txtMinDown = lv_label_create(btnMinutesDown, nullptr); - lv_label_set_text_static(txtMinDown, "-"); - btnStop = lv_btn_create(lv_scr_act(), nullptr); btnStop->user_data = this; lv_obj_set_event_cb(btnStop, btnEventHandler); @@ -104,14 +86,15 @@ Alarm::Alarm(DisplayApp* app, lv_obj_align(btnRecur, lv_scr_act(), LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); txtRecur = lv_label_create(btnRecur, nullptr); SetRecurButtonState(); + lv_obj_set_style_local_bg_color(btnRecur, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + // Invisible button above the time btnInfo = lv_btn_create(lv_scr_act(), nullptr); btnInfo->user_data = this; lv_obj_set_event_cb(btnInfo, btnEventHandler); - lv_obj_set_size(btnInfo, 50, 40); - lv_obj_align(btnInfo, lv_scr_act(), LV_ALIGN_CENTER, 0, -85); - txtInfo = lv_label_create(btnInfo, nullptr); - lv_label_set_text_static(txtInfo, "i"); + lv_obj_set_size(btnInfo, LV_HOR_RES, 80); + lv_obj_align(btnInfo, lv_scr_act(), LV_ALIGN_CENTER, 0, -29); + lv_obj_set_style_local_bg_opa(btnInfo, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP); enableSwitch = lv_switch_create(lv_scr_act(), nullptr); enableSwitch->user_data = this; @@ -119,6 +102,7 @@ Alarm::Alarm(DisplayApp* app, lv_obj_set_size(enableSwitch, 100, 50); // Align to the center of 115px from edge lv_obj_align(enableSwitch, lv_scr_act(), LV_ALIGN_IN_BOTTOM_LEFT, 7, 0); + lv_obj_set_style_local_bg_color(enableSwitch, LV_SWITCH_PART_BG, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); UpdateAlarmTime(); @@ -136,8 +120,14 @@ Alarm::~Alarm() { lv_obj_clean(lv_scr_act()); } +void Alarm::DisableAlarm() { + if (alarmController.State() == AlarmController::AlarmState::Set) { + alarmController.DisableAlarm(); + lv_switch_off(enableSwitch, LV_ANIM_ON); + } +} + void Alarm::OnButtonEvent(lv_obj_t* obj, lv_event_t event) { - using Pinetime::Controllers::AlarmController; if (event == LV_EVENT_CLICKED) { if (obj == btnStop) { StopAlerting(); @@ -159,49 +149,8 @@ void Alarm::OnButtonEvent(lv_obj_t* obj, lv_event_t event) { } return; } - // If any other button was pressed, disable the alarm - // this is to make it clear that the alarm won't be set until it is turned back on - if (alarmController.State() == AlarmController::AlarmState::Set) { - alarmController.DisableAlarm(); - lv_switch_off(enableSwitch, LV_ANIM_ON); - } - if (obj == btnMinutesUp) { - if (alarmMinutes >= 59) { - alarmMinutes = 0; - } else { - alarmMinutes++; - } - UpdateAlarmTime(); - return; - } - if (obj == btnMinutesDown) { - if (alarmMinutes == 0) { - alarmMinutes = 59; - } else { - alarmMinutes--; - } - UpdateAlarmTime(); - return; - } - if (obj == btnHoursUp) { - if (alarmHours >= 23) { - alarmHours = 0; - } else { - alarmHours++; - } - UpdateAlarmTime(); - return; - } - if (obj == btnHoursDown) { - if (alarmHours == 0) { - alarmHours = 23; - } else { - alarmHours--; - } - UpdateAlarmTime(); - return; - } if (obj == btnRecur) { + DisableAlarm(); ToggleRecurrence(); } } @@ -224,30 +173,20 @@ bool Alarm::OnTouchEvent(Pinetime::Applications::TouchEvents event) { return alarmController.State() == AlarmController::AlarmState::Alerting && event == TouchEvents::SwipeDown; } +void Alarm::OnValueChanged() { + DisableAlarm(); + UpdateAlarmTime(); +} + void Alarm::UpdateAlarmTime() { - if (settingsController.GetClockType() == Controllers::Settings::ClockType::H12) { - switch (alarmHours) { - case 0: - lv_label_set_text_static(lblampm, "AM"); - lv_label_set_text_fmt(time, "%02d:%02d", 12, alarmMinutes); - break; - case 1 ... 11: - lv_label_set_text_static(lblampm, "AM"); - lv_label_set_text_fmt(time, "%02d:%02d", alarmHours, alarmMinutes); - break; - case 12: - lv_label_set_text_static(lblampm, "PM"); - lv_label_set_text_fmt(time, "%02d:%02d", 12, alarmMinutes); - break; - case 13 ... 23: - lv_label_set_text_static(lblampm, "PM"); - lv_label_set_text_fmt(time, "%02d:%02d", alarmHours - 12, alarmMinutes); - break; + if (clockType == Controllers::Settings::ClockType::H12) { + if (hourCounter.GetValue() >= 12) { + lv_label_set_text_static(lblampm, "PM"); + } else { + lv_label_set_text_static(lblampm, "AM"); } - } else { - lv_label_set_text_fmt(time, "%02d:%02d", alarmHours, alarmMinutes); } - alarmController.SetAlarmTime(alarmHours, alarmMinutes); + alarmController.SetAlarmTime(hourCounter.GetValue(), minuteCounter.GetValue()); } void Alarm::SetAlerting() { @@ -283,6 +222,9 @@ void Alarm::SetSwitchState(lv_anim_enable_t anim) { } void Alarm::ShowInfo() { + if (btnMessage != nullptr) { + return; + } btnMessage = lv_btn_create(lv_scr_act(), nullptr); btnMessage->user_data = this; lv_obj_set_event_cb(btnMessage, btnEventHandler); diff --git a/src/displayapp/screens/Alarm.h b/src/displayapp/screens/Alarm.h index 80e446f1..a64bbe81 100644 --- a/src/displayapp/screens/Alarm.h +++ b/src/displayapp/screens/Alarm.h @@ -21,6 +21,7 @@ #include "systemtask/SystemTask.h" #include "displayapp/LittleVgl.h" #include "components/alarm/AlarmController.h" +#include "displayapp/widgets/Counter.h" namespace Pinetime { namespace Applications { @@ -29,29 +30,28 @@ namespace Pinetime { public: Alarm(DisplayApp* app, Controllers::AlarmController& alarmController, - Pinetime::Controllers::Settings& settingsController, + Controllers::Settings::ClockType clockType, System::SystemTask& systemTask); ~Alarm() override; void SetAlerting(); void OnButtonEvent(lv_obj_t* obj, lv_event_t event); bool OnButtonPushed() override; bool OnTouchEvent(TouchEvents event) override; + void OnValueChanged(); void StopAlerting(); private: - uint8_t alarmHours; - uint8_t alarmMinutes; Controllers::AlarmController& alarmController; - Controllers::Settings& settingsController; + const Controllers::Settings::ClockType clockType; System::SystemTask& systemTask; - lv_obj_t *time, *lblampm, *btnStop, *txtStop, *btnMinutesUp, *btnMinutesDown, *btnHoursUp, *btnHoursDown, *txtMinUp, *txtMinDown, - *txtHrUp, *txtHrDown, *btnRecur, *txtRecur, *btnInfo, *txtInfo, *enableSwitch; + lv_obj_t *lblampm, *btnStop, *txtStop, *btnRecur, *txtRecur, *btnInfo, *enableSwitch; lv_obj_t* txtMessage = nullptr; lv_obj_t* btnMessage = nullptr; lv_task_t* taskStopAlarm = nullptr; enum class EnableButtonState { On, Off, Alerting }; + void DisableAlarm(); void SetRecurButtonState(); void SetSwitchState(lv_anim_enable_t anim); void SetAlarm(); @@ -59,6 +59,8 @@ namespace Pinetime { void HideInfo(); void ToggleRecurrence(); void UpdateAlarmTime(); + Widgets::Counter hourCounter = Widgets::Counter(0, 23, jetbrains_mono_76); + Widgets::Counter minuteCounter = Widgets::Counter(0, 59, jetbrains_mono_76); }; }; }; -- cgit v1.2.3 From 7a6ede112e2a777321db16f367a6e4429604e5d9 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 26 Jul 2022 13:15:07 +0300 Subject: Remove clockType variable by checking for nullptr instead. Saves a few bytes --- src/displayapp/screens/Alarm.cpp | 16 ++++++++-------- src/displayapp/screens/Alarm.h | 4 ++-- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Alarm.cpp b/src/displayapp/screens/Alarm.cpp index d508dd39..bcb6eff8 100644 --- a/src/displayapp/screens/Alarm.cpp +++ b/src/displayapp/screens/Alarm.cpp @@ -43,12 +43,18 @@ Alarm::Alarm(DisplayApp* app, Controllers::AlarmController& alarmController, Controllers::Settings::ClockType clockType, System::SystemTask& systemTask) - : Screen(app), alarmController {alarmController}, clockType {clockType}, systemTask {systemTask} { + : Screen(app), alarmController {alarmController}, systemTask {systemTask} { hourCounter.Create(); lv_obj_align(hourCounter.GetObject(), nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); if (clockType == Controllers::Settings::ClockType::H12) { hourCounter.EnableTwelveHourMode(); + + lblampm = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_font(lblampm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); + lv_label_set_text_static(lblampm, "AM"); + lv_label_set_align(lblampm, LV_LABEL_ALIGN_CENTER); + lv_obj_align(lblampm, lv_scr_act(), LV_ALIGN_CENTER, 0, 30); } hourCounter.SetValue(alarmController.Hours()); hourCounter.SetValueChangedEventCallback(this, ValueChangedHandler); @@ -63,12 +69,6 @@ Alarm::Alarm(DisplayApp* app, lv_label_set_text_static(colonLabel, ":"); lv_obj_align(colonLabel, lv_scr_act(), LV_ALIGN_CENTER, 0, -29); - lblampm = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_font(lblampm, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); - lv_label_set_text_static(lblampm, " "); - lv_label_set_align(lblampm, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblampm, lv_scr_act(), LV_ALIGN_CENTER, 0, 30); - btnStop = lv_btn_create(lv_scr_act(), nullptr); btnStop->user_data = this; lv_obj_set_event_cb(btnStop, btnEventHandler); @@ -179,7 +179,7 @@ void Alarm::OnValueChanged() { } void Alarm::UpdateAlarmTime() { - if (clockType == Controllers::Settings::ClockType::H12) { + if (lblampm != nullptr) { if (hourCounter.GetValue() >= 12) { lv_label_set_text_static(lblampm, "PM"); } else { diff --git a/src/displayapp/screens/Alarm.h b/src/displayapp/screens/Alarm.h index a64bbe81..fba9d5d9 100644 --- a/src/displayapp/screens/Alarm.h +++ b/src/displayapp/screens/Alarm.h @@ -42,10 +42,10 @@ namespace Pinetime { private: Controllers::AlarmController& alarmController; - const Controllers::Settings::ClockType clockType; System::SystemTask& systemTask; - lv_obj_t *lblampm, *btnStop, *txtStop, *btnRecur, *txtRecur, *btnInfo, *enableSwitch; + lv_obj_t *btnStop, *txtStop, *btnRecur, *txtRecur, *btnInfo, *enableSwitch; + lv_obj_t* lblampm = nullptr; lv_obj_t* txtMessage = nullptr; lv_obj_t* btnMessage = nullptr; lv_task_t* taskStopAlarm = nullptr; -- cgit v1.2.3 From 1467324c5011e1f9eb0c363b6f9975dd7888fcf2 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Wed, 27 Jul 2022 15:29:34 +0300 Subject: Bring back separate info button, move color to a variable. --- src/displayapp/screens/Alarm.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Alarm.cpp b/src/displayapp/screens/Alarm.cpp index bcb6eff8..427650c6 100644 --- a/src/displayapp/screens/Alarm.cpp +++ b/src/displayapp/screens/Alarm.cpp @@ -79,6 +79,8 @@ Alarm::Alarm(DisplayApp* app, lv_label_set_text_static(txtStop, Symbols::stop); lv_obj_set_hidden(btnStop, true); + static constexpr lv_color_t bgColor = LV_COLOR_MAKE(0x38, 0x38, 0x38); + btnRecur = lv_btn_create(lv_scr_act(), nullptr); btnRecur->user_data = this; lv_obj_set_event_cb(btnRecur, btnEventHandler); @@ -86,15 +88,19 @@ Alarm::Alarm(DisplayApp* app, lv_obj_align(btnRecur, lv_scr_act(), LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); txtRecur = lv_label_create(btnRecur, nullptr); SetRecurButtonState(); - lv_obj_set_style_local_bg_color(btnRecur, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_bg_color(btnRecur, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); - // Invisible button above the time btnInfo = lv_btn_create(lv_scr_act(), nullptr); btnInfo->user_data = this; lv_obj_set_event_cb(btnInfo, btnEventHandler); - lv_obj_set_size(btnInfo, LV_HOR_RES, 80); - lv_obj_align(btnInfo, lv_scr_act(), LV_ALIGN_CENTER, 0, -29); - lv_obj_set_style_local_bg_opa(btnInfo, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP); + lv_obj_set_size(btnInfo, 50, 50); + lv_obj_align(btnInfo, lv_scr_act(), LV_ALIGN_IN_TOP_MID, 0, -4); + lv_obj_set_style_local_bg_color(btnInfo, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); + lv_obj_set_style_local_border_width(btnInfo, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, 4); + lv_obj_set_style_local_border_color(btnInfo, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); + + lv_obj_t* txtInfo = lv_label_create(btnInfo, nullptr); + lv_label_set_text_static(txtInfo, "i"); enableSwitch = lv_switch_create(lv_scr_act(), nullptr); enableSwitch->user_data = this; @@ -102,7 +108,7 @@ Alarm::Alarm(DisplayApp* app, lv_obj_set_size(enableSwitch, 100, 50); // Align to the center of 115px from edge lv_obj_align(enableSwitch, lv_scr_act(), LV_ALIGN_IN_BOTTOM_LEFT, 7, 0); - lv_obj_set_style_local_bg_color(enableSwitch, LV_SWITCH_PART_BG, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_bg_color(enableSwitch, LV_SWITCH_PART_BG, LV_STATE_DEFAULT, bgColor); UpdateAlarmTime(); -- cgit v1.2.3 From 67e0cad5733c6d3201f1414b89c8faf568dcb2bd Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Fri, 22 Jul 2022 11:01:47 +0300 Subject: Simplified stopwatch lap buffer Overriding the earlier laps doesn't seem like a good idea. --- src/displayapp/screens/StopWatch.cpp | 62 ++++++++++++------------------------ src/displayapp/screens/StopWatch.h | 58 +++++---------------------------- 2 files changed, 29 insertions(+), 91 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp index 614b21ea..e705fcb0 100644 --- a/src/displayapp/screens/StopWatch.cpp +++ b/src/displayapp/screens/StopWatch.cpp @@ -1,10 +1,6 @@ #include "displayapp/screens/StopWatch.h" -#include "displayapp/screens/Screen.h" #include "displayapp/screens/Symbols.h" -#include -#include -#include using namespace Pinetime::Applications::Screens; @@ -30,15 +26,7 @@ namespace { } } -StopWatch::StopWatch(DisplayApp* app, System::SystemTask& systemTask) - : Screen(app), - systemTask {systemTask}, - currentState {States::Init}, - startTime {}, - oldTimeElapsed {}, - currentTimeSeparated {}, - lapBuffer {}, - lapNr {} { +StopWatch::StopWatch(DisplayApp* app, System::SystemTask& systemTask) : Screen(app), systemTask {systemTask} { time = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); @@ -70,15 +58,10 @@ StopWatch::StopWatch(DisplayApp* app, System::SystemTask& systemTask) lv_obj_set_state(btnStopLap, LV_STATE_DISABLED); lv_obj_set_state(txtStopLap, LV_STATE_DISABLED); - lapOneText = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(lapOneText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); - lv_obj_align(lapOneText, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 50, 30); - lv_label_set_text_static(lapOneText, ""); - - lapTwoText = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(lapTwoText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); - lv_obj_align(lapTwoText, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 50, 55); - lv_label_set_text_static(lapTwoText, ""); + lapText = lv_label_create(lv_scr_act(), nullptr); + lv_obj_set_style_local_text_color(lapText, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); + lv_obj_align(lapText, lv_scr_act(), LV_ALIGN_IN_LEFT_MID, 50, 30); + lv_label_set_text_static(lapText, ""); taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this); } @@ -98,10 +81,8 @@ void StopWatch::Reset() { lv_label_set_text_static(time, "00:00"); lv_label_set_text_static(msecTime, "00"); - lv_label_set_text_static(lapOneText, ""); - lv_label_set_text_static(lapTwoText, ""); - lapBuffer.clearBuffer(); - lapNr = 0; + lv_label_set_text_static(lapText, ""); + lapsDone = 0; lv_obj_set_state(btnStopLap, LV_STATE_DISABLED); lv_obj_set_state(txtStopLap, LV_STATE_DISABLED); } @@ -121,7 +102,7 @@ void StopWatch::Start() { void StopWatch::Pause() { startTime = 0; // Store the current time elapsed in cache - oldTimeElapsed += timeElapsed; + oldTimeElapsed = laps[lapsDone]; currentState = States::Halted; lv_label_set_text_static(txtPlayPause, Symbols::play); lv_label_set_text_static(txtStopLap, Symbols::stop); @@ -132,9 +113,9 @@ void StopWatch::Pause() { void StopWatch::Refresh() { if (currentState == States::Running) { - timeElapsed = xTaskGetTickCount() - startTime; - currentTimeSeparated = convertTicksToTimeSegments((oldTimeElapsed + timeElapsed)); + laps[lapsDone] = oldTimeElapsed + xTaskGetTickCount() - startTime; + TimeSeparated_t currentTimeSeparated = convertTicksToTimeSegments(laps[lapsDone]); lv_label_set_text_fmt(time, "%02d:%02d", currentTimeSeparated.mins, currentTimeSeparated.secs); lv_label_set_text_fmt(msecTime, "%02d", currentTimeSeparated.hundredths); } @@ -159,18 +140,17 @@ void StopWatch::stopLapBtnEventHandler(lv_event_t event) { } // If running, then this button is used to save laps if (currentState == States::Running) { - lapBuffer.addLaps(currentTimeSeparated); - lapNr++; - if (lapBuffer[1]) { - lv_label_set_text_fmt(lapOneText, - "#%2d %2d:%02d.%02d", - (lapNr - 1), - lapBuffer[1]->mins, - lapBuffer[1]->secs, - lapBuffer[1]->hundredths); - } - if (lapBuffer[0]) { - lv_label_set_text_fmt(lapTwoText, "#%2d %2d:%02d.%02d", lapNr, lapBuffer[0]->mins, lapBuffer[0]->secs, lapBuffer[0]->hundredths); + lv_label_set_text(lapText, ""); + lapsDone = std::min(lapsDone + 1, maxLapCount); + for (int i = lapsDone - displayedLaps; i < lapsDone; i++) { + if (i < 0) { + lv_label_ins_text(lapText, LV_LABEL_POS_LAST, "\n"); + continue; + } + TimeSeparated_t times = convertTicksToTimeSegments(laps[i]); + char buffer[16]; + sprintf(buffer, "#%2d %2d:%02d.%02d\n", i + 1, times.mins, times.secs, times.hundredths); + lv_label_ins_text(lapText, LV_LABEL_POS_LAST, buffer); } } else if (currentState == States::Halted) { Reset(); diff --git a/src/displayapp/screens/StopWatch.h b/src/displayapp/screens/StopWatch.h index ef55e2d2..f2f57110 100644 --- a/src/displayapp/screens/StopWatch.h +++ b/src/displayapp/screens/StopWatch.h @@ -1,13 +1,11 @@ #pragma once #include "displayapp/screens/Screen.h" -#include "components/datetime/DateTimeController.h" -#include "displayapp/LittleVgl.h" +#include #include #include "portmacro_cmsis.h" -#include #include "systemtask/SystemTask.h" namespace Pinetime::Applications::Screens { @@ -20,46 +18,6 @@ namespace Pinetime::Applications::Screens { int hundredths; }; - // A simple buffer to hold the latest two laps - template struct LapTextBuffer_t { - LapTextBuffer_t() : buffer {}, currentSize {}, capacity {N}, head {-1} { - } - - void addLaps(const TimeSeparated_t& timeVal) { - head++; - head %= capacity; - buffer[head] = timeVal; - - if (currentSize < capacity) { - currentSize++; - } - } - - void clearBuffer() { - buffer = {}; - currentSize = 0; - head = -1; - } - - TimeSeparated_t* operator[](std::size_t idx) { - // Sanity check for out-of-bounds - if (idx >= 0 && idx < capacity) { - if (idx < currentSize) { - // This transformation is to ensure that head is always pointing to index 0. - const auto transformed_idx = (head - idx) % capacity; - return (&buffer[transformed_idx]); - } - } - return nullptr; - } - - private: - std::array buffer; - uint8_t currentSize; - uint8_t capacity; - int8_t head; - }; - class StopWatch : public Screen { public: StopWatch(DisplayApp* app, System::SystemTask& systemTask); @@ -76,15 +34,15 @@ namespace Pinetime::Applications::Screens { private: Pinetime::System::SystemTask& systemTask; - TickType_t timeElapsed; - States currentState; + States currentState = States::Init; TickType_t startTime; - TickType_t oldTimeElapsed; - TimeSeparated_t currentTimeSeparated; // Holds Mins, Secs, millisecs - LapTextBuffer_t<2> lapBuffer; - int lapNr = 0; + TickType_t oldTimeElapsed = 0; + static constexpr int maxLapCount = 20; + TickType_t laps[maxLapCount + 1]; + static constexpr int displayedLaps = 2; + int lapsDone = 0; lv_obj_t *time, *msecTime, *btnPlayPause, *btnStopLap, *txtPlayPause, *txtStopLap; - lv_obj_t *lapOneText, *lapTwoText; + lv_obj_t* lapText; lv_task_t* taskRefresh; }; -- cgit v1.2.3 From b768829c633dd8fa344b744382d7d75c71c4229f Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Wed, 27 Jul 2022 20:10:39 +0300 Subject: More timeout options and improved checkbox alignment --- src/displayapp/lv_pinetime_theme.c | 2 +- src/displayapp/screens/settings/SettingDisplay.cpp | 6 +++--- src/displayapp/screens/settings/SettingDisplay.h | 2 +- src/displayapp/screens/settings/SettingTimeFormat.h | 2 +- src/displayapp/screens/settings/SettingWakeUp.cpp | 8 ++++---- src/displayapp/screens/settings/SettingWatchFace.h | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/lv_pinetime_theme.c b/src/displayapp/lv_pinetime_theme.c index 9c90ce12..f712004a 100644 --- a/src/displayapp/lv_pinetime_theme.c +++ b/src/displayapp/lv_pinetime_theme.c @@ -207,7 +207,7 @@ static void basic_init(void) { lv_style_reset(&style_cb_bg); lv_style_set_radius(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(4)); - lv_style_set_pad_inner(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(10)); + lv_style_set_pad_inner(&style_cb_bg, LV_STATE_DEFAULT, 18); lv_style_set_outline_color(&style_cb_bg, LV_STATE_DEFAULT, LV_COLOR_WHITE); lv_style_set_outline_width(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(2)); lv_style_set_outline_pad(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(20)); diff --git a/src/displayapp/screens/settings/SettingDisplay.cpp b/src/displayapp/screens/settings/SettingDisplay.cpp index bf2087ab..e044a85a 100644 --- a/src/displayapp/screens/settings/SettingDisplay.cpp +++ b/src/displayapp/screens/settings/SettingDisplay.cpp @@ -15,7 +15,7 @@ namespace { } } -constexpr std::array SettingDisplay::options; +constexpr std::array SettingDisplay::options; SettingDisplay::SettingDisplay(Pinetime::Applications::DisplayApp* app, Pinetime::Controllers::Settings& settingsController) : Screen(app), settingsController {settingsController} { @@ -30,7 +30,7 @@ SettingDisplay::SettingDisplay(Pinetime::Applications::DisplayApp* app, Pinetime lv_obj_set_pos(container1, 10, 60); lv_obj_set_width(container1, LV_HOR_RES - 20); lv_obj_set_height(container1, LV_VER_RES - 50); - lv_cont_set_layout(container1, LV_LAYOUT_COLUMN_LEFT); + lv_cont_set_layout(container1, LV_LAYOUT_PRETTY_TOP); lv_obj_t* title = lv_label_create(lv_scr_act(), nullptr); lv_label_set_text_static(title, "Display timeout"); @@ -46,7 +46,7 @@ SettingDisplay::SettingDisplay(Pinetime::Applications::DisplayApp* app, Pinetime char buffer[12]; for (unsigned int i = 0; i < options.size(); i++) { cbOption[i] = lv_checkbox_create(container1, nullptr); - sprintf(buffer, "%3d seconds", options[i] / 1000); + sprintf(buffer, "%2ds", options[i] / 1000); lv_checkbox_set_text(cbOption[i], buffer); cbOption[i]->user_data = this; lv_obj_set_event_cb(cbOption[i], event_handler); diff --git a/src/displayapp/screens/settings/SettingDisplay.h b/src/displayapp/screens/settings/SettingDisplay.h index dc56419d..eeddaef8 100644 --- a/src/displayapp/screens/settings/SettingDisplay.h +++ b/src/displayapp/screens/settings/SettingDisplay.h @@ -20,7 +20,7 @@ namespace Pinetime { void UpdateSelected(lv_obj_t* object, lv_event_t event); private: - static constexpr std::array options = {5000, 15000, 20000, 30000}; + static constexpr std::array options = {5000, 7000, 10000, 15000, 20000, 30000}; Controllers::Settings& settingsController; lv_obj_t* cbOption[options.size()]; diff --git a/src/displayapp/screens/settings/SettingTimeFormat.h b/src/displayapp/screens/settings/SettingTimeFormat.h index 818edf0c..01ca2c9b 100644 --- a/src/displayapp/screens/settings/SettingTimeFormat.h +++ b/src/displayapp/screens/settings/SettingTimeFormat.h @@ -20,7 +20,7 @@ namespace Pinetime { void UpdateSelected(lv_obj_t* object, lv_event_t event); private: - static constexpr std::array options = {" 12-hour", " 24-hour"}; + static constexpr std::array options = {"12-hour", "24-hour"}; Controllers::Settings& settingsController; lv_obj_t* cbOption[options.size()]; }; diff --git a/src/displayapp/screens/settings/SettingWakeUp.cpp b/src/displayapp/screens/settings/SettingWakeUp.cpp index 4a4b60f8..59275e2f 100644 --- a/src/displayapp/screens/settings/SettingWakeUp.cpp +++ b/src/displayapp/screens/settings/SettingWakeUp.cpp @@ -42,7 +42,7 @@ SettingWakeUp::SettingWakeUp(Pinetime::Applications::DisplayApp* app, Pinetime:: optionsTotal = 0; cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Single Tap"); + lv_checkbox_set_text_static(cbOption[optionsTotal], "Single Tap"); cbOption[optionsTotal]->user_data = this; lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::SingleTap)) { @@ -50,7 +50,7 @@ SettingWakeUp::SettingWakeUp(Pinetime::Applications::DisplayApp* app, Pinetime:: } optionsTotal++; cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Double Tap"); + lv_checkbox_set_text_static(cbOption[optionsTotal], "Double Tap"); cbOption[optionsTotal]->user_data = this; lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::DoubleTap)) { @@ -58,7 +58,7 @@ SettingWakeUp::SettingWakeUp(Pinetime::Applications::DisplayApp* app, Pinetime:: } optionsTotal++; cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Raise Wrist"); + lv_checkbox_set_text_static(cbOption[optionsTotal], "Raise Wrist"); cbOption[optionsTotal]->user_data = this; lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::RaiseWrist)) { @@ -66,7 +66,7 @@ SettingWakeUp::SettingWakeUp(Pinetime::Applications::DisplayApp* app, Pinetime:: } optionsTotal++; cbOption[optionsTotal] = lv_checkbox_create(container1, nullptr); - lv_checkbox_set_text_static(cbOption[optionsTotal], " Shake Wake"); + lv_checkbox_set_text_static(cbOption[optionsTotal], "Shake Wake"); cbOption[optionsTotal]->user_data = this; lv_obj_set_event_cb(cbOption[optionsTotal], event_handler); if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake)) { diff --git a/src/displayapp/screens/settings/SettingWatchFace.h b/src/displayapp/screens/settings/SettingWatchFace.h index 62427b4f..d65f4a22 100644 --- a/src/displayapp/screens/settings/SettingWatchFace.h +++ b/src/displayapp/screens/settings/SettingWatchFace.h @@ -20,7 +20,7 @@ namespace Pinetime { void UpdateSelected(lv_obj_t* object, lv_event_t event); private: - static constexpr std::array options = {" Digital face", " Analog face", " PineTimeStyle", " Terminal"}; + static constexpr std::array options = {"Digital face", "Analog face", "PineTimeStyle", "Terminal"}; Controllers::Settings& settingsController; lv_obj_t* cbOption[options.size()]; -- cgit v1.2.3 From 8e72cf380fa0bec62e3d9805ec777e586d188cf2 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Mon, 8 Aug 2022 18:01:40 +0300 Subject: Notification swap text colors for visibility and reduce duplication (#1252) --- src/displayapp/screens/Notifications.cpp | 19 +++++++------------ 1 file changed, 7 insertions(+), 12 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index 1479cf5d..768ac290 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -272,7 +272,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_align(alert_count, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 16); lv_obj_t* alert_type = lv_label_create(container, nullptr); - lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); if (title == nullptr) { lv_label_set_text_static(alert_type, "Notification"); } else { @@ -289,21 +289,16 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_set_width(alert_type, 180); lv_obj_align(alert_type, NULL, LV_ALIGN_IN_TOP_LEFT, 0, 16); - ///////// + lv_obj_t* alert_subject = lv_label_create(subject_container, nullptr); + lv_label_set_long_mode(alert_subject, LV_LABEL_LONG_BREAK); + lv_obj_set_width(alert_subject, LV_HOR_RES - 20); + switch (category) { - default: { - lv_obj_t* alert_subject = lv_label_create(subject_container, nullptr); - lv_obj_set_style_local_text_color(alert_subject, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); - lv_label_set_long_mode(alert_subject, LV_LABEL_LONG_BREAK); - lv_obj_set_width(alert_subject, LV_HOR_RES - 20); + default: lv_label_set_text(alert_subject, msg); - } break; + break; case Controllers::NotificationManager::Categories::IncomingCall: { lv_obj_set_height(subject_container, 108); - lv_obj_t* alert_subject = lv_label_create(subject_container, nullptr); - lv_obj_set_style_local_text_color(alert_subject, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); - lv_label_set_long_mode(alert_subject, LV_LABEL_LONG_BREAK); - lv_obj_set_width(alert_subject, LV_HOR_RES - 20); lv_label_set_text_static(alert_subject, "Incoming call from"); lv_obj_t* alert_caller = lv_label_create(subject_container, nullptr); -- cgit v1.2.3 From 3eebe0244872818d7b96d4dae3e55e3548941bda Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Mon, 1 Aug 2022 20:57:27 +0300 Subject: Add support for months and variable digit count to Counter --- src/displayapp/widgets/Counter.cpp | 27 ++++++++++++++++++++++++--- src/displayapp/widgets/Counter.h | 5 ++++- 2 files changed, 28 insertions(+), 4 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/widgets/Counter.cpp b/src/displayapp/widgets/Counter.cpp index 04a275da..d8a1626e 100644 --- a/src/displayapp/widgets/Counter.cpp +++ b/src/displayapp/widgets/Counter.cpp @@ -1,4 +1,5 @@ #include "displayapp/widgets/Counter.h" +#include "components/datetime/DateTimeController.h" using namespace Pinetime::Applications::Widgets; @@ -18,7 +19,7 @@ namespace { } } -Counter::Counter(int min, int max, lv_font_t& font) : min {min}, max {max}, font {font} { +Counter::Counter(int min, int max, lv_font_t& font) : min {min}, max {max}, value {min}, font {font} { } void Counter::UpBtnPressed() { @@ -74,6 +75,8 @@ void Counter::UpdateLabel() { } else { lv_label_set_text_fmt(number, "%.2i", value - 12); } + } else if (monthMode) { + lv_label_set_text(number, Controllers::DateTime::MonthShortToStringLow(static_cast(value))); } else { lv_label_set_text_fmt(number, "%.2i", value); } @@ -85,6 +88,20 @@ void Counter::EnableTwelveHourMode() { twelveHourMode = true; } +// Value is kept between 1 and 12, but the displayed value is the corresponding month +// Make sure to set the max and min values to 1 and 12. Otherwise behaviour is undefined +void Counter::EnableMonthMode() { + monthMode = true; +} + +void Counter::SetMax(int newMax) { + max = newMax; + if (value > max) { + value = max; + UpdateLabel(); + } +} + void Counter::SetValueChangedEventCallback(void* userData, void (*handler)(void* userData)) { this->userData = userData; this->ValueChangedHandler = handler; @@ -100,10 +117,14 @@ void Counter::Create() { lv_obj_set_style_local_text_font(number, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &font); lv_obj_align(number, nullptr, LV_ALIGN_CENTER, 0, 0); lv_obj_set_auto_realign(number, true); - lv_label_set_text_static(number, "00"); + if (monthMode) { + lv_label_set_text_static(number, "Jan"); + } else { + lv_label_set_text_fmt(number, "%d", max); + } static constexpr uint8_t padding = 5; - const uint8_t width = lv_obj_get_width(number) + padding * 2; + const uint8_t width = std::max(lv_obj_get_width(number) + padding * 2, 58); static constexpr uint8_t btnHeight = 50; const uint8_t containerHeight = btnHeight * 2 + lv_obj_get_height(number) + padding * 2; diff --git a/src/displayapp/widgets/Counter.h b/src/displayapp/widgets/Counter.h index 13b336ca..d38dd9d7 100644 --- a/src/displayapp/widgets/Counter.h +++ b/src/displayapp/widgets/Counter.h @@ -15,6 +15,8 @@ namespace Pinetime { void HideControls(); void ShowControls(); void EnableTwelveHourMode(); + void EnableMonthMode(); + void SetMax(int newMax); void SetValueChangedEventCallback(void* userData, void (*handler)(void* userData)); int GetValue() const { @@ -36,10 +38,11 @@ namespace Pinetime { lv_obj_t* upperLine; lv_obj_t* lowerLine; lv_point_t linePoints[2]; - int value = 0; int min; int max; + int value; bool twelveHourMode = false; + bool monthMode = false; lv_font_t& font; void* userData = nullptr; -- cgit v1.2.3 From eb487c71be22bd7568a538bf30a1f0dcd4ed3a8b Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Mon, 1 Aug 2022 20:58:20 +0300 Subject: Use Counter in SettingsSetDate --- src/displayapp/screens/settings/SettingSetDate.cpp | 203 ++++++--------------- src/displayapp/screens/settings/SettingSetDate.h | 22 +-- 2 files changed, 64 insertions(+), 161 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/screens/settings/SettingSetDate.cpp b/src/displayapp/screens/settings/SettingSetDate.cpp index 7acf0c19..1407a98f 100644 --- a/src/displayapp/screens/settings/SettingSetDate.cpp +++ b/src/displayapp/screens/settings/SettingSetDate.cpp @@ -11,13 +11,36 @@ namespace { constexpr int16_t POS_X_DAY = -72; constexpr int16_t POS_X_MONTH = 0; constexpr int16_t POS_X_YEAR = 72; - constexpr int16_t POS_Y_PLUS = -50; constexpr int16_t POS_Y_TEXT = -6; - constexpr int16_t POS_Y_MINUS = 40; void event_handler(lv_obj_t* obj, lv_event_t event) { auto* screen = static_cast(obj->user_data); - screen->HandleButtonPress(obj, event); + if (event == LV_EVENT_CLICKED) { + screen->HandleButtonPress(); + } + } + + void ValueChangedHandler(void* userData) { + auto* screen = static_cast(userData); + screen->CheckDay(); + } + + int MaximumDayOfMonth(uint8_t month, uint16_t year) { + switch (month) { + case 2: { + if ((((year % 4) == 0) && ((year % 100) != 0)) || ((year % 400) == 0)) { + return 29; + } + return 28; + } + case 4: + case 6: + case 9: + case 11: + return 30; + default: + return 31; + } } } @@ -35,164 +58,54 @@ SettingSetDate::SettingSetDate(Pinetime::Applications::DisplayApp* app, Pinetime lv_label_set_align(icon, LV_LABEL_ALIGN_CENTER); lv_obj_align(icon, title, LV_ALIGN_OUT_LEFT_MID, -10, 0); - dayValue = static_cast(dateTimeController.Day()); - lblDay = lv_label_create(lv_scr_act(), nullptr); - lv_label_set_text_fmt(lblDay, "%d", dayValue); - lv_label_set_align(lblDay, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblDay, lv_scr_act(), LV_ALIGN_CENTER, POS_X_DAY, POS_Y_TEXT); - lv_obj_set_auto_realign(lblDay, true); - - monthValue = static_cast(dateTimeController.Month()); - lblMonth = lv_label_create(lv_scr_act(), nullptr); - UpdateMonthLabel(); - lv_label_set_align(lblMonth, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblMonth, lv_scr_act(), LV_ALIGN_CENTER, POS_X_MONTH, POS_Y_TEXT); - lv_obj_set_auto_realign(lblMonth, true); - - yearValue = static_cast(dateTimeController.Year()); - if (yearValue < 2021) - yearValue = 2021; - lblYear = lv_label_create(lv_scr_act(), nullptr); - lv_label_set_text_fmt(lblYear, "%d", yearValue); - lv_label_set_align(lblYear, LV_LABEL_ALIGN_CENTER); - lv_obj_align(lblYear, lv_scr_act(), LV_ALIGN_CENTER, POS_X_YEAR, POS_Y_TEXT); - lv_obj_set_auto_realign(lblYear, true); - - btnDayPlus = lv_btn_create(lv_scr_act(), nullptr); - btnDayPlus->user_data = this; - lv_obj_set_size(btnDayPlus, 50, 40); - lv_obj_align(btnDayPlus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_DAY, POS_Y_PLUS); - lv_obj_set_style_local_value_str(btnDayPlus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "+"); - lv_obj_set_event_cb(btnDayPlus, event_handler); - - btnDayMinus = lv_btn_create(lv_scr_act(), nullptr); - btnDayMinus->user_data = this; - lv_obj_set_size(btnDayMinus, 50, 40); - lv_obj_align(btnDayMinus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_DAY, POS_Y_MINUS); - lv_obj_set_style_local_value_str(btnDayMinus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "-"); - lv_obj_set_event_cb(btnDayMinus, event_handler); - - btnMonthPlus = lv_btn_create(lv_scr_act(), nullptr); - btnMonthPlus->user_data = this; - lv_obj_set_size(btnMonthPlus, 50, 40); - lv_obj_align(btnMonthPlus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_MONTH, POS_Y_PLUS); - lv_obj_set_style_local_value_str(btnMonthPlus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "+"); - lv_obj_set_event_cb(btnMonthPlus, event_handler); + dayCounter.SetValueChangedEventCallback(this, ValueChangedHandler); + dayCounter.Create(); + dayCounter.SetValue(dateTimeController.Day()); + lv_obj_align(dayCounter.GetObject(), nullptr, LV_ALIGN_CENTER, POS_X_DAY, POS_Y_TEXT); - btnMonthMinus = lv_btn_create(lv_scr_act(), nullptr); - btnMonthMinus->user_data = this; - lv_obj_set_size(btnMonthMinus, 50, 40); - lv_obj_align(btnMonthMinus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_MONTH, POS_Y_MINUS); - lv_obj_set_style_local_value_str(btnMonthMinus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "-"); - lv_obj_set_event_cb(btnMonthMinus, event_handler); + monthCounter.EnableMonthMode(); + monthCounter.SetValueChangedEventCallback(this, ValueChangedHandler); + monthCounter.Create(); + monthCounter.SetValue(static_cast(dateTimeController.Month())); + lv_obj_align(monthCounter.GetObject(), nullptr, LV_ALIGN_CENTER, POS_X_MONTH, POS_Y_TEXT); - btnYearPlus = lv_btn_create(lv_scr_act(), nullptr); - btnYearPlus->user_data = this; - lv_obj_set_size(btnYearPlus, 50, 40); - lv_obj_align(btnYearPlus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_YEAR, POS_Y_PLUS); - lv_obj_set_style_local_value_str(btnYearPlus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "+"); - lv_obj_set_event_cb(btnYearPlus, event_handler); - - btnYearMinus = lv_btn_create(lv_scr_act(), nullptr); - btnYearMinus->user_data = this; - lv_obj_set_size(btnYearMinus, 50, 40); - lv_obj_align(btnYearMinus, lv_scr_act(), LV_ALIGN_CENTER, POS_X_YEAR, POS_Y_MINUS); - lv_obj_set_style_local_value_str(btnYearMinus, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "-"); - lv_obj_set_event_cb(btnYearMinus, event_handler); + yearCounter.SetValueChangedEventCallback(this, ValueChangedHandler); + yearCounter.Create(); + yearCounter.SetValue(dateTimeController.Year()); + lv_obj_align(yearCounter.GetObject(), nullptr, LV_ALIGN_CENTER, POS_X_YEAR, POS_Y_TEXT); btnSetTime = lv_btn_create(lv_scr_act(), nullptr); btnSetTime->user_data = this; lv_obj_set_size(btnSetTime, 120, 48); lv_obj_align(btnSetTime, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); + lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); lv_obj_set_style_local_value_str(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Set"); lv_obj_set_event_cb(btnSetTime, event_handler); + lv_btn_set_state(btnSetTime, LV_BTN_STATE_DISABLED); } SettingSetDate::~SettingSetDate() { lv_obj_clean(lv_scr_act()); } -void SettingSetDate::HandleButtonPress(lv_obj_t* object, lv_event_t event) { - if (event != LV_EVENT_CLICKED) - return; - - if (object == btnDayPlus) { - dayValue++; - if (dayValue > MaximumDayOfMonth()) - dayValue = 1; - lv_label_set_text_fmt(lblDay, "%d", dayValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnDayMinus) { - dayValue--; - if (dayValue < 1) - dayValue = MaximumDayOfMonth(); - lv_label_set_text_fmt(lblDay, "%d", dayValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - } else if (object == btnMonthPlus) { - monthValue++; - if (monthValue > 12) - monthValue = 1; - UpdateMonthLabel(); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - CheckDay(); - } else if (object == btnMonthMinus) { - monthValue--; - if (monthValue < 1) - monthValue = 12; - UpdateMonthLabel(); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - CheckDay(); - } else if (object == btnYearPlus) { - yearValue++; - lv_label_set_text_fmt(lblYear, "%d", yearValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - CheckDay(); - } else if (object == btnYearMinus) { - yearValue--; - lv_label_set_text_fmt(lblYear, "%d", yearValue); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); - CheckDay(); - } else if (object == btnSetTime) { - NRF_LOG_INFO("Setting date (manually) to %04d-%02d-%02d", yearValue, monthValue, dayValue); - dateTimeController.SetTime(static_cast(yearValue), - static_cast(monthValue), - static_cast(dayValue), - 0, - dateTimeController.Hours(), - dateTimeController.Minutes(), - dateTimeController.Seconds(), - nrf_rtc_counter_get(portNRF_RTC_REG)); - lv_btn_set_state(btnSetTime, LV_BTN_STATE_DISABLED); - } -} - -int SettingSetDate::MaximumDayOfMonth() const { - switch (monthValue) { - case 2: - if ((((yearValue % 4) == 0) && ((yearValue % 100) != 0)) || ((yearValue % 400) == 0)) - return 29; - return 28; - case 4: - case 6: - case 9: - case 11: - return 30; - default: - return 31; - } +void SettingSetDate::HandleButtonPress() { + const uint16_t yearValue = yearCounter.GetValue(); + const uint8_t monthValue = monthCounter.GetValue(); + const uint8_t dayValue = dayCounter.GetValue(); + NRF_LOG_INFO("Setting date (manually) to %04d-%02d-%02d", yearValue, monthValue, dayValue); + dateTimeController.SetTime(yearValue, + monthValue, + dayValue, + 0, + dateTimeController.Hours(), + dateTimeController.Minutes(), + dateTimeController.Seconds(), + nrf_rtc_counter_get(portNRF_RTC_REG)); + lv_btn_set_state(btnSetTime, LV_BTN_STATE_DISABLED); } void SettingSetDate::CheckDay() { - int maxDay = MaximumDayOfMonth(); - if (dayValue > maxDay) { - dayValue = maxDay; - lv_label_set_text_fmt(lblDay, "%d", dayValue); - lv_obj_align(lblDay, lv_scr_act(), LV_ALIGN_CENTER, POS_X_DAY, POS_Y_TEXT); - } -} - -void SettingSetDate::UpdateMonthLabel() { - lv_label_set_text_static( - lblMonth, - Pinetime::Controllers::DateTime::MonthShortToStringLow(static_cast(monthValue))); + const int maxDay = MaximumDayOfMonth(monthCounter.GetValue(), yearCounter.GetValue()); + dayCounter.SetMax(maxDay); + lv_btn_set_state(btnSetTime, LV_BTN_STATE_RELEASED); } diff --git a/src/displayapp/screens/settings/SettingSetDate.h b/src/displayapp/screens/settings/SettingSetDate.h index a1795942..af0d654e 100644 --- a/src/displayapp/screens/settings/SettingSetDate.h +++ b/src/displayapp/screens/settings/SettingSetDate.h @@ -4,6 +4,7 @@ #include #include "components/datetime/DateTimeController.h" #include "displayapp/screens/Screen.h" +#include "displayapp/widgets/Counter.h" namespace Pinetime { namespace Applications { @@ -13,28 +14,17 @@ namespace Pinetime { SettingSetDate(DisplayApp* app, Pinetime::Controllers::DateTime& dateTimeController); ~SettingSetDate() override; - void HandleButtonPress(lv_obj_t* object, lv_event_t event); + void HandleButtonPress(); + void CheckDay(); private: Controllers::DateTime& dateTimeController; - int dayValue; - int monthValue; - int yearValue; - lv_obj_t* lblDay; - lv_obj_t* lblMonth; - lv_obj_t* lblYear; - lv_obj_t* btnDayPlus; - lv_obj_t* btnDayMinus; - lv_obj_t* btnMonthPlus; - lv_obj_t* btnMonthMinus; - lv_obj_t* btnYearPlus; - lv_obj_t* btnYearMinus; lv_obj_t* btnSetTime; - int MaximumDayOfMonth() const; - void CheckDay(); - void UpdateMonthLabel(); + Widgets::Counter dayCounter = Widgets::Counter(1, 31, jetbrains_mono_bold_20); + Widgets::Counter monthCounter = Widgets::Counter(1, 12, jetbrains_mono_bold_20); + Widgets::Counter yearCounter = Widgets::Counter(1970, 9999, jetbrains_mono_bold_20); }; } } -- cgit v1.2.3 From 78fc1682dac113fb6583d29de4a5f440c2e42363 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 16 Aug 2022 08:21:23 +0300 Subject: Centralize most color definitions (#1258) --- src/CMakeLists.txt | 4 +- src/displayapp/InfiniTimeTheme.cpp | 446 ++++++++++++++++++++ src/displayapp/InfiniTimeTheme.h | 33 ++ src/displayapp/LittleVgl.cpp | 2 +- src/displayapp/lv_pinetime_theme.c | 447 --------------------- src/displayapp/lv_pinetime_theme.h | 33 -- src/displayapp/screens/Alarm.cpp | 3 +- src/displayapp/screens/BatteryInfo.cpp | 9 +- src/displayapp/screens/FirmwareValidation.cpp | 5 +- src/displayapp/screens/FlashLight.cpp | 3 +- src/displayapp/screens/HeartRate.cpp | 14 +- src/displayapp/screens/InfiniPaint.cpp | 3 +- src/displayapp/screens/Metronome.cpp | 3 +- src/displayapp/screens/Motion.cpp | 3 +- src/displayapp/screens/Navigation.cpp | 3 +- src/displayapp/screens/Notifications.cpp | 9 +- src/displayapp/screens/PassKey.cpp | 2 +- src/displayapp/screens/Steps.cpp | 4 +- src/displayapp/screens/StopWatch.cpp | 13 +- src/displayapp/screens/Styles.cpp | 3 +- src/displayapp/screens/SystemInfo.cpp | 3 +- src/displayapp/screens/Tile.cpp | 3 +- src/displayapp/screens/Timer.cpp | 3 +- src/displayapp/screens/WatchFaceAnalog.cpp | 5 +- src/displayapp/screens/WatchFaceDigital.cpp | 2 +- src/displayapp/screens/WatchFacePineTimeStyle.cpp | 4 +- src/displayapp/screens/settings/QuickSettings.cpp | 5 +- src/displayapp/screens/settings/SettingSetTime.cpp | 4 +- .../screens/settings/SettingShakeThreshold.cpp | 4 +- src/displayapp/screens/settings/SettingSteps.cpp | 1 - .../screens/settings/SettingWatchFace.cpp | 1 - src/displayapp/widgets/Counter.cpp | 9 +- src/displayapp/widgets/PageIndicator.cpp | 5 +- src/displayapp/widgets/StatusIcons.cpp | 2 +- 34 files changed, 554 insertions(+), 539 deletions(-) create mode 100644 src/displayapp/InfiniTimeTheme.cpp create mode 100644 src/displayapp/InfiniTimeTheme.h delete mode 100644 src/displayapp/lv_pinetime_theme.c delete mode 100644 src/displayapp/lv_pinetime_theme.h (limited to 'src/displayapp') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index cfab2f54..db4a8e2a 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -477,7 +477,7 @@ list(APPEND SOURCE_FILES FreeRTOS/port_cmsis.c displayapp/LittleVgl.cpp - displayapp/lv_pinetime_theme.c + displayapp/InfiniTimeTheme.cpp systemtask/SystemTask.cpp systemtask/SystemMonitor.cpp @@ -663,7 +663,7 @@ set(INCLUDE_FILES libs/date/include/date/ptz.h libs/date/include/date/tz_private.h displayapp/LittleVgl.h - displayapp/lv_pinetime_theme.h + displayapp/InfiniTimeTheme.h systemtask/SystemTask.h systemtask/SystemMonitor.h displayapp/screens/Symbols.h diff --git a/src/displayapp/InfiniTimeTheme.cpp b/src/displayapp/InfiniTimeTheme.cpp new file mode 100644 index 00000000..89887573 --- /dev/null +++ b/src/displayapp/InfiniTimeTheme.cpp @@ -0,0 +1,446 @@ +#include "displayapp/InfiniTimeTheme.h" + +static void theme_apply(lv_obj_t* obj, lv_theme_style_t name); + +static lv_theme_t theme; + +static lv_style_t style_bg; +static lv_style_t style_box; +static lv_style_t style_btn; +static lv_style_t style_label_white; +static lv_style_t style_icon; +static lv_style_t style_bar_indic; +static lv_style_t style_slider_knob; +static lv_style_t style_scrollbar; +static lv_style_t style_list_btn; +static lv_style_t style_ddlist_list; +static lv_style_t style_ddlist_selected; +static lv_style_t style_sw_bg; +static lv_style_t style_sw_indic; +static lv_style_t style_sw_knob; +static lv_style_t style_arc_bg; +static lv_style_t style_arc_knob; +static lv_style_t style_arc_indic; +static lv_style_t style_table_cell; +static lv_style_t style_pad_small; +static lv_style_t style_lmeter; +static lv_style_t style_chart_serie; +static lv_style_t style_cb_bg; +static lv_style_t style_cb_bullet; + +static bool inited; + +static void style_init_reset(lv_style_t* style) { + if (inited) { + lv_style_reset(style); + } else { + lv_style_init(style); + } +} + +static void basic_init() { + style_init_reset(&style_bg); + lv_style_set_bg_opa(&style_bg, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_bg, LV_STATE_DEFAULT, LV_COLOR_BLACK); + lv_style_set_text_font(&style_bg, LV_STATE_DEFAULT, theme.font_normal); + + style_init_reset(&style_box); + lv_style_set_bg_opa(&style_box, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_radius(&style_box, LV_STATE_DEFAULT, 10); + lv_style_set_value_color(&style_box, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_value_font(&style_box, LV_STATE_DEFAULT, theme.font_normal); + + style_init_reset(&style_label_white); + lv_style_set_text_color(&style_label_white, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_label_white, LV_STATE_DISABLED, LV_COLOR_GRAY); + + style_init_reset(&style_btn); + lv_style_set_radius(&style_btn, LV_STATE_DEFAULT, 10); + lv_style_set_bg_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_btn, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_bg_color(&style_btn, LV_STATE_CHECKED, Colors::highlight); + lv_style_set_bg_color(&style_btn, LV_STATE_DISABLED, Colors::bgDark); + lv_style_set_border_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_border_width(&style_btn, LV_STATE_DEFAULT, 0); + + lv_style_set_text_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); + + lv_style_set_value_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_value_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); + + lv_style_set_pad_left(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_right(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_top(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_bottom(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_inner(&style_btn, LV_STATE_DEFAULT, LV_DPX(15)); + lv_style_set_outline_width(&style_btn, LV_STATE_DEFAULT, LV_DPX(2)); + lv_style_set_outline_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_0); + lv_style_set_outline_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_transition_time(&style_btn, LV_STATE_DEFAULT, 0); + lv_style_set_transition_delay(&style_btn, LV_STATE_DEFAULT, 0); + + style_init_reset(&style_icon); + lv_style_set_text_color(&style_icon, LV_STATE_DEFAULT, LV_COLOR_WHITE); + + style_init_reset(&style_bar_indic); + lv_style_set_bg_opa(&style_bar_indic, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_radius(&style_bar_indic, LV_STATE_DEFAULT, 10); + + style_init_reset(&style_scrollbar); + lv_style_set_bg_opa(&style_scrollbar, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_radius(&style_scrollbar, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_style_set_bg_color(&style_scrollbar, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_size(&style_scrollbar, LV_STATE_DEFAULT, LV_HOR_RES / 80); + lv_style_set_pad_right(&style_scrollbar, LV_STATE_DEFAULT, LV_HOR_RES / 60); + + style_init_reset(&style_list_btn); + lv_style_set_bg_opa(&style_list_btn, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_list_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_text_color(&style_list_btn, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_text_color(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); + lv_style_set_image_recolor(&style_list_btn, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_image_recolor(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); + lv_style_set_pad_left(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); + lv_style_set_pad_right(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); + lv_style_set_pad_top(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 100); + lv_style_set_pad_bottom(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 100); + lv_style_set_pad_inner(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 50); + + style_init_reset(&style_ddlist_list); + // Causes lag unfortunately, so we'll have to live with the selected item overflowing the corner + // lv_style_set_clip_corner(&style_ddlist_list, LV_STATE_DEFAULT, true); + lv_style_set_text_line_space(&style_ddlist_list, LV_STATE_DEFAULT, LV_VER_RES / 25); + lv_style_set_bg_color(&style_ddlist_list, LV_STATE_DEFAULT, Colors::lightGray); + lv_style_set_pad_all(&style_ddlist_list, LV_STATE_DEFAULT, 20); + + style_init_reset(&style_ddlist_selected); + lv_style_set_bg_opa(&style_ddlist_selected, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_ddlist_selected, LV_STATE_DEFAULT, Colors::bg); + + style_init_reset(&style_sw_bg); + lv_style_set_bg_opa(&style_sw_bg, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_sw_bg, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_radius(&style_sw_bg, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + + style_init_reset(&style_sw_indic); + lv_style_set_bg_opa(&style_sw_indic, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_sw_indic, LV_STATE_DEFAULT, Colors::highlight); + + style_init_reset(&style_sw_knob); + lv_style_set_bg_opa(&style_sw_knob, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_sw_knob, LV_STATE_DEFAULT, LV_COLOR_SILVER); + lv_style_set_bg_color(&style_sw_knob, LV_STATE_CHECKED, LV_COLOR_WHITE); + lv_style_set_radius(&style_sw_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_style_set_pad_top(&style_sw_knob, LV_STATE_DEFAULT, -4); + lv_style_set_pad_bottom(&style_sw_knob, LV_STATE_DEFAULT, -4); + lv_style_set_pad_left(&style_sw_knob, LV_STATE_DEFAULT, -4); + lv_style_set_pad_right(&style_sw_knob, LV_STATE_DEFAULT, -4); + + style_init_reset(&style_slider_knob); + lv_style_set_bg_opa(&style_slider_knob, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_slider_knob, LV_STATE_DEFAULT, LV_COLOR_RED); + lv_style_set_border_color(&style_slider_knob, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_border_width(&style_slider_knob, LV_STATE_DEFAULT, 6); + lv_style_set_radius(&style_slider_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_style_set_pad_top(&style_slider_knob, LV_STATE_DEFAULT, 10); + lv_style_set_pad_bottom(&style_slider_knob, LV_STATE_DEFAULT, 10); + lv_style_set_pad_left(&style_slider_knob, LV_STATE_DEFAULT, 10); + lv_style_set_pad_right(&style_slider_knob, LV_STATE_DEFAULT, 10); + lv_style_set_pad_top(&style_slider_knob, LV_STATE_PRESSED, 14); + lv_style_set_pad_bottom(&style_slider_knob, LV_STATE_PRESSED, 14); + lv_style_set_pad_left(&style_slider_knob, LV_STATE_PRESSED, 14); + lv_style_set_pad_right(&style_slider_knob, LV_STATE_PRESSED, 14); + + style_init_reset(&style_arc_indic); + lv_style_set_line_color(&style_arc_indic, LV_STATE_DEFAULT, Colors::lightGray); + lv_style_set_line_width(&style_arc_indic, LV_STATE_DEFAULT, LV_DPX(25)); + lv_style_set_line_rounded(&style_arc_indic, LV_STATE_DEFAULT, true); + + style_init_reset(&style_arc_bg); + lv_style_set_line_color(&style_arc_bg, LV_STATE_DEFAULT, Colors::bg); + lv_style_set_line_width(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(25)); + lv_style_set_line_rounded(&style_arc_bg, LV_STATE_DEFAULT, true); + lv_style_set_pad_all(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(5)); + + lv_style_reset(&style_arc_knob); + lv_style_set_radius(&style_arc_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_style_set_bg_opa(&style_arc_knob, LV_STATE_DEFAULT, LV_OPA_COVER); + lv_style_set_bg_color(&style_arc_knob, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_pad_all(&style_arc_knob, LV_STATE_DEFAULT, LV_DPX(5)); + + style_init_reset(&style_table_cell); + lv_style_set_border_color(&style_table_cell, LV_STATE_DEFAULT, LV_COLOR_GRAY); + lv_style_set_border_width(&style_table_cell, LV_STATE_DEFAULT, 1); + lv_style_set_border_side(&style_table_cell, LV_STATE_DEFAULT, LV_BORDER_SIDE_FULL); + lv_style_set_pad_left(&style_table_cell, LV_STATE_DEFAULT, 5); + lv_style_set_pad_right(&style_table_cell, LV_STATE_DEFAULT, 5); + lv_style_set_pad_top(&style_table_cell, LV_STATE_DEFAULT, 2); + lv_style_set_pad_bottom(&style_table_cell, LV_STATE_DEFAULT, 2); + + style_init_reset(&style_pad_small); + lv_style_int_t pad_small_value = 10; + lv_style_set_pad_left(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); + lv_style_set_pad_right(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); + lv_style_set_pad_top(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); + lv_style_set_pad_bottom(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); + lv_style_set_pad_inner(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); + + style_init_reset(&style_lmeter); + lv_style_set_radius(&style_lmeter, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); + lv_style_set_pad_left(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_right(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_top(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_pad_inner(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(30)); + lv_style_set_scale_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(25)); + + lv_style_set_line_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_scale_grad_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_scale_end_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_GRAY); + lv_style_set_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(10)); + lv_style_set_scale_end_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(7)); + + style_init_reset(&style_chart_serie); + lv_style_set_line_color(&style_chart_serie, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_line_width(&style_chart_serie, LV_STATE_DEFAULT, 4); + lv_style_set_size(&style_chart_serie, LV_STATE_DEFAULT, 4); + lv_style_set_bg_opa(&style_chart_serie, LV_STATE_DEFAULT, 0); + + lv_style_reset(&style_cb_bg); + lv_style_set_radius(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(4)); + lv_style_set_pad_inner(&style_cb_bg, LV_STATE_DEFAULT, 18); + lv_style_set_outline_color(&style_cb_bg, LV_STATE_DEFAULT, LV_COLOR_WHITE); + lv_style_set_outline_width(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(2)); + lv_style_set_outline_pad(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(20)); + lv_style_set_transition_time(&style_cb_bg, LV_STATE_DEFAULT, 0); + lv_style_set_transition_prop_6(&style_cb_bg, LV_STATE_DEFAULT, LV_STYLE_OUTLINE_OPA); + + lv_style_reset(&style_cb_bullet); + lv_style_set_outline_opa(&style_cb_bullet, LV_STATE_FOCUSED, LV_OPA_TRANSP); + lv_style_set_radius(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(4)); + lv_style_set_pattern_recolor(&style_cb_bullet, LV_STATE_CHECKED, LV_COLOR_WHITE); + lv_style_set_pad_left(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); + lv_style_set_pad_right(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); + lv_style_set_pad_top(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); + lv_style_set_pad_bottom(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); +} + +/** + * Initialize the default + * @param color_primary the primary color of the theme + * @param color_secondary the secondary color for the theme + * @param flags ORed flags starting with `LV_THEME_DEF_FLAG_...` + * @param font_small pointer to a small font + * @param font_normal pointer to a normal font + * @param font_subtitle pointer to a large font + * @param font_title pointer to a extra large font + * @return a pointer to reference this theme later + */ +lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary, + lv_color_t color_secondary, + uint32_t flags, + const lv_font_t* font_small, + const lv_font_t* font_normal, + const lv_font_t* font_subtitle, + const lv_font_t* font_title) { + theme.color_primary = color_primary; + theme.color_secondary = color_secondary; + theme.font_small = font_small; + theme.font_normal = font_normal; + theme.font_subtitle = font_subtitle; + theme.font_title = font_title; + theme.flags = flags; + + basic_init(); + + theme.apply_xcb = theme_apply; + + inited = true; + + return &theme; +} + +static void theme_apply(lv_obj_t* obj, lv_theme_style_t name) { + lv_style_list_t* list; + + switch (name) { + case LV_THEME_NONE: + break; + + case LV_THEME_SCR: + lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_OBJ_PART_MAIN); + _lv_style_list_add_style(list, &style_bg); + _lv_style_list_add_style(list, &style_label_white); + break; + + case LV_THEME_OBJ: + lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_OBJ_PART_MAIN); + _lv_style_list_add_style(list, &style_box); + break; + + case LV_THEME_CONT: + lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_CONT_PART_MAIN); + _lv_style_list_add_style(list, &style_box); + break; + + case LV_THEME_BTN: + lv_obj_clean_style_list(obj, LV_BTN_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_BTN_PART_MAIN); + _lv_style_list_add_style(list, &style_btn); + break; + + case LV_THEME_BTNMATRIX: + list = lv_obj_get_style_list(obj, LV_BTNMATRIX_PART_BG); + _lv_style_list_add_style(list, &style_bg); + _lv_style_list_add_style(list, &style_pad_small); + + list = lv_obj_get_style_list(obj, LV_BTNMATRIX_PART_BTN); + _lv_style_list_add_style(list, &style_btn); + break; + + case LV_THEME_BAR: + lv_obj_clean_style_list(obj, LV_BAR_PART_BG); + list = lv_obj_get_style_list(obj, LV_BAR_PART_BG); + + lv_obj_clean_style_list(obj, LV_BAR_PART_INDIC); + list = lv_obj_get_style_list(obj, LV_BAR_PART_INDIC); + _lv_style_list_add_style(list, &style_bar_indic); + break; + + case LV_THEME_IMAGE: + lv_obj_clean_style_list(obj, LV_IMG_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_IMG_PART_MAIN); + _lv_style_list_add_style(list, &style_icon); + break; + + case LV_THEME_LABEL: + lv_obj_clean_style_list(obj, LV_LABEL_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_LABEL_PART_MAIN); + _lv_style_list_add_style(list, &style_label_white); + break; + + case LV_THEME_SLIDER: + lv_obj_clean_style_list(obj, LV_SLIDER_PART_BG); + list = lv_obj_get_style_list(obj, LV_SLIDER_PART_BG); + _lv_style_list_add_style(list, &style_sw_bg); + + lv_obj_clean_style_list(obj, LV_SLIDER_PART_INDIC); + list = lv_obj_get_style_list(obj, LV_SLIDER_PART_INDIC); + + lv_obj_clean_style_list(obj, LV_SLIDER_PART_KNOB); + list = lv_obj_get_style_list(obj, LV_SLIDER_PART_KNOB); + _lv_style_list_add_style(list, &style_slider_knob); + break; + + case LV_THEME_LIST: + lv_obj_clean_style_list(obj, LV_LIST_PART_BG); + list = lv_obj_get_style_list(obj, LV_LIST_PART_BG); + _lv_style_list_add_style(list, &style_box); + + lv_obj_clean_style_list(obj, LV_LIST_PART_SCROLLABLE); + list = lv_obj_get_style_list(obj, LV_LIST_PART_SCROLLABLE); + + lv_obj_clean_style_list(obj, LV_LIST_PART_SCROLLBAR); + list = lv_obj_get_style_list(obj, LV_LIST_PART_SCROLLBAR); + _lv_style_list_add_style(list, &style_scrollbar); + break; + + case LV_THEME_LIST_BTN: + lv_obj_clean_style_list(obj, LV_BTN_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_BTN_PART_MAIN); + _lv_style_list_add_style(list, &style_list_btn); + break; + + case LV_THEME_ARC: + lv_obj_clean_style_list(obj, LV_ARC_PART_BG); + list = lv_obj_get_style_list(obj, LV_ARC_PART_BG); + _lv_style_list_add_style(list, &style_arc_bg); + + lv_obj_clean_style_list(obj, LV_ARC_PART_INDIC); + list = lv_obj_get_style_list(obj, LV_ARC_PART_INDIC); + _lv_style_list_add_style(list, &style_arc_indic); + + lv_obj_clean_style_list(obj, LV_ARC_PART_KNOB); + list = lv_obj_get_style_list(obj, LV_ARC_PART_KNOB); + _lv_style_list_add_style(list, &style_arc_knob); + break; + + case LV_THEME_SWITCH: + lv_obj_clean_style_list(obj, LV_SWITCH_PART_BG); + list = lv_obj_get_style_list(obj, LV_SWITCH_PART_BG); + _lv_style_list_add_style(list, &style_sw_bg); + + lv_obj_clean_style_list(obj, LV_SWITCH_PART_INDIC); + list = lv_obj_get_style_list(obj, LV_SWITCH_PART_INDIC); + _lv_style_list_add_style(list, &style_sw_indic); + + lv_obj_clean_style_list(obj, LV_SWITCH_PART_KNOB); + list = lv_obj_get_style_list(obj, LV_SWITCH_PART_KNOB); + _lv_style_list_add_style(list, &style_sw_knob); + break; + + case LV_THEME_DROPDOWN: + lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_MAIN); + list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_MAIN); + _lv_style_list_add_style(list, &style_btn); + + lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_LIST); + list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_LIST); + _lv_style_list_add_style(list, &style_box); + _lv_style_list_add_style(list, &style_ddlist_list); + + lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_SELECTED); + list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_SELECTED); + _lv_style_list_add_style(list, &style_ddlist_selected); + + lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_SCROLLBAR); + list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_SCROLLBAR); + _lv_style_list_add_style(list, &style_scrollbar); + break; + + case LV_THEME_TABLE: { + list = lv_obj_get_style_list(obj, LV_TABLE_PART_BG); + _lv_style_list_add_style(list, &style_bg); + + int idx = 1; /* start value should be 1, not zero, since cell styles + start at 1 due to presence of LV_TABLE_PART_BG=0 + in the enum (lv_table.h) */ + /* declaring idx outside loop to work with older compilers */ + for (; idx <= LV_TABLE_CELL_STYLE_CNT; idx++) { + list = lv_obj_get_style_list(obj, idx); + _lv_style_list_add_style(list, &style_table_cell); + _lv_style_list_add_style(list, &style_label_white); + } + } break; + + case LV_THEME_LINEMETER: + list = lv_obj_get_style_list(obj, LV_LINEMETER_PART_MAIN); + _lv_style_list_add_style(list, &style_bg); + _lv_style_list_add_style(list, &style_lmeter); + break; + + case LV_THEME_CHART: + lv_obj_clean_style_list(obj, LV_CHART_PART_SERIES); + list = lv_obj_get_style_list(obj, LV_CHART_PART_SERIES); + _lv_style_list_add_style(list, &style_btn); + _lv_style_list_add_style(list, &style_chart_serie); + break; + + case LV_THEME_CHECKBOX: + list = lv_obj_get_style_list(obj, LV_CHECKBOX_PART_BG); + _lv_style_list_add_style(list, &style_cb_bg); + + list = lv_obj_get_style_list(obj, LV_CHECKBOX_PART_BULLET); + _lv_style_list_add_style(list, &style_btn); + _lv_style_list_add_style(list, &style_cb_bullet); + break; + + default: + break; + } + + lv_obj_refresh_style(obj, LV_OBJ_PART_ALL, LV_STYLE_PROP_ALL); +} diff --git a/src/displayapp/InfiniTimeTheme.h b/src/displayapp/InfiniTimeTheme.h new file mode 100644 index 00000000..5709b007 --- /dev/null +++ b/src/displayapp/InfiniTimeTheme.h @@ -0,0 +1,33 @@ +#pragma once + +#include + +namespace Colors { + static constexpr lv_color_t orange = LV_COLOR_MAKE(0xff, 0xb0, 0x0); + static constexpr lv_color_t green = LV_COLOR_MAKE(0x0, 0xb0, 0x0); + static constexpr lv_color_t lightGray = LV_COLOR_MAKE(0xb0, 0xb0, 0xb0); + + static constexpr lv_color_t bg = LV_COLOR_MAKE(0x5d, 0x69, 0x7e); + static constexpr lv_color_t bgAlt = LV_COLOR_MAKE(0x38, 0x38, 0x38); + static constexpr lv_color_t bgDark = LV_COLOR_MAKE(0x18, 0x18, 0x18); + static constexpr lv_color_t highlight = green; +}; + +/** + * Initialize the default + * @param color_primary the primary color of the theme + * @param color_secondary the secondary color for the theme + * @param flags ORed flags starting with `LV_THEME_DEF_FLAG_...` + * @param font_small pointer to a small font + * @param font_normal pointer to a normal font + * @param font_subtitle pointer to a large font + * @param font_title pointer to a extra large font + * @return a pointer to reference this theme later + */ +lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary, + lv_color_t color_secondary, + uint32_t flags, + const lv_font_t* font_small, + const lv_font_t* font_normal, + const lv_font_t* font_subtitle, + const lv_font_t* font_title); diff --git a/src/displayapp/LittleVgl.cpp b/src/displayapp/LittleVgl.cpp index 64c99261..d5f31848 100644 --- a/src/displayapp/LittleVgl.cpp +++ b/src/displayapp/LittleVgl.cpp @@ -1,5 +1,5 @@ #include "displayapp/LittleVgl.h" -#include "displayapp/lv_pinetime_theme.h" +#include "displayapp/InfiniTimeTheme.h" #include #include diff --git a/src/displayapp/lv_pinetime_theme.c b/src/displayapp/lv_pinetime_theme.c deleted file mode 100644 index f712004a..00000000 --- a/src/displayapp/lv_pinetime_theme.c +++ /dev/null @@ -1,447 +0,0 @@ -#include "displayapp/lv_pinetime_theme.h" - -static void theme_apply(lv_obj_t* obj, lv_theme_style_t name); - -static lv_theme_t theme; - -static lv_style_t style_bg; -static lv_style_t style_box; -static lv_style_t style_btn; -static lv_style_t style_label_white; -static lv_style_t style_icon; -static lv_style_t style_bar_indic; -static lv_style_t style_slider_knob; -static lv_style_t style_scrollbar; -static lv_style_t style_list_btn; -static lv_style_t style_ddlist_list; -static lv_style_t style_ddlist_selected; -static lv_style_t style_sw_bg; -static lv_style_t style_sw_indic; -static lv_style_t style_sw_knob; -static lv_style_t style_arc_bg; -static lv_style_t style_arc_knob; -static lv_style_t style_arc_indic; -static lv_style_t style_table_cell; -static lv_style_t style_pad_small; -static lv_style_t style_lmeter; -static lv_style_t style_chart_serie; -static lv_style_t style_cb_bg; -static lv_style_t style_cb_bullet; - -static bool inited; - -static void style_init_reset(lv_style_t* style) { - if (inited) - lv_style_reset(style); - else - lv_style_init(style); -} - -static void basic_init(void) { - style_init_reset(&style_bg); - lv_style_set_bg_opa(&style_bg, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_bg, LV_STATE_DEFAULT, LV_COLOR_BLACK); - lv_style_set_text_font(&style_bg, LV_STATE_DEFAULT, theme.font_normal); - - style_init_reset(&style_box); - lv_style_set_bg_opa(&style_box, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_radius(&style_box, LV_STATE_DEFAULT, 10); - lv_style_set_value_color(&style_box, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_value_font(&style_box, LV_STATE_DEFAULT, theme.font_normal); - - style_init_reset(&style_label_white); - lv_style_set_text_color(&style_label_white, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_text_color(&style_label_white, LV_STATE_DISABLED, LV_COLOR_GRAY); - - style_init_reset(&style_btn); - lv_style_set_radius(&style_btn, LV_STATE_DEFAULT, 10); - lv_style_set_bg_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_btn, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_bg_color(&style_btn, LV_STATE_CHECKED, IT_COLOR_SEL); - lv_style_set_bg_color(&style_btn, LV_STATE_DISABLED, IT_COLOR_BG_DARK); - lv_style_set_border_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_border_width(&style_btn, LV_STATE_DEFAULT, 0); - - lv_style_set_text_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_text_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); - - lv_style_set_value_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_value_color(&style_btn, LV_STATE_DISABLED, LV_COLOR_GRAY); - - lv_style_set_pad_left(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_right(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_top(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_bottom(&style_btn, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_inner(&style_btn, LV_STATE_DEFAULT, LV_DPX(15)); - lv_style_set_outline_width(&style_btn, LV_STATE_DEFAULT, LV_DPX(2)); - lv_style_set_outline_opa(&style_btn, LV_STATE_DEFAULT, LV_OPA_0); - lv_style_set_outline_color(&style_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_transition_time(&style_btn, LV_STATE_DEFAULT, 0); - lv_style_set_transition_delay(&style_btn, LV_STATE_DEFAULT, 0); - - style_init_reset(&style_icon); - lv_style_set_text_color(&style_icon, LV_STATE_DEFAULT, LV_COLOR_WHITE); - - style_init_reset(&style_bar_indic); - lv_style_set_bg_opa(&style_bar_indic, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_radius(&style_bar_indic, LV_STATE_DEFAULT, 10); - - style_init_reset(&style_scrollbar); - lv_style_set_bg_opa(&style_scrollbar, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_radius(&style_scrollbar, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_bg_color(&style_scrollbar, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_size(&style_scrollbar, LV_STATE_DEFAULT, LV_HOR_RES / 80); - lv_style_set_pad_right(&style_scrollbar, LV_STATE_DEFAULT, LV_HOR_RES / 60); - - style_init_reset(&style_list_btn); - lv_style_set_bg_opa(&style_list_btn, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_list_btn, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_text_color(&style_list_btn, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_text_color(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); - lv_style_set_image_recolor(&style_list_btn, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_image_recolor(&style_list_btn, LV_STATE_CHECKED, LV_COLOR_WHITE); - lv_style_set_pad_left(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); - lv_style_set_pad_right(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 25); - lv_style_set_pad_top(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 100); - lv_style_set_pad_bottom(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 100); - lv_style_set_pad_inner(&style_list_btn, LV_STATE_DEFAULT, LV_HOR_RES / 50); - - style_init_reset(&style_ddlist_list); - // Causes lag unfortunately, so we'll have to live with the selected item overflowing the corner - // lv_style_set_clip_corner(&style_ddlist_list, LV_STATE_DEFAULT, true); - lv_style_set_text_line_space(&style_ddlist_list, LV_STATE_DEFAULT, LV_VER_RES / 25); - lv_style_set_bg_color(&style_ddlist_list, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_style_set_pad_all(&style_ddlist_list, LV_STATE_DEFAULT, 20); - - style_init_reset(&style_ddlist_selected); - lv_style_set_bg_opa(&style_ddlist_selected, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_ddlist_selected, LV_STATE_DEFAULT, IT_COLOR_BG); - - style_init_reset(&style_sw_bg); - lv_style_set_bg_opa(&style_sw_bg, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_sw_bg, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_radius(&style_sw_bg, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - - style_init_reset(&style_sw_indic); - lv_style_set_bg_opa(&style_sw_indic, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_sw_indic, LV_STATE_DEFAULT, IT_COLOR_SEL); - - style_init_reset(&style_sw_knob); - lv_style_set_bg_opa(&style_sw_knob, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_sw_knob, LV_STATE_DEFAULT, LV_COLOR_SILVER); - lv_style_set_bg_color(&style_sw_knob, LV_STATE_CHECKED, LV_COLOR_WHITE); - lv_style_set_radius(&style_sw_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_pad_top(&style_sw_knob, LV_STATE_DEFAULT, -4); - lv_style_set_pad_bottom(&style_sw_knob, LV_STATE_DEFAULT, -4); - lv_style_set_pad_left(&style_sw_knob, LV_STATE_DEFAULT, -4); - lv_style_set_pad_right(&style_sw_knob, LV_STATE_DEFAULT, -4); - - style_init_reset(&style_slider_knob); - lv_style_set_bg_opa(&style_slider_knob, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_slider_knob, LV_STATE_DEFAULT, LV_COLOR_RED); - lv_style_set_border_color(&style_slider_knob, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_border_width(&style_slider_knob, LV_STATE_DEFAULT, 6); - lv_style_set_radius(&style_slider_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_pad_top(&style_slider_knob, LV_STATE_DEFAULT, 10); - lv_style_set_pad_bottom(&style_slider_knob, LV_STATE_DEFAULT, 10); - lv_style_set_pad_left(&style_slider_knob, LV_STATE_DEFAULT, 10); - lv_style_set_pad_right(&style_slider_knob, LV_STATE_DEFAULT, 10); - lv_style_set_pad_top(&style_slider_knob, LV_STATE_PRESSED, 14); - lv_style_set_pad_bottom(&style_slider_knob, LV_STATE_PRESSED, 14); - lv_style_set_pad_left(&style_slider_knob, LV_STATE_PRESSED, 14); - lv_style_set_pad_right(&style_slider_knob, LV_STATE_PRESSED, 14); - - style_init_reset(&style_arc_indic); - lv_style_set_line_color(&style_arc_indic, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_style_set_line_width(&style_arc_indic, LV_STATE_DEFAULT, LV_DPX(25)); - lv_style_set_line_rounded(&style_arc_indic, LV_STATE_DEFAULT, true); - - style_init_reset(&style_arc_bg); - lv_style_set_line_color(&style_arc_bg, LV_STATE_DEFAULT, IT_COLOR_BG); - lv_style_set_line_width(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(25)); - lv_style_set_line_rounded(&style_arc_bg, LV_STATE_DEFAULT, true); - lv_style_set_pad_all(&style_arc_bg, LV_STATE_DEFAULT, LV_DPX(5)); - - lv_style_reset(&style_arc_knob); - lv_style_set_radius(&style_arc_knob, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_bg_opa(&style_arc_knob, LV_STATE_DEFAULT, LV_OPA_COVER); - lv_style_set_bg_color(&style_arc_knob, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_pad_all(&style_arc_knob, LV_STATE_DEFAULT, LV_DPX(5)); - - style_init_reset(&style_table_cell); - lv_style_set_border_color(&style_table_cell, LV_STATE_DEFAULT, LV_COLOR_GRAY); - lv_style_set_border_width(&style_table_cell, LV_STATE_DEFAULT, 1); - lv_style_set_border_side(&style_table_cell, LV_STATE_DEFAULT, LV_BORDER_SIDE_FULL); - lv_style_set_pad_left(&style_table_cell, LV_STATE_DEFAULT, 5); - lv_style_set_pad_right(&style_table_cell, LV_STATE_DEFAULT, 5); - lv_style_set_pad_top(&style_table_cell, LV_STATE_DEFAULT, 2); - lv_style_set_pad_bottom(&style_table_cell, LV_STATE_DEFAULT, 2); - - style_init_reset(&style_pad_small); - lv_style_int_t pad_small_value = 10; - lv_style_set_pad_left(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - lv_style_set_pad_right(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - lv_style_set_pad_top(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - lv_style_set_pad_bottom(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - lv_style_set_pad_inner(&style_pad_small, LV_STATE_DEFAULT, pad_small_value); - - style_init_reset(&style_lmeter); - lv_style_set_radius(&style_lmeter, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_style_set_pad_left(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_right(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_top(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_pad_inner(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(30)); - lv_style_set_scale_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(25)); - - lv_style_set_line_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_scale_grad_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_scale_end_color(&style_lmeter, LV_STATE_DEFAULT, LV_COLOR_GRAY); - lv_style_set_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(10)); - lv_style_set_scale_end_line_width(&style_lmeter, LV_STATE_DEFAULT, LV_DPX(7)); - - style_init_reset(&style_chart_serie); - lv_style_set_line_color(&style_chart_serie, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_line_width(&style_chart_serie, LV_STATE_DEFAULT, 4); - lv_style_set_size(&style_chart_serie, LV_STATE_DEFAULT, 4); - lv_style_set_bg_opa(&style_chart_serie, LV_STATE_DEFAULT, 0); - - lv_style_reset(&style_cb_bg); - lv_style_set_radius(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(4)); - lv_style_set_pad_inner(&style_cb_bg, LV_STATE_DEFAULT, 18); - lv_style_set_outline_color(&style_cb_bg, LV_STATE_DEFAULT, LV_COLOR_WHITE); - lv_style_set_outline_width(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(2)); - lv_style_set_outline_pad(&style_cb_bg, LV_STATE_DEFAULT, LV_DPX(20)); - lv_style_set_transition_time(&style_cb_bg, LV_STATE_DEFAULT, 0); - lv_style_set_transition_prop_6(&style_cb_bg, LV_STATE_DEFAULT, LV_STYLE_OUTLINE_OPA); - - lv_style_reset(&style_cb_bullet); - lv_style_set_outline_opa(&style_cb_bullet, LV_STATE_FOCUSED, LV_OPA_TRANSP); - lv_style_set_radius(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(4)); - lv_style_set_pattern_recolor(&style_cb_bullet, LV_STATE_CHECKED, LV_COLOR_WHITE); - lv_style_set_pad_left(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); - lv_style_set_pad_right(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); - lv_style_set_pad_top(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); - lv_style_set_pad_bottom(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); -} - -/** - * Initialize the default - * @param color_primary the primary color of the theme - * @param color_secondary the secondary color for the theme - * @param flags ORed flags starting with `LV_THEME_DEF_FLAG_...` - * @param font_small pointer to a small font - * @param font_normal pointer to a normal font - * @param font_subtitle pointer to a large font - * @param font_title pointer to a extra large font - * @return a pointer to reference this theme later - */ -lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary, - lv_color_t color_secondary, - uint32_t flags, - const lv_font_t* font_small, - const lv_font_t* font_normal, - const lv_font_t* font_subtitle, - const lv_font_t* font_title) { - theme.color_primary = color_primary; - theme.color_secondary = color_secondary; - theme.font_small = font_small; - theme.font_normal = font_normal; - theme.font_subtitle = font_subtitle; - theme.font_title = font_title; - theme.flags = flags; - - basic_init(); - - theme.apply_xcb = theme_apply; - - inited = true; - - return &theme; -} - -static void theme_apply(lv_obj_t* obj, lv_theme_style_t name) { - lv_style_list_t* list; - - /*To avoid warnings*/ - uint32_t name_int = (uint32_t) name; - switch (name_int) { - case LV_THEME_NONE: - break; - - case LV_THEME_SCR: - lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_OBJ_PART_MAIN); - _lv_style_list_add_style(list, &style_bg); - _lv_style_list_add_style(list, &style_label_white); - break; - - case LV_THEME_OBJ: - lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_OBJ_PART_MAIN); - _lv_style_list_add_style(list, &style_box); - break; - - case LV_THEME_CONT: - lv_obj_clean_style_list(obj, LV_OBJ_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_CONT_PART_MAIN); - _lv_style_list_add_style(list, &style_box); - break; - - case LV_THEME_BTN: - lv_obj_clean_style_list(obj, LV_BTN_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_BTN_PART_MAIN); - _lv_style_list_add_style(list, &style_btn); - break; - - case LV_THEME_BTNMATRIX: - list = lv_obj_get_style_list(obj, LV_BTNMATRIX_PART_BG); - _lv_style_list_add_style(list, &style_bg); - _lv_style_list_add_style(list, &style_pad_small); - - list = lv_obj_get_style_list(obj, LV_BTNMATRIX_PART_BTN); - _lv_style_list_add_style(list, &style_btn); - break; - - case LV_THEME_BAR: - lv_obj_clean_style_list(obj, LV_BAR_PART_BG); - list = lv_obj_get_style_list(obj, LV_BAR_PART_BG); - - lv_obj_clean_style_list(obj, LV_BAR_PART_INDIC); - list = lv_obj_get_style_list(obj, LV_BAR_PART_INDIC); - _lv_style_list_add_style(list, &style_bar_indic); - break; - - case LV_THEME_IMAGE: - lv_obj_clean_style_list(obj, LV_IMG_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_IMG_PART_MAIN); - _lv_style_list_add_style(list, &style_icon); - break; - - case LV_THEME_LABEL: - lv_obj_clean_style_list(obj, LV_LABEL_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_LABEL_PART_MAIN); - _lv_style_list_add_style(list, &style_label_white); - break; - - case LV_THEME_SLIDER: - lv_obj_clean_style_list(obj, LV_SLIDER_PART_BG); - list = lv_obj_get_style_list(obj, LV_SLIDER_PART_BG); - _lv_style_list_add_style(list, &style_sw_bg); - - lv_obj_clean_style_list(obj, LV_SLIDER_PART_INDIC); - list = lv_obj_get_style_list(obj, LV_SLIDER_PART_INDIC); - - lv_obj_clean_style_list(obj, LV_SLIDER_PART_KNOB); - list = lv_obj_get_style_list(obj, LV_SLIDER_PART_KNOB); - _lv_style_list_add_style(list, &style_slider_knob); - break; - - case LV_THEME_LIST: - lv_obj_clean_style_list(obj, LV_LIST_PART_BG); - list = lv_obj_get_style_list(obj, LV_LIST_PART_BG); - _lv_style_list_add_style(list, &style_box); - - lv_obj_clean_style_list(obj, LV_LIST_PART_SCROLLABLE); - list = lv_obj_get_style_list(obj, LV_LIST_PART_SCROLLABLE); - - lv_obj_clean_style_list(obj, LV_LIST_PART_SCROLLBAR); - list = lv_obj_get_style_list(obj, LV_LIST_PART_SCROLLBAR); - _lv_style_list_add_style(list, &style_scrollbar); - break; - - case LV_THEME_LIST_BTN: - lv_obj_clean_style_list(obj, LV_BTN_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_BTN_PART_MAIN); - _lv_style_list_add_style(list, &style_list_btn); - break; - - case LV_THEME_ARC: - lv_obj_clean_style_list(obj, LV_ARC_PART_BG); - list = lv_obj_get_style_list(obj, LV_ARC_PART_BG); - _lv_style_list_add_style(list, &style_arc_bg); - - lv_obj_clean_style_list(obj, LV_ARC_PART_INDIC); - list = lv_obj_get_style_list(obj, LV_ARC_PART_INDIC); - _lv_style_list_add_style(list, &style_arc_indic); - - lv_obj_clean_style_list(obj, LV_ARC_PART_KNOB); - list = lv_obj_get_style_list(obj, LV_ARC_PART_KNOB); - _lv_style_list_add_style(list, &style_arc_knob); - break; - - case LV_THEME_SWITCH: - lv_obj_clean_style_list(obj, LV_SWITCH_PART_BG); - list = lv_obj_get_style_list(obj, LV_SWITCH_PART_BG); - _lv_style_list_add_style(list, &style_sw_bg); - - lv_obj_clean_style_list(obj, LV_SWITCH_PART_INDIC); - list = lv_obj_get_style_list(obj, LV_SWITCH_PART_INDIC); - _lv_style_list_add_style(list, &style_sw_indic); - - lv_obj_clean_style_list(obj, LV_SWITCH_PART_KNOB); - list = lv_obj_get_style_list(obj, LV_SWITCH_PART_KNOB); - _lv_style_list_add_style(list, &style_sw_knob); - break; - - case LV_THEME_DROPDOWN: - lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_MAIN); - list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_MAIN); - _lv_style_list_add_style(list, &style_btn); - - lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_LIST); - list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_LIST); - _lv_style_list_add_style(list, &style_box); - _lv_style_list_add_style(list, &style_ddlist_list); - - lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_SELECTED); - list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_SELECTED); - _lv_style_list_add_style(list, &style_ddlist_selected); - - lv_obj_clean_style_list(obj, LV_DROPDOWN_PART_SCROLLBAR); - list = lv_obj_get_style_list(obj, LV_DROPDOWN_PART_SCROLLBAR); - _lv_style_list_add_style(list, &style_scrollbar); - break; - - case LV_THEME_TABLE: - list = lv_obj_get_style_list(obj, LV_TABLE_PART_BG); - _lv_style_list_add_style(list, &style_bg); - - int idx = 1; /* start value should be 1, not zero, since cell styles - start at 1 due to presence of LV_TABLE_PART_BG=0 - in the enum (lv_table.h) */ - /* declaring idx outside loop to work with older compilers */ - for (; idx <= LV_TABLE_CELL_STYLE_CNT; idx++) { - list = lv_obj_get_style_list(obj, idx); - _lv_style_list_add_style(list, &style_table_cell); - _lv_style_list_add_style(list, &style_label_white); - } - break; - - case LV_THEME_LINEMETER: - list = lv_obj_get_style_list(obj, LV_LINEMETER_PART_MAIN); - _lv_style_list_add_style(list, &style_bg); - _lv_style_list_add_style(list, &style_lmeter); - break; - - case LV_THEME_CHART: - lv_obj_clean_style_list(obj, LV_CHART_PART_SERIES); - list = lv_obj_get_style_list(obj, LV_CHART_PART_SERIES); - _lv_style_list_add_style(list, &style_btn); - _lv_style_list_add_style(list, &style_chart_serie); - break; - - case LV_THEME_CHECKBOX: - list = lv_obj_get_style_list(obj, LV_CHECKBOX_PART_BG); - _lv_style_list_add_style(list, &style_cb_bg); - - list = lv_obj_get_style_list(obj, LV_CHECKBOX_PART_BULLET); - _lv_style_list_add_style(list, &style_btn); - _lv_style_list_add_style(list, &style_cb_bullet); - break; - - default: - break; - } - - lv_obj_refresh_style(obj, LV_OBJ_PART_ALL, LV_STYLE_PROP_ALL); -} diff --git a/src/displayapp/lv_pinetime_theme.h b/src/displayapp/lv_pinetime_theme.h deleted file mode 100644 index b68b7380..00000000 --- a/src/displayapp/lv_pinetime_theme.h +++ /dev/null @@ -1,33 +0,0 @@ -#pragma once - -#ifdef __cplusplus -extern "C" { -#endif - -#include - -#define IT_COLOR_BG LV_COLOR_MAKE(0x5d, 0x69, 0x7e) -#define IT_COLOR_BG_DARK LV_COLOR_MAKE(0x18, 0x18, 0x18) -#define IT_COLOR_SEL LV_COLOR_MAKE(0x0, 0xb0, 0x0) - -/** - * Initialize the default - * @param color_primary the primary color of the theme - * @param color_secondary the secondary color for the theme - * @param flags ORed flags starting with `LV_THEME_DEF_FLAG_...` - * @param font_small pointer to a small font - * @param font_normal pointer to a normal font - * @param font_subtitle pointer to a large font - * @param font_title pointer to a extra large font - * @return a pointer to reference this theme later - */ -lv_theme_t* lv_pinetime_theme_init(lv_color_t color_primary, - lv_color_t color_secondary, - uint32_t flags, - const lv_font_t* font_small, - const lv_font_t* font_normal, - const lv_font_t* font_subtitle, - const lv_font_t* font_title); -#ifdef __cplusplus -} /* extern "C" */ -#endif diff --git a/src/displayapp/screens/Alarm.cpp b/src/displayapp/screens/Alarm.cpp index 427650c6..d6371ce6 100644 --- a/src/displayapp/screens/Alarm.cpp +++ b/src/displayapp/screens/Alarm.cpp @@ -18,6 +18,7 @@ #include "displayapp/screens/Alarm.h" #include "displayapp/screens/Screen.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; using Pinetime::Controllers::AlarmController; @@ -79,7 +80,7 @@ Alarm::Alarm(DisplayApp* app, lv_label_set_text_static(txtStop, Symbols::stop); lv_obj_set_hidden(btnStop, true); - static constexpr lv_color_t bgColor = LV_COLOR_MAKE(0x38, 0x38, 0x38); + static constexpr lv_color_t bgColor = Colors::bgAlt; btnRecur = lv_btn_create(lv_scr_act(), nullptr); btnRecur->user_data = this; diff --git a/src/displayapp/screens/BatteryInfo.cpp b/src/displayapp/screens/BatteryInfo.cpp index d9d479f8..9febda61 100644 --- a/src/displayapp/screens/BatteryInfo.cpp +++ b/src/displayapp/screens/BatteryInfo.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/BatteryInfo.h" #include "displayapp/DisplayApp.h" #include "components/battery/BatteryController.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -16,9 +17,9 @@ BatteryInfo::BatteryInfo(Pinetime::Applications::DisplayApp* app, Pinetime::Cont lv_obj_align(charging_bar, nullptr, LV_ALIGN_CENTER, 0, 10); lv_bar_set_anim_time(charging_bar, 1000); lv_obj_set_style_local_radius(charging_bar, LV_BAR_PART_BG, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_BG, LV_STATE_DEFAULT, lv_color_hex(0x222222)); + lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_BG, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_style_local_bg_opa(charging_bar, LV_BAR_PART_BG, LV_STATE_DEFAULT, LV_OPA_100); - lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); + lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_RED); lv_bar_set_value(charging_bar, batteryPercent, LV_ANIM_ON); status = lv_label_create(lv_scr_act(), nullptr); @@ -33,7 +34,7 @@ BatteryInfo::BatteryInfo(Pinetime::Applications::DisplayApp* app, Pinetime::Cont lv_obj_align(percent, nullptr, LV_ALIGN_CENTER, 0, -60); voltage = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(voltage, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); + lv_obj_set_style_local_text_color(voltage, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::orange); lv_label_set_text_fmt(voltage, "%1i.%02i volts", batteryVoltage / 1000, batteryVoltage % 1000 / 10); lv_label_set_align(voltage, LV_LABEL_ALIGN_CENTER); lv_obj_align(voltage, nullptr, LV_ALIGN_CENTER, 0, 95); @@ -62,7 +63,7 @@ void BatteryInfo::Refresh() { lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_YELLOW); lv_label_set_text_static(status, "Battery low"); } else { - lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_bg_color(charging_bar, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, Colors::highlight); lv_label_set_text_static(status, "Discharging"); } diff --git a/src/displayapp/screens/FirmwareValidation.cpp b/src/displayapp/screens/FirmwareValidation.cpp index a3c97616..a2314690 100644 --- a/src/displayapp/screens/FirmwareValidation.cpp +++ b/src/displayapp/screens/FirmwareValidation.cpp @@ -3,6 +3,7 @@ #include "Version.h" #include "components/firmwarevalidator/FirmwareValidator.h" #include "displayapp/DisplayApp.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -42,7 +43,7 @@ FirmwareValidation::FirmwareValidation(Pinetime::Applications::DisplayApp* app, lv_obj_set_size(buttonValidate, 115, 50); lv_obj_align(buttonValidate, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); lv_obj_set_event_cb(buttonValidate, ButtonEventHandler); - lv_obj_set_style_local_bg_color(buttonValidate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_bg_color(buttonValidate, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); labelButtonValidate = lv_label_create(buttonValidate, nullptr); lv_label_set_text_static(labelButtonValidate, "Validate"); @@ -51,7 +52,7 @@ FirmwareValidation::FirmwareValidation(Pinetime::Applications::DisplayApp* app, buttonReset->user_data = this; lv_obj_set_size(buttonReset, 115, 50); lv_obj_align(buttonReset, nullptr, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); - lv_obj_set_style_local_bg_color(buttonReset, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0x0, 0x0)); + lv_obj_set_style_local_bg_color(buttonReset, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_RED); lv_obj_set_event_cb(buttonReset, ButtonEventHandler); labelButtonReset = lv_label_create(buttonReset, nullptr); diff --git a/src/displayapp/screens/FlashLight.cpp b/src/displayapp/screens/FlashLight.cpp index b00bb0fa..e06b59b5 100644 --- a/src/displayapp/screens/FlashLight.cpp +++ b/src/displayapp/screens/FlashLight.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/FlashLight.h" #include "displayapp/DisplayApp.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -58,7 +59,7 @@ FlashLight::~FlashLight() { void FlashLight::SetColors() { lv_color_t bgColor = isOn ? LV_COLOR_WHITE : LV_COLOR_BLACK; - lv_color_t fgColor = isOn ? LV_COLOR_MAKE(0xb0, 0xb0, 0xb0) : LV_COLOR_WHITE; + lv_color_t fgColor = isOn ? Colors::lightGray : LV_COLOR_WHITE; lv_obj_set_style_local_bg_color(lv_scr_act(), LV_OBJ_PART_MAIN, LV_STATE_DEFAULT, bgColor); lv_obj_set_style_local_text_color(flashLight, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, fgColor); diff --git a/src/displayapp/screens/HeartRate.cpp b/src/displayapp/screens/HeartRate.cpp index 35e06bbc..305e0c4b 100644 --- a/src/displayapp/screens/HeartRate.cpp +++ b/src/displayapp/screens/HeartRate.cpp @@ -3,6 +3,7 @@ #include #include "displayapp/DisplayApp.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -36,10 +37,11 @@ HeartRate::HeartRate(Pinetime::Applications::DisplayApp* app, lv_obj_set_style_local_text_font(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); - if (isHrRunning) - lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); - else - lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + if (isHrRunning) { + lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); + } else { + lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); + } lv_label_set_text_static(label_hr, "000"); lv_obj_align(label_hr, nullptr, LV_ALIGN_CENTER, 0, -40); @@ -97,12 +99,12 @@ void HeartRate::OnStartStopEvent(lv_event_t event) { heartRateController.Start(); UpdateStartStopButton(heartRateController.State() != Controllers::HeartRateController::States::Stopped); systemTask.PushMessage(Pinetime::System::Messages::DisableSleeping); - lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); } else { heartRateController.Stop(); UpdateStartStopButton(heartRateController.State() != Controllers::HeartRateController::States::Stopped); systemTask.PushMessage(Pinetime::System::Messages::EnableSleeping); - lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(label_hr, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); } } } diff --git a/src/displayapp/screens/InfiniPaint.cpp b/src/displayapp/screens/InfiniPaint.cpp index 733b4e27..0b6864e8 100644 --- a/src/displayapp/screens/InfiniPaint.cpp +++ b/src/displayapp/screens/InfiniPaint.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/InfiniPaint.h" #include "displayapp/DisplayApp.h" #include "displayapp/LittleVgl.h" +#include "displayapp/InfiniTimeTheme.h" #include // std::fill @@ -26,7 +27,7 @@ bool InfiniPaint::OnTouchEvent(Pinetime::Applications::TouchEvents event) { selectColor = LV_COLOR_MAGENTA; break; case 1: - selectColor = LV_COLOR_MAKE(0x0, 0xb0, 0x0); + selectColor = Colors::green; break; case 2: selectColor = LV_COLOR_WHITE; diff --git a/src/displayapp/screens/Metronome.cpp b/src/displayapp/screens/Metronome.cpp index 2ffc52dd..174ac1b6 100644 --- a/src/displayapp/screens/Metronome.cpp +++ b/src/displayapp/screens/Metronome.cpp @@ -1,5 +1,6 @@ #include "displayapp/screens/Metronome.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -12,7 +13,7 @@ namespace { lv_obj_t* createLabel(const char* name, lv_obj_t* reference, lv_align_t align, lv_font_t* font, uint8_t x, uint8_t y) { lv_obj_t* label = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, font); - lv_obj_set_style_local_text_color(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(label, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); lv_label_set_text(label, name); lv_obj_align(label, reference, align, x, y); diff --git a/src/displayapp/screens/Motion.cpp b/src/displayapp/screens/Motion.cpp index f7ffcc7c..c2dc4dac 100644 --- a/src/displayapp/screens/Motion.cpp +++ b/src/displayapp/screens/Motion.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/Motion.h" #include #include "displayapp/DisplayApp.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -19,7 +20,7 @@ Motion::Motion(Pinetime::Applications::DisplayApp* app, Controllers::MotionContr /*Add 3 data series*/ ser1 = lv_chart_add_series(chart, LV_COLOR_RED); - ser2 = lv_chart_add_series(chart, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + ser2 = lv_chart_add_series(chart, Colors::green); ser3 = lv_chart_add_series(chart, LV_COLOR_YELLOW); lv_chart_init_points(chart, ser1, 0); diff --git a/src/displayapp/screens/Navigation.cpp b/src/displayapp/screens/Navigation.cpp index 5779df3a..f6389734 100644 --- a/src/displayapp/screens/Navigation.cpp +++ b/src/displayapp/screens/Navigation.cpp @@ -19,6 +19,7 @@ #include #include "displayapp/DisplayApp.h" #include "components/ble/NavigationService.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -192,7 +193,7 @@ void Navigation::Refresh() { if (progress > 90) { lv_obj_set_style_local_bg_color(barProgress, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_RED); } else { - lv_obj_set_style_local_bg_color(barProgress, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); + lv_obj_set_style_local_bg_color(barProgress, LV_BAR_PART_INDIC, LV_STATE_DEFAULT, Colors::orange); } } } diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp index 768ac290..90a010f5 100644 --- a/src/displayapp/screens/Notifications.cpp +++ b/src/displayapp/screens/Notifications.cpp @@ -4,6 +4,7 @@ #include "components/ble/AlertNotificationService.h" #include "displayapp/screens/Symbols.h" #include +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; extern lv_font_t jetbrains_mono_extrabold_compressed; @@ -257,7 +258,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_set_style_local_border_width(container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); subject_container = lv_cont_create(container, nullptr); - lv_obj_set_style_local_bg_color(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_bg_color(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_style_local_pad_all(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 10); lv_obj_set_style_local_pad_inner(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); lv_obj_set_style_local_border_width(subject_container, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 0); @@ -272,7 +273,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_align(alert_count, NULL, LV_ALIGN_IN_TOP_RIGHT, 0, 16); lv_obj_t* alert_type = lv_label_create(container, nullptr); - lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); + lv_obj_set_style_local_text_color(alert_type, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::orange); if (title == nullptr) { lv_label_set_text_static(alert_type, "Notification"); } else { @@ -314,7 +315,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_align(bt_accept, NULL, LV_ALIGN_IN_BOTTOM_LEFT, 0, 0); label_accept = lv_label_create(bt_accept, nullptr); lv_label_set_text_static(label_accept, Symbols::phone); - lv_obj_set_style_local_bg_color(bt_accept, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_bg_color(bt_accept, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); bt_reject = lv_btn_create(container, nullptr); bt_reject->user_data = this; @@ -332,7 +333,7 @@ Notifications::NotificationItem::NotificationItem(const char* title, lv_obj_align(bt_mute, NULL, LV_ALIGN_IN_BOTTOM_RIGHT, 0, 0); label_mute = lv_label_create(bt_mute, nullptr); lv_label_set_text_static(label_mute, Symbols::volumMute); - lv_obj_set_style_local_bg_color(bt_mute, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_bg_color(bt_mute, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); } break; } } diff --git a/src/displayapp/screens/PassKey.cpp b/src/displayapp/screens/PassKey.cpp index 4057a7eb..5d255e44 100644 --- a/src/displayapp/screens/PassKey.cpp +++ b/src/displayapp/screens/PassKey.cpp @@ -5,7 +5,7 @@ using namespace Pinetime::Applications::Screens; PassKey::PassKey(Pinetime::Applications::DisplayApp* app, uint32_t key) : Screen(app) { passkeyLabel = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(passkeyLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFFFF00)); + lv_obj_set_style_local_text_color(passkeyLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_YELLOW); lv_obj_set_style_local_text_font(passkeyLabel, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); lv_label_set_text_fmt(passkeyLabel, "%06u", key); lv_obj_align(passkeyLabel, nullptr, LV_ALIGN_CENTER, 0, -20); diff --git a/src/displayapp/screens/Steps.cpp b/src/displayapp/screens/Steps.cpp index 0dcdcf59..10ccf1aa 100644 --- a/src/displayapp/screens/Steps.cpp +++ b/src/displayapp/screens/Steps.cpp @@ -20,7 +20,7 @@ Steps::Steps(Pinetime::Applications::DisplayApp* app, lv_obj_set_style_local_bg_opa(stepsArc, LV_ARC_PART_BG, LV_STATE_DEFAULT, LV_OPA_0); lv_obj_set_style_local_border_width(stepsArc, LV_ARC_PART_BG, LV_STATE_DEFAULT, 2); lv_obj_set_style_local_radius(stepsArc, LV_ARC_PART_BG, LV_STATE_DEFAULT, 0); - lv_obj_set_style_local_line_color(stepsArc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, lv_color_hex(0x0000FF)); + lv_obj_set_style_local_line_color(stepsArc, LV_ARC_PART_INDIC, LV_STATE_DEFAULT, LV_COLOR_BLUE); lv_arc_set_end_angle(stepsArc, 200); lv_obj_set_size(stepsArc, 240, 240); lv_arc_set_range(stepsArc, 0, 500); @@ -32,7 +32,7 @@ Steps::Steps(Pinetime::Applications::DisplayApp* app, lv_arc_set_value(stepsArc, int16_t(500 * stepsCount / settingsController.GetStepsGoal())); lSteps = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FF00)); + lv_obj_set_style_local_text_color(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_LIME); lv_obj_set_style_local_text_font(lSteps, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_42); lv_label_set_text_fmt(lSteps, "%li", stepsCount); lv_obj_align(lSteps, nullptr, LV_ALIGN_CENTER, 0, -40); diff --git a/src/displayapp/screens/StopWatch.cpp b/src/displayapp/screens/StopWatch.cpp index e705fcb0..c68cd854 100644 --- a/src/displayapp/screens/StopWatch.cpp +++ b/src/displayapp/screens/StopWatch.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/StopWatch.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -30,13 +31,13 @@ StopWatch::StopWatch(DisplayApp* app, System::SystemTask& systemTask) : Screen(a time = lv_label_create(lv_scr_act(), nullptr); lv_obj_set_style_local_text_font(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_76); - lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); lv_label_set_text_static(time, "00:00"); lv_obj_align(time, lv_scr_act(), LV_ALIGN_CENTER, 0, -45); msecTime = lv_label_create(lv_scr_act(), nullptr); // lv_obj_set_style_local_text_font(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &jetbrains_mono_bold_20); - lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); lv_label_set_text_static(msecTime, "00"); lv_obj_align(msecTime, lv_scr_act(), LV_ALIGN_CENTER, 0, 3); @@ -75,8 +76,8 @@ StopWatch::~StopWatch() { void StopWatch::Reset() { currentState = States::Init; oldTimeElapsed = 0; - lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); - lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); + lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); lv_label_set_text_static(time, "00:00"); lv_label_set_text_static(msecTime, "00"); @@ -90,8 +91,8 @@ void StopWatch::Reset() { void StopWatch::Start() { lv_obj_set_state(btnStopLap, LV_STATE_DEFAULT); lv_obj_set_state(txtStopLap, LV_STATE_DEFAULT); - lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); - lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_text_color(time, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); + lv_obj_set_style_local_text_color(msecTime, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::highlight); lv_label_set_text_static(txtPlayPause, Symbols::pause); lv_label_set_text_static(txtStopLap, Symbols::lapsFlag); startTime = xTaskGetTickCount(); diff --git a/src/displayapp/screens/Styles.cpp b/src/displayapp/screens/Styles.cpp index bcfd584f..cebdc70c 100644 --- a/src/displayapp/screens/Styles.cpp +++ b/src/displayapp/screens/Styles.cpp @@ -1,8 +1,9 @@ #include "Styles.h" +#include "displayapp/InfiniTimeTheme.h" void Pinetime::Applications::Screens::SetRadioButtonStyle(lv_obj_t* checkbox) { lv_obj_set_style_local_radius(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); lv_obj_set_style_local_border_width(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, 9); - lv_obj_set_style_local_border_color(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_border_color(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, Colors::highlight); lv_obj_set_style_local_bg_color(checkbox, LV_CHECKBOX_PART_BULLET, LV_STATE_CHECKED, LV_COLOR_WHITE); } diff --git a/src/displayapp/screens/SystemInfo.cpp b/src/displayapp/screens/SystemInfo.cpp index 54059796..01c35195 100644 --- a/src/displayapp/screens/SystemInfo.cpp +++ b/src/displayapp/screens/SystemInfo.cpp @@ -12,6 +12,7 @@ #include "components/datetime/DateTimeController.h" #include "components/motion/MotionController.h" #include "drivers/Watchdog.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -218,7 +219,7 @@ std::unique_ptr SystemInfo::CreateScreen4() { lv_table_set_col_cnt(infoTask, 4); lv_table_set_row_cnt(infoTask, maxTaskCount + 1); lv_obj_set_style_local_pad_all(infoTask, LV_TABLE_PART_CELL1, LV_STATE_DEFAULT, 0); - lv_obj_set_style_local_border_color(infoTask, LV_TABLE_PART_CELL1, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_border_color(infoTask, LV_TABLE_PART_CELL1, LV_STATE_DEFAULT, Colors::lightGray); lv_table_set_cell_value(infoTask, 0, 0, "#"); lv_table_set_col_width(infoTask, 0, 30); diff --git a/src/displayapp/screens/Tile.cpp b/src/displayapp/screens/Tile.cpp index bf0780f1..a60076ed 100644 --- a/src/displayapp/screens/Tile.cpp +++ b/src/displayapp/screens/Tile.cpp @@ -2,6 +2,7 @@ #include "displayapp/DisplayApp.h" #include "displayapp/screens/BatteryIcon.h" #include "components/ble/BleController.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -71,7 +72,7 @@ Tile::Tile(uint8_t screenID, lv_obj_set_style_local_bg_opa(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DEFAULT, LV_OPA_50); lv_obj_set_style_local_bg_color(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DEFAULT, LV_COLOR_AQUA); lv_obj_set_style_local_bg_opa(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DISABLED, LV_OPA_50); - lv_obj_set_style_local_bg_color(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DISABLED, lv_color_hex(0x111111)); + lv_obj_set_style_local_bg_color(btnm1, LV_BTNMATRIX_PART_BTN, LV_STATE_DISABLED, Colors::bgDark); lv_obj_set_style_local_pad_all(btnm1, LV_BTNMATRIX_PART_BG, LV_STATE_DEFAULT, 0); lv_obj_set_style_local_pad_inner(btnm1, LV_BTNMATRIX_PART_BG, LV_STATE_DEFAULT, 10); diff --git a/src/displayapp/screens/Timer.cpp b/src/displayapp/screens/Timer.cpp index a25be1c4..136d6b52 100644 --- a/src/displayapp/screens/Timer.cpp +++ b/src/displayapp/screens/Timer.cpp @@ -1,6 +1,7 @@ #include "displayapp/screens/Timer.h" #include "displayapp/screens/Screen.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" #include using namespace Pinetime::Applications::Screens; @@ -54,7 +55,7 @@ Timer::Timer(DisplayApp* app, Controllers::TimerController& timerController) : S btnPlayPause = lv_btn_create(btnObjectMask, nullptr); btnPlayPause->user_data = this; lv_obj_set_style_local_radius(btnPlayPause, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_RADIUS_CIRCLE); - lv_obj_set_style_local_bg_color(btnPlayPause, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_obj_set_style_local_bg_color(btnPlayPause, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_event_cb(btnPlayPause, btnEventHandler); lv_obj_set_size(btnPlayPause, LV_HOR_RES, 50); diff --git a/src/displayapp/screens/WatchFaceAnalog.cpp b/src/displayapp/screens/WatchFaceAnalog.cpp index 251a560f..5ebb3304 100644 --- a/src/displayapp/screens/WatchFaceAnalog.cpp +++ b/src/displayapp/screens/WatchFaceAnalog.cpp @@ -6,6 +6,7 @@ #include "displayapp/screens/Symbols.h" #include "displayapp/screens/NotificationIcon.h" #include "components/settings/Settings.h" +#include "displayapp/InfiniTimeTheme.h" LV_IMG_DECLARE(bg_clock); @@ -73,14 +74,14 @@ WatchFaceAnalog::WatchFaceAnalog(Pinetime::Applications::DisplayApp* app, lv_obj_align(plugIcon, nullptr, LV_ALIGN_IN_TOP_RIGHT, 0, 0); notificationIcon = lv_label_create(lv_scr_act(), NULL); - lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FF00)); + lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_LIME); lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(false)); lv_obj_align(notificationIcon, NULL, LV_ALIGN_IN_TOP_LEFT, 0, 0); // Date - Day / Week day label_date_day = lv_label_create(lv_scr_act(), NULL); - lv_obj_set_style_local_text_color(label_date_day, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xff, 0xb0, 0x0)); + lv_obj_set_style_local_text_color(label_date_day, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, Colors::orange); lv_label_set_text_fmt(label_date_day, "%s\n%02i", dateTimeController.DayOfWeekShortToString(), dateTimeController.Day()); lv_label_set_align(label_date_day, LV_LABEL_ALIGN_CENTER); lv_obj_align(label_date_day, NULL, LV_ALIGN_CENTER, 50, 0); diff --git a/src/displayapp/screens/WatchFaceDigital.cpp b/src/displayapp/screens/WatchFaceDigital.cpp index 7e876d8f..705272f7 100644 --- a/src/displayapp/screens/WatchFaceDigital.cpp +++ b/src/displayapp/screens/WatchFaceDigital.cpp @@ -34,7 +34,7 @@ WatchFaceDigital::WatchFaceDigital(DisplayApp* app, statusIcons.Create(); notificationIcon = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x00FF00)); + lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_LIME); lv_label_set_text_static(notificationIcon, NotificationIcon::GetIcon(false)); lv_obj_align(notificationIcon, nullptr, LV_ALIGN_IN_TOP_LEFT, 0, 0); diff --git a/src/displayapp/screens/WatchFacePineTimeStyle.cpp b/src/displayapp/screens/WatchFacePineTimeStyle.cpp index 63b421da..ed09f5dd 100644 --- a/src/displayapp/screens/WatchFacePineTimeStyle.cpp +++ b/src/displayapp/screens/WatchFacePineTimeStyle.cpp @@ -104,11 +104,11 @@ WatchFacePineTimeStyle::WatchFacePineTimeStyle(DisplayApp* app, lv_obj_align(plugIcon, sidebar, LV_ALIGN_IN_TOP_MID, 0, 2); bleIcon = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000)); + lv_obj_set_style_local_text_color(bleIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); lv_label_set_text_static(bleIcon, ""); notificationIcon = lv_label_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x000000)); + lv_obj_set_style_local_text_color(notificationIcon, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_BLACK); lv_label_set_text_static(notificationIcon, ""); // Calendar icon diff --git a/src/displayapp/screens/settings/QuickSettings.cpp b/src/displayapp/screens/settings/QuickSettings.cpp index f7560066..fba5e876 100644 --- a/src/displayapp/screens/settings/QuickSettings.cpp +++ b/src/displayapp/screens/settings/QuickSettings.cpp @@ -2,7 +2,8 @@ #include "displayapp/DisplayApp.h" #include "displayapp/screens/Symbols.h" #include "displayapp/screens/BatteryIcon.h" -#include +#include "components/ble/BleController.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -50,7 +51,7 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, lv_style_init(&btn_style); lv_style_set_radius(&btn_style, LV_STATE_DEFAULT, buttonHeight / 4); - lv_style_set_bg_color(&btn_style, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); + lv_style_set_bg_color(&btn_style, LV_STATE_DEFAULT, Colors::bgAlt); btn1 = lv_btn_create(lv_scr_act(), nullptr); btn1->user_data = this; diff --git a/src/displayapp/screens/settings/SettingSetTime.cpp b/src/displayapp/screens/settings/SettingSetTime.cpp index 7581f184..47b786e4 100644 --- a/src/displayapp/screens/settings/SettingSetTime.cpp +++ b/src/displayapp/screens/settings/SettingSetTime.cpp @@ -5,6 +5,7 @@ #include "displayapp/DisplayApp.h" #include "displayapp/screens/Symbols.h" #include "components/settings/Settings.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -67,8 +68,7 @@ SettingSetTime::SettingSetTime(Pinetime::Applications::DisplayApp* app, lv_obj_set_size(btnSetTime, 120, 50); lv_obj_align(btnSetTime, lv_scr_act(), LV_ALIGN_IN_BOTTOM_MID, 0, 0); lv_obj_set_style_local_value_str(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, "Set"); - lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0x38, 0x38, 0x38)); - lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_MAKE(0x18, 0x18, 0x18)); + lv_obj_set_style_local_bg_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_style_local_value_color(btnSetTime, LV_BTN_PART_MAIN, LV_STATE_DISABLED, LV_COLOR_GRAY); lv_obj_set_event_cb(btnSetTime, SetTimeEventHandler); diff --git a/src/displayapp/screens/settings/SettingShakeThreshold.cpp b/src/displayapp/screens/settings/SettingShakeThreshold.cpp index aac1eaff..de46f7de 100644 --- a/src/displayapp/screens/settings/SettingShakeThreshold.cpp +++ b/src/displayapp/screens/settings/SettingShakeThreshold.cpp @@ -3,6 +3,7 @@ #include "displayapp/DisplayApp.h" #include "displayapp/screens/Screen.h" #include "displayapp/screens/Symbols.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Screens; @@ -123,8 +124,7 @@ void SettingShakeThreshold::UpdateSelected(lv_obj_t* object, lv_event_t event) { vCalTime = xTaskGetTickCount(); lv_label_set_text_static(calLabel, "Ready!"); lv_obj_set_click(positionArc, false); - lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); - lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, LV_COLOR_MAKE(0x0, 0xb0, 0x0)); + lv_obj_set_style_local_bg_color(calButton, LV_BTN_PART_MAIN, LV_STATE_CHECKED, Colors::highlight); } else if (lv_btn_get_state(calButton) == LV_BTN_STATE_RELEASED) { calibrating = 0; lv_obj_set_click(positionArc, true); diff --git a/src/displayapp/screens/settings/SettingSteps.cpp b/src/displayapp/screens/settings/SettingSteps.cpp index e92600c2..af5bd6e9 100644 --- a/src/displayapp/screens/settings/SettingSteps.cpp +++ b/src/displayapp/screens/settings/SettingSteps.cpp @@ -17,7 +17,6 @@ SettingSteps::SettingSteps(Pinetime::Applications::DisplayApp* app, Pinetime::Co lv_obj_t* container1 = lv_cont_create(lv_scr_act(), nullptr); - // lv_obj_set_style_local_bg_color(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); lv_obj_set_style_local_bg_opa(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP); lv_obj_set_style_local_pad_all(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 10); lv_obj_set_style_local_pad_inner(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); diff --git a/src/displayapp/screens/settings/SettingWatchFace.cpp b/src/displayapp/screens/settings/SettingWatchFace.cpp index 3cb2a364..be595a74 100644 --- a/src/displayapp/screens/settings/SettingWatchFace.cpp +++ b/src/displayapp/screens/settings/SettingWatchFace.cpp @@ -21,7 +21,6 @@ SettingWatchFace::SettingWatchFace(Pinetime::Applications::DisplayApp* app, Pine lv_obj_t* container1 = lv_cont_create(lv_scr_act(), nullptr); - // lv_obj_set_style_local_bg_color(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); lv_obj_set_style_local_bg_opa(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, LV_OPA_TRANSP); lv_obj_set_style_local_pad_all(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 10); lv_obj_set_style_local_pad_inner(container1, LV_CONT_PART_MAIN, LV_STATE_DEFAULT, 5); diff --git a/src/displayapp/widgets/Counter.cpp b/src/displayapp/widgets/Counter.cpp index d8a1626e..3c50a105 100644 --- a/src/displayapp/widgets/Counter.cpp +++ b/src/displayapp/widgets/Counter.cpp @@ -1,5 +1,6 @@ #include "displayapp/widgets/Counter.h" #include "components/datetime/DateTimeController.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Widgets; @@ -108,10 +109,8 @@ void Counter::SetValueChangedEventCallback(void* userData, void (*handler)(void* } void Counter::Create() { - constexpr lv_color_t bgColor = LV_COLOR_MAKE(0x38, 0x38, 0x38); - counterContainer = lv_obj_create(lv_scr_act(), nullptr); - lv_obj_set_style_local_bg_color(counterContainer, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); + lv_obj_set_style_local_bg_color(counterContainer, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); number = lv_label_create(counterContainer, nullptr); lv_obj_set_style_local_text_font(number, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &font); @@ -133,7 +132,7 @@ void Counter::Create() { UpdateLabel(); upBtn = lv_btn_create(counterContainer, nullptr); - lv_obj_set_style_local_bg_color(upBtn, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); + lv_obj_set_style_local_bg_color(upBtn, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_size(upBtn, width, btnHeight); lv_obj_align(upBtn, nullptr, LV_ALIGN_IN_TOP_MID, 0, 0); upBtn->user_data = this; @@ -145,7 +144,7 @@ void Counter::Create() { lv_obj_align(upLabel, nullptr, LV_ALIGN_CENTER, 0, 0); downBtn = lv_btn_create(counterContainer, nullptr); - lv_obj_set_style_local_bg_color(downBtn, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, bgColor); + lv_obj_set_style_local_bg_color(downBtn, LV_BTN_PART_MAIN, LV_STATE_DEFAULT, Colors::bgAlt); lv_obj_set_size(downBtn, width, btnHeight); lv_obj_align(downBtn, nullptr, LV_ALIGN_IN_BOTTOM_MID, 0, 0); downBtn->user_data = this; diff --git a/src/displayapp/widgets/PageIndicator.cpp b/src/displayapp/widgets/PageIndicator.cpp index 06058beb..84d03e7e 100644 --- a/src/displayapp/widgets/PageIndicator.cpp +++ b/src/displayapp/widgets/PageIndicator.cpp @@ -1,4 +1,5 @@ #include "displayapp/widgets/PageIndicator.h" +#include "displayapp/InfiniTimeTheme.h" using namespace Pinetime::Applications::Widgets; @@ -13,7 +14,7 @@ void PageIndicator::Create() { pageIndicatorBase = lv_line_create(lv_scr_act(), nullptr); lv_obj_set_style_local_line_width(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0x111111)); + lv_obj_set_style_local_line_color(pageIndicatorBase, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, Colors::bgDark); lv_line_set_points(pageIndicatorBase, pageIndicatorBasePoints, 2); const int16_t indicatorSize = LV_VER_RES / nScreens; @@ -26,6 +27,6 @@ void PageIndicator::Create() { pageIndicator = lv_line_create(lv_scr_act(), nullptr); lv_obj_set_style_local_line_width(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, 3); - lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_MAKE(0xb0, 0xb0, 0xb0)); + lv_obj_set_style_local_line_color(pageIndicator, LV_LINE_PART_MAIN, LV_STATE_DEFAULT, Colors::lightGray); lv_line_set_points(pageIndicator, pageIndicatorPoints, 2); } diff --git a/src/displayapp/widgets/StatusIcons.cpp b/src/displayapp/widgets/StatusIcons.cpp index c1004b77..607f3745 100644 --- a/src/displayapp/widgets/StatusIcons.cpp +++ b/src/displayapp/widgets/StatusIcons.cpp @@ -19,7 +19,7 @@ void StatusIcons::Create() { lv_label_set_text_static(bleIcon, Screens::Symbols::bluetooth); batteryPlug = lv_label_create(container, nullptr); - lv_obj_set_style_local_text_color(batteryPlug, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, lv_color_hex(0xFF0000)); + lv_obj_set_style_local_text_color(batteryPlug, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, LV_COLOR_RED); lv_label_set_text_static(batteryPlug, Screens::Symbols::plug); batteryIcon.Create(container); -- cgit v1.2.3 From ef6ed5d26e9c75017d51fdf889dfe991e63cca4e Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Tue, 16 Aug 2022 08:29:26 +0300 Subject: Improve checkbox visibility (#1266) --- src/displayapp/InfiniTimeTheme.cpp | 2 +- src/displayapp/fonts/fonts.json | 2 +- src/libs/lv_conf.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/InfiniTimeTheme.cpp b/src/displayapp/InfiniTimeTheme.cpp index 89887573..4290d87f 100644 --- a/src/displayapp/InfiniTimeTheme.cpp +++ b/src/displayapp/InfiniTimeTheme.cpp @@ -216,8 +216,8 @@ static void basic_init() { lv_style_set_transition_prop_6(&style_cb_bg, LV_STATE_DEFAULT, LV_STYLE_OUTLINE_OPA); lv_style_reset(&style_cb_bullet); - lv_style_set_outline_opa(&style_cb_bullet, LV_STATE_FOCUSED, LV_OPA_TRANSP); lv_style_set_radius(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(4)); + lv_style_set_pattern_image(&style_cb_bullet, LV_STATE_CHECKED, LV_SYMBOL_OK); lv_style_set_pattern_recolor(&style_cb_bullet, LV_STATE_CHECKED, LV_COLOR_WHITE); lv_style_set_pad_left(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); lv_style_set_pad_right(&style_cb_bullet, LV_STATE_DEFAULT, LV_DPX(8)); diff --git a/src/displayapp/fonts/fonts.json b/src/displayapp/fonts/fonts.json index 9f228fb6..7c429625 100644 --- a/src/displayapp/fonts/fonts.json +++ b/src/displayapp/fonts/fonts.json @@ -7,7 +7,7 @@ }, { "file": "FontAwesome5-Solid+Brands+Regular.woff", - "range": "0xf294, 0xf242, 0xf54b, 0xf21e, 0xf1e6, 0xf017, 0xf129, 0xf03a, 0xf185, 0xf560, 0xf001, 0xf3fd, 0xf1fc, 0xf45d, 0xf59f, 0xf5a0, 0xf027, 0xf028, 0xf6a9, 0xf04b, 0xf04c, 0xf048, 0xf051, 0xf095, 0xf3dd, 0xf04d, 0xf2f2, 0xf024, 0xf252, 0xf569, 0xf201, 0xf06e, 0xf015" + "range": "0xf294, 0xf242, 0xf54b, 0xf21e, 0xf1e6, 0xf017, 0xf129, 0xf03a, 0xf185, 0xf560, 0xf001, 0xf3fd, 0xf1fc, 0xf45d, 0xf59f, 0xf5a0, 0xf027, 0xf028, 0xf6a9, 0xf04b, 0xf04c, 0xf048, 0xf051, 0xf095, 0xf3dd, 0xf04d, 0xf2f2, 0xf024, 0xf252, 0xf569, 0xf201, 0xf06e, 0xf015, 0xf00c" } ], "bpp": 1, diff --git a/src/libs/lv_conf.h b/src/libs/lv_conf.h index b3ff8f57..00f6a1df 100644 --- a/src/libs/lv_conf.h +++ b/src/libs/lv_conf.h @@ -161,7 +161,7 @@ typedef void* lv_anim_user_data_t; #define LV_USE_OUTLINE 0 /*1: enable pattern drawing on rectangles*/ -#define LV_USE_PATTERN 0 +#define LV_USE_PATTERN 1 /*1: enable value string drawing on rectangles*/ #define LV_USE_VALUE_STR 1 -- cgit v1.2.3 From c2b6a8de3e15fa66d48a373b3504fcebf12d905b Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sun, 21 Aug 2022 14:50:09 +0300 Subject: Fix markdown format with autoformatter (#1284) --- .devcontainer/README.md | 25 ++-- README.md | 75 ++++++------ bootloader/README.md | 51 +++++---- bootloader/ota-dfu-python/README.md | 47 ++++---- doc/BLEFS.md | 13 ++- doc/MemoryAnalysis.md | 91 +++++++++------ doc/MotionService.md | 12 +- doc/NavigationService.md | 191 ++++++++++++++++--------------- doc/PinetimeStubWithNrf52DK.md | 44 +++---- doc/SPI-LCD-driver.md | 14 ++- doc/SWD.md | 5 +- doc/ble.md | 28 +++-- doc/branches.md | 8 +- doc/buildAndProgram.md | 82 ++++++++----- doc/buildWithDocker.md | 32 +++--- doc/buildWithVScode.md | 25 ++-- doc/code/Apps.md | 9 ++ doc/code/Intro.md | 6 + doc/filesInReleaseNotes.md | 46 ++++---- doc/gdb.md | 2 +- doc/gettingStarted/about-software.md | 10 +- doc/gettingStarted/gettingStarted-1.0.md | 32 +++--- doc/gettingStarted/ota-nrfconnect.md | 1 + doc/gettingStarted/updating-software.md | 12 +- doc/jlink.md | 10 +- doc/openOCD.md | 19 ++- doc/ui_guidelines.md | 4 +- doc/versioning.md | 7 +- docker/README.md | 2 +- src/displayapp/fonts/README.md | 32 +++--- 30 files changed, 523 insertions(+), 412 deletions(-) (limited to 'src/displayapp') diff --git a/.devcontainer/README.md b/.devcontainer/README.md index 1932a9d4..b243a64a 100644 --- a/.devcontainer/README.md +++ b/.devcontainer/README.md @@ -1,7 +1,6 @@ # VS Code Dev Container -This is a docker-based interactive development environment using VS Code and Docker Dev Containers removing the need to install any tools locally* - +This is a docker-based interactive development environment using VS Code and Docker Dev Containers removing the need to install any tools locally\* ## Requirements @@ -16,45 +15,41 @@ This is a docker-based interactive development environment using VS Code and Doc 1. Clone InfiniTime and update submodules 2. Launch VS Code -3. Open InfiniTime directory, -4. Allow VS Code to open folder with devcontainer. +3. Open InfiniTime directory, +4. Allow VS Code to open folder with devcontainer. -After this the environment will be built if you do not currently have a container setup, it will install all the necessary tools and extra VSCode extensions. +After this the environment will be built if you do not currently have a container setup, it will install all the necessary tools and extra VSCode extensions. In order to build InfiniTime we need to run the initial submodule init and CMake commands. -#### Manually +#### Manually - You can use the VS Code terminal to run the CMake commands as outlined in the [build instructions](blob/develop/doc/buildAndProgram.md) +You can use the VS Code terminal to run the CMake commands as outlined in the [build instructions](blob/develop/doc/buildAndProgram.md) #### Script The dev environment comes with some scripts to make this easier, They are located in /opt/. -There are also VS Code tasks provided should you desire to use those. +There are also VS Code tasks provided should you desire to use those. The task "update submodules" will update the git submodules - - ### Build You can use the build.sh script located in /opt/ CMake is also configured and controls for the CMake plugin are available in VS Code - - ### Debugging Docker on windows does not support passing USB devices to the underlying WSL2 subsystem, To get around this we use OpenOCD in server mode running on the host. `openocd -f -f ` -This will launch OpenOCD in server mode and attach it to the MCU. +This will launch OpenOCD in server mode and attach it to the MCU. The default launch.json file expects OpenOCD to be listening on port 3333, edit if needed - ## Current Issues -Currently WSL2 Has some real performance issues with IO on a windows host. Accessing files on the virtualized filesystem is much faster. Using VS Codes "clone in container" feature of the Remote - Containers will get around this. After the container is built you will need to update the submodules and follow the build instructions like normal \ No newline at end of file + +Currently WSL2 Has some real performance issues with IO on a windows host. Accessing files on the virtualized filesystem is much faster. Using VS Codes "clone in container" feature of the Remote - Containers will get around this. After the container is built you will need to update the submodules and follow the build instructions like normal diff --git a/README.md b/README.md index e886bb09..a3d2229b 100644 --- a/README.md +++ b/README.md @@ -8,64 +8,65 @@ Fast open-source firmware for the [PineTime smartwatch](https://www.pine64.org/p ## New to InfiniTime? - - [Getting started with InfiniTime](doc/gettingStarted/gettingStarted-1.0.md) - - [Updating the software](doc/gettingStarted/updating-software.md) - - [About the firmware and bootloader](doc/gettingStarted/about-software.md) +- [Getting started with InfiniTime](doc/gettingStarted/gettingStarted-1.0.md) +- [Updating the software](doc/gettingStarted/updating-software.md) +- [About the firmware and bootloader](doc/gettingStarted/about-software.md) ### Companion apps - - [Gadgetbridge](https://gadgetbridge.org/) (Android) - - [AmazFish](https://openrepos.net/content/piggz/amazfish/) (SailfishOS) - - [Siglo](https://github.com/alexr4535/siglo) (Linux) - - [InfiniLink](https://github.com/InfiniTimeOrg/InfiniLink) (iOS) **[Looking for a new maintainer]** - - [ITD](https://gitea.arsenm.dev/Arsen6331/itd) (Linux) +- [Gadgetbridge](https://gadgetbridge.org/) (Android) +- [AmazFish](https://openrepos.net/content/piggz/amazfish/) (SailfishOS) +- [Siglo](https://github.com/alexr4535/siglo) (Linux) +- [InfiniLink](https://github.com/InfiniTimeOrg/InfiniLink) (iOS) **[Looking for a new maintainer]** +- [ITD](https://gitea.arsenm.dev/Arsen6331/itd) (Linux) ## Development - - [InfiniTime Vision](doc/InfiniTimeVision.md) - - [Rough structure of the code](doc/code/Intro.md) - - [How to implement an application](doc/code/Apps.md) - - [Generate the fonts and symbols](src/displayapp/fonts/README.md) - - [Tips on designing an app UI](doc/ui_guidelines.md) - - [Bootloader, OTA and DFU](bootloader/README.md) - - [Versioning](doc/versioning.md) - - [Project branches](doc/branches.md) - - [Files included in the release notes](doc/filesInReleaseNotes.md) +- [InfiniTime Vision](doc/InfiniTimeVision.md) +- [Rough structure of the code](doc/code/Intro.md) +- [How to implement an application](doc/code/Apps.md) +- [Generate the fonts and symbols](src/displayapp/fonts/README.md) +- [Tips on designing an app UI](doc/ui_guidelines.md) +- [Bootloader, OTA and DFU](bootloader/README.md) +- [Versioning](doc/versioning.md) +- [Project branches](doc/branches.md) +- [Files included in the release notes](doc/filesInReleaseNotes.md) ### Contributing - - [How to contribute?](doc/contribute.md) - - [Coding conventions](doc/coding-convention.md) +- [How to contribute?](doc/contribute.md) +- [Coding conventions](doc/coding-convention.md) ### Build, flash and debug - - [InfiniTime simulator](https://github.com/InfiniTimeOrg/InfiniSim) - - [Build the project](doc/buildAndProgram.md) - - [Build the project with Docker](doc/buildWithDocker.md) - - [Build the project with VSCode](doc/buildWithVScode.md) - - [Flash the firmware using OpenOCD and STLinkV2](doc/openOCD.md) - - [Flash the firmware using SWD interface](doc/SWD.md) - - [Flash the firmware using JLink](doc/jlink.md) - - [Flash the firmware using GDB](doc/gdb.md) - - [Stub using NRF52-DK](doc/PinetimeStubWithNrf52DK.md) +- [InfiniTime simulator](https://github.com/InfiniTimeOrg/InfiniSim) +- [Build the project](doc/buildAndProgram.md) +- [Build the project with Docker](doc/buildWithDocker.md) +- [Build the project with VSCode](doc/buildWithVScode.md) +- [Flash the firmware using OpenOCD and STLinkV2](doc/openOCD.md) +- [Flash the firmware using SWD interface](doc/SWD.md) +- [Flash the firmware using JLink](doc/jlink.md) +- [Flash the firmware using GDB](doc/gdb.md) +- [Stub using NRF52-DK](doc/PinetimeStubWithNrf52DK.md) ### API - - [BLE implementation and API](doc/ble.md) +- [BLE implementation and API](doc/ble.md) ### Architecture and technical topics - - [Memory analysis](doc/MemoryAnalysis.md) +- [Memory analysis](doc/MemoryAnalysis.md) ## Licenses This project is released under the GNU General Public License version 3 or, at your option, any later version. It integrates the following projects: - - RTOS : **[FreeRTOS](https://freertos.org)** under the MIT license - - UI : **[LittleVGL/LVGL](https://lvgl.io/)** under the MIT license - - BLE stack : **[NimBLE](https://github.com/apache/mynewt-nimble)** under the Apache 2.0 license - - Font : **[Jetbrains Mono](https://www.jetbrains.com/fr-fr/lp/mono/)** under the Apache 2.0 license + +- RTOS : **[FreeRTOS](https://freertos.org)** under the MIT license +- UI : **[LittleVGL/LVGL](https://lvgl.io/)** under the MIT license +- BLE stack : **[NimBLE](https://github.com/apache/mynewt-nimble)** under the Apache 2.0 license +- Font : **[Jetbrains Mono](https://www.jetbrains.com/fr-fr/lp/mono/)** under the Apache 2.0 license ## Credits @@ -73,6 +74,6 @@ I’m not working alone on this project. First, many people create PR for this p Here are some people I would like to highlight: - - [Atc1441](https://github.com/atc1441/) : He works on an Arduino based firmware for the Pinetime and many other smartwatches based on similar hardware. He was of great help when I was implementing support for the BMA421 motion sensor and I²C driver. - - [Koen](https://github.com/bosmoment) : He’s working on a firmware based on RiotOS. He integrated similar libs as me : NimBLE, LittleVGL,… His help was invaluable too! - - [Lup Yuen Lee](https://github.com/lupyuen) : He is everywhere: he works on a Rust firmware, builds a MCUBoot based bootloader for the Pinetime, designs a Flutter based companion app for smartphones and writes a lot of articles about the Pinetime! +- [Atc1441](https://github.com/atc1441/) : He works on an Arduino based firmware for the Pinetime and many other smartwatches based on similar hardware. He was of great help when I was implementing support for the BMA421 motion sensor and I²C driver. +- [Koen](https://github.com/bosmoment) : He’s working on a firmware based on RiotOS. He integrated similar libs as me : NimBLE, LittleVGL,… His help was invaluable too! +- [Lup Yuen Lee](https://github.com/lupyuen) : He is everywhere: he works on a Rust firmware, builds a MCUBoot based bootloader for the Pinetime, designs a Flutter based companion app for smartphones and writes a lot of articles about the Pinetime! diff --git a/bootloader/README.md b/bootloader/README.md index 2cb6b8bf..51ddfa6b 100644 --- a/bootloader/README.md +++ b/bootloader/README.md @@ -1,4 +1,5 @@ # About this bootloader + The [bootloader](https://github.com/lupyuen/pinetime-rust-mynewt/tree/master/libs/pinetime_boot/src) is mostly developed by [Lup Yuen](https://github.com/lupyuen). It is based on [MCUBoot](https://www.mcuboot.com) and [Mynewt](https://mynewt.apache.org/). The goal of this project is to provide a common bootloader for multiple (all?) Pinetime projects. It allows to upgrade the current bootloader and even replace the current application by another one that supports the same bootloader. @@ -12,6 +13,7 @@ When it is run, this bootloader looks in the SPI flash memory if a new firmware As this bootloader does not provide any OTA capability, it is not able to actually download a new version of the application. Providing OTA functionality is thus the responsibility of the application firmware. # About MCUBoot + MCUBoot is run at boot time. In normal operation, it just jumps to the reset handler of the application firmware to run it. Once the application firmware is running, MCUBoot does not run at all. ![MCUBoot boot sequence diagram](../doc/bootloader/boot.png "MCUBoot boot sequence diagram") @@ -19,8 +21,9 @@ MCUBoot is run at boot time. In normal operation, it just jumps to the reset han But MCUBoot does much more than that : it can upgrade the firmware that is currently running by a new one, and it is also able to revert to the previous version of the firmware in case the new one does not run properly. To do this, it uses 2 memory 'slots' : - - **The primary slot** : it contains the current firmware, the one that will be executed by MCUBoot - - **The secondary slot** : it is used to store the upgraded version of the firmware, when available. + +- **The primary slot** : it contains the current firmware, the one that will be executed by MCUBoot +- **The secondary slot** : it is used to store the upgraded version of the firmware, when available. At boot time, MCUBoot detects that a new version of the firmware is available in the secondary slot and swaps them : the current version of the firmware is copied from the primary to the secondary slot and vice-versa. @@ -35,6 +38,7 @@ The next time MCUBoot will be run (after a MCU reset), MCUBoot will check if the Note than MCUBoot **does not** provide any means to download and store the new version of the firmware into the secondary slot. This must be implemented by the application firmware. # Degraded cases + This chapter describes degraded cases that are handled by our bootloader and those that are not supported. Case | Current bootloader | Solution @@ -50,72 +54,73 @@ New firmware does not run properly but sets the valid bit and refreshes the watc # Using the bootloader ## Bootloader graphic + The bootloader loads a graphic (Pinetime logo) from the SPI Flash memory. If this graphic is not loaded in the memory, the LCD will display garbage (the content of the SPI flash memory). The SPI Flash memory is not accessible via the SWD debugger. Use the firmware 'pinetime-graphics' to load the graphic into memory. All you have to do is build it and program it at address 0x00 : - - Build: -``` -$ make pinetime-graphics +- Build: + +```sh +make pinetime-graphics ``` - - Program (using OpenOCD for example) : +- Program (using OpenOCD for example) : + ``` program pinetime-graphics.bin 0 ``` - - Let it run for ~10s (it does nothing for 5 seconds, then write the logo into the SPI memory, then (slowly) displays it on the LCD). +- Let it run for ~10s (it does nothing for 5 seconds, then write the logo into the SPI memory, then (slowly) displays it on the LCD). ## Bootloader binary + The binary comes from https://github.com/lupyuen/pinetime-rust-mynewt/releases/tag/v5.0.4 It must be flash at address **0x00** in the internal flash memory. Using OpenOCD: -` -program bootloader-5.0.4.bin 0 -` +`program bootloader-5.0.4.bin 0` ## Application firmware image + Build the binary compatible with the booloader: -` -make pinetime-mcuboot-app -` +`make pinetime-mcuboot-app` The binary is located in */src/pinetime-mcuboot-app.bin*. It must me converted into a MCUBoot image using *imgtool.py* from [MCUBoot](https://github.com/mcu-tools/mcuboot/tree/master/scripts). Simply checkout the project and run the script /scripts/imgtool.py with the following command line: -` -imgtool.py create --align 4 --version 1.0.0 --header-size 32 --slot-size 475136 --pad-header /src/pinetime-mcuboot-app.bin image.bin -` +```sh +imgtool.py create --align 4 --version 1.0.0 --header-size 32 --slot-size 475136 --pad-header /src/pinetime-mcuboot-app.bin image.bin +``` The image must be then flashed at address **0x8000** in the internal flash memory. Using OpenOCD: -` -program image.bin 0x8000 -` +`program image.bin 0x8000` ## OTA and DFU + Pack the image into a .zip file for the NRF DFU protocol: -` +```sh adafruit-nrfutil dfu genpkg --dev-type 0x0052 --application image.bin dfu.zip -` +``` Use NRFConnect or dfu.py (in /bootloader/ota-dfu-python) to upload the zip file to the device: -` +```sh sudo dfu.py -z /home/jf/nrf52/bootloader/dfu.zip -a --legacy -` +``` **Note** : dfu.py is a slightly modified version of [this repo](https://github.com/daniel-thompson/ota-dfu-python). ### Firmware validation + Once the OTA is done, InfiniTime will reset the watch to apply the update. When the watch reboots, the new firmware is running. One last step is needed to finalize the upgrade : the new firmware must be manually validated. If the watch resets while the image is not validated, the bootloader will automatically revert to the previous version of the firmware. diff --git a/bootloader/ota-dfu-python/README.md b/bootloader/ota-dfu-python/README.md index 3397db4d..c38e597a 100644 --- a/bootloader/ota-dfu-python/README.md +++ b/bootloader/ota-dfu-python/README.md @@ -1,13 +1,13 @@ # Python nRF5 OTA DFU Controller So... this is my fork of dingara's fork of astronomer80's fork of -foldedtoad's Python OTA DFU utility. +foldedtoad's Python OTA DFU utility. -My own contribution is little more than a brute force conversion to -python3. It is sparsely tested so there are likely to be a few +My own contribution is little more than a brute force conversion to +python3. It is sparsely tested so there are likely to be a few remaining bytes versus string bugs remaining in the places I didn't test . I used it primarily as part of -[wasp-os](https://github.com/daniel-thompson/wasp-os) as a way to +[wasp-os](https://github.com/daniel-thompson/wasp-os) as a way to deliver OTA updates to nRF52-based smart watches, especially the [Pine64 PineTime](https://www.pine64.org/pinetime/). @@ -17,24 +17,24 @@ This is a Python program that uses `gatttool` (provided with the Linux BlueZ dri ### Main features: -* Perform OTA DFU to an nRF5 peripheral without an external USB BLE dongle. -* Ability to detect if the peripheral is running in application mode or bootloader, and automatically switch if needed (buttonless). -* Support for both Legacy (SDK <= 11) and Secure (SDK >= 12) bootloader. +- Perform OTA DFU to an nRF5 peripheral without an external USB BLE dongle. +- Ability to detect if the peripheral is running in application mode or bootloader, and automatically switch if needed (buttonless). +- Support for both Legacy (SDK <= 11) and Secure (SDK >= 12) bootloader. Before using this utility the nRF5 peripheral device needs to be programmed with a DFU bootloader (see Nordic Semiconductor documentation/examples for instructions on that). ## Prerequisites -* BlueZ 5.4 or above -* Python 3.6 -* Python `pexpect` module (available via pip) -* Python `intelhex` module (available via pip) +- BlueZ 5.4 or above +- Python 3.6 +- Python `pexpect` module (available via pip) +- Python `intelhex` module (available via pip) ## Firmware Build Requirement -* Your nRF5 peripheral firmware build method will produce a firmware file ending with either `*.hex` or `*.bin`. -* Your nRF5 firmware build method will produce an Init file ending with `.dat`. -* The typical naming convention is `application.bin` and `application.dat`, but this utility will accept other names. +- Your nRF5 peripheral firmware build method will produce a firmware file ending with either `*.hex` or `*.bin`. +- Your nRF5 firmware build method will produce an Init file ending with `.dat`. +- The typical naming convention is `application.bin` and `application.dat`, but this utility will accept other names. ## Generating init files @@ -75,14 +75,13 @@ You can use the `hcitool lescan` to figure out the address of a DFU target, for CD:E3:4A:47:1C:E4 CD:E3:4A:47:1C:E4 (unknown) - ## Example Output ================================ == == == DFU Server == == == - ================================ + ================================ Sending file application.bin to CD:E3:4A:47:1C:E4 bin array size: 60788 @@ -105,14 +104,14 @@ You can use the `hcitool lescan` to figure out the address of a DFU target, for ## TODO: -* Implement link-loss procedure for Legacy Controller. -* Update example output in readme. -* Add makefile examples. -* More code cleanup. +- Implement link-loss procedure for Legacy Controller. +- Update example output in readme. +- Add makefile examples. +- More code cleanup. ## Info & References -* [Nordic Legacy DFU Service](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v11.0.0/bledfu_transport_bleservice.html?cp=4_0_3_4_3_1_4_1) -* [Nordic Legacy DFU sequence diagrams](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v11.0.0/bledfu_transport_bleprofile.html?cp=4_0_3_4_3_1_4_0_1_6#ota_profile_pkt_rcpt_notif) -* [Nordic Secure DFU bootloader](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v12.2.0/lib_dfu_transport_ble.html?cp=4_0_1_3_5_2_2) -* [nrfutil](https://github.com/NordicSemiconductor/pc-nrfutil) +- [Nordic Legacy DFU Service](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v11.0.0/bledfu_transport_bleservice.html?cp=4_0_3_4_3_1_4_1) +- [Nordic Legacy DFU sequence diagrams](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v11.0.0/bledfu_transport_bleprofile.html?cp=4_0_3_4_3_1_4_0_1_6#ota_profile_pkt_rcpt_notif) +- [Nordic Secure DFU bootloader](http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v12.2.0/lib_dfu_transport_ble.html?cp=4_0_1_3_5_2_2) +- [nrfutil](https://github.com/NordicSemiconductor/pc-nrfutil) diff --git a/doc/BLEFS.md b/doc/BLEFS.md index 519d84a9..5374fd87 100644 --- a/doc/BLEFS.md +++ b/doc/BLEFS.md @@ -1,4 +1,5 @@ # BLE FS + --- The BLE FS protocol in InfiniTime is mostly Adafruit's BLE file transfer protocol, as described in [adafruit/Adafruit_CircuitPython_BLE_File_Transfer](https://github.com/adafruit/Adafruit_CircuitPython_BLE_File_Transfer). There are some deviations, such as the status codes. These will be described later in the document. @@ -13,7 +14,7 @@ There are two relevant UUIDs in this protocol: the version characteristic, and t UUID: `adaf0100-4669-6c65-5472-616e73666572` -The version characteristic returns the version of the protocol to which the sender adheres. It returns a single unsigned 32-bit integer. The latest version at the time of writing this is 4. +The version characteristic returns the version of the protocol to which the sender adheres. It returns a single unsigned 32-bit integer. The latest version at the time of writing this is 4. ### Transfer @@ -125,7 +126,7 @@ Paths returned by this command are relative to the path given in the request - Unsigned 16-bit integer encoding the length of the file path. - File path: UTF-8 encoded string that is _not_ null terminated. -The response to this packet will be as follows. Responses will be sent until the final entry, which will have entry number == total entries +The response to this packet will be as follows. Responses will be sent until the final entry, which will have entry number == total entries - Command (single byte): `0x51` - Status (signed 8-bit integer) @@ -133,9 +134,9 @@ The response to this packet will be as follows. Responses will be sent until the - Unsigned 32-bit integer encoding the entry number - Unsigned 32-bit integer encoding the total amount of entries - Flags: unsigned 32-bit integer - + Bit 0: Set when entry is a directory - + Bits 1-7: Reserved -- Unsigned 64-bit integer encoding the unix timestamp of the modification time with nanosecond resolution + - Bit 0: Set when entry is a directory + - Bits 1-7: Reserved +- Unsigned 64-bit integer encoding the unix timestamp of the modification time with nanosecond resolution - Unsigned 32-bit integer encoding the size of the file - Path: UTF-8 encoded string that is _not_ null terminated. @@ -164,4 +165,4 @@ This section describes the differences between Adafruit's spec and InfiniTime's The status codes returned by InfiniTime are a signed 8-bit integer, rather than an unsigned one as described in the spec. -InfiniTime uses LittleFS error codes rather than the ones described in the spec. Those codes can be found in [lfs.h](https://github.com/littlefs-project/littlefs/blob/master/lfs.h#L70). \ No newline at end of file +InfiniTime uses LittleFS error codes rather than the ones described in the spec. Those codes can be found in [lfs.h](https://github.com/littlefs-project/littlefs/blob/master/lfs.h#L70). diff --git a/doc/MemoryAnalysis.md b/doc/MemoryAnalysis.md index 846d5079..0feb0f9e 100644 --- a/doc/MemoryAnalysis.md +++ b/doc/MemoryAnalysis.md @@ -1,25 +1,28 @@ # Memory analysis + The PineTime is equipped with the following memories: - - The internal RAM : **64KB** - - The internal Flash : **512KB** - - The external (SPI) Flash : **4MB** + +- The internal RAM : **64KB** +- The internal Flash : **512KB** +- The external (SPI) Flash : **4MB** Note that the NRF52832 cannot execute code stored in the external flash : we need to store the whole firmware in the internal flash memory, and use the external one to store graphicals assets, fonts... This document describes how the RAM and Flash memories are used in InfiniTime and how to analyze and monitor their usage. It was written in the context of [this memory analysis effort](https://github.com/InfiniTimeOrg/InfiniTime/issues/313). ## Code sections + A binary is composed of multiple sections. Most of the time, these sections are : .text, .rodata, .data and .bss but more sections can be defined in the linker script. Here is a small description of these sections and where they end up in memory: - - **TEXT** = code (FLASH) - - **RODATA** = constants (FLASH) - - **DATA** = initialized variables (FLASH + RAM) - - **BSS** = uninitialized variables (RAM) - +- **TEXT** = code (FLASH) +- **RODATA** = constants (FLASH) +- **DATA** = initialized variables (FLASH + RAM) +- **BSS** = uninitialized variables (RAM) ## Internal FLASH + The internal flash memory stores the whole firmware: code, variable that are not default-initialized, constants... The content of the flash memory can be easily analyzed thanks to the MAP file generated by the compiler. This file lists all the symbols from the program along with their size and location (section and addresses) in RAM and FLASH. @@ -41,62 +44,71 @@ Using this tool, you can compare the relative size of symbols. This can be helpf Also, as Linkermapviz is written in Python, you can easily modify and adapt it to your firmware or export data in another format. For example, [here it is modified to parse the contents of the MAP file and export it in a CSV file](https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-842338620). This file could later be opened in LibreOffice Calc where sort/filter functionality could be used to search for specific symbols in specific files... ### Puncover + [Puncover](https://github.com/HBehrens/puncover) is another useful tools that analyses the binary file generated by the compiler (the .out file that contains all debug information). It provides valuable information about the symbols (data and code): name, position, size, max stack of each functions, callers, callees... ![Puncover](./memoryAnalysis/puncover.png) Puncover is really easy to install: - - Clone the repo and cd into the cloned directory - - Setup a venv - - `python -m virtualenv venv` - - `source venv/bin/activate` - - Install : `pip install .` - - Run : `puncover --gcc_tools_base=/path/to/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi- --elf_file /path/to/build/directory/src/pinetime-app-1.1.0.out --src_root /path/to/sources --build_dir /path/to/build/directory` - - Replace - * `/path/to/gcc-arm-none-eabi-10.3-2021.10/bin` with the path to your gcc-arm-none-eabi toolchain - * `/path/to/build/directory/src/pinetime-app-1.1.0.out` with the path to the binary generated by GCC (.out file) - * `/path/to/sources` with the path to the root folder of the sources (checkout directory) - * `/path/to/build/directory` with the path to the build directory - - Launch a browser at http://localhost:5000/ +- Clone the repo and cd into the cloned directory +- Setup a venv + - `python -m virtualenv venv` + - `source venv/bin/activate` +- Install : `pip install .` +- Run : `puncover --gcc_tools_base=/path/to/gcc-arm-none-eabi-10.3-2021.10/bin/arm-none-eabi- --elf_file /path/to/build/directory/src/pinetime-app-1.1.0.out --src_root /path/to/sources --build_dir /path/to/build/directory` + - Replace + - `/path/to/gcc-arm-none-eabi-10.3-2021.10/bin` with the path to your gcc-arm-none-eabi toolchain + - `/path/to/build/directory/src/pinetime-app-1.1.0.out` with the path to the binary generated by GCC (.out file) + - `/path/to/sources` with the path to the root folder of the sources (checkout directory) + - `/path/to/build/directory` with the path to the build directory +- Launch a browser at http://localhost:5000/ ### Analysis + Using the MAP file and tools, we can easily see what symbols are using most of the flash memory. In this case, unsurprisingly, fonts and graphics are the largest use of flash memory. ![Puncover](./memoryAnalysis/puncover-all-symbols.png) This way, you can easily check what needs to be optimized. We should find a way to store big static data (like fonts and graphics) in the external flash memory, for example. -It's always a good idea to check the flash memory space when working on the project. This way, you can easily check that your developments are using a reasonable amount of space. +It's always a good idea to check the flash memory space when working on the project. This way, you can easily check that your developments are using a reasonable amount of space. ### Links - - Analysis with linkermapviz : https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-842338620 - - Analysis with Puncover : https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-847311392 + +- Analysis with linkermapviz : https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-842338620 +- Analysis with Puncover : https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-847311392 ## RAM + RAM memory contains all the data that can be modified at run-time: variables, stack, heap... ### Data + RAM memory can be *statically* allocated, meaning that the size and position of the data are known at compile-time: You can easily analyze the memory used by variables declared in the global scope using the MAP. You'll find them in the .BSS or .DATA sections. Linkermapviz and Puncover can be used to analyze their memory usage. Variables declared in the scope of a function will be allocated on the stack. It means that the stack usage will vary according to the state of the program, and cannot be easily analyzed at compile time. + ``` -uint8_t buffer[1024] +uint8_t buffer[1024] int main() { - int a; + int a; } ``` #### Analysis -In Infinitime 1.1, the biggest buffers are the buffers allocated for LVGL (14KB) and the one for FreeRTOS (16KB). Nimble also allocated 9KB of RAM. + +In Infinitime 1.1, the biggest buffers are the buffers allocated for LVGL (14KB) and the one for FreeRTOS (16KB). Nimble also allocated 9KB of RAM. ### Stack + The stack will be used for everything except tasks, which have their own stack allocated by FreeRTOS. The stack is 8192B and is allocated in the [linker script](https://github.com/InfiniTimeOrg/InfiniTime/blob/develop/nrf_common.ld#L148). An easy way to monitor its usage is by filling the section with a known pattern at boot time, then use the firmware and dump the memory. You can then check the maximum stack usage by checking the address from the beginning of the stack that were overwritten. #### Fill the stack section by a known pattern: + Edit /modules/nrfx/mdk/gcc_startup_nrf52.S and add the following code after the copy of the data from read only memory to RAM at around line 243: ``` @@ -138,6 +150,7 @@ bne .L_fill ``` #### Dump RAM memory and check usage + Dumping the content of the ram is easy using JLink debugger and `nrfjprog`: ``` @@ -193,13 +206,16 @@ On the following dump, the maximum stack usage is 520 bytes (0xFFFF - 0xFDF8): 000fff0 7fc0 2000 4217 0001 3f0a 0001 0000 6100 ``` -#### Analysis +#### Analysis + According to my experimentations, we don't use the stack that much, and 8192 bytes is probably way too big for InfiniTime! #### Links - - https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-851035070 + +- https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-851035070 ### Heap + The heap is declared in the [linker script](https://github.com/InfiniTimeOrg/InfiniTime/blob/develop/nrf_common.ld#L136) and its current size is 8192 bytes. The heap is used for dynamic memory allocation(`malloc()`, `new`...). Heap monitoring is not easy, but it seems that we can use the following code to know the current usage of the heap: @@ -210,6 +226,7 @@ NRF_LOG_INFO("heap : %d", m.uordblks); ``` #### Analysis + According to my experimentation, InfiniTime uses ~6000bytes of heap most of the time. Except when the Navigation app is launched, where the heap usage exceeds 9500 bytes (meaning that the heap overflows and could potentially corrupt the stack). This is a bug that should be fixed in #362. To know exactly what's consuming heap memory, you can `wrap` functions like `malloc()` into your own functions. In this wrapper, you can add logging code or put breakpoints: @@ -225,6 +242,7 @@ void* __wrap_malloc(size_t size) { } } ``` + Now, your function `__wrap_malloc()` will be called instead of `malloc()`. You can call the actual malloc from the stdlib by calling `__real_malloc()`. Using this technique, I was able to trace all malloc calls at boot (boot -> digital watchface): @@ -239,12 +257,14 @@ Using this technique, I was able to trace all malloc calls at boot (boot -> digi - hr task = 304 #### Links - - https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-851035625 - - https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-1-calculating-stack-size/ - - https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-2-properly-allocating-stacks/ - - https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-3-avoiding-heap-errors/ + +- https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-851035625 +- https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-1-calculating-stack-size/ +- https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-2-properly-allocating-stacks/ +- https://www.embedded.com/mastering-stack-and-heap-for-system-reliability-part-3-avoiding-heap-errors/ ## LVGL + I did a deep analysis of the usage of the buffer dedicated to lvgl (managed by lv_mem). This buffer is used by lvgl to allocated memory for drivers (display/touch), screens, themes, and all widgets created by the apps. @@ -262,11 +282,13 @@ Then, initializing the digital clock face costs **1541 bytes**. For example a simple lv_label needs **~140 bytes** of memory. I tried to monitor this max value while going through all the apps of InfiniTime 1.1 : the max value I've seen is **5660 bytes**. It means that we could probably **reduce the size of the buffer from 14KB to 6 - 10 KB** (we have to take the fragmentation of the memory into account). + ### Links - - https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-850890064 +- https://github.com/InfiniTimeOrg/InfiniTime/issues/313#issuecomment-850890064 ## FreeRTOS heap and task stack + FreeRTOS statically allocate its own heap buffer in a global variable named `ucHeap`. This is an array of *uint8_t*. Its size is specified by the definition `configTOTAL_HEAP_SIZE` in *FreeRTOSConfig.h* FreeRTOS uses this buffer to allocate memory for tasks stack and all the RTOS object created during runtime (timers, mutexes...). @@ -276,7 +298,6 @@ The function `xPortGetFreeHeapSize()` returns the amount of memory available in NRF_LOG_INFO("Free heap : %d", xPortGetFreeHeapSize()); ``` - The function `uxTaskGetSystemState()` fetches some information about the running tasks like its name and the minimum amount of stack space that has remained for the task since the task was created: ``` @@ -285,5 +306,3 @@ auto nb = uxTaskGetSystemState(tasksStatus, 10, NULL); for (int i = 0; i < nb; i++) { NRF_LOG_INFO("Task [%s] - %d", tasksStatus[i].pcTaskName, tasksStatus[i].usStackHighWaterMark); ``` - - diff --git a/doc/MotionService.md b/doc/MotionService.md index 7cec3fba..429794ac 100644 --- a/doc/MotionService.md +++ b/doc/MotionService.md @@ -1,17 +1,23 @@ # Motion Service + ## Introduction + The motion service exposes step count and raw X/Y/Z motion value as READ and NOTIFY characteristics. ## Service + The service UUID is **00030000-78fc-48fe-8e23-433b3a1942d0** ## Characteristics + ### Step count (UUID 00030001-78fc-48fe-8e23-433b3a1942d0) + The current number of steps represented as a single `uint32_t` (4 bytes) value. ### Raw motion values (UUID 00030002-78fc-48fe-8e23-433b3a1942d0) + The current raw motion values. This is a 3 `int16_t` array: - - [0] : X - - [1] : Y - - [2] : Z +- [0] : X +- [1] : Y +- [2] : Z diff --git a/doc/NavigationService.md b/doc/NavigationService.md index d890cb26..e2a82b33 100644 --- a/doc/NavigationService.md +++ b/doc/NavigationService.md @@ -1,5 +1,7 @@ # Navigation Service + ## Introduction + The navigation ble service provides 4 characteristics to allow the watch to display navigation instructions from a companion application. This service is intended to be used when performing some outdoor activities, for example running or cycling. The 4 characteristics are: @@ -9,110 +11,117 @@ manDist (string) - Manouvre Distance, the distance to the upcoming change progress (uint8) - Percent complete of total route, value 0-100 ## Service + The service UUID is 00010000-78fc-48fe-8e23-433b3a1942d0 ## Characteristics + ## Flags (UUID 00010001-78fc-48fe-8e23-433b3a1942d0) + All included icons are from pure-maps, which provides the actual routing from the client. The icon names ultimately come from the mapbox project "direction-icons", See https://github.com/rinigus/pure-maps/tree/master/qml/icons/navigation See the end of this document for the full list of supported icon names. ## Narrative (UUID 00010002-78fc-48fe-8e23-433b3a1942d0) + This is a client supplied string describing the upcoming instruction such as "At the roundabout take the first exit". ## Man Dist (UUID 00010003-78fc-48fe-8e23-433b3a1942d0) + This is a short string describing the distance to the upcoming instruction such as "50 m". ## Progress (UUID 00010004-78fc-48fe-8e23-433b3a1942d0) + The percent complete in a uint8. The watch displays this as an overall progress in a progress bar. ## Full icon list -* arrive -* arrive-left -* arrive-right -* arrive-straight -* close -* continue -* continue-left -* continue-right -* continue-slight-left -* continue-slight-right -* continue-straight -* continue-uturn -* depart -* depart-left -* depart-right -* depart-straight -* end-of-road-left -* end-of-road-right -* ferry -* flag -* fork -* fork-left -* fork-right -* fork-slight-left -* fork-slight-right -* fork-straight -* invalid -* invalid-left -* invalid-right -* invalid-slight-left -* invalid-slight-right -* invalid-straight -* invalid-uturn -* merge-left -* merge-right -* merge-slight-left -* merge-slight-right -* merge-straight -* new-name-left -* new-name-right -* new-name-sharp-left -* new-name-sharp-right -* new-name-slight-left -* new-name-slight-right -* new-name-straight -* notification-left -* notification-right -* notification-sharp-left -* notification-sharp-right -* notification-slight-left -* notification-slight-right -* notification-straight -* off-ramp-left -* off-ramp-right -* off-ramp-sharp-left -* off-ramp-sharp-right -* off-ramp-slight-left -* off-ramp-slight-right -* off-ramp-straight -* on-ramp-left -* on-ramp-right -* on-ramp-sharp-left -* on-ramp-sharp-right -* on-ramp-slight-left -* on-ramp-slight-right -* on-ramp-straight -* rotary -* rotary-left -* rotary-right -* rotary-sharp-left -* rotary-sharp-right -* rotary-slight-left -* rotary-slight-right -* rotary-straight -* roundabout -* roundabout-left -* roundabout-right -* roundabout-sharp-left -* roundabout-sharp-right -* roundabout-slight-left -* roundabout-slight-right -* roundabout-straight -* turn-left -* turn-right -* turn-sharp-left -* turn-sharp-right -* turn-slight-left -* turn-slight-right -* turn-stright -* updown -* uturn + +- arrive +- arrive-left +- arrive-right +- arrive-straight +- close +- continue +- continue-left +- continue-right +- continue-slight-left +- continue-slight-right +- continue-straight +- continue-uturn +- depart +- depart-left +- depart-right +- depart-straight +- end-of-road-left +- end-of-road-right +- ferry +- flag +- fork +- fork-left +- fork-right +- fork-slight-left +- fork-slight-right +- fork-straight +- invalid +- invalid-left +- invalid-right +- invalid-slight-left +- invalid-slight-right +- invalid-straight +- invalid-uturn +- merge-left +- merge-right +- merge-slight-left +- merge-slight-right +- merge-straight +- new-name-left +- new-name-right +- new-name-sharp-left +- new-name-sharp-right +- new-name-slight-left +- new-name-slight-right +- new-name-straight +- notification-left +- notification-right +- notification-sharp-left +- notification-sharp-right +- notification-slight-left +- notification-slight-right +- notification-straight +- off-ramp-left +- off-ramp-right +- off-ramp-sharp-left +- off-ramp-sharp-right +- off-ramp-slight-left +- off-ramp-slight-right +- off-ramp-straight +- on-ramp-left +- on-ramp-right +- on-ramp-sharp-left +- on-ramp-sharp-right +- on-ramp-slight-left +- on-ramp-slight-right +- on-ramp-straight +- rotary +- rotary-left +- rotary-right +- rotary-sharp-left +- rotary-sharp-right +- rotary-slight-left +- rotary-slight-right +- rotary-straight +- roundabout +- roundabout-left +- roundabout-right +- roundabout-sharp-left +- roundabout-sharp-right +- roundabout-slight-left +- roundabout-slight-right +- roundabout-straight +- turn-left +- turn-right +- turn-sharp-left +- turn-sharp-right +- turn-slight-left +- turn-slight-right +- turn-stright +- updown +- uturn diff --git a/doc/PinetimeStubWithNrf52DK.md b/doc/PinetimeStubWithNrf52DK.md index afa8a74d..6fa0d545 100644 --- a/doc/PinetimeStubWithNrf52DK.md +++ b/doc/PinetimeStubWithNrf52DK.md @@ -1,33 +1,36 @@ # Build a stub for PineTime using NRF52-DK + [NRF52-DK](https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52-DK) is the official development kit for the NRF52832 SoC from Nordic Semiconductor used in the PineTime. This development kit can be very useful for PineTime development: - * You can use its embedded JLink SWD programmer/debugger to program and debug your code on the PineTime - * As it's based on the same SoC than the PineTime, you can program it to actually run the same code as the PineTime. - + +- You can use its embedded JLink SWD programmer/debugger to program and debug your code on the PineTime +- As it's based on the same SoC than the PineTime, you can program it to actually run the same code as the PineTime. + This page is about the 2nd point. We will build a stub that will allow us to run the same code you can run on the PineTime. This will allow you to work more easily if you don't have a PineTime dev kit around, if you don't want to modify your dev kit for SWD programming, or if you want to use some feature from the NRF52-DK (like power measurement). -This stub only implements the display, the button and the BLE radio. The other features from the pintime are missing: - * heart rate sensor - * SPI flash - * touchpad - * accelerometer +This stub only implements the display, the button and the BLE radio. The other features from the pintime are missing: + +- heart rate sensor +- SPI flash +- touchpad +- accelerometer These devices could be added on this stub, but I do not have the parts to try them out for now. ![Pinetime stub](../images/pinetimestub1.jpg "PinetimeStub") - Here are the parts you need to build this simulator: - * [NRF52-DK](https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52-DK) - * An ST7889 display (I bought [this one](https://www.aliexpress.com/item/32859772356.html?spm=a2g0s.9042311.0.0.1b774c4dSoc4Xz)) - * A push-button (the one I use comes from a previous project build around ESP8266 board Wemos D1 Mini). - * Dupont wires - + +- [NRF52-DK](https://www.nordicsemi.com/Software-and-Tools/Development-Kits/nRF52-DK) +- An ST7889 display (I bought [this one](https://www.aliexpress.com/item/32859772356.html?spm=a2g0s.9042311.0.0.1b774c4dSoc4Xz)) +- A push-button (the one I use comes from a previous project build around ESP8266 board Wemos D1 Mini). +- Dupont wires + You just need to make the following connections: | NRF52-DK | ST7889 display | -| ---------|--------------- | +| -------- | -------------- | | VDD | VCC | | GND | GND | | P0.03 | SDA | @@ -35,11 +38,10 @@ You just need to make the following connections: | P0.02 | SCL | | P0.18 | DC | - -| NRF52-DK | Push Button | -| ---------|----------------------- | -| P0.13 | Button IN (D3 in my case) | -| GND | GND | +| NRF52-DK | Push Button | +| -------- | ------------------------- | +| P0.13 | Button IN (D3 in my case) | +| GND | GND | You also need to enable the I/O expander to disconnect pins from the buttons and LED on the NRF52-DK and leave them available on the pin headers: @@ -47,4 +49,4 @@ You also need to enable the I/O expander to disconnect pins from the buttons and | --------- | --------- | | DETECT | GND | -Now, you should be able to program the SoC on the NRF52-DK board, and use it as if it was running on the PineTime. \ No newline at end of file +Now, you should be able to program the SoC on the NRF52-DK board, and use it as if it was running on the PineTime. diff --git a/doc/SPI-LCD-driver.md b/doc/SPI-LCD-driver.md index 29f3bbfa..758b4d69 100644 --- a/doc/SPI-LCD-driver.md +++ b/doc/SPI-LCD-driver.md @@ -1,16 +1,20 @@ # The SPI LCD driver + ## Introduction + The LCD controller that drives the display of the Pinetime is the [Sitronix ST7789V](https://wiki.pine64.org/images/5/54/ST7789V_v1.6.pdf). This controller is easy to integrate with an MCU thanks to its SPI interface, and has some interesting features like: + - an on-chip display data RAM that can store the whole framebuffer - partial screen update - hardware assisted vertical scrolling -- interrupt pin, allowing to drive the display with DMA and IRQ +- interrupt pin, allowing to drive the display with DMA and IRQ - ... When you want to write a device driver for a specific component, its datasheet is your holy bible. This document contains a lot of information about the chip, its specification, characteristics, features and functionalities. -Luckily for us, the datasheet of the ST7789 is great! It contains everything we need to write a nice driver for our beloved Pinetime. +Luckily for us, the datasheet of the ST7789 is great! It contains everything we need to write a nice driver for our beloved Pinetime. In this document, I'll try to explain the process I've followed to write a device driver for the LCD. There were multiple iterations: + - First, I tried to find the correct initialization sequence so that the controller is configured correctly according to the hardware configuration; - Then, I tried to display some pixels on the screen; - Next, I wanted to display squares, colors and text; @@ -20,12 +24,14 @@ In this document, I'll try to explain the process I've followed to write a devic I'll describe all these steps in the following chapters. ## The datasheet + As I said in the introduction, the datasheet will be your bedside book during your journey as a device driver designer. You'll read it from the beginning to the end once, twice, maybe ten times. Then, each time you'll want to do something new, you'll reopen the file and search for that specific paragraph or diagram than explains how the controller works so that you can figure out how to use it. The schematic of your board (the Pinetime schematics in this case) will also be very important, as you'll need to know how the LCD controller is physically connected to the MCU. How to read the datasheet? I recommend to read it from the beginning to the end (no joke) at least once. You certainly do not need to read everything in details, but it's good to know what information is available and where in the document. It'll be very useful during the development phase. You'll want to read some part with more attention : + - Data color coding in 4-Line Serial Interface : how to send the pixel to be display to the controller - Display Data Ram : how is the memory organized - Power On/Off sequence @@ -33,7 +39,6 @@ You'll want to read some part with more attention : ## One Pixel at a time - ## Bulk transfers ## DMA @@ -41,6 +46,7 @@ You'll want to read some part with more attention : ## IRQ ## Bare metal integration + Integration customisée dans la lib GFX que j'ai écrite -## Integration with LittleVGL \ No newline at end of file +## Integration with LittleVGL diff --git a/doc/SWD.md b/doc/SWD.md index 86e27517..7fc86958 100644 --- a/doc/SWD.md +++ b/doc/SWD.md @@ -1,4 +1,5 @@ # How to flash InfiniTime using the SWD interface + Download the files **bootloader.bin**, **image-x.y.z.bin** and **pinetime-graphics-x.y.z.bin** from the release page: ![Image file](gettingStarted/imageFile.png) @@ -8,7 +9,7 @@ Using your SWD tool, flash **pinetime-graphics-x.y.z.bin** at offset **0x0000**. Then, using your SWD tool, flash these file at the following offsets: - - bootloader.bin : **0x0000** - - image-x.y.z.bin : **0x8000** +- bootloader.bin : **0x0000** +- image-x.y.z.bin : **0x8000** Reset and voilà, you're running InfiniTime on your PineTime! diff --git a/doc/ble.md b/doc/ble.md index bd9e66f5..9c170418 100644 --- a/doc/ble.md +++ b/doc/ble.md @@ -1,5 +1,7 @@ -# Bluetooth Low-Energy : +# Bluetooth Low-Energy : + ## Introduction + This page describes the BLE implementation and API built in this firmware. --- @@ -38,6 +40,7 @@ This page describes the BLE implementation and API built in this firmware. --- ## BLE Connection + When starting, the firmware starts BLE advertising. It sends small messages that can be received by any *central* device in range. This allows the device to announce its presence to other devices. A companion application (running on a PC, Raspberry Pi, smartphone, etc.) which receives this advertising packet can request a connection to the device. This connection procedure allows the 2 devices to negotiate communication parameters, security keys, etc. @@ -58,7 +61,8 @@ The documentation for BLE FS can be found here: --- ## BLE UUIDs -When possible, InfiniTime tries to implement BLE services defined by the BLE specification. + +When possible, InfiniTime tries to implement BLE services defined by the BLE specification. When the service does not exist in the BLE specification, InfiniTime implements custom services. Custom services are identified by a UUID, as are all BLE services. Here is how to define the UUID of custom services in InfiniTime: @@ -70,34 +74,38 @@ When the service does not exist in the BLE specification, InfiniTime implements The following custom services are implemented in InfiniTime: - - Since InfiniTime 0.8: - * Music Service : 00000000-78fc-48fe-8e23-433b3a1942d0 - +- Since InfiniTime 0.8: + + - Music Service : `00000000-78fc-48fe-8e23-433b3a1942d0` - - Since InfiniTime 0.11: - * [Navigation Service](NavigationService.md) : 00010000-78fc-48fe-8e23-433b3a1942d0 +- Since InfiniTime 0.11: + - [Navigation Service](NavigationService.md) : `00010000-78fc-48fe-8e23-433b3a1942d0` - Since InfiniTime 0.13 - * Call characteristic (extension to the Alert Notification Service): 00020001-78fc-48fe-8e23-433b3a1942d0 + - Call characteristic (extension to the Alert Notification Service): `00020001-78fc-48fe-8e23-433b3a1942d0` - Since InfiniTime 1.7: - * [Motion Service](MotionService.md): 00030000-78fc-48fe-8e23-433b3a1942d0 + - [Motion Service](MotionService.md): `00030000-78fc-48fe-8e23-433b3a1942d0` - Since InfiniTime 1.8: - * [Weather Service](/src/components/ble/weather/WeatherService.h): 00040000-78fc-48fe-8e23-433b3a1942d0 + + - [Weather Service](/src/components/ble/weather/WeatherService.h): `00040000-78fc-48fe-8e23-433b3a1942d0` --- ## BLE services + [List of standard BLE services](https://www.bluetooth.com/specifications/gatt/services/) ### CTS + [Current Time Service](https://www.bluetooth.com/wp-content/uploads/Sitecore-Media-Library/Gatt/Xml/Services/org.bluetooth.service.current_time.xml) ### ANS + [Alert Notification Service](https://www.bluetooth.com/wp-content/uploads/Sitecore-Media-Library/Gatt/Xml/Services/org.bluetooth.service.alert_notification.xml) ![ANS sequence diagram](./ble/ans_sequence.png "ANS sequence diagram") diff --git a/doc/branches.md b/doc/branches.md index c12c764a..cf98684b 100644 --- a/doc/branches.md +++ b/doc/branches.md @@ -1,12 +1,14 @@ # Branches + The branching model of this project is based on the workflow named [Git flow](https://nvie.com/posts/a-successful-git-branching-model/). The project is based on 2 main branches: - - **master** : this branch is always ready to be deployed. It means that at any time, we should be able to build the branch and release a new version of the application. - - **develop** : this branch contains the latest development that will be integrated in the next release once it's considered as stable. + +- **master** : this branch is always ready to be deployed. It means that at any time, we should be able to build the branch and release a new version of the application. +- **develop** : this branch contains the latest development that will be integrated in the next release once it's considered as stable. New features should be implemented in **feature branches** created from **develop**. When the feature is ready, a pull-request is created and it'll be merge into **develop** when it is successfully reviewed and accepted. To release a new version of the application, when develop is considered stable, a **release** branch is created from **develop**. This can be considered as a *release candidate* branch. When everything is OK, this release branch is merged into **master** and the release is generated (a tag is applied to git, the release note is finalized, binaries are built,...) from **master**. -Git flow also supports the creation of **hotfix** branches when a bug is discovered in a released version. The **hotfix** branch is created from **master** and will be used only to implement a fix to this bug. Multiple hotfix branches can be created for the same release if multiple bugs are discovered. \ No newline at end of file +Git flow also supports the creation of **hotfix** branches when a bug is discovered in a released version. The **hotfix** branch is created from **master** and will be used only to implement a fix to this bug. Multiple hotfix branches can be created for the same release if multiple bugs are discovered. diff --git a/doc/buildAndProgram.md b/doc/buildAndProgram.md index 510f053d..58d0f72e 100644 --- a/doc/buildAndProgram.md +++ b/doc/buildAndProgram.md @@ -1,24 +1,29 @@ # Build + ## Dependencies + To build this project, you'll need: - - A cross-compiler : [ARM-GCC (10.3-2021.10)](https://developer.arm.com/downloads/-/gnu-rm) - - The NRF52 SDK 15.3.0 : [nRF-SDK v15.3.0](https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/nRF5_SDK_15.3.0_59ac345.zip) - - The Python 3 modules `cbor`, `intelhex`, `click` and `cryptography` modules for the `mcuboot` tool (see [requirements.txt](../tools/mcuboot/requirements.txt)) - - To keep the system clean, you can install python modules into a python virtual environment (`venv`) - ```sh - python -m venv .venv - source .venv/bin/activate - python -m pip install wheel - python -m pip install -r tools/mcuboot/requirements.txt - ``` - - A reasonably recent version of CMake (I use 3.16.5) - - lv_font_conv, to generate the font .c files - - see [lv_font_conv](https://github.com/lvgl/lv_font_conv#install-the-script) - - install npm (commonly done via the package manager, ensure node's version is at least 12) - - install lv_font_conv: `npm install lv_font_conv` + +- A cross-compiler : [ARM-GCC (10.3-2021.10)](https://developer.arm.com/downloads/-/gnu-rm) +- The NRF52 SDK 15.3.0 : [nRF-SDK v15.3.0](https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v15.x.x/nRF5_SDK_15.3.0_59ac345.zip) +- The Python 3 modules `cbor`, `intelhex`, `click` and `cryptography` modules for the `mcuboot` tool (see [requirements.txt](../tools/mcuboot/requirements.txt)) + - To keep the system clean, you can install python modules into a python virtual environment (`venv`) + ```sh + python -m venv .venv + source .venv/bin/activate + python -m pip install wheel + python -m pip install -r tools/mcuboot/requirements.txt + ``` +- A reasonably recent version of CMake (I use 3.16.5) +- lv_font_conv, to generate the font .c files + - see [lv_font_conv](https://github.com/lvgl/lv_font_conv#install-the-script) + - install npm (commonly done via the package manager, ensure node's version is at least 12) + - install lv_font_conv: `npm install lv_font_conv` ## Build steps + ### Clone the repo + ``` git clone https://github.com/InfiniTimeOrg/InfiniTime.git cd InfiniTime @@ -26,7 +31,9 @@ git submodule update --init mkdir build cd build ``` + ### Project generation using CMake + CMake configures the project according to variables you specify the command line. The variables are: Variable | Description | Example| @@ -41,31 +48,36 @@ CMake configures the project according to variables you specify the command line **BUILD_DFU (\*\*)**|Build DFU files while building (needs [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil)).|`-DBUILD_DFU=1` **TARGET_DEVICE**|Target device, used for hardware configuration. Allowed: `PINETIME, MOY-TFK5, MOY-TIN5, MOY-TON5, MOY-UNK`|`-DTARGET_DEVICE=PINETIME` (Default) -####(**) Note about **CMAKE_BUILD_TYPE**: +#### (\*) Note about **CMAKE_BUILD_TYPE** By default, this variable is set to *Release*. It compiles the code with size and speed optimizations. We use this value for all the binaries we publish when we [release](https://github.com/InfiniTimeOrg/InfiniTime/releases) new versions of InfiniTime. The *Debug* mode disables all optimizations, which makes the code easier to debug. However, the binary size will likely be too big to fit in the internal flash memory. If you want to build and debug a *Debug* binary, you'll need to disable some parts of the code. For example, the icons for the **Navigation** app use a lot of memory space. You can comment the content of `m_iconMap` in the [Navigation](https://github.com/InfiniTimeOrg/InfiniTime/blob/develop/src/displayapp/screens/Navigation.h#L148) application to free some memory. -####(**) Note about **BUILD_DFU**: +#### (\*\*) Note about **BUILD_DFU** DFU files are the files you'll need to install your build of InfiniTime using OTA (over-the-air) mechanism. To generate the DFU file, the Python tool [adafruit-nrfutil](https://github.com/adafruit/Adafruit_nRF52_nrfutil) is needed on your system. Check that this tool is properly installed before enabling this option. #### CMake command line for JLink + ``` cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=... -DNRF5_SDK_PATH=... -DUSE_JLINK=1 -DNRFJPROG=... ../ ``` #### CMake command line for GDB Client (Black Magic Probe) + ``` cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=... -DNRF5_SDK_PATH=... -DUSE_GDB_CLIENT=1 -DGDB_CLIENT_BIN_PATH=... -DGDB_CLIENT_TARGET_REMOTE=... ../ ``` #### CMake command line for OpenOCD + ``` cmake -DARM_NONE_EABI_TOOLCHAIN_PATH=... -DNRF5_SDK_PATH=... -DUSE_OPENOCD=1 -DGDB_CLIENT_BIN_PATH=[optional] ../ ``` ### Build the project + During the project generation, CMake created the following targets: + - **FLASH_ERASE** : mass erase the flash memory of the NRF52. - **FLASH_pinetime-app** : flash the firmware into the NRF52. - **pinetime-app** : build the standalone (without bootloader support) version of the firmware. @@ -78,58 +90,69 @@ During the project generation, CMake created the following targets: If you just want to build the project and run it on the Pinetime, using *pinetime-app* is recommended. See [this page](../bootloader/README.md) for more info about bootloader support. Build: + ``` make -j pinetime-app ``` List of files generated: Binary files are generated into the folder `src`: - - **pinetime-app.bin, .hex and .out** : standalone firmware in bin, hex and out formats. - - **pinetime-app.map** : map file - - **pinetime-mcuboot-app.bin, .hex and .out** : firmware with bootloader support in bin, hex and out formats. - - **pinetime-mcuboot-app.map** : map file - - **pinetime-mcuboot-app-image** : MCUBoot image of the firmware - - **pinetime-mcuboot-ap-dfu** : DFU file of the firmware -The same files are generated for **pinetime-recovery** and **pinetime-recoveryloader** +- **pinetime-app.bin, .hex and .out** : standalone firmware in bin, hex and out formats. +- **pinetime-app.map** : map file +- **pinetime-mcuboot-app.bin, .hex and .out** : firmware with bootloader support in bin, hex and out formats. +- **pinetime-mcuboot-app.map** : map file +- **pinetime-mcuboot-app-image** : MCUBoot image of the firmware +- **pinetime-mcuboot-ap-dfu** : DFU file of the firmware + +The same files are generated for **pinetime-recovery** and **pinetime-recoveryloader** - ### Program and run #### Using CMake targets + These target have been configured during the project generation by CMake according to the parameters you provided to the command line. Mass erase: + ``` make FLASH_ERASE -``` +``` Flash the application: + ``` make FLASH_pinetime-app ``` ### How to generate files needed by the factory + These files are needed by the Pine64 factory to flash InfiniTime as the default firmware on the PineTimes. Two files are needed: an **HEX (.hex)** file that contains the content of the internal flash memory (bootloader + InfiniTime) and a **binary (.bin)** file that contains the content of the external flash memory (recovery firmware). #### merged-internal.hex + First, convert the bootloader to hex: - ``` - /bin/arm-none-eabi-objcopy -I binary -O ihex ./bootloader.bin ./bootloader.hex - ``` + +``` +/bin/arm-none-eabi-objcopy -I binary -O ihex ./bootloader.bin ./bootloader.hex +``` + where `bootloader.bin` is the [last stable version](https://github.com/JF002/pinetime-mcuboot-bootloader/releases) of the [bootloader](https://github.com/JF002/pinetime-mcuboot-bootloader). Then, convert the MCUBoot image of InfiniTime: + ``` /bin/arm-none-eabi-objcopy -I binary -O ihex --change-addresses 0x8000 ./pinetime-mcuboot-app-image-1.6.0.bin ./pinetime-mcuboot-app-image-1.6.0.hex ``` + where `pinetime-mcuboot-app-image-1.6.0.bin` is [the bin of the last MCUBoot image](https://github.com/InfiniTimeOrg/InfiniTime/releases) of [InfiniTime](https://github.com/InfiniTimeOrg/InfiniTime). Pay attention to the parameter `--change-addresses 0x8000`. It's needed to ensure the image will be flashed at the offset expected by the bootloader (0x8000). Finally, merge them together with **mergehex**: + ``` /opt/mergehex/mergehex -m ./bootloader.hex ./pinetime-mcuboot-app-image-1.6.0.hex -o merged-internal.hex ``` @@ -137,4 +160,5 @@ Finally, merge them together with **mergehex**: This file must be flashed at offset **0x00** of the internal memory of the NRF52832. #### spinor.bin + This file is the MCUBoot image of the last stable version of the recovery firmware. It must be flashed at offset **0x00** of the external SPINOR flash memory. diff --git a/doc/buildWithDocker.md b/doc/buildWithDocker.md index 1bea8380..20bf85d4 100644 --- a/doc/buildWithDocker.md +++ b/doc/buildWithDocker.md @@ -1,24 +1,24 @@ # Build the project using Docker -A [Docker image (Dockerfile)](../docker) containing all the build environment is available for X86_64 and AMD64 architectures. +A [Docker image (Dockerfile)](../docker) containing all the build environment is available for X86_64 and AMD64 architectures. These images make the build of the firmware and the generation of the DFU file for OTA quite easy, as well as preventing clashes with any other toolchains or development environments you may have installed. Based on Ubuntu 22.04 with the following build dependencies: -* ARM GCC Toolchain -* nRF SDK -* MCUBoot -* adafruit-nrfutil -* lv_font_conv +- ARM GCC Toolchain +- nRF SDK +- MCUBoot +- adafruit-nrfutil +- lv_font_conv ## Run a container to build the project -The `infinitime-build` image contains all the dependencies you need. +The `infinitime-build` image contains all the dependencies you need. The default `CMD` will compile sources found in `/sources`, so you need only mount your code. Before continuing, make sure you first build the image as indicated in the [Build the image](#build-the-image) section, or check the [Using the image from Docker Hub](#using-the-image-from-docker-hub) section if you prefer to use a pre-made image. -This example will build the firmware, generate the MCUBoot image and generate the DFU file. +This example will build the firmware, generate the MCUBoot image and generate the DFU file. For cloning the repo, see [these instructions](../doc/buildAndProgram.md#clone-the-repo). Outputs will be written to **/build/output**: ```bash @@ -26,12 +26,12 @@ cd # e.g. cd ./work/Pinetime docker run --rm -it -v ${PWD}:/sources --user $(id -u):$(id -g) infinitime-build ``` -By default, the container runs as `root`, which is not convenient as all the files generated by the build will also belong to `root`. -The parameter `--user` overrides that default behavior. -The command above will run as your current user. +By default, the container runs as `root`, which is not convenient as all the files generated by the build will also belong to `root`. +The parameter `--user` overrides that default behavior. +The command above will run as your current user. -If you only want to build a single CMake target, you can pass it in as the first parameter to the build script. -This means calling the script explicitly as it will override the `CMD`. +If you only want to build a single CMake target, you can pass it in as the first parameter to the build script. +This means calling the script explicitly as it will override the `CMD`. Here's an example for `pinetime-app`: ```bash @@ -50,9 +50,9 @@ docker run --rm -it -v ${PWD}:/sources --user $(id -u):$(id -g) infinitime/infin The default `latest` tag *should* automatically identify the correct image architecture, but if for some reason Docker does not, you can specify it manually: -* For AMD64 (x86_64) systems: `docker pull --platform linux/amd64 infinitime/infinitime-build` +- For AMD64 (x86_64) systems: `docker pull --platform linux/amd64 infinitime/infinitime-build` -* For ARM64v8 (ARM64/aarch64) systems: `docker pull --platform linux/arm64 infinitime/infinitime-build` +- For ARM64v8 (ARM64/aarch64) systems: `docker pull --platform linux/arm64 infinitime/infinitime-build` ## Build the image @@ -62,4 +62,4 @@ The following commands must be run from the root of the project. This operation ```bash docker build -t infinitime-build ./docker -``` \ No newline at end of file +``` diff --git a/doc/buildWithVScode.md b/doc/buildWithVScode.md index 48b8923f..8e136511 100644 --- a/doc/buildWithVScode.md +++ b/doc/buildWithVScode.md @@ -26,27 +26,22 @@ We leverage a few VS Code extensions for ease of development. Cortex-Debug is only required for interactive debugging using VS Codes built in GDB support. - - ## VS Code/Docker DevContainer The .devcontainer folder contains the configuration and scripts for using a Docker dev container for building InfiniTime -Using the [Remote-Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension is recommended. It will handle configuring the Docker virtual machine and setting everything up. +Using the [Remote-Containers](https://marketplace.visualstudio.com/items?itemName=ms-vscode-remote.remote-containers) extension is recommended. It will handle configuring the Docker virtual machine and setting everything up. -More documentation is available in the [readme in .devcontainer](.devcontainer/readme.md) +More documentation is available in the [readme in .devcontainer](.devcontainer/readme.md) ### DevContainer on Ubuntu -To use the DevContainer configuration on Ubuntu based systems two changes need to be made: - -1. Modify the file ``.devcontainer/devcontainer.json`` and add the argument ``"--net=host"`` to the ``"runArgs"`` parameter making the line look like this: -`` "runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--net=host"], -`` -2. Modify the file ``.vscode/launch.json`` and change the argument of ``"gdbTarget"`` to ``"127.0.0.1:3333"``, making the line look like: -``"gdbTarget": "127.0.0.1:3333",`` -3. To start debugging launch openocd on your host system with the appropriate configuration, for example with a stlink-v2 the command is: -``openocd -f interface/stlink.cfg -f target/nrf52.cfg``. This launches openocd with the default ports ``3333``, ``4444`` and ``6666``. -4. In VsCode go to the Debug pane on the left of the screen and select the configuration ``Debug - Openocd docker Remote`` and hit the play button on the left. - +To use the DevContainer configuration on Ubuntu based systems two changes need to be made: +1. Modify the file `.devcontainer/devcontainer.json` and add the argument `"--net=host"` to the `"runArgs"` parameter making the line look like this: + `"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--net=host"],` +2. Modify the file `.vscode/launch.json` and change the argument of `"gdbTarget"` to `"127.0.0.1:3333"`, making the line look like: + `"gdbTarget": "127.0.0.1:3333",` +3. To start debugging launch openocd on your host system with the appropriate configuration, for example with a stlink-v2 the command is: + `openocd -f interface/stlink.cfg -f target/nrf52.cfg`. This launches openocd with the default ports `3333`, `4444` and `6666`. +4. In VsCode go to the Debug pane on the left of the screen and select the configuration `Debug - Openocd docker Remote` and hit the play button on the left. diff --git a/doc/code/Apps.md b/doc/code/Apps.md index f067b58b..c756a8b4 100644 --- a/doc/code/Apps.md +++ b/doc/code/Apps.md @@ -1,5 +1,7 @@ # Apps + This page will teach you: + - what screens and apps are in InfiniTime - how to implement your own app @@ -14,6 +16,7 @@ Apps are responsible for everything drawn on the screen when they are running. By default, apps only do something (as in a function is executed) when they are created or when a touch event is detected. ## Interface + Every app class has to be inside the namespace `Pinetime::Applications::Screens` and inherit from `Screen`. The constructor should have at least one parameter `DisplayApp* app`, which it needs for the constructor of its parent class Screen. Other parameters should be references to controllers that the app needs. @@ -24,10 +27,12 @@ it does not need to override any of these functions, as LVGL can also handle tou If you have any doubts, you can always look at how the other apps function for reference. ### Continuous updating + If your app needs to be updated continuously, you can do so by overriding the `Refresh()` function in your class and calling `lv_task_create` inside the constructor. An example call could look like this: + ```cpp taskRefresh = lv_task_create(RefreshTaskCallback, LV_DISP_DEF_REFR_PERIOD, LV_TASK_PRIO_MID, this); ``` @@ -37,9 +42,11 @@ Remember to delete the task again using `lv_task_del`. The function `RefreshTaskCallback` is inherited from `Screen` and just calls your `Refresh` function. ## Creating your own app + A minimal app could look like this: MyApp.h: + ```cpp #pragma once @@ -60,6 +67,7 @@ namespace Pinetime { ``` MyApp.cpp: + ```cpp #include "displayapp/screens/MyApp.h" #include "displayapp/DisplayApp.h" @@ -77,6 +85,7 @@ MyApp::~MyApp() { lv_obj_clean(lv_scr_act()); } ``` + Both of these files should be in [displayapp/screens/](/src/displayapp/screens/) or [displayapp/screens/settings/](/src/displayapp/screens/settings/) if it's a setting app. diff --git a/doc/code/Intro.md b/doc/code/Intro.md index 23b3ade1..34adc5fa 100644 --- a/doc/code/Intro.md +++ b/doc/code/Intro.md @@ -1,7 +1,9 @@ # Introduction to the code + This page is meant to guide you through the source code, so you can find the relevant files for what you're working on. ## FreeRTOS + Infinitime is based on FreeRTOS, a real-time operating system. FreeRTOS provides several quality of life abstractions (for example easy software timers) and most importantly supports multiple tasks. @@ -12,6 +14,7 @@ The task scheduler is responsible for giving every task enough cpu time. As there is only one core on the SoC of the PineTime, real concurrency is impossible and the scheduler has to swap tasks in and out to emulate it. ### Tasks + Tasks are created by calling `xTaskCreate` and passing a function with the signature `void functionName(void*)`. For more info on task creation see the [FreeRTOS Documentation](https://www.freertos.org/a00125.html). In our case, main calls `systemTask.Start()`, which creates the **"MAIN" task**. @@ -29,6 +32,7 @@ it will need instead of just typing in a large-ish number. You can use `configMINIMAL_STACK_SIZE` which is currently set to 120 words. ## Controllers + Controllers in InfiniTime are singleton objects that can provide access to certain resources to apps. Some of them interface with drivers, others are the driver for the resource. The resources provided don't have to be hardware-based. @@ -37,7 +41,9 @@ Some controllers can be passed by reference to apps that need access to the reso They reside in [components/](/src/components/) inside their own subfolder. ## Apps + For more detail see the [Apps page](./Apps.md) ## Bluetooth + Header files with short documentation for the functions are inside [libs/mynewt-nimble/nimble/host/include/host/](/src/libs/mynewt-nimble/nimble/host/include/host/). diff --git a/doc/filesInReleaseNotes.md b/doc/filesInReleaseNotes.md index 6a5873c0..4cd0d3c5 100644 --- a/doc/filesInReleaseNotes.md +++ b/doc/filesInReleaseNotes.md @@ -1,4 +1,5 @@ # Using the releases + For each new *stable* version of IniniTime, a [release note](https://github.com/InfiniTimeOrg/InfiniTime/releases) is created. It contains a description of the main changes in the release and some files you can use to flash the firmware to your Pinetime. This page describes the files from the release notes and how to use them. @@ -8,49 +9,52 @@ This page describes the files from the release notes and how to use them. ## Files included in the release notes ### Standalone firmware + This firmware is standalone, meaning that it does not need a bootloader to actually run. It is intended to be flashed at offset 0, meaning it will erase any bootloader that might be present in memory. - - **pinetime-app.out** : Output file of GCC containing debug symbols, useful if you want to debug the firmware using GDB. - - **pinetime-app.hex** : Firmware in Intel HEX file format. Easier to use because it contains the offset in memory where it must be flashed, you don't need to specify it. - - **pintime-app.bin** : Firmware in binary format. When programming it, you have to specify the offset (0x00) in memory where it must be flashed. - - **pinetime-app.map** : Map file containing all the symbols, addresses in memory,... - +- **pinetime-app.out** : Output file of GCC containing debug symbols, useful if you want to debug the firmware using GDB. +- **pinetime-app.hex** : Firmware in Intel HEX file format. Easier to use because it contains the offset in memory where it must be flashed, you don't need to specify it. +- **pintime-app.bin** : Firmware in binary format. When programming it, you have to specify the offset (0x00) in memory where it must be flashed. +- **pinetime-app.map** : Map file containing all the symbols, addresses in memory,... + **This firmware must be flashed at address 0x00 in the main flash memory** ### Bootloader + The bootloader is maintained by [lupyuen](https://github.com/lupyuen) and is a binary version of [this release](https://github.com/lupyuen/pinetime-rust-mynewt/releases/tag/v5.0.4). - - **bootloader.hex** : Firmware in Intel HEX file format. - - **This firmware must be flashed at address 0x00 in the main flash memory** +- **bootloader.hex** : Firmware in Intel HEX file format. + +**This firmware must be flashed at address 0x00 in the main flash memory** +### Graphics firmware -### Graphics firmware This firmware is a small utility firmware that writes the boot graphic in the external SPI flash memory. You need it if you want to use the [bootloader](../bootloader/README.md). - - **pinetime-graphics.out** : Output file of GCC containing debug symbols, useful is you want to debug the firmware using GDB. - - **pinetime-graphics.hex** : Firmware in Intel HEX file format. Easier to use because it contains the offset in memory where it must be flashed, you don't need to specify it. - - **pintime-graphics.bin** : Firmware in binary format. When programming it, you have to specify the offset (0x00) in memory where it must be flashed. - - **pinetime-graphics.map** : Map file containing all the symbols, addresses in memory,... - +- **pinetime-graphics.out** : Output file of GCC containing debug symbols, useful is you want to debug the firmware using GDB. +- **pinetime-graphics.hex** : Firmware in Intel HEX file format. Easier to use because it contains the offset in memory where it must be flashed, you don't need to specify it. +- **pintime-graphics.bin** : Firmware in binary format. When programming it, you have to specify the offset (0x00) in memory where it must be flashed. +- **pinetime-graphics.map** : Map file containing all the symbols, addresses in memory,... + **This firmware must be flashed at address 0x00 in the main flash memory** ### Firmware with bootloader + This firmware is intended to be used with our [MCUBoot-based bootloader](../bootloader/README.md). - - **pinetime-mcuboot-app-image.hex**: Firmware wrapped into an MCUBoot image. This is **the** file that must be flashed at **0x8000** into the flash memory. If the [bootloader](../bootloader/README.md) has been successfully programmed, it should run this firmware after the next reset. +- **pinetime-mcuboot-app-image.hex**: Firmware wrapped into an MCUBoot image. This is **the** file that must be flashed at **0x8000** into the flash memory. If the [bootloader](../bootloader/README.md) has been successfully programmed, it should run this firmware after the next reset. The following files are not directly usable by the bootloader: - - **pinetime-mcuboot-app.out** : Output file of GCC containing debug symbols, useful is you want to debug the firmware using GDB. - - **pinetime-mcuboot-app.hex** : Firmware in Intel HEX file format. - - **pinetime-mcuboot-app.bin** : Firmware in binary format. - - **pinetime-mcuboot-app.map** : Map file containing all the symbols, addresses in memory,... +- **pinetime-mcuboot-app.out** : Output file of GCC containing debug symbols, useful is you want to debug the firmware using GDB. +- **pinetime-mcuboot-app.hex** : Firmware in Intel HEX file format. +- **pinetime-mcuboot-app.bin** : Firmware in binary format. +- **pinetime-mcuboot-app.map** : Map file containing all the symbols, addresses in memory,... ### OTA (Update the firmware Over-The-Air) + Once the bootloader and application firmware are running, it is possible to update the current firmware or even replace it with another firmware **that uses the same bootloader based on MCUBoot**. **NOTE :** Use this file **only** if you programmed our [MCUBoot-based bootloader](../bootloader/README.md). This file is not compatible with other bootloaders like the one that is based on the closed source NRF SoftDevice ! - - **pinetime-app-dfu.zip** : This is the file you must provide toNRFConnect to update the firmware over BLE. - +- **pinetime-app-dfu.zip** : This is the file you must provide toNRFConnect to update the firmware over BLE. diff --git a/doc/gdb.md b/doc/gdb.md index eb9b73f1..209ba652 100644 --- a/doc/gdb.md +++ b/doc/gdb.md @@ -12,6 +12,7 @@ run ``` Example : + ``` $ /home/jf/nrf52/gcc-arm-none-eabi-8-2019-q3-update/bin/arm-none-eabi-gdb @@ -45,4 +46,3 @@ Loading section .sec7, size 0xdf08 lma 0x40000 Start address 0x0, load size 314200 Transfer rate: 45 KB/sec, 969 bytes/write. ``` - diff --git a/doc/gettingStarted/about-software.md b/doc/gettingStarted/about-software.md index e935d938..54bcaf14 100644 --- a/doc/gettingStarted/about-software.md +++ b/doc/gettingStarted/about-software.md @@ -6,9 +6,9 @@ A **firmware** is software running on the embedded hardware of a device. InfiniTime has three distinct firmwares: - - **[InfiniTime](https://github.com/InfiniTimeOrg/InfiniTime)** is the operating system. - - **[The bootloader](https://github.com/JF002/pinetime-mcuboot-bootloader)** is responsible for safely applying firmware updates and runs before booting into InfiniTime. - - **The recovery firmware** is a special *application firmware* than can be loaded by the bootloader on user request. This firmware can be useful in case of serious issue, when the main application firmware cannot perform an OTA update correctly. +- **[InfiniTime](https://github.com/InfiniTimeOrg/InfiniTime)** is the operating system. +- **[The bootloader](https://github.com/JF002/pinetime-mcuboot-bootloader)** is responsible for safely applying firmware updates and runs before booting into InfiniTime. +- **The recovery firmware** is a special *application firmware* than can be loaded by the bootloader on user request. This firmware can be useful in case of serious issue, when the main application firmware cannot perform an OTA update correctly. **OTA** (**O**ver **T**he **A**ir) refers to updating of the firmware over BLE (**B**luetooth **L**ow **E**nergy). This is a functionality that allows the user to update the firmware on their device wirelessly. @@ -20,7 +20,7 @@ Most of the time, the bootloader just runs without your intervention (updating a However, you can use the bootloader to rollback to the previous firmware, or load the recovery firmware using the push button: - - Press and hold the button until the pine cone is drawn in **blue** to force the rollback of the previous version of the firmware, even if you've already validated the current one. - - Press and hold the button until the pine cone is drawn in **red** to load the recovery firmware. This recovery firmware only provides BLE connectivity and OTA functionality. +- Press and hold the button until the pine cone is drawn in **blue** to force the rollback of the previous version of the firmware, even if you've already validated the current one. +- Press and hold the button until the pine cone is drawn in **red** to load the recovery firmware. This recovery firmware only provides BLE connectivity and OTA functionality. More info about the bootloader in [its project page](https://github.com/JF002/pinetime-mcuboot-bootloader/blob/master/README.md). diff --git a/doc/gettingStarted/gettingStarted-1.0.md b/doc/gettingStarted/gettingStarted-1.0.md index 29433921..1586de56 100644 --- a/doc/gettingStarted/gettingStarted-1.0.md +++ b/doc/gettingStarted/gettingStarted-1.0.md @@ -12,9 +12,9 @@ By default, InfiniTime starts on the digital watchface. It'll probably display t You can sync the time using companion apps. - - Gadgetbridge automatically synchronizes the time when you connect it to your watch. More information on Gadgetbridge [here](/doc/gettingStarted/ota-gadgetbridge.md) - - [Sync the time with NRFConnect](/doc/gettingStarted/time-nrfconnect.md) - - Sync the time with your browser https://hubmartin.github.io/WebBLEWatch/ +- Gadgetbridge automatically synchronizes the time when you connect it to your watch. More information on Gadgetbridge [here](/doc/gettingStarted/ota-gadgetbridge.md) +- [Sync the time with NRFConnect](/doc/gettingStarted/time-nrfconnect.md) +- Sync the time with your browser https://hubmartin.github.io/WebBLEWatch/ You can also set the time in the settings without a companion app. (version >1.7.0) @@ -30,9 +30,9 @@ The indicator on the top left is visible if you have unread notifications On the top right there are status icons - - The battery icon shows roughly how much charge is remaining - - The Bluetooth icon is visible when the watch is connected to a companion app - - A plug icon is shown when the watch is plugged into a charger. +- The battery icon shows roughly how much charge is remaining +- The Bluetooth icon is visible when the watch is connected to a companion app +- A plug icon is shown when the watch is plugged into a charger. On the bottom left you can see your heart rate if you have the measurement enabled in the heart rate app. @@ -45,13 +45,13 @@ On the bottom right you can see how many steps you have taken today. ![Quick actions](ui/quicksettings.jpg) ![Settings](ui/settings.jpg) - - Swipe **up** to display the application menus. Apps (stopwatch, music, step, games,...) can be started from this menu. - - Swipe **down** to display the notification panel. Notification sent by your companion app will be displayed here. - - Swipe **right** to display the Quick Actions menu. This menu allows you to - - Set the brightness of the display - - Start the **flashlight** app - - Enable/disable notifications (Do Not Disturb mode) - - Enter the **settings** menu - - Swipe up and down to see all options - - Click the button to go back a screen. - - You can hold the button for a short time to return to the watch face. (version >1.7.0) +- Swipe **up** to display the application menus. Apps (stopwatch, music, step, games,...) can be started from this menu. +- Swipe **down** to display the notification panel. Notification sent by your companion app will be displayed here. +- Swipe **right** to display the Quick Actions menu. This menu allows you to + - Set the brightness of the display + - Start the **flashlight** app + - Enable/disable notifications (Do Not Disturb mode) + - Enter the **settings** menu + - Swipe up and down to see all options +- Click the button to go back a screen. +- You can hold the button for a short time to return to the watch face. (version >1.7.0) diff --git a/doc/gettingStarted/ota-nrfconnect.md b/doc/gettingStarted/ota-nrfconnect.md index 800bd6bc..292e7fc4 100644 --- a/doc/gettingStarted/ota-nrfconnect.md +++ b/doc/gettingStarted/ota-nrfconnect.md @@ -19,4 +19,5 @@ Don't forget to **validate** your firmware. In the InfiniTime go to the settings ![NRFConnect 3](nrfconnect3.jpg) # Demo + [This video](https://seafile.codingfield.com/f/a52b69683a05472a90c7/) shows how to use NRFConnect to update the firmware running on the Pinetime. diff --git a/doc/gettingStarted/updating-software.md b/doc/gettingStarted/updating-software.md index 7a05073a..d302607e 100644 --- a/doc/gettingStarted/updating-software.md +++ b/doc/gettingStarted/updating-software.md @@ -26,8 +26,8 @@ To update the firmware, you need to download the DFU of the firmware version tha We have prepared instructions for flashing InfiniTime with Gadgetbridge and NRFConnect. - - [Updating with Gadgetbridge](/doc/gettingStarted/ota-gadgetbridge.md) - - [Updating with NRFConnect](/doc/gettingStarted/ota-nrfconnect.md) +- [Updating with Gadgetbridge](/doc/gettingStarted/ota-gadgetbridge.md) +- [Updating with NRFConnect](/doc/gettingStarted/ota-nrfconnect.md) ## Firmware validation @@ -35,7 +35,7 @@ Firmware updates must be manually validated. If the firmware isn't validated and You can validate your updated firmware on InfiniTime >= 1.0 by following this simple procedure: - - From the watchface, swipe **right** to display the *quick settings menu* - - Open settings by tapping the cogwheel on the bottom right - - Swipe up until you find an entry named **Firmware** and tap on it - - If the firmware is not validated yet, you can either validate the running firmware, or reset and revert to the previous firmware version +- From the watchface, swipe **right** to display the *quick settings menu* +- Open settings by tapping the cogwheel on the bottom right +- Swipe up until you find an entry named **Firmware** and tap on it +- If the firmware is not validated yet, you can either validate the running firmware, or reset and revert to the previous firmware version diff --git a/doc/jlink.md b/doc/jlink.md index eebcac49..b69c4c46 100644 --- a/doc/jlink.md +++ b/doc/jlink.md @@ -1,6 +1,7 @@ # Flashing the firmware with JLink Start JLinkExe: + ``` $ /opt/SEGGER/JLink/JLinkExe -device nrf52 -if swd -speed 4000 -autoconnect 1 SEGGER J-Link Commander V6.70d (Compiled Apr 16 2020 17:59:37) @@ -43,6 +44,7 @@ J-Link> ``` Use the command loadfile to program the .hex file: + ``` J-Link>loadfile pinetime-app.hex Downloading file [pinetime-app.hex]... @@ -56,6 +58,7 @@ O.K. ``` Then reset (r) and start (g) the CPU: + ``` J-Link>r Reset delay: 0 ms @@ -66,17 +69,18 @@ J-Link>g ``` # JLink RTT + RTT is a feature from Segger's JLink devices that allows bidirectional communication between the debugger and the target. This feature can be used to get the logs from the embedded software on the development computer. - - Program the MCU with the code (see above) - - Start JLinkExe +- Program the MCU with the code (see above) +- Start JLinkExe ``` $ JLinkExe -device nrf52 -if swd -speed 4000 -autoconnect 1 ``` Start JLinkRTTClient + ``` $ JLinkRTTClient ``` - diff --git a/doc/openOCD.md b/doc/openOCD.md index ef0f6605..34f62425 100644 --- a/doc/openOCD.md +++ b/doc/openOCD.md @@ -1,4 +1,5 @@ # OpenOCD and STLink + OpenOCD (**Open O**n **C**hip **D**ebugger) is an open source tool that interfaces with many SWD/JTAG debugger to provide debugging and *in-system* programming for embedded target devices. OpenOCD supports the **NRF52** (the CPU of the PineTime) and the **STLinkV2**, a cheap SWD debugger. @@ -6,9 +7,10 @@ OpenOCD supports the **NRF52** (the CPU of the PineTime) and the **STLinkV2**, a OpenOCD works on X86 computers, ARM/ARM64 computers, and SBCs (like the RaspberryPi and Pine64 Pinebook Pro)! ## Installation + We will build OpenOCD from sources, as packages from Linux distributions are most of the time outdated and do not support the NRF52 properly. - - Fetch the sources from GIT, and build and install it: +- Fetch the sources from GIT, and build and install it: ``` git clone https://git.code.sf.net/p/openocd/code openocd-code @@ -21,13 +23,14 @@ make -j 4 sudo make install ``` - - Configure UDEV to allow OpenOCD to open the interface to your STLinkV2: +- Configure UDEV to allow OpenOCD to open the interface to your STLinkV2: + ``` sudo cp contrib/60-openocd.rules /etc/udev/rules.d/ sudo udevadm control --reload-rules ``` - - You can now plug your STLinkV2 into a USB port and run OpenOCD to see if it's working correctly: +- You can now plug your STLinkV2 into a USB port and run OpenOCD to see if it's working correctly: ``` $ openocd -f interface/stlink.cfg -f target/nrf52.cfg @@ -50,11 +53,14 @@ Info : STLINK V2J34S7 (API v2) VID:PID 0483:3748 Info : Target voltage: 3.294340 Error: init mode failed (unable to connect to the target) ``` + Ok, OpenOCD is running and it detects my STLinkV2. The last error shows that I've not connected the STLinkV2 to the PineTime. ## Configuration files + OpenOCD is configured using configuration files. First, we need a common configuration file for the project : **openocd-stlink.ocd**: + ``` source [find interface/stlink.cfg] @@ -63,11 +69,13 @@ gdb_breakpoint_override hard source [find target/nrf52.cfg] ``` + This file specifies to OpenOCD which debugger and target it will be connected to. Then, we use various *user files* to use OpenOCD to flash InfiniTime binary files. This files flashes the bootloader and the application firmware : **flash_bootloader_app.ocd**: + ``` init @@ -78,6 +86,7 @@ reset ``` And this one flashes the graphics flasher (it writes the bootloader graphics into the SPI NOR flash memory) : **flash_graphics.ocd**: + ``` init @@ -87,17 +96,21 @@ reset ``` ## Examples + ### Flash bootloader and application + ``` openocd -f ./openocd-stlink.ocd -f ./flash_bootloader_app.ocd ``` ### Flash graphics flasher + ``` openocd -f ./openocd-stlink.ocd -f ./flash_graphics.ocd ``` ## Connect the STLinkV2 to the PineTime + Here is an example using the pogo pins: ![SWD pinout](openOCD/swd_pinout.jpg) ![Pogo pins](openOCD/pogopins.jpg) diff --git a/doc/ui_guidelines.md b/doc/ui_guidelines.md index 296497af..1a93fada 100644 --- a/doc/ui_guidelines.md +++ b/doc/ui_guidelines.md @@ -5,9 +5,9 @@ - Buttons should generally be on the bottom edge - Make interactable objects **big** - When using a page indicator, leave 8px for it on the right side - - It is acceptable to leave 8px on the left side as well to center the content + - It is acceptable to leave 8px on the left side as well to center the content - Top bar takes at least 20px + padding - - Top bar right icons move 8px to the left when using a page indicator + - Top bar right icons move 8px to the left when using a page indicator - A black background helps to hide the screen border, allowing the UI to look less cramped when utilizing the entire display area. - A switch should be twice as wide as it is tall. diff --git a/doc/versioning.md b/doc/versioning.md index 2fa36ab9..28ca085c 100644 --- a/doc/versioning.md +++ b/doc/versioning.md @@ -1,6 +1,7 @@ # Versioning + The versioning of this project is based on [Semantic versioning](https://semver.org/): - - The **patch** is incremented when a bug is fixed on a **released** version (most of the time using a **hotfix** branch). - - The **minor** is incremented when a new version with new features is released. It corresponds to a merge of **develop** into **master**. - - The **major** should be incremented when a breaking change is made to the application. We still have to define what is a breaking change in the context of this project. +- The **patch** is incremented when a bug is fixed on a **released** version (most of the time using a **hotfix** branch). +- The **minor** is incremented when a new version with new features is released. It corresponds to a merge of **develop** into **master**. +- The **major** should be incremented when a breaking change is made to the application. We still have to define what is a breaking change in the context of this project. diff --git a/docker/README.md b/docker/README.md index 71ad258a..5b897b2b 100644 --- a/docker/README.md +++ b/docker/README.md @@ -1,2 +1,2 @@ Docker images and build script for building the project using Docker. -See [this page for more info](../doc/buildWithDocker.md). \ No newline at end of file +See [this page for more info](../doc/buildWithDocker.md). diff --git a/src/displayapp/fonts/README.md b/src/displayapp/fonts/README.md index 9d5ec282..b2669a78 100644 --- a/src/displayapp/fonts/README.md +++ b/src/displayapp/fonts/README.md @@ -1,19 +1,19 @@ # Fonts -* [Jetbrains Mono](https://www.jetbrains.com/lp/mono/) -* [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) -* [Open Sans Light](https://fonts.google.com/specimen/Open+Sans) -* [Material Symbols](https://fonts.google.com/icons) +- [Jetbrains Mono](https://www.jetbrains.com/lp/mono/) +- [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) +- [Open Sans Light](https://fonts.google.com/specimen/Open+Sans) +- [Material Symbols](https://fonts.google.com/icons) ### How to add new symbols: -* Browse the cheat sheets and pick symbols - * [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) - * [Material Symbols](https://fonts.google.com/icons) -* For each symbol, add its hex code (0xf641 for the 'Ad' icon, for example) to the *Range* list in the `fonts.json` file -* Convert this hex value into a UTF-8 code +- Browse the cheat sheets and pick symbols + - [Font Awesome](https://fontawesome.com/v5/cheatsheet/free/solid) + - [Material Symbols](https://fonts.google.com/icons) +- For each symbol, add its hex code (0xf641 for the 'Ad' icon, for example) to the *Range* list in the `fonts.json` file +- Convert this hex value into a UTF-8 code using [this site](http://www.ltg.ed.ac.uk/~richard/utf-8.cgi?input=f185&mode=hex) -* Define the new symbols in `src/displayapp/screens/Symbols.h`: +- Define the new symbols in `src/displayapp/screens/Symbols.h`: ``` static constexpr const char* newSymbol = "\xEF\x86\x85"; @@ -23,13 +23,13 @@ static constexpr const char* newSymbol = "\xEF\x86\x85"; inside `fonts`, there is a dictionary of fonts, and for each font there is: -* sources - list of file,range(,symbols) wanted (as a dictionary of those) -* bpp - bits per pixel. -* size - size. -* patches - list of extra "patches" to run: a path to a .patch file. (may be relative) -* compress - optional. default disabled. add `"compress": true` to enable + +- sources - list of file,range(,symbols) wanted (as a dictionary of those) +- bpp - bits per pixel. +- size - size. +- patches - list of extra "patches" to run: a path to a .patch file. (may be relative) +- compress - optional. default disabled. add `"compress": true` to enable ### Navigation font `navigtion.ttf` is created with the web app [icomoon](https://icomoon.io/app) by importing the svg files from `src/displayapp/icons/navigation/unique` and generating the font. `lv_font_navi_80.json` is a project file for the site, which you can import to add or remove icons. - -- cgit v1.2.3 From 62c4ff9c2d28227a4119a40a67997ad2d4aa7426 Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sun, 21 Aug 2022 14:52:14 +0300 Subject: Determine the number of digits from the max value. (#1271) --- src/displayapp/widgets/Counter.cpp | 18 ++++++++++++++---- src/displayapp/widgets/Counter.h | 1 + 2 files changed, 15 insertions(+), 4 deletions(-) (limited to 'src/displayapp') diff --git a/src/displayapp/widgets/Counter.cpp b/src/displayapp/widgets/Counter.cpp index 3c50a105..e95178ec 100644 --- a/src/displayapp/widgets/Counter.cpp +++ b/src/displayapp/widgets/Counter.cpp @@ -18,9 +18,17 @@ namespace { widget->DownBtnPressed(); } } + constexpr int digitCount(int number) { + int digitCount = 0; + while (number > 0) { + digitCount++; + number /= 10; + } + return digitCount; + } } -Counter::Counter(int min, int max, lv_font_t& font) : min {min}, max {max}, value {min}, font {font} { +Counter::Counter(int min, int max, lv_font_t& font) : min {min}, max {max}, value {min}, font {font}, leadingZeroCount {digitCount(max)} { } void Counter::UpBtnPressed() { @@ -72,14 +80,14 @@ void Counter::UpdateLabel() { if (value == 0) { lv_label_set_text_static(number, "12"); } else if (value <= 12) { - lv_label_set_text_fmt(number, "%.2i", value); + lv_label_set_text_fmt(number, "%.*i", leadingZeroCount, value); } else { - lv_label_set_text_fmt(number, "%.2i", value - 12); + lv_label_set_text_fmt(number, "%.*i", leadingZeroCount, value - 12); } } else if (monthMode) { lv_label_set_text(number, Controllers::DateTime::MonthShortToStringLow(static_cast(value))); } else { - lv_label_set_text_fmt(number, "%.2i", value); + lv_label_set_text_fmt(number, "%.*i", leadingZeroCount, value); } } @@ -95,6 +103,8 @@ void Counter::EnableMonthMode() { monthMode = true; } +// Counter cannot be resized after creation, +// so the newMax value must have the same number of digits as the old one void Counter::SetMax(int newMax) { max = newMax; if (value > max) { diff --git a/src/displayapp/widgets/Counter.h b/src/displayapp/widgets/Counter.h index d38dd9d7..825860b8 100644 --- a/src/displayapp/widgets/Counter.h +++ b/src/displayapp/widgets/Counter.h @@ -41,6 +41,7 @@ namespace Pinetime { int min; int max; int value; + const int leadingZeroCount; bool twelveHourMode = false; bool monthMode = false; lv_font_t& font; -- cgit v1.2.3 From 69563ed03155eb861f8b8ada1df1325995fab51b Mon Sep 17 00:00:00 2001 From: Riku Isokoski Date: Sun, 21 Aug 2022 14:52:38 +0300 Subject: Add sleep mode which disables notifications, touch- and motion wakeup (#1261) --- src/components/settings/Settings.h | 4 +- src/displayapp/fonts/fonts.json | 2 +- src/displayapp/screens/Symbols.h | 1 + src/displayapp/screens/settings/QuickSettings.cpp | 55 ++++++++++++++--------- src/displayapp/screens/settings/QuickSettings.h | 2 +- src/systemtask/SystemTask.cpp | 25 ++++++----- 6 files changed, 54 insertions(+), 35 deletions(-) (limited to 'src/displayapp') diff --git a/src/components/settings/Settings.h b/src/components/settings/Settings.h index 3b113ead..478408f6 100644 --- a/src/components/settings/Settings.h +++ b/src/components/settings/Settings.h @@ -9,7 +9,7 @@ namespace Pinetime { class Settings { public: enum class ClockType : uint8_t { H24, H12 }; - enum class Notification : uint8_t { ON, OFF }; + enum class Notification : uint8_t { On, Off, Sleep }; enum class ChimesOption : uint8_t { None, Hours, HalfHours }; enum class WakeUpMode : uint8_t { SingleTap = 0, @@ -219,7 +219,7 @@ namespace Pinetime { uint32_t screenTimeOut = 15000; ClockType clockType = ClockType::H24; - Notification notificationStatus = Notification::ON; + Notification notificationStatus = Notification::On; uint8_t clockFace = 0; ChimesOption chimesOption = ChimesOption::None; diff --git a/src/displayapp/fonts/fonts.json b/src/displayapp/fonts/fonts.json index 7c429625..006b8849 100644 --- a/src/displayapp/fonts/fonts.json +++ b/src/displayapp/fonts/fonts.json @@ -58,7 +58,7 @@ "sources": [ { "file": "material-design-icons/MaterialIcons-Regular.ttf", - "range": "0xf00b, 0xe3aa-0xe3ac, 0xe7f6-0xe7f7, 0xe8b8" + "range": "0xf00b, 0xe3aa-0xe3ac, 0xe7f6-0xe7f7, 0xe8b8, 0xef44" } ], "bpp": 1, diff --git a/src/displayapp/screens/Symbols.h b/src/displayapp/screens/Symbols.h index c6e76e36..1180ec6f 100644 --- a/src/displayapp/screens/Symbols.h +++ b/src/displayapp/screens/Symbols.h @@ -37,6 +37,7 @@ namespace Pinetime { static constexpr const char* chartLine = "\xEF\x88\x81"; static constexpr const char* eye = "\xEF\x81\xAE"; static constexpr const char* home = "\xEF\x80\x95"; + static constexpr const char* sleep = "\xEE\xBD\x84"; // lv_font_sys_48.c static constexpr const char* settings = "\xEE\xA2\xB8"; diff --git a/src/displayapp/screens/settings/QuickSettings.cpp b/src/displayapp/screens/settings/QuickSettings.cpp index fba5e876..b76affc9 100644 --- a/src/displayapp/screens/settings/QuickSettings.cpp +++ b/src/displayapp/screens/settings/QuickSettings.cpp @@ -10,13 +10,21 @@ using namespace Pinetime::Applications::Screens; namespace { void ButtonEventHandler(lv_obj_t* obj, lv_event_t event) { auto* screen = static_cast(obj->user_data); - screen->OnButtonEvent(obj, event); + if (event == LV_EVENT_CLICKED) { + screen->OnButtonEvent(obj); + } } void lv_update_task(struct _lv_task_t* task) { auto* user_data = static_cast(task->user_data); user_data->UpdateScreen(); } + + enum class ButtonState : lv_state_t { + NotificationsOn = LV_STATE_CHECKED, + NotificationsOff = LV_STATE_DEFAULT, + Sleep = 0x40, + }; } QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, @@ -79,19 +87,24 @@ QuickSettings::QuickSettings(Pinetime::Applications::DisplayApp* app, btn3 = lv_btn_create(lv_scr_act(), nullptr); btn3->user_data = this; lv_obj_set_event_cb(btn3, ButtonEventHandler); - lv_btn_set_checkable(btn3, true); lv_obj_add_style(btn3, LV_BTN_PART_MAIN, &btn_style); + lv_obj_set_style_local_bg_color(btn3, LV_BTN_PART_MAIN, static_cast(ButtonState::NotificationsOff), LV_COLOR_RED); + static constexpr lv_color_t violet = LV_COLOR_MAKE(0x60, 0x00, 0xff); + lv_obj_set_style_local_bg_color(btn3, LV_BTN_PART_MAIN, static_cast(ButtonState::Sleep), violet); lv_obj_set_size(btn3, buttonWidth, buttonHeight); lv_obj_align(btn3, nullptr, LV_ALIGN_IN_BOTTOM_LEFT, buttonXOffset, 0); btn3_lvl = lv_label_create(btn3, nullptr); lv_obj_set_style_local_text_font(btn3_lvl, LV_LABEL_PART_MAIN, LV_STATE_DEFAULT, &lv_font_sys_48); - if (settingsController.GetNotificationStatus() == Controllers::Settings::Notification::ON) { - lv_obj_add_state(btn3, LV_STATE_CHECKED); + if (settingsController.GetNotificationStatus() == Controllers::Settings::Notification::On) { lv_label_set_text_static(btn3_lvl, Symbols::notificationsOn); - } else { + lv_obj_set_state(btn3, static_cast(ButtonState::NotificationsOn)); + } else if (settingsController.GetNotificationStatus() == Controllers::Settings::Notification::Off) { lv_label_set_text_static(btn3_lvl, Symbols::notificationsOff); + } else { + lv_label_set_text_static(btn3_lvl, Symbols::sleep); + lv_obj_set_state(btn3, static_cast(ButtonState::Sleep)); } btn4 = lv_btn_create(lv_scr_act(), nullptr); @@ -122,31 +135,33 @@ void QuickSettings::UpdateScreen() { statusIcons.Update(); } -void QuickSettings::OnButtonEvent(lv_obj_t* object, lv_event_t event) { - if (object == btn2 && event == LV_EVENT_CLICKED) { - - running = false; +void QuickSettings::OnButtonEvent(lv_obj_t* object) { + if (object == btn2) { app->StartApp(Apps::FlashLight, DisplayApp::FullRefreshDirections::Up); - - } else if (object == btn1 && event == LV_EVENT_CLICKED) { + } else if (object == btn1) { brightness.Step(); lv_label_set_text_static(btn1_lvl, brightness.GetIcon()); settingsController.SetBrightness(brightness.Level()); - } else if (object == btn3 && event == LV_EVENT_VALUE_CHANGED) { + } else if (object == btn3) { - if (lv_obj_get_state(btn3, LV_BTN_PART_MAIN) & LV_STATE_CHECKED) { - settingsController.SetNotificationStatus(Controllers::Settings::Notification::ON); - motorController.RunForDuration(35); - lv_label_set_text_static(btn3_lvl, Symbols::notificationsOn); - } else { - settingsController.SetNotificationStatus(Controllers::Settings::Notification::OFF); + if (settingsController.GetNotificationStatus() == Controllers::Settings::Notification::On) { + settingsController.SetNotificationStatus(Controllers::Settings::Notification::Off); lv_label_set_text_static(btn3_lvl, Symbols::notificationsOff); + lv_obj_set_state(btn3, static_cast(ButtonState::NotificationsOff)); + } else if (settingsController.GetNotificationStatus() == Controllers::Settings::Notification::Off) { + settingsController.SetNotificationStatus(Controllers::Settings::Notification::Sleep); + lv_label_set_text_static(btn3_lvl, Symbols::sleep); + lv_obj_set_state(btn3, static_cast(ButtonState::Sleep)); + } else { + settingsController.SetNotificationStatus(Controllers::Settings::Notification::On); + lv_label_set_text_static(btn3_lvl, Symbols::notificationsOn); + lv_obj_set_state(btn3, static_cast(ButtonState::NotificationsOn)); + motorController.RunForDuration(35); } - } else if (object == btn4 && event == LV_EVENT_CLICKED) { - running = false; + } else if (object == btn4) { settingsController.SetSettingsMenu(0); app->StartApp(Apps::Settings, DisplayApp::FullRefreshDirections::Up); } diff --git a/src/displayapp/screens/settings/QuickSettings.h b/src/displayapp/screens/settings/QuickSettings.h index cd342b0c..f555d034 100644 --- a/src/displayapp/screens/settings/QuickSettings.h +++ b/src/displayapp/screens/settings/QuickSettings.h @@ -27,7 +27,7 @@ namespace Pinetime { ~QuickSettings() override; - void OnButtonEvent(lv_obj_t* object, lv_event_t event); + void OnButtonEvent(lv_obj_t* object); void UpdateScreen(); diff --git a/src/systemtask/SystemTask.cpp b/src/systemtask/SystemTask.cpp index d3f12789..1c871fd2 100644 --- a/src/systemtask/SystemTask.cpp +++ b/src/systemtask/SystemTask.cpp @@ -251,7 +251,8 @@ void SystemTask::Work() { case Messages::TouchWakeUp: { if (touchHandler.GetNewTouchInfo()) { auto gesture = touchHandler.GestureGet(); - if (gesture != Pinetime::Applications::TouchEvents::None && + if (settingsController.GetNotificationStatus() != Controllers::Settings::Notification::Sleep && + gesture != Pinetime::Applications::TouchEvents::None && ((gesture == Pinetime::Applications::TouchEvents::DoubleTap && settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::DoubleTap)) || (gesture == Pinetime::Applications::TouchEvents::Tap && @@ -280,7 +281,7 @@ void SystemTask::Work() { } break; case Messages::OnNewNotification: - if (settingsController.GetNotificationStatus() == Pinetime::Controllers::Settings::Notification::ON) { + if (settingsController.GetNotificationStatus() == Pinetime::Controllers::Settings::Notification::On) { if (state == SystemTaskState::Sleeping) { GoToRunning(); } else { @@ -388,7 +389,8 @@ void SystemTask::Work() { break; case Messages::OnNewHour: using Pinetime::Controllers::AlarmController; - if (settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::Hours && + if (settingsController.GetNotificationStatus() != Controllers::Settings::Notification::Sleep && + settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::Hours && alarmController.State() != AlarmController::AlarmState::Alerting) { if (state == SystemTaskState::Sleeping) { GoToRunning(); @@ -399,7 +401,8 @@ void SystemTask::Work() { break; case Messages::OnNewHalfHour: using Pinetime::Controllers::AlarmController; - if (settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::HalfHours && + if (settingsController.GetNotificationStatus() != Controllers::Settings::Notification::Sleep && + settingsController.GetChimeOption() == Controllers::Settings::ChimesOption::HalfHours && alarmController.State() != AlarmController::AlarmState::Alerting) { if (state == SystemTaskState::Sleeping) { GoToRunning(); @@ -483,13 +486,13 @@ void SystemTask::UpdateMotion() { motionController.IsSensorOk(motionSensor.IsOk()); motionController.Update(motionValues.x, motionValues.y, motionValues.z, motionValues.steps); - if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::RaiseWrist) && - motionController.Should_RaiseWake(state == SystemTaskState::Sleeping)) { - GoToRunning(); - } - if (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake) && - motionController.Should_ShakeWake(settingsController.GetShakeThreshold())) { - GoToRunning(); + if (settingsController.GetNotificationStatus() != Controllers::Settings::Notification::Sleep) { + if ((settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::RaiseWrist) && + motionController.Should_RaiseWake(state == SystemTaskState::Sleeping)) || + (settingsController.isWakeUpModeOn(Pinetime::Controllers::Settings::WakeUpMode::Shake) && + motionController.Should_ShakeWake(settingsController.GetShakeThreshold()))) { + GoToRunning(); + } } } -- cgit v1.2.3