diff --git a/Maui_ChartTooltip/App.xaml.cs b/Maui_ChartTooltip/App.xaml.cs deleted file mode 100644 index 3c69e75..0000000 --- a/Maui_ChartTooltip/App.xaml.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class App : Application -{ - public App() - { - InitializeComponent(); - - MainPage = new AppShell(); - } -} diff --git a/Maui_ChartTooltip/AppShell.xaml.cs b/Maui_ChartTooltip/AppShell.xaml.cs deleted file mode 100644 index 8ffab85..0000000 --- a/Maui_ChartTooltip/AppShell.xaml.cs +++ /dev/null @@ -1,9 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class AppShell : Shell -{ - public AppShell() - { - InitializeComponent(); - } -} diff --git a/Maui_ChartTooltip/MainPage.xaml.cs b/Maui_ChartTooltip/MainPage.xaml.cs deleted file mode 100644 index d7489c6..0000000 --- a/Maui_ChartTooltip/MainPage.xaml.cs +++ /dev/null @@ -1,10 +0,0 @@ -namespace Maui_ChartTooltip; - -public partial class MainPage : ContentPage -{ - public MainPage() - { - InitializeComponent(); - } -} - diff --git a/Maui_ChartTooltip/MauiProgram.cs b/Maui_ChartTooltip/MauiProgram.cs deleted file mode 100644 index 5af35fc..0000000 --- a/Maui_ChartTooltip/MauiProgram.cs +++ /dev/null @@ -1,21 +0,0 @@ -using Syncfusion.Maui.Core.Hosting; - -namespace Maui_ChartTooltip; - -public static class MauiProgram -{ - public static MauiApp CreateMauiApp() - { - var builder = MauiApp.CreateBuilder(); - builder - .UseMauiApp() - .ConfigureSyncfusionCore() - .ConfigureFonts(fonts => - { - fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); - fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); - }); - - return builder.Build(); - } -} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip.sln b/Maui_ChartTooltip/Maui_ChartTooltip.sln index 553aaf7..5b7f4eb 100644 --- a/Maui_ChartTooltip/Maui_ChartTooltip.sln +++ b/Maui_ChartTooltip/Maui_ChartTooltip.sln @@ -1,9 +1,9 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.0.31611.283 +VisualStudioVersion = 17.13.35919.96 d17.13 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Maui_ChartTooltip", "Maui_ChartTooltip.csproj", "{7A0639F6-D847-4249-95FF-9059D1A823A8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Maui_ChartTooltip", "Maui_ChartTooltip\Maui_ChartTooltip.csproj", "{D98110D2-6A26-4187-B870-7F2E0BDCF46C}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,17 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Build.0 = Release|Any CPU - {7A0639F6-D847-4249-95FF-9059D1A823A8}.Release|Any CPU.Deploy.0 = Release|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D98110D2-6A26-4187-B870-7F2E0BDCF46C}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572} + SolutionGuid = {E8A59F04-6EEF-42F7-AAC8-EA312C15238F} EndGlobalSection EndGlobal diff --git a/Maui_ChartTooltip/App.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml similarity index 100% rename from Maui_ChartTooltip/App.xaml rename to Maui_ChartTooltip/Maui_ChartTooltip/App.xaml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs new file mode 100644 index 0000000..a55c192 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml.cs @@ -0,0 +1,15 @@ +namespace Maui_ChartTooltip +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } + } +} \ No newline at end of file diff --git a/Maui_ChartTooltip/AppShell.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml similarity index 85% rename from Maui_ChartTooltip/AppShell.xaml rename to Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml index 9ab6213..4e64d5f 100644 --- a/Maui_ChartTooltip/AppShell.xaml +++ b/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml @@ -4,7 +4,8 @@ xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" xmlns:local="clr-namespace:Maui_ChartTooltip" - Shell.FlyoutBehavior="Disabled"> + Shell.FlyoutBehavior="Flyout" + Title="Maui_ChartTooltip"> + XBindingPath="Country" YBindingPath="Population" + EnableTooltip="True" + TooltipTemplate="{StaticResource tooltipTemplate}"> diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs new file mode 100644 index 0000000..d8e4b24 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml.cs @@ -0,0 +1,11 @@ +namespace Maui_ChartTooltip +{ + public partial class MainPage : ContentPage + { + public MainPage() + { + InitializeComponent(); + } + } + +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs b/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs new file mode 100644 index 0000000..271c9d2 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/MauiProgram.cs @@ -0,0 +1,27 @@ +using Microsoft.Extensions.Logging; +using Syncfusion.Maui.Core.Hosting; + +namespace Maui_ChartTooltip +{ + public static class MauiProgram + { + public static MauiApp CreateMauiApp() + { + var builder = MauiApp.CreateBuilder(); + builder.ConfigureSyncfusionCore(); + builder + .UseMauiApp() + .ConfigureFonts(fonts => + { + fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); + fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); + }); + +#if DEBUG + builder.Logging.AddDebug(); +#endif + + return builder.Build(); + } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip.csproj b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj similarity index 61% rename from Maui_ChartTooltip/Maui_ChartTooltip.csproj rename to Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj index ba76d4e..f4e7bc9 100644 --- a/Maui_ChartTooltip/Maui_ChartTooltip.csproj +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj @@ -1,29 +1,40 @@  - net6.0-android;net6.0-ios;net6.0-maccatalyst - $(TargetFrameworks);net6.0-windows10.0.19041.0 + net9.0-android;net9.0-ios;net9.0-maccatalyst + $(TargetFrameworks);net9.0-windows10.0.19041.0 - + + + + + Exe Maui_ChartTooltip true true enable + enable Maui_ChartTooltip com.companyname.maui_charttooltip - f0c97090-4758-44bb-92cc-36364d664cae 1.0 1 - 14.2 - 14.0 + + None + + 15.0 + 15.0 21.0 10.0.17763.0 10.0.17763.0 @@ -39,7 +50,7 @@ - + @@ -49,7 +60,9 @@ - + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user new file mode 100644 index 0000000..8700ea2 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Maui_ChartTooltip.csproj.user @@ -0,0 +1,8 @@ + + + + False + net9.0-windows10.0.19041.0 + Windows Machine + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Model/Model.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs similarity index 100% rename from Maui_ChartTooltip/Model/Model.cs rename to Maui_ChartTooltip/Maui_ChartTooltip/Model/Model.cs diff --git a/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml similarity index 100% rename from Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/AndroidManifest.xml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs new file mode 100644 index 0000000..a028a64 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainActivity.cs @@ -0,0 +1,11 @@ +using Android.App; +using Android.Content.PM; +using Android.OS; + +namespace Maui_ChartTooltip +{ + [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, LaunchMode = LaunchMode.SingleTop, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] + public class MainActivity : MauiAppCompatActivity + { + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs new file mode 100644 index 0000000..6f81c34 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/MainApplication.cs @@ -0,0 +1,16 @@ +using Android.App; +using Android.Runtime; + +namespace Maui_ChartTooltip +{ + [Application] + public class MainApplication : MauiApplication + { + public MainApplication(IntPtr handle, JniHandleOwnership ownership) + : base(handle, ownership) + { + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml similarity index 100% rename from Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Android/Resources/values/colors.xml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs new file mode 100644 index 0000000..e0dee7d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace Maui_ChartTooltip +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist new file mode 100644 index 0000000..de4adc9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Entitlements.plist @@ -0,0 +1,14 @@ + + + + + + + com.apple.security.app-sandbox + + + com.apple.security.network.client + + + + diff --git a/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist similarity index 59% rename from Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist index c96dd0a..7268977 100644 --- a/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Info.plist @@ -2,9 +2,17 @@ + + + + + + + + + UIDeviceFamily - 1 2 UIRequiredDeviceCapabilities diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs new file mode 100644 index 0000000..39d0f0d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/MacCatalyst/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace Maui_ChartTooltip +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs new file mode 100644 index 0000000..0684db7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/Main.cs @@ -0,0 +1,17 @@ +using System; +using Microsoft.Maui; +using Microsoft.Maui.Hosting; + +namespace Maui_ChartTooltip +{ + internal class Program : MauiApplication + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + + static void Main(string[] args) + { + var app = new Program(); + app.Run(args); + } + } +} diff --git a/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml similarity index 92% rename from Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml index 9a2af1b..a3c0837 100644 --- a/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Tizen/tizen-manifest.xml @@ -1,5 +1,5 @@  - + diff --git a/Maui_ChartTooltip/Platforms/Windows/App.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml similarity index 100% rename from Maui_ChartTooltip/Platforms/Windows/App.xaml rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs new file mode 100644 index 0000000..0bac0bc --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/App.xaml.cs @@ -0,0 +1,25 @@ +using Microsoft.UI.Xaml; + +// To learn more about WinUI, the WinUI project structure, +// and more about our project templates, see: http://aka.ms/winui-project-info. + +namespace Maui_ChartTooltip.WinUI +{ + /// + /// Provides application-specific behavior to supplement the default Application class. + /// + public partial class App : MauiWinUIApplication + { + /// + /// Initializes the singleton application object. This is the first line of authored code + /// executed, and as such is the logical equivalent of main() or WinMain(). + /// + public App() + { + this.InitializeComponent(); + } + + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } + +} diff --git a/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest similarity index 88% rename from Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest index 2bcb11e..84781ef 100644 --- a/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/Package.appxmanifest @@ -2,11 +2,14 @@ + + $placeholder$ User Name diff --git a/Maui_ChartTooltip/Platforms/Windows/app.manifest b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest similarity index 100% rename from Maui_ChartTooltip/Platforms/Windows/app.manifest rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/Windows/app.manifest diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs new file mode 100644 index 0000000..e0dee7d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/AppDelegate.cs @@ -0,0 +1,10 @@ +using Foundation; + +namespace Maui_ChartTooltip +{ + [Register("AppDelegate")] + public class AppDelegate : MauiUIApplicationDelegate + { + protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp(); + } +} diff --git a/Maui_ChartTooltip/Platforms/iOS/Info.plist b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Info.plist similarity index 100% rename from Maui_ChartTooltip/Platforms/iOS/Info.plist rename to Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Info.plist diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs new file mode 100644 index 0000000..39d0f0d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Program.cs @@ -0,0 +1,16 @@ +using ObjCRuntime; +using UIKit; + +namespace Maui_ChartTooltip +{ + public class Program + { + // This is the main entry point of the application. + static void Main(string[] args) + { + // if you want to use a different Application Delegate class from "AppDelegate" + // you can specify it here. + UIApplication.Main(args, null, typeof(AppDelegate)); + } + } +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..24ab3b4 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Platforms/iOS/Resources/PrivacyInfo.xcprivacy @@ -0,0 +1,51 @@ + + + + + + NSPrivacyAccessedAPITypes + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryFileTimestamp + NSPrivacyAccessedAPITypeReasons + + C617.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategorySystemBootTime + NSPrivacyAccessedAPITypeReasons + + 35F9.1 + + + + NSPrivacyAccessedAPIType + NSPrivacyAccessedAPICategoryDiskSpace + NSPrivacyAccessedAPITypeReasons + + E174.1 + + + + + + diff --git a/Maui_ChartTooltip/Properties/launchSettings.json b/Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json similarity index 70% rename from Maui_ChartTooltip/Properties/launchSettings.json rename to Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json index edf8aad..4f85793 100644 --- a/Maui_ChartTooltip/Properties/launchSettings.json +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Properties/launchSettings.json @@ -1,7 +1,7 @@ { "profiles": { "Windows Machine": { - "commandName": "MsixPackage", + "commandName": "Project", "nativeDebugging": false } } diff --git a/Maui_ChartTooltip/Resources/AppIcon/appicon.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg similarity index 100% rename from Maui_ChartTooltip/Resources/AppIcon/appicon.svg rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appicon.svg diff --git a/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg similarity index 100% rename from Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/AppIcon/appiconfg.svg diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs new file mode 100644 index 0000000..f12cac6 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/FluentUI.cs @@ -0,0 +1,7921 @@ +namespace Fonts +{ + // Generated by IconFont2Code: https://andreinitescu.github.io/IconFont2Code + // If you change the class to 'public' in order to use it outside its assembly + // you should also change the fields from 'const' to 'public static readonly' + internal static class FluentUI + { + public const string FontFamily = "FluentUI"; + + public const string access_time_20_regular = "\ue000"; + public const string access_time_24_regular = "\uf101"; + public const string accessibility_16_regular = "\uf102"; + public const string accessibility_20_regular = "\uf103"; + public const string accessibility_24_regular = "\uf104"; + public const string accessibility_28_regular = "\uf105"; + public const string accessibility_32_regular = "\ue001"; + public const string accessibility_48_regular = "\ue002"; + public const string accessibility_checkmark_20_regular = "\ue003"; + public const string accessibility_checkmark_24_regular = "\ue004"; + public const string accessibility_checkmark_28_regular = "\uf00a"; + public const string accessibility_checkmark_32_regular = "\uf00b"; + public const string accessibility_checkmark_48_regular = "\uf00c"; + public const string accessibility_error_20_regular = "\U000f0551"; + public const string accessibility_error_24_regular = "\U000f0552"; + public const string accessibility_question_mark_20_regular = "\U000f0553"; + public const string accessibility_question_mark_24_regular = "\U000f0554"; + public const string add_12_regular = "\uf107"; + public const string add_16_regular = "\uf108"; + public const string add_20_regular = "\uf109"; + public const string add_24_regular = "\uf10a"; + public const string add_28_regular = "\uf10b"; + public const string add_32_regular = "\uf58d"; + public const string add_48_regular = "\uf598"; + public const string add_circle_12_regular = "\uf00d"; + public const string add_circle_16_regular = "\ue005"; + public const string add_circle_20_regular = "\uf10c"; + public const string add_circle_24_regular = "\uf10d"; + public const string add_circle_28_regular = "\uf10e"; + public const string add_circle_32_regular = "\ue006"; + public const string add_square_16_regular = "\U000f01e2"; + public const string add_square_20_regular = "\ue007"; + public const string add_square_24_regular = "\uf8ca"; + public const string add_square_28_regular = "\U000f01e3"; + public const string add_square_32_regular = "\U000f01e4"; + public const string add_square_48_regular = "\U000f01e5"; + public const string add_square_multiple_16_regular = "\ue008"; + public const string add_square_multiple_20_regular = "\ue009"; + public const string add_square_multiple_24_regular = "\U000f0266"; + public const string add_subtract_circle_16_regular = "\ue00a"; + public const string add_subtract_circle_20_regular = "\ue00b"; + public const string add_subtract_circle_24_regular = "\ue00c"; + public const string add_subtract_circle_28_regular = "\ue00d"; + public const string add_subtract_circle_48_regular = "\ue00e"; + public const string airplane_20_regular = "\uf10f"; + public const string airplane_24_regular = "\uf110"; + public const string airplane_landing_16_regular = "\ue0ed"; + public const string airplane_landing_20_regular = "\ue0ee"; + public const string airplane_landing_24_regular = "\ue0ef"; + public const string airplane_take_off_16_regular = "\uf111"; + public const string airplane_take_off_20_regular = "\uf112"; + public const string airplane_take_off_24_regular = "\uf113"; + public const string album_20_regular = "\ue00f"; + public const string album_24_regular = "\ue010"; + public const string album_add_20_regular = "\ue011"; + public const string album_add_24_regular = "\ue012"; + public const string alert_12_regular = "\ue013"; + public const string alert_16_regular = "\ue014"; + public const string alert_20_regular = "\uf114"; + public const string alert_24_regular = "\uf115"; + public const string alert_28_regular = "\uf116"; + public const string alert_32_regular = "\ue015"; + public const string alert_48_regular = "\ue016"; + public const string alert_badge_16_regular = "\ue017"; + public const string alert_badge_20_regular = "\ue018"; + public const string alert_badge_24_regular = "\ue019"; + public const string alert_off_16_regular = "\uf117"; + public const string alert_off_20_regular = "\uf118"; + public const string alert_off_24_regular = "\uf119"; + public const string alert_off_28_regular = "\uf11a"; + public const string alert_on_16_regular = "\U000f03d0"; + public const string alert_on_20_regular = "\ue01a"; + public const string alert_on_24_regular = "\uf11b"; + public const string alert_snooze_12_regular = "\ue01b"; + public const string alert_snooze_16_regular = "\ue01c"; + public const string alert_snooze_20_regular = "\uf11c"; + public const string alert_snooze_24_regular = "\uf11d"; + public const string alert_urgent_16_regular = "\ue01d"; + public const string alert_urgent_20_regular = "\uf11e"; + public const string alert_urgent_24_regular = "\uf11f"; + public const string align_bottom_16_regular = "\ue01e"; + public const string align_bottom_20_regular = "\ue01f"; + public const string align_bottom_24_regular = "\ue020"; + public const string align_bottom_28_regular = "\ue021"; + public const string align_bottom_32_regular = "\ue022"; + public const string align_bottom_48_regular = "\ue023"; + public const string align_center_horizontal_16_regular = "\ue024"; + public const string align_center_horizontal_20_regular = "\ue025"; + public const string align_center_horizontal_24_regular = "\ue026"; + public const string align_center_horizontal_28_regular = "\ue027"; + public const string align_center_horizontal_32_regular = "\ue028"; + public const string align_center_horizontal_48_regular = "\ue029"; + public const string align_center_vertical_16_regular = "\ue02a"; + public const string align_center_vertical_20_regular = "\ue02b"; + public const string align_center_vertical_24_regular = "\ue02c"; + public const string align_center_vertical_28_regular = "\ue02d"; + public const string align_center_vertical_32_regular = "\ue02e"; + public const string align_center_vertical_48_regular = "\ue02f"; + public const string align_distribute_bottom_16_regular = "\uf09c"; + public const string align_distribute_left_16_regular = "\uf09d"; + public const string align_distribute_right_16_regular = "\uf09e"; + public const string align_distribute_top_16_regular = "\uf09f"; + public const string align_end_horizontal_20_regular = "\ue030"; + public const string align_end_vertical_20_regular = "\ue031"; + public const string align_left_16_regular = "\ue032"; + public const string align_left_20_regular = "\ue033"; + public const string align_left_24_regular = "\ue034"; + public const string align_left_28_regular = "\ue035"; + public const string align_left_32_regular = "\ue036"; + public const string align_left_48_regular = "\ue037"; + public const string align_right_16_regular = "\ue038"; + public const string align_right_20_regular = "\ue039"; + public const string align_right_24_regular = "\ue03a"; + public const string align_right_28_regular = "\ue03b"; + public const string align_right_32_regular = "\ue03c"; + public const string align_right_48_regular = "\ue03d"; + public const string align_space_around_horizontal_20_regular = "\ue03e"; + public const string align_space_around_vertical_20_regular = "\ue03f"; + public const string align_space_between_horizontal_20_regular = "\ue040"; + public const string align_space_between_vertical_20_regular = "\ue041"; + public const string align_space_evenly_horizontal_20_regular = "\ue042"; + public const string align_space_evenly_horizontal_24_regular = "\ue0f0"; + public const string align_space_evenly_vertical_20_regular = "\ue043"; + public const string align_space_evenly_vertical_24_regular = "\U000f01b5"; + public const string align_space_fit_vertical_20_regular = "\ue044"; + public const string align_start_horizontal_20_regular = "\ue045"; + public const string align_start_vertical_20_regular = "\ue046"; + public const string align_straighten_20_regular = "\U000f01b6"; + public const string align_straighten_24_regular = "\U000f01b7"; + public const string align_stretch_horizontal_16_regular = "\uf0a0"; + public const string align_stretch_horizontal_20_regular = "\ue047"; + public const string align_stretch_vertical_16_regular = "\uf0a1"; + public const string align_stretch_vertical_20_regular = "\ue048"; + public const string align_top_16_regular = "\ue049"; + public const string align_top_20_regular = "\ue04a"; + public const string align_top_24_regular = "\ue04b"; + public const string align_top_28_regular = "\ue04c"; + public const string align_top_32_regular = "\ue04d"; + public const string align_top_48_regular = "\ue04e"; + public const string animal_cat_16_regular = "\uf106"; + public const string animal_cat_20_regular = "\uf126"; + public const string animal_cat_24_regular = "\uf127"; + public const string animal_cat_28_regular = "\uf128"; + public const string animal_dog_16_regular = "\ue04f"; + public const string animal_dog_20_regular = "\uf120"; + public const string animal_dog_24_regular = "\uf121"; + public const string animal_rabbit_16_regular = "\ue050"; + public const string animal_rabbit_20_regular = "\ue051"; + public const string animal_rabbit_24_regular = "\ue052"; + public const string animal_rabbit_28_regular = "\ue053"; + public const string animal_rabbit_32_regular = "\ueec1"; + public const string animal_rabbit_off_20_regular = "\ueee4"; + public const string animal_rabbit_off_32_regular = "\ueee5"; + public const string animal_turtle_16_regular = "\ue054"; + public const string animal_turtle_20_regular = "\ue055"; + public const string animal_turtle_24_regular = "\ue056"; + public const string animal_turtle_28_regular = "\ue057"; + public const string app_folder_16_regular = "\ue058"; + public const string app_folder_20_regular = "\uf122"; + public const string app_folder_24_regular = "\uf123"; + public const string app_folder_28_regular = "\ue059"; + public const string app_folder_32_regular = "\ue05a"; + public const string app_folder_48_regular = "\ue05b"; + public const string app_generic_20_regular = "\ue05c"; + public const string app_generic_24_regular = "\uf124"; + public const string app_generic_32_regular = "\uefb9"; + public const string app_generic_48_regular = "\U000f015e"; + public const string app_recent_20_regular = "\ue05d"; + public const string app_recent_24_regular = "\uf125"; + public const string app_store_24_regular = "\uf12a"; + public const string app_title_20_regular = "\ue05e"; + public const string app_title_24_regular = "\uf12b"; + public const string approvals_app_16_regular = "\ue05f"; + public const string approvals_app_20_regular = "\ue060"; + public const string approvals_app_24_regular = "\uf130"; + public const string approvals_app_28_regular = "\uf131"; + public const string approvals_app_32_regular = "\ue061"; + public const string apps_16_regular = "\uf132"; + public const string apps_20_regular = "\uf133"; + public const string apps_24_regular = "\uf134"; + public const string apps_28_regular = "\uf135"; + public const string apps_32_regular = "\ueebd"; + public const string apps_48_regular = "\uf599"; + public const string apps_add_in_16_regular = "\ue062"; + public const string apps_add_in_20_regular = "\uf136"; + public const string apps_add_in_24_regular = "\uf137"; + public const string apps_add_in_28_regular = "\ue063"; + public const string apps_list_20_regular = "\uf8cb"; + public const string apps_list_24_regular = "\uf138"; + public const string apps_list_detail_20_regular = "\ue064"; + public const string apps_list_detail_24_regular = "\ue065"; + public const string apps_settings_16_regular = "\U000f059c"; + public const string apps_settings_20_regular = "\U000f059d"; + public const string apps_shield_16_regular = "\U000f059e"; + public const string apps_shield_20_regular = "\U000f059f"; + public const string archive_16_regular = "\uf8cc"; + public const string archive_20_regular = "\uf139"; + public const string archive_24_regular = "\uf13a"; + public const string archive_28_regular = "\uf13b"; + public const string archive_32_regular = "\ue066"; + public const string archive_48_regular = "\uf13c"; + public const string archive_arrow_back_16_regular = "\ue067"; + public const string archive_arrow_back_20_regular = "\ue068"; + public const string archive_arrow_back_24_regular = "\ue069"; + public const string archive_arrow_back_28_regular = "\ue06a"; + public const string archive_arrow_back_32_regular = "\ue06b"; + public const string archive_arrow_back_48_regular = "\ue06c"; + public const string archive_multiple_16_regular = "\ue06d"; + public const string archive_multiple_20_regular = "\ue06e"; + public const string archive_multiple_24_regular = "\ue06f"; + public const string archive_settings_16_regular = "\uf129"; + public const string archive_settings_20_regular = "\ue070"; + public const string archive_settings_24_regular = "\ue071"; + public const string archive_settings_28_regular = "\ue072"; + public const string archive_settings_32_regular = "\U000f0423"; + public const string arrow_autofit_content_20_regular = "\ue073"; + public const string arrow_autofit_content_24_regular = "\ue074"; + public const string arrow_autofit_down_20_regular = "\ue075"; + public const string arrow_autofit_down_24_regular = "\ue076"; + public const string arrow_autofit_height_20_regular = "\ue077"; + public const string arrow_autofit_height_24_regular = "\uf8cd"; + public const string arrow_autofit_height_dotted_20_regular = "\ue078"; + public const string arrow_autofit_height_dotted_24_regular = "\ue079"; + public const string arrow_autofit_height_in_20_regular = "\U000f010e"; + public const string arrow_autofit_height_in_24_regular = "\U000f010f"; + public const string arrow_autofit_up_20_regular = "\ue07a"; + public const string arrow_autofit_up_24_regular = "\ue07b"; + public const string arrow_autofit_width_20_regular = "\ue07c"; + public const string arrow_autofit_width_24_regular = "\uf8ce"; + public const string arrow_autofit_width_dotted_20_regular = "\ue07d"; + public const string arrow_autofit_width_dotted_24_regular = "\ue07e"; + public const string arrow_between_down_20_regular = "\ue07f"; + public const string arrow_between_down_24_regular = "\ue080"; + public const string arrow_between_up_20_regular = "\ue081"; + public const string arrow_bidirectional_left_right_16_regular = "\U000f02a0"; + public const string arrow_bidirectional_left_right_20_regular = "\U000f02a1"; + public const string arrow_bidirectional_left_right_24_regular = "\U000f02a2"; + public const string arrow_bidirectional_left_right_28_regular = "\U000f02a3"; + public const string arrow_bidirectional_up_down_12_regular = "\ue082"; + public const string arrow_bidirectional_up_down_16_regular = "\ue083"; + public const string arrow_bidirectional_up_down_20_regular = "\ue084"; + public const string arrow_bidirectional_up_down_24_regular = "\ue085"; + public const string arrow_bounce_16_regular = "\ue086"; + public const string arrow_bounce_20_regular = "\ue087"; + public const string arrow_bounce_24_regular = "\ue088"; + public const string arrow_circle_down_12_regular = "\ue089"; + public const string arrow_circle_down_16_regular = "\ue08a"; + public const string arrow_circle_down_20_regular = "\uf12c"; + public const string arrow_circle_down_24_regular = "\uf12d"; + public const string arrow_circle_down_28_regular = "\ue08b"; + public const string arrow_circle_down_32_regular = "\ue08c"; + public const string arrow_circle_down_48_regular = "\ue08d"; + public const string arrow_circle_down_double_20_regular = "\uf12e"; + public const string arrow_circle_down_double_24_regular = "\uf12f"; + public const string arrow_circle_down_right_16_regular = "\ue08e"; + public const string arrow_circle_down_right_20_regular = "\ue08f"; + public const string arrow_circle_down_right_24_regular = "\ue090"; + public const string arrow_circle_down_split_20_regular = "\uf143"; + public const string arrow_circle_down_split_24_regular = "\uf144"; + public const string arrow_circle_down_up_20_regular = "\ue091"; + public const string arrow_circle_left_12_regular = "\ue092"; + public const string arrow_circle_left_16_regular = "\ue093"; + public const string arrow_circle_left_20_regular = "\ue094"; + public const string arrow_circle_left_24_regular = "\ue095"; + public const string arrow_circle_left_28_regular = "\ue096"; + public const string arrow_circle_left_32_regular = "\ue097"; + public const string arrow_circle_left_48_regular = "\ue098"; + public const string arrow_circle_right_12_regular = "\ue099"; + public const string arrow_circle_right_16_regular = "\ue09a"; + public const string arrow_circle_right_20_regular = "\ue09b"; + public const string arrow_circle_right_24_regular = "\ue09c"; + public const string arrow_circle_right_28_regular = "\ue09d"; + public const string arrow_circle_right_32_regular = "\ue09e"; + public const string arrow_circle_right_48_regular = "\ue09f"; + public const string arrow_circle_up_12_regular = "\ue0a0"; + public const string arrow_circle_up_16_regular = "\ue0a1"; + public const string arrow_circle_up_20_regular = "\ue0a2"; + public const string arrow_circle_up_24_regular = "\ue0a3"; + public const string arrow_circle_up_28_regular = "\ue0a4"; + public const string arrow_circle_up_32_regular = "\ue0a5"; + public const string arrow_circle_up_48_regular = "\ue0a6"; + public const string arrow_circle_up_left_20_regular = "\ue0a7"; + public const string arrow_circle_up_left_24_regular = "\ue0a8"; + public const string arrow_circle_up_right_20_regular = "\U000f00ce"; + public const string arrow_circle_up_right_24_regular = "\U000f00cf"; + public const string arrow_clockwise_12_regular = "\ue0a9"; + public const string arrow_clockwise_16_regular = "\ue0aa"; + public const string arrow_clockwise_20_regular = "\uf13d"; + public const string arrow_clockwise_24_regular = "\uf13e"; + public const string arrow_clockwise_28_regular = "\ue0ab"; + public const string arrow_clockwise_32_regular = "\ue0ac"; + public const string arrow_clockwise_48_regular = "\ue0ad"; + public const string arrow_clockwise_dashes_16_regular = "\U000f0462"; + public const string arrow_clockwise_dashes_20_regular = "\ue0ae"; + public const string arrow_clockwise_dashes_24_regular = "\ue0af"; + public const string arrow_clockwise_dashes_32_regular = "\U000f0463"; + public const string arrow_collapse_all_16_regular = "\U000f0621"; + public const string arrow_collapse_all_20_regular = "\ue0b0"; + public const string arrow_collapse_all_24_regular = "\ue0b1"; + public const string arrow_counterclockwise_12_regular = "\ue0b2"; + public const string arrow_counterclockwise_16_regular = "\ue0b3"; + public const string arrow_counterclockwise_20_regular = "\uf13f"; + public const string arrow_counterclockwise_24_regular = "\uf140"; + public const string arrow_counterclockwise_28_regular = "\uf8cf"; + public const string arrow_counterclockwise_32_regular = "\ue0b4"; + public const string arrow_counterclockwise_48_regular = "\ue0b5"; + public const string arrow_counterclockwise_dashes_20_regular = "\ue0b6"; + public const string arrow_counterclockwise_dashes_24_regular = "\ue0b7"; + public const string arrow_curve_down_left_16_regular = "\ue0b8"; + public const string arrow_curve_down_left_20_regular = "\uf141"; + public const string arrow_curve_down_left_24_regular = "\ue0b9"; + public const string arrow_curve_down_left_28_regular = "\ue0ba"; + public const string arrow_curve_down_right_20_regular = "\uf142"; + public const string arrow_curve_up_left_20_regular = "\uf145"; + public const string arrow_curve_up_right_20_regular = "\uf146"; + public const string arrow_down_12_regular = "\uf8d0"; + public const string arrow_down_16_regular = "\uf147"; + public const string arrow_down_20_regular = "\uf148"; + public const string arrow_down_24_regular = "\uf149"; + public const string arrow_down_28_regular = "\uf14a"; + public const string arrow_down_32_regular = "\uf14c"; + public const string arrow_down_48_regular = "\uf14d"; + public const string arrow_down_exclamation_16_regular = "\U000f03d1"; + public const string arrow_down_exclamation_20_regular = "\U000f03d2"; + public const string arrow_down_exclamation_24_regular = "\U000f0555"; + public const string arrow_down_left_16_regular = "\uf8d1"; + public const string arrow_down_left_20_regular = "\ue0bb"; + public const string arrow_down_left_24_regular = "\uf14b"; + public const string arrow_down_left_32_regular = "\ue0bc"; + public const string arrow_down_left_48_regular = "\ue0bd"; + public const string arrow_download_16_regular = "\uf14f"; + public const string arrow_download_20_regular = "\uf150"; + public const string arrow_download_24_regular = "\uf151"; + public const string arrow_download_28_regular = "\U000f0380"; + public const string arrow_download_32_regular = "\U000f0381"; + public const string arrow_download_48_regular = "\uf152"; + public const string arrow_download_off_16_regular = "\U000f03a8"; + public const string arrow_download_off_20_regular = "\U000f03a9"; + public const string arrow_download_off_24_regular = "\U000f03aa"; + public const string arrow_download_off_28_regular = "\U000f03ab"; + public const string arrow_download_off_32_regular = "\U000f03ac"; + public const string arrow_download_off_48_regular = "\U000f03ad"; + public const string arrow_eject_20_regular = "\ue0be"; + public const string arrow_enter_16_regular = "\U000f015f"; + public const string arrow_enter_20_regular = "\ue0bf"; + public const string arrow_enter_left_20_regular = "\ue0c0"; + public const string arrow_enter_left_24_regular = "\ue0c1"; + public const string arrow_enter_up_20_regular = "\ue0c2"; + public const string arrow_enter_up_24_regular = "\ue0c3"; + public const string arrow_exit_20_regular = "\ue0c4"; + public const string arrow_expand_16_regular = "\U000f0382"; + public const string arrow_expand_20_regular = "\ue0c5"; + public const string arrow_expand_24_regular = "\uf154"; + public const string arrow_expand_all_16_regular = "\U000f0622"; + public const string arrow_expand_all_20_regular = "\U000f0623"; + public const string arrow_expand_all_24_regular = "\U000f0624"; + public const string arrow_export_ltr_16_regular = "\ue0c6"; + public const string arrow_export_ltr_20_regular = "\ue0c7"; + public const string arrow_export_ltr_24_regular = "\ue0c8"; + public const string arrow_export_rtl_16_regular = "\ue0c9"; + public const string arrow_export_rtl_20_regular = "\uf8d2"; + public const string arrow_export_rtl_24_regular = "\ue0ca"; + public const string arrow_export_up_16_regular = "\U000f0383"; + public const string arrow_export_up_20_regular = "\ue0cb"; + public const string arrow_export_up_24_regular = "\ue0cc"; + public const string arrow_fit_16_regular = "\uf14e"; + public const string arrow_fit_20_regular = "\ue0cd"; + public const string arrow_fit_24_regular = "\U000f03d3"; + public const string arrow_fit_in_16_regular = "\ue0ce"; + public const string arrow_fit_in_20_regular = "\ue0cf"; + public const string arrow_fit_in_24_regular = "\U000f03d4"; + public const string arrow_flow_diagonal_up_right_16_regular = "\U000f01b8"; + public const string arrow_flow_diagonal_up_right_20_regular = "\U000f01b9"; + public const string arrow_flow_diagonal_up_right_24_regular = "\U000f01ba"; + public const string arrow_flow_diagonal_up_right_32_regular = "\U000f01bb"; + public const string arrow_flow_up_right_16_regular = "\U000f01bc"; + public const string arrow_flow_up_right_20_regular = "\U000f01bd"; + public const string arrow_flow_up_right_24_regular = "\U000f01be"; + public const string arrow_flow_up_right_32_regular = "\U000f01bf"; + public const string arrow_flow_up_right_rectangle_multiple_20_regular = "\U000f01c0"; + public const string arrow_flow_up_right_rectangle_multiple_24_regular = "\U000f01c1"; + public const string arrow_forward_16_regular = "\uf156"; + public const string arrow_forward_20_regular = "\uf157"; + public const string arrow_forward_24_regular = "\uf158"; + public const string arrow_forward_28_regular = "\ue0d0"; + public const string arrow_forward_32_regular = "\U000f0424"; + public const string arrow_forward_48_regular = "\ue0d1"; + public const string arrow_forward_down_lightning_20_regular = "\ue0d2"; + public const string arrow_forward_down_lightning_24_regular = "\ue0d3"; + public const string arrow_forward_down_person_20_regular = "\ue0d4"; + public const string arrow_forward_down_person_24_regular = "\ue0d5"; + public const string arrow_hook_down_left_16_regular = "\uf8d5"; + public const string arrow_hook_down_left_20_regular = "\uf8d6"; + public const string arrow_hook_down_left_24_regular = "\uf8d7"; + public const string arrow_hook_down_left_28_regular = "\uf8d8"; + public const string arrow_hook_down_right_16_regular = "\uf8d9"; + public const string arrow_hook_down_right_20_regular = "\uf8da"; + public const string arrow_hook_down_right_24_regular = "\uf8db"; + public const string arrow_hook_down_right_28_regular = "\uf8dc"; + public const string arrow_hook_up_left_16_regular = "\uf8dd"; + public const string arrow_hook_up_left_20_regular = "\uf8de"; + public const string arrow_hook_up_left_24_regular = "\uf8df"; + public const string arrow_hook_up_left_28_regular = "\uf8e0"; + public const string arrow_hook_up_right_16_regular = "\uf8e1"; + public const string arrow_hook_up_right_20_regular = "\uf8e2"; + public const string arrow_hook_up_right_24_regular = "\uf8e3"; + public const string arrow_hook_up_right_28_regular = "\uf8e4"; + public const string arrow_import_16_regular = "\U000f0384"; + public const string arrow_import_20_regular = "\uf159"; + public const string arrow_import_24_regular = "\uf15a"; + public const string arrow_join_20_regular = "\ue0d6"; + public const string arrow_left_12_regular = "\ue0d7"; + public const string arrow_left_16_regular = "\uf184"; + public const string arrow_left_20_regular = "\uf15b"; + public const string arrow_left_24_regular = "\uf15c"; + public const string arrow_left_28_regular = "\uf15d"; + public const string arrow_left_32_regular = "\uf189"; + public const string arrow_left_48_regular = "\uf19e"; + public const string arrow_maximize_16_regular = "\uf15e"; + public const string arrow_maximize_20_regular = "\uf15f"; + public const string arrow_maximize_24_regular = "\uf160"; + public const string arrow_maximize_28_regular = "\uf161"; + public const string arrow_maximize_32_regular = "\ue0d8"; + public const string arrow_maximize_48_regular = "\ue0d9"; + public const string arrow_maximize_vertical_20_regular = "\uf162"; + public const string arrow_maximize_vertical_24_regular = "\uf163"; + public const string arrow_maximize_vertical_48_regular = "\ue0da"; + public const string arrow_minimize_16_regular = "\uf164"; + public const string arrow_minimize_20_regular = "\uf165"; + public const string arrow_minimize_24_regular = "\uf166"; + public const string arrow_minimize_28_regular = "\uf167"; + public const string arrow_minimize_vertical_20_regular = "\ue0db"; + public const string arrow_minimize_vertical_24_regular = "\uf168"; + public const string arrow_move_20_regular = "\uf8e5"; + public const string arrow_move_24_regular = "\uf169"; + public const string arrow_move_inward_20_regular = "\ue0dc"; + public const string arrow_next_12_regular = "\ue0dd"; + public const string arrow_next_16_regular = "\uf0a2"; + public const string arrow_next_20_regular = "\uf16a"; + public const string arrow_next_24_regular = "\uf16b"; + public const string arrow_outline_down_left_16_regular = "\U000f01fd"; + public const string arrow_outline_down_left_20_regular = "\U000f01fe"; + public const string arrow_outline_down_left_24_regular = "\U000f01ff"; + public const string arrow_outline_down_left_28_regular = "\U000f0200"; + public const string arrow_outline_down_left_32_regular = "\U000f0201"; + public const string arrow_outline_down_left_48_regular = "\U000f0202"; + public const string arrow_outline_up_right_20_regular = "\ue0de"; + public const string arrow_outline_up_right_24_regular = "\ue0df"; + public const string arrow_outline_up_right_32_regular = "\ue0e0"; + public const string arrow_outline_up_right_48_regular = "\ue0e1"; + public const string text_paragraph_16_regular = "\ued41"; + public const string arrow_paragraph_20_regular = "\ue0e2"; + public const string text_paragraph_24_regular = "\ued43"; + public const string arrow_previous_12_regular = "\ue0e3"; + public const string arrow_previous_16_regular = "\uf0a3"; + public const string arrow_previous_20_regular = "\uf16c"; + public const string arrow_previous_24_regular = "\uf16d"; + public const string arrow_redo_16_regular = "\ue0e4"; + public const string arrow_redo_20_regular = "\uf16e"; + public const string arrow_redo_24_regular = "\uf16f"; + public const string arrow_redo_28_regular = "\ue0e5"; + public const string arrow_redo_32_regular = "\uf8e6"; + public const string arrow_redo_48_regular = "\uf8e7"; + public const string arrow_repeat_1_16_regular = "\uef32"; + public const string arrow_repeat_1_20_regular = "\uef33"; + public const string arrow_repeat_1_24_regular = "\uef34"; + public const string arrow_repeat_all_16_regular = "\uf170"; + public const string arrow_repeat_all_20_regular = "\uf171"; + public const string arrow_repeat_all_24_regular = "\uf172"; + public const string arrow_repeat_all_off_16_regular = "\uf173"; + public const string arrow_repeat_all_off_20_regular = "\uf174"; + public const string arrow_repeat_all_off_24_regular = "\uf175"; + public const string arrow_reply_16_regular = "\uf176"; + public const string arrow_reply_20_regular = "\uf177"; + public const string arrow_reply_24_regular = "\uf178"; + public const string arrow_reply_28_regular = "\ue0e6"; + public const string arrow_reply_32_regular = "\U000f0425"; + public const string arrow_reply_48_regular = "\uf179"; + public const string arrow_reply_all_16_regular = "\uf17a"; + public const string arrow_reply_all_20_regular = "\uf17b"; + public const string arrow_reply_all_24_regular = "\uf17c"; + public const string arrow_reply_all_28_regular = "\ue0e7"; + public const string arrow_reply_all_32_regular = "\U000f0426"; + public const string arrow_reply_all_48_regular = "\uf17d"; + public const string arrow_reply_down_16_regular = "\uf17e"; + public const string arrow_reply_down_20_regular = "\uf17f"; + public const string arrow_reply_down_24_regular = "\uf180"; + public const string arrow_reset_20_regular = "\uf19f"; + public const string arrow_reset_24_regular = "\uf1a0"; + public const string arrow_reset_32_regular = "\ue0e8"; + public const string arrow_reset_48_regular = "\ue0e9"; + public const string arrow_right_12_regular = "\ue0ea"; + public const string arrow_right_16_regular = "\ue0eb"; + public const string arrow_right_20_regular = "\uf181"; + public const string arrow_right_24_regular = "\uf182"; + public const string arrow_right_28_regular = "\uf183"; + public const string arrow_right_32_regular = "\uf1a2"; + public const string arrow_right_48_regular = "\uf1a7"; + public const string arrow_rotate_clockwise_16_regular = "\ue0ec"; + public const string arrow_rotate_clockwise_20_regular = "\uf185"; + public const string arrow_rotate_clockwise_24_regular = "\uf186"; + public const string arrow_rotate_counterclockwise_20_regular = "\uf187"; + public const string arrow_rotate_counterclockwise_24_regular = "\uf188"; + public const string arrow_shuffle_16_regular = "\uef35"; + public const string arrow_shuffle_20_regular = "\uef36"; + public const string arrow_shuffle_24_regular = "\uef37"; + public const string arrow_shuffle_28_regular = "\uef38"; + public const string arrow_shuffle_32_regular = "\uef39"; + public const string arrow_shuffle_48_regular = "\uef3a"; + public const string arrow_shuffle_off_16_regular = "\uef3b"; + public const string arrow_shuffle_off_20_regular = "\uef3c"; + public const string arrow_shuffle_off_24_regular = "\uef3d"; + public const string arrow_shuffle_off_28_regular = "\uef3e"; + public const string arrow_shuffle_off_32_regular = "\uef3f"; + public const string arrow_shuffle_off_48_regular = "\uef40"; + public const string arrow_sort_16_regular = "\uf1ab"; + public const string arrow_sort_20_regular = "\uf18a"; + public const string arrow_sort_24_regular = "\uf18b"; + public const string arrow_sort_28_regular = "\uf18c"; + public const string arrow_sort_down_16_regular = "\uf1ac"; + public const string arrow_sort_down_20_regular = "\uf805"; + public const string arrow_sort_down_24_regular = "\uf811"; + public const string arrow_sort_down_lines_16_regular = "\uf1ad"; + public const string arrow_sort_down_lines_20_regular = "\ue0f1"; + public const string arrow_sort_down_lines_24_regular = "\ue0f2"; + public const string arrow_sort_up_16_regular = "\uf1b3"; + public const string arrow_sort_up_20_regular = "\uf812"; + public const string arrow_sort_up_24_regular = "\uf821"; + public const string arrow_sort_up_lines_16_regular = "\U000f0556"; + public const string arrow_sort_up_lines_20_regular = "\U000f0557"; + public const string arrow_sort_up_lines_24_regular = "\U000f0558"; + public const string arrow_split_16_regular = "\ue0f3"; + public const string arrow_split_20_regular = "\ue0f4"; + public const string arrow_split_24_regular = "\ue0f5"; + public const string arrow_sprint_16_regular = "\U000f0160"; + public const string arrow_sprint_20_regular = "\U000f0161"; + public const string arrow_square_down_20_regular = "\ue0f6"; + public const string arrow_square_down_24_regular = "\ue0f7"; + public const string arrow_square_up_right_20_regular = "\U000f01c2"; + public const string arrow_square_up_right_24_regular = "\U000f01c3"; + public const string arrow_step_back_16_regular = "\ue0f8"; + public const string arrow_step_back_20_regular = "\ue0f9"; + public const string arrow_step_in_12_regular = "\ue0fa"; + public const string arrow_step_in_16_regular = "\ue0fb"; + public const string arrow_step_in_20_regular = "\ue0fc"; + public const string arrow_step_in_24_regular = "\ue0fd"; + public const string arrow_step_in_28_regular = "\ue0fe"; + public const string arrow_step_in_diagonal_down_left_16_regular = "\U000f0203"; + public const string arrow_step_in_diagonal_down_left_20_regular = "\U000f0204"; + public const string arrow_step_in_diagonal_down_left_24_regular = "\U000f0205"; + public const string arrow_step_in_diagonal_down_left_28_regular = "\U000f0206"; + public const string arrow_step_in_left_12_regular = "\ue0ff"; + public const string arrow_step_in_left_16_regular = "\ue100"; + public const string arrow_step_in_left_20_regular = "\ue101"; + public const string arrow_step_in_left_24_regular = "\ue102"; + public const string arrow_step_in_left_28_regular = "\ue103"; + public const string arrow_step_in_right_12_regular = "\ue104"; + public const string arrow_step_in_right_16_regular = "\ue105"; + public const string arrow_step_in_right_20_regular = "\ue106"; + public const string arrow_step_in_right_24_regular = "\ue107"; + public const string arrow_step_in_right_28_regular = "\ue108"; + public const string arrow_step_out_12_regular = "\ue109"; + public const string arrow_step_out_16_regular = "\ue10a"; + public const string arrow_step_out_20_regular = "\ue10b"; + public const string arrow_step_out_24_regular = "\ue10c"; + public const string arrow_step_out_28_regular = "\ue10d"; + public const string arrow_step_over_16_regular = "\ue10e"; + public const string arrow_step_over_20_regular = "\ue10f"; + public const string arrow_swap_16_regular = "\U000f02a4"; + public const string arrow_swap_20_regular = "\uf18d"; + public const string arrow_swap_24_regular = "\uf18e"; + public const string arrow_swap_28_regular = "\U000f02a5"; + public const string arrow_sync_12_regular = "\uf18f"; + public const string arrow_sync_16_regular = "\ue110"; + public const string arrow_sync_20_regular = "\uf190"; + public const string arrow_sync_24_regular = "\uf191"; + public const string arrow_sync_checkmark_20_regular = "\ue111"; + public const string arrow_sync_checkmark_24_regular = "\ue112"; + public const string arrow_sync_circle_16_regular = "\uf192"; + public const string arrow_sync_circle_20_regular = "\uf193"; + public const string arrow_sync_circle_24_regular = "\uf194"; + public const string arrow_sync_dismiss_20_regular = "\ue113"; + public const string arrow_sync_dismiss_24_regular = "\ue114"; + public const string arrow_sync_off_12_regular = "\uf195"; + public const string arrow_sync_off_16_regular = "\ue115"; + public const string arrow_sync_off_20_regular = "\ue116"; + public const string arrow_trending_12_regular = "\uefd6"; + public const string arrow_trending_16_regular = "\uf196"; + public const string arrow_trending_20_regular = "\uf197"; + public const string arrow_trending_24_regular = "\uf198"; + public const string arrow_trending_checkmark_20_regular = "\ue117"; + public const string arrow_trending_checkmark_24_regular = "\ue118"; + public const string arrow_trending_down_16_regular = "\ue119"; + public const string arrow_trending_down_20_regular = "\ue11a"; + public const string arrow_trending_down_24_regular = "\ue11b"; + public const string arrow_trending_lines_20_regular = "\ue11c"; + public const string arrow_trending_lines_24_regular = "\ue11d"; + public const string arrow_trending_settings_20_regular = "\ue11e"; + public const string arrow_trending_settings_24_regular = "\ue11f"; + public const string arrow_trending_sparkle_20_regular = "\uf59a"; + public const string arrow_trending_sparkle_24_regular = "\uf59b"; + public const string arrow_trending_text_20_regular = "\ue120"; + public const string arrow_trending_text_24_regular = "\ue121"; + public const string arrow_trending_wrench_20_regular = "\ue122"; + public const string arrow_trending_wrench_24_regular = "\ue123"; + public const string arrow_turn_bidirectional_down_right_20_regular = "\ue124"; + public const string arrow_turn_bidirectional_down_right_24_regular = "\uf822"; + public const string arrow_turn_down_left_20_regular = "\uf067"; + public const string arrow_turn_down_left_48_regular = "\uf068"; + public const string arrow_turn_down_right_20_regular = "\uf00e"; + public const string arrow_turn_down_right_48_regular = "\uf00f"; + public const string arrow_turn_down_up_20_regular = "\uf010"; + public const string arrow_turn_down_up_48_regular = "\uf011"; + public const string arrow_turn_left_down_20_regular = "\uf012"; + public const string arrow_turn_left_down_48_regular = "\uf013"; + public const string arrow_turn_left_right_20_regular = "\uf014"; + public const string arrow_turn_left_right_48_regular = "\uf015"; + public const string arrow_turn_left_up_20_regular = "\uf016"; + public const string arrow_turn_left_up_48_regular = "\uf017"; + public const string arrow_turn_right_16_regular = "\U000f05d3"; + public const string arrow_turn_right_20_regular = "\ue125"; + public const string arrow_turn_right_24_regular = "\uf839"; + public const string arrow_turn_right_48_regular = "\uf018"; + public const string arrow_turn_right_down_20_regular = "\uf019"; + public const string arrow_turn_right_down_48_regular = "\uf01a"; + public const string arrow_turn_right_left_20_regular = "\uf01b"; + public const string arrow_turn_right_left_48_regular = "\uf01c"; + public const string arrow_turn_right_up_20_regular = "\uf01d"; + public const string arrow_turn_right_up_48_regular = "\uf01e"; + public const string arrow_turn_up_down_20_regular = "\uf01f"; + public const string arrow_turn_up_down_48_regular = "\uf020"; + public const string arrow_turn_up_left_20_regular = "\uf021"; + public const string arrow_turn_up_left_48_regular = "\uf022"; + public const string arrow_undo_16_regular = "\ue126"; + public const string arrow_undo_20_regular = "\uf199"; + public const string arrow_undo_24_regular = "\uf19a"; + public const string arrow_undo_28_regular = "\ue127"; + public const string arrow_undo_32_regular = "\ue128"; + public const string arrow_undo_48_regular = "\ue129"; + public const string arrow_up_12_regular = "\ue12a"; + public const string arrow_up_16_regular = "\uf1b4"; + public const string arrow_up_20_regular = "\uf19b"; + public const string arrow_up_24_regular = "\uf19c"; + public const string arrow_up_28_regular = "\uf19d"; + public const string arrow_up_32_regular = "\uf1b8"; + public const string arrow_up_48_regular = "\uf1b9"; + public const string arrow_up_exclamation_16_regular = "\U000f0559"; + public const string arrow_up_exclamation_20_regular = "\U000f055a"; + public const string arrow_up_exclamation_24_regular = "\U000f055b"; + public const string arrow_up_left_16_regular = "\ue12b"; + public const string arrow_up_left_20_regular = "\ue12c"; + public const string arrow_up_left_24_regular = "\uf1a1"; + public const string arrow_up_left_48_regular = "\ue12d"; + public const string arrow_up_right_16_regular = "\uf8eb"; + public const string arrow_up_right_20_regular = "\ue12e"; + public const string arrow_up_right_24_regular = "\uf1a3"; + public const string arrow_up_right_32_regular = "\ue12f"; + public const string arrow_up_right_48_regular = "\ue130"; + public const string arrow_up_right_dashes_16_regular = "\U000f0385"; + public const string arrow_up_square_settings_24_regular = "\U000f0207"; + public const string arrow_upload_16_regular = "\ue131"; + public const string arrow_upload_20_regular = "\uf1a4"; + public const string arrow_upload_24_regular = "\uf1a5"; + public const string arrow_upload_32_regular = "\U000f05a0"; + public const string arrow_wrap_20_regular = "\ue132"; + public const string arrow_wrap_off_20_regular = "\ue133"; + public const string arrows_bidirectional_20_regular = "\ue134"; + public const string arrows_bidirectional_24_regular = "\uf1a6"; + public const string attach_12_regular = "\ue135"; + public const string attach_16_regular = "\uf1a8"; + public const string attach_20_regular = "\uf1a9"; + public const string attach_24_regular = "\uf1aa"; + public const string attach_32_regular = "\U000f0427"; + public const string attach_arrow_right_20_regular = "\uf8ec"; + public const string attach_arrow_right_24_regular = "\uf8ed"; + public const string attach_text_20_regular = "\ue136"; + public const string attach_text_24_regular = "\uf8ee"; + public const string auto_fit_height_20_regular = "\ue137"; + public const string auto_fit_height_24_regular = "\ue138"; + public const string auto_fit_width_20_regular = "\ue139"; + public const string auto_fit_width_24_regular = "\ue13a"; + public const string autocorrect_20_regular = "\ue13b"; + public const string autocorrect_24_regular = "\uf1ae"; + public const string autocorrect_32_regular = "\U000f0428"; + public const string autosum_16_regular = "\uf069"; + public const string autosum_20_regular = "\uf1af"; + public const string autosum_24_regular = "\uf1b0"; + public const string backpack_12_regular = "\uf8f0"; + public const string backpack_16_regular = "\uf8f1"; + public const string backpack_20_regular = "\uf8f2"; + public const string backpack_24_regular = "\uf8f3"; + public const string backpack_28_regular = "\uf8f4"; + public const string backpack_32_regular = "\ue13c"; + public const string backpack_48_regular = "\uf8f5"; + public const string backpack_add_20_regular = "\ue13d"; + public const string backpack_add_24_regular = "\ue13e"; + public const string backpack_add_28_regular = "\ue13f"; + public const string backpack_add_48_regular = "\ue140"; + public const string backspace_16_regular = "\U000f00d0"; + public const string backspace_20_regular = "\uf1b1"; + public const string backspace_24_regular = "\uf1b2"; + public const string badge_20_regular = "\ue141"; + public const string badge_24_regular = "\uf1b5"; + public const string balloon_12_regular = "\ue142"; + public const string balloon_16_regular = "\uf8f6"; + public const string balloon_20_regular = "\uf1b6"; + public const string balloon_24_regular = "\uf1b7"; + public const string barcode_scanner_20_regular = "\uf1ba"; + public const string barcode_scanner_24_regular = "\uf1e4"; + public const string battery_0_20_regular = "\uf1bb"; + public const string battery_0_24_regular = "\uf1bc"; + public const string battery_1_20_regular = "\uf1bd"; + public const string battery_1_24_regular = "\uf1be"; + public const string battery_10_16_regular = "\U000f0386"; + public const string battery_10_20_regular = "\ue143"; + public const string battery_10_24_regular = "\ue144"; + public const string battery_2_20_regular = "\uf1bf"; + public const string battery_2_24_regular = "\uf1c0"; + public const string battery_3_20_regular = "\uf1c1"; + public const string battery_3_24_regular = "\uf1c2"; + public const string battery_4_20_regular = "\uf1c3"; + public const string battery_4_24_regular = "\uf1c4"; + public const string battery_5_20_regular = "\uf1c5"; + public const string battery_5_24_regular = "\uf1c6"; + public const string battery_6_20_regular = "\uf1c7"; + public const string battery_6_24_regular = "\uf1c8"; + public const string battery_7_20_regular = "\uf1c9"; + public const string battery_7_24_regular = "\uf1ca"; + public const string battery_8_20_regular = "\uf1cb"; + public const string battery_8_24_regular = "\uf1cc"; + public const string battery_9_20_regular = "\uf1cd"; + public const string battery_9_24_regular = "\uf1ce"; + public const string battery_charge_20_regular = "\uf1cf"; + public const string battery_charge_24_regular = "\uf1d0"; + public const string battery_checkmark_20_regular = "\ue145"; + public const string battery_checkmark_24_regular = "\ue146"; + public const string battery_saver_20_regular = "\uf1d3"; + public const string battery_saver_24_regular = "\uf1d4"; + public const string battery_warning_20_regular = "\ue147"; + public const string battery_warning_24_regular = "\uf1d5"; + public const string beach_16_regular = "\ue148"; + public const string beach_20_regular = "\ue149"; + public const string beach_24_regular = "\ue14a"; + public const string beach_28_regular = "\ue14b"; + public const string beach_32_regular = "\ue14c"; + public const string beach_48_regular = "\ue14d"; + public const string beaker_16_regular = "\uf1d6"; + public const string beaker_20_regular = "\uf1d7"; + public const string beaker_24_regular = "\uf1d8"; + public const string beaker_32_regular = "\ueec0"; + public const string beaker_add_20_regular = "\U000f0338"; + public const string beaker_add_24_regular = "\U000f0339"; + public const string beaker_dismiss_20_regular = "\U000f033a"; + public const string beaker_dismiss_24_regular = "\U000f033b"; + public const string beaker_edit_20_regular = "\uf1e5"; + public const string beaker_edit_24_regular = "\uf1e6"; + public const string beaker_empty_16_regular = "\U000f0387"; + public const string beaker_off_20_regular = "\ueee6"; + public const string beaker_off_32_regular = "\ueee7"; + public const string beaker_settings_16_regular = "\U000f0162"; + public const string beaker_settings_20_regular = "\U000f0163"; + public const string bed_16_regular = "\uf8f7"; + public const string bed_20_regular = "\uf1d9"; + public const string bed_24_regular = "\uf1da"; + public const string bench_20_regular = "\U000f055c"; + public const string bench_24_regular = "\U000f055d"; + public const string bezier_curve_square_12_regular = "\ue14e"; + public const string bezier_curve_square_20_regular = "\ue14f"; + public const string bin_full_20_regular = "\ue150"; + public const string bin_full_24_regular = "\ue151"; + public const string bin_recycle_20_regular = "\U000f01c4"; + public const string bin_recycle_24_regular = "\U000f01c5"; + public const string bin_recycle_full_20_regular = "\U000f01c6"; + public const string bin_recycle_full_24_regular = "\U000f01c7"; + public const string binder_triangle_16_regular = "\U000f0164"; + public const string binder_triangle_20_regular = "\U000f00d1"; + public const string binder_triangle_24_regular = "\U000f00d2"; + public const string binder_triangle_32_regular = "\U000f00d3"; + public const string bluetooth_16_regular = "\uf59c"; + public const string bluetooth_20_regular = "\uf1de"; + public const string bluetooth_24_regular = "\uf1df"; + public const string bluetooth_28_regular = "\uf8f8"; + public const string bluetooth_32_regular = "\uf59d"; + public const string bluetooth_48_regular = "\uf670"; + public const string bluetooth_connected_20_regular = "\ue152"; + public const string bluetooth_connected_24_regular = "\uf1e0"; + public const string bluetooth_disabled_20_regular = "\ue153"; + public const string bluetooth_disabled_24_regular = "\uf1e1"; + public const string bluetooth_searching_20_regular = "\ue154"; + public const string bluetooth_searching_24_regular = "\uf1e2"; + public const string blur_16_regular = "\uf8f9"; + public const string blur_20_regular = "\uf8fa"; + public const string blur_24_regular = "\uf8fb"; + public const string blur_28_regular = "\uf8fc"; + public const string board_16_regular = "\ue155"; + public const string board_20_regular = "\ue156"; + public const string board_24_regular = "\uf1e3"; + public const string board_28_regular = "\ue157"; + public const string board_games_20_regular = "\ue158"; + public const string board_heart_16_regular = "\ue159"; + public const string board_heart_20_regular = "\ue15a"; + public const string board_heart_24_regular = "\ue15b"; + public const string board_split_16_regular = "\ue15c"; + public const string board_split_20_regular = "\ue15d"; + public const string board_split_24_regular = "\ue15e"; + public const string board_split_28_regular = "\ue15f"; + public const string board_split_48_regular = "\ue160"; + public const string book_16_regular = "\U000f0388"; + public const string book_20_regular = "\uf8fd"; + public const string book_24_regular = "\uf8fe"; + public const string book_28_regular = "\U000f05bc"; + public const string book_32_regular = "\U000f03d5"; + public const string book_48_regular = "\U000f05bd"; + public const string book_add_20_regular = "\uf8ff"; + public const string book_add_24_regular = "\ue161"; + public const string book_add_28_regular = "\U000f01ea"; + public const string book_arrow_clockwise_20_regular = "\ue162"; + public const string book_arrow_clockwise_24_regular = "\ue163"; + public const string book_clock_20_regular = "\ue164"; + public const string book_clock_24_regular = "\ue165"; + public const string book_coins_20_regular = "\ue166"; + public const string book_coins_24_regular = "\ue167"; + public const string book_compass_20_regular = "\ue168"; + public const string book_compass_24_regular = "\ue169"; + public const string book_contacts_20_regular = "\ue16a"; + public const string book_contacts_24_regular = "\ue16b"; + public const string book_contacts_28_regular = "\ue16c"; + public const string book_contacts_32_regular = "\ue16d"; + public const string book_database_16_regular = "\U000f03d6"; + public const string book_database_20_regular = "\ue16e"; + public const string book_database_24_regular = "\ue16f"; + public const string book_database_32_regular = "\U000f03d7"; + public const string book_default_28_regular = "\U000f01eb"; + public const string book_dismiss_16_regular = "\U000f0165"; + public const string book_dismiss_20_regular = "\U000f0166"; + public const string book_exclamation_mark_20_regular = "\ue170"; + public const string book_exclamation_mark_24_regular = "\ue171"; + public const string book_globe_20_regular = "\ue172"; + public const string book_globe_24_regular = "\uf1f0"; + public const string book_information_20_regular = "\ue173"; + public const string book_information_24_regular = "\ue174"; + public const string book_letter_20_regular = "\ue175"; + public const string book_letter_24_regular = "\ue176"; + public const string book_number_16_regular = "\uf1f1"; + public const string book_number_20_regular = "\uf1f2"; + public const string book_number_24_regular = "\uf1f3"; + public const string book_open_16_regular = "\ue177"; + public const string book_open_20_regular = "\ue178"; + public const string book_open_24_regular = "\ue179"; + public const string book_open_28_regular = "\ue17a"; + public const string book_open_32_regular = "\ue17b"; + public const string book_open_48_regular = "\ue17c"; + public const string book_open_globe_20_regular = "\ue17d"; + public const string book_open_globe_24_regular = "\ue17e"; + public const string book_open_microphone_20_regular = "\ue17f"; + public const string book_open_microphone_24_regular = "\ue180"; + public const string book_open_microphone_28_regular = "\ue181"; + public const string book_open_microphone_32_regular = "\ue182"; + public const string book_open_microphone_48_regular = "\ue183"; + public const string book_pulse_20_regular = "\ue184"; + public const string book_pulse_24_regular = "\ue185"; + public const string book_question_mark_20_regular = "\ue186"; + public const string book_question_mark_24_regular = "\ue187"; + public const string book_question_mark_rtl_20_regular = "\ue188"; + public const string book_question_mark_rtl_24_regular = "\uf83a"; + public const string book_search_20_regular = "\ue189"; + public const string book_search_24_regular = "\ue18a"; + public const string book_star_20_regular = "\ue18b"; + public const string book_star_24_regular = "\ue18c"; + public const string book_template_20_regular = "\ue18d"; + public const string book_theta_20_regular = "\ue18e"; + public const string book_theta_24_regular = "\ue18f"; + public const string book_toolbox_16_regular = "\U000f03d8"; + public const string book_toolbox_20_regular = "\uf1e7"; + public const string book_toolbox_24_regular = "\ue190"; + public const string bookmark_16_regular = "\uf1f4"; + public const string bookmark_20_regular = "\uf1f5"; + public const string bookmark_24_regular = "\uf1f6"; + public const string bookmark_28_regular = "\uf1f7"; + public const string bookmark_32_regular = "\ue191"; + public const string bookmark_add_20_regular = "\uf1e8"; + public const string bookmark_add_24_regular = "\uf1e9"; + public const string bookmark_multiple_16_regular = "\ue192"; + public const string bookmark_multiple_20_regular = "\ue193"; + public const string bookmark_multiple_24_regular = "\ue194"; + public const string bookmark_multiple_28_regular = "\ue195"; + public const string bookmark_multiple_32_regular = "\ue196"; + public const string bookmark_multiple_48_regular = "\ue197"; + public const string bookmark_off_20_regular = "\ue198"; + public const string bookmark_off_24_regular = "\uf1f8"; + public const string bookmark_search_20_regular = "\ue199"; + public const string bookmark_search_24_regular = "\ue19a"; + public const string border_all_16_regular = "\ue19b"; + public const string border_all_20_regular = "\ue19c"; + public const string border_all_24_regular = "\ue19d"; + public const string border_bottom_20_regular = "\ue19e"; + public const string border_bottom_24_regular = "\ue19f"; + public const string border_bottom_double_20_regular = "\ue1a0"; + public const string border_bottom_double_24_regular = "\ue1a1"; + public const string border_bottom_thick_20_regular = "\ue1a2"; + public const string border_bottom_thick_24_regular = "\ue1a3"; + public const string border_inside_16_regular = "\U000f03ae"; + public const string border_inside_20_regular = "\U000f03af"; + public const string border_inside_24_regular = "\U000f03b0"; + public const string border_left_20_regular = "\ue1a4"; + public const string border_left_24_regular = "\ue1a5"; + public const string border_left_right_20_regular = "\ue1a6"; + public const string border_left_right_24_regular = "\ue1a7"; + public const string border_none_16_regular = "\U000f0389"; + public const string border_none_20_regular = "\ue1a8"; + public const string border_none_24_regular = "\ue1a9"; + public const string border_outside_20_regular = "\ue1aa"; + public const string border_outside_24_regular = "\ue1ab"; + public const string border_outside_thick_20_regular = "\ue1ac"; + public const string border_outside_thick_24_regular = "\ue1ad"; + public const string border_right_20_regular = "\ue1ae"; + public const string border_right_24_regular = "\ue1af"; + public const string border_top_20_regular = "\ue1b0"; + public const string border_top_24_regular = "\ue1b1"; + public const string border_top_bottom_20_regular = "\ue1b2"; + public const string border_top_bottom_24_regular = "\ue1b3"; + public const string border_top_bottom_double_20_regular = "\ue1b4"; + public const string border_top_bottom_double_24_regular = "\ue1b5"; + public const string border_top_bottom_thick_20_regular = "\ue1b6"; + public const string border_top_bottom_thick_24_regular = "\ue1b7"; + public const string bot_20_regular = "\ue1b8"; + public const string bot_24_regular = "\uf1f9"; + public const string bot_add_20_regular = "\ue1b9"; + public const string bot_add_24_regular = "\uf1fa"; + public const string bot_sparkle_20_regular = "\uf6a5"; + public const string bot_sparkle_24_regular = "\uf6a6"; + public const string bow_tie_20_regular = "\U000f00d4"; + public const string bow_tie_24_regular = "\U000f00d5"; + public const string bowl_chopsticks_16_regular = "\uf1ea"; + public const string bowl_chopsticks_20_regular = "\uf1eb"; + public const string bowl_chopsticks_24_regular = "\uf1ec"; + public const string bowl_chopsticks_28_regular = "\uf1ed"; + public const string bowl_salad_20_regular = "\ueee8"; + public const string bowl_salad_24_regular = "\ueee9"; + public const string box_16_regular = "\ue1ba"; + public const string box_20_regular = "\ue1bb"; + public const string box_24_regular = "\ue1bc"; + public const string box_arrow_left_20_regular = "\ue1bd"; + public const string box_arrow_left_24_regular = "\ue1be"; + public const string box_arrow_up_20_regular = "\ue1bf"; + public const string box_arrow_up_24_regular = "\ue1c0"; + public const string box_checkmark_20_regular = "\ue1c1"; + public const string box_checkmark_24_regular = "\ue1c2"; + public const string box_dismiss_20_regular = "\ue1c3"; + public const string box_dismiss_24_regular = "\ue1c4"; + public const string box_edit_20_regular = "\ue1c5"; + public const string box_edit_24_regular = "\ue1c6"; + public const string box_multiple_20_regular = "\ue1c7"; + public const string box_multiple_24_regular = "\ue1c8"; + public const string box_multiple_arrow_left_20_regular = "\ue1c9"; + public const string box_multiple_arrow_left_24_regular = "\ue1ca"; + public const string box_multiple_arrow_right_20_regular = "\ue1cb"; + public const string box_multiple_arrow_right_24_regular = "\ue1cc"; + public const string box_multiple_checkmark_20_regular = "\ue1cd"; + public const string box_multiple_checkmark_24_regular = "\ue1ce"; + public const string box_multiple_search_20_regular = "\ue1cf"; + public const string box_multiple_search_24_regular = "\ue1d0"; + public const string box_search_16_regular = "\uf6a7"; + public const string box_search_20_regular = "\ue1d1"; + public const string box_search_24_regular = "\ue1d2"; + public const string box_toolbox_20_regular = "\ue1d3"; + public const string box_toolbox_24_regular = "\ue1d4"; + public const string braces_16_regular = "\uee90"; + public const string braces_20_regular = "\ue1d5"; + public const string braces_24_regular = "\ue1d6"; + public const string braces_28_regular = "\uee91"; + public const string braces_32_regular = "\uee92"; + public const string braces_48_regular = "\uee93"; + public const string braces_checkmark_16_regular = "\uf0a4"; + public const string braces_dismiss_16_regular = "\uf0a5"; + public const string braces_variable_20_regular = "\ue1d7"; + public const string braces_variable_24_regular = "\ue1d8"; + public const string braces_variable_48_regular = "\U000f0267"; + public const string brain_circuit_20_regular = "\uf1ee"; + public const string brain_circuit_24_regular = "\uf83b"; + public const string branch_16_regular = "\uf0a6"; + public const string branch_20_regular = "\ue1d9"; + public const string branch_24_regular = "\uf1fb"; + public const string branch_compare_16_regular = "\ue1da"; + public const string branch_compare_20_regular = "\ue1db"; + public const string branch_compare_24_regular = "\ue1dc"; + public const string branch_fork_16_regular = "\ue1dd"; + public const string branch_fork_20_regular = "\ue1de"; + public const string branch_fork_24_regular = "\ue1df"; + public const string branch_fork_32_regular = "\uee94"; + public const string branch_fork_hint_20_regular = "\ue1e0"; + public const string branch_fork_hint_24_regular = "\ue1e1"; + public const string branch_fork_link_20_regular = "\ue1e2"; + public const string branch_fork_link_24_regular = "\ue1e3"; + public const string branch_request_16_regular = "\U000f038a"; + public const string branch_request_20_regular = "\ue1e4"; + public const string breakout_room_20_regular = "\ue1e5"; + public const string breakout_room_24_regular = "\ue1e6"; + public const string breakout_room_28_regular = "\ue1e7"; + public const string breakout_room_32_regular = "\U000f05f8"; + public const string briefcase_12_regular = "\ue1e8"; + public const string briefcase_16_regular = "\ue1e9"; + public const string briefcase_20_regular = "\uf1fc"; + public const string briefcase_24_regular = "\uf1fd"; + public const string briefcase_28_regular = "\ue1ea"; + public const string briefcase_32_regular = "\ue1eb"; + public const string briefcase_48_regular = "\ue1ec"; + public const string briefcase_medical_16_regular = "\ue1ed"; + public const string briefcase_medical_20_regular = "\uf1ef"; + public const string briefcase_medical_24_regular = "\ue1ee"; + public const string briefcase_medical_32_regular = "\ue1ef"; + public const string briefcase_off_16_regular = "\ue1f0"; + public const string briefcase_off_20_regular = "\ue1f1"; + public const string briefcase_off_24_regular = "\ue1f2"; + public const string briefcase_off_28_regular = "\ue1f3"; + public const string briefcase_off_32_regular = "\ue1f4"; + public const string briefcase_off_48_regular = "\ue1f5"; + public const string briefcase_person_24_regular = "\U000f0208"; + public const string briefcase_search_20_regular = "\U000f01c8"; + public const string briefcase_search_24_regular = "\U000f01c9"; + public const string brightness_high_16_regular = "\ue1f6"; + public const string brightness_high_20_regular = "\ue1f7"; + public const string brightness_high_24_regular = "\ue1f8"; + public const string brightness_high_28_regular = "\ue1f9"; + public const string brightness_high_32_regular = "\ue1fa"; + public const string brightness_high_48_regular = "\ue1fb"; + public const string brightness_low_16_regular = "\ue1fc"; + public const string brightness_low_20_regular = "\ue1fd"; + public const string brightness_low_24_regular = "\ue1fe"; + public const string brightness_low_28_regular = "\ue1ff"; + public const string brightness_low_32_regular = "\ue200"; + public const string brightness_low_48_regular = "\ue201"; + public const string broad_activity_feed_16_regular = "\ue202"; + public const string broad_activity_feed_20_regular = "\ue203"; + public const string broad_activity_feed_24_regular = "\uf200"; + public const string broom_16_regular = "\uf1fe"; + public const string broom_20_regular = "\uf201"; + public const string broom_24_regular = "\uf202"; + public const string broom_28_regular = "\ue204"; + public const string broom_32_regular = "\U000f0429"; + public const string bubble_multiple_20_regular = "\uf06a"; + public const string bug_16_regular = "\ue205"; + public const string bug_20_regular = "\ue206"; + public const string bug_24_regular = "\ue207"; + public const string bug_arrow_counterclockwise_20_regular = "\ue208"; + public const string bug_prohibited_20_regular = "\ue209"; + public const string building_16_regular = "\ue20a"; + public const string building_20_regular = "\ue20b"; + public const string building_24_regular = "\uf205"; + public const string building_32_regular = "\uf6df"; + public const string building_48_regular = "\uf6e0"; + public const string building_bank_16_regular = "\ue20c"; + public const string building_bank_20_regular = "\ue20d"; + public const string building_bank_24_regular = "\ue20e"; + public const string building_bank_28_regular = "\ue20f"; + public const string building_bank_48_regular = "\ue210"; + public const string building_bank_link_16_regular = "\ue211"; + public const string building_bank_link_20_regular = "\ue212"; + public const string building_bank_link_24_regular = "\ue213"; + public const string building_bank_link_28_regular = "\ue214"; + public const string building_bank_link_48_regular = "\ue215"; + public const string building_bank_toolbox_20_regular = "\uf1ff"; + public const string building_bank_toolbox_24_regular = "\uf83c"; + public const string building_cloud_24_regular = "\U000f0209"; + public const string building_desktop_16_regular = "\uef41"; + public const string building_desktop_20_regular = "\uef42"; + public const string building_desktop_24_regular = "\uef43"; + public const string building_desktop_32_regular = "\U000f03d9"; + public const string building_factory_16_regular = "\ue216"; + public const string building_factory_20_regular = "\ue217"; + public const string building_factory_24_regular = "\ue218"; + public const string building_factory_28_regular = "\ue219"; + public const string building_factory_32_regular = "\ue21a"; + public const string building_factory_48_regular = "\ue21b"; + public const string building_government_16_regular = "\U000f03da"; + public const string building_government_20_regular = "\ue21c"; + public const string building_government_24_regular = "\ue21d"; + public const string building_government_32_regular = "\ue21e"; + public const string building_government_search_16_regular = "\U000f03db"; + public const string building_government_search_20_regular = "\U000f03dc"; + public const string building_government_search_24_regular = "\U000f03dd"; + public const string building_government_search_32_regular = "\U000f03de"; + public const string building_home_16_regular = "\ue21f"; + public const string building_home_20_regular = "\ue220"; + public const string building_home_24_regular = "\ue221"; + public const string building_lighthouse_16_regular = "\U000f04fe"; + public const string building_lighthouse_20_regular = "\ue222"; + public const string building_lighthouse_24_regular = "\U000f04e6"; + public const string building_lighthouse_28_regular = "\U000f055e"; + public const string building_lighthouse_32_regular = "\U000f04e7"; + public const string building_lighthouse_48_regular = "\U000f04e8"; + public const string building_mosque_12_regular = "\U000f02a6"; + public const string building_mosque_16_regular = "\U000f02a7"; + public const string building_mosque_20_regular = "\U000f02a8"; + public const string building_mosque_24_regular = "\U000f02a9"; + public const string building_mosque_28_regular = "\U000f02aa"; + public const string building_mosque_32_regular = "\U000f02ab"; + public const string building_mosque_48_regular = "\U000f02ac"; + public const string building_multiple_20_regular = "\ue223"; + public const string building_multiple_24_regular = "\ue224"; + public const string building_people_16_regular = "\uefd7"; + public const string building_people_20_regular = "\uefd8"; + public const string building_people_24_regular = "\uefd9"; + public const string building_retail_20_regular = "\ue225"; + public const string building_retail_24_regular = "\uf209"; + public const string building_retail_money_20_regular = "\ue226"; + public const string building_retail_money_24_regular = "\ue227"; + public const string building_retail_more_20_regular = "\ue228"; + public const string building_retail_more_24_regular = "\ueeea"; + public const string building_retail_more_32_regular = "\ueec2"; + public const string building_retail_shield_20_regular = "\ue229"; + public const string building_retail_shield_24_regular = "\ue22a"; + public const string building_retail_toolbox_20_regular = "\ue22b"; + public const string building_retail_toolbox_24_regular = "\ue22c"; + public const string building_shop_16_regular = "\ue22d"; + public const string building_shop_20_regular = "\ue22e"; + public const string building_shop_24_regular = "\ue22f"; + public const string building_skyscraper_16_regular = "\ue230"; + public const string building_skyscraper_20_regular = "\ue231"; + public const string building_skyscraper_24_regular = "\ue232"; + public const string building_swap_16_regular = "\U000f0464"; + public const string building_swap_20_regular = "\U000f0465"; + public const string building_swap_24_regular = "\U000f0466"; + public const string building_swap_32_regular = "\U000f0467"; + public const string building_swap_48_regular = "\U000f0468"; + public const string building_townhouse_20_regular = "\uf023"; + public const string building_townhouse_24_regular = "\uf024"; + public const string building_townhouse_32_regular = "\uf025"; + public const string button_16_regular = "\U000f0167"; + public const string button_20_regular = "\U000f0168"; + public const string calculator_16_regular = "\uf06b"; + public const string calculator_20_regular = "\uf20a"; + public const string calculator_24_regular = "\ue233"; + public const string calculator_arrow_clockwise_20_regular = "\ue234"; + public const string calculator_arrow_clockwise_24_regular = "\ue235"; + public const string calculator_multiple_16_regular = "\uf06c"; + public const string calculator_multiple_20_regular = "\ue236"; + public const string calculator_multiple_24_regular = "\ue237"; + public const string calendar_ltr_12_regular = "\ue24c"; + public const string calendar_ltr_16_regular = "\ue24d"; + public const string calendar_ltr_20_regular = "\ue24e"; + public const string calendar_ltr_24_regular = "\ue24f"; + public const string calendar_ltr_28_regular = "\ue250"; + public const string calendar_3_day_16_regular = "\ue238"; + public const string calendar_3_day_20_regular = "\uf20e"; + public const string calendar_3_day_24_regular = "\uf20f"; + public const string calendar_3_day_28_regular = "\uf210"; + public const string calendar_32_regular = "\U000f0287"; + public const string calendar_ltr_48_regular = "\ue252"; + public const string calendar_add_16_regular = "\ue239"; + public const string calendar_add_20_regular = "\uf211"; + public const string calendar_add_24_regular = "\uf212"; + public const string calendar_add_28_regular = "\ue23a"; + public const string calendar_agenda_20_regular = "\uf213"; + public const string calendar_agenda_24_regular = "\uf214"; + public const string calendar_agenda_28_regular = "\uf215"; + public const string calendar_arrow_counterclockwise_16_regular = "\uf0a7"; + public const string calendar_arrow_counterclockwise_20_regular = "\uf0a8"; + public const string calendar_arrow_counterclockwise_24_regular = "\uf0a9"; + public const string calendar_arrow_counterclockwise_28_regular = "\uf0aa"; + public const string calendar_arrow_counterclockwise_32_regular = "\uf0ab"; + public const string calendar_arrow_counterclockwise_48_regular = "\uf0ac"; + public const string calendar_arrow_down_20_regular = "\ue23b"; + public const string calendar_arrow_down_24_regular = "\ue23c"; + public const string calendar_arrow_right_16_regular = "\ue23d"; + public const string calendar_arrow_right_20_regular = "\uf216"; + public const string calendar_arrow_right_24_regular = "\ue23e"; + public const string calendar_assistant_16_regular = "\ue23f"; + public const string calendar_assistant_20_regular = "\uf217"; + public const string calendar_assistant_24_regular = "\uf218"; + public const string calendar_cancel_16_regular = "\ue240"; + public const string calendar_cancel_20_regular = "\uf219"; + public const string calendar_cancel_24_regular = "\uf21a"; + public const string calendar_chat_20_regular = "\ue241"; + public const string calendar_chat_24_regular = "\ue242"; + public const string calendar_checkmark_16_regular = "\uf21b"; + public const string calendar_checkmark_20_regular = "\uf21c"; + public const string calendar_checkmark_24_regular = "\uf8c9"; + public const string calendar_checkmark_28_regular = "\uf85f"; + public const string calendar_clock_16_regular = "\ue243"; + public const string calendar_clock_20_regular = "\uf21d"; + public const string calendar_clock_24_regular = "\uf21e"; + public const string calendar_data_bar_16_regular = "\uee95"; + public const string calendar_data_bar_20_regular = "\uee96"; + public const string calendar_data_bar_24_regular = "\uee97"; + public const string calendar_data_bar_28_regular = "\uee98"; + public const string calendar_date_20_regular = "\U000f0289"; + public const string calendar_date_24_regular = "\U000f028a"; + public const string calendar_date_28_regular = "\U000f028b"; + public const string calendar_day_16_regular = "\ue244"; + public const string calendar_day_20_regular = "\uf222"; + public const string calendar_day_24_regular = "\uf223"; + public const string calendar_day_28_regular = "\uf224"; + public const string calendar_edit_16_regular = "\ue245"; + public const string calendar_edit_20_regular = "\ue246"; + public const string calendar_edit_24_regular = "\ue247"; + public const string calendar_edit_32_regular = "\U000f05a1"; + public const string calendar_empty_16_regular = "\uf225"; + public const string calendar_empty_20_regular = "\uf226"; + public const string calendar_empty_24_regular = "\uf227"; + public const string calendar_empty_28_regular = "\uf228"; + public const string calendar_empty_32_regular = "\ue248"; + public const string calendar_empty_48_regular = "\uef44"; + public const string calendar_error_16_regular = "\uf6e1"; + public const string calendar_error_20_regular = "\ue249"; + public const string calendar_error_24_regular = "\ue24a"; + public const string calendar_eye_20_regular = "\U000f020a"; + public const string calendar_info_16_regular = "\uf203"; + public const string calendar_info_20_regular = "\ue24b"; + public const string calendar_link_24_regular = "\U000f04e9"; + public const string calendar_link_28_regular = "\U000f04ea"; + public const string calendar_lock_16_regular = "\uef45"; + public const string calendar_lock_20_regular = "\uef46"; + public const string calendar_lock_24_regular = "\uef47"; + public const string calendar_lock_28_regular = "\uef48"; + public const string calendar_lock_32_regular = "\uef49"; + public const string calendar_lock_48_regular = "\uef4a"; + public const string calendar_ltr_32_regular = "\ue251"; + public const string calendar_mail_16_regular = "\ue253"; + public const string calendar_mail_20_regular = "\ue254"; + public const string calendar_mention_20_regular = "\ue255"; + public const string calendar_month_20_regular = "\uf22a"; + public const string calendar_month_24_regular = "\uf22b"; + public const string calendar_month_28_regular = "\uf22c"; + public const string calendar_month_32_regular = "\ueec3"; + public const string calendar_multiple_16_regular = "\uf204"; + public const string calendar_multiple_20_regular = "\uf22d"; + public const string calendar_multiple_24_regular = "\uf22e"; + public const string calendar_multiple_28_regular = "\ue256"; + public const string calendar_multiple_32_regular = "\ue257"; + public const string calendar_note_16_regular = "\U000f042a"; + public const string calendar_note_20_regular = "\U000f042b"; + public const string calendar_note_24_regular = "\U000f042c"; + public const string calendar_note_32_regular = "\U000f042d"; + public const string calendar_pattern_16_regular = "\ue258"; + public const string calendar_pattern_20_regular = "\ue259"; + public const string calendar_person_16_regular = "\ue25a"; + public const string calendar_person_20_regular = "\uf230"; + public const string calendar_person_24_regular = "\ue25b"; + public const string calendar_phone_16_regular = "\ue25c"; + public const string calendar_phone_20_regular = "\ue25d"; + public const string calendar_play_16_regular = "\uf0ad"; + public const string calendar_play_20_regular = "\uf0ae"; + public const string calendar_play_24_regular = "\uf0af"; + public const string calendar_play_28_regular = "\uf0b0"; + public const string calendar_question_mark_16_regular = "\ue25e"; + public const string calendar_question_mark_20_regular = "\ue25f"; + public const string calendar_question_mark_24_regular = "\ue260"; + public const string calendar_record_16_regular = "\U000f03df"; + public const string calendar_record_20_regular = "\U000f03e0"; + public const string calendar_record_24_regular = "\U000f03e1"; + public const string calendar_record_28_regular = "\U000f03e2"; + public const string calendar_record_32_regular = "\U000f03e3"; + public const string calendar_record_48_regular = "\U000f03e4"; + public const string calendar_reply_16_regular = "\uf231"; + public const string calendar_reply_20_regular = "\uf232"; + public const string calendar_reply_24_regular = "\uf233"; + public const string calendar_reply_28_regular = "\uf234"; + public const string calendar_rtl_12_regular = "\ue261"; + public const string calendar_rtl_16_regular = "\ue262"; + public const string calendar_rtl_20_regular = "\ue263"; + public const string calendar_rtl_24_regular = "\ue264"; + public const string calendar_rtl_28_regular = "\ue265"; + public const string calendar_rtl_32_regular = "\ue266"; + public const string calendar_rtl_48_regular = "\ue267"; + public const string calendar_search_16_regular = "\uf860"; + public const string calendar_search_20_regular = "\ue268"; + public const string calendar_settings_16_regular = "\ue269"; + public const string calendar_settings_20_regular = "\uf235"; + public const string calendar_settings_24_regular = "\uef4b"; + public const string calendar_settings_28_regular = "\uef4c"; + public const string calendar_settings_32_regular = "\uef4d"; + public const string calendar_settings_48_regular = "\uef4e"; + public const string calendar_shield_16_regular = "\uf0b1"; + public const string calendar_shield_20_regular = "\uf0b2"; + public const string calendar_shield_24_regular = "\uf0b3"; + public const string calendar_shield_28_regular = "\uf0b4"; + public const string calendar_shield_32_regular = "\uf0b5"; + public const string calendar_shield_48_regular = "\uf0b6"; + public const string calendar_sparkle_16_regular = "\U000f04ff"; + public const string calendar_sparkle_20_regular = "\U000f0500"; + public const string calendar_sparkle_24_regular = "\U000f0501"; + public const string calendar_sparkle_28_regular = "\U000f0502"; + public const string calendar_sparkle_32_regular = "\U000f0503"; + public const string calendar_sparkle_48_regular = "\U000f0504"; + public const string calendar_star_16_regular = "\ue26a"; + public const string calendar_star_20_regular = "\uf236"; + public const string calendar_star_24_regular = "\uf237"; + public const string calendar_sync_16_regular = "\uf238"; + public const string calendar_sync_20_regular = "\uf239"; + public const string calendar_sync_24_regular = "\uf23a"; + public const string calendar_template_20_regular = "\U000f0505"; + public const string calendar_template_24_regular = "\U000f0506"; + public const string calendar_template_32_regular = "\U000f0507"; + public const string calendar_today_16_regular = "\uf23b"; + public const string calendar_today_20_regular = "\uf23c"; + public const string calendar_today_24_regular = "\uf23d"; + public const string calendar_today_28_regular = "\uf23e"; + public const string calendar_toolbox_20_regular = "\ue26b"; + public const string calendar_toolbox_24_regular = "\ue26c"; + public const string calendar_video_20_regular = "\U000f055f"; + public const string calendar_video_24_regular = "\U000f04eb"; + public const string calendar_video_28_regular = "\U000f04ec"; + public const string calendar_week_numbers_20_regular = "\ue26d"; + public const string calendar_week_numbers_24_regular = "\uf23f"; + public const string calendar_week_start_20_regular = "\uf240"; + public const string calendar_week_start_24_regular = "\uf241"; + public const string calendar_week_start_28_regular = "\uf242"; + public const string calendar_work_week_16_regular = "\uf243"; + public const string calendar_work_week_20_regular = "\uf244"; + public const string calendar_work_week_24_regular = "\uf245"; + public const string calendar_work_week_28_regular = "\ue26e"; + public const string call_12_regular = "\uef4f"; + public const string call_16_regular = "\ue26f"; + public const string call_20_regular = "\ue270"; + public const string call_24_regular = "\ue271"; + public const string call_28_regular = "\ue272"; + public const string call_32_regular = "\ue273"; + public const string call_48_regular = "\ue274"; + public const string call_add_16_regular = "\ue275"; + public const string call_add_20_regular = "\ue276"; + public const string call_add_24_regular = "\uf246"; + public const string call_checkmark_20_regular = "\uf207"; + public const string call_checkmark_24_regular = "\ue277"; + public const string call_connecting_20_regular = "\ue278"; + public const string call_dismiss_16_regular = "\ue279"; + public const string call_dismiss_20_regular = "\uf208"; + public const string call_dismiss_24_regular = "\uf20b"; + public const string call_end_12_regular = "\U000f02fa"; + public const string call_end_16_regular = "\ue27a"; + public const string call_end_20_regular = "\uf247"; + public const string call_end_24_regular = "\uf248"; + public const string call_end_28_regular = "\uf249"; + public const string call_end_32_regular = "\U000f02fb"; + public const string call_end_48_regular = "\U000f02fc"; + public const string call_exclamation_20_regular = "\ue27b"; + public const string call_forward_16_regular = "\ue27c"; + public const string call_forward_20_regular = "\ue27d"; + public const string call_forward_24_regular = "\uf24a"; + public const string call_forward_28_regular = "\ue27e"; + public const string call_forward_32_regular = "\uf6e7"; + public const string call_forward_48_regular = "\ue27f"; + public const string call_inbound_16_regular = "\uf24b"; + public const string call_inbound_20_regular = "\ue280"; + public const string call_inbound_24_regular = "\uf24c"; + public const string call_inbound_28_regular = "\ue281"; + public const string call_inbound_48_regular = "\ue282"; + public const string call_missed_12_regular = "\uef50"; + public const string call_missed_16_regular = "\uf24d"; + public const string call_missed_20_regular = "\ue283"; + public const string call_missed_24_regular = "\uf24e"; + public const string call_missed_28_regular = "\ue284"; + public const string call_missed_48_regular = "\ue285"; + public const string call_outbound_16_regular = "\uf24f"; + public const string call_outbound_20_regular = "\ue286"; + public const string call_outbound_24_regular = "\uf250"; + public const string call_outbound_28_regular = "\ue287"; + public const string call_outbound_48_regular = "\ue288"; + public const string call_park_16_regular = "\ue289"; + public const string call_park_20_regular = "\ue28a"; + public const string call_park_24_regular = "\uf251"; + public const string call_park_28_regular = "\ue28b"; + public const string call_park_32_regular = "\uf861"; + public const string call_park_48_regular = "\ue28c"; + public const string call_pause_20_regular = "\uf20c"; + public const string call_pause_24_regular = "\uf20d"; + public const string call_prohibited_16_regular = "\ue28d"; + public const string call_prohibited_20_regular = "\ue28e"; + public const string call_prohibited_24_regular = "\ue28f"; + public const string call_prohibited_28_regular = "\ue290"; + public const string call_prohibited_48_regular = "\ue291"; + public const string call_transfer_16_regular = "\ue292"; + public const string call_transfer_20_regular = "\ue293"; + public const string call_transfer_24_regular = "\uf0b7"; + public const string call_transfer_32_regular = "\uf0b8"; + public const string call_warning_16_regular = "\ue294"; + public const string call_warning_20_regular = "\ue295"; + public const string calligraphy_pen_20_regular = "\uf252"; + public const string calligraphy_pen_24_regular = "\uf253"; + public const string calligraphy_pen_checkmark_20_regular = "\ue296"; + public const string calligraphy_pen_error_20_regular = "\ue297"; + public const string calligraphy_pen_question_mark_20_regular = "\ue298"; + public const string camera_16_regular = "\ue299"; + public const string camera_20_regular = "\uf254"; + public const string camera_24_regular = "\uf255"; + public const string camera_28_regular = "\uf256"; + public const string camera_add_20_regular = "\uf257"; + public const string camera_add_24_regular = "\uf258"; + public const string camera_add_48_regular = "\uf259"; + public const string camera_arrow_up_16_regular = "\U000f05be"; + public const string camera_arrow_up_20_regular = "\U000f05bf"; + public const string camera_arrow_up_24_regular = "\U000f05c0"; + public const string camera_dome_16_regular = "\ue29a"; + public const string camera_dome_20_regular = "\ue29b"; + public const string camera_dome_24_regular = "\ue29c"; + public const string camera_dome_28_regular = "\ue29d"; + public const string camera_dome_48_regular = "\ue29e"; + public const string camera_edit_20_regular = "\ue29f"; + public const string camera_off_16_regular = "\uf0b9"; + public const string camera_off_20_regular = "\ue2a0"; + public const string camera_off_24_regular = "\ue2a1"; + public const string camera_sparkles_16_regular = "\uf06d"; + public const string camera_sparkles_20_regular = "\uf026"; + public const string camera_sparkles_24_regular = "\uf027"; + public const string camera_switch_20_regular = "\ue2a2"; + public const string camera_switch_24_regular = "\uf25a"; + public const string card_ui_20_regular = "\U000f0169"; + public const string card_ui_24_regular = "\U000f016a"; + public const string card_ui_portrait_flip_16_regular = "\U000f05f9"; + public const string card_ui_portrait_flip_20_regular = "\U000f05fa"; + public const string card_ui_portrait_flip_24_regular = "\U000f05fb"; + public const string caret_down_12_regular = "\uf25f"; + public const string caret_down_16_regular = "\uf260"; + public const string caret_down_20_regular = "\uf261"; + public const string caret_down_24_regular = "\uf262"; + public const string caret_down_right_12_regular = "\ue2a3"; + public const string caret_down_right_16_regular = "\ue2a4"; + public const string caret_down_right_20_regular = "\ue2a5"; + public const string caret_down_right_24_regular = "\ue2a6"; + public const string caret_left_12_regular = "\uf263"; + public const string caret_left_16_regular = "\uf264"; + public const string caret_left_20_regular = "\uf265"; + public const string caret_left_24_regular = "\uf266"; + public const string caret_right_12_regular = "\uf267"; + public const string caret_right_16_regular = "\uf268"; + public const string caret_right_20_regular = "\uf269"; + public const string caret_right_24_regular = "\uf26a"; + public const string caret_up_12_regular = "\ue2a7"; + public const string caret_up_16_regular = "\ue2a8"; + public const string caret_up_20_regular = "\ue2a9"; + public const string caret_up_24_regular = "\ue2aa"; + public const string cart_16_regular = "\ue2ab"; + public const string cart_20_regular = "\ue2ac"; + public const string cart_24_regular = "\uf26b"; + public const string cast_20_regular = "\uf26c"; + public const string cast_24_regular = "\uf26d"; + public const string cast_28_regular = "\uf26e"; + public const string cast_multiple_20_regular = "\U000f02d0"; + public const string cast_multiple_24_regular = "\U000f02d1"; + public const string cast_multiple_28_regular = "\U000f02d2"; + public const string catch_up_16_regular = "\ue2ad"; + public const string catch_up_20_regular = "\ue2ae"; + public const string catch_up_24_regular = "\ue2af"; + public const string cd_16_regular = "\uf0ba"; + public const string cellular_3g_20_regular = "\ue2b0"; + public const string cellular_3g_24_regular = "\uf26f"; + public const string cellular_4g_20_regular = "\ue2b1"; + public const string cellular_4g_24_regular = "\uf270"; + public const string cellular_5g_20_regular = "\ue2b2"; + public const string cellular_5g_24_regular = "\ue2b3"; + public const string cellular_data_1_20_regular = "\uf271"; + public const string cellular_data_1_24_regular = "\uf272"; + public const string cellular_data_2_20_regular = "\uf273"; + public const string cellular_data_2_24_regular = "\uf274"; + public const string cellular_data_3_20_regular = "\uf275"; + public const string cellular_data_3_24_regular = "\uf276"; + public const string cellular_data_4_20_regular = "\uf277"; + public const string cellular_data_4_24_regular = "\uf278"; + public const string cellular_data_5_20_regular = "\uf279"; + public const string cellular_data_5_24_regular = "\uf27a"; + public const string cellular_off_20_regular = "\ue2b4"; + public const string cellular_off_24_regular = "\ue2b5"; + public const string cellular_warning_20_regular = "\ue2b6"; + public const string cellular_warning_24_regular = "\ue2b7"; + public const string center_horizontal_20_regular = "\ue2b8"; + public const string center_horizontal_24_regular = "\ue2b9"; + public const string center_vertical_20_regular = "\ue2ba"; + public const string center_vertical_24_regular = "\ue2bb"; + public const string certificate_16_regular = "\uf0bb"; + public const string certificate_20_regular = "\uf27e"; + public const string certificate_24_regular = "\uf27f"; + public const string certificate_32_regular = "\U000f0469"; + public const string channel_16_regular = "\uf280"; + public const string channel_20_regular = "\uf281"; + public const string channel_24_regular = "\uf282"; + public const string channel_28_regular = "\ue2bc"; + public const string channel_48_regular = "\ue2bd"; + public const string channel_add_16_regular = "\ue2be"; + public const string channel_add_20_regular = "\ue2bf"; + public const string channel_add_24_regular = "\ue2c0"; + public const string channel_add_28_regular = "\ue2c1"; + public const string channel_add_48_regular = "\ue2c2"; + public const string channel_alert_16_regular = "\ue2c3"; + public const string channel_alert_20_regular = "\ue2c4"; + public const string channel_alert_24_regular = "\ue2c5"; + public const string channel_alert_28_regular = "\ue2c6"; + public const string channel_alert_48_regular = "\ue2c7"; + public const string channel_arrow_left_16_regular = "\ue2c8"; + public const string channel_arrow_left_20_regular = "\ue2c9"; + public const string channel_arrow_left_24_regular = "\ue2ca"; + public const string channel_arrow_left_28_regular = "\ue2cb"; + public const string channel_arrow_left_48_regular = "\ue2cc"; + public const string channel_dismiss_16_regular = "\ue2cd"; + public const string channel_dismiss_20_regular = "\ue2ce"; + public const string channel_dismiss_24_regular = "\ue2cf"; + public const string channel_dismiss_28_regular = "\ue2d0"; + public const string channel_dismiss_48_regular = "\ue2d1"; + public const string channel_share_12_regular = "\ue2d2"; + public const string channel_share_16_regular = "\ue2d3"; + public const string channel_share_20_regular = "\ue2d4"; + public const string channel_share_24_regular = "\ue2d5"; + public const string channel_share_28_regular = "\ue2d6"; + public const string channel_share_48_regular = "\ue2d7"; + public const string channel_subtract_16_regular = "\ue2d8"; + public const string channel_subtract_20_regular = "\ue2d9"; + public const string channel_subtract_24_regular = "\ue2da"; + public const string channel_subtract_28_regular = "\ue2db"; + public const string channel_subtract_48_regular = "\ue2dc"; + public const string chart_multiple_16_regular = "\U000f05d4"; + public const string chart_multiple_20_regular = "\ue2dd"; + public const string chart_multiple_24_regular = "\ue2de"; + public const string chart_person_20_regular = "\ue2df"; + public const string chart_person_24_regular = "\ue2e0"; + public const string chart_person_28_regular = "\ue2e1"; + public const string chart_person_48_regular = "\ue2e2"; + public const string chat_12_regular = "\ue2e3"; + public const string chat_16_regular = "\ue2e4"; + public const string chat_20_regular = "\uf286"; + public const string chat_24_regular = "\uf287"; + public const string chat_28_regular = "\uf288"; + public const string chat_32_regular = "\ue2e5"; + public const string chat_48_regular = "\ue2e6"; + public const string chat_add_16_regular = "\uef51"; + public const string chat_add_20_regular = "\uef52"; + public const string chat_add_24_regular = "\uef53"; + public const string chat_add_28_regular = "\uef54"; + public const string chat_add_32_regular = "\uef55"; + public const string chat_add_48_regular = "\uef56"; + public const string chat_arrow_back_16_regular = "\ue2e7"; + public const string chat_arrow_back_20_regular = "\ue2e8"; + public const string chat_arrow_back_down_16_regular = "\U000f0625"; + public const string chat_arrow_back_down_20_regular = "\U000f0626"; + public const string chat_arrow_back_down_24_regular = "\U000f0627"; + public const string chat_arrow_back_down_28_regular = "\U000f0628"; + public const string chat_arrow_back_down_32_regular = "\U000f0629"; + public const string chat_arrow_back_down_48_regular = "\U000f062a"; + public const string chat_arrow_double_back_16_regular = "\ue2e9"; + public const string chat_arrow_double_back_20_regular = "\ue2ea"; + public const string chat_bubbles_question_16_regular = "\uf8a8"; + public const string chat_bubbles_question_20_regular = "\ue2eb"; + public const string chat_bubbles_question_24_regular = "\uf289"; + public const string chat_bubbles_question_28_regular = "\uf02a"; + public const string chat_bubbles_question_32_regular = "\uf02b"; + public const string chat_cursor_16_regular = "\uef57"; + public const string chat_cursor_20_regular = "\uef58"; + public const string chat_cursor_24_regular = "\uef59"; + public const string chat_dismiss_16_regular = "\ue2ec"; + public const string chat_dismiss_20_regular = "\ue2ed"; + public const string chat_dismiss_24_regular = "\ue2ee"; + public const string chat_empty_12_regular = "\uef5a"; + public const string chat_empty_16_regular = "\uef5b"; + public const string chat_empty_20_regular = "\uef5c"; + public const string chat_empty_24_regular = "\uef5d"; + public const string chat_empty_28_regular = "\uef5e"; + public const string chat_empty_32_regular = "\uef5f"; + public const string chat_empty_48_regular = "\uef60"; + public const string chat_help_20_regular = "\uf220"; + public const string chat_help_24_regular = "\uf28a"; + public const string chat_lock_16_regular = "\U000f03b1"; + public const string chat_lock_20_regular = "\U000f03b2"; + public const string chat_lock_24_regular = "\U000f03b3"; + public const string chat_lock_28_regular = "\U000f03b4"; + public const string chat_mail_20_regular = "\ue2ef"; + public const string chat_multiple_16_regular = "\uf8a9"; + public const string chat_multiple_20_regular = "\uf8c8"; + public const string chat_multiple_24_regular = "\uf8d3"; + public const string chat_multiple_28_regular = "\uecdb"; + public const string chat_multiple_32_regular = "\uecdc"; + public const string chat_multiple_heart_16_regular = "\uf793"; + public const string chat_multiple_heart_20_regular = "\uf794"; + public const string chat_multiple_heart_24_regular = "\uf7cf"; + public const string chat_multiple_heart_28_regular = "\uf7d0"; + public const string chat_multiple_heart_32_regular = "\uf7d1"; + public const string chat_off_20_regular = "\ue2f0"; + public const string chat_off_24_regular = "\uf28b"; + public const string chat_settings_16_regular = "\U000f05c1"; + public const string chat_settings_20_regular = "\uf221"; + public const string chat_settings_24_regular = "\uf229"; + public const string chat_sparkle_16_regular = "\uf7d2"; + public const string chat_sparkle_20_regular = "\uf7d3"; + public const string chat_sparkle_24_regular = "\uf7d4"; + public const string chat_sparkle_28_regular = "\uf7d5"; + public const string chat_sparkle_32_regular = "\uf7d6"; + public const string chat_sparkle_48_regular = "\uf7f2"; + public const string chat_video_20_regular = "\ue2f1"; + public const string chat_video_24_regular = "\ue2f2"; + public const string chat_warning_16_regular = "\ue2f3"; + public const string chat_warning_20_regular = "\ue2f4"; + public const string chat_warning_24_regular = "\uf28c"; + public const string check_20_regular = "\uf27b"; + public const string check_24_regular = "\ue2f5"; + public const string checkbox_1_20_regular = "\ue2f6"; + public const string checkbox_1_24_regular = "\ue2f7"; + public const string checkbox_2_20_regular = "\ue2f8"; + public const string checkbox_2_24_regular = "\ue2f9"; + public const string checkbox_arrow_right_20_regular = "\ue2fa"; + public const string checkbox_arrow_right_24_regular = "\ue2fb"; + public const string checkbox_checked_16_regular = "\uf27c"; + public const string checkbox_checked_20_regular = "\uf28d"; + public const string checkbox_checked_24_regular = "\uf28e"; + public const string checkbox_checked_sync_16_regular = "\uf27d"; + public const string checkbox_checked_sync_20_regular = "\ue2fc"; + public const string checkbox_indeterminate_16_regular = "\ue2fd"; + public const string checkbox_indeterminate_20_regular = "\ue2fe"; + public const string checkbox_indeterminate_24_regular = "\ue2ff"; + public const string checkbox_person_16_regular = "\ue300"; + public const string checkbox_person_20_regular = "\ue301"; + public const string checkbox_person_24_regular = "\ue302"; + public const string square_12_regular = "\ueb73"; + public const string square_16_regular = "\ueb74"; + public const string square_24_regular = "\ueb76"; + public const string checkbox_warning_20_regular = "\ue303"; + public const string checkbox_warning_24_regular = "\ue304"; + public const string checkmark_12_regular = "\uf293"; + public const string checkmark_16_regular = "\ue305"; + public const string checkmark_20_regular = "\uf294"; + public const string checkmark_24_regular = "\uf295"; + public const string checkmark_28_regular = "\uf296"; + public const string checkmark_32_regular = "\uf8d4"; + public const string checkmark_48_regular = "\ue306"; + public const string checkmark_circle_12_regular = "\ue307"; + public const string checkmark_circle_16_regular = "\uf297"; + public const string checkmark_circle_20_regular = "\uf298"; + public const string checkmark_circle_24_regular = "\uf299"; + public const string checkmark_circle_32_regular = "\uf8e8"; + public const string checkmark_circle_48_regular = "\uf29a"; + public const string checkmark_circle_square_16_regular = "\U000f02ad"; + public const string checkmark_circle_square_20_regular = "\U000f02ae"; + public const string checkmark_circle_square_24_regular = "\U000f02af"; + public const string checkmark_circle_warning_16_regular = "\U000f0521"; + public const string checkmark_circle_warning_20_regular = "\U000f0522"; + public const string checkmark_circle_warning_24_regular = "\U000f0523"; + public const string checkmark_lock_16_regular = "\uf29b"; + public const string checkmark_lock_20_regular = "\uf29c"; + public const string checkmark_lock_24_regular = "\uf29d"; + public const string checkmark_note_20_regular = "\ue308"; + public const string checkmark_square_20_regular = "\ue309"; + public const string checkmark_square_24_regular = "\uf29e"; + public const string checkmark_starburst_16_regular = "\uf283"; + public const string checkmark_starburst_20_regular = "\ue30a"; + public const string checkmark_starburst_24_regular = "\ue30b"; + public const string checkmark_underline_circle_16_regular = "\uf29f"; + public const string checkmark_underline_circle_20_regular = "\uf2a0"; + public const string checkmark_underline_circle_24_regular = "\U000f042e"; + public const string chess_20_regular = "\ue30c"; + public const string chevron_circle_down_12_regular = "\ue30d"; + public const string chevron_circle_down_16_regular = "\ue30e"; + public const string chevron_circle_down_20_regular = "\ue30f"; + public const string chevron_circle_down_24_regular = "\ue310"; + public const string chevron_circle_down_28_regular = "\ue311"; + public const string chevron_circle_down_32_regular = "\ue312"; + public const string chevron_circle_down_48_regular = "\ue313"; + public const string chevron_circle_left_12_regular = "\ue314"; + public const string chevron_circle_left_16_regular = "\ue315"; + public const string chevron_circle_left_20_regular = "\ue316"; + public const string chevron_circle_left_24_regular = "\ue317"; + public const string chevron_circle_left_28_regular = "\ue318"; + public const string chevron_circle_left_32_regular = "\ue319"; + public const string chevron_circle_left_48_regular = "\ue31a"; + public const string chevron_circle_right_12_regular = "\ue31b"; + public const string chevron_circle_right_16_regular = "\ue31c"; + public const string chevron_circle_right_20_regular = "\ue31d"; + public const string chevron_circle_right_24_regular = "\ue31e"; + public const string chevron_circle_right_28_regular = "\ue31f"; + public const string chevron_circle_right_32_regular = "\ue320"; + public const string chevron_circle_right_48_regular = "\ue321"; + public const string chevron_circle_up_12_regular = "\ue322"; + public const string chevron_circle_up_16_regular = "\ue323"; + public const string chevron_circle_up_20_regular = "\ue324"; + public const string chevron_circle_up_24_regular = "\ue325"; + public const string chevron_circle_up_28_regular = "\ue326"; + public const string chevron_circle_up_32_regular = "\ue327"; + public const string chevron_circle_up_48_regular = "\ue328"; + public const string chevron_double_down_16_regular = "\uf284"; + public const string chevron_double_down_20_regular = "\ue329"; + public const string chevron_double_left_16_regular = "\uf285"; + public const string chevron_double_left_20_regular = "\ue32a"; + public const string chevron_double_right_16_regular = "\uf2a7"; + public const string chevron_double_right_20_regular = "\ue32b"; + public const string chevron_double_up_16_regular = "\ue32c"; + public const string chevron_double_up_20_regular = "\ue32d"; + public const string chevron_down_12_regular = "\uf2a1"; + public const string chevron_down_16_regular = "\uf2a2"; + public const string chevron_down_20_regular = "\uf2a3"; + public const string chevron_down_24_regular = "\uf2a4"; + public const string chevron_down_28_regular = "\uf2a5"; + public const string chevron_down_32_regular = "\U000f0320"; + public const string chevron_down_48_regular = "\uf2a6"; + public const string chevron_down_up_16_regular = "\U000f016b"; + public const string chevron_down_up_20_regular = "\U000f016c"; + public const string chevron_down_up_24_regular = "\U000f016d"; + public const string chevron_left_12_regular = "\uf2a8"; + public const string chevron_left_16_regular = "\uf2a9"; + public const string chevron_left_20_regular = "\uf2aa"; + public const string chevron_left_24_regular = "\uf2ab"; + public const string chevron_left_28_regular = "\uf2ac"; + public const string chevron_left_32_regular = "\U000f0321"; + public const string chevron_left_48_regular = "\uf2ad"; + public const string chevron_right_12_regular = "\uf2ae"; + public const string chevron_right_16_regular = "\uf2af"; + public const string chevron_right_20_regular = "\uf2b0"; + public const string chevron_right_24_regular = "\uf2b1"; + public const string chevron_right_28_regular = "\uf2b2"; + public const string chevron_right_32_regular = "\U000f0322"; + public const string chevron_right_48_regular = "\uf2b3"; + public const string chevron_up_12_regular = "\uf2b4"; + public const string chevron_up_16_regular = "\uf2b5"; + public const string chevron_up_20_regular = "\uf2b6"; + public const string chevron_up_24_regular = "\uf2b7"; + public const string chevron_up_28_regular = "\uf2b8"; + public const string chevron_up_32_regular = "\U000f0323"; + public const string chevron_up_48_regular = "\uf2b9"; + public const string chevron_up_down_16_regular = "\ue32e"; + public const string chevron_up_down_20_regular = "\ue32f"; + public const string chevron_up_down_24_regular = "\ue330"; + public const string circle_12_regular = "\ue331"; + public const string circle_16_regular = "\uf2ba"; + public const string circle_20_regular = "\uf2bb"; + public const string circle_24_regular = "\uf2bc"; + public const string circle_28_regular = "\U000f00d6"; + public const string circle_32_regular = "\ue332"; + public const string circle_48_regular = "\ue333"; + public const string circle_edit_20_regular = "\ue334"; + public const string circle_edit_24_regular = "\ue335"; + public const string circle_eraser_20_regular = "\ue336"; + public const string circle_half_fill_12_regular = "\ue337"; + public const string circle_half_fill_16_regular = "\uf30a"; + public const string circle_half_fill_20_regular = "\uf2bd"; + public const string circle_half_fill_24_regular = "\uf2be"; + public const string circle_highlight_20_regular = "\U000f05c2"; + public const string circle_highlight_24_regular = "\U000f05c3"; + public const string circle_hint_16_regular = "\U000f0110"; + public const string circle_hint_20_regular = "\U000f0111"; + public const string circle_hint_24_regular = "\U000f05c4"; + public const string circle_hint_half_vertical_16_regular = "\U000f02d3"; + public const string circle_hint_half_vertical_20_regular = "\U000f02d4"; + public const string circle_hint_half_vertical_24_regular = "\U000f02d5"; + public const string circle_image_16_regular = "\uef61"; + public const string circle_image_20_regular = "\ue338"; + public const string circle_image_24_regular = "\uef62"; + public const string circle_image_28_regular = "\uef63"; + public const string circle_line_12_regular = "\ue339"; + public const string circle_line_16_regular = "\U000f01ca"; + public const string circle_line_20_regular = "\ue33a"; + public const string circle_line_24_regular = "\uf2bf"; + public const string circle_multiple_subtract_checkmark_20_regular = "\ue33b"; + public const string circle_off_16_regular = "\ue33c"; + public const string circle_off_20_regular = "\ue33d"; + public const string circle_shadow_20_regular = "\U000f05c5"; + public const string circle_shadow_24_regular = "\U000f05c6"; + public const string circle_small_20_regular = "\ue33e"; + public const string circle_small_24_regular = "\uf2c0"; + public const string city_16_regular = "\uf2c1"; + public const string city_20_regular = "\uf2c2"; + public const string city_24_regular = "\uf2c3"; + public const string class_20_regular = "\ue33f"; + public const string class_24_regular = "\uf2c4"; + public const string classification_16_regular = "\uf2c5"; + public const string classification_20_regular = "\uf2c6"; + public const string classification_24_regular = "\uf2c7"; + public const string classification_32_regular = "\U000f0580"; + public const string clear_formatting_16_regular = "\ue340"; + public const string clear_formatting_20_regular = "\ue341"; + public const string clear_formatting_24_regular = "\uf2c8"; + public const string clipboard_12_regular = "\U000f0508"; + public const string clipboard_16_regular = "\ue342"; + public const string clipboard_20_regular = "\uf2c9"; + public const string clipboard_24_regular = "\uf2ca"; + public const string clipboard_28_regular = "\U000f03e5"; + public const string clipboard_3_day_16_regular = "\uee99"; + public const string clipboard_3_day_20_regular = "\uee9a"; + public const string clipboard_3_day_24_regular = "\uee9b"; + public const string clipboard_32_regular = "\ue343"; + public const string clipboard_48_regular = "\U000f0509"; + public const string clipboard_arrow_right_16_regular = "\ue344"; + public const string clipboard_arrow_right_20_regular = "\ue345"; + public const string clipboard_arrow_right_24_regular = "\ue346"; + public const string clipboard_brush_16_regular = "\U000f046a"; + public const string clipboard_brush_20_regular = "\U000f046b"; + public const string clipboard_brush_24_regular = "\U000f046c"; + public const string clipboard_brush_28_regular = "\U000f046d"; + public const string clipboard_brush_32_regular = "\U000f046e"; + public const string clipboard_bullet_list_ltr_16_regular = "\ue347"; + public const string clipboard_bullet_list_ltr_20_regular = "\ue348"; + public const string clipboard_bullet_list_rtl_16_regular = "\ue349"; + public const string clipboard_bullet_list_rtl_20_regular = "\ue34a"; + public const string clipboard_checkmark_16_regular = "\uf7f3"; + public const string clipboard_checkmark_20_regular = "\ue34b"; + public const string clipboard_checkmark_24_regular = "\ue34c"; + public const string clipboard_clock_20_regular = "\ue34d"; + public const string clipboard_clock_24_regular = "\ue34e"; + public const string clipboard_code_16_regular = "\uf2cb"; + public const string clipboard_code_20_regular = "\uf2cc"; + public const string clipboard_code_24_regular = "\uf2cd"; + public const string clipboard_data_bar_20_regular = "\ue34f"; + public const string clipboard_data_bar_24_regular = "\ue350"; + public const string clipboard_data_bar_32_regular = "\ue351"; + public const string clipboard_day_16_regular = "\uee9c"; + public const string clipboard_day_20_regular = "\uee9d"; + public const string clipboard_day_24_regular = "\uee9e"; + public const string clipboard_edit_20_regular = "\ue352"; + public const string clipboard_error_16_regular = "\uf0bc"; + public const string clipboard_error_20_regular = "\ue353"; + public const string clipboard_error_24_regular = "\ue354"; + public const string clipboard_heart_20_regular = "\uf30b"; + public const string clipboard_heart_24_regular = "\ue355"; + public const string clipboard_image_20_regular = "\ue356"; + public const string clipboard_image_24_regular = "\ue357"; + public const string clipboard_letter_16_regular = "\uf2ce"; + public const string clipboard_letter_20_regular = "\uf2cf"; + public const string clipboard_letter_24_regular = "\uf2d0"; + public const string clipboard_link_16_regular = "\uf2d1"; + public const string clipboard_link_20_regular = "\uf2d2"; + public const string clipboard_link_24_regular = "\uf2d3"; + public const string clipboard_math_formula_16_regular = "\U000f03e6"; + public const string clipboard_math_formula_20_regular = "\U000f03e7"; + public const string clipboard_math_formula_24_regular = "\U000f03e8"; + public const string clipboard_math_formula_28_regular = "\U000f03e9"; + public const string clipboard_math_formula_32_regular = "\U000f03ea"; + public const string clipboard_month_16_regular = "\uee9f"; + public const string clipboard_month_20_regular = "\ueea0"; + public const string clipboard_month_24_regular = "\ueea1"; + public const string clipboard_more_20_regular = "\ue358"; + public const string clipboard_more_24_regular = "\uf2d4"; + public const string clipboard_multiple_16_regular = "\uf0bd"; + public const string clipboard_note_16_regular = "\uf0be"; + public const string clipboard_note_20_regular = "\ue359"; + public const string clipboard_number_123_16_regular = "\U000f03eb"; + public const string clipboard_number_123_20_regular = "\U000f03ec"; + public const string clipboard_number_123_24_regular = "\U000f03ed"; + public const string clipboard_number_123_28_regular = "\U000f03ee"; + public const string clipboard_number_123_32_regular = "\U000f03ef"; + public const string clipboard_paste_16_regular = "\ue35a"; + public const string clipboard_paste_20_regular = "\uf2d5"; + public const string clipboard_paste_24_regular = "\uf2d6"; + public const string clipboard_paste_32_regular = "\U000f020b"; + public const string clipboard_pulse_20_regular = "\uf322"; + public const string clipboard_pulse_24_regular = "\ue35b"; + public const string clipboard_search_20_regular = "\uf2d7"; + public const string clipboard_search_24_regular = "\uf2d8"; + public const string clipboard_settings_20_regular = "\uf32d"; + public const string clipboard_settings_24_regular = "\ue35c"; + public const string clipboard_task_16_regular = "\uf0bf"; + public const string clipboard_task_20_regular = "\ue35d"; + public const string clipboard_task_24_regular = "\ue35e"; + public const string clipboard_task_add_20_regular = "\ue35f"; + public const string clipboard_task_add_24_regular = "\ue360"; + public const string clipboard_task_list_16_regular = "\U000f038b"; + public const string clipboard_task_list_ltr_20_regular = "\ue361"; + public const string clipboard_task_list_ltr_24_regular = "\ue362"; + public const string clipboard_task_list_rtl_20_regular = "\ue363"; + public const string clipboard_task_list_rtl_24_regular = "\ue364"; + public const string clipboard_text_32_regular = "\ue365"; + public const string clipboard_text_edit_20_regular = "\ue366"; + public const string clipboard_text_edit_24_regular = "\ue367"; + public const string clipboard_text_edit_32_regular = "\ue368"; + public const string clipboard_text_ltr_16_regular = "\uf0c0"; + public const string clipboard_text_ltr_20_regular = "\ue369"; + public const string clipboard_text_ltr_24_regular = "\ue36a"; + public const string clipboard_text_rtl_16_regular = "\uf0c1"; + public const string clipboard_text_rtl_20_regular = "\ue36c"; + public const string clipboard_text_rtl_24_regular = "\ue36d"; + public const string clock_12_regular = "\uf2db"; + public const string clock_16_regular = "\uf2dc"; + public const string clock_20_regular = "\uf2dd"; + public const string clock_24_regular = "\uf2de"; + public const string clock_28_regular = "\uf2df"; + public const string clock_32_regular = "\ue36e"; + public const string clock_48_regular = "\uf2e0"; + public const string clock_alarm_16_regular = "\ue36f"; + public const string clock_alarm_20_regular = "\uf2e1"; + public const string clock_alarm_24_regular = "\uf2e2"; + public const string clock_alarm_32_regular = "\ue370"; + public const string clock_arrow_download_20_regular = "\uf32e"; + public const string clock_arrow_download_24_regular = "\ue371"; + public const string clock_bill_16_regular = "\U000f0560"; + public const string clock_bill_20_regular = "\U000f0561"; + public const string clock_bill_24_regular = "\U000f0562"; + public const string clock_bill_32_regular = "\U000f0563"; + public const string clock_dismiss_20_regular = "\ue372"; + public const string clock_dismiss_24_regular = "\ue373"; + public const string clock_lock_16_regular = "\uf819"; + public const string clock_lock_20_regular = "\uf81a"; + public const string clock_lock_24_regular = "\uf83d"; + public const string clock_pause_20_regular = "\ue374"; + public const string clock_pause_24_regular = "\ue375"; + public const string clock_toolbox_20_regular = "\ue376"; + public const string clock_toolbox_24_regular = "\ue377"; + public const string closed_caption_16_regular = "\ue378"; + public const string closed_caption_20_regular = "\ue379"; + public const string closed_caption_24_regular = "\uf2e3"; + public const string closed_caption_28_regular = "\ue37a"; + public const string closed_caption_32_regular = "\ue37b"; + public const string closed_caption_48_regular = "\ue37c"; + public const string closed_caption_off_16_regular = "\ue37d"; + public const string closed_caption_off_20_regular = "\ue37e"; + public const string closed_caption_off_24_regular = "\ue37f"; + public const string closed_caption_off_28_regular = "\ue380"; + public const string closed_caption_off_48_regular = "\ue381"; + public const string cloud_16_regular = "\ue382"; + public const string cloud_20_regular = "\uf2e4"; + public const string cloud_24_regular = "\uf2e5"; + public const string cloud_28_regular = "\ue383"; + public const string cloud_32_regular = "\ue384"; + public const string cloud_48_regular = "\uf2e6"; + public const string cloud_add_16_regular = "\uf32f"; + public const string cloud_add_20_regular = "\ue385"; + public const string cloud_add_24_regular = "\uf0c2"; + public const string cloud_archive_16_regular = "\ue386"; + public const string cloud_archive_20_regular = "\ue387"; + public const string cloud_archive_24_regular = "\ue388"; + public const string cloud_archive_28_regular = "\ue389"; + public const string cloud_archive_32_regular = "\ue38a"; + public const string cloud_archive_48_regular = "\ue38b"; + public const string cloud_arrow_down_16_regular = "\ue38c"; + public const string cloud_arrow_down_20_regular = "\ue38d"; + public const string cloud_arrow_down_24_regular = "\ue38e"; + public const string cloud_arrow_down_28_regular = "\ue38f"; + public const string cloud_arrow_down_32_regular = "\ue390"; + public const string cloud_arrow_down_48_regular = "\ue391"; + public const string cloud_arrow_right_16_regular = "\U000f0524"; + public const string cloud_arrow_right_20_regular = "\U000f0525"; + public const string cloud_arrow_right_24_regular = "\U000f0526"; + public const string cloud_arrow_up_16_regular = "\ue392"; + public const string cloud_arrow_up_20_regular = "\ue393"; + public const string cloud_arrow_up_24_regular = "\ue394"; + public const string cloud_arrow_up_28_regular = "\ue395"; + public const string cloud_arrow_up_32_regular = "\ue396"; + public const string cloud_arrow_up_48_regular = "\ue397"; + public const string cloud_beaker_16_regular = "\U000f046f"; + public const string cloud_beaker_20_regular = "\U000f0470"; + public const string cloud_beaker_24_regular = "\U000f0471"; + public const string cloud_beaker_28_regular = "\U000f0472"; + public const string cloud_beaker_32_regular = "\U000f0473"; + public const string cloud_beaker_48_regular = "\U000f0474"; + public const string cloud_bidirectional_20_regular = "\U000f020c"; + public const string cloud_bidirectional_24_regular = "\U000f020d"; + public const string cloud_checkmark_16_regular = "\ue398"; + public const string cloud_checkmark_20_regular = "\ue399"; + public const string cloud_checkmark_24_regular = "\ue39a"; + public const string cloud_checkmark_28_regular = "\ue39b"; + public const string cloud_checkmark_32_regular = "\ue39c"; + public const string cloud_checkmark_48_regular = "\ue39d"; + public const string cloud_cube_16_regular = "\U000f0475"; + public const string cloud_cube_20_regular = "\U000f0476"; + public const string cloud_cube_24_regular = "\U000f0477"; + public const string cloud_cube_28_regular = "\U000f0478"; + public const string cloud_cube_32_regular = "\U000f0479"; + public const string cloud_cube_48_regular = "\U000f047a"; + public const string cloud_database_20_regular = "\U000f0112"; + public const string cloud_desktop_20_regular = "\U000f0113"; + public const string cloud_dismiss_16_regular = "\ue39e"; + public const string cloud_dismiss_20_regular = "\ue39f"; + public const string cloud_dismiss_24_regular = "\ue3a0"; + public const string cloud_dismiss_28_regular = "\ue3a1"; + public const string cloud_dismiss_32_regular = "\ue3a2"; + public const string cloud_dismiss_48_regular = "\ue3a3"; + public const string cloud_edit_16_regular = "\uf330"; + public const string cloud_edit_20_regular = "\ue3a4"; + public const string cloud_edit_24_regular = "\uf0c3"; + public const string cloud_error_16_regular = "\uefda"; + public const string cloud_error_20_regular = "\uefdb"; + public const string cloud_error_24_regular = "\uefdc"; + public const string cloud_error_28_regular = "\uefdd"; + public const string cloud_error_32_regular = "\uefde"; + public const string cloud_error_48_regular = "\uefdf"; + public const string cloud_flow_20_regular = "\uf337"; + public const string cloud_flow_24_regular = "\ue3a5"; + public const string cloud_link_16_regular = "\uf338"; + public const string cloud_link_20_regular = "\ue3a6"; + public const string cloud_link_24_regular = "\uf0c4"; + public const string cloud_off_16_regular = "\ue3a7"; + public const string cloud_off_20_regular = "\ue3a8"; + public const string cloud_off_24_regular = "\uf2ea"; + public const string cloud_off_28_regular = "\ue3a9"; + public const string cloud_off_32_regular = "\ue3aa"; + public const string cloud_off_48_regular = "\uf2eb"; + public const string cloud_swap_20_regular = "\ue3ab"; + public const string cloud_swap_24_regular = "\ue3ac"; + public const string cloud_sync_16_regular = "\ue3ad"; + public const string cloud_sync_20_regular = "\ue3ae"; + public const string cloud_sync_24_regular = "\ue3af"; + public const string cloud_sync_28_regular = "\ue3b0"; + public const string cloud_sync_32_regular = "\ue3b1"; + public const string cloud_sync_48_regular = "\ue3b2"; + public const string cloud_words_16_regular = "\ue3b3"; + public const string cloud_words_20_regular = "\ue3b4"; + public const string cloud_words_24_regular = "\ue3b5"; + public const string cloud_words_28_regular = "\ue3b6"; + public const string cloud_words_32_regular = "\ue3b7"; + public const string cloud_words_48_regular = "\ue3b8"; + public const string clover_16_regular = "\uf83e"; + public const string clover_20_regular = "\uf8b4"; + public const string clover_24_regular = "\uf8e9"; + public const string clover_28_regular = "\uf8ea"; + public const string clover_32_regular = "\uf8ef"; + public const string clover_48_regular = "\U000f0000"; + public const string code_16_regular = "\uf339"; + public const string code_20_regular = "\uf2ef"; + public const string code_24_regular = "\uf2f0"; + public const string code_block_16_regular = "\uefba"; + public const string code_block_20_regular = "\uefbb"; + public const string code_block_24_regular = "\uefbc"; + public const string code_block_28_regular = "\uefbd"; + public const string code_block_32_regular = "\uefbe"; + public const string code_block_48_regular = "\uefbf"; + public const string code_circle_20_regular = "\ue3b9"; + public const string code_circle_24_regular = "\U000f0114"; + public const string code_circle_32_regular = "\U000f0115"; + public const string code_cs_16_regular = "\uf0c5"; + public const string code_cs_rectangle_16_regular = "\uf0c6"; + public const string code_fs_16_regular = "\uf0c7"; + public const string code_fs_rectangle_16_regular = "\uf0c8"; + public const string code_js_16_regular = "\uf0c9"; + public const string code_js_rectangle_16_regular = "\uf0ca"; + public const string code_py_16_regular = "\uf0cb"; + public const string code_py_rectangle_16_regular = "\uf0cc"; + public const string code_rb_16_regular = "\uf0cd"; + public const string code_rb_rectangle_16_regular = "\uf0ce"; + public const string code_text_16_regular = "\uef64"; + public const string code_text_20_regular = "\ue3ba"; + public const string code_text_edit_20_regular = "\ue3bb"; + public const string code_text_off_16_regular = "\uf0cf"; + public const string code_ts_16_regular = "\uf0d0"; + public const string code_ts_rectangle_16_regular = "\uf0d1"; + public const string code_vb_16_regular = "\uf0d2"; + public const string code_vb_rectangle_16_regular = "\uf0d3"; + public const string collections_16_regular = "\U000f03f0"; + public const string collections_20_regular = "\uf2f1"; + public const string collections_24_regular = "\uf2f2"; + public const string collections_add_20_regular = "\uf2f3"; + public const string collections_add_24_regular = "\uf2f4"; + public const string color_16_regular = "\ue3bc"; + public const string color_20_regular = "\uf2f5"; + public const string color_24_regular = "\uf2f6"; + public const string color_background_20_regular = "\uf2f7"; + public const string color_background_24_regular = "\uf2f8"; + public const string color_background_accent_20_regular = "\ue3bd"; + public const string color_background_accent_24_regular = "\ue3be"; + public const string color_fill_16_regular = "\ue3bf"; + public const string color_fill_20_regular = "\uf2f9"; + public const string color_fill_24_regular = "\uf2fa"; + public const string color_fill_28_regular = "\ue3c0"; + public const string color_fill_accent_16_regular = "\ue3c1"; + public const string color_fill_accent_20_regular = "\ue3c2"; + public const string color_fill_accent_24_regular = "\ue3c3"; + public const string color_fill_accent_28_regular = "\ue3c4"; + public const string color_line_16_regular = "\ue3c5"; + public const string color_line_20_regular = "\uf2fb"; + public const string color_line_24_regular = "\uf2fc"; + public const string color_line_accent_16_regular = "\ue3c6"; + public const string color_line_accent_20_regular = "\ue3c7"; + public const string color_line_accent_24_regular = "\ue3c8"; + public const string column_20_regular = "\ue3c9"; + public const string column_24_regular = "\U000f05d5"; + public const string column_arrow_right_20_regular = "\ue3ca"; + public const string column_double_compare_20_regular = "\ue3cb"; + public const string column_edit_20_regular = "\ue3cc"; + public const string column_edit_24_regular = "\ue3cd"; + public const string column_single_16_regular = "\U000f0116"; + public const string column_single_compare_16_regular = "\U000f016e"; + public const string column_single_compare_20_regular = "\U000f016f"; + public const string column_triple_20_regular = "\ue3ce"; + public const string column_triple_24_regular = "\uf2fd"; + public const string column_triple_edit_20_regular = "\ue3cf"; + public const string column_triple_edit_24_regular = "\ue3d0"; + public const string comma_20_regular = "\ue3d1"; + public const string comma_24_regular = "\ue3d2"; + public const string comment_12_regular = "\ue3d3"; + public const string comment_16_regular = "\uf2fe"; + public const string comment_20_regular = "\uf2ff"; + public const string comment_24_regular = "\uf300"; + public const string comment_28_regular = "\ue3d4"; + public const string comment_32_regular = "\U000f05e6"; + public const string comment_48_regular = "\ue3d5"; + public const string comment_add_12_regular = "\ue3d6"; + public const string comment_add_16_regular = "\ue3d7"; + public const string comment_add_20_regular = "\ue3d8"; + public const string comment_add_24_regular = "\uf301"; + public const string comment_add_28_regular = "\ue3d9"; + public const string comment_add_32_regular = "\U000f05e7"; + public const string comment_add_48_regular = "\ue3da"; + public const string comment_arrow_left_12_regular = "\ue3db"; + public const string comment_arrow_left_16_regular = "\ue3dc"; + public const string comment_arrow_left_20_regular = "\ue3dd"; + public const string comment_arrow_left_24_regular = "\ue3de"; + public const string comment_arrow_left_28_regular = "\ue3df"; + public const string comment_arrow_left_48_regular = "\ue3e0"; + public const string comment_arrow_right_12_regular = "\ue3e1"; + public const string comment_arrow_right_16_regular = "\ue3e2"; + public const string comment_arrow_right_20_regular = "\ue3e3"; + public const string comment_arrow_right_24_regular = "\ue3e4"; + public const string comment_arrow_right_28_regular = "\ue3e5"; + public const string comment_arrow_right_48_regular = "\ue3e6"; + public const string comment_checkmark_12_regular = "\ue3e7"; + public const string comment_checkmark_16_regular = "\ue3e8"; + public const string comment_checkmark_20_regular = "\ue3e9"; + public const string comment_checkmark_24_regular = "\ue3ea"; + public const string comment_checkmark_28_regular = "\ue3eb"; + public const string comment_checkmark_48_regular = "\ue3ec"; + public const string comment_dismiss_20_regular = "\ue3ed"; + public const string comment_dismiss_24_regular = "\ue3ee"; + public const string comment_edit_16_regular = "\U000f020e"; + public const string comment_edit_20_regular = "\ue3ef"; + public const string comment_edit_24_regular = "\ue3f0"; + public const string comment_error_16_regular = "\uf350"; + public const string comment_error_20_regular = "\ue3f1"; + public const string comment_error_24_regular = "\ue3f2"; + public const string comment_lightning_20_regular = "\uf351"; + public const string comment_lightning_24_regular = "\uf361"; + public const string comment_link_16_regular = "\U000f0001"; + public const string comment_link_20_regular = "\U000f0002"; + public const string comment_link_24_regular = "\U000f0003"; + public const string comment_link_28_regular = "\U000f0004"; + public const string comment_link_48_regular = "\U000f0005"; + public const string comment_mention_16_regular = "\uf303"; + public const string comment_mention_20_regular = "\uf304"; + public const string comment_mention_24_regular = "\uf305"; + public const string comment_multiple_16_regular = "\uf306"; + public const string comment_multiple_20_regular = "\uf307"; + public const string comment_multiple_24_regular = "\uf308"; + public const string comment_multiple_28_regular = "\ue3f3"; + public const string comment_multiple_32_regular = "\ue3f4"; + public const string comment_multiple_checkmark_16_regular = "\ue3f5"; + public const string comment_multiple_checkmark_20_regular = "\ue3f6"; + public const string comment_multiple_checkmark_24_regular = "\ue3f7"; + public const string comment_multiple_checkmark_28_regular = "\ue3f8"; + public const string comment_multiple_link_16_regular = "\ue3f9"; + public const string comment_multiple_link_20_regular = "\ue3fa"; + public const string comment_multiple_link_24_regular = "\ue3fb"; + public const string comment_multiple_link_28_regular = "\ue3fc"; + public const string comment_multiple_link_32_regular = "\ue3fd"; + public const string comment_note_20_regular = "\ue3fe"; + public const string comment_note_24_regular = "\ue3ff"; + public const string comment_off_16_regular = "\ue400"; + public const string comment_off_20_regular = "\ue401"; + public const string comment_off_24_regular = "\ue402"; + public const string comment_off_28_regular = "\ue403"; + public const string comment_off_48_regular = "\ue404"; + public const string communication_16_regular = "\uf30c"; + public const string communication_20_regular = "\uf30d"; + public const string communication_24_regular = "\uf30e"; + public const string communication_person_20_regular = "\ue405"; + public const string communication_person_24_regular = "\ue406"; + public const string communication_shield_16_regular = "\U000f03f1"; + public const string communication_shield_20_regular = "\U000f03f2"; + public const string communication_shield_24_regular = "\U000f03f3"; + public const string compass_northwest_16_regular = "\uf30f"; + public const string compass_northwest_20_regular = "\uf310"; + public const string compass_northwest_24_regular = "\uf311"; + public const string compass_northwest_28_regular = "\uf312"; + public const string component_2_double_tap_swipe_down_24_regular = "\ue407"; + public const string component_2_double_tap_swipe_up_24_regular = "\ue408"; + public const string compose_12_regular = "\U000f050a"; + public const string compose_16_regular = "\uf313"; + public const string compose_20_regular = "\uf314"; + public const string compose_24_regular = "\uf315"; + public const string compose_28_regular = "\uf316"; + public const string compose_32_regular = "\U000f050b"; + public const string compose_48_regular = "\U000f050c"; + public const string cone_16_regular = "\uf0d4"; + public const string conference_room_16_regular = "\uf317"; + public const string conference_room_20_regular = "\uf318"; + public const string conference_room_24_regular = "\uf319"; + public const string conference_room_28_regular = "\uf31a"; + public const string conference_room_48_regular = "\uf31b"; + public const string connected_16_regular = "\ueeeb"; + public const string connected_20_regular = "\ueeec"; + public const string connector_16_regular = "\uf31c"; + public const string connector_20_regular = "\uf31d"; + public const string connector_24_regular = "\uf31e"; + public const string contact_card_16_regular = "\uf362"; + public const string contact_card_20_regular = "\uf31f"; + public const string contact_card_24_regular = "\uf320"; + public const string contact_card_28_regular = "\ue409"; + public const string contact_card_32_regular = "\ue40a"; + public const string contact_card_48_regular = "\ue40b"; + public const string contact_card_group_16_regular = "\ue40c"; + public const string contact_card_group_20_regular = "\ue40d"; + public const string contact_card_group_24_regular = "\uf321"; + public const string contact_card_group_28_regular = "\ue40e"; + public const string contact_card_group_48_regular = "\ue40f"; + public const string contact_card_link_16_regular = "\uf363"; + public const string contact_card_link_20_regular = "\ue410"; + public const string contact_card_ribbon_16_regular = "\ue411"; + public const string contact_card_ribbon_20_regular = "\ue412"; + public const string contact_card_ribbon_24_regular = "\ue413"; + public const string contact_card_ribbon_28_regular = "\ue414"; + public const string contact_card_ribbon_32_regular = "\ue415"; + public const string contact_card_ribbon_48_regular = "\ue416"; + public const string content_settings_16_regular = "\uf323"; + public const string content_settings_20_regular = "\uf324"; + public const string content_settings_24_regular = "\uf325"; + public const string content_settings_32_regular = "\ue417"; + public const string content_view_16_regular = "\U000f05c7"; + public const string content_view_20_regular = "\ue418"; + public const string content_view_24_regular = "\ueec4"; + public const string content_view_28_regular = "\ueec5"; + public const string content_view_32_regular = "\ue419"; + public const string content_view_gallery_16_regular = "\U000f02fd"; + public const string content_view_gallery_20_regular = "\ue41a"; + public const string content_view_gallery_24_regular = "\ueea2"; + public const string content_view_gallery_28_regular = "\ueea3"; + public const string content_view_gallery_lightning_16_regular = "\U000f02fe"; + public const string content_view_gallery_lightning_20_regular = "\U000f02ff"; + public const string content_view_gallery_lightning_24_regular = "\U000f0300"; + public const string content_view_gallery_lightning_28_regular = "\U000f0301"; + public const string contract_down_left_16_regular = "\uf364"; + public const string contract_down_left_20_regular = "\uf373"; + public const string contract_down_left_24_regular = "\uf374"; + public const string contract_down_left_28_regular = "\uf375"; + public const string contract_down_left_32_regular = "\uf37b"; + public const string contract_down_left_48_regular = "\uf397"; + public const string contract_up_right_16_regular = "\U000f047b"; + public const string contract_up_right_20_regular = "\U000f047c"; + public const string contract_up_right_24_regular = "\U000f047d"; + public const string contract_up_right_28_regular = "\U000f047e"; + public const string contract_up_right_32_regular = "\U000f047f"; + public const string contract_up_right_48_regular = "\U000f0480"; + public const string control_button_20_regular = "\ue41b"; + public const string control_button_24_regular = "\ue41c"; + public const string convert_range_20_regular = "\ue41d"; + public const string convert_range_24_regular = "\ue41e"; + public const string cookies_16_regular = "\U000f04ed"; + public const string cookies_20_regular = "\uf328"; + public const string cookies_24_regular = "\uf329"; + public const string cookies_28_regular = "\U000f04ee"; + public const string cookies_32_regular = "\U000f04ef"; + public const string cookies_48_regular = "\U000f04f0"; + public const string copy_16_regular = "\uf32a"; + public const string copy_20_regular = "\uf32b"; + public const string copy_24_regular = "\uf32c"; + public const string copy_32_regular = "\U000f0006"; + public const string copy_add_20_regular = "\ue41f"; + public const string copy_add_24_regular = "\ue420"; + public const string copy_arrow_right_16_regular = "\ue421"; + public const string copy_arrow_right_20_regular = "\ue422"; + public const string copy_arrow_right_24_regular = "\ue423"; + public const string copy_select_20_regular = "\ue424"; + public const string copy_select_24_regular = "\U000f0007"; + public const string couch_12_regular = "\ue425"; + public const string couch_20_regular = "\ue426"; + public const string couch_24_regular = "\ue427"; + public const string couch_32_regular = "\uefe0"; + public const string couch_48_regular = "\uefe1"; + public const string credit_card_clock_20_regular = "\ueec6"; + public const string credit_card_clock_24_regular = "\ueec7"; + public const string credit_card_clock_28_regular = "\ueec8"; + public const string credit_card_clock_32_regular = "\ueec9"; + public const string credit_card_person_20_regular = "\ue428"; + public const string credit_card_person_24_regular = "\ue429"; + public const string credit_card_toolbox_20_regular = "\uf398"; + public const string credit_card_toolbox_24_regular = "\ue42a"; + public const string crop_16_regular = "\uf02c"; + public const string crop_20_regular = "\ue42b"; + public const string crop_24_regular = "\uf331"; + public const string crop_28_regular = "\uf02d"; + public const string crop_32_regular = "\uf02e"; + public const string crop_48_regular = "\uf02f"; + public const string crop_arrow_rotate_16_regular = "\U000f05e8"; + public const string crop_arrow_rotate_20_regular = "\U000f05e9"; + public const string crop_arrow_rotate_24_regular = "\U000f05ea"; + public const string crop_interim_20_regular = "\ue42c"; + public const string crop_interim_24_regular = "\uf332"; + public const string crop_interim_off_20_regular = "\ue42d"; + public const string crop_interim_off_24_regular = "\uf333"; + public const string crop_sparkle_24_regular = "\U000f0170"; + public const string crown_16_regular = "\uf06e"; + public const string crown_20_regular = "\uf06f"; + public const string crown_24_regular = "\U000f020f"; + public const string crown_subtract_24_regular = "\U000f0210"; + public const string cube_12_regular = "\ue42e"; + public const string cube_16_regular = "\uf334"; + public const string cube_20_regular = "\uf335"; + public const string cube_24_regular = "\uf336"; + public const string cube_32_regular = "\ueeca"; + public const string cube_48_regular = "\U000f0268"; + public const string cube_add_20_regular = "\ue42f"; + public const string cube_arrow_curve_down_20_regular = "\ue430"; + public const string cube_link_20_regular = "\ue431"; + public const string cube_multiple_20_regular = "\ue432"; + public const string cube_multiple_24_regular = "\ue433"; + public const string cube_quick_16_regular = "\ue434"; + public const string cube_quick_20_regular = "\ue435"; + public const string cube_quick_24_regular = "\ue436"; + public const string cube_quick_28_regular = "\ue437"; + public const string cube_rotate_20_regular = "\ue438"; + public const string cube_sync_20_regular = "\ue439"; + public const string cube_sync_24_regular = "\ue43a"; + public const string cube_tree_20_regular = "\ue43b"; + public const string cube_tree_24_regular = "\ue43c"; + public const string currency_dollar_euro_16_regular = "\ue43d"; + public const string currency_dollar_euro_20_regular = "\ue43e"; + public const string currency_dollar_euro_24_regular = "\ue43f"; + public const string currency_dollar_rupee_16_regular = "\ue440"; + public const string currency_dollar_rupee_20_regular = "\ue441"; + public const string currency_dollar_rupee_24_regular = "\ue442"; + public const string cursor_16_regular = "\U000f0171"; + public const string cursor_20_regular = "\ue443"; + public const string cursor_24_regular = "\ue444"; + public const string cursor_28_regular = "\U000f05fc"; + public const string cursor_32_regular = "\U000f05fd"; + public const string cursor_click_20_regular = "\ue445"; + public const string cursor_click_24_regular = "\ue446"; + public const string cursor_hover_16_regular = "\ue447"; + public const string cursor_hover_20_regular = "\ue448"; + public const string cursor_hover_24_regular = "\ue449"; + public const string cursor_hover_28_regular = "\ue44a"; + public const string cursor_hover_32_regular = "\ue44b"; + public const string cursor_hover_48_regular = "\ue44c"; + public const string cursor_hover_off_16_regular = "\ue44d"; + public const string cursor_hover_off_20_regular = "\ue44e"; + public const string cursor_hover_off_24_regular = "\ue44f"; + public const string cursor_hover_off_28_regular = "\ue450"; + public const string cursor_hover_off_48_regular = "\ue451"; + public const string cursor_prohibited_16_regular = "\U000f0172"; + public const string cursor_prohibited_20_regular = "\U000f0173"; + public const string cut_16_regular = "\U000f038c"; + public const string cut_20_regular = "\uf33a"; + public const string cut_24_regular = "\uf33b"; + public const string dark_theme_20_regular = "\ue452"; + public const string dark_theme_24_regular = "\uf33c"; + public const string data_area_20_regular = "\ue453"; + public const string data_area_24_regular = "\uf33d"; + public const string data_bar_horizontal_20_regular = "\uf39b"; + public const string data_bar_horizontal_24_regular = "\uf33e"; + public const string data_bar_horizontal_descending_16_regular = "\uf0d5"; + public const string data_bar_vertical_16_regular = "\ueea4"; + public const string data_bar_vertical_20_regular = "\uf33f"; + public const string data_bar_vertical_24_regular = "\uf340"; + public const string data_bar_vertical_32_regular = "\ueecb"; + public const string data_bar_vertical_add_20_regular = "\ue454"; + public const string data_bar_vertical_add_24_regular = "\ue455"; + public const string data_bar_vertical_arrow_down_16_regular = "\U000f05a2"; + public const string data_bar_vertical_arrow_down_20_regular = "\U000f05a3"; + public const string data_bar_vertical_arrow_down_24_regular = "\U000f05a4"; + public const string data_bar_vertical_ascending_16_regular = "\uf0d6"; + public const string data_bar_vertical_ascending_20_regular = "\U000f042f"; + public const string data_bar_vertical_ascending_24_regular = "\U000f0430"; + public const string data_bar_vertical_star_16_regular = "\uefc0"; + public const string data_bar_vertical_star_20_regular = "\uefc1"; + public const string data_bar_vertical_star_24_regular = "\uefc2"; + public const string data_bar_vertical_star_32_regular = "\uefc3"; + public const string data_funnel_20_regular = "\ue456"; + public const string data_funnel_24_regular = "\uf341"; + public const string data_histogram_16_regular = "\U000f0174"; + public const string data_histogram_20_regular = "\ue457"; + public const string data_histogram_24_regular = "\uf342"; + public const string data_line_20_regular = "\ue458"; + public const string data_line_24_regular = "\uf343"; + public const string data_pie_16_regular = "\U000f05d6"; + public const string data_pie_20_regular = "\uf344"; + public const string data_pie_24_regular = "\uf345"; + public const string data_scatter_20_regular = "\ue459"; + public const string data_scatter_24_regular = "\uf346"; + public const string data_sunburst_20_regular = "\ue45a"; + public const string data_sunburst_24_regular = "\uf347"; + public const string data_treemap_20_regular = "\ue45b"; + public const string data_treemap_24_regular = "\uf348"; + public const string data_trending_16_regular = "\ue45c"; + public const string data_trending_20_regular = "\ue45d"; + public const string data_trending_24_regular = "\ue45e"; + public const string data_trending_28_regular = "\uf030"; + public const string data_trending_32_regular = "\uf031"; + public const string data_trending_48_regular = "\uf032"; + public const string data_usage_16_regular = "\U000f0564"; + public const string data_usage_20_regular = "\ue45f"; + public const string data_usage_24_regular = "\uf349"; + public const string data_usage_edit_20_regular = "\uf3b2"; + public const string data_usage_edit_24_regular = "\ue460"; + public const string data_usage_settings_16_regular = "\U000f0565"; + public const string data_usage_settings_20_regular = "\ue461"; + public const string data_usage_settings_24_regular = "\U000f0566"; + public const string data_usage_toolbox_20_regular = "\ue462"; + public const string data_usage_toolbox_24_regular = "\ue463"; + public const string data_waterfall_20_regular = "\ue464"; + public const string data_waterfall_24_regular = "\uf34a"; + public const string data_whisker_20_regular = "\ue465"; + public const string data_whisker_24_regular = "\uf34b"; + public const string database_16_regular = "\uf0d7"; + public const string database_20_regular = "\ue466"; + public const string database_24_regular = "\ue467"; + public const string database_32_regular = "\ueecc"; + public const string database_48_regular = "\U000f0008"; + public const string database_arrow_down_20_regular = "\ue468"; + public const string database_arrow_right_20_regular = "\ue469"; + public const string database_arrow_right_24_regular = "\uefe2"; + public const string database_arrow_right_32_regular = "\uefc4"; + public const string database_arrow_up_20_regular = "\ue46a"; + public const string database_lightning_20_regular = "\ue46b"; + public const string database_link_20_regular = "\ue46c"; + public const string database_link_24_regular = "\ue46d"; + public const string database_multiple_20_regular = "\ue46e"; + public const string database_multiple_32_regular = "\U000f0009"; + public const string database_person_20_regular = "\ue46f"; + public const string database_person_24_regular = "\ue470"; + public const string database_plug_connected_20_regular = "\ue471"; + public const string database_search_20_regular = "\ue472"; + public const string database_search_24_regular = "\ue473"; + public const string database_stack_16_regular = "\uf0d8"; + public const string database_switch_20_regular = "\ue474"; + public const string database_warning_20_regular = "\ue475"; + public const string database_window_20_regular = "\ue476"; + public const string decimal_arrow_left_20_regular = "\ue477"; + public const string decimal_arrow_left_24_regular = "\ue478"; + public const string decimal_arrow_right_20_regular = "\ue479"; + public const string decimal_arrow_right_24_regular = "\ue47a"; + public const string delete_12_regular = "\ueea5"; + public const string delete_16_regular = "\ue47b"; + public const string delete_20_regular = "\uf34c"; + public const string delete_24_regular = "\uf34d"; + public const string delete_28_regular = "\uf34e"; + public const string delete_32_regular = "\ueea6"; + public const string delete_48_regular = "\uf34f"; + public const string delete_arrow_back_16_regular = "\ue47c"; + public const string delete_arrow_back_20_regular = "\ue47d"; + public const string delete_dismiss_20_regular = "\ue47e"; + public const string delete_dismiss_24_regular = "\ue47f"; + public const string delete_dismiss_28_regular = "\ue480"; + public const string delete_lines_20_regular = "\ue481"; + public const string delete_off_20_regular = "\uf352"; + public const string delete_off_24_regular = "\uf353"; + public const string dentist_12_regular = "\ue482"; + public const string dentist_16_regular = "\ue483"; + public const string dentist_20_regular = "\ue484"; + public const string dentist_24_regular = "\uf354"; + public const string dentist_28_regular = "\ue485"; + public const string dentist_48_regular = "\ue486"; + public const string design_ideas_16_regular = "\uf355"; + public const string design_ideas_20_regular = "\uf356"; + public const string design_ideas_24_regular = "\uf357"; + public const string desk_16_regular = "\U000f0269"; + public const string desk_20_regular = "\U000f01cb"; + public const string desk_24_regular = "\U000f01cc"; + public const string desk_28_regular = "\U000f026a"; + public const string desk_32_regular = "\U000f026b"; + public const string desk_48_regular = "\U000f026c"; + public const string desktop_16_regular = "\uf358"; + public const string desktop_20_regular = "\uf359"; + public const string desktop_24_regular = "\uf35a"; + public const string desktop_28_regular = "\uf35b"; + public const string desktop_32_regular = "\ue487"; + public const string desktop_arrow_down_16_regular = "\U000f0117"; + public const string desktop_arrow_down_20_regular = "\U000f0118"; + public const string desktop_arrow_down_24_regular = "\U000f0119"; + public const string desktop_arrow_down_32_regular = "\U000f062b"; + public const string desktop_arrow_right_16_regular = "\ue488"; + public const string desktop_arrow_right_20_regular = "\ue489"; + public const string desktop_arrow_right_24_regular = "\ue48a"; + public const string desktop_checkmark_16_regular = "\uef65"; + public const string desktop_checkmark_20_regular = "\uef66"; + public const string desktop_checkmark_24_regular = "\uef67"; + public const string desktop_cursor_16_regular = "\ue48b"; + public const string desktop_cursor_20_regular = "\ue48c"; + public const string desktop_cursor_24_regular = "\ue48d"; + public const string desktop_cursor_28_regular = "\ue48e"; + public const string desktop_edit_16_regular = "\ue48f"; + public const string desktop_edit_20_regular = "\ue490"; + public const string desktop_edit_24_regular = "\ue491"; + public const string desktop_flow_20_regular = "\ue492"; + public const string desktop_flow_24_regular = "\ue493"; + public const string desktop_keyboard_16_regular = "\ue494"; + public const string desktop_keyboard_20_regular = "\ue495"; + public const string desktop_keyboard_24_regular = "\ue496"; + public const string desktop_keyboard_28_regular = "\ue497"; + public const string desktop_mac_16_regular = "\ue498"; + public const string desktop_mac_20_regular = "\ue499"; + public const string desktop_mac_24_regular = "\ue49a"; + public const string desktop_mac_32_regular = "\ue49b"; + public const string desktop_off_20_regular = "\U000f05eb"; + public const string desktop_off_24_regular = "\U000f05ec"; + public const string desktop_pulse_16_regular = "\ue49c"; + public const string desktop_pulse_20_regular = "\ue49d"; + public const string desktop_pulse_24_regular = "\ue49e"; + public const string desktop_pulse_28_regular = "\ue49f"; + public const string desktop_pulse_32_regular = "\ue4a0"; + public const string desktop_pulse_48_regular = "\ue4a1"; + public const string desktop_signal_20_regular = "\ue4a2"; + public const string desktop_signal_24_regular = "\ue4a3"; + public const string desktop_speaker_20_regular = "\ue4a4"; + public const string desktop_speaker_24_regular = "\ue4a5"; + public const string desktop_speaker_off_20_regular = "\ue4a6"; + public const string desktop_speaker_off_24_regular = "\ue4a7"; + public const string desktop_sync_16_regular = "\uf3b3"; + public const string desktop_sync_20_regular = "\ue4a8"; + public const string desktop_sync_24_regular = "\ue4a9"; + public const string desktop_toolbox_20_regular = "\ue4aa"; + public const string desktop_toolbox_24_regular = "\ue4ab"; + public const string desktop_tower_20_regular = "\U000f011a"; + public const string desktop_tower_24_regular = "\U000f011b"; + public const string developer_board_16_regular = "\uf0d9"; + public const string developer_board_20_regular = "\ue4ac"; + public const string developer_board_24_regular = "\uf35c"; + public const string developer_board_lightning_20_regular = "\ue4ad"; + public const string developer_board_lightning_toolbox_20_regular = "\ue4ae"; + public const string developer_board_search_20_regular = "\ue4af"; + public const string developer_board_search_24_regular = "\ue4b0"; + public const string device_eq_16_regular = "\U000f000a"; + public const string device_eq_20_regular = "\ue4b1"; + public const string device_eq_24_regular = "\uf35d"; + public const string device_meeting_room_16_regular = "\uf3b4"; + public const string device_meeting_room_20_regular = "\ue4b2"; + public const string device_meeting_room_24_regular = "\uf3b5"; + public const string device_meeting_room_28_regular = "\uf3b6"; + public const string device_meeting_room_32_regular = "\uf3b7"; + public const string device_meeting_room_48_regular = "\uf3bc"; + public const string device_meeting_room_remote_16_regular = "\uf3bd"; + public const string device_meeting_room_remote_20_regular = "\ue4b3"; + public const string device_meeting_room_remote_24_regular = "\uf3c2"; + public const string device_meeting_room_remote_28_regular = "\uf3cd"; + public const string device_meeting_room_remote_32_regular = "\uf3ed"; + public const string device_meeting_room_remote_48_regular = "\uf3ee"; + public const string diagram_20_regular = "\ue4b4"; + public const string diagram_24_regular = "\ue4b5"; + public const string dialpad_20_regular = "\uf35e"; + public const string dialpad_24_regular = "\uf35f"; + public const string dialpad_28_regular = "\ue4b6"; + public const string dialpad_32_regular = "\ue4b7"; + public const string dialpad_48_regular = "\ue4b8"; + public const string dialpad_off_20_regular = "\ue4b9"; + public const string dialpad_off_24_regular = "\uf360"; + public const string dialpad_question_mark_20_regular = "\U000f03f4"; + public const string dialpad_question_mark_24_regular = "\U000f03f5"; + public const string diamond_16_regular = "\ue4ba"; + public const string diamond_20_regular = "\ue4bb"; + public const string diamond_24_regular = "\ue4bc"; + public const string diamond_28_regular = "\ue4bd"; + public const string diamond_32_regular = "\ue4be"; + public const string diamond_48_regular = "\ue4bf"; + public const string directions_16_regular = "\ue4c0"; + public const string directions_20_regular = "\uf365"; + public const string directions_24_regular = "\uf366"; + public const string dishwasher_20_regular = "\uefe3"; + public const string dishwasher_24_regular = "\uefe4"; + public const string dishwasher_32_regular = "\uefe5"; + public const string dishwasher_48_regular = "\uefe6"; + public const string dismiss_12_regular = "\uf367"; + public const string dismiss_16_regular = "\uf368"; + public const string dismiss_20_regular = "\uf369"; + public const string dismiss_24_regular = "\uf36a"; + public const string dismiss_28_regular = "\uf36b"; + public const string dismiss_32_regular = "\uf3f3"; + public const string dismiss_48_regular = "\uf400"; + public const string dismiss_circle_12_regular = "\ue4c1"; + public const string dismiss_circle_16_regular = "\uf36c"; + public const string dismiss_circle_20_regular = "\uf36d"; + public const string dismiss_circle_24_regular = "\uf36e"; + public const string dismiss_circle_28_regular = "\ue4c2"; + public const string dismiss_circle_32_regular = "\ue4c3"; + public const string dismiss_circle_48_regular = "\uf36f"; + public const string dismiss_square_20_regular = "\ue4c4"; + public const string dismiss_square_24_regular = "\ue4c5"; + public const string dismiss_square_multiple_16_regular = "\ue4c6"; + public const string dismiss_square_multiple_20_regular = "\ue4c7"; + public const string diversity_16_regular = "\U000f0431"; + public const string diversity_20_regular = "\ue4c8"; + public const string diversity_24_regular = "\ue4c9"; + public const string diversity_28_regular = "\ue4ca"; + public const string diversity_48_regular = "\ue4cb"; + public const string divider_short_16_regular = "\ue4cc"; + public const string divider_short_20_regular = "\ue4cd"; + public const string divider_short_24_regular = "\uf370"; + public const string divider_tall_16_regular = "\ue4ce"; + public const string divider_tall_20_regular = "\ue4cf"; + public const string divider_tall_24_regular = "\uf371"; + public const string dock_20_regular = "\ue4d0"; + public const string dock_24_regular = "\uf372"; + public const string dock_row_20_regular = "\ue4d1"; + public const string dock_row_24_regular = "\uf376"; + public const string doctor_12_regular = "\ue4d2"; + public const string doctor_16_regular = "\ue4d3"; + public const string doctor_20_regular = "\ue4d4"; + public const string doctor_24_regular = "\uf377"; + public const string doctor_28_regular = "\ue4d5"; + public const string doctor_48_regular = "\ue4d6"; + public const string document_100_16_regular = "\U000f000b"; + public const string document_100_20_regular = "\U000f000c"; + public const string document_100_24_regular = "\U000f000d"; + public const string document_16_regular = "\ue4d7"; + public const string document_20_regular = "\uf378"; + public const string document_24_regular = "\uf379"; + public const string document_28_regular = "\uf37a"; + public const string document_32_regular = "\ue4d8"; + public const string document_48_regular = "\ue4d9"; + public const string document_add_16_regular = "\ue4da"; + public const string document_add_20_regular = "\ue4db"; + public const string document_add_24_regular = "\ue4dc"; + public const string document_add_28_regular = "\ue4dd"; + public const string document_add_48_regular = "\ue4de"; + public const string document_arrow_down_16_regular = "\ue4df"; + public const string document_arrow_down_20_regular = "\ue4e0"; + public const string document_arrow_down_24_regular = "\U000f0527"; + public const string document_arrow_left_16_regular = "\ue4e1"; + public const string document_arrow_left_20_regular = "\ue4e2"; + public const string document_arrow_left_24_regular = "\ue4e3"; + public const string document_arrow_left_28_regular = "\ue4e4"; + public const string document_arrow_left_48_regular = "\ue4e5"; + public const string document_arrow_right_20_regular = "\ue4e6"; + public const string document_arrow_right_24_regular = "\ue4e7"; + public const string document_arrow_up_16_regular = "\uf401"; + public const string document_arrow_up_20_regular = "\ue4e8"; + public const string document_border_20_regular = "\U000f000e"; + public const string document_border_24_regular = "\U000f000f"; + public const string document_border_32_regular = "\U000f0010"; + public const string document_border_print_20_regular = "\U000f0011"; + public const string document_border_print_24_regular = "\U000f0012"; + public const string document_border_print_32_regular = "\U000f0013"; + public const string document_briefcase_16_regular = "\U000f03f6"; + public const string document_briefcase_20_regular = "\uf37c"; + public const string document_briefcase_24_regular = "\uf37d"; + public const string document_briefcase_32_regular = "\U000f03f7"; + public const string document_bullet_list_16_regular = "\U000f0014"; + public const string document_bullet_list_20_regular = "\uf402"; + public const string document_bullet_list_24_regular = "\uf403"; + public const string document_bullet_list_arrow_left_16_regular = "\U000f0015"; + public const string document_bullet_list_arrow_left_20_regular = "\U000f0016"; + public const string document_bullet_list_arrow_left_24_regular = "\U000f0017"; + public const string document_bullet_list_clock_20_regular = "\ue4e9"; + public const string document_bullet_list_clock_24_regular = "\ue4ea"; + public const string document_bullet_list_cube_16_regular = "\U000f0018"; + public const string document_bullet_list_cube_20_regular = "\U000f0019"; + public const string document_bullet_list_cube_24_regular = "\U000f001a"; + public const string document_bullet_list_multiple_20_regular = "\ue4eb"; + public const string document_bullet_list_multiple_24_regular = "\ue4ec"; + public const string document_bullet_list_off_20_regular = "\ue4ed"; + public const string document_bullet_list_off_24_regular = "\ue4ee"; + public const string document_catch_up_16_regular = "\ue4ef"; + public const string document_catch_up_20_regular = "\ue4f0"; + public const string document_catch_up_24_regular = "\uf37e"; + public const string document_checkmark_16_regular = "\U000f011c"; + public const string document_checkmark_20_regular = "\ue4f1"; + public const string document_checkmark_24_regular = "\ue4f2"; + public const string document_chevron_double_20_regular = "\ue4f3"; + public const string document_chevron_double_24_regular = "\ue4f4"; + public const string document_contract_16_regular = "\uf0da"; + public const string document_copy_16_regular = "\uf37f"; + public const string document_copy_20_regular = "\uf380"; + public const string document_copy_24_regular = "\uf381"; + public const string document_copy_48_regular = "\uf382"; + public const string document_cs_16_regular = "\uf0db"; + public const string document_css_16_regular = "\uf0dc"; + public const string document_css_20_regular = "\ue4f5"; + public const string document_css_24_regular = "\ue4f6"; + public const string document_cube_20_regular = "\U000f033c"; + public const string document_cube_24_regular = "\U000f033d"; + public const string document_data_16_regular = "\uf0dd"; + public const string document_data_20_regular = "\ue4f7"; + public const string document_data_24_regular = "\ue4f8"; + public const string document_data_32_regular = "\ueecd"; + public const string document_data_link_16_regular = "\U000f001b"; + public const string document_data_link_20_regular = "\U000f001c"; + public const string document_data_link_24_regular = "\U000f001d"; + public const string document_data_link_32_regular = "\U000f001e"; + public const string document_data_lock_16_regular = "\U000f0481"; + public const string document_data_lock_20_regular = "\U000f0482"; + public const string document_data_lock_24_regular = "\U000f0483"; + public const string document_data_lock_32_regular = "\U000f0484"; + public const string document_database_20_regular = "\uf033"; + public const string document_database_24_regular = "\uf034"; + public const string document_dismiss_16_regular = "\ue4f9"; + public const string document_dismiss_20_regular = "\uf383"; + public const string document_dismiss_24_regular = "\uf384"; + public const string document_edit_16_regular = "\uf385"; + public const string document_edit_20_regular = "\uf386"; + public const string document_edit_24_regular = "\uf387"; + public const string document_endnote_20_regular = "\uf388"; + public const string document_endnote_24_regular = "\uf389"; + public const string document_error_16_regular = "\uf38a"; + public const string document_error_20_regular = "\uf38b"; + public const string document_error_24_regular = "\uf38c"; + public const string document_fit_16_regular = "\U000f001f"; + public const string document_fit_20_regular = "\U000f0020"; + public const string document_fit_24_regular = "\U000f0021"; + public const string document_flowchart_20_regular = "\ue4fa"; + public const string document_flowchart_24_regular = "\ue4fb"; + public const string document_folder_16_regular = "\U000f0022"; + public const string document_folder_20_regular = "\U000f0023"; + public const string document_folder_24_regular = "\U000f0024"; + public const string document_footer_16_regular = "\ue4fc"; + public const string document_footer_20_regular = "\ue4fd"; + public const string document_footer_24_regular = "\uf38d"; + public const string document_footer_dismiss_20_regular = "\ue4fe"; + public const string document_footer_dismiss_24_regular = "\ue4ff"; + public const string document_fs_16_regular = "\uf0de"; + public const string document_header_16_regular = "\ue500"; + public const string document_header_20_regular = "\ue501"; + public const string document_header_24_regular = "\uf38f"; + public const string document_header_arrow_down_16_regular = "\ue502"; + public const string document_header_arrow_down_20_regular = "\ue503"; + public const string document_header_arrow_down_24_regular = "\ue504"; + public const string document_header_dismiss_20_regular = "\ue505"; + public const string document_header_dismiss_24_regular = "\ue506"; + public const string document_header_footer_16_regular = "\ue507"; + public const string document_header_footer_20_regular = "\uf390"; + public const string document_header_footer_24_regular = "\uf391"; + public const string document_heart_20_regular = "\ue508"; + public const string document_heart_24_regular = "\ue509"; + public const string document_heart_pulse_20_regular = "\ue50a"; + public const string document_heart_pulse_24_regular = "\ue50b"; + public const string document_image_16_regular = "\U000f0175"; + public const string document_image_20_regular = "\U000f0176"; + public const string document_java_16_regular = "\U000f0177"; + public const string document_java_20_regular = "\U000f0178"; + public const string document_javascript_20_regular = "\ue50c"; + public const string document_javascript_24_regular = "\ue50d"; + public const string document_js_16_regular = "\uf0df"; + public const string document_key_20_regular = "\U000f011d"; + public const string document_landscape_20_regular = "\uf393"; + public const string document_landscape_24_regular = "\uf394"; + public const string document_landscape_data_20_regular = "\ue50e"; + public const string document_landscape_data_24_regular = "\ue50f"; + public const string document_landscape_split_20_regular = "\ue510"; + public const string document_landscape_split_24_regular = "\ue511"; + public const string document_landscape_split_hint_20_regular = "\ue512"; + public const string document_landscape_split_hint_24_regular = "\uecdd"; + public const string document_lightning_16_regular = "\U000f0324"; + public const string document_lightning_20_regular = "\U000f0325"; + public const string document_lightning_24_regular = "\U000f0326"; + public const string document_lightning_28_regular = "\U000f0327"; + public const string document_lightning_32_regular = "\U000f0328"; + public const string document_lightning_48_regular = "\U000f0329"; + public const string document_link_16_regular = "\ue513"; + public const string document_link_20_regular = "\uf404"; + public const string document_link_24_regular = "\uf405"; + public const string document_lock_16_regular = "\ue514"; + public const string document_lock_20_regular = "\ue515"; + public const string document_lock_24_regular = "\ue516"; + public const string document_lock_28_regular = "\ue517"; + public const string document_lock_32_regular = "\ue518"; + public const string document_lock_48_regular = "\ue519"; + public const string document_margins_20_regular = "\uf395"; + public const string document_margins_24_regular = "\uf396"; + public const string document_mention_16_regular = "\ue51a"; + public const string document_mention_20_regular = "\ue51b"; + public const string document_mention_24_regular = "\ue51c"; + public const string document_mention_28_regular = "\ue51d"; + public const string document_mention_48_regular = "\ue51e"; + public const string document_multiple_16_regular = "\ue51f"; + public const string document_multiple_20_regular = "\ue520"; + public const string document_multiple_24_regular = "\ue521"; + public const string document_multiple_percent_20_regular = "\ue522"; + public const string document_multiple_percent_24_regular = "\ue523"; + public const string document_multiple_prohibited_20_regular = "\ue524"; + public const string document_multiple_prohibited_24_regular = "\ue525"; + public const string document_multiple_sync_20_regular = "\ue526"; + public const string document_number_1_16_regular = "\uf0e0"; + public const string document_one_page_16_regular = "\U000f0025"; + public const string document_one_page_20_regular = "\uf399"; + public const string document_one_page_24_regular = "\uf39a"; + public const string document_one_page_add_16_regular = "\U000f0026"; + public const string document_one_page_add_20_regular = "\U000f0027"; + public const string document_one_page_add_24_regular = "\U000f0028"; + public const string document_one_page_beaker_16_regular = "\U000f0179"; + public const string document_one_page_columns_20_regular = "\U000f0029"; + public const string document_one_page_columns_24_regular = "\U000f002a"; + public const string document_one_page_link_16_regular = "\U000f002b"; + public const string document_one_page_link_20_regular = "\U000f002c"; + public const string document_one_page_link_24_regular = "\U000f002d"; + public const string document_one_page_multiple_16_regular = "\U000f017a"; + public const string document_one_page_multiple_20_regular = "\U000f017b"; + public const string document_one_page_multiple_24_regular = "\U000f017c"; + public const string document_one_page_sparkle_16_regular = "\U000f00d7"; + public const string document_one_page_sparkle_20_regular = "\U000f00d8"; + public const string document_one_page_sparkle_24_regular = "\U000f00d9"; + public const string document_page_bottom_center_20_regular = "\uf39c"; + public const string document_page_bottom_center_24_regular = "\uf39d"; + public const string document_page_bottom_left_20_regular = "\uf39e"; + public const string document_page_bottom_left_24_regular = "\uf39f"; + public const string document_page_bottom_right_20_regular = "\uf3a0"; + public const string document_page_bottom_right_24_regular = "\uf3a1"; + public const string document_page_break_20_regular = "\ue527"; + public const string document_page_break_24_regular = "\uf3a2"; + public const string document_page_number_20_regular = "\uf3a3"; + public const string document_page_number_24_regular = "\uf3a4"; + public const string document_page_top_center_20_regular = "\uf3a5"; + public const string document_page_top_center_24_regular = "\uf3a6"; + public const string document_page_top_left_20_regular = "\uf3a7"; + public const string document_page_top_left_24_regular = "\uf3a8"; + public const string document_page_top_right_20_regular = "\uf3a9"; + public const string document_page_top_right_24_regular = "\uf3aa"; + public const string document_pdf_16_regular = "\uf3ab"; + public const string document_pdf_20_regular = "\uf3ac"; + public const string document_pdf_24_regular = "\uf3ad"; + public const string document_pdf_32_regular = "\ue528"; + public const string document_percent_20_regular = "\ue529"; + public const string document_percent_24_regular = "\ue52a"; + public const string document_person_16_regular = "\uf421"; + public const string document_person_20_regular = "\ue52b"; + public const string document_pill_20_regular = "\ue52c"; + public const string document_pill_24_regular = "\ue52d"; + public const string document_print_20_regular = "\U000f002e"; + public const string document_print_24_regular = "\U000f002f"; + public const string document_print_28_regular = "\U000f0030"; + public const string document_print_32_regular = "\U000f0031"; + public const string document_print_48_regular = "\U000f0032"; + public const string document_prohibited_20_regular = "\ue52e"; + public const string document_prohibited_24_regular = "\ue52f"; + public const string document_py_16_regular = "\uf0e1"; + public const string document_question_mark_16_regular = "\ue530"; + public const string document_question_mark_20_regular = "\ue531"; + public const string document_question_mark_24_regular = "\ue532"; + public const string document_queue_20_regular = "\ue533"; + public const string document_queue_24_regular = "\ue534"; + public const string document_queue_add_20_regular = "\ue535"; + public const string document_queue_add_24_regular = "\ue536"; + public const string document_queue_multiple_20_regular = "\ue537"; + public const string document_queue_multiple_24_regular = "\ue538"; + public const string document_rb_16_regular = "\uf0e2"; + public const string document_ribbon_16_regular = "\ue539"; + public const string document_ribbon_20_regular = "\ue53a"; + public const string document_ribbon_24_regular = "\ue53b"; + public const string document_ribbon_28_regular = "\ue53c"; + public const string document_ribbon_32_regular = "\ue53d"; + public const string document_ribbon_48_regular = "\ue53e"; + public const string document_sass_16_regular = "\U000f017d"; + public const string document_sass_20_regular = "\U000f017e"; + public const string document_save_20_regular = "\ue53f"; + public const string document_save_24_regular = "\ue540"; + public const string document_search_16_regular = "\ue541"; + public const string document_search_20_regular = "\uf3ae"; + public const string document_search_24_regular = "\uf3af"; + public const string document_search_32_regular = "\U000f03f8"; + public const string document_settings_16_regular = "\uf422"; + public const string document_settings_20_regular = "\ue542"; + public const string document_signature_16_regular = "\U000f0528"; + public const string document_signature_20_regular = "\U000f0529"; + public const string document_signature_24_regular = "\U000f052a"; + public const string document_signature_28_regular = "\U000f052b"; + public const string document_signature_32_regular = "\U000f052c"; + public const string document_signature_48_regular = "\U000f052d"; + public const string document_split_hint_16_regular = "\ue543"; + public const string document_split_hint_20_regular = "\ue544"; + public const string document_split_hint_24_regular = "\uf423"; + public const string document_split_hint_off_16_regular = "\ue545"; + public const string document_split_hint_off_20_regular = "\ue546"; + public const string document_split_hint_off_24_regular = "\uf424"; + public const string document_sync_16_regular = "\ue547"; + public const string document_sync_20_regular = "\ue548"; + public const string document_sync_24_regular = "\ue549"; + public const string document_sync_32_regular = "\uefc5"; + public const string document_table_16_regular = "\ue54a"; + public const string document_table_20_regular = "\ue54b"; + public const string document_table_24_regular = "\ue54c"; + public const string document_table_arrow_right_20_regular = "\ue54d"; + public const string document_table_arrow_right_24_regular = "\ue54e"; + public const string document_table_checkmark_20_regular = "\ue54f"; + public const string document_table_checkmark_24_regular = "\ue550"; + public const string document_table_cube_20_regular = "\ue551"; + public const string document_table_cube_24_regular = "\ue552"; + public const string document_table_search_20_regular = "\ue553"; + public const string document_table_search_24_regular = "\ue554"; + public const string document_table_truck_20_regular = "\ue555"; + public const string document_table_truck_24_regular = "\ue556"; + public const string document_target_16_regular = "\uf0e3"; + public const string document_target_20_regular = "\U000f0581"; + public const string document_target_24_regular = "\U000f0582"; + public const string document_target_32_regular = "\U000f0583"; + public const string document_text_16_regular = "\ueeed"; + public const string document_text_20_regular = "\ue557"; + public const string document_text_24_regular = "\ue558"; + public const string document_text_clock_20_regular = "\ue559"; + public const string document_text_clock_24_regular = "\ue55a"; + public const string document_text_extract_20_regular = "\ue55b"; + public const string document_text_extract_24_regular = "\ue55c"; + public const string document_text_link_20_regular = "\ue55d"; + public const string document_text_link_24_regular = "\ue55e"; + public const string document_text_toolbox_20_regular = "\ue55f"; + public const string document_text_toolbox_24_regular = "\ue560"; + public const string document_toolbox_20_regular = "\uf3b0"; + public const string document_toolbox_24_regular = "\uf3b1"; + public const string document_ts_16_regular = "\uf0e4"; + public const string document_vb_16_regular = "\uf0e5"; + public const string document_width_20_regular = "\uf3b8"; + public const string document_width_24_regular = "\uf3b9"; + public const string document_yml_16_regular = "\U000f017f"; + public const string document_yml_20_regular = "\U000f0180"; + public const string door_16_regular = "\ue561"; + public const string door_20_regular = "\ue562"; + public const string door_28_regular = "\ue563"; + public const string door_arrow_left_16_regular = "\ue564"; + public const string door_arrow_left_20_regular = "\ue565"; + public const string door_arrow_left_24_regular = "\ue566"; + public const string door_arrow_right_16_regular = "\ue567"; + public const string door_arrow_right_20_regular = "\ue568"; + public const string door_arrow_right_28_regular = "\ue569"; + public const string door_tag_20_regular = "\ue56a"; + public const string door_tag_24_regular = "\ue56b"; + public const string double_swipe_down_20_regular = "\ue56c"; + public const string double_swipe_down_24_regular = "\uf3ba"; + public const string double_swipe_up_20_regular = "\ue56d"; + public const string double_swipe_up_24_regular = "\uf3bb"; + public const string double_tap_swipe_down_16_regular = "\U000f05c8"; + public const string double_tap_swipe_down_20_regular = "\ue56e"; + public const string double_tap_swipe_down_24_regular = "\ue56f"; + public const string double_tap_swipe_up_16_regular = "\U000f05c9"; + public const string double_tap_swipe_up_20_regular = "\ue570"; + public const string double_tap_swipe_up_24_regular = "\ue571"; + public const string drafts_16_regular = "\uf3be"; + public const string drafts_20_regular = "\uf3bf"; + public const string drafts_24_regular = "\uf3c0"; + public const string drag_20_regular = "\ue572"; + public const string drag_24_regular = "\uf3c1"; + public const string draw_image_20_regular = "\ue573"; + public const string draw_image_24_regular = "\ue574"; + public const string draw_shape_20_regular = "\ue575"; + public const string draw_shape_24_regular = "\ue576"; + public const string draw_text_20_regular = "\ue577"; + public const string draw_text_24_regular = "\ue578"; + public const string drawer_20_regular = "\U000f033e"; + public const string drawer_24_regular = "\U000f033f"; + public const string drawer_add_20_regular = "\ue579"; + public const string drawer_add_24_regular = "\ue57a"; + public const string drawer_arrow_download_20_regular = "\ue57b"; + public const string drawer_arrow_download_24_regular = "\ue57c"; + public const string drawer_dismiss_20_regular = "\ue57d"; + public const string drawer_dismiss_24_regular = "\ue57e"; + public const string drawer_play_20_regular = "\ue57f"; + public const string drawer_play_24_regular = "\ue580"; + public const string drawer_subtract_20_regular = "\ue581"; + public const string drawer_subtract_24_regular = "\ue582"; + public const string drink_beer_16_regular = "\ue583"; + public const string drink_beer_20_regular = "\ue584"; + public const string drink_beer_24_regular = "\uf3c3"; + public const string drink_bottle_20_regular = "\ueeee"; + public const string drink_bottle_32_regular = "\ueeef"; + public const string drink_bottle_off_20_regular = "\ueef0"; + public const string drink_bottle_off_32_regular = "\ueef1"; + public const string drink_coffee_16_regular = "\ue585"; + public const string drink_coffee_20_regular = "\uf3c4"; + public const string drink_coffee_24_regular = "\uf3c5"; + public const string drink_margarita_16_regular = "\ue586"; + public const string drink_margarita_20_regular = "\ue587"; + public const string drink_margarita_24_regular = "\uf3c6"; + public const string drink_to_go_20_regular = "\ue588"; + public const string drink_to_go_24_regular = "\ue589"; + public const string drink_wine_16_regular = "\ue58a"; + public const string drink_wine_20_regular = "\ue58b"; + public const string drink_wine_24_regular = "\uf3c7"; + public const string drive_train_20_regular = "\ue58c"; + public const string drive_train_24_regular = "\ue58d"; + public const string drop_12_regular = "\ue58e"; + public const string drop_16_regular = "\ue58f"; + public const string drop_20_regular = "\ue590"; + public const string drop_24_regular = "\ue591"; + public const string drop_28_regular = "\ue592"; + public const string drop_48_regular = "\ue593"; + public const string dual_screen_20_regular = "\ue594"; + public const string dual_screen_24_regular = "\uf3c8"; + public const string dual_screen_add_20_regular = "\ue595"; + public const string dual_screen_add_24_regular = "\uf3c9"; + public const string dual_screen_arrow_right_20_regular = "\ue596"; + public const string dual_screen_arrow_right_24_regular = "\uf3ca"; + public const string dual_screen_arrow_up_20_regular = "\ue597"; + public const string dual_screen_arrow_up_24_regular = "\ue598"; + public const string dual_screen_clock_20_regular = "\ue599"; + public const string dual_screen_clock_24_regular = "\uf3cb"; + public const string dual_screen_closed_alert_20_regular = "\ue59a"; + public const string dual_screen_closed_alert_24_regular = "\ue59b"; + public const string dual_screen_desktop_20_regular = "\ue59c"; + public const string dual_screen_desktop_24_regular = "\uf3cc"; + public const string dual_screen_dismiss_20_regular = "\ue59d"; + public const string dual_screen_dismiss_24_regular = "\ue59e"; + public const string dual_screen_group_20_regular = "\ue59f"; + public const string dual_screen_group_24_regular = "\uf3ce"; + public const string dual_screen_header_20_regular = "\ue5a0"; + public const string dual_screen_header_24_regular = "\uf3cf"; + public const string dual_screen_lock_20_regular = "\ue5a1"; + public const string dual_screen_lock_24_regular = "\uf3d0"; + public const string dual_screen_mirror_20_regular = "\ue5a2"; + public const string dual_screen_mirror_24_regular = "\uf3d1"; + public const string dual_screen_pagination_20_regular = "\ue5a3"; + public const string dual_screen_pagination_24_regular = "\uf3d2"; + public const string dual_screen_settings_20_regular = "\ue5a4"; + public const string dual_screen_settings_24_regular = "\uf3d3"; + public const string dual_screen_span_20_regular = "\ue5a5"; + public const string dual_screen_span_24_regular = "\ue5a6"; + public const string dual_screen_speaker_20_regular = "\ue5a7"; + public const string dual_screen_speaker_24_regular = "\ue5a8"; + public const string dual_screen_status_bar_20_regular = "\ue5a9"; + public const string dual_screen_status_bar_24_regular = "\uf3d4"; + public const string dual_screen_tablet_20_regular = "\ue5aa"; + public const string dual_screen_tablet_24_regular = "\uf3d5"; + public const string dual_screen_update_20_regular = "\ue5ab"; + public const string dual_screen_update_24_regular = "\uf3d6"; + public const string dual_screen_vertical_scroll_20_regular = "\ue5ac"; + public const string dual_screen_vertical_scroll_24_regular = "\uf3d7"; + public const string dual_screen_vibrate_20_regular = "\ue5ad"; + public const string dual_screen_vibrate_24_regular = "\uf3d8"; + public const string dumbbell_16_regular = "\ue5ae"; + public const string dumbbell_20_regular = "\ue5af"; + public const string dumbbell_24_regular = "\ue5b0"; + public const string dumbbell_28_regular = "\ue5b1"; + public const string dust_20_regular = "\U000f011e"; + public const string dust_24_regular = "\U000f011f"; + public const string dust_28_regular = "\U000f0120"; + public const string earth_16_regular = "\uf3d9"; + public const string earth_20_regular = "\uf3da"; + public const string earth_24_regular = "\uf3db"; + public const string earth_32_regular = "\ueef2"; + public const string earth_48_regular = "\uf035"; + public const string earth_leaf_16_regular = "\ueef3"; + public const string earth_leaf_20_regular = "\ueef4"; + public const string earth_leaf_24_regular = "\ueef5"; + public const string earth_leaf_32_regular = "\ueef6"; + public const string earth_leaf_48_regular = "\uf036"; + public const string edit_12_regular = "\U000f032a"; + public const string edit_16_regular = "\uf3dc"; + public const string edit_20_regular = "\uf3dd"; + public const string edit_24_regular = "\uf3de"; + public const string edit_28_regular = "\ue5b2"; + public const string edit_32_regular = "\ue5b3"; + public const string edit_48_regular = "\ue5b4"; + public const string edit_arrow_back_16_regular = "\uf429"; + public const string edit_arrow_back_20_regular = "\ue5b5"; + public const string edit_arrow_back_24_regular = "\U000f0121"; + public const string edit_line_horizontal_3_20_regular = "\U000f062c"; + public const string edit_line_horizontal_3_24_regular = "\U000f062d"; + public const string edit_off_16_regular = "\ue5b6"; + public const string edit_off_20_regular = "\ue5b7"; + public const string edit_off_24_regular = "\ue5b8"; + public const string edit_off_28_regular = "\ue5b9"; + public const string edit_off_32_regular = "\ue5ba"; + public const string edit_off_48_regular = "\ue5bb"; + public const string edit_person_20_regular = "\U000f0567"; + public const string edit_person_24_regular = "\U000f0568"; + public const string edit_prohibited_16_regular = "\ue5bc"; + public const string edit_prohibited_20_regular = "\ue5bd"; + public const string edit_prohibited_24_regular = "\ue5be"; + public const string edit_prohibited_28_regular = "\ue5bf"; + public const string edit_prohibited_32_regular = "\ue5c0"; + public const string edit_prohibited_48_regular = "\ue5c1"; + public const string edit_settings_20_regular = "\ue5c2"; + public const string edit_settings_24_regular = "\ue5c3"; + public const string elevator_20_regular = "\uefe7"; + public const string elevator_24_regular = "\uefe8"; + public const string elevator_32_regular = "\uefe9"; + public const string elevator_48_regular = "\uf037"; + public const string emoji_16_regular = "\uf3df"; + public const string emoji_20_regular = "\uf3e0"; + public const string emoji_24_regular = "\uf3e1"; + public const string emoji_28_regular = "\ue5c4"; + public const string emoji_32_regular = "\ue5c5"; + public const string emoji_48_regular = "\ue5c6"; + public const string emoji_add_16_regular = "\ue5c7"; + public const string emoji_add_20_regular = "\ue5c8"; + public const string emoji_add_24_regular = "\uf3e2"; + public const string emoji_angry_16_regular = "\U000f0033"; + public const string emoji_angry_20_regular = "\uf3e3"; + public const string emoji_angry_24_regular = "\uf3e4"; + public const string emoji_edit_16_regular = "\ue5c9"; + public const string emoji_edit_20_regular = "\ue5ca"; + public const string emoji_edit_24_regular = "\ue5cb"; + public const string emoji_edit_28_regular = "\ue5cc"; + public const string emoji_edit_48_regular = "\ue5cd"; + public const string emoji_hand_16_regular = "\U000f0034"; + public const string emoji_hand_20_regular = "\ue5ce"; + public const string emoji_hand_24_regular = "\ue5cf"; + public const string emoji_hand_28_regular = "\ue5d0"; + public const string emoji_hand_32_regular = "\U000f00da"; + public const string emoji_hand_48_regular = "\U000f00db"; + public const string emoji_hint_16_regular = "\U000f0122"; + public const string emoji_hint_20_regular = "\U000f0123"; + public const string emoji_hint_24_regular = "\U000f0124"; + public const string emoji_hint_28_regular = "\U000f0125"; + public const string emoji_hint_32_regular = "\U000f0126"; + public const string emoji_hint_48_regular = "\U000f0127"; + public const string emoji_laugh_16_regular = "\ue5d1"; + public const string emoji_laugh_20_regular = "\uf3e5"; + public const string emoji_laugh_24_regular = "\uf3e6"; + public const string emoji_meh_16_regular = "\U000f0035"; + public const string emoji_meh_20_regular = "\uf3e7"; + public const string emoji_meh_24_regular = "\uf3e8"; + public const string emoji_meme_16_regular = "\U000f0584"; + public const string emoji_meme_20_regular = "\U000f0585"; + public const string emoji_meme_24_regular = "\U000f0586"; + public const string emoji_multiple_20_regular = "\ue5d2"; + public const string emoji_multiple_24_regular = "\ue5d3"; + public const string emoji_sad_16_regular = "\ue5d4"; + public const string emoji_sad_20_regular = "\uf3e9"; + public const string emoji_sad_24_regular = "\uf3ea"; + public const string emoji_sad_slight_20_regular = "\ue5d5"; + public const string emoji_sad_slight_24_regular = "\ue5d6"; + public const string emoji_smile_slight_20_regular = "\ue5d7"; + public const string emoji_smile_slight_24_regular = "\ue5d8"; + public const string emoji_sparkle_16_regular = "\ue5d9"; + public const string emoji_sparkle_20_regular = "\ue5da"; + public const string emoji_sparkle_24_regular = "\ue5db"; + public const string emoji_sparkle_28_regular = "\ue5dc"; + public const string emoji_sparkle_32_regular = "\ue5dd"; + public const string emoji_sparkle_48_regular = "\ue5de"; + public const string emoji_surprise_20_regular = "\uf3eb"; + public const string emoji_surprise_24_regular = "\uf3ec"; + public const string engine_20_regular = "\ue5df"; + public const string engine_24_regular = "\ue5e0"; + public const string equal_circle_20_regular = "\ue5e1"; + public const string equal_circle_24_regular = "\ue5e2"; + public const string equal_off_12_regular = "\uefc6"; + public const string equal_off_16_regular = "\uefc7"; + public const string equal_off_20_regular = "\uf42a"; + public const string equal_off_24_regular = "\ue5e3"; + public const string eraser_20_regular = "\ue5e4"; + public const string eraser_24_regular = "\ue5e5"; + public const string eraser_medium_20_regular = "\ue5e6"; + public const string eraser_medium_24_regular = "\ue5e7"; + public const string eraser_segment_20_regular = "\ue5e8"; + public const string eraser_segment_24_regular = "\ue5e9"; + public const string eraser_small_20_regular = "\ue5ea"; + public const string eraser_small_24_regular = "\ue5eb"; + public const string eraser_tool_20_regular = "\ue5ec"; + public const string eraser_tool_24_regular = "\uf3ef"; + public const string error_circle_12_regular = "\ue5ed"; + public const string error_circle_16_regular = "\uf3f0"; + public const string error_circle_20_regular = "\uf3f1"; + public const string error_circle_24_regular = "\uf3f2"; + public const string error_circle_48_regular = "\U000f03b5"; + public const string error_circle_settings_16_regular = "\uf42b"; + public const string error_circle_settings_20_regular = "\ue5ee"; + public const string expand_up_left_16_regular = "\uf42c"; + public const string expand_up_left_20_regular = "\uf431"; + public const string expand_up_left_24_regular = "\uf432"; + public const string expand_up_left_28_regular = "\uf433"; + public const string expand_up_left_32_regular = "\uf44b"; + public const string expand_up_left_48_regular = "\uf44c"; + public const string expand_up_right_16_regular = "\uf44f"; + public const string expand_up_right_20_regular = "\uf450"; + public const string expand_up_right_24_regular = "\uf46d"; + public const string expand_up_right_28_regular = "\uf495"; + public const string expand_up_right_32_regular = "\uf496"; + public const string expand_up_right_48_regular = "\uf497"; + public const string extended_dock_20_regular = "\ue5ef"; + public const string extended_dock_24_regular = "\uf3f4"; + public const string eye_12_regular = "\ue5f0"; + public const string eye_16_regular = "\ue5f1"; + public const string eye_20_regular = "\ue5f2"; + public const string eye_24_regular = "\ue5f3"; + public const string eye_28_regular = "\uefc8"; + public const string eye_32_regular = "\uefc9"; + public const string eye_48_regular = "\uefca"; + public const string eye_lines_20_regular = "\uefcb"; + public const string eye_lines_24_regular = "\uefcc"; + public const string eye_lines_28_regular = "\uefcd"; + public const string eye_lines_32_regular = "\uefce"; + public const string eye_lines_48_regular = "\uefcf"; + public const string eye_off_16_regular = "\ue5f4"; + public const string eye_off_20_regular = "\ue5f5"; + public const string eye_off_24_regular = "\ue5f6"; + public const string eye_tracking_16_regular = "\ue5f7"; + public const string eye_tracking_20_regular = "\ue5f8"; + public const string eye_tracking_24_regular = "\ue5f9"; + public const string eye_tracking_off_16_regular = "\ue5fa"; + public const string eye_tracking_off_20_regular = "\ue5fb"; + public const string eye_tracking_off_24_regular = "\ue5fc"; + public const string eyedropper_16_regular = "\uf0e6"; + public const string eyedropper_20_regular = "\ue5fd"; + public const string eyedropper_24_regular = "\ue5fe"; + public const string eyedropper_off_20_regular = "\ue5ff"; + public const string eyedropper_off_24_regular = "\ue600"; + public const string f_stop_16_regular = "\ue601"; + public const string f_stop_20_regular = "\ue602"; + public const string f_stop_24_regular = "\ue603"; + public const string f_stop_28_regular = "\ue604"; + public const string fast_acceleration_20_regular = "\ue605"; + public const string fast_acceleration_24_regular = "\uf3fd"; + public const string fast_forward_16_regular = "\ue606"; + public const string fast_forward_20_regular = "\uf3fe"; + public const string fast_forward_24_regular = "\uf3ff"; + public const string fast_forward_28_regular = "\ue607"; + public const string fax_16_regular = "\uf4ae"; + public const string fax_20_regular = "\ue608"; + public const string feed_16_regular = "\ueef7"; + public const string feed_20_regular = "\ueef8"; + public const string feed_24_regular = "\ueef9"; + public const string feed_28_regular = "\ueefa"; + public const string feed_32_regular = "\uefea"; + public const string feed_48_regular = "\uefeb"; + public const string filmstrip_16_regular = "\U000f0036"; + public const string filmstrip_20_regular = "\ueefb"; + public const string filmstrip_24_regular = "\ueefc"; + public const string filmstrip_32_regular = "\U000f0037"; + public const string filmstrip_48_regular = "\U000f01cd"; + public const string filmstrip_image_20_regular = "\U000f0340"; + public const string filmstrip_image_24_regular = "\U000f0341"; + public const string filmstrip_off_48_regular = "\U000f01ce"; + public const string filmstrip_play_16_regular = "\U000f0038"; + public const string filmstrip_play_20_regular = "\U000f0039"; + public const string filmstrip_play_24_regular = "\U000f003a"; + public const string filmstrip_play_32_regular = "\U000f003b"; + public const string filmstrip_split_16_regular = "\U000f0181"; + public const string filmstrip_split_20_regular = "\U000f0182"; + public const string filmstrip_split_24_regular = "\U000f0183"; + public const string filmstrip_split_32_regular = "\U000f0184"; + public const string filter_12_regular = "\ue609"; + public const string filter_16_regular = "\ue60a"; + public const string filter_20_regular = "\uf406"; + public const string filter_24_regular = "\uf407"; + public const string filter_28_regular = "\uf408"; + public const string filter_32_regular = "\U000f0432"; + public const string filter_add_20_regular = "\ue60b"; + public const string filter_dismiss_16_regular = "\ue60c"; + public const string filter_dismiss_20_regular = "\ue60d"; + public const string filter_dismiss_24_regular = "\ue60e"; + public const string filter_sync_20_regular = "\ue60f"; + public const string filter_sync_24_regular = "\ue610"; + public const string fingerprint_16_regular = "\U000f03f9"; + public const string fingerprint_20_regular = "\ue611"; + public const string fingerprint_24_regular = "\uf409"; + public const string fingerprint_32_regular = "\U000f03fa"; + public const string fingerprint_48_regular = "\ue612"; + public const string fire_16_regular = "\uef68"; + public const string fire_20_regular = "\uef69"; + public const string fire_24_regular = "\uef6a"; + public const string fireplace_20_regular = "\uefec"; + public const string fireplace_24_regular = "\uefed"; + public const string fireplace_32_regular = "\uefee"; + public const string fireplace_48_regular = "\uefef"; + public const string fixed_width_20_regular = "\ue613"; + public const string fixed_width_24_regular = "\ue614"; + public const string flag_16_regular = "\uf40a"; + public const string flag_20_regular = "\uf40b"; + public const string flag_24_regular = "\uf40c"; + public const string flag_28_regular = "\uf40d"; + public const string flag_32_regular = "\U000f003c"; + public const string flag_48_regular = "\uf40e"; + public const string flag_checkered_20_regular = "\uf070"; + public const string flag_clock_16_regular = "\U000f003d"; + public const string flag_clock_20_regular = "\U000f003e"; + public const string flag_clock_24_regular = "\U000f003f"; + public const string flag_clock_28_regular = "\U000f0040"; + public const string flag_clock_32_regular = "\U000f0041"; + public const string flag_clock_48_regular = "\U000f0042"; + public const string flag_off_16_regular = "\ue615"; + public const string flag_off_20_regular = "\ue616"; + public const string flag_off_24_regular = "\uf40f"; + public const string flag_off_28_regular = "\uf410"; + public const string flag_off_48_regular = "\uf411"; + public const string flash_16_regular = "\ue617"; + public const string flash_20_regular = "\ue618"; + public const string flash_24_regular = "\ue619"; + public const string flash_28_regular = "\ue61a"; + public const string flash_32_regular = "\U000f01cf"; + public const string flash_add_20_regular = "\ue61b"; + public const string flash_auto_20_regular = "\ue61c"; + public const string flash_auto_24_regular = "\uf412"; + public const string flash_checkmark_16_regular = "\ue61d"; + public const string flash_checkmark_20_regular = "\ue61e"; + public const string flash_checkmark_24_regular = "\ue61f"; + public const string flash_checkmark_28_regular = "\ue620"; + public const string flash_flow_16_regular = "\ue621"; + public const string flash_flow_20_regular = "\ue622"; + public const string flash_flow_24_regular = "\ue623"; + public const string flash_off_20_regular = "\ue624"; + public const string flash_off_24_regular = "\uf413"; + public const string flash_play_20_regular = "\ue625"; + public const string flash_settings_20_regular = "\ue626"; + public const string flash_settings_24_regular = "\ue627"; + public const string flash_sparkle_16_regular = "\U000f05ca"; + public const string flash_sparkle_20_regular = "\U000f02d6"; + public const string flash_sparkle_24_regular = "\U000f02d7"; + public const string flashlight_16_regular = "\ue628"; + public const string flashlight_20_regular = "\ue629"; + public const string flashlight_24_regular = "\uf416"; + public const string flashlight_off_20_regular = "\ue62a"; + public const string flashlight_off_24_regular = "\uf417"; + public const string flip_horizontal_16_regular = "\ue62b"; + public const string flip_horizontal_20_regular = "\ue62c"; + public const string flip_horizontal_24_regular = "\ue62d"; + public const string flip_horizontal_28_regular = "\ue62e"; + public const string flip_horizontal_32_regular = "\ue62f"; + public const string flip_horizontal_48_regular = "\ue630"; + public const string flip_vertical_16_regular = "\ue631"; + public const string flip_vertical_20_regular = "\ue632"; + public const string flip_vertical_24_regular = "\ue633"; + public const string flip_vertical_28_regular = "\ue634"; + public const string flip_vertical_32_regular = "\ue635"; + public const string flip_vertical_48_regular = "\ue636"; + public const string flow_16_regular = "\uf4af"; + public const string flow_20_regular = "\ue637"; + public const string flow_24_regular = "\U000f01d0"; + public const string flow_32_regular = "\U000f01d1"; + public const string flowchart_16_regular = "\U000f04c8"; + public const string flowchart_20_regular = "\ue638"; + public const string flowchart_24_regular = "\ue639"; + public const string flowchart_32_regular = "\U000f04c9"; + public const string flowchart_circle_20_regular = "\ue63a"; + public const string flowchart_circle_24_regular = "\ue63b"; + public const string fluent_20_regular = "\ue63c"; + public const string fluent_24_regular = "\ue63d"; + public const string fluent_32_regular = "\ue63e"; + public const string fluent_48_regular = "\ue63f"; + public const string fluid_16_regular = "\ue640"; + public const string fluid_20_regular = "\ue641"; + public const string fluid_24_regular = "\ue642"; + public const string folder_16_regular = "\ue643"; + public const string folder_20_regular = "\uf418"; + public const string folder_24_regular = "\uf419"; + public const string folder_28_regular = "\uf41a"; + public const string folder_32_regular = "\ue644"; + public const string folder_48_regular = "\uf41b"; + public const string folder_add_16_regular = "\ue645"; + public const string folder_add_20_regular = "\uf41c"; + public const string folder_add_24_regular = "\uf41d"; + public const string folder_add_28_regular = "\uf41e"; + public const string folder_add_32_regular = "\U000f0211"; + public const string folder_add_48_regular = "\uf41f"; + public const string folder_arrow_left_16_regular = "\ue646"; + public const string folder_arrow_left_20_regular = "\ue647"; + public const string folder_arrow_left_24_regular = "\ue648"; + public const string folder_arrow_left_28_regular = "\ue649"; + public const string folder_arrow_left_32_regular = "\ue64a"; + public const string folder_arrow_left_48_regular = "\U000f0212"; + public const string folder_arrow_right_16_regular = "\ue64b"; + public const string folder_arrow_right_20_regular = "\ue64c"; + public const string folder_arrow_right_24_regular = "\ue64d"; + public const string folder_arrow_right_28_regular = "\ue64e"; + public const string folder_arrow_right_32_regular = "\U000f0213"; + public const string folder_arrow_right_48_regular = "\ue64f"; + public const string folder_arrow_up_16_regular = "\ue650"; + public const string folder_arrow_up_20_regular = "\ue651"; + public const string folder_arrow_up_24_regular = "\ue652"; + public const string folder_arrow_up_28_regular = "\ue653"; + public const string folder_arrow_up_32_regular = "\U000f0214"; + public const string folder_arrow_up_48_regular = "\ue654"; + public const string folder_briefcase_20_regular = "\uf420"; + public const string folder_globe_16_regular = "\uf4b1"; + public const string folder_globe_20_regular = "\ue655"; + public const string folder_lightning_16_regular = "\U000f01ec"; + public const string folder_lightning_20_regular = "\U000f01ed"; + public const string folder_lightning_24_regular = "\U000f01ee"; + public const string folder_link_16_regular = "\U000f0215"; + public const string folder_link_20_regular = "\uf425"; + public const string folder_link_24_regular = "\uf426"; + public const string folder_link_28_regular = "\uf427"; + public const string folder_link_32_regular = "\U000f0216"; + public const string folder_link_48_regular = "\uf428"; + public const string folder_list_16_regular = "\U000f0128"; + public const string folder_list_20_regular = "\U000f0129"; + public const string folder_mail_16_regular = "\ue656"; + public const string folder_mail_20_regular = "\ue657"; + public const string folder_mail_24_regular = "\ue658"; + public const string folder_mail_28_regular = "\ue659"; + public const string folder_mail_32_regular = "\U000f0433"; + public const string folder_multiple_16_regular = "\uf0e7"; + public const string folder_open_16_regular = "\uf42d"; + public const string folder_open_20_regular = "\uf42e"; + public const string folder_open_24_regular = "\uf42f"; + public const string folder_open_vertical_16_regular = "\uf0e8"; + public const string folder_open_vertical_20_regular = "\uf430"; + public const string folder_open_vertical_24_regular = "\U000f026d"; + public const string folder_people_20_regular = "\ueece"; + public const string folder_people_24_regular = "\ueecf"; + public const string folder_person_16_regular = "\uf4c6"; + public const string folder_person_20_regular = "\ue65a"; + public const string folder_person_24_regular = "\U000f03fb"; + public const string folder_person_28_regular = "\U000f03fc"; + public const string folder_person_32_regular = "\U000f03fd"; + public const string folder_person_48_regular = "\U000f03fe"; + public const string folder_prohibited_16_regular = "\ue65b"; + public const string folder_prohibited_20_regular = "\ue65c"; + public const string folder_prohibited_24_regular = "\ue65d"; + public const string folder_prohibited_28_regular = "\ue65e"; + public const string folder_prohibited_32_regular = "\U000f0217"; + public const string folder_prohibited_48_regular = "\ue65f"; + public const string folder_search_16_regular = "\U000f038d"; + public const string folder_search_20_regular = "\U000f038e"; + public const string folder_search_24_regular = "\U000f038f"; + public const string folder_swap_16_regular = "\ue660"; + public const string folder_swap_20_regular = "\ue661"; + public const string folder_swap_24_regular = "\ue662"; + public const string folder_sync_16_regular = "\ue663"; + public const string folder_sync_20_regular = "\ue664"; + public const string folder_sync_24_regular = "\ue665"; + public const string folder_zip_16_regular = "\uf434"; + public const string folder_zip_20_regular = "\uf435"; + public const string folder_zip_24_regular = "\uf436"; + public const string font_decrease_20_regular = "\uf437"; + public const string font_decrease_24_regular = "\uf438"; + public const string font_increase_20_regular = "\uf439"; + public const string font_increase_24_regular = "\uf43a"; + public const string font_space_tracking_in_16_regular = "\uf43b"; + public const string font_space_tracking_in_20_regular = "\uf43c"; + public const string font_space_tracking_in_24_regular = "\uf43d"; + public const string font_space_tracking_in_28_regular = "\uf43e"; + public const string font_space_tracking_out_16_regular = "\uf43f"; + public const string font_space_tracking_out_20_regular = "\uf440"; + public const string font_space_tracking_out_24_regular = "\uf441"; + public const string font_space_tracking_out_28_regular = "\uf442"; + public const string food_16_regular = "\ue666"; + public const string food_20_regular = "\uf443"; + public const string food_24_regular = "\uf444"; + public const string food_28_regular = "\U000f05ed"; + public const string food_32_regular = "\U000f05ee"; + public const string food_48_regular = "\U000f05ef"; + public const string food_apple_20_regular = "\ue667"; + public const string food_apple_24_regular = "\ue668"; + public const string food_cake_12_regular = "\ue669"; + public const string food_cake_16_regular = "\ue66a"; + public const string food_cake_20_regular = "\ue66b"; + public const string food_cake_24_regular = "\uf445"; + public const string food_carrot_20_regular = "\ueefd"; + public const string food_carrot_24_regular = "\ueefe"; + public const string food_chicken_leg_16_regular = "\uef17"; + public const string food_chicken_leg_20_regular = "\uef18"; + public const string food_chicken_leg_24_regular = "\uef19"; + public const string food_chicken_leg_32_regular = "\uef1a"; + public const string food_egg_16_regular = "\ue66c"; + public const string food_egg_20_regular = "\ue66d"; + public const string food_egg_24_regular = "\uf446"; + public const string food_fish_20_regular = "\ueeff"; + public const string food_fish_24_regular = "\uef00"; + public const string food_grains_20_regular = "\ue66e"; + public const string food_grains_24_regular = "\ue66f"; + public const string food_pizza_20_regular = "\ue670"; + public const string food_pizza_24_regular = "\ue671"; + public const string food_toast_16_regular = "\ue672"; + public const string food_toast_20_regular = "\ue673"; + public const string food_toast_24_regular = "\uf447"; + public const string form_20_regular = "\ueea7"; + public const string form_24_regular = "\ueea8"; + public const string form_28_regular = "\ueea9"; + public const string form_48_regular = "\ueeaa"; + public const string form_multiple_20_regular = "\uef1b"; + public const string form_multiple_24_regular = "\uef1c"; + public const string form_multiple_28_regular = "\uef1d"; + public const string form_multiple_48_regular = "\uef1e"; + public const string form_new_20_regular = "\ue674"; + public const string form_new_24_regular = "\uf448"; + public const string form_new_28_regular = "\uf449"; + public const string form_new_48_regular = "\uf44a"; + public const string fps_120_20_regular = "\ue675"; + public const string fps_120_24_regular = "\ue676"; + public const string fps_240_20_regular = "\ue677"; + public const string fps_240_24_regular = "\uf44d"; + public const string fps_30_16_regular = "\ue678"; + public const string fps_30_20_regular = "\ue679"; + public const string fps_30_24_regular = "\ue67a"; + public const string fps_30_28_regular = "\ue67b"; + public const string fps_30_48_regular = "\ue67c"; + public const string fps_60_16_regular = "\ue67d"; + public const string fps_60_20_regular = "\ue67e"; + public const string fps_60_24_regular = "\ue67f"; + public const string fps_60_28_regular = "\ue680"; + public const string fps_60_48_regular = "\ue681"; + public const string fps_960_20_regular = "\ue682"; + public const string fps_960_24_regular = "\uf44e"; + public const string frame_16_regular = "\U000f00dc"; + public const string frame_20_regular = "\U000f00dd"; + public const string frame_24_regular = "\U000f00de"; + public const string full_screen_maximize_16_regular = "\ue683"; + public const string full_screen_maximize_20_regular = "\ue684"; + public const string full_screen_maximize_24_regular = "\ue685"; + public const string full_screen_maximize_28_regular = "\U000f03b6"; + public const string full_screen_maximize_32_regular = "\U000f03b7"; + public const string full_screen_minimize_16_regular = "\ue686"; + public const string full_screen_minimize_20_regular = "\ue687"; + public const string full_screen_minimize_24_regular = "\ue688"; + public const string full_screen_minimize_28_regular = "\U000f03b8"; + public const string full_screen_minimize_32_regular = "\U000f03b9"; + public const string games_16_regular = "\ue689"; + public const string games_20_regular = "\ue68a"; + public const string games_24_regular = "\uf451"; + public const string games_28_regular = "\ue68b"; + public const string games_32_regular = "\ue68c"; + public const string games_48_regular = "\ue68d"; + public const string gantt_chart_16_regular = "\uf0e9"; + public const string gantt_chart_20_regular = "\ue68e"; + public const string gantt_chart_24_regular = "\ue68f"; + public const string gas_20_regular = "\ue690"; + public const string gas_24_regular = "\ue691"; + public const string gas_pump_20_regular = "\ue692"; + public const string gas_pump_24_regular = "\ue693"; + public const string gather_20_regular = "\ue694"; + public const string gauge_20_regular = "\uf4c7"; + public const string gauge_24_regular = "\uf4c8"; + public const string gauge_32_regular = "\ueed0"; + public const string gauge_add_20_regular = "\ue695"; + public const string gavel_16_regular = "\U000f0185"; + public const string gavel_20_regular = "\ue696"; + public const string gavel_24_regular = "\ue697"; + public const string gavel_32_regular = "\ue698"; + public const string gavel_prohibited_16_regular = "\U000f0186"; + public const string gavel_prohibited_20_regular = "\U000f0187"; + public const string gesture_20_regular = "\ue699"; + public const string gesture_24_regular = "\uf452"; + public const string gif_16_regular = "\ue69a"; + public const string gif_20_regular = "\uf453"; + public const string gif_24_regular = "\uf454"; + public const string gift_16_regular = "\ue69b"; + public const string gift_20_regular = "\uf455"; + public const string gift_24_regular = "\uf456"; + public const string gift_card_16_regular = "\uf4cd"; + public const string gift_card_20_regular = "\uf4ce"; + public const string gift_card_24_regular = "\ue69c"; + public const string gift_card_add_20_regular = "\uf4cf"; + public const string gift_card_add_24_regular = "\ue69d"; + public const string gift_card_arrow_right_20_regular = "\ue69e"; + public const string gift_card_arrow_right_24_regular = "\ue69f"; + public const string gift_card_money_20_regular = "\ue6a0"; + public const string gift_card_money_24_regular = "\ue6a1"; + public const string gift_card_multiple_20_regular = "\ue6a2"; + public const string gift_card_multiple_24_regular = "\ue6a3"; + public const string gift_open_16_regular = "\U000f0188"; + public const string gift_open_20_regular = "\U000f0189"; + public const string gift_open_24_regular = "\U000f018a"; + public const string gift_open_32_regular = "\U000f062e"; + public const string glance_default_12_regular = "\ue6a5"; + public const string glance_20_regular = "\ue6a4"; + public const string glance_24_regular = "\uf457"; + public const string glance_horizontal_12_regular = "\ue6a6"; + public const string glance_horizontal_16_regular = "\uf071"; + public const string glance_horizontal_20_regular = "\ue6a7"; + public const string glance_horizontal_24_regular = "\ue6a8"; + public const string glance_horizontal_32_regular = "\U000f0434"; + public const string glance_horizontal_sparkle_32_regular = "\U000f0435"; + public const string glance_horizontal_sparkles_16_regular = "\uf072"; + public const string glance_horizontal_sparkles_20_regular = "\U000f0485"; + public const string glance_horizontal_sparkles_24_regular = "\uf073"; + public const string glasses_16_regular = "\ue6a9"; + public const string glasses_20_regular = "\ue6aa"; + public const string glasses_24_regular = "\uf458"; + public const string glasses_28_regular = "\ue6ab"; + public const string glasses_32_regular = "\U000f0043"; + public const string glasses_48_regular = "\ue6ac"; + public const string glasses_off_16_regular = "\ue6ad"; + public const string glasses_off_20_regular = "\ue6ae"; + public const string glasses_off_24_regular = "\uf459"; + public const string glasses_off_28_regular = "\ue6af"; + public const string glasses_off_32_regular = "\U000f0044"; + public const string glasses_off_48_regular = "\ue6b0"; + public const string globe_12_regular = "\U000f018b"; + public const string globe_16_regular = "\ue6b1"; + public const string globe_20_regular = "\uf45a"; + public const string globe_24_regular = "\uf45b"; + public const string globe_28_regular = "\U000f050d"; + public const string globe_32_regular = "\ue6b2"; + public const string globe_48_regular = "\U000f026e"; + public const string globe_add_20_regular = "\ue6b3"; + public const string globe_add_24_regular = "\uf45c"; + public const string globe_arrow_forward_16_regular = "\U000f0302"; + public const string globe_arrow_forward_20_regular = "\U000f0303"; + public const string globe_arrow_forward_24_regular = "\U000f0304"; + public const string globe_arrow_forward_32_regular = "\U000f0305"; + public const string globe_arrow_up_16_regular = "\U000f0436"; + public const string globe_arrow_up_20_regular = "\U000f0437"; + public const string globe_arrow_up_24_regular = "\U000f0438"; + public const string globe_clock_16_regular = "\ue6b4"; + public const string globe_clock_20_regular = "\ue6b5"; + public const string globe_clock_24_regular = "\uf45d"; + public const string globe_desktop_20_regular = "\ue6b6"; + public const string globe_desktop_24_regular = "\uf45e"; + public const string globe_error_16_regular = "\U000f0439"; + public const string globe_error_20_regular = "\U000f043a"; + public const string globe_error_24_regular = "\U000f043b"; + public const string globe_location_20_regular = "\uf4dc"; + public const string globe_location_24_regular = "\uf45f"; + public const string globe_person_20_regular = "\ue6b7"; + public const string globe_person_24_regular = "\ue6b8"; + public const string globe_prohibited_16_regular = "\U000f043c"; + public const string globe_prohibited_20_regular = "\ue6b9"; + public const string globe_prohibited_24_regular = "\U000f043d"; + public const string globe_search_20_regular = "\ue6ba"; + public const string globe_search_24_regular = "\uf460"; + public const string globe_shield_20_regular = "\ue6bb"; + public const string globe_shield_24_regular = "\ue6bc"; + public const string globe_shield_48_regular = "\U000f026f"; + public const string globe_star_16_regular = "\uf4eb"; + public const string globe_star_20_regular = "\ue6bd"; + public const string globe_surface_20_regular = "\ue6be"; + public const string globe_surface_24_regular = "\ue6bf"; + public const string globe_surface_32_regular = "\U000f0045"; + public const string globe_sync_16_regular = "\U000f043e"; + public const string globe_sync_20_regular = "\U000f043f"; + public const string globe_sync_24_regular = "\U000f0440"; + public const string globe_video_20_regular = "\uf4fd"; + public const string globe_video_24_regular = "\uf461"; + public const string globe_video_28_regular = "\ue6c0"; + public const string globe_video_32_regular = "\ue6c1"; + public const string globe_video_48_regular = "\ue6c2"; + public const string globe_warning_16_regular = "\U000f0441"; + public const string globe_warning_20_regular = "\U000f0442"; + public const string globe_warning_24_regular = "\U000f0443"; + public const string grid_16_regular = "\ue6c3"; + public const string grid_20_regular = "\uf462"; + public const string grid_24_regular = "\uf463"; + public const string grid_28_regular = "\uf464"; + public const string grid_circles_24_regular = "\uf074"; + public const string grid_circles_28_regular = "\uf075"; + public const string grid_dots_20_regular = "\ue6c4"; + public const string grid_dots_24_regular = "\ue6c5"; + public const string grid_dots_28_regular = "\ue6c6"; + public const string grid_kanban_16_regular = "\U000f018c"; + public const string grid_kanban_20_regular = "\ue6c7"; + public const string group_20_regular = "\uf465"; + public const string group_24_regular = "\uf466"; + public const string group_dismiss_20_regular = "\ue6c8"; + public const string group_dismiss_24_regular = "\ue6c9"; + public const string group_list_20_regular = "\ue6ca"; + public const string group_list_24_regular = "\uf467"; + public const string group_return_20_regular = "\ue6cb"; + public const string group_return_24_regular = "\ue6cc"; + public const string guardian_20_regular = "\ue6cd"; + public const string guardian_24_regular = "\ue6ce"; + public const string guardian_28_regular = "\ue6cf"; + public const string guardian_48_regular = "\ue6d0"; + public const string guest_12_regular = "\U000f050e"; + public const string guest_16_regular = "\uf468"; + public const string guest_20_regular = "\uf469"; + public const string guest_24_regular = "\uf46a"; + public const string guest_28_regular = "\uf46b"; + public const string guest_32_regular = "\U000f050f"; + public const string guest_48_regular = "\U000f0510"; + public const string guest_add_20_regular = "\ue6d1"; + public const string guest_add_24_regular = "\uf46c"; + public const string guitar_16_regular = "\ue6d2"; + public const string guitar_20_regular = "\ue6d3"; + public const string guitar_24_regular = "\ue6d4"; + public const string guitar_28_regular = "\ue6d5"; + public const string hand_draw_16_regular = "\ue6d6"; + public const string hand_draw_20_regular = "\ue6d7"; + public const string hand_draw_24_regular = "\ue6d8"; + public const string hand_draw_28_regular = "\ue6d9"; + public const string hand_left_16_regular = "\ue6da"; + public const string hand_left_20_regular = "\ue6db"; + public const string hand_left_24_regular = "\ue6dc"; + public const string hand_left_28_regular = "\ue6dd"; + public const string hand_left_chat_16_regular = "\ueed1"; + public const string hand_left_chat_20_regular = "\ueed2"; + public const string hand_left_chat_24_regular = "\ueed3"; + public const string hand_left_chat_28_regular = "\ueed4"; + public const string hand_open_heart_20_regular = "\uef01"; + public const string hand_open_heart_32_regular = "\uef02"; + public const string hand_point_16_regular = "\U000f0587"; + public const string hand_point_20_regular = "\U000f0588"; + public const string hand_point_24_regular = "\U000f0589"; + public const string hand_point_28_regular = "\U000f058a"; + public const string hand_point_32_regular = "\U000f058b"; + public const string hand_point_48_regular = "\U000f058c"; + public const string hand_right_16_regular = "\ue6de"; + public const string hand_right_20_regular = "\ue6df"; + public const string hand_right_24_regular = "\ue6e0"; + public const string hand_right_28_regular = "\ue6e1"; + public const string hand_right_off_16_regular = "\U000f0270"; + public const string hand_right_off_20_regular = "\ue6e2"; + public const string hand_right_off_24_regular = "\U000f0271"; + public const string hand_right_off_28_regular = "\U000f0272"; + public const string hand_wave_16_regular = "\uef03"; + public const string hand_wave_20_regular = "\uef04"; + public const string hand_wave_24_regular = "\uef05"; + public const string handshake_16_regular = "\uf46e"; + public const string handshake_20_regular = "\uf46f"; + public const string handshake_24_regular = "\uf470"; + public const string handshake_32_regular = "\uef06"; + public const string haptic_strong_16_regular = "\U000f05a5"; + public const string haptic_strong_20_regular = "\U000f05a6"; + public const string haptic_strong_24_regular = "\U000f05a7"; + public const string haptic_weak_16_regular = "\U000f05a8"; + public const string haptic_weak_20_regular = "\U000f05a9"; + public const string haptic_weak_24_regular = "\U000f05aa"; + public const string hard_drive_16_regular = "\uf0ea"; + public const string hard_drive_20_regular = "\ue6e3"; + public const string hard_drive_24_regular = "\U000f0306"; + public const string hard_drive_28_regular = "\U000f04f1"; + public const string hard_drive_32_regular = "\U000f0307"; + public const string hard_drive_48_regular = "\U000f04f2"; + public const string hard_drive_call_24_regular = "\U000f0308"; + public const string hard_drive_call_32_regular = "\U000f0309"; + public const string hat_graduation_12_regular = "\ue6e4"; + public const string hat_graduation_16_regular = "\ue6e5"; + public const string hat_graduation_20_regular = "\ue6e6"; + public const string hat_graduation_24_regular = "\ue6e7"; + public const string hat_graduation_28_regular = "\U000f01ef"; + public const string hat_graduation_add_16_regular = "\U000f03ff"; + public const string hat_graduation_add_20_regular = "\U000f0400"; + public const string hat_graduation_add_24_regular = "\U000f0401"; + public const string hat_graduation_sparkle_16_regular = "\U000f0273"; + public const string hat_graduation_sparkle_20_regular = "\U000f0218"; + public const string hat_graduation_sparkle_24_regular = "\U000f0219"; + public const string hat_graduation_sparkle_28_regular = "\U000f021a"; + public const string hd_16_regular = "\ue6e8"; + public const string hd_20_regular = "\ue6e9"; + public const string hd_24_regular = "\ue6ea"; + public const string hdr_20_regular = "\ue6eb"; + public const string hdr_24_regular = "\uf471"; + public const string hdr_off_20_regular = "\ue6ec"; + public const string hdr_off_24_regular = "\ue6ed"; + public const string headphones_20_regular = "\ue6ee"; + public const string headphones_24_regular = "\uf472"; + public const string headphones_28_regular = "\uf473"; + public const string headphones_32_regular = "\ue6ef"; + public const string headphones_48_regular = "\ue6f0"; + public const string headphones_sound_wave_20_regular = "\ue6f1"; + public const string headphones_sound_wave_24_regular = "\ue6f2"; + public const string headphones_sound_wave_28_regular = "\ue6f3"; + public const string headphones_sound_wave_32_regular = "\ue6f4"; + public const string headphones_sound_wave_48_regular = "\ue6f5"; + public const string headset_16_regular = "\ue6f6"; + public const string headset_20_regular = "\ue6f7"; + public const string headset_24_regular = "\uf474"; + public const string headset_28_regular = "\uf475"; + public const string headset_32_regular = "\ue6f8"; + public const string headset_48_regular = "\ue6f9"; + public const string headset_add_20_regular = "\uf4fe"; + public const string headset_add_24_regular = "\uf4ff"; + public const string headset_vr_20_regular = "\uf476"; + public const string headset_vr_24_regular = "\uf477"; + public const string heart_12_regular = "\ue6fa"; + public const string heart_16_regular = "\uf478"; + public const string heart_20_regular = "\uf479"; + public const string heart_24_regular = "\uf47a"; + public const string heart_28_regular = "\uf500"; + public const string heart_32_regular = "\ue6fb"; + public const string heart_48_regular = "\ue6fc"; + public const string heart_broken_16_regular = "\uf501"; + public const string heart_broken_20_regular = "\ue6fd"; + public const string heart_broken_24_regular = "\uef25"; + public const string heart_circle_16_regular = "\ue6fe"; + public const string heart_circle_20_regular = "\ue6ff"; + public const string heart_circle_24_regular = "\ue700"; + public const string heart_circle_hint_16_regular = "\uf076"; + public const string heart_circle_hint_20_regular = "\uf077"; + public const string heart_circle_hint_24_regular = "\uf078"; + public const string heart_circle_hint_28_regular = "\uf079"; + public const string heart_circle_hint_32_regular = "\uf07a"; + public const string heart_circle_hint_48_regular = "\uf07b"; + public const string heart_off_16_regular = "\U000f02b0"; + public const string heart_off_20_regular = "\U000f02b1"; + public const string heart_off_24_regular = "\U000f02b2"; + public const string heart_pulse_20_regular = "\ue701"; + public const string heart_pulse_24_regular = "\ue702"; + public const string heart_pulse_32_regular = "\ue703"; + public const string heart_pulse_checkmark_20_regular = "\U000f01d2"; + public const string heart_pulse_error_20_regular = "\U000f01d3"; + public const string heart_pulse_warning_20_regular = "\U000f01d4"; + public const string hexagon_12_regular = "\U000f02d8"; + public const string hexagon_16_regular = "\U000f02b3"; + public const string hexagon_20_regular = "\U000f02b4"; + public const string hexagon_24_regular = "\U000f02d9"; + public const string hexagon_28_regular = "\U000f0390"; + public const string hexagon_32_regular = "\U000f0391"; + public const string hexagon_48_regular = "\U000f0392"; + public const string hexagon_sparkle_20_regular = "\U000f05ab"; + public const string hexagon_sparkle_24_regular = "\U000f05ac"; + public const string hexagon_three_12_regular = "\U000f02da"; + public const string hexagon_three_16_regular = "\U000f02b5"; + public const string hexagon_three_20_regular = "\U000f02b6"; + public const string hexagon_three_24_regular = "\U000f02db"; + public const string highlight_16_regular = "\uf47b"; + public const string highlight_20_regular = "\uf47c"; + public const string highlight_24_regular = "\uf47d"; + public const string highlight_link_20_regular = "\ue704"; + public const string highway_20_regular = "\U000f0569"; + public const string highway_24_regular = "\U000f056a"; + public const string history_16_regular = "\ue705"; + public const string history_20_regular = "\uf47e"; + public const string history_24_regular = "\uf47f"; + public const string history_28_regular = "\ue706"; + public const string history_32_regular = "\ue707"; + public const string history_48_regular = "\ue708"; + public const string history_dismiss_20_regular = "\ue709"; + public const string history_dismiss_24_regular = "\ue70a"; + public const string history_dismiss_28_regular = "\ue70b"; + public const string history_dismiss_32_regular = "\ue70c"; + public const string history_dismiss_48_regular = "\ue70d"; + public const string home_12_regular = "\ue70e"; + public const string home_16_regular = "\ue70f"; + public const string home_20_regular = "\uf480"; + public const string home_24_regular = "\uf481"; + public const string home_28_regular = "\uf482"; + public const string home_32_regular = "\ue710"; + public const string home_48_regular = "\ue711"; + public const string home_add_20_regular = "\ue712"; + public const string home_add_24_regular = "\uf483"; + public const string home_checkmark_16_regular = "\ue713"; + public const string home_checkmark_20_regular = "\ue714"; + public const string home_checkmark_24_regular = "\uf484"; + public const string home_database_20_regular = "\ue715"; + public const string home_database_24_regular = "\ueed5"; + public const string home_database_32_regular = "\ueed6"; + public const string home_garage_20_regular = "\U000f052e"; + public const string home_garage_24_regular = "\U000f052f"; + public const string home_heart_16_regular = "\U000f01d5"; + public const string home_heart_20_regular = "\U000f01d6"; + public const string home_heart_24_regular = "\U000f01d7"; + public const string home_heart_32_regular = "\U000f01d8"; + public const string home_more_20_regular = "\ue716"; + public const string home_more_24_regular = "\ueed7"; + public const string home_more_32_regular = "\ueed8"; + public const string home_more_48_regular = "\U000f0046"; + public const string home_person_20_regular = "\ue717"; + public const string home_person_24_regular = "\ue718"; + public const string home_split_20_regular = "\uf038"; + public const string home_split_24_regular = "\uf039"; + public const string home_split_32_regular = "\uf03a"; + public const string home_split_48_regular = "\uf03b"; + public const string hourglass_16_regular = "\uf0eb"; + public const string hourglass_20_regular = "\uef6b"; + public const string hourglass_24_regular = "\uef6c"; + public const string hourglass_half_16_regular = "\uf0ec"; + public const string hourglass_half_20_regular = "\uef6d"; + public const string hourglass_half_24_regular = "\uef6e"; + public const string hourglass_one_quarter_16_regular = "\uf0ed"; + public const string hourglass_one_quarter_20_regular = "\uef6f"; + public const string hourglass_one_quarter_24_regular = "\uef70"; + public const string hourglass_three_quarter_16_regular = "\uf0ee"; + public const string hourglass_three_quarter_20_regular = "\uef71"; + public const string hourglass_three_quarter_24_regular = "\uef72"; + public const string icons_20_regular = "\uf485"; + public const string icons_24_regular = "\uf486"; + public const string image_16_regular = "\uf487"; + public const string image_20_regular = "\uf488"; + public const string image_24_regular = "\uf489"; + public const string image_28_regular = "\uf48a"; + public const string image_32_regular = "\ue719"; + public const string image_48_regular = "\uf48b"; + public const string image_add_20_regular = "\ue71a"; + public const string image_add_24_regular = "\uf48c"; + public const string image_alt_text_16_regular = "\ue71b"; + public const string image_alt_text_20_regular = "\uf48d"; + public const string image_alt_text_24_regular = "\uf48e"; + public const string image_arrow_back_20_regular = "\ue71c"; + public const string image_arrow_back_24_regular = "\ue71d"; + public const string image_arrow_counterclockwise_20_regular = "\ue71e"; + public const string image_arrow_counterclockwise_24_regular = "\ue71f"; + public const string image_arrow_forward_20_regular = "\ue720"; + public const string image_arrow_forward_24_regular = "\ue721"; + public const string image_border_16_regular = "\U000f0047"; + public const string image_border_20_regular = "\U000f0048"; + public const string image_border_24_regular = "\U000f0049"; + public const string image_border_28_regular = "\U000f004a"; + public const string image_border_32_regular = "\U000f004b"; + public const string image_border_48_regular = "\U000f004c"; + public const string image_circle_16_regular = "\U000f004d"; + public const string image_circle_20_regular = "\U000f004e"; + public const string image_circle_24_regular = "\U000f004f"; + public const string image_circle_28_regular = "\U000f0050"; + public const string image_circle_32_regular = "\U000f0051"; + public const string image_circle_48_regular = "\U000f0052"; + public const string image_copy_20_regular = "\uf48f"; + public const string image_copy_24_regular = "\uf490"; + public const string image_copy_28_regular = "\uf491"; + public const string image_edit_16_regular = "\uf492"; + public const string image_edit_20_regular = "\uf493"; + public const string image_edit_24_regular = "\uf494"; + public const string image_globe_20_regular = "\ue722"; + public const string image_globe_24_regular = "\ue723"; + public const string image_multiple_16_regular = "\ue724"; + public const string image_multiple_20_regular = "\ue725"; + public const string image_multiple_24_regular = "\ue726"; + public const string image_multiple_28_regular = "\ue727"; + public const string image_multiple_32_regular = "\ue728"; + public const string image_multiple_48_regular = "\ue729"; + public const string image_multiple_off_16_regular = "\ue72a"; + public const string image_multiple_off_20_regular = "\ue72b"; + public const string image_off_20_regular = "\ue72c"; + public const string image_off_24_regular = "\uf498"; + public const string image_off_28_regular = "\U000f01d9"; + public const string image_off_32_regular = "\U000f01da"; + public const string image_off_48_regular = "\U000f01db"; + public const string image_prohibited_20_regular = "\ue72d"; + public const string image_prohibited_24_regular = "\ue72e"; + public const string image_reflection_20_regular = "\ue72f"; + public const string image_reflection_24_regular = "\ue730"; + public const string image_search_20_regular = "\uf499"; + public const string image_search_24_regular = "\uf49a"; + public const string image_shadow_20_regular = "\ue731"; + public const string image_shadow_24_regular = "\ue732"; + public const string image_sparkle_16_regular = "\U000f01f0"; + public const string image_sparkle_20_regular = "\U000f01f1"; + public const string image_sparkle_24_regular = "\U000f01f2"; + public const string image_split_20_regular = "\U000f0530"; + public const string image_split_24_regular = "\U000f0531"; + public const string image_stack_16_regular = "\U000f018d"; + public const string image_stack_20_regular = "\U000f018e"; + public const string image_table_16_regular = "\U000f0053"; + public const string image_table_20_regular = "\U000f0054"; + public const string image_table_24_regular = "\U000f0055"; + public const string image_table_28_regular = "\U000f0056"; + public const string image_table_32_regular = "\U000f0057"; + public const string image_table_48_regular = "\U000f0058"; + public const string immersive_reader_16_regular = "\ue733"; + public const string immersive_reader_20_regular = "\uf49b"; + public const string immersive_reader_24_regular = "\uf49c"; + public const string immersive_reader_28_regular = "\ue734"; + public const string important_12_regular = "\uf49d"; + public const string important_16_regular = "\uf49e"; + public const string important_20_regular = "\uf49f"; + public const string important_24_regular = "\uf4a0"; + public const string important_32_regular = "\U000f0444"; + public const string incognito_20_regular = "\ue735"; + public const string incognito_24_regular = "\uf4a1"; + public const string info_12_regular = "\ue736"; + public const string info_16_regular = "\uf4a2"; + public const string info_20_regular = "\uf4a3"; + public const string info_24_regular = "\uf4a4"; + public const string info_28_regular = "\uf4a5"; + public const string info_32_regular = "\U000f0059"; + public const string info_48_regular = "\U000f005a"; + public const string info_shield_20_regular = "\ue737"; + public const string ink_stroke_20_regular = "\ue738"; + public const string ink_stroke_24_regular = "\ue739"; + public const string ink_stroke_arrow_down_20_regular = "\uef73"; + public const string ink_stroke_arrow_down_24_regular = "\uef74"; + public const string ink_stroke_arrow_up_down_20_regular = "\uef75"; + public const string ink_stroke_arrow_up_down_24_regular = "\uef76"; + public const string inking_tool_16_regular = "\uf4a6"; + public const string inking_tool_20_regular = "\uf4a7"; + public const string inking_tool_24_regular = "\uf4a8"; + public const string inking_tool_32_regular = "\ue73a"; + public const string inprivate_account_16_regular = "\uf4a9"; + public const string inprivate_account_20_regular = "\uf4aa"; + public const string inprivate_account_24_regular = "\uf4ab"; + public const string inprivate_account_28_regular = "\uf4ac"; + public const string insert_20_regular = "\uf4ad"; + public const string ios_arrow_ltr_24_regular = "\ue73b"; + public const string ios_arrow_rtl_24_regular = "\ue73c"; + public const string ios_chevron_right_20_regular = "\uf4b2"; + public const string iot_16_regular = "\U000f005b"; + public const string iot_20_regular = "\ue73d"; + public const string iot_24_regular = "\ue73e"; + public const string iot_alert_16_regular = "\U000f005c"; + public const string iot_alert_20_regular = "\U000f005d"; + public const string iot_alert_24_regular = "\U000f005e"; + public const string javascript_16_regular = "\uf4b3"; + public const string javascript_20_regular = "\uf4b4"; + public const string javascript_24_regular = "\uf4b5"; + public const string joystick_20_regular = "\ue73f"; + public const string key_16_regular = "\ue740"; + public const string key_20_regular = "\uf4b6"; + public const string key_24_regular = "\uf4b7"; + public const string key_32_regular = "\ue741"; + public const string key_command_16_regular = "\ue742"; + public const string key_command_20_regular = "\ue743"; + public const string key_command_24_regular = "\ue744"; + public const string key_multiple_16_regular = "\U000f0274"; + public const string key_multiple_20_regular = "\ue745"; + public const string key_multiple_24_regular = "\U000f0275"; + public const string key_reset_20_regular = "\ue746"; + public const string key_reset_24_regular = "\ue747"; + public const string keyboard_123_20_regular = "\ue748"; + public const string keyboard_123_24_regular = "\ue749"; + public const string keyboard_16_regular = "\ue74a"; + public const string keyboard_20_regular = "\uf4b8"; + public const string keyboard_24_regular = "\uf4b9"; + public const string keyboard_dock_20_regular = "\ue74b"; + public const string keyboard_dock_24_regular = "\uf4ba"; + public const string keyboard_layout_float_20_regular = "\ue74c"; + public const string keyboard_layout_float_24_regular = "\uf4bb"; + public const string keyboard_layout_one_handed_left_20_regular = "\ue74d"; + public const string keyboard_layout_one_handed_left_24_regular = "\uf4bc"; + public const string keyboard_layout_resize_20_regular = "\ue74e"; + public const string keyboard_layout_resize_24_regular = "\uf4bd"; + public const string keyboard_layout_split_20_regular = "\ue74f"; + public const string keyboard_layout_split_24_regular = "\uf4be"; + public const string keyboard_mouse_16_regular = "\uf0ef"; + public const string keyboard_shift_16_regular = "\ue750"; + public const string keyboard_shift_20_regular = "\ue751"; + public const string keyboard_shift_24_regular = "\uf4bf"; + public const string keyboard_shift_uppercase_16_regular = "\ue752"; + public const string keyboard_shift_uppercase_20_regular = "\ue753"; + public const string keyboard_shift_uppercase_24_regular = "\uf4c0"; + public const string keyboard_tab_20_regular = "\ue754"; + public const string keyboard_tab_24_regular = "\uf4c1"; + public const string kiosk_24_regular = "\U000f021b"; + public const string laptop_16_regular = "\uf4c2"; + public const string laptop_20_regular = "\uf4c3"; + public const string laptop_24_regular = "\uf4c4"; + public const string laptop_28_regular = "\uf4c5"; + public const string laptop_32_regular = "\U000f04f3"; + public const string laptop_48_regular = "\U000f0532"; + public const string laptop_briefcase_20_regular = "\U000f0511"; + public const string laptop_briefcase_24_regular = "\U000f0512"; + public const string laptop_briefcase_32_regular = "\U000f0513"; + public const string laptop_dismiss_16_regular = "\uf505"; + public const string laptop_dismiss_20_regular = "\ue755"; + public const string laptop_multiple_24_regular = "\U000f021c"; + public const string laptop_person_20_regular = "\U000f056b"; + public const string laptop_person_24_regular = "\U000f056c"; + public const string laptop_person_48_regular = "\U000f056d"; + public const string laptop_settings_20_regular = "\U000f04f4"; + public const string laptop_settings_24_regular = "\U000f04f5"; + public const string laptop_settings_32_regular = "\U000f04f6"; + public const string laptop_shield_16_regular = "\U000f018f"; + public const string laptop_shield_20_regular = "\U000f0190"; + public const string laser_tool_20_regular = "\uef1f"; + public const string lasso_20_regular = "\ue756"; + public const string lasso_24_regular = "\uf4c9"; + public const string lasso_28_regular = "\ue757"; + public const string launcher_settings_20_regular = "\ue758"; + public const string launcher_settings_24_regular = "\uf4ca"; + public const string layer_20_regular = "\uf4cb"; + public const string layer_24_regular = "\uf4cc"; + public const string layer_diagonal_16_regular = "\U000f0445"; + public const string layer_diagonal_20_regular = "\uef26"; + public const string layer_diagonal_24_regular = "\U000f04ca"; + public const string layer_diagonal_add_20_regular = "\U000f0402"; + public const string layer_diagonal_add_24_regular = "\U000f05f0"; + public const string layer_diagonal_person_16_regular = "\U000f0446"; + public const string layer_diagonal_person_20_regular = "\uef27"; + public const string layer_diagonal_person_24_regular = "\U000f04cb"; + public const string layer_diagonal_sparkle_16_regular = "\U000f0514"; + public const string layer_diagonal_sparkle_20_regular = "\U000f0515"; + public const string layer_diagonal_sparkle_24_regular = "\U000f0516"; + public const string layout_cell_four_16_regular = "\U000f0486"; + public const string layout_cell_four_20_regular = "\U000f0487"; + public const string table_simple_24_regular = "\uec52"; + public const string layout_column_four_16_regular = "\U000f0489"; + public const string layout_column_four_20_regular = "\U000f048a"; + public const string layout_column_four_24_regular = "\U000f048b"; + public const string layout_column_one_third_left_16_regular = "\U000f048c"; + public const string layout_column_one_third_left_20_regular = "\U000f048d"; + public const string layout_column_one_third_left_24_regular = "\U000f048e"; + public const string layout_column_one_third_right_16_regular = "\U000f048f"; + public const string layout_column_one_third_right_20_regular = "\U000f0490"; + public const string layout_column_one_third_right_24_regular = "\U000f0491"; + public const string layout_column_one_third_right_hint_16_regular = "\U000f0492"; + public const string layout_column_one_third_right_hint_20_regular = "\U000f0493"; + public const string layout_column_one_third_right_hint_24_regular = "\U000f0494"; + public const string layout_column_three_16_regular = "\U000f0495"; + public const string layout_column_three_20_regular = "\U000f0496"; + public const string layout_column_three_24_regular = "\U000f0497"; + public const string layout_column_two_16_regular = "\U000f0498"; + public const string layout_column_two_20_regular = "\U000f0499"; + public const string layout_column_two_24_regular = "\U000f049a"; + public const string layout_column_two_32_regular = "\U000f05d7"; + public const string layout_column_two_split_left_16_regular = "\U000f049b"; + public const string layout_column_two_split_left_20_regular = "\U000f049c"; + public const string layout_column_two_split_left_24_regular = "\U000f049d"; + public const string layout_column_two_split_right_16_regular = "\U000f049e"; + public const string layout_column_two_split_right_20_regular = "\U000f049f"; + public const string layout_column_two_split_right_24_regular = "\U000f04a0"; + public const string layout_row_four_16_regular = "\U000f04a1"; + public const string layout_row_four_20_regular = "\U000f04a2"; + public const string layout_row_four_24_regular = "\U000f04a3"; + public const string layout_row_three_16_regular = "\U000f04a4"; + public const string layout_row_three_20_regular = "\U000f04a5"; + public const string layout_row_three_24_regular = "\U000f04a6"; + public const string layout_row_two_16_regular = "\U000f04a7"; + public const string layout_row_two_20_regular = "\U000f04a8"; + public const string layout_row_two_24_regular = "\U000f04a9"; + public const string layout_row_two_28_regular = "\U000f05fe"; + public const string layout_row_two_32_regular = "\U000f05d8"; + public const string layout_row_two_48_regular = "\U000f05ff"; + public const string layout_row_two_split_bottom_16_regular = "\U000f04aa"; + public const string layout_row_two_split_bottom_20_regular = "\U000f04ab"; + public const string layout_row_two_split_bottom_24_regular = "\U000f04ac"; + public const string layout_row_two_split_top_16_regular = "\U000f04ad"; + public const string layout_row_two_split_top_20_regular = "\U000f04ae"; + public const string layout_row_two_split_top_24_regular = "\U000f04af"; + public const string leaf_one_16_regular = "\ue759"; + public const string leaf_one_20_regular = "\ue75a"; + public const string leaf_one_24_regular = "\ue75b"; + public const string leaf_one_32_regular = "\uef07"; + public const string leaf_three_16_regular = "\ue75c"; + public const string leaf_three_20_regular = "\ue75d"; + public const string leaf_three_24_regular = "\ue75e"; + public const string leaf_two_16_regular = "\uf4d0"; + public const string leaf_two_20_regular = "\uf4d1"; + public const string leaf_two_24_regular = "\uf4d2"; + public const string leaf_two_32_regular = "\uef08"; + public const string leaf_two_48_regular = "\uf03c"; + public const string learning_app_20_regular = "\ue75f"; + public const string learning_app_24_regular = "\ue760"; + public const string library_16_regular = "\ue761"; + public const string library_20_regular = "\ue762"; + public const string library_24_regular = "\uf4d3"; + public const string library_28_regular = "\uf4d4"; + public const string library_32_regular = "\U000f0403"; + public const string lightbulb_16_regular = "\uf4d5"; + public const string lightbulb_20_regular = "\uf4d6"; + public const string lightbulb_24_regular = "\uf4d7"; + public const string lightbulb_28_regular = "\uf07c"; + public const string lightbulb_32_regular = "\uf07d"; + public const string lightbulb_48_regular = "\uf07e"; + public const string lightbulb_checkmark_20_regular = "\U000f012a"; + public const string lightbulb_circle_20_regular = "\ue763"; + public const string lightbulb_circle_24_regular = "\uf4d8"; + public const string lightbulb_filament_16_regular = "\uf4d9"; + public const string lightbulb_filament_20_regular = "\uf4da"; + public const string lightbulb_filament_24_regular = "\uf4db"; + public const string lightbulb_filament_32_regular = "\U000f0404"; + public const string lightbulb_filament_48_regular = "\ue764"; + public const string lightbulb_person_16_regular = "\uf07f"; + public const string lightbulb_person_20_regular = "\uf080"; + public const string lightbulb_person_24_regular = "\uf081"; + public const string lightbulb_person_28_regular = "\uf082"; + public const string lightbulb_person_32_regular = "\uf083"; + public const string lightbulb_person_48_regular = "\uf084"; + public const string likert_16_regular = "\uf4dd"; + public const string likert_20_regular = "\uf4de"; + public const string likert_24_regular = "\uf4df"; + public const string line_20_regular = "\ue765"; + public const string line_24_regular = "\ue766"; + public const string line_32_regular = "\ue767"; + public const string line_48_regular = "\ue768"; + public const string line_dashes_20_regular = "\ue769"; + public const string line_dashes_24_regular = "\ue76a"; + public const string line_dashes_32_regular = "\ue76b"; + public const string line_dashes_48_regular = "\ue76c"; + public const string line_flow_diagonal_up_right_16_regular = "\U000f0533"; + public const string line_flow_diagonal_up_right_20_regular = "\U000f0534"; + public const string line_flow_diagonal_up_right_24_regular = "\U000f0535"; + public const string line_flow_diagonal_up_right_32_regular = "\U000f0536"; + public const string line_horizontal_1_16_regular = "\U000f02b7"; + public const string line_horizontal_1_20_regular = "\uf4e0"; + public const string line_horizontal_1_24_regular = "\U000f02b8"; + public const string line_horizontal_1_28_regular = "\U000f02b9"; + public const string line_horizontal_1_dashes_16_regular = "\U000f02ba"; + public const string line_horizontal_1_dashes_20_regular = "\U000f02bb"; + public const string line_horizontal_1_dashes_24_regular = "\U000f02bc"; + public const string line_horizontal_1_dashes_28_regular = "\U000f02bd"; + public const string line_horizontal_2_dashes_solid_16_regular = "\U000f02be"; + public const string line_horizontal_2_dashes_solid_20_regular = "\U000f02bf"; + public const string line_horizontal_2_dashes_solid_24_regular = "\U000f02c0"; + public const string line_horizontal_2_dashes_solid_28_regular = "\U000f02c1"; + public const string line_horizontal_3_20_regular = "\uf4e1"; + public const string line_horizontal_4_16_regular = "\U000f012b"; + public const string line_horizontal_4_20_regular = "\U000f005f"; + public const string line_horizontal_4_search_16_regular = "\U000f012c"; + public const string line_horizontal_4_search_20_regular = "\U000f0060"; + public const string line_horizontal_5_20_regular = "\uf4e2"; + public const string line_horizontal_5_error_20_regular = "\ue76d"; + public const string line_style_20_regular = "\ue76e"; + public const string line_style_24_regular = "\ue76f"; + public const string line_thickness_20_regular = "\U000f0061"; + public const string line_thickness_24_regular = "\U000f0062"; + public const string link_12_regular = "\ue770"; + public const string link_16_regular = "\uf4e3"; + public const string link_20_regular = "\uf4e4"; + public const string link_24_regular = "\uf4e5"; + public const string link_28_regular = "\uf4e6"; + public const string link_32_regular = "\ue771"; + public const string link_48_regular = "\uf4e7"; + public const string link_add_16_regular = "\U000f0405"; + public const string link_add_20_regular = "\U000f0406"; + public const string link_add_24_regular = "\U000f021d"; + public const string link_dismiss_16_regular = "\ue772"; + public const string link_dismiss_20_regular = "\ue773"; + public const string link_dismiss_24_regular = "\ue774"; + public const string link_edit_16_regular = "\uf4e8"; + public const string link_edit_20_regular = "\uf4e9"; + public const string link_edit_24_regular = "\uf4ea"; + public const string link_multiple_16_regular = "\U000f0276"; + public const string link_multiple_20_regular = "\U000f0277"; + public const string link_multiple_24_regular = "\U000f0278"; + public const string link_person_16_regular = "\U000f03ba"; + public const string link_person_20_regular = "\U000f03bb"; + public const string link_person_24_regular = "\U000f03bc"; + public const string link_person_32_regular = "\U000f03bd"; + public const string link_person_48_regular = "\U000f03be"; + public const string link_settings_24_regular = "\U000f021e"; + public const string link_square_12_regular = "\ue775"; + public const string link_square_16_regular = "\ue776"; + public const string link_square_20_regular = "\ue777"; + public const string link_square_24_regular = "\uf4ec"; + public const string link_toolbox_20_regular = "\ue778"; + public const string list_16_regular = "\ue779"; + public const string list_20_regular = "\uf4ed"; + public const string list_24_regular = "\uf4ee"; + public const string list_28_regular = "\uf4ef"; + public const string list_bar_16_regular = "\U000f0191"; + public const string list_bar_20_regular = "\U000f0192"; + public const string list_bar_tree_16_regular = "\U000f0193"; + public const string list_bar_tree_20_regular = "\U000f0194"; + public const string list_bar_tree_offset_16_regular = "\U000f0195"; + public const string list_bar_tree_offset_20_regular = "\U000f0196"; + public const string list_rtl_16_regular = "\U000f0197"; + public const string list_rtl_20_regular = "\U000f0198"; + public const string live_20_regular = "\uf4f0"; + public const string live_24_regular = "\uf4f1"; + public const string live_off_20_regular = "\ue77a"; + public const string live_off_24_regular = "\ue77b"; + public const string local_language_16_regular = "\uf4f2"; + public const string local_language_20_regular = "\uf4f3"; + public const string local_language_24_regular = "\uf4f4"; + public const string local_language_28_regular = "\uf4f5"; + public const string location_12_regular = "\uf4f6"; + public const string location_16_regular = "\uf4f7"; + public const string location_20_regular = "\uf4f8"; + public const string location_24_regular = "\uf4f9"; + public const string location_28_regular = "\uf4fa"; + public const string location_48_regular = "\ue77c"; + public const string location_add_16_regular = "\ue77d"; + public const string location_add_20_regular = "\ue77e"; + public const string location_add_24_regular = "\ue77f"; + public const string location_add_left_20_regular = "\ue780"; + public const string location_add_right_20_regular = "\ue781"; + public const string location_add_up_20_regular = "\ue782"; + public const string location_arrow_12_regular = "\U000f0063"; + public const string location_arrow_16_regular = "\U000f0064"; + public const string location_arrow_20_regular = "\U000f0065"; + public const string location_arrow_24_regular = "\U000f0066"; + public const string location_arrow_28_regular = "\U000f0067"; + public const string location_arrow_32_regular = "\U000f0068"; + public const string location_arrow_48_regular = "\U000f0069"; + public const string location_arrow_left_16_regular = "\U000f006a"; + public const string location_arrow_left_48_regular = "\ue783"; + public const string location_arrow_right_16_regular = "\U000f006b"; + public const string location_arrow_right_48_regular = "\ue784"; + public const string location_arrow_up_16_regular = "\U000f006c"; + public const string location_arrow_up_48_regular = "\ue785"; + public const string location_dismiss_20_regular = "\ue786"; + public const string location_dismiss_24_regular = "\ue787"; + public const string location_live_20_regular = "\uf4fb"; + public const string location_live_24_regular = "\uf4fc"; + public const string location_off_16_regular = "\ue788"; + public const string location_off_20_regular = "\ue789"; + public const string location_off_24_regular = "\ue78a"; + public const string location_off_28_regular = "\ue78b"; + public const string location_off_48_regular = "\ue78c"; + public const string location_ripple_12_regular = "\U000f05cb"; + public const string location_ripple_16_regular = "\U000f056e"; + public const string location_ripple_20_regular = "\U000f056f"; + public const string location_ripple_24_regular = "\U000f0570"; + public const string location_target_square_16_regular = "\U000f04b0"; + public const string location_target_square_20_regular = "\U000f04b1"; + public const string location_target_square_24_regular = "\U000f04b2"; + public const string location_target_square_32_regular = "\U000f04b3"; + public const string lock_closed_12_regular = "\ue78d"; + public const string lock_closed_16_regular = "\ue78e"; + public const string lock_closed_20_regular = "\ue78f"; + public const string lock_closed_24_regular = "\ue790"; + public const string lock_closed_28_regular = "\U000f021f"; + public const string lock_closed_32_regular = "\ue791"; + public const string lock_closed_48_regular = "\U000f0220"; + public const string lock_closed_key_16_regular = "\U000f00df"; + public const string lock_closed_key_20_regular = "\U000f00e0"; + public const string lock_closed_key_24_regular = "\U000f00e1"; + public const string lock_multiple_20_regular = "\ue792"; + public const string lock_multiple_24_regular = "\ue793"; + public const string lock_open_12_regular = "\U000f0221"; + public const string lock_open_16_regular = "\ue794"; + public const string lock_open_20_regular = "\ue795"; + public const string lock_open_24_regular = "\ue796"; + public const string lock_open_28_regular = "\ue797"; + public const string lock_open_32_regular = "\U000f0222"; + public const string lock_open_48_regular = "\U000f0223"; + public const string lock_shield_16_regular = "\U000f0407"; + public const string lock_shield_20_regular = "\uf502"; + public const string lock_shield_24_regular = "\uf503"; + public const string lock_shield_28_regular = "\U000f0408"; + public const string lock_shield_32_regular = "\U000f0409"; + public const string lock_shield_48_regular = "\uf504"; + public const string lottery_20_regular = "\ue798"; + public const string lottery_24_regular = "\ue799"; + public const string luggage_16_regular = "\ue79a"; + public const string luggage_20_regular = "\ue79b"; + public const string luggage_24_regular = "\ue79c"; + public const string luggage_28_regular = "\ue79d"; + public const string luggage_32_regular = "\ue79e"; + public const string luggage_48_regular = "\ue79f"; + public const string mail_12_regular = "\ue7a0"; + public const string mail_16_regular = "\ue7a1"; + public const string mail_20_regular = "\uf506"; + public const string mail_24_regular = "\uf507"; + public const string mail_28_regular = "\uf508"; + public const string mail_32_regular = "\U000f01f3"; + public const string mail_48_regular = "\uf509"; + public const string mail_add_16_regular = "\uf50d"; + public const string mail_add_20_regular = "\uf51f"; + public const string mail_add_24_regular = "\uf50a"; + public const string mail_alert_16_regular = "\uf520"; + public const string mail_alert_20_regular = "\uf52a"; + public const string mail_alert_24_regular = "\uf52b"; + public const string mail_alert_28_regular = "\ue7a2"; + public const string mail_alert_32_regular = "\U000f05f1"; + public const string mail_all_read_16_regular = "\ue7a3"; + public const string mail_all_read_20_regular = "\uf50e"; + public const string mail_all_read_24_regular = "\ue7a4"; + public const string mail_all_read_28_regular = "\ue7a5"; + public const string mail_all_unread_20_regular = "\uf50f"; + public const string mail_arrow_clockwise_16_regular = "\U000f0537"; + public const string mail_arrow_clockwise_20_regular = "\U000f0538"; + public const string mail_arrow_clockwise_24_regular = "\U000f0539"; + public const string mail_arrow_clockwise_32_regular = "\U000f05f2"; + public const string mail_arrow_double_back_16_regular = "\ue7a6"; + public const string mail_arrow_double_back_20_regular = "\ue7a7"; + public const string mail_arrow_double_back_24_regular = "\U000f006d"; + public const string mail_arrow_double_back_32_regular = "\U000f0571"; + public const string mail_arrow_down_16_regular = "\uf52c"; + public const string mail_arrow_down_20_regular = "\ue7a8"; + public const string mail_arrow_forward_16_regular = "\ue7a9"; + public const string mail_arrow_forward_20_regular = "\ue7aa"; + public const string mail_arrow_up_16_regular = "\ue7ab"; + public const string mail_arrow_up_20_regular = "\uf52d"; + public const string mail_arrow_up_24_regular = "\uf54b"; + public const string mail_attach_16_regular = "\ue7ac"; + public const string mail_attach_20_regular = "\ue7ad"; + public const string mail_attach_24_regular = "\ue7ae"; + public const string mail_attach_28_regular = "\ue7af"; + public const string mail_briefcase_48_regular = "\U000f0572"; + public const string mail_checkmark_16_regular = "\uf54c"; + public const string mail_checkmark_20_regular = "\ue7b0"; + public const string mail_checkmark_24_regular = "\U000f006e"; + public const string mail_clock_16_regular = "\uf551"; + public const string mail_clock_20_regular = "\uf510"; + public const string mail_clock_24_regular = "\uf552"; + public const string mail_copy_20_regular = "\uf511"; + public const string mail_copy_24_regular = "\uf512"; + public const string mail_copy_32_regular = "\U000f05d9"; + public const string mail_dismiss_16_regular = "\ue7b1"; + public const string mail_dismiss_20_regular = "\uf553"; + public const string mail_dismiss_24_regular = "\uf554"; + public const string mail_dismiss_28_regular = "\ue7b2"; + public const string mail_edit_20_regular = "\ue7b3"; + public const string mail_edit_24_regular = "\ue7b4"; + public const string mail_edit_32_regular = "\U000f05ad"; + public const string mail_error_16_regular = "\ue7b5"; + public const string mail_error_20_regular = "\uf555"; + public const string mail_error_24_regular = "\uf55d"; + public const string mail_inbox_16_regular = "\uf513"; + public const string mail_inbox_20_regular = "\uf514"; + public const string mail_inbox_24_regular = "\uf515"; + public const string mail_inbox_28_regular = "\uf516"; + public const string mail_inbox_add_16_regular = "\uf517"; + public const string mail_inbox_add_20_regular = "\uf518"; + public const string mail_inbox_add_24_regular = "\uf519"; + public const string mail_inbox_add_28_regular = "\uf51a"; + public const string mail_inbox_all_20_regular = "\ue7b6"; + public const string mail_inbox_all_24_regular = "\ue7b7"; + public const string mail_inbox_arrow_down_16_regular = "\uf55e"; + public const string mail_inbox_arrow_down_20_regular = "\ue7b8"; + public const string mail_inbox_arrow_right_20_regular = "\ue7b9"; + public const string mail_inbox_arrow_right_24_regular = "\ue7ba"; + public const string mail_inbox_arrow_up_20_regular = "\ue7bb"; + public const string mail_inbox_arrow_up_24_regular = "\ue7bc"; + public const string mail_inbox_checkmark_16_regular = "\ue7bd"; + public const string mail_inbox_checkmark_20_regular = "\ue7be"; + public const string mail_inbox_checkmark_24_regular = "\ue7bf"; + public const string mail_inbox_checkmark_28_regular = "\ue7c0"; + public const string mail_inbox_dismiss_16_regular = "\uf51b"; + public const string mail_inbox_dismiss_20_regular = "\uf51c"; + public const string mail_inbox_dismiss_24_regular = "\uf51d"; + public const string mail_inbox_dismiss_28_regular = "\uf51e"; + public const string mail_link_20_regular = "\uf585"; + public const string mail_link_24_regular = "\uf58c"; + public const string mail_list_16_regular = "\ue7c1"; + public const string mail_list_20_regular = "\ue7c2"; + public const string mail_list_24_regular = "\ue7c3"; + public const string mail_list_28_regular = "\ue7c4"; + public const string mail_multiple_16_regular = "\ue7c5"; + public const string mail_multiple_20_regular = "\ue7c6"; + public const string mail_multiple_24_regular = "\ue7c7"; + public const string mail_multiple_28_regular = "\ue7c8"; + public const string mail_multiple_32_regular = "\U000f0447"; + public const string mail_off_16_regular = "\U000f0279"; + public const string mail_off_20_regular = "\ue7c9"; + public const string mail_off_24_regular = "\ue7ca"; + public const string mail_open_person_16_regular = "\ue7cb"; + public const string mail_open_person_20_regular = "\ue7cc"; + public const string mail_open_person_24_regular = "\ue7cd"; + public const string mail_pause_16_regular = "\uf5a6"; + public const string mail_pause_20_regular = "\ue7ce"; + public const string mail_prohibited_16_regular = "\ue7cf"; + public const string mail_prohibited_20_regular = "\uf5cb"; + public const string mail_prohibited_24_regular = "\uf5e2"; + public const string mail_prohibited_28_regular = "\ue7d0"; + public const string mail_read_16_regular = "\ue7d1"; + public const string mail_read_20_regular = "\uf521"; + public const string mail_read_24_regular = "\uf522"; + public const string mail_read_28_regular = "\uf523"; + public const string mail_read_32_regular = "\U000f0448"; + public const string mail_read_48_regular = "\uf524"; + public const string mail_read_briefcase_48_regular = "\U000f058d"; + public const string mail_read_multiple_20_regular = "\ueeab"; + public const string mail_read_multiple_32_regular = "\ueeac"; + public const string mail_rewind_16_regular = "\U000f030a"; + public const string mail_rewind_20_regular = "\U000f030b"; + public const string mail_rewind_24_regular = "\U000f030c"; + public const string mail_settings_16_regular = "\uf5e3"; + public const string mail_settings_20_regular = "\ue7d5"; + public const string mail_shield_16_regular = "\uf5e8"; + public const string mail_shield_20_regular = "\ue7d6"; + public const string mail_template_16_regular = "\ue7d7"; + public const string mail_template_20_regular = "\uf5e9"; + public const string mail_template_24_regular = "\uf5ed"; + public const string mail_unread_12_regular = "\U000f006f"; + public const string mail_unread_16_regular = "\uf525"; + public const string mail_unread_20_regular = "\uf526"; + public const string mail_unread_24_regular = "\uf527"; + public const string mail_unread_28_regular = "\uf528"; + public const string mail_unread_32_regular = "\U000f0449"; + public const string mail_unread_48_regular = "\uf529"; + public const string mail_warning_16_regular = "\uf5ee"; + public const string mail_warning_20_regular = "\ue7d8"; + public const string mail_warning_24_regular = "\ue7d9"; + public const string mailbox_16_regular = "\U000f044a"; + public const string mailbox_20_regular = "\U000f044b"; + public const string map_16_regular = "\U000f0070"; + public const string map_20_regular = "\ue7da"; + public const string map_24_regular = "\uf52e"; + public const string map_drive_16_regular = "\uf52f"; + public const string map_drive_20_regular = "\uf530"; + public const string map_drive_24_regular = "\uf531"; + public const string markdown_20_regular = "\ue7db"; + public const string match_app_layout_20_regular = "\ue7dc"; + public const string match_app_layout_24_regular = "\uf532"; + public const string math_format_linear_20_regular = "\ue7dd"; + public const string math_format_linear_24_regular = "\ue7de"; + public const string math_format_professional_16_regular = "\U000f012d"; + public const string math_format_professional_20_regular = "\ue7df"; + public const string math_format_professional_24_regular = "\ue7e0"; + public const string math_formula_16_regular = "\ue7e1"; + public const string math_formula_20_regular = "\ue7e2"; + public const string math_formula_24_regular = "\ue7e3"; + public const string math_formula_32_regular = "\ue7e4"; + public const string math_symbols_16_regular = "\ue7e5"; + public const string math_symbols_20_regular = "\ue7e6"; + public const string math_symbols_24_regular = "\ue7e7"; + public const string math_symbols_28_regular = "\ue7e8"; + public const string math_symbols_32_regular = "\ue7e9"; + public const string math_symbols_48_regular = "\ue7ea"; + public const string maximize_16_regular = "\uf533"; + public const string maximize_20_regular = "\ue7eb"; + public const string maximize_24_regular = "\ue7ec"; + public const string maximize_28_regular = "\ue7ed"; + public const string maximize_48_regular = "\ue7ee"; + public const string meet_now_16_regular = "\ue7ef"; + public const string meet_now_20_regular = "\uf534"; + public const string meet_now_24_regular = "\uf535"; + public const string meet_now_28_regular = "\uf5f6"; + public const string meet_now_32_regular = "\uf5f7"; + public const string meet_now_48_regular = "\uf631"; + public const string megaphone_16_regular = "\uf536"; + public const string megaphone_20_regular = "\uf537"; + public const string megaphone_24_regular = "\uf538"; + public const string megaphone_28_regular = "\uf539"; + public const string megaphone_circle_20_regular = "\uef77"; + public const string megaphone_circle_24_regular = "\uef78"; + public const string megaphone_loud_16_regular = "\ueead"; + public const string megaphone_loud_20_regular = "\uf64b"; + public const string megaphone_loud_24_regular = "\ue7f0"; + public const string megaphone_loud_28_regular = "\uf085"; + public const string megaphone_loud_32_regular = "\uf086"; + public const string megaphone_off_16_regular = "\ue7f1"; + public const string megaphone_off_20_regular = "\ue7f2"; + public const string megaphone_off_24_regular = "\uf53a"; + public const string megaphone_off_28_regular = "\ue7f3"; + public const string memory_16_regular = "\uf0f0"; + public const string mention_12_regular = "\ueff0"; + public const string mention_16_regular = "\uf53b"; + public const string mention_20_regular = "\uf53c"; + public const string mention_24_regular = "\uf53d"; + public const string mention_32_regular = "\U000f0071"; + public const string mention_48_regular = "\U000f0072"; + public const string mention_arrow_down_20_regular = "\ue7f4"; + public const string mention_brackets_20_regular = "\ue7f5"; + public const string merge_16_regular = "\ue7f6"; + public const string merge_20_regular = "\ue7f7"; + public const string merge_24_regular = "\uf53e"; + public const string mic_16_regular = "\ue7f8"; + public const string mic_20_regular = "\ue7f9"; + public const string mic_24_regular = "\ue7fa"; + public const string mic_28_regular = "\ue7fb"; + public const string mic_32_regular = "\ue7fc"; + public const string mic_48_regular = "\ue7fd"; + public const string mic_off_12_regular = "\uf53f"; + public const string mic_off_16_regular = "\uf540"; + public const string mic_off_20_regular = "\ue7fe"; + public const string mic_off_24_regular = "\uf541"; + public const string mic_off_28_regular = "\uf542"; + public const string mic_off_32_regular = "\ue7ff"; + public const string mic_off_48_regular = "\ue800"; + public const string mic_prohibited_16_regular = "\ue801"; + public const string mic_prohibited_20_regular = "\ue802"; + public const string mic_prohibited_24_regular = "\ue803"; + public const string mic_prohibited_28_regular = "\ue804"; + public const string mic_prohibited_48_regular = "\ue805"; + public const string mic_pulse_16_regular = "\ue806"; + public const string mic_pulse_20_regular = "\ue807"; + public const string mic_pulse_24_regular = "\ue808"; + public const string mic_pulse_28_regular = "\ue809"; + public const string mic_pulse_32_regular = "\ue80a"; + public const string mic_pulse_48_regular = "\ue80b"; + public const string mic_pulse_off_16_regular = "\ue80c"; + public const string mic_pulse_off_20_regular = "\ue80d"; + public const string mic_pulse_off_24_regular = "\ue80e"; + public const string mic_pulse_off_28_regular = "\ue80f"; + public const string mic_pulse_off_32_regular = "\ue810"; + public const string mic_pulse_off_48_regular = "\ue811"; + public const string mic_record_20_regular = "\U000f02c2"; + public const string mic_record_24_regular = "\U000f02c3"; + public const string mic_record_28_regular = "\U000f02c4"; + public const string mic_settings_20_regular = "\ue812"; + public const string mic_settings_24_regular = "\uf548"; + public const string mic_sparkle_16_regular = "\ue813"; + public const string mic_sparkle_20_regular = "\ue814"; + public const string mic_sparkle_24_regular = "\ue815"; + public const string mic_sync_20_regular = "\ue816"; + public const string microscope_20_regular = "\uf64c"; + public const string microscope_24_regular = "\uf64f"; + public const string midi_20_regular = "\uf549"; + public const string midi_24_regular = "\uf54a"; + public const string mobile_optimized_20_regular = "\ue817"; + public const string mobile_optimized_24_regular = "\uf54d"; + public const string mold_20_regular = "\U000f012e"; + public const string mold_24_regular = "\U000f012f"; + public const string mold_28_regular = "\U000f0130"; + public const string molecule_16_regular = "\uf650"; + public const string molecule_20_regular = "\uf659"; + public const string molecule_24_regular = "\uf65a"; + public const string molecule_28_regular = "\uf65d"; + public const string molecule_32_regular = "\uf65e"; + public const string molecule_48_regular = "\uf65f"; + public const string money_16_regular = "\uf54e"; + public const string money_20_regular = "\uf54f"; + public const string money_24_regular = "\uf550"; + public const string money_calculator_20_regular = "\ue818"; + public const string money_calculator_24_regular = "\ue819"; + public const string money_dismiss_20_regular = "\ue81a"; + public const string money_dismiss_24_regular = "\ue81b"; + public const string money_hand_16_regular = "\U000f01dc"; + public const string money_hand_20_regular = "\ue81c"; + public const string money_hand_24_regular = "\ue81d"; + public const string money_off_20_regular = "\ue81e"; + public const string money_off_24_regular = "\ue81f"; + public const string money_settings_16_regular = "\U000f01dd"; + public const string money_settings_20_regular = "\ue820"; + public const string money_settings_24_regular = "\U000f01de"; + public const string more_circle_16_regular = "\uf0f1"; + public const string more_circle_20_regular = "\ue821"; + public const string more_circle_24_regular = "\uf0f2"; + public const string more_circle_28_regular = "\uf0f3"; + public const string more_circle_32_regular = "\ue822"; + public const string more_circle_48_regular = "\uf0f4"; + public const string more_horizontal_16_regular = "\ue823"; + public const string more_horizontal_24_regular = "\ue825"; + public const string more_horizontal_28_regular = "\ue826"; + public const string more_horizontal_32_regular = "\ue827"; + public const string more_horizontal_48_regular = "\ue828"; + public const string more_vertical_16_regular = "\ue829"; + public const string more_vertical_20_regular = "\uf556"; + public const string more_vertical_24_regular = "\uf557"; + public const string more_vertical_28_regular = "\uf558"; + public const string more_vertical_32_regular = "\ue82a"; + public const string more_vertical_48_regular = "\uf559"; + public const string mountain_location_bottom_20_regular = "\U000f00e2"; + public const string mountain_location_bottom_24_regular = "\U000f00e3"; + public const string mountain_location_bottom_28_regular = "\U000f00e4"; + public const string mountain_location_top_20_regular = "\U000f00e5"; + public const string mountain_location_top_24_regular = "\U000f00e6"; + public const string mountain_location_top_28_regular = "\U000f00e7"; + public const string mountain_trail_20_regular = "\U000f00e8"; + public const string mountain_trail_24_regular = "\U000f00e9"; + public const string mountain_trail_28_regular = "\U000f00ea"; + public const string movies_and_tv_16_regular = "\ue82b"; + public const string movies_and_tv_20_regular = "\ue82c"; + public const string movies_and_tv_24_regular = "\uf55a"; + public const string multiplier_1_2x_20_regular = "\ue82d"; + public const string multiplier_1_2x_24_regular = "\ue82e"; + public const string multiplier_1_2x_28_regular = "\ue82f"; + public const string multiplier_1_2x_32_regular = "\ue830"; + public const string multiplier_1_2x_48_regular = "\ue831"; + public const string multiplier_1_5x_20_regular = "\ue832"; + public const string multiplier_1_5x_24_regular = "\ue833"; + public const string multiplier_1_5x_28_regular = "\ue834"; + public const string multiplier_1_5x_32_regular = "\ue835"; + public const string multiplier_1_5x_48_regular = "\ue836"; + public const string multiplier_1_8x_20_regular = "\ue837"; + public const string multiplier_1_8x_24_regular = "\ue838"; + public const string multiplier_1_8x_28_regular = "\ue839"; + public const string multiplier_1_8x_32_regular = "\ue83a"; + public const string multiplier_1_8x_48_regular = "\ue83b"; + public const string multiplier_1x_20_regular = "\ue83c"; + public const string multiplier_1x_24_regular = "\ue83d"; + public const string multiplier_1x_28_regular = "\ue83e"; + public const string multiplier_1x_32_regular = "\ue83f"; + public const string multiplier_1x_48_regular = "\ue840"; + public const string multiplier_2x_20_regular = "\ue841"; + public const string multiplier_2x_24_regular = "\ue842"; + public const string multiplier_2x_28_regular = "\ue843"; + public const string multiplier_2x_32_regular = "\ue844"; + public const string multiplier_2x_48_regular = "\ue845"; + public const string multiplier_5x_20_regular = "\ue846"; + public const string multiplier_5x_24_regular = "\ue847"; + public const string multiplier_5x_28_regular = "\ue848"; + public const string multiplier_5x_32_regular = "\ue849"; + public const string multiplier_5x_48_regular = "\ue84a"; + public const string multiselect_ltr_16_regular = "\ue84b"; + public const string multiselect_ltr_20_regular = "\ue84c"; + public const string multiselect_ltr_24_regular = "\ue84d"; + public const string multiselect_rtl_16_regular = "\ue84e"; + public const string multiselect_rtl_20_regular = "\ue84f"; + public const string multiselect_rtl_24_regular = "\ue850"; + public const string music_note_1_20_regular = "\ue851"; + public const string music_note_1_24_regular = "\ue852"; + public const string music_note_2_16_regular = "\ue853"; + public const string music_note_2_20_regular = "\ue854"; + public const string music_note_2_24_regular = "\ue855"; + public const string music_note_2_play_20_regular = "\ue856"; + public const string music_note_off_1_20_regular = "\ue857"; + public const string music_note_off_1_24_regular = "\ue858"; + public const string music_note_off_2_16_regular = "\ue859"; + public const string music_note_off_2_20_regular = "\ue85a"; + public const string music_note_off_2_24_regular = "\ue85b"; + public const string my_location_12_regular = "\ue85c"; + public const string my_location_16_regular = "\ue85d"; + public const string my_location_20_regular = "\ue85e"; + public const string my_location_24_regular = "\uf55f"; + public const string navigation_16_regular = "\ue85f"; + public const string navigation_24_regular = "\uf561"; + public const string navigation_location_target_20_regular = "\ue860"; + public const string navigation_play_20_regular = "\ue861"; + public const string navigation_unread_20_regular = "\ue862"; + public const string navigation_unread_24_regular = "\ue863"; + public const string network_adapter_16_regular = "\uf0f5"; + public const string network_check_20_regular = "\ue864"; + public const string network_check_24_regular = "\uf562"; + public const string new_16_regular = "\uf563"; + public const string new_20_regular = "\ue865"; + public const string new_24_regular = "\uf564"; + public const string news_16_regular = "\ue866"; + public const string news_20_regular = "\uf565"; + public const string news_24_regular = "\uf566"; + public const string news_28_regular = "\uf567"; + public const string next_16_regular = "\uf568"; + public const string next_20_regular = "\uf569"; + public const string next_24_regular = "\uf56a"; + public const string next_28_regular = "\ue867"; + public const string next_32_regular = "\ue868"; + public const string next_48_regular = "\ue869"; + public const string next_frame_20_regular = "\U000f02dc"; + public const string next_frame_24_regular = "\U000f02dd"; + public const string note_16_regular = "\uf663"; + public const string note_20_regular = "\uf56b"; + public const string note_24_regular = "\uf56c"; + public const string note_28_regular = "\ue86a"; + public const string note_48_regular = "\ue86b"; + public const string note_add_16_regular = "\uf56d"; + public const string note_add_20_regular = "\uf56e"; + public const string note_add_24_regular = "\uf56f"; + public const string note_add_28_regular = "\ue86c"; + public const string note_add_48_regular = "\ue86d"; + public const string note_edit_20_regular = "\ue86e"; + public const string note_edit_24_regular = "\ue86f"; + public const string note_pin_16_regular = "\uf664"; + public const string note_pin_20_regular = "\ue870"; + public const string notebook_16_regular = "\uef09"; + public const string notebook_20_regular = "\ue871"; + public const string notebook_24_regular = "\uf570"; + public const string notebook_32_regular = "\ueed9"; + public const string notebook_add_20_regular = "\ue872"; + public const string notebook_add_24_regular = "\ue873"; + public const string notebook_arrow_curve_down_20_regular = "\ue874"; + public const string notebook_error_20_regular = "\ue875"; + public const string notebook_error_24_regular = "\uf571"; + public const string notebook_eye_20_regular = "\ue876"; + public const string notebook_lightning_20_regular = "\ue877"; + public const string notebook_lightning_24_regular = "\uf572"; + public const string notebook_question_mark_20_regular = "\ue878"; + public const string notebook_question_mark_24_regular = "\uf573"; + public const string notebook_section_20_regular = "\ue879"; + public const string notebook_section_24_regular = "\uf574"; + public const string notebook_section_arrow_right_20_regular = "\uef7c"; + public const string notebook_section_arrow_right_24_regular = "\ue87a"; + public const string notebook_subsection_20_regular = "\ue87b"; + public const string notebook_subsection_24_regular = "\ue87c"; + public const string notebook_sync_20_regular = "\ue87d"; + public const string notebook_sync_24_regular = "\uf575"; + public const string notepad_12_regular = "\ue87e"; + public const string notepad_16_regular = "\uf665"; + public const string notepad_20_regular = "\uf576"; + public const string notepad_24_regular = "\uf577"; + public const string notepad_28_regular = "\uf578"; + public const string notepad_32_regular = "\ue87f"; + public const string notepad_edit_16_regular = "\uf666"; + public const string notepad_edit_20_regular = "\ue880"; + public const string notepad_person_16_regular = "\ue881"; + public const string notepad_person_20_regular = "\ue882"; + public const string notepad_person_24_regular = "\ue883"; + public const string notepad_sparkle_16_regular = "\U000f0600"; + public const string notepad_sparkle_20_regular = "\U000f0601"; + public const string notepad_sparkle_24_regular = "\U000f0602"; + public const string notepad_sparkle_28_regular = "\U000f0603"; + public const string notepad_sparkle_32_regular = "\U000f0604"; + public const string number_circle_0_16_regular = "\U000f0342"; + public const string number_circle_0_20_regular = "\U000f0343"; + public const string number_circle_0_24_regular = "\U000f0344"; + public const string number_circle_0_28_regular = "\U000f0345"; + public const string number_circle_0_32_regular = "\U000f0346"; + public const string number_circle_0_48_regular = "\U000f0347"; + public const string number_circle_1_16_regular = "\ue884"; + public const string number_circle_1_20_regular = "\ue885"; + public const string number_circle_1_24_regular = "\ue886"; + public const string number_circle_1_28_regular = "\U000f024b"; + public const string number_circle_1_32_regular = "\U000f024c"; + public const string number_circle_1_48_regular = "\U000f024d"; + public const string number_circle_2_16_regular = "\U000f024e"; + public const string number_circle_2_20_regular = "\U000f024f"; + public const string number_circle_2_24_regular = "\U000f0250"; + public const string number_circle_2_28_regular = "\U000f0251"; + public const string number_circle_2_32_regular = "\U000f0252"; + public const string number_circle_2_48_regular = "\U000f0253"; + public const string number_circle_3_16_regular = "\U000f0254"; + public const string number_circle_3_20_regular = "\U000f0255"; + public const string number_circle_3_24_regular = "\U000f0256"; + public const string number_circle_3_28_regular = "\U000f0257"; + public const string number_circle_3_32_regular = "\U000f0258"; + public const string number_circle_3_48_regular = "\U000f0259"; + public const string number_circle_4_16_regular = "\U000f025a"; + public const string number_circle_4_20_regular = "\U000f025b"; + public const string number_circle_4_24_regular = "\U000f025c"; + public const string number_circle_4_28_regular = "\U000f025d"; + public const string number_circle_4_32_regular = "\U000f025e"; + public const string number_circle_4_48_regular = "\U000f025f"; + public const string number_circle_5_16_regular = "\U000f0260"; + public const string number_circle_5_20_regular = "\U000f0261"; + public const string number_circle_5_24_regular = "\U000f0262"; + public const string number_circle_5_28_regular = "\U000f0263"; + public const string number_circle_5_32_regular = "\U000f0264"; + public const string number_circle_5_48_regular = "\U000f0265"; + public const string number_circle_6_16_regular = "\U000f0348"; + public const string number_circle_6_20_regular = "\U000f0349"; + public const string number_circle_6_24_regular = "\U000f034a"; + public const string number_circle_6_28_regular = "\U000f034b"; + public const string number_circle_6_32_regular = "\U000f034c"; + public const string number_circle_6_48_regular = "\U000f034d"; + public const string number_circle_7_16_regular = "\U000f034e"; + public const string number_circle_7_20_regular = "\U000f034f"; + public const string number_circle_7_24_regular = "\U000f0350"; + public const string number_circle_7_28_regular = "\U000f0351"; + public const string number_circle_7_32_regular = "\U000f0352"; + public const string number_circle_7_48_regular = "\U000f0353"; + public const string number_circle_8_16_regular = "\U000f0354"; + public const string number_circle_8_20_regular = "\U000f0355"; + public const string number_circle_8_24_regular = "\U000f0356"; + public const string number_circle_8_28_regular = "\U000f0357"; + public const string number_circle_8_32_regular = "\U000f0358"; + public const string number_circle_8_48_regular = "\U000f0359"; + public const string number_circle_9_16_regular = "\U000f035a"; + public const string number_circle_9_20_regular = "\U000f035b"; + public const string number_circle_9_24_regular = "\U000f035c"; + public const string number_circle_9_28_regular = "\U000f035d"; + public const string number_circle_9_32_regular = "\U000f035e"; + public const string number_circle_9_48_regular = "\U000f035f"; + public const string number_row_16_regular = "\uf579"; + public const string number_row_20_regular = "\uf57a"; + public const string number_row_24_regular = "\uf57b"; + public const string number_symbol_16_regular = "\uf57c"; + public const string number_symbol_20_regular = "\uf57d"; + public const string number_symbol_24_regular = "\uf57e"; + public const string number_symbol_28_regular = "\ue887"; + public const string number_symbol_32_regular = "\ue888"; + public const string number_symbol_48_regular = "\ue889"; + public const string number_symbol_dismiss_20_regular = "\ue88a"; + public const string number_symbol_dismiss_24_regular = "\ue88b"; + public const string number_symbol_square_20_regular = "\ue88c"; + public const string number_symbol_square_24_regular = "\ue88d"; + public const string open_12_regular = "\U000f02c5"; + public const string open_16_regular = "\uf581"; + public const string open_20_regular = "\uf582"; + public const string open_24_regular = "\uf583"; + public const string open_28_regular = "\ue88e"; + public const string open_32_regular = "\uf667"; + public const string open_48_regular = "\ue88f"; + public const string open_folder_16_regular = "\ue890"; + public const string open_folder_20_regular = "\ue891"; + public const string open_folder_24_regular = "\uf584"; + public const string open_folder_28_regular = "\ue892"; + public const string open_folder_48_regular = "\ue893"; + public const string open_off_16_regular = "\ue894"; + public const string open_off_20_regular = "\ue895"; + public const string open_off_24_regular = "\ue896"; + public const string open_off_28_regular = "\ue897"; + public const string open_off_48_regular = "\ue898"; + public const string options_16_regular = "\uf586"; + public const string options_20_regular = "\uf587"; + public const string options_24_regular = "\uf588"; + public const string options_28_regular = "\U000f0573"; + public const string options_32_regular = "\U000f0574"; + public const string options_48_regular = "\ue899"; + public const string organization_12_regular = "\ue89a"; + public const string organization_16_regular = "\ue89b"; + public const string organization_20_regular = "\uf589"; + public const string organization_24_regular = "\uf58a"; + public const string organization_28_regular = "\uf58b"; + public const string organization_32_regular = "\ue89c"; + public const string organization_48_regular = "\ue89d"; + public const string organization_horizontal_16_regular = "\U000f044c"; + public const string organization_horizontal_20_regular = "\ue89e"; + public const string organization_horizontal_24_regular = "\U000f044d"; + public const string orientation_20_regular = "\ue89f"; + public const string orientation_24_regular = "\ue8a0"; + public const string oval_16_regular = "\ue8a1"; + public const string oval_20_regular = "\ue8a2"; + public const string oval_24_regular = "\ue8a3"; + public const string oval_28_regular = "\ue8a4"; + public const string oval_32_regular = "\ue8a5"; + public const string oval_48_regular = "\ue8a6"; + public const string oven_20_regular = "\ueff1"; + public const string oven_24_regular = "\ueff2"; + public const string oven_32_regular = "\ueff3"; + public const string oven_48_regular = "\ueff4"; + public const string padding_down_20_regular = "\uf681"; + public const string padding_down_24_regular = "\uf682"; + public const string padding_left_20_regular = "\uf695"; + public const string padding_left_24_regular = "\uf69e"; + public const string padding_right_20_regular = "\uf69f"; + public const string padding_right_24_regular = "\uf6a0"; + public const string padding_top_20_regular = "\uf6b4"; + public const string padding_top_24_regular = "\uf6b9"; + public const string page_fit_16_regular = "\uf58e"; + public const string page_fit_20_regular = "\uf58f"; + public const string page_fit_24_regular = "\uf590"; + public const string paint_brush_16_regular = "\uf591"; + public const string paint_brush_20_regular = "\uf592"; + public const string paint_brush_24_regular = "\uf593"; + public const string paint_brush_28_regular = "\U000f0605"; + public const string paint_brush_32_regular = "\U000f0224"; + public const string paint_brush_arrow_down_20_regular = "\ue8a7"; + public const string paint_brush_arrow_down_24_regular = "\ue8a8"; + public const string paint_brush_arrow_up_20_regular = "\ue8a9"; + public const string paint_brush_arrow_up_24_regular = "\ue8aa"; + public const string paint_brush_sparkle_20_regular = "\U000f05da"; + public const string paint_brush_sparkle_24_regular = "\U000f05db"; + public const string paint_brush_subtract_16_regular = "\U000f0606"; + public const string paint_brush_subtract_20_regular = "\U000f0607"; + public const string paint_brush_subtract_24_regular = "\U000f0608"; + public const string paint_brush_subtract_28_regular = "\U000f0609"; + public const string paint_brush_subtract_32_regular = "\U000f060a"; + public const string paint_bucket_16_regular = "\uf594"; + public const string paint_bucket_20_regular = "\uf595"; + public const string paint_bucket_24_regular = "\uf596"; + public const string pair_20_regular = "\ue8ab"; + public const string pair_24_regular = "\uf597"; + public const string panel_bottom_20_regular = "\ue8ac"; + public const string panel_bottom_contract_20_regular = "\ue8ad"; + public const string panel_bottom_expand_20_regular = "\ue8ae"; + public const string panel_left_16_regular = "\ue8af"; + public const string panel_left_20_regular = "\ue8b0"; + public const string panel_left_24_regular = "\ue8b1"; + public const string panel_left_28_regular = "\ue8b2"; + public const string panel_left_32_regular = "\ueff6"; + public const string panel_left_48_regular = "\ue8b3"; + public const string panel_left_add_16_regular = "\ueff7"; + public const string panel_left_add_20_regular = "\ueff8"; + public const string panel_left_add_24_regular = "\ueff9"; + public const string panel_left_add_28_regular = "\ueffa"; + public const string panel_left_add_32_regular = "\ueffb"; + public const string panel_left_add_48_regular = "\ueffc"; + public const string panel_left_contract_16_regular = "\ue8b4"; + public const string panel_left_contract_20_regular = "\ue8b5"; + public const string panel_left_contract_24_regular = "\ue8b6"; + public const string panel_left_contract_28_regular = "\ue8b7"; + public const string panel_left_expand_16_regular = "\ue8b8"; + public const string panel_left_expand_20_regular = "\ue8b9"; + public const string panel_left_expand_24_regular = "\ue8ba"; + public const string panel_left_expand_28_regular = "\ue8bb"; + public const string panel_left_header_16_regular = "\U000f0073"; + public const string panel_left_header_20_regular = "\U000f0074"; + public const string panel_left_header_24_regular = "\U000f0075"; + public const string panel_left_header_28_regular = "\U000f0076"; + public const string panel_left_header_32_regular = "\U000f0077"; + public const string panel_left_header_48_regular = "\U000f0078"; + public const string panel_left_header_add_16_regular = "\U000f0079"; + public const string panel_left_header_add_20_regular = "\U000f007a"; + public const string panel_left_header_add_24_regular = "\U000f007b"; + public const string panel_left_header_add_28_regular = "\U000f007c"; + public const string panel_left_header_add_32_regular = "\U000f007d"; + public const string panel_left_header_add_48_regular = "\U000f007e"; + public const string panel_left_header_key_16_regular = "\U000f007f"; + public const string panel_left_header_key_20_regular = "\U000f0080"; + public const string panel_left_header_key_24_regular = "\U000f0081"; + public const string panel_left_key_16_regular = "\ueffd"; + public const string panel_left_key_20_regular = "\ueffe"; + public const string panel_left_key_24_regular = "\uefff"; + public const string panel_left_text_16_regular = "\U000f0199"; + public const string panel_left_text_20_regular = "\U000f019a"; + public const string panel_left_text_24_regular = "\U000f019b"; + public const string panel_left_text_28_regular = "\U000f019c"; + public const string panel_left_text_32_regular = "\U000f019d"; + public const string panel_left_text_48_regular = "\U000f019e"; + public const string panel_left_text_add_16_regular = "\U000f019f"; + public const string panel_left_text_add_20_regular = "\U000f01a0"; + public const string panel_left_text_add_24_regular = "\U000f01a1"; + public const string panel_left_text_add_28_regular = "\U000f01a2"; + public const string panel_left_text_add_32_regular = "\U000f01a3"; + public const string panel_left_text_add_48_regular = "\U000f01a4"; + public const string panel_left_text_dismiss_16_regular = "\U000f01a5"; + public const string panel_left_text_dismiss_20_regular = "\U000f01a6"; + public const string panel_left_text_dismiss_24_regular = "\U000f01a7"; + public const string panel_left_text_dismiss_28_regular = "\U000f01a8"; + public const string panel_left_text_dismiss_32_regular = "\U000f01a9"; + public const string panel_left_text_dismiss_48_regular = "\U000f01aa"; + public const string panel_right_16_regular = "\ue8bc"; + public const string panel_right_20_regular = "\ue8bd"; + public const string panel_right_24_regular = "\ue8be"; + public const string panel_right_28_regular = "\ue8bf"; + public const string panel_right_32_regular = "\uf000"; + public const string panel_right_48_regular = "\ue8c0"; + public const string panel_right_add_20_regular = "\ueeae"; + public const string panel_right_contract_16_regular = "\ue8c1"; + public const string panel_right_contract_20_regular = "\ue8c2"; + public const string panel_right_contract_24_regular = "\ue8c3"; + public const string panel_right_cursor_20_regular = "\uf03d"; + public const string panel_right_cursor_24_regular = "\uf03e"; + public const string panel_right_expand_20_regular = "\ue8c4"; + public const string panel_right_gallery_16_regular = "\U000f030d"; + public const string panel_right_gallery_20_regular = "\U000f030e"; + public const string panel_right_gallery_24_regular = "\U000f030f"; + public const string panel_right_gallery_28_regular = "\U000f0310"; + public const string panel_separate_window_20_regular = "\ue8c5"; + public const string panel_top_contract_20_regular = "\ue8c6"; + public const string panel_top_expand_20_regular = "\ue8c7"; + public const string panel_top_gallery_16_regular = "\U000f0311"; + public const string panel_top_gallery_20_regular = "\U000f0312"; + public const string panel_top_gallery_24_regular = "\U000f0313"; + public const string panel_top_gallery_28_regular = "\U000f0314"; + public const string password_16_regular = "\ue8c8"; + public const string password_20_regular = "\ue8c9"; + public const string password_24_regular = "\uf59e"; + public const string password_32_regular = "\U000f05ae"; + public const string password_48_regular = "\U000f05af"; + public const string password_clock_48_regular = "\U000f05b0"; + public const string password_reset_48_regular = "\U000f05b1"; + public const string patch_20_regular = "\uf6ba"; + public const string patch_24_regular = "\uf6bb"; + public const string patient_20_regular = "\ue8ca"; + public const string patient_24_regular = "\uf59f"; + public const string patient_32_regular = "\ue8cb"; + public const string pause_12_regular = "\ue8cc"; + public const string pause_16_regular = "\uf5a0"; + public const string pause_20_regular = "\uf5a1"; + public const string pause_24_regular = "\uf5a2"; + public const string pause_28_regular = "\ue8cd"; + public const string pause_32_regular = "\ue8ce"; + public const string pause_48_regular = "\uf5a3"; + public const string pause_circle_20_regular = "\uf6bc"; + public const string pause_circle_24_regular = "\ue8cf"; + public const string pause_circle_32_regular = "\U000f0225"; + public const string pause_circle_48_regular = "\U000f0226"; + public const string pause_off_16_regular = "\ue8d0"; + public const string pause_off_20_regular = "\ue8d1"; + public const string pause_settings_16_regular = "\ue8d2"; + public const string pause_settings_20_regular = "\ue8d3"; + public const string payment_16_regular = "\ue8d4"; + public const string payment_20_regular = "\uf5a4"; + public const string payment_24_regular = "\uf5a5"; + public const string payment_28_regular = "\ue8d5"; + public const string payment_32_regular = "\ueeda"; + public const string payment_48_regular = "\ueedb"; + public const string payment_wireless_16_regular = "\U000f0517"; + public const string payment_wireless_20_regular = "\U000f0518"; + public const string payment_wireless_24_regular = "\U000f0519"; + public const string payment_wireless_28_regular = "\U000f051a"; + public const string payment_wireless_32_regular = "\U000f051b"; + public const string payment_wireless_48_regular = "\U000f051c"; + public const string pen_16_regular = "\ue8d6"; + public const string pen_20_regular = "\ue8d7"; + public const string pen_24_regular = "\ue8d8"; + public const string pen_28_regular = "\ue8d9"; + public const string pen_32_regular = "\ue8da"; + public const string pen_48_regular = "\ue8db"; + public const string pen_dismiss_16_regular = "\U000f00eb"; + public const string pen_dismiss_20_regular = "\U000f00ec"; + public const string pen_dismiss_24_regular = "\U000f00ed"; + public const string pen_dismiss_28_regular = "\U000f00ee"; + public const string pen_dismiss_32_regular = "\U000f00ef"; + public const string pen_dismiss_48_regular = "\U000f00f0"; + public const string pen_off_16_regular = "\ue8dc"; + public const string pen_off_20_regular = "\ue8dd"; + public const string pen_off_24_regular = "\ue8de"; + public const string pen_off_28_regular = "\ue8df"; + public const string pen_off_32_regular = "\ue8e0"; + public const string pen_off_48_regular = "\ue8e1"; + public const string pen_prohibited_16_regular = "\ue8e2"; + public const string pen_prohibited_20_regular = "\ue8e3"; + public const string pen_prohibited_24_regular = "\ue8e4"; + public const string pen_prohibited_28_regular = "\ue8e5"; + public const string pen_prohibited_32_regular = "\ue8e6"; + public const string pen_prohibited_48_regular = "\ue8e7"; + public const string pen_sparkle_16_regular = "\U000f0227"; + public const string pen_sparkle_20_regular = "\U000f0228"; + public const string pen_sparkle_24_regular = "\U000f0229"; + public const string pen_sparkle_28_regular = "\U000f022a"; + public const string pen_sparkle_32_regular = "\U000f022b"; + public const string pen_sparkle_48_regular = "\U000f022c"; + public const string pentagon_20_regular = "\ue8e8"; + public const string pentagon_32_regular = "\ue8e9"; + public const string pentagon_48_regular = "\ue8ea"; + public const string people_12_regular = "\ue8eb"; + public const string people_16_regular = "\uf5a7"; + public const string people_20_regular = "\uf5a8"; + public const string people_24_regular = "\uf5a9"; + public const string people_28_regular = "\uf5aa"; + public const string people_32_regular = "\ue8ec"; + public const string people_48_regular = "\ue8ed"; + public const string people_add_16_regular = "\uf5ab"; + public const string people_add_20_regular = "\uf5ac"; + public const string people_add_24_regular = "\uf5ad"; + public const string people_add_28_regular = "\ue8ee"; + public const string people_add_32_regular = "\U000f0575"; + public const string people_audience_20_regular = "\ue8ef"; + public const string people_audience_24_regular = "\uf5ae"; + public const string people_audience_32_regular = "\U000f04f7"; + public const string people_call_16_regular = "\ue8f0"; + public const string people_call_20_regular = "\ue8f1"; + public const string people_call_24_regular = "\U000f0082"; + public const string people_chat_16_regular = "\U000f03bf"; + public const string people_chat_20_regular = "\U000f03c0"; + public const string people_chat_24_regular = "\U000f03c1"; + public const string people_checkmark_16_regular = "\ue8f2"; + public const string people_checkmark_20_regular = "\ue8f3"; + public const string people_checkmark_24_regular = "\ue8f4"; + public const string people_community_12_regular = "\U000f05dc"; + public const string people_community_16_regular = "\uf5af"; + public const string people_community_20_regular = "\uf5b0"; + public const string people_community_24_regular = "\uf5b1"; + public const string people_community_28_regular = "\uf5b2"; + public const string people_community_32_regular = "\U000f0083"; + public const string people_community_48_regular = "\U000f0084"; + public const string people_community_add_20_regular = "\ue8f5"; + public const string people_community_add_24_regular = "\uf5b3"; + public const string people_community_add_28_regular = "\ue8f6"; + public const string people_edit_16_regular = "\U000f01df"; + public const string people_edit_20_regular = "\ue8f7"; + public const string people_edit_24_regular = "\U000f01e0"; + public const string people_error_16_regular = "\ue8f8"; + public const string people_error_20_regular = "\ue8f9"; + public const string people_error_24_regular = "\ue8fa"; + public const string people_eye_16_regular = "\U000f05b2"; + public const string people_eye_20_regular = "\U000f05b3"; + public const string people_list_16_regular = "\ue8fb"; + public const string people_list_20_regular = "\ue8fc"; + public const string people_list_24_regular = "\ue8fd"; + public const string people_list_28_regular = "\ue8fe"; + public const string people_list_32_regular = "\U000f044e"; + public const string people_lock_20_regular = "\ue8ff"; + public const string people_lock_24_regular = "\ue900"; + public const string people_money_20_regular = "\ue901"; + public const string people_money_24_regular = "\ue902"; + public const string people_prohibited_16_regular = "\ue903"; + public const string people_prohibited_20_regular = "\uf5b4"; + public const string people_prohibited_24_regular = "\ue904"; + public const string people_queue_20_regular = "\ue905"; + public const string people_queue_24_regular = "\ue906"; + public const string people_search_20_regular = "\ue907"; + public const string person_search_24_regular = "\uef7e"; + public const string people_settings_20_regular = "\uf5b6"; + public const string people_settings_24_regular = "\ue908"; + public const string people_settings_28_regular = "\ue909"; + public const string people_star_16_regular = "\uf0f6"; + public const string people_star_20_regular = "\uf0f7"; + public const string people_star_24_regular = "\uf0f8"; + public const string people_star_28_regular = "\uf0f9"; + public const string people_star_32_regular = "\uf0fa"; + public const string people_star_48_regular = "\uf0fb"; + public const string people_subtract_20_regular = "\U000f058e"; + public const string people_subtract_24_regular = "\U000f058f"; + public const string people_subtract_32_regular = "\U000f0590"; + public const string people_swap_16_regular = "\ue90a"; + public const string people_swap_20_regular = "\ue90b"; + public const string people_swap_24_regular = "\ue90c"; + public const string people_swap_28_regular = "\ue90d"; + public const string people_sync_16_regular = "\uf6bd"; + public const string people_sync_20_regular = "\ue90e"; + public const string people_sync_28_regular = "\ue90f"; + public const string people_team_16_regular = "\uf5b7"; + public const string people_team_20_regular = "\uf5b8"; + public const string people_team_24_regular = "\uf5b9"; + public const string people_team_28_regular = "\uf5ba"; + public const string people_team_32_regular = "\ue910"; + public const string people_team_48_regular = "\U000f0131"; + public const string people_team_add_20_regular = "\ue911"; + public const string people_team_add_24_regular = "\ue912"; + public const string people_team_delete_16_regular = "\ue913"; + public const string people_team_delete_20_regular = "\ue914"; + public const string people_team_delete_24_regular = "\ue915"; + public const string people_team_delete_28_regular = "\ue916"; + public const string people_team_delete_32_regular = "\ue917"; + public const string people_team_toolbox_20_regular = "\ue918"; + public const string people_team_toolbox_24_regular = "\ue919"; + public const string people_toolbox_16_regular = "\uf6ca"; + public const string people_toolbox_20_regular = "\ue91a"; + public const string person_12_regular = "\uf5bb"; + public const string person_16_regular = "\uf5bc"; + public const string person_20_regular = "\uf5bd"; + public const string person_24_regular = "\uf5be"; + public const string person_28_regular = "\uf5bf"; + public const string person_32_regular = "\ue91b"; + public const string person_48_regular = "\uf5c0"; + public const string person_5_20_regular = "\ue91c"; + public const string person_5_32_regular = "\ue91d"; + public const string person_6_20_regular = "\ue91e"; + public const string person_6_32_regular = "\ue91f"; + public const string person_accounts_20_regular = "\ue920"; + public const string person_accounts_24_regular = "\uf5c1"; + public const string person_add_16_regular = "\ue921"; + public const string person_add_20_regular = "\uf5c2"; + public const string person_add_24_regular = "\uf5c3"; + public const string person_add_28_regular = "\ue922"; + public const string person_add_32_regular = "\U000f044f"; + public const string person_alert_16_regular = "\uef91"; + public const string person_alert_20_regular = "\uef92"; + public const string person_alert_24_regular = "\uef93"; + public const string person_alert_32_regular = "\U000f0576"; + public const string person_alert_off_16_regular = "\U000f0591"; + public const string person_alert_off_20_regular = "\U000f0592"; + public const string person_alert_off_24_regular = "\U000f0593"; + public const string person_alert_off_32_regular = "\U000f0594"; + public const string person_arrow_back_16_regular = "\uef94"; + public const string person_arrow_back_20_regular = "\uef95"; + public const string person_arrow_back_24_regular = "\uef96"; + public const string person_arrow_back_28_regular = "\uef97"; + public const string person_arrow_back_32_regular = "\uef98"; + public const string person_arrow_back_48_regular = "\uef99"; + public const string person_arrow_left_16_regular = "\ue923"; + public const string person_arrow_left_20_regular = "\uf5c4"; + public const string person_arrow_left_24_regular = "\uf5c5"; + public const string person_arrow_right_16_regular = "\uf5c6"; + public const string person_arrow_right_20_regular = "\uf5c7"; + public const string person_arrow_right_24_regular = "\uf5c8"; + public const string person_available_16_regular = "\uf5c9"; + public const string person_available_20_regular = "\ue924"; + public const string person_available_24_regular = "\uf5ca"; + public const string person_board_12_regular = "\U000f05dd"; + public const string person_board_16_regular = "\uf5cc"; + public const string person_board_20_regular = "\uf5cd"; + public const string person_board_24_regular = "\uf5ce"; + public const string person_board_28_regular = "\uf03f"; + public const string person_board_32_regular = "\uf040"; + public const string person_call_16_regular = "\ue925"; + public const string person_call_20_regular = "\ue926"; + public const string person_call_24_regular = "\uf5cf"; + public const string person_chat_16_regular = "\uf6cb"; + public const string person_chat_20_regular = "\uf6d1"; + public const string person_chat_24_regular = "\uf6d3"; + public const string person_circle_12_regular = "\ue927"; + public const string person_circle_20_regular = "\ue928"; + public const string person_circle_24_regular = "\ue929"; + public const string person_circle_28_regular = "\uf041"; + public const string person_circle_32_regular = "\uf042"; + public const string person_clock_16_regular = "\ue92a"; + public const string person_clock_20_regular = "\ue92b"; + public const string person_clock_24_regular = "\ue92c"; + public const string person_delete_16_regular = "\uf5d0"; + public const string person_delete_20_regular = "\ue92d"; + public const string person_delete_24_regular = "\uf5d1"; + public const string person_desktop_20_regular = "\U000f0132"; + public const string person_edit_20_regular = "\ue92e"; + public const string person_edit_24_regular = "\ue92f"; + public const string person_edit_48_regular = "\U000f027a"; + public const string person_feedback_16_regular = "\ue930"; + public const string person_feedback_20_regular = "\uf5d2"; + public const string person_feedback_24_regular = "\uf5d3"; + public const string person_feedback_28_regular = "\U000f0085"; + public const string person_feedback_32_regular = "\U000f0086"; + public const string person_feedback_48_regular = "\U000f0087"; + public const string person_heart_20_regular = "\uef0a"; + public const string person_heart_24_regular = "\ue931"; + public const string person_info_16_regular = "\uf6d6"; + public const string person_info_20_regular = "\ue932"; + public const string person_info_24_regular = "\U000f01f4"; + public const string person_key_20_regular = "\ue933"; + public const string person_lightbulb_20_regular = "\ue934"; + public const string person_lightbulb_24_regular = "\ue935"; + public const string person_lightning_16_regular = "\U000f01ab"; + public const string person_lightning_20_regular = "\U000f01ac"; + public const string person_link_16_regular = "\uef9a"; + public const string person_link_20_regular = "\uef9b"; + public const string person_link_24_regular = "\uef9c"; + public const string person_link_28_regular = "\uef9d"; + public const string person_link_32_regular = "\uef9e"; + public const string person_link_48_regular = "\uef9f"; + public const string person_lock_16_regular = "\uf6d8"; + public const string person_lock_20_regular = "\uf6d9"; + public const string person_lock_24_regular = "\ue936"; + public const string person_mail_16_regular = "\ue937"; + public const string person_mail_20_regular = "\ue938"; + public const string person_mail_24_regular = "\ue939"; + public const string person_mail_28_regular = "\ue93a"; + public const string person_mail_48_regular = "\ue93b"; + public const string person_money_20_regular = "\ue93c"; + public const string person_money_24_regular = "\ue93d"; + public const string person_note_16_regular = "\ueeaf"; + public const string person_note_20_regular = "\ue93e"; + public const string person_note_24_regular = "\ue93f"; + public const string person_passkey_16_regular = "\U000f053a"; + public const string person_passkey_20_regular = "\U000f053b"; + public const string person_passkey_24_regular = "\U000f053c"; + public const string person_passkey_28_regular = "\U000f053d"; + public const string person_passkey_32_regular = "\U000f053e"; + public const string person_passkey_48_regular = "\U000f053f"; + public const string person_phone_24_regular = "\U000f022d"; + public const string person_pill_20_regular = "\ue940"; + public const string person_pill_24_regular = "\ue941"; + public const string person_prohibited_16_regular = "\ue942"; + public const string person_prohibited_20_regular = "\uf5d4"; + public const string person_prohibited_24_regular = "\ue943"; + public const string person_prohibited_28_regular = "\ue944"; + public const string person_prohibited_32_regular = "\U000f0540"; + public const string person_question_mark_16_regular = "\uf5d5"; + public const string person_question_mark_20_regular = "\uf5d6"; + public const string person_question_mark_24_regular = "\uf5d7"; + public const string person_ribbon_16_regular = "\U000f0133"; + public const string person_ribbon_20_regular = "\U000f0134"; + public const string person_ribbon_24_regular = "\U000f0541"; + public const string person_running_20_regular = "\ueedc"; + public const string person_search_16_regular = "\uf0fc"; + public const string person_search_32_regular = "\uf0fd"; + public const string person_settings_16_regular = "\ue945"; + public const string person_settings_20_regular = "\ue946"; + public const string person_square_16_regular = "\U000f0450"; + public const string person_square_20_regular = "\uf043"; + public const string person_square_24_regular = "\uf044"; + public const string person_square_32_regular = "\U000f0451"; + public const string person_square_checkmark_16_regular = "\U000f0452"; + public const string person_square_checkmark_20_regular = "\U000f0453"; + public const string person_square_checkmark_24_regular = "\U000f0454"; + public const string person_square_checkmark_32_regular = "\U000f0455"; + public const string person_standing_16_regular = "\uf0fe"; + public const string person_star_16_regular = "\uef0b"; + public const string person_star_20_regular = "\uef0c"; + public const string person_star_24_regular = "\uef0d"; + public const string person_star_28_regular = "\uef0e"; + public const string person_star_32_regular = "\uef0f"; + public const string person_star_48_regular = "\uef10"; + public const string person_starburst_20_regular = "\uf045"; + public const string person_starburst_24_regular = "\uf046"; + public const string person_subtract_16_regular = "\uf6ed"; + public const string person_subtract_20_regular = "\ue947"; + public const string person_subtract_24_regular = "\U000f022e"; + public const string person_support_16_regular = "\uf5d8"; + public const string person_support_20_regular = "\uf5d9"; + public const string person_support_24_regular = "\uf5da"; + public const string person_support_28_regular = "\U000f03c2"; + public const string person_support_32_regular = "\U000f05f3"; + public const string person_swap_16_regular = "\uf5db"; + public const string person_swap_20_regular = "\uf5dc"; + public const string person_swap_24_regular = "\uf5dd"; + public const string person_sync_16_regular = "\ue948"; + public const string person_sync_20_regular = "\ue949"; + public const string person_sync_24_regular = "\ue94a"; + public const string person_sync_28_regular = "\ue94b"; + public const string person_sync_32_regular = "\ue94c"; + public const string person_sync_48_regular = "\ue94d"; + public const string person_tag_20_regular = "\ue94e"; + public const string person_tag_24_regular = "\ue94f"; + public const string person_tag_28_regular = "\ue950"; + public const string person_tag_32_regular = "\ue951"; + public const string person_tag_48_regular = "\ue952"; + public const string person_tentative_16_regular = "\U000f05de"; + public const string person_tentative_20_regular = "\U000f05df"; + public const string person_tentative_24_regular = "\U000f05e0"; + public const string person_voice_16_regular = "\U000f040a"; + public const string person_voice_20_regular = "\uf5de"; + public const string person_voice_24_regular = "\uf5df"; + public const string person_walking_16_regular = "\uf0ff"; + public const string person_walking_20_regular = "\uf087"; + public const string person_walking_24_regular = "\uf088"; + public const string person_warning_16_regular = "\U000f040b"; + public const string person_warning_20_regular = "\U000f040c"; + public const string person_warning_24_regular = "\U000f040d"; + public const string person_warning_28_regular = "\U000f040e"; + public const string person_warning_32_regular = "\U000f040f"; + public const string person_warning_48_regular = "\U000f0410"; + public const string person_wrench_20_regular = "\U000f0135"; + public const string phone_12_regular = "\ue953"; + public const string phone_16_regular = "\uf6ee"; + public const string phone_20_regular = "\uf5e0"; + public const string phone_24_regular = "\uf5e1"; + public const string phone_28_regular = "\uefa0"; + public const string phone_32_regular = "\uefa1"; + public const string phone_48_regular = "\uefa2"; + public const string phone_add_20_regular = "\ue954"; + public const string phone_add_24_regular = "\ue955"; + public const string phone_arrow_right_20_regular = "\ue956"; + public const string phone_arrow_right_24_regular = "\ue957"; + public const string phone_briefcase_24_regular = "\U000f022f"; + public const string phone_chat_16_regular = "\uefa3"; + public const string phone_chat_20_regular = "\uefa4"; + public const string phone_chat_24_regular = "\uefa5"; + public const string phone_chat_28_regular = "\uefa6"; + public const string phone_checkmark_16_regular = "\uf6ef"; + public const string phone_checkmark_20_regular = "\ue958"; + public const string phone_desktop_16_regular = "\uf5e4"; + public const string phone_desktop_20_regular = "\uf5e5"; + public const string phone_desktop_24_regular = "\uf5e6"; + public const string phone_desktop_28_regular = "\uf5e7"; + public const string phone_desktop_32_regular = "\U000f0088"; + public const string phone_desktop_48_regular = "\U000f0089"; + public const string phone_desktop_add_20_regular = "\ue959"; + public const string phone_dismiss_20_regular = "\ue95a"; + public const string phone_dismiss_24_regular = "\ue95b"; + public const string phone_edit_20_regular = "\U000f00f1"; + public const string phone_edit_24_regular = "\U000f00f2"; + public const string phone_eraser_16_regular = "\ue95c"; + public const string phone_eraser_20_regular = "\ue95d"; + public const string phone_footer_arrow_down_20_regular = "\U000f0456"; + public const string phone_footer_arrow_down_24_regular = "\U000f0457"; + public const string phone_header_arrow_up_20_regular = "\U000f0458"; + public const string phone_header_arrow_up_24_regular = "\U000f0459"; + public const string phone_key_20_regular = "\ue95e"; + public const string phone_key_24_regular = "\ue95f"; + public const string phone_laptop_16_regular = "\ue960"; + public const string phone_laptop_20_regular = "\uf5ea"; + public const string phone_laptop_24_regular = "\uf5eb"; + public const string phone_laptop_32_regular = "\ue961"; + public const string phone_link_setup_20_regular = "\ue962"; + public const string phone_link_setup_24_regular = "\uf5ec"; + public const string phone_lock_20_regular = "\ue963"; + public const string phone_lock_24_regular = "\ue964"; + public const string phone_multiple_24_regular = "\U000f0230"; + public const string phone_multiple_settings_24_regular = "\U000f0231"; + public const string phone_page_header_20_regular = "\ue965"; + public const string phone_page_header_24_regular = "\uf5ef"; + public const string phone_pagination_20_regular = "\ue966"; + public const string phone_pagination_24_regular = "\uf5f0"; + public const string phone_person_24_regular = "\U000f0232"; + public const string phone_screen_time_20_regular = "\ue967"; + public const string phone_screen_time_24_regular = "\uf5f1"; + public const string phone_shake_20_regular = "\ue968"; + public const string phone_shake_24_regular = "\uf5f2"; + public const string phone_span_in_16_regular = "\ue969"; + public const string phone_span_in_20_regular = "\ue96a"; + public const string phone_span_in_24_regular = "\ue96b"; + public const string phone_span_in_28_regular = "\ue96c"; + public const string phone_span_out_16_regular = "\ue96d"; + public const string phone_span_out_20_regular = "\ue96e"; + public const string phone_span_out_24_regular = "\ue96f"; + public const string phone_span_out_28_regular = "\ue970"; + public const string phone_speaker_20_regular = "\ue971"; + public const string phone_speaker_24_regular = "\ue972"; + public const string phone_status_bar_20_regular = "\ue973"; + public const string phone_status_bar_24_regular = "\uf5f3"; + public const string phone_subtract_24_regular = "\U000f0233"; + public const string phone_tablet_20_regular = "\uf5f4"; + public const string phone_tablet_24_regular = "\uf5f5"; + public const string phone_update_20_regular = "\ue974"; + public const string phone_update_24_regular = "\uf5f8"; + public const string phone_update_checkmark_20_regular = "\ue975"; + public const string phone_update_checkmark_24_regular = "\ue976"; + public const string phone_vertical_scroll_20_regular = "\ue977"; + public const string phone_vertical_scroll_24_regular = "\uf5f9"; + public const string phone_vibrate_20_regular = "\ue978"; + public const string phone_vibrate_24_regular = "\uf5fa"; + public const string photo_filter_20_regular = "\ue979"; + public const string photo_filter_24_regular = "\uf5fb"; + public const string pi_20_regular = "\ue97a"; + public const string pi_24_regular = "\ue97b"; + public const string picture_in_picture_16_regular = "\uf5fc"; + public const string picture_in_picture_20_regular = "\uf5fd"; + public const string picture_in_picture_24_regular = "\uf5fe"; + public const string picture_in_picture_enter_16_regular = "\ue97c"; + public const string picture_in_picture_enter_20_regular = "\ue97d"; + public const string picture_in_picture_enter_24_regular = "\ue97e"; + public const string picture_in_picture_exit_16_regular = "\ue97f"; + public const string picture_in_picture_exit_20_regular = "\ue980"; + public const string picture_in_picture_exit_24_regular = "\ue981"; + public const string pill_16_regular = "\uf6f0"; + public const string pill_20_regular = "\uf6f1"; + public const string pill_24_regular = "\uf6f2"; + public const string pill_28_regular = "\uf6f3"; + public const string pin_12_regular = "\uf5ff"; + public const string pin_16_regular = "\uf600"; + public const string pin_20_regular = "\uf601"; + public const string pin_24_regular = "\uf602"; + public const string pin_28_regular = "\ue982"; + public const string pin_32_regular = "\ue983"; + public const string pin_48_regular = "\ue984"; + public const string pin_globe_16_regular = "\U000f05b4"; + public const string pin_globe_20_regular = "\U000f05b5"; + public const string pin_off_16_regular = "\ue985"; + public const string pin_off_20_regular = "\uf603"; + public const string pin_off_24_regular = "\uf604"; + public const string pin_off_28_regular = "\ue986"; + public const string pin_off_32_regular = "\ue987"; + public const string pin_off_48_regular = "\ue988"; + public const string pipeline_20_regular = "\ue989"; + public const string pipeline_24_regular = "\ueedd"; + public const string pipeline_32_regular = "\ueede"; + public const string pipeline_add_20_regular = "\ue98a"; + public const string pipeline_add_32_regular = "\uef11"; + public const string pipeline_arrow_curve_down_20_regular = "\ue98b"; + public const string pipeline_play_20_regular = "\ue98c"; + public const string pivot_20_regular = "\ue98d"; + public const string pivot_24_regular = "\ue98e"; + public const string plant_cattail_20_regular = "\U000f0542"; + public const string plant_cattail_24_regular = "\U000f0543"; + public const string plant_grass_20_regular = "\U000f0136"; + public const string plant_grass_24_regular = "\U000f0137"; + public const string plant_grass_28_regular = "\U000f0138"; + public const string plant_ragweed_20_regular = "\U000f0139"; + public const string plant_ragweed_24_regular = "\U000f013a"; + public const string plant_ragweed_28_regular = "\U000f013b"; + public const string play_12_regular = "\ue98f"; + public const string play_16_regular = "\ue990"; + public const string play_20_regular = "\uf605"; + public const string play_24_regular = "\uf606"; + public const string play_28_regular = "\ue991"; + public const string play_32_regular = "\ue992"; + public const string play_48_regular = "\uf607"; + public const string play_circle_16_regular = "\ue993"; + public const string play_circle_20_regular = "\ue994"; + public const string play_circle_24_regular = "\uf608"; + public const string play_circle_28_regular = "\ue995"; + public const string play_circle_48_regular = "\ue996"; + public const string play_circle_hint_16_regular = "\U000f008a"; + public const string play_circle_hint_20_regular = "\U000f008b"; + public const string play_circle_hint_24_regular = "\U000f008c"; + public const string play_circle_sparkle_16_regular = "\U000f060b"; + public const string play_circle_sparkle_20_regular = "\U000f060c"; + public const string play_circle_sparkle_24_regular = "\U000f060d"; + public const string play_multiple_16_regular = "\uf100"; + public const string play_settings_20_regular = "\ue997"; + public const string playing_cards_20_regular = "\ue998"; + public const string plug_connected_16_regular = "\U000f0393"; + public const string plug_connected_20_regular = "\ue999"; + public const string plug_connected_24_regular = "\ue99a"; + public const string plug_connected_add_20_regular = "\ue99b"; + public const string plug_connected_checkmark_20_regular = "\ue99c"; + public const string plug_connected_settings_20_regular = "\U000f0234"; + public const string plug_connected_settings_24_regular = "\U000f0235"; + public const string plug_disconnected_16_regular = "\U000f0394"; + public const string plug_disconnected_20_regular = "\uf609"; + public const string plug_disconnected_24_regular = "\uf60a"; + public const string plug_disconnected_28_regular = "\uf60b"; + public const string plug_disconnected_48_regular = "\U000f027b"; + public const string point_scan_20_regular = "\ue99d"; + public const string point_scan_24_regular = "\uf60c"; + public const string poll_16_regular = "\ue99e"; + public const string poll_20_regular = "\ue99f"; + public const string poll_24_regular = "\uf60d"; + public const string poll_32_regular = "\U000f045a"; + public const string poll_horizontal_16_regular = "\U000f008d"; + public const string poll_horizontal_20_regular = "\U000f008e"; + public const string poll_horizontal_24_regular = "\U000f008f"; + public const string poll_off_16_regular = "\U000f04cc"; + public const string poll_off_20_regular = "\U000f04cd"; + public const string poll_off_24_regular = "\U000f04ce"; + public const string poll_off_32_regular = "\U000f04cf"; + public const string port_hdmi_20_regular = "\ue9a0"; + public const string port_hdmi_24_regular = "\ue9a1"; + public const string port_micro_usb_20_regular = "\ue9a2"; + public const string port_micro_usb_24_regular = "\ue9a3"; + public const string port_usb_a_20_regular = "\ue9a4"; + public const string port_usb_a_24_regular = "\ue9a5"; + public const string port_usb_c_20_regular = "\ue9a6"; + public const string port_usb_c_24_regular = "\ue9a7"; + public const string position_backward_20_regular = "\ue9a8"; + public const string position_backward_24_regular = "\ue9a9"; + public const string position_forward_20_regular = "\ue9aa"; + public const string position_forward_24_regular = "\ue9ab"; + public const string position_to_back_20_regular = "\ue9ac"; + public const string position_to_back_24_regular = "\ue9ad"; + public const string position_to_front_20_regular = "\ue9ae"; + public const string position_to_front_24_regular = "\ue9af"; + public const string power_20_regular = "\uf60e"; + public const string power_24_regular = "\uf60f"; + public const string power_28_regular = "\uf610"; + public const string predictions_20_regular = "\ue9b0"; + public const string predictions_24_regular = "\uf611"; + public const string premium_12_regular = "\uefa7"; + public const string premium_16_regular = "\uf612"; + public const string premium_20_regular = "\uf613"; + public const string premium_24_regular = "\uf614"; + public const string premium_28_regular = "\uf615"; + public const string premium_32_regular = "\ue9b1"; + public const string premium_person_16_regular = "\ue9b2"; + public const string premium_person_20_regular = "\ue9b3"; + public const string premium_person_24_regular = "\ue9b4"; + public const string presence_available_10_regular = "\ue9b5"; + public const string presence_available_12_regular = "\ue9b6"; + public const string presence_available_16_regular = "\ue9b7"; + public const string presence_available_20_regular = "\ue9b8"; + public const string presence_available_24_regular = "\ue9b9"; + public const string presence_away_10_regular = "\U000f0090"; + public const string presence_away_12_regular = "\U000f0091"; + public const string presence_away_16_regular = "\U000f0092"; + public const string presence_away_20_regular = "\U000f0093"; + public const string presence_away_24_regular = "\U000f0094"; + public const string presence_blocked_10_regular = "\uf616"; + public const string presence_blocked_12_regular = "\uf617"; + public const string presence_blocked_16_regular = "\uf618"; + public const string presence_blocked_20_regular = "\ue9ba"; + public const string presence_blocked_24_regular = "\ue9bb"; + public const string presence_dnd_10_regular = "\ue9bc"; + public const string presence_dnd_12_regular = "\ue9bd"; + public const string presence_dnd_16_regular = "\ue9be"; + public const string presence_dnd_20_regular = "\ue9bf"; + public const string presence_dnd_24_regular = "\ue9c0"; + public const string presence_offline_10_regular = "\uf619"; + public const string presence_offline_12_regular = "\uf61a"; + public const string presence_offline_16_regular = "\uf61b"; + public const string presence_offline_20_regular = "\ue9c1"; + public const string presence_offline_24_regular = "\ue9c2"; + public const string presence_oof_10_regular = "\uf61c"; + public const string presence_oof_12_regular = "\uf61d"; + public const string presence_oof_16_regular = "\uf61e"; + public const string presence_oof_20_regular = "\ue9c3"; + public const string presence_oof_24_regular = "\ue9c4"; + public const string presence_unknown_10_regular = "\uf61f"; + public const string presence_unknown_12_regular = "\uf620"; + public const string presence_unknown_20_regular = "\ue9c5"; + public const string presence_unknown_24_regular = "\ue9c6"; + public const string presenter_20_regular = "\ue9c7"; + public const string presenter_24_regular = "\uf622"; + public const string presenter_off_20_regular = "\ue9c8"; + public const string presenter_off_24_regular = "\uf623"; + public const string preview_link_16_regular = "\uf624"; + public const string preview_link_20_regular = "\uf625"; + public const string preview_link_24_regular = "\uf626"; + public const string previous_16_regular = "\uf627"; + public const string previous_20_regular = "\uf628"; + public const string previous_24_regular = "\uf629"; + public const string previous_28_regular = "\ue9c9"; + public const string previous_32_regular = "\ue9ca"; + public const string previous_48_regular = "\ue9cb"; + public const string previous_frame_20_regular = "\U000f02de"; + public const string previous_frame_24_regular = "\U000f02df"; + public const string print_16_regular = "\uf6fa"; + public const string print_20_regular = "\uf62a"; + public const string print_24_regular = "\uf62b"; + public const string print_28_regular = "\ue9cc"; + public const string print_32_regular = "\ue9cd"; + public const string print_48_regular = "\uf62c"; + public const string print_add_20_regular = "\uf6fc"; + public const string print_add_24_regular = "\ue9ce"; + public const string production_20_regular = "\uf6fd"; + public const string production_24_regular = "\uf6fe"; + public const string production_checkmark_20_regular = "\uf703"; + public const string production_checkmark_24_regular = "\uf704"; + public const string prohibited_12_regular = "\ue9cf"; + public const string prohibited_16_regular = "\uf705"; + public const string prohibited_20_regular = "\uf62d"; + public const string prohibited_24_regular = "\uf62e"; + public const string prohibited_28_regular = "\uf62f"; + public const string prohibited_32_regular = "\U000f01f5"; + public const string prohibited_48_regular = "\uf630"; + public const string prohibited_multiple_16_regular = "\ue9d0"; + public const string prohibited_multiple_20_regular = "\ue9d1"; + public const string prohibited_multiple_24_regular = "\ue9d2"; + public const string prohibited_multiple_28_regular = "\U000f01f6"; + public const string prohibited_note_20_regular = "\ue9d3"; + public const string projection_screen_16_regular = "\ue9d4"; + public const string projection_screen_20_regular = "\ue9d5"; + public const string projection_screen_24_regular = "\ue9d6"; + public const string projection_screen_28_regular = "\ue9d7"; + public const string projection_screen_dismiss_16_regular = "\ue9d8"; + public const string projection_screen_dismiss_20_regular = "\ue9d9"; + public const string projection_screen_dismiss_24_regular = "\ue9da"; + public const string projection_screen_dismiss_28_regular = "\ue9db"; + public const string projection_screen_text_20_regular = "\U000f0395"; + public const string projection_screen_text_24_regular = "\U000f0095"; + public const string prompt_16_regular = "\U000f062f"; + public const string prompt_20_regular = "\U000f0630"; + public const string prompt_24_regular = "\U000f0631"; + public const string prompt_28_regular = "\U000f0632"; + public const string prompt_32_regular = "\U000f0633"; + public const string prompt_48_regular = "\U000f0634"; + public const string protocol_handler_16_regular = "\uf632"; + public const string protocol_handler_20_regular = "\uf633"; + public const string protocol_handler_24_regular = "\uf634"; + public const string pulse_20_regular = "\ue9dc"; + public const string pulse_24_regular = "\ue9dd"; + public const string pulse_28_regular = "\ue9de"; + public const string pulse_32_regular = "\ue9df"; + public const string pulse_square_20_regular = "\ue9e0"; + public const string pulse_square_24_regular = "\ue9e1"; + public const string puzzle_cube_16_regular = "\ue9e2"; + public const string puzzle_cube_20_regular = "\ue9e3"; + public const string puzzle_cube_24_regular = "\ue9e4"; + public const string puzzle_cube_28_regular = "\ue9e5"; + public const string puzzle_cube_48_regular = "\ue9e6"; + public const string puzzle_cube_piece_20_regular = "\ue9e7"; + public const string puzzle_piece_16_regular = "\ue9e8"; + public const string puzzle_piece_20_regular = "\ue9e9"; + public const string puzzle_piece_24_regular = "\ue9ea"; + public const string puzzle_piece_shield_20_regular = "\ue9eb"; + public const string qr_code_20_regular = "\ue9ec"; + public const string qr_code_24_regular = "\uf635"; + public const string qr_code_28_regular = "\uf636"; + public const string question_16_regular = "\uf637"; + public const string question_20_regular = "\uf638"; + public const string question_24_regular = "\uf639"; + public const string question_28_regular = "\uf63a"; + public const string question_32_regular = "\U000f045b"; + public const string question_48_regular = "\uf63b"; + public const string question_circle_12_regular = "\ue9ed"; + public const string question_circle_16_regular = "\uf63c"; + public const string question_circle_20_regular = "\uf63d"; + public const string question_circle_24_regular = "\uf63e"; + public const string question_circle_28_regular = "\uf63f"; + public const string question_circle_32_regular = "\ue9ee"; + public const string question_circle_48_regular = "\uf640"; + public const string quiz_new_20_regular = "\ue9ef"; + public const string quiz_new_24_regular = "\uf641"; + public const string quiz_new_28_regular = "\uf642"; + public const string quiz_new_48_regular = "\uf643"; + public const string radar_20_regular = "\ue9f0"; + public const string radar_checkmark_20_regular = "\ue9f1"; + public const string radar_rectangle_multiple_20_regular = "\ue9f2"; + public const string radio_button_16_regular = "\uf153"; + public const string radio_button_24_regular = "\uf645"; + public const string radio_button_off_16_regular = "\uf155"; + public const string ram_16_regular = "\uf1d1"; + public const string ram_20_regular = "\ue9f3"; + public const string rating_mature_16_regular = "\uf646"; + public const string rating_mature_20_regular = "\uf647"; + public const string rating_mature_24_regular = "\uf648"; + public const string ratio_one_to_one_20_regular = "\uf70a"; + public const string ratio_one_to_one_24_regular = "\uf70b"; + public const string re_order_16_regular = "\uf649"; + public const string reorder_20_regular = "\uea11"; + public const string re_order_24_regular = "\uf64a"; + public const string re_order_dots_horizontal_16_regular = "\ue9f4"; + public const string re_order_dots_horizontal_20_regular = "\ue9f5"; + public const string re_order_dots_horizontal_24_regular = "\ue9f6"; + public const string re_order_dots_vertical_16_regular = "\ue9f7"; + public const string re_order_dots_vertical_20_regular = "\ue9f8"; + public const string re_order_dots_vertical_24_regular = "\ue9f9"; + public const string read_aloud_16_regular = "\ue9fa"; + public const string read_aloud_20_regular = "\uf64d"; + public const string read_aloud_24_regular = "\uf64e"; + public const string read_aloud_28_regular = "\ue9fb"; + public const string reading_list_16_regular = "\uf651"; + public const string reading_list_20_regular = "\uf652"; + public const string reading_list_24_regular = "\uf653"; + public const string reading_list_28_regular = "\uf654"; + public const string reading_list_add_16_regular = "\uf655"; + public const string reading_list_add_20_regular = "\uf656"; + public const string reading_list_add_24_regular = "\uf657"; + public const string reading_list_add_28_regular = "\uf658"; + public const string reading_mode_mobile_20_regular = "\uf65b"; + public const string reading_mode_mobile_24_regular = "\uf65c"; + public const string real_estate_20_regular = "\ue9fc"; + public const string real_estate_24_regular = "\ue9fd"; + public const string receipt_16_regular = "\uf089"; + public const string receipt_20_regular = "\ue9fe"; + public const string receipt_24_regular = "\ue9ff"; + public const string receipt_28_regular = "\uf08a"; + public const string receipt_32_regular = "\U000f0096"; + public const string receipt_add_20_regular = "\uf70c"; + public const string receipt_add_24_regular = "\uea00"; + public const string receipt_bag_20_regular = "\uf715"; + public const string receipt_bag_24_regular = "\uea01"; + public const string receipt_cube_20_regular = "\uf72d"; + public const string receipt_cube_24_regular = "\uea02"; + public const string receipt_money_16_regular = "\U000f0097"; + public const string receipt_money_20_regular = "\uf72e"; + public const string receipt_money_24_regular = "\uea03"; + public const string receipt_play_20_regular = "\uea04"; + public const string receipt_play_24_regular = "\uea05"; + public const string receipt_search_20_regular = "\uea06"; + public const string receipt_sparkles_16_regular = "\uf08b"; + public const string receipt_sparkles_20_regular = "\uf047"; + public const string receipt_sparkles_24_regular = "\uf048"; + public const string record_12_regular = "\uf72f"; + public const string record_16_regular = "\uf660"; + public const string record_20_regular = "\uf661"; + public const string record_24_regular = "\uf662"; + public const string record_28_regular = "\uf735"; + public const string record_32_regular = "\uf736"; + public const string record_48_regular = "\uf737"; + public const string record_stop_12_regular = "\uf758"; + public const string record_stop_16_regular = "\uf759"; + public const string record_stop_20_regular = "\uf75a"; + public const string record_stop_24_regular = "\uf75b"; + public const string record_stop_28_regular = "\uf75c"; + public const string record_stop_32_regular = "\uf764"; + public const string record_stop_48_regular = "\uf765"; + public const string rectangle_landscape_12_regular = "\uea07"; + public const string rectangle_landscape_16_regular = "\uea08"; + public const string rectangle_landscape_20_regular = "\uea09"; + public const string rectangle_landscape_24_regular = "\uea0a"; + public const string rectangle_landscape_28_regular = "\uea0b"; + public const string rectangle_landscape_32_regular = "\uea0c"; + public const string rectangle_landscape_48_regular = "\uea0d"; + public const string rectangle_landscape_hint_copy_16_regular = "\U000f0236"; + public const string rectangle_landscape_hint_copy_20_regular = "\U000f0237"; + public const string rectangle_landscape_hint_copy_24_regular = "\U000f0238"; + public const string rectangle_landscape_sparkle_16_regular = "\U000f0315"; + public const string rectangle_landscape_sparkle_20_regular = "\U000f0316"; + public const string rectangle_landscape_sparkle_24_regular = "\U000f0317"; + public const string rectangle_landscape_sparkle_28_regular = "\U000f0318"; + public const string rectangle_landscape_sparkle_32_regular = "\U000f0319"; + public const string rectangle_landscape_sparkle_48_regular = "\U000f04d0"; + public const string rectangle_landscape_sync_16_regular = "\U000f04d1"; + public const string rectangle_landscape_sync_20_regular = "\U000f04d2"; + public const string rectangle_landscape_sync_24_regular = "\U000f04d3"; + public const string rectangle_landscape_sync_28_regular = "\U000f04d4"; + public const string rectangle_landscape_sync_off_16_regular = "\U000f04d5"; + public const string rectangle_landscape_sync_off_20_regular = "\U000f04d6"; + public const string rectangle_landscape_sync_off_24_regular = "\U000f04d7"; + public const string rectangle_landscape_sync_off_28_regular = "\U000f04d8"; + public const string rectangle_portrait_location_target_20_regular = "\uea0e"; + public const string recycle_20_regular = "\uef12"; + public const string recycle_32_regular = "\uef13"; + public const string remix_add_16_regular = "\U000f02c6"; + public const string remix_add_20_regular = "\U000f02c7"; + public const string remix_add_24_regular = "\U000f02c8"; + public const string remix_add_32_regular = "\U000f02c9"; + public const string remote_16_regular = "\uea0f"; + public const string remote_20_regular = "\uea10"; + public const string rename_16_regular = "\uf668"; + public const string rename_20_regular = "\uf669"; + public const string rename_24_regular = "\uf66a"; + public const string rename_28_regular = "\uf66b"; + public const string replay_16_regular = "\U000f060e"; + public const string replay_20_regular = "\uea12"; + public const string replay_24_regular = "\U000f060f"; + public const string replay_28_regular = "\U000f0610"; + public const string replay_32_regular = "\U000f0611"; + public const string resize_16_regular = "\U000f04b4"; + public const string resize_20_regular = "\uf66c"; + public const string resize_24_regular = "\uea13"; + public const string resize_28_regular = "\U000f04b5"; + public const string resize_32_regular = "\U000f04b6"; + public const string resize_48_regular = "\U000f04b7"; + public const string resize_image_20_regular = "\uea14"; + public const string resize_image_24_regular = "\uf66d"; + public const string resize_large_16_regular = "\uea15"; + public const string resize_large_20_regular = "\uea16"; + public const string resize_large_24_regular = "\uea17"; + public const string resize_small_16_regular = "\uea18"; + public const string resize_small_20_regular = "\uea19"; + public const string resize_small_24_regular = "\uea1a"; + public const string resize_table_20_regular = "\uea1b"; + public const string resize_table_24_regular = "\uf66e"; + public const string resize_video_20_regular = "\uea1c"; + public const string resize_video_24_regular = "\uf66f"; + public const string reward_12_regular = "\uef14"; + public const string reward_16_regular = "\uf671"; + public const string reward_20_regular = "\uf672"; + public const string reward_24_regular = "\uf673"; + public const string rewind_16_regular = "\uea1d"; + public const string rewind_20_regular = "\uf674"; + public const string rewind_24_regular = "\uf675"; + public const string rewind_28_regular = "\uea1e"; + public const string rhombus_16_regular = "\uea1f"; + public const string rhombus_20_regular = "\uea20"; + public const string rhombus_24_regular = "\uea21"; + public const string rhombus_28_regular = "\uea22"; + public const string rhombus_32_regular = "\uea23"; + public const string rhombus_48_regular = "\uea24"; + public const string ribbon_12_regular = "\uea25"; + public const string ribbon_16_regular = "\uea26"; + public const string ribbon_20_regular = "\uea27"; + public const string ribbon_24_regular = "\uea28"; + public const string ribbon_32_regular = "\uea29"; + public const string ribbon_add_20_regular = "\uf766"; + public const string ribbon_add_24_regular = "\uf767"; + public const string ribbon_off_12_regular = "\uea2a"; + public const string ribbon_off_16_regular = "\uea2b"; + public const string ribbon_off_20_regular = "\uea2c"; + public const string ribbon_off_24_regular = "\uea2d"; + public const string ribbon_off_32_regular = "\uea2e"; + public const string ribbon_star_20_regular = "\uea2f"; + public const string ribbon_star_24_regular = "\uea30"; + public const string road_20_regular = "\U000f0577"; + public const string road_24_regular = "\U000f0578"; + public const string road_cone_16_regular = "\uea31"; + public const string road_cone_20_regular = "\uea32"; + public const string road_cone_24_regular = "\uea33"; + public const string road_cone_28_regular = "\uea34"; + public const string road_cone_32_regular = "\uea35"; + public const string road_cone_48_regular = "\uea36"; + public const string rocket_16_regular = "\uf676"; + public const string rocket_20_regular = "\uf677"; + public const string rocket_24_regular = "\uf678"; + public const string rotate_left_20_regular = "\uea37"; + public const string rotate_left_24_regular = "\uea38"; + public const string rotate_right_20_regular = "\uea39"; + public const string rotate_right_24_regular = "\uea3a"; + public const string router_20_regular = "\uea3b"; + public const string router_24_regular = "\uf679"; + public const string row_triple_20_regular = "\uea3c"; + public const string row_triple_24_regular = "\uf67a"; + public const string rss_16_regular = "\U000f0396"; + public const string rss_20_regular = "\uea3d"; + public const string rss_24_regular = "\uea3e"; + public const string ruler_16_regular = "\uf67b"; + public const string ruler_20_regular = "\uf67c"; + public const string ruler_24_regular = "\uf67d"; + public const string ruler_28_regular = "\uf049"; + public const string ruler_32_regular = "\uf04a"; + public const string ruler_48_regular = "\uf04b"; + public const string run_16_regular = "\uea3f"; + public const string run_20_regular = "\uea40"; + public const string run_24_regular = "\uf67e"; + public const string run_28_regular = "\U000f05b6"; + public const string run_32_regular = "\U000f05b7"; + public const string run_48_regular = "\U000f05b8"; + public const string sanitize_20_regular = "\uea41"; + public const string sanitize_24_regular = "\uea42"; + public const string save_16_regular = "\uea43"; + public const string save_20_regular = "\uf67f"; + public const string save_24_regular = "\uf680"; + public const string save_28_regular = "\uea44"; + public const string save_32_regular = "\U000f0579"; + public const string save_arrow_right_20_regular = "\uea45"; + public const string save_arrow_right_24_regular = "\uea46"; + public const string save_copy_20_regular = "\uea47"; + public const string save_copy_24_regular = "\uf683"; + public const string save_edit_20_regular = "\uea48"; + public const string save_edit_24_regular = "\uea49"; + public const string save_image_20_regular = "\uea4a"; + public const string save_multiple_16_regular = "\uf1d2"; + public const string save_multiple_20_regular = "\uea4b"; + public const string save_multiple_24_regular = "\uea4c"; + public const string save_search_20_regular = "\uea4d"; + public const string save_sync_20_regular = "\uea4e"; + public const string savings_16_regular = "\uf684"; + public const string savings_20_regular = "\uf685"; + public const string savings_24_regular = "\uf686"; + public const string scale_fill_20_regular = "\uea4f"; + public const string scale_fill_24_regular = "\uf687"; + public const string scale_fit_16_regular = "\uf688"; + public const string scale_fit_20_regular = "\uf689"; + public const string scale_fit_24_regular = "\uf68a"; + public const string scales_20_regular = "\uea50"; + public const string scales_24_regular = "\uea51"; + public const string scales_32_regular = "\uea52"; + public const string scan_16_regular = "\uea53"; + public const string scan_20_regular = "\uea54"; + public const string scan_24_regular = "\uf68b"; + public const string scan_camera_16_regular = "\uea55"; + public const string scan_camera_20_regular = "\uea56"; + public const string scan_camera_24_regular = "\uea57"; + public const string scan_camera_28_regular = "\uea58"; + public const string scan_camera_48_regular = "\uea59"; + public const string scan_dash_12_regular = "\uea5a"; + public const string scan_dash_16_regular = "\uea5b"; + public const string scan_dash_20_regular = "\uea5c"; + public const string scan_dash_24_regular = "\uea5d"; + public const string scan_dash_28_regular = "\uea5e"; + public const string scan_dash_32_regular = "\uea5f"; + public const string scan_dash_48_regular = "\uea60"; + public const string scan_object_20_regular = "\uea61"; + public const string scan_object_24_regular = "\uea62"; + public const string scan_person_16_regular = "\U000f031a"; + public const string scan_person_20_regular = "\U000f031b"; + public const string scan_person_24_regular = "\U000f031c"; + public const string scan_person_28_regular = "\U000f031d"; + public const string scan_person_48_regular = "\U000f031e"; + public const string scan_qr_code_24_regular = "\uf04c"; + public const string scan_table_20_regular = "\uea63"; + public const string scan_table_24_regular = "\uea64"; + public const string scan_text_16_regular = "\uf08c"; + public const string scan_text_20_regular = "\uea65"; + public const string scan_text_24_regular = "\uea66"; + public const string scan_text_28_regular = "\uf08d"; + public const string scan_thumb_up_16_regular = "\uea67"; + public const string scan_thumb_up_20_regular = "\uea68"; + public const string scan_thumb_up_24_regular = "\uea69"; + public const string scan_thumb_up_28_regular = "\uea6a"; + public const string scan_thumb_up_48_regular = "\uea6b"; + public const string scan_thumb_up_off_16_regular = "\uea6c"; + public const string scan_thumb_up_off_20_regular = "\uea6d"; + public const string scan_thumb_up_off_24_regular = "\uea6e"; + public const string scan_thumb_up_off_28_regular = "\uea6f"; + public const string scan_thumb_up_off_48_regular = "\uea70"; + public const string scan_type_20_regular = "\uea71"; + public const string scan_type_24_regular = "\uea72"; + public const string scan_type_checkmark_20_regular = "\uea73"; + public const string scan_type_checkmark_24_regular = "\uea74"; + public const string scan_type_off_20_regular = "\uea75"; + public const string scan_type_off_24_regular = "\U000f0411"; + public const string scratchpad_20_regular = "\uea76"; + public const string scratchpad_24_regular = "\uf68c"; + public const string screen_cut_20_regular = "\uea77"; + public const string screen_person_20_regular = "\uea78"; + public const string screen_search_20_regular = "\uea79"; + public const string screen_search_24_regular = "\uea7a"; + public const string screenshot_16_regular = "\U000f0412"; + public const string screenshot_20_regular = "\uf68d"; + public const string screenshot_24_regular = "\uf68e"; + public const string screenshot_28_regular = "\U000f045c"; + public const string screenshot_record_16_regular = "\U000f0413"; + public const string screenshot_record_20_regular = "\U000f0414"; + public const string screenshot_record_24_regular = "\U000f0415"; + public const string screenshot_record_28_regular = "\U000f045d"; + public const string script_16_regular = "\uf1db"; + public const string script_20_regular = "\U000f0239"; + public const string script_24_regular = "\U000f023a"; + public const string script_32_regular = "\U000f023b"; + public const string search_12_regular = "\uea7b"; + public const string search_16_regular = "\uea7c"; + public const string search_20_regular = "\uf68f"; + public const string search_24_regular = "\uf690"; + public const string search_28_regular = "\uf691"; + public const string search_32_regular = "\uea7d"; + public const string search_48_regular = "\uea7e"; + public const string search_info_20_regular = "\uf692"; + public const string search_info_24_regular = "\uf693"; + public const string search_settings_20_regular = "\uea7f"; + public const string search_shield_20_regular = "\uea80"; + public const string search_sparkle_16_regular = "\U000f0635"; + public const string search_sparkle_20_regular = "\U000f0636"; + public const string search_sparkle_24_regular = "\U000f0637"; + public const string search_sparkle_28_regular = "\U000f0638"; + public const string search_sparkle_32_regular = "\U000f0639"; + public const string search_sparkle_48_regular = "\U000f063a"; + public const string search_square_16_regular = "\U000f05cc"; + public const string search_square_20_regular = "\uea81"; + public const string search_square_24_regular = "\uf694"; + public const string search_visual_16_regular = "\uea82"; + public const string search_visual_20_regular = "\uea83"; + public const string search_visual_24_regular = "\uea84"; + public const string seat_16_regular = "\U000f04d9"; + public const string seat_20_regular = "\U000f04da"; + public const string seat_24_regular = "\U000f04db"; + public const string seat_add_16_regular = "\U000f04dc"; + public const string seat_add_20_regular = "\U000f04dd"; + public const string seat_add_24_regular = "\U000f04de"; + public const string select_all_off_16_regular = "\U000f04b8"; + public const string select_all_off_20_regular = "\uea85"; + public const string select_all_off_24_regular = "\uf696"; + public const string select_all_on_16_regular = "\U000f04b9"; + public const string select_all_on_20_regular = "\uea86"; + public const string select_all_on_24_regular = "\uea87"; + public const string select_object_20_regular = "\uf697"; + public const string select_object_24_regular = "\uf698"; + public const string select_object_skew_20_regular = "\uea88"; + public const string select_object_skew_24_regular = "\uea89"; + public const string select_object_skew_dismiss_20_regular = "\uea8a"; + public const string select_object_skew_dismiss_24_regular = "\uea8b"; + public const string select_object_skew_edit_20_regular = "\uea8c"; + public const string select_object_skew_edit_24_regular = "\uea8d"; + public const string send_16_regular = "\uea8e"; + public const string send_20_regular = "\uf699"; + public const string send_24_regular = "\uf69a"; + public const string send_28_regular = "\uf69b"; + public const string send_32_regular = "\U000f0098"; + public const string send_48_regular = "\U000f0099"; + public const string send_beaker_16_regular = "\U000f00f3"; + public const string send_beaker_20_regular = "\U000f00f4"; + public const string send_beaker_24_regular = "\U000f00f5"; + public const string send_beaker_28_regular = "\U000f00f6"; + public const string send_beaker_32_regular = "\U000f00f7"; + public const string send_beaker_48_regular = "\U000f00f8"; + public const string send_clock_20_regular = "\uf69c"; + public const string send_clock_24_regular = "\uea8f"; + public const string send_copy_20_regular = "\uea90"; + public const string send_copy_24_regular = "\uf69d"; + public const string send_person_16_regular = "\U000f0612"; + public const string send_person_20_regular = "\U000f0613"; + public const string send_person_24_regular = "\U000f0614"; + public const string serial_port_16_regular = "\uf6a1"; + public const string serial_port_20_regular = "\uf6a2"; + public const string serial_port_24_regular = "\uf6a3"; + public const string server_12_regular = "\U000f0360"; + public const string server_16_regular = "\uf1dc"; + public const string server_20_regular = "\uf769"; + public const string server_24_regular = "\uf76c"; + public const string server_link_16_regular = "\U000f032b"; + public const string server_link_20_regular = "\U000f032c"; + public const string server_link_24_regular = "\U000f023c"; + public const string server_multiple_20_regular = "\uea91"; + public const string server_play_20_regular = "\uea92"; + public const string server_surface_16_regular = "\uf1dd"; + public const string server_surface_multiple_16_regular = "\uf206"; + public const string service_bell_16_regular = "\U000f009a"; + public const string service_bell_20_regular = "\uea93"; + public const string service_bell_24_regular = "\uf6a4"; + public const string settings_16_regular = "\uf6a8"; + public const string settings_20_regular = "\uf6a9"; + public const string settings_24_regular = "\uf6aa"; + public const string settings_28_regular = "\uf6ab"; + public const string settings_32_regular = "\uea94"; + public const string settings_48_regular = "\uea95"; + public const string settings_chat_16_regular = "\U000f05cd"; + public const string settings_chat_20_regular = "\uea96"; + public const string settings_chat_24_regular = "\uea97"; + public const string settings_cog_multiple_20_regular = "\U000f013c"; + public const string settings_cog_multiple_24_regular = "\U000f013d"; + public const string shape_exclude_16_regular = "\uea98"; + public const string shape_exclude_20_regular = "\uea99"; + public const string shape_exclude_24_regular = "\uea9a"; + public const string shape_intersect_16_regular = "\uea9b"; + public const string shape_intersect_20_regular = "\uea9c"; + public const string shape_intersect_24_regular = "\uea9d"; + public const string shape_organic_16_regular = "\U000f0397"; + public const string shape_organic_20_regular = "\U000f0398"; + public const string shape_organic_24_regular = "\U000f0399"; + public const string shape_organic_28_regular = "\U000f039a"; + public const string shape_organic_32_regular = "\U000f039b"; + public const string shape_organic_48_regular = "\U000f039c"; + public const string shape_subtract_16_regular = "\uea9e"; + public const string shape_subtract_20_regular = "\uea9f"; + public const string shape_subtract_24_regular = "\ueaa0"; + public const string shape_union_16_regular = "\ueaa1"; + public const string shape_union_20_regular = "\ueaa2"; + public const string shape_union_24_regular = "\ueaa3"; + public const string shapes_16_regular = "\uf6ac"; + public const string shapes_20_regular = "\uf6ad"; + public const string shapes_24_regular = "\uf6ae"; + public const string shapes_28_regular = "\ueaa4"; + public const string shapes_32_regular = "\U000f03c3"; + public const string shapes_48_regular = "\ueaa5"; + public const string share_16_regular = "\ueaa6"; + public const string share_20_regular = "\uf6af"; + public const string share_24_regular = "\uf6b0"; + public const string share_28_regular = "\ueaa7"; + public const string share_48_regular = "\ueaa8"; + public const string share_android_16_regular = "\U000f04ba"; + public const string share_android_20_regular = "\uf6b1"; + public const string share_android_24_regular = "\uf6b2"; + public const string share_android_32_regular = "\U000f04bb"; + public const string share_close_tray_20_regular = "\ueaa9"; + public const string share_close_tray_24_regular = "\uf6b3"; + public const string share_ios_20_regular = "\uf6b5"; + public const string share_ios_24_regular = "\uf6b6"; + public const string share_ios_28_regular = "\uf6b7"; + public const string share_ios_48_regular = "\uf6b8"; + public const string share_multiple_16_regular = "\U000f05ce"; + public const string share_multiple_20_regular = "\U000f05cf"; + public const string share_multiple_24_regular = "\U000f05d0"; + public const string share_screen_person_16_regular = "\ueaaa"; + public const string share_screen_person_24_regular = "\ueaac"; + public const string share_screen_person_28_regular = "\ueaad"; + public const string share_screen_person_overlay_16_regular = "\ueaae"; + public const string share_screen_person_overlay_20_regular = "\ueaaf"; + public const string share_screen_person_overlay_24_regular = "\ueab0"; + public const string share_screen_person_overlay_28_regular = "\ueab1"; + public const string share_screen_person_overlay_inside_16_regular = "\ueab2"; + public const string share_screen_person_overlay_inside_20_regular = "\ueab3"; + public const string share_screen_person_overlay_inside_24_regular = "\ueab4"; + public const string share_screen_person_overlay_inside_28_regular = "\ueab5"; + public const string share_screen_person_p_16_regular = "\ueab6"; + public const string share_screen_person_p_20_regular = "\ueab7"; + public const string share_screen_person_p_24_regular = "\ueab8"; + public const string share_screen_person_p_28_regular = "\ueab9"; + public const string share_screen_start_20_regular = "\ueaba"; + public const string share_screen_start_24_regular = "\ueabb"; + public const string share_screen_start_28_regular = "\ueabc"; + public const string share_screen_start_48_regular = "\ueabd"; + public const string share_screen_stop_16_regular = "\ueabe"; + public const string share_screen_stop_20_regular = "\ueabf"; + public const string share_screen_stop_24_regular = "\ueac0"; + public const string share_screen_stop_28_regular = "\ueac1"; + public const string share_screen_stop_48_regular = "\ueac2"; + public const string shield_12_regular = "\uf21f"; + public const string shield_16_regular = "\ueac3"; + public const string shield_20_regular = "\uf6be"; + public const string shield_24_regular = "\uf6bf"; + public const string shield_28_regular = "\ueac4"; + public const string shield_32_regular = "\uef20"; + public const string shield_48_regular = "\ueac5"; + public const string shield_add_16_regular = "\uefa8"; + public const string shield_add_20_regular = "\uefa9"; + public const string shield_add_24_regular = "\uefaa"; + public const string shield_badge_20_regular = "\uf76d"; + public const string shield_badge_24_regular = "\ueac6"; + public const string shield_checkmark_16_regular = "\ueac7"; + public const string shield_checkmark_20_regular = "\ueac8"; + public const string shield_checkmark_24_regular = "\ueac9"; + public const string shield_checkmark_28_regular = "\ueaca"; + public const string shield_checkmark_48_regular = "\ueacb"; + public const string shield_dismiss_16_regular = "\ueacc"; + public const string shield_dismiss_20_regular = "\uf6c0"; + public const string shield_dismiss_24_regular = "\uf6c1"; + public const string shield_dismiss_shield_20_regular = "\ueacd"; + public const string shield_error_16_regular = "\ueace"; + public const string shield_error_20_regular = "\uf6c2"; + public const string shield_error_24_regular = "\uf6c3"; + public const string shield_globe_16_regular = "\ueeb0"; + public const string shield_globe_20_regular = "\ueeb1"; + public const string shield_globe_24_regular = "\ueeb2"; + public const string shield_keyhole_16_regular = "\uf6c4"; + public const string shield_keyhole_20_regular = "\uf6c5"; + public const string shield_keyhole_24_regular = "\uf6c6"; + public const string shield_lock_16_regular = "\ueacf"; + public const string shield_lock_20_regular = "\uead0"; + public const string shield_lock_24_regular = "\uead1"; + public const string shield_lock_28_regular = "\uead2"; + public const string shield_lock_48_regular = "\uead3"; + public const string shield_person_20_regular = "\uead4"; + public const string shield_person_add_20_regular = "\uead5"; + public const string shield_prohibited_20_regular = "\uf6c7"; + public const string shield_prohibited_24_regular = "\uf6c8"; + public const string shield_question_16_regular = "\uef21"; + public const string shield_question_20_regular = "\uef22"; + public const string shield_question_24_regular = "\uef23"; + public const string shield_question_32_regular = "\uef24"; + public const string shield_task_16_regular = "\uead6"; + public const string shield_task_20_regular = "\uead7"; + public const string shield_task_24_regular = "\uead8"; + public const string shield_task_28_regular = "\uead9"; + public const string shield_task_48_regular = "\ueada"; + public const string shifts_16_regular = "\ueadb"; + public const string shifts_20_regular = "\ueadc"; + public const string shifts_24_regular = "\uf6c9"; + public const string shifts_28_regular = "\uf6cc"; + public const string shifts_30_minutes_20_regular = "\ueadd"; + public const string shifts_30_minutes_24_regular = "\uf6cd"; + public const string shifts_32_regular = "\ueade"; + public const string shifts_activity_16_regular = "\U000f009b"; + public const string shifts_activity_20_regular = "\uf6ce"; + public const string shifts_activity_24_regular = "\uf6cf"; + public const string shifts_add_20_regular = "\ueadf"; + public const string shifts_add_24_regular = "\uf6d0"; + public const string shifts_availability_20_regular = "\ueae0"; + public const string shifts_availability_24_regular = "\uf6d2"; + public const string shifts_checkmark_20_regular = "\ueae1"; + public const string shifts_checkmark_24_regular = "\ueae2"; + public const string shifts_day_20_regular = "\ueae3"; + public const string shifts_day_24_regular = "\ueae4"; + public const string shifts_open_20_regular = "\uf6d4"; + public const string shifts_open_24_regular = "\uf6d5"; + public const string shifts_prohibited_20_regular = "\ueae5"; + public const string shifts_prohibited_24_regular = "\ueae6"; + public const string shifts_question_mark_20_regular = "\ueae7"; + public const string shifts_question_mark_24_regular = "\ueae8"; + public const string shifts_team_20_regular = "\ueae9"; + public const string shifts_team_24_regular = "\uf6d7"; + public const string shopping_bag_16_regular = "\uf76e"; + public const string shopping_bag_20_regular = "\uf76f"; + public const string shopping_bag_24_regular = "\uf770"; + public const string shopping_bag_add_16_regular = "\U000f0595"; + public const string shopping_bag_add_20_regular = "\U000f04f8"; + public const string shopping_bag_add_24_regular = "\U000f04f9"; + public const string shopping_bag_arrow_left_20_regular = "\ueaea"; + public const string shopping_bag_arrow_left_24_regular = "\ueaeb"; + public const string shopping_bag_dismiss_20_regular = "\ueaec"; + public const string shopping_bag_dismiss_24_regular = "\ueaed"; + public const string shopping_bag_pause_20_regular = "\ueaee"; + public const string shopping_bag_pause_24_regular = "\ueaef"; + public const string shopping_bag_percent_20_regular = "\ueaf0"; + public const string shopping_bag_percent_24_regular = "\ueaf1"; + public const string shopping_bag_play_20_regular = "\ueaf2"; + public const string shopping_bag_play_24_regular = "\ueaf3"; + public const string shopping_bag_tag_20_regular = "\ueaf4"; + public const string shopping_bag_tag_24_regular = "\ueaf5"; + public const string shortpick_20_regular = "\ueaf6"; + public const string shortpick_24_regular = "\ueaf7"; + public const string showerhead_20_regular = "\uf04d"; + public const string showerhead_24_regular = "\uf04e"; + public const string showerhead_32_regular = "\uf04f"; + public const string sidebar_search_ltr_20_regular = "\ueaf8"; + public const string sidebar_search_rtl_20_regular = "\ueaf9"; + public const string sign_out_20_regular = "\ueafa"; + public const string sign_out_24_regular = "\uf6da"; + public const string signature_16_regular = "\uf6db"; + public const string signature_20_regular = "\uf6dc"; + public const string signature_24_regular = "\uf6dd"; + public const string signature_28_regular = "\uf6de"; + public const string signature_32_regular = "\U000f023d"; + public const string sim_16_regular = "\uf6e2"; + public const string sim_20_regular = "\uf6e3"; + public const string sim_24_regular = "\uf6e4"; + public const string skip_back_10_20_regular = "\ueafb"; + public const string skip_back_10_24_regular = "\ueafc"; + public const string skip_back_10_28_regular = "\ueafd"; + public const string skip_back_10_32_regular = "\ueafe"; + public const string skip_back_10_48_regular = "\ueaff"; + public const string skip_forward_10_20_regular = "\ueb00"; + public const string skip_forward_10_24_regular = "\ueb01"; + public const string skip_forward_10_28_regular = "\ueb02"; + public const string skip_forward_10_32_regular = "\ueb03"; + public const string skip_forward_10_48_regular = "\ueb04"; + public const string skip_forward_30_20_regular = "\ueb05"; + public const string skip_forward_30_24_regular = "\ueb06"; + public const string skip_forward_30_28_regular = "\ueb07"; + public const string skip_forward_30_32_regular = "\ueb08"; + public const string skip_forward_30_48_regular = "\ueb09"; + public const string skip_forward_tab_20_regular = "\ueb0a"; + public const string skip_forward_tab_24_regular = "\ueb0b"; + public const string slash_forward_12_regular = "\U000f009c"; + public const string slash_forward_16_regular = "\U000f009d"; + public const string slash_forward_20_regular = "\U000f009e"; + public const string slash_forward_24_regular = "\U000f009f"; + public const string sleep_20_regular = "\ueb0c"; + public const string sleep_24_regular = "\uf6e5"; + public const string slide_add_16_regular = "\ueb0d"; + public const string slide_add_20_regular = "\ueb0e"; + public const string slide_add_24_regular = "\uf6e6"; + public const string slide_add_28_regular = "\ueb0f"; + public const string slide_add_32_regular = "\ueb10"; + public const string slide_add_48_regular = "\ueb11"; + public const string slide_arrow_right_20_regular = "\ueb12"; + public const string slide_arrow_right_24_regular = "\ueb13"; + public const string slide_content_24_regular = "\U000f013e"; + public const string slide_eraser_16_regular = "\ueb14"; + public const string slide_eraser_20_regular = "\ueb15"; + public const string slide_eraser_24_regular = "\ueb16"; + public const string slide_grid_20_regular = "\ueb17"; + public const string slide_grid_24_regular = "\ueb18"; + public const string slide_hide_20_regular = "\ueb19"; + public const string slide_hide_24_regular = "\uf6e8"; + public const string slide_layout_20_regular = "\uf6e9"; + public const string slide_layout_24_regular = "\uf6ea"; + public const string slide_link_20_regular = "\uef15"; + public const string slide_link_24_regular = "\uef16"; + public const string slide_microphone_20_regular = "\ueb1a"; + public const string slide_microphone_24_regular = "\uf6eb"; + public const string slide_microphone_32_regular = "\ueb1b"; + public const string slide_multiple_20_regular = "\ueb1c"; + public const string slide_multiple_24_regular = "\ueb1d"; + public const string slide_multiple_arrow_right_20_regular = "\ueb1e"; + public const string slide_multiple_arrow_right_24_regular = "\ueb1f"; + public const string slide_multiple_search_20_regular = "\uf773"; + public const string slide_multiple_search_24_regular = "\uf774"; + public const string slide_play_20_regular = "\U000f05d1"; + public const string slide_play_24_regular = "\U000f05d2"; + public const string slide_record_16_regular = "\U000f013f"; + public const string slide_record_20_regular = "\U000f0140"; + public const string slide_record_24_regular = "\U000f0141"; + public const string slide_record_28_regular = "\U000f0142"; + public const string slide_record_48_regular = "\U000f0143"; + public const string slide_search_16_regular = "\U000f0416"; + public const string slide_search_20_regular = "\ueb20"; + public const string slide_search_24_regular = "\ueb21"; + public const string slide_search_28_regular = "\ueb22"; + public const string slide_search_32_regular = "\U000f0417"; + public const string slide_settings_20_regular = "\ueb23"; + public const string slide_settings_24_regular = "\ueb24"; + public const string slide_size_20_regular = "\ueb25"; + public const string slide_size_24_regular = "\ueb26"; + public const string slide_text_16_regular = "\ueb27"; + public const string slide_text_20_regular = "\ueb28"; + public const string slide_text_24_regular = "\uf6ec"; + public const string slide_text_28_regular = "\ueb29"; + public const string slide_text_48_regular = "\ueb2a"; + public const string slide_text_call_16_regular = "\U000f063b"; + public const string slide_text_call_20_regular = "\U000f063c"; + public const string slide_text_call_24_regular = "\U000f063d"; + public const string slide_text_call_28_regular = "\U000f063e"; + public const string slide_text_call_48_regular = "\U000f063f"; + public const string slide_text_cursor_20_regular = "\U000f0640"; + public const string slide_text_cursor_24_regular = "\U000f0641"; + public const string slide_text_edit_16_regular = "\U000f03c4"; + public const string slide_text_edit_20_regular = "\U000f03c5"; + public const string slide_text_edit_24_regular = "\U000f03c6"; + public const string slide_text_edit_28_regular = "\U000f03c7"; + public const string slide_text_multiple_16_regular = "\uf050"; + public const string slide_text_multiple_20_regular = "\uf051"; + public const string slide_text_multiple_24_regular = "\uf052"; + public const string slide_text_multiple_32_regular = "\uf053"; + public const string slide_text_person_16_regular = "\uf22f"; + public const string slide_text_person_20_regular = "\uf25b"; + public const string slide_text_person_24_regular = "\uf25c"; + public const string slide_text_person_28_regular = "\uf25d"; + public const string slide_text_person_32_regular = "\uf25e"; + public const string slide_text_person_48_regular = "\uf2d9"; + public const string slide_text_sparkle_16_regular = "\U000f00f9"; + public const string slide_text_sparkle_20_regular = "\U000f00fa"; + public const string slide_text_sparkle_24_regular = "\U000f00fb"; + public const string slide_text_sparkle_28_regular = "\U000f00fc"; + public const string slide_text_sparkle_32_regular = "\U000f00fd"; + public const string slide_text_sparkle_48_regular = "\U000f00fe"; + public const string slide_transition_20_regular = "\ueb2b"; + public const string slide_transition_24_regular = "\ueb2c"; + public const string smartwatch_20_regular = "\uf775"; + public const string smartwatch_24_regular = "\uf776"; + public const string smartwatch_dot_20_regular = "\uf786"; + public const string smartwatch_dot_24_regular = "\uf787"; + public const string snooze_16_regular = "\uf6f4"; + public const string snooze_20_regular = "\ueb2d"; + public const string snooze_24_regular = "\uf6f5"; + public const string sound_source_20_regular = "\ueb2e"; + public const string sound_source_24_regular = "\uf6f6"; + public const string sound_source_28_regular = "\uf6f7"; + public const string sound_wave_circle_20_regular = "\ueb2f"; + public const string sound_wave_circle_24_regular = "\ueb30"; + public const string space_3d_16_regular = "\U000f00a0"; + public const string space_3d_20_regular = "\U000f00a1"; + public const string space_3d_24_regular = "\U000f00a2"; + public const string space_3d_28_regular = "\U000f00a3"; + public const string space_3d_32_regular = "\U000f00a4"; + public const string space_3d_48_regular = "\U000f00a5"; + public const string spacebar_20_regular = "\ueb31"; + public const string spacebar_24_regular = "\uf6f8"; + public const string sparkle_16_regular = "\ueb32"; + public const string sparkle_20_regular = "\ueb33"; + public const string sparkle_24_regular = "\ueb34"; + public const string sparkle_28_regular = "\ueb35"; + public const string sparkle_32_regular = "\U000f00a6"; + public const string sparkle_48_regular = "\ueb36"; + public const string sparkle_circle_16_regular = "\U000f00a7"; + public const string sparkle_circle_20_regular = "\uefab"; + public const string sparkle_circle_24_regular = "\uefac"; + public const string sparkle_circle_28_regular = "\U000f00a8"; + public const string sparkle_circle_32_regular = "\U000f00a9"; + public const string sparkle_circle_48_regular = "\U000f00aa"; + public const string spatula_spoon_16_regular = "\U000f0596"; + public const string spatula_spoon_20_regular = "\U000f0597"; + public const string spatula_spoon_24_regular = "\U000f0598"; + public const string spatula_spoon_28_regular = "\U000f0599"; + public const string spatula_spoon_32_regular = "\U000f059a"; + public const string spatula_spoon_48_regular = "\U000f059b"; + public const string speaker_0_16_regular = "\ueb37"; + public const string speaker_0_20_regular = "\ueb38"; + public const string speaker_0_24_regular = "\uf6f9"; + public const string speaker_0_28_regular = "\ueb39"; + public const string speaker_0_32_regular = "\ueb3a"; + public const string speaker_0_48_regular = "\ueb3b"; + public const string speaker_1_16_regular = "\ueb3c"; + public const string speaker_1_20_regular = "\ueb3d"; + public const string speaker_1_24_regular = "\uf6fb"; + public const string speaker_1_28_regular = "\ueb3e"; + public const string speaker_1_32_regular = "\ueb3f"; + public const string speaker_1_48_regular = "\ueb40"; + public const string speaker_2_16_regular = "\ueb41"; + public const string speaker_2_20_regular = "\ueb42"; + public const string speaker_2_24_regular = "\ueb43"; + public const string speaker_2_28_regular = "\ueb44"; + public const string speaker_2_32_regular = "\ueb45"; + public const string speaker_2_48_regular = "\ueb46"; + public const string speaker_bluetooth_20_regular = "\ueb47"; + public const string speaker_bluetooth_24_regular = "\uf6ff"; + public const string speaker_bluetooth_28_regular = "\ueb48"; + public const string speaker_box_16_regular = "\U000f04df"; + public const string speaker_box_20_regular = "\U000f04e0"; + public const string speaker_box_24_regular = "\U000f04e1"; + public const string speaker_edit_16_regular = "\uf700"; + public const string speaker_edit_20_regular = "\uf701"; + public const string speaker_edit_24_regular = "\uf702"; + public const string speaker_mute_16_regular = "\ueb49"; + public const string speaker_mute_20_regular = "\ueb4a"; + public const string speaker_mute_24_regular = "\ueb4b"; + public const string speaker_mute_28_regular = "\ueb4c"; + public const string speaker_mute_32_regular = "\U000f023e"; + public const string speaker_mute_48_regular = "\ueb4d"; + public const string speaker_off_16_regular = "\ueb4e"; + public const string speaker_off_20_regular = "\ueb4f"; + public const string speaker_off_24_regular = "\uf706"; + public const string speaker_off_28_regular = "\uf707"; + public const string speaker_off_48_regular = "\ueb50"; + public const string speaker_settings_20_regular = "\ueb51"; + public const string speaker_settings_24_regular = "\uf708"; + public const string speaker_settings_28_regular = "\ueb52"; + public const string speaker_usb_20_regular = "\ueb53"; + public const string speaker_usb_24_regular = "\ueb54"; + public const string speaker_usb_28_regular = "\ueb55"; + public const string spinner_ios_16_regular = "\U000f01f7"; + public const string spinner_ios_20_regular = "\uf709"; + public const string split_hint_20_regular = "\ueb56"; + public const string split_horizontal_12_regular = "\ueb57"; + public const string split_horizontal_16_regular = "\ueb58"; + public const string split_horizontal_20_regular = "\ueb59"; + public const string split_horizontal_24_regular = "\ueb5a"; + public const string split_horizontal_28_regular = "\ueb5b"; + public const string split_horizontal_32_regular = "\ueb5c"; + public const string split_horizontal_48_regular = "\ueb5d"; + public const string split_vertical_12_regular = "\ueb5e"; + public const string split_vertical_16_regular = "\ueb5f"; + public const string split_vertical_20_regular = "\ueb60"; + public const string split_vertical_24_regular = "\ueb61"; + public const string split_vertical_28_regular = "\ueb62"; + public const string split_vertical_32_regular = "\ueb63"; + public const string split_vertical_48_regular = "\ueb64"; + public const string sport_16_regular = "\ueb65"; + public const string sport_20_regular = "\ueb66"; + public const string sport_24_regular = "\ueb67"; + public const string sport_american_football_20_regular = "\ueb68"; + public const string sport_american_football_24_regular = "\ueb69"; + public const string sport_baseball_20_regular = "\ueb6a"; + public const string sport_baseball_24_regular = "\ueb6b"; + public const string sport_basketball_20_regular = "\ueb6c"; + public const string sport_basketball_24_regular = "\ueb6d"; + public const string sport_hockey_20_regular = "\ueb6e"; + public const string sport_hockey_24_regular = "\ueb6f"; + public const string sport_soccer_16_regular = "\ueb70"; + public const string sport_soccer_20_regular = "\ueb71"; + public const string sport_soccer_24_regular = "\ueb72"; + public const string spray_can_16_regular = "\uf2da"; + public const string square_28_regular = "\ueb77"; + public const string square_32_regular = "\ueb78"; + public const string square_48_regular = "\ueb79"; + public const string square_add_16_regular = "\ueb7a"; + public const string square_add_20_regular = "\ueb7b"; + public const string square_arrow_forward_16_regular = "\ueb7c"; + public const string square_arrow_forward_20_regular = "\ueb7d"; + public const string square_arrow_forward_24_regular = "\ueb7e"; + public const string square_arrow_forward_28_regular = "\ueb7f"; + public const string square_arrow_forward_32_regular = "\ueb80"; + public const string square_arrow_forward_48_regular = "\ueb81"; + public const string square_dismiss_16_regular = "\ueb82"; + public const string square_dismiss_20_regular = "\ueb83"; + public const string square_dovetail_joint_12_regular = "\U000f0615"; + public const string square_dovetail_joint_16_regular = "\U000f0616"; + public const string square_dovetail_joint_20_regular = "\U000f0617"; + public const string square_dovetail_joint_24_regular = "\U000f0618"; + public const string square_dovetail_joint_28_regular = "\U000f0619"; + public const string square_dovetail_joint_32_regular = "\U000f061a"; + public const string square_dovetail_joint_48_regular = "\U000f061b"; + public const string square_eraser_20_regular = "\ueb84"; + public const string square_hint_16_regular = "\ueb85"; + public const string square_hint_20_regular = "\ueb86"; + public const string square_hint_24_regular = "\ueb87"; + public const string square_hint_28_regular = "\ueb88"; + public const string square_hint_32_regular = "\ueb89"; + public const string square_hint_48_regular = "\ueb8a"; + public const string square_hint_apps_20_regular = "\ueb8b"; + public const string square_hint_apps_24_regular = "\ueb8c"; + public const string square_hint_arrow_back_16_regular = "\ueb8d"; + public const string square_hint_arrow_back_20_regular = "\ueb8e"; + public const string square_hint_hexagon_12_regular = "\U000f0361"; + public const string square_hint_hexagon_16_regular = "\U000f0362"; + public const string square_hint_hexagon_20_regular = "\U000f0363"; + public const string square_hint_hexagon_24_regular = "\U000f0364"; + public const string square_hint_hexagon_28_regular = "\U000f0365"; + public const string square_hint_hexagon_32_regular = "\U000f0366"; + public const string square_hint_hexagon_48_regular = "\U000f0367"; + public const string square_hint_sparkles_16_regular = "\ueb8f"; + public const string square_hint_sparkles_20_regular = "\ueb90"; + public const string square_hint_sparkles_24_regular = "\ueb91"; + public const string square_hint_sparkles_28_regular = "\ueb92"; + public const string square_hint_sparkles_32_regular = "\ueb93"; + public const string square_hint_sparkles_48_regular = "\ueb94"; + public const string square_multiple_16_regular = "\ueb95"; + public const string square_multiple_20_regular = "\ueb96"; + public const string square_multiple_24_regular = "\uf78c"; + public const string square_multiple_28_regular = "\ueeb3"; + public const string square_multiple_32_regular = "\ueeb4"; + public const string square_multiple_48_regular = "\ueeb5"; + public const string square_shadow_12_regular = "\ueb97"; + public const string square_shadow_20_regular = "\ueb98"; + public const string squares_nested_20_regular = "\ueb99"; + public const string stack_16_regular = "\uf78d"; + public const string stack_20_regular = "\uf792"; + public const string stack_24_regular = "\uf7a6"; + public const string stack_32_regular = "\ueedf"; + public const string stack_add_20_regular = "\U000f0144"; + public const string stack_add_24_regular = "\U000f0145"; + public const string stack_arrow_forward_20_regular = "\ueb9a"; + public const string stack_arrow_forward_24_regular = "\ueb9b"; + public const string stack_star_16_regular = "\ueb9c"; + public const string stack_star_20_regular = "\ueb9d"; + public const string stack_star_24_regular = "\ueb9e"; + public const string stack_vertical_20_regular = "\U000f00ff"; + public const string stack_vertical_24_regular = "\U000f0100"; + public const string star_12_regular = "\uf70d"; + public const string star_16_regular = "\uf70e"; + public const string star_20_regular = "\uf70f"; + public const string star_24_regular = "\uf710"; + public const string star_28_regular = "\uf711"; + public const string star_32_regular = "\U000f045e"; + public const string star_48_regular = "\ueb9f"; + public const string star_add_16_regular = "\uf712"; + public const string star_add_20_regular = "\uf713"; + public const string star_add_24_regular = "\uf714"; + public const string star_add_28_regular = "\ueba0"; + public const string star_arrow_back_16_regular = "\U000f00ab"; + public const string star_arrow_back_20_regular = "\U000f00ac"; + public const string star_arrow_back_24_regular = "\U000f00ad"; + public const string star_arrow_right_end_20_regular = "\ueba1"; + public const string star_arrow_right_end_24_regular = "\ueba2"; + public const string star_arrow_right_start_20_regular = "\ueba3"; + public const string star_arrow_right_start_24_regular = "\uf716"; + public const string star_checkmark_16_regular = "\U000f0146"; + public const string star_checkmark_20_regular = "\U000f0147"; + public const string star_checkmark_24_regular = "\U000f0148"; + public const string star_checkmark_28_regular = "\U000f0149"; + public const string star_dismiss_16_regular = "\ueba4"; + public const string star_dismiss_20_regular = "\ueba5"; + public const string star_dismiss_24_regular = "\ueba6"; + public const string star_dismiss_28_regular = "\ueba7"; + public const string star_edit_20_regular = "\ueba8"; + public const string star_edit_24_regular = "\ueba9"; + public const string star_emphasis_16_regular = "\U000f01f8"; + public const string star_emphasis_20_regular = "\uebaa"; + public const string star_emphasis_24_regular = "\uf717"; + public const string star_emphasis_32_regular = "\uebab"; + public const string star_half_12_regular = "\uebac"; + public const string star_half_16_regular = "\uebad"; + public const string star_half_20_regular = "\uebae"; + public const string star_half_24_regular = "\uebaf"; + public const string star_half_28_regular = "\uebb0"; + public const string star_line_horizontal_3_16_regular = "\uebb1"; + public const string star_line_horizontal_3_20_regular = "\uebb2"; + public const string star_line_horizontal_3_24_regular = "\uebb3"; + public const string star_off_12_regular = "\uf718"; + public const string star_off_16_regular = "\uf719"; + public const string star_off_20_regular = "\uf71a"; + public const string star_off_24_regular = "\uf71b"; + public const string star_off_28_regular = "\uf71c"; + public const string star_one_quarter_12_regular = "\uebb4"; + public const string star_one_quarter_16_regular = "\uebb5"; + public const string star_one_quarter_20_regular = "\uebb6"; + public const string star_one_quarter_24_regular = "\uebb7"; + public const string star_one_quarter_28_regular = "\uebb8"; + public const string star_prohibited_16_regular = "\uf71d"; + public const string star_prohibited_20_regular = "\uf71e"; + public const string star_prohibited_24_regular = "\uf71f"; + public const string star_settings_20_regular = "\uebb9"; + public const string star_settings_24_regular = "\uf720"; + public const string star_three_quarter_12_regular = "\uebba"; + public const string star_three_quarter_16_regular = "\uebbb"; + public const string star_three_quarter_20_regular = "\uebbc"; + public const string star_three_quarter_24_regular = "\uebbd"; + public const string star_three_quarter_28_regular = "\uebbe"; + public const string status_12_regular = "\uf001"; + public const string status_16_regular = "\uf721"; + public const string status_20_regular = "\uf722"; + public const string status_24_regular = "\uf723"; + public const string status_28_regular = "\U000f051d"; + public const string status_32_regular = "\U000f051e"; + public const string status_48_regular = "\U000f051f"; + public const string step_16_regular = "\uf2e7"; + public const string step_20_regular = "\U000f032d"; + public const string step_24_regular = "\U000f032e"; + public const string steps_16_regular = "\uf2e8"; + public const string steps_20_regular = "\uebbf"; + public const string steps_24_regular = "\uebc0"; + public const string stethoscope_20_regular = "\uf724"; + public const string stethoscope_24_regular = "\uf725"; + public const string sticker_12_regular = "\uebc1"; + public const string sticker_20_regular = "\uf726"; + public const string sticker_24_regular = "\uf727"; + public const string sticker_add_20_regular = "\uebc2"; + public const string sticker_add_24_regular = "\uf728"; + public const string stop_16_regular = "\uf729"; + public const string stop_20_regular = "\uf72a"; + public const string stop_24_regular = "\uf72b"; + public const string storage_16_regular = "\U000f0544"; + public const string storage_20_regular = "\uebc3"; + public const string storage_24_regular = "\uf72c"; + public const string storage_28_regular = "\U000f0545"; + public const string storage_32_regular = "\U000f0546"; + public const string storage_48_regular = "\U000f0547"; + public const string store_microsoft_16_regular = "\uf730"; + public const string store_microsoft_20_regular = "\uf731"; + public const string store_microsoft_24_regular = "\uf732"; + public const string stream_20_regular = "\uebc4"; + public const string stream_24_regular = "\uebc5"; + public const string stream_32_regular = "\U000f014a"; + public const string stream_48_regular = "\U000f027c"; + public const string stream_input_20_regular = "\uebc6"; + public const string stream_input_output_20_regular = "\uebc7"; + public const string stream_output_20_regular = "\uebc8"; + public const string street_sign_20_regular = "\U000f04fa"; + public const string street_sign_24_regular = "\U000f04fb"; + public const string style_guide_20_regular = "\uebc9"; + public const string style_guide_24_regular = "\uf733"; + public const string sub_grid_20_regular = "\uebca"; + public const string sub_grid_24_regular = "\uf734"; + public const string subtitles_16_regular = "\uebcb"; + public const string subtitles_20_regular = "\uebcc"; + public const string subtitles_24_regular = "\uebcd"; + public const string subtract_12_regular = "\uebce"; + public const string subtract_16_regular = "\uebcf"; + public const string subtract_20_regular = "\uebd0"; + public const string subtract_24_regular = "\uebd1"; + public const string subtract_28_regular = "\uebd2"; + public const string subtract_48_regular = "\uebd3"; + public const string subtract_circle_12_regular = "\uebd4"; + public const string subtract_circle_16_regular = "\uf7a7"; + public const string subtract_circle_20_regular = "\uf7b0"; + public const string subtract_circle_24_regular = "\uf7b1"; + public const string subtract_circle_28_regular = "\uf7b4"; + public const string subtract_circle_32_regular = "\uf7b5"; + public const string subtract_circle_48_regular = "\U000f03c8"; + public const string subtract_circle_arrow_back_16_regular = "\uebd5"; + public const string subtract_circle_arrow_back_20_regular = "\uebd6"; + public const string subtract_circle_arrow_forward_16_regular = "\uebd7"; + public const string subtract_circle_arrow_forward_20_regular = "\uebd8"; + public const string subtract_parentheses_16_regular = "\U000f03c9"; + public const string subtract_parentheses_20_regular = "\U000f03ca"; + public const string subtract_parentheses_24_regular = "\U000f03cb"; + public const string subtract_parentheses_28_regular = "\U000f03cc"; + public const string subtract_parentheses_32_regular = "\U000f03cd"; + public const string subtract_parentheses_48_regular = "\U000f03ce"; + public const string subtract_square_16_regular = "\U000f014b"; + public const string subtract_square_20_regular = "\uebd9"; + public const string subtract_square_24_regular = "\uebda"; + public const string subtract_square_multiple_16_regular = "\uebdb"; + public const string subtract_square_multiple_20_regular = "\uebdc"; + public const string surface_earbuds_20_regular = "\uf738"; + public const string surface_earbuds_24_regular = "\uf739"; + public const string surface_hub_20_regular = "\uf73a"; + public const string surface_hub_24_regular = "\uf73b"; + public const string swimming_pool_20_regular = "\uf054"; + public const string swimming_pool_24_regular = "\uf055"; + public const string swimming_pool_32_regular = "\uf056"; + public const string swimming_pool_48_regular = "\uf057"; + public const string swipe_down_20_regular = "\uebdd"; + public const string swipe_down_24_regular = "\uf73c"; + public const string swipe_right_20_regular = "\uebde"; + public const string swipe_right_24_regular = "\uf73d"; + public const string swipe_up_20_regular = "\uebdf"; + public const string swipe_up_24_regular = "\uf73e"; + public const string symbols_16_regular = "\uebe0"; + public const string symbols_20_regular = "\uebe1"; + public const string symbols_24_regular = "\uf73f"; + public const string sync_off_16_regular = "\uf740"; + public const string sync_off_20_regular = "\uf741"; + public const string syringe_20_regular = "\uebe2"; + public const string syringe_24_regular = "\uebe3"; + public const string system_20_regular = "\uebe4"; + public const string system_24_regular = "\uf742"; + public const string tab_16_regular = "\uf743"; + public const string tab_20_regular = "\uf744"; + public const string tab_add_20_regular = "\uebe5"; + public const string tab_add_24_regular = "\uebe6"; + public const string tab_arrow_left_20_regular = "\uebe7"; + public const string tab_arrow_left_24_regular = "\uebe8"; + public const string tab_desktop_16_regular = "\uebe9"; + public const string tab_desktop_20_regular = "\uf747"; + public const string tab_desktop_24_regular = "\uebea"; + public const string tab_desktop_28_regular = "\U000f023f"; + public const string tab_desktop_arrow_clockwise_16_regular = "\uf748"; + public const string tab_desktop_arrow_clockwise_20_regular = "\uf749"; + public const string tab_desktop_arrow_clockwise_24_regular = "\uf74a"; + public const string tab_desktop_arrow_left_20_regular = "\uebeb"; + public const string tab_desktop_bottom_20_regular = "\uebec"; + public const string tab_desktop_bottom_24_regular = "\uebed"; + public const string tab_desktop_clock_20_regular = "\uf74b"; + public const string tab_desktop_copy_20_regular = "\uf74c"; + public const string tab_desktop_image_16_regular = "\uf74d"; + public const string tab_desktop_image_20_regular = "\uf74e"; + public const string tab_desktop_image_24_regular = "\uf74f"; + public const string tab_desktop_link_16_regular = "\U000f0240"; + public const string tab_desktop_link_20_regular = "\U000f0241"; + public const string tab_desktop_link_24_regular = "\U000f0242"; + public const string tab_desktop_link_28_regular = "\U000f0243"; + public const string tab_desktop_multiple_16_regular = "\U000f0368"; + public const string tab_desktop_multiple_20_regular = "\uf750"; + public const string tab_desktop_multiple_24_regular = "\U000f057a"; + public const string tab_desktop_multiple_add_16_regular = "\U000f0369"; + public const string tab_desktop_multiple_add_20_regular = "\U000f032f"; + public const string tab_desktop_multiple_bottom_20_regular = "\uebee"; + public const string tab_desktop_multiple_bottom_24_regular = "\uebef"; + public const string tab_desktop_multiple_sparkle_16_regular = "\U000f057b"; + public const string tab_desktop_multiple_sparkle_20_regular = "\U000f057c"; + public const string tab_desktop_multiple_sparkle_24_regular = "\U000f057d"; + public const string tab_desktop_new_page_20_regular = "\uf751"; + public const string tab_desktop_search_16_regular = "\U000f05e1"; + public const string tab_desktop_search_20_regular = "\U000f05e2"; + public const string tab_desktop_search_24_regular = "\U000f05e3"; + public const string tab_group_16_regular = "\U000f05b9"; + public const string tab_group_20_regular = "\U000f05ba"; + public const string tab_group_24_regular = "\U000f05bb"; + public const string tab_in_private_16_regular = "\uf752"; + public const string tab_in_private_20_regular = "\uf753"; + public const string tab_in_private_24_regular = "\uf754"; + public const string tab_in_private_28_regular = "\uf755"; + public const string tab_inprivate_account_20_regular = "\uf756"; + public const string tab_inprivate_account_24_regular = "\uf757"; + public const string tab_prohibited_20_regular = "\uebf0"; + public const string tab_prohibited_24_regular = "\uebf1"; + public const string tab_shield_dismiss_20_regular = "\uebf2"; + public const string tab_shield_dismiss_24_regular = "\uebf3"; + public const string table_16_regular = "\uebf4"; + public const string table_20_regular = "\uf75d"; + public const string table_24_regular = "\uf75e"; + public const string table_28_regular = "\uebf5"; + public const string table_32_regular = "\uebf6"; + public const string table_48_regular = "\uebf7"; + public const string table_add_16_regular = "\uebf8"; + public const string table_add_20_regular = "\uebf9"; + public const string table_add_24_regular = "\uf75f"; + public const string table_add_28_regular = "\uebfa"; + public const string table_arrow_up_20_regular = "\U000f0244"; + public const string table_arrow_up_24_regular = "\U000f0245"; + public const string table_bottom_row_16_regular = "\uebfb"; + public const string table_bottom_row_20_regular = "\uebfc"; + public const string table_bottom_row_24_regular = "\uebfd"; + public const string table_bottom_row_28_regular = "\uebfe"; + public const string table_bottom_row_32_regular = "\uebff"; + public const string table_bottom_row_48_regular = "\uec00"; + public const string table_calculator_16_regular = "\uf08e"; + public const string table_calculator_20_regular = "\ueeb6"; + public const string table_cell_edit_16_regular = "\uec01"; + public const string table_cell_edit_20_regular = "\uec02"; + public const string table_cell_edit_24_regular = "\uec03"; + public const string table_cell_edit_28_regular = "\uec04"; + public const string table_cells_merge_16_regular = "\uec05"; + public const string table_cells_merge_20_regular = "\uf760"; + public const string table_cells_merge_24_regular = "\uf761"; + public const string table_cells_merge_28_regular = "\uec06"; + public const string table_cells_split_16_regular = "\uec07"; + public const string table_cells_split_20_regular = "\uf762"; + public const string table_cells_split_24_regular = "\uf763"; + public const string table_cells_split_28_regular = "\uec08"; + public const string table_checker_20_regular = "\uec09"; + public const string table_column_top_bottom_20_regular = "\U000f0101"; + public const string table_column_top_bottom_24_regular = "\U000f0102"; + public const string table_copy_20_regular = "\uec0a"; + public const string table_cursor_16_regular = "\U000f061c"; + public const string table_cursor_20_regular = "\U000f061d"; + public const string table_cursor_24_regular = "\U000f061e"; + public const string table_default_32_regular = "\U000f014c"; + public const string table_delete_column_16_regular = "\uec0b"; + public const string table_delete_column_20_regular = "\uec0c"; + public const string table_delete_column_24_regular = "\uec0d"; + public const string table_delete_column_28_regular = "\uec0e"; + public const string table_delete_row_16_regular = "\uec0f"; + public const string table_delete_row_20_regular = "\uec10"; + public const string table_delete_row_24_regular = "\uec11"; + public const string table_delete_row_28_regular = "\uec12"; + public const string table_dismiss_16_regular = "\uec13"; + public const string table_dismiss_20_regular = "\uec14"; + public const string table_dismiss_24_regular = "\uec15"; + public const string table_dismiss_28_regular = "\uec16"; + public const string table_edit_16_regular = "\uec17"; + public const string table_edit_20_regular = "\uec18"; + public const string table_edit_24_regular = "\uf768"; + public const string table_edit_28_regular = "\uec19"; + public const string table_freeze_column_16_regular = "\uec1a"; + public const string table_freeze_column_20_regular = "\uec1b"; + public const string table_freeze_column_24_regular = "\uf76a"; + public const string table_freeze_column_28_regular = "\uec1c"; + public const string table_freeze_column_and_row_16_regular = "\uec1d"; + public const string table_freeze_column_and_row_20_regular = "\uec1e"; + public const string table_freeze_column_and_row_24_regular = "\uec1f"; + public const string table_freeze_column_and_row_28_regular = "\uec20"; + public const string table_freeze_row_16_regular = "\uec21"; + public const string table_freeze_row_20_regular = "\uec22"; + public const string table_freeze_row_24_regular = "\uf76b"; + public const string table_freeze_row_28_regular = "\uec23"; + public const string table_image_20_regular = "\uec24"; + public const string table_insert_column_16_regular = "\uec25"; + public const string table_insert_column_20_regular = "\uec26"; + public const string table_insert_column_24_regular = "\uec27"; + public const string table_insert_column_28_regular = "\uec28"; + public const string table_insert_row_16_regular = "\uec29"; + public const string table_insert_row_20_regular = "\uec2a"; + public const string table_insert_row_24_regular = "\uec2b"; + public const string table_insert_row_28_regular = "\uec2c"; + public const string table_lightning_16_regular = "\uec2d"; + public const string table_lightning_20_regular = "\uec2e"; + public const string table_lightning_24_regular = "\uec2f"; + public const string table_lightning_28_regular = "\uec30"; + public const string table_link_16_regular = "\uec31"; + public const string table_link_20_regular = "\uec32"; + public const string table_link_24_regular = "\uec33"; + public const string table_link_28_regular = "\uec34"; + public const string table_lock_16_regular = "\uf2e9"; + public const string table_lock_20_regular = "\uf2ec"; + public const string table_lock_24_regular = "\uf2ed"; + public const string table_lock_28_regular = "\uf2ee"; + public const string table_lock_32_regular = "\uf302"; + public const string table_lock_48_regular = "\uf309"; + public const string table_move_above_16_regular = "\uec35"; + public const string table_move_above_20_regular = "\uec36"; + public const string table_move_above_24_regular = "\uec37"; + public const string table_move_above_28_regular = "\uec38"; + public const string table_move_below_16_regular = "\uec39"; + public const string table_move_below_20_regular = "\uec3a"; + public const string table_move_below_24_regular = "\uec3b"; + public const string table_move_below_28_regular = "\uec3c"; + public const string table_move_left_16_regular = "\uec3d"; + public const string table_move_left_20_regular = "\uec3e"; + public const string table_move_left_24_regular = "\uf771"; + public const string table_move_left_28_regular = "\uec3f"; + public const string table_move_right_16_regular = "\uec40"; + public const string table_move_right_20_regular = "\uec41"; + public const string table_move_right_24_regular = "\uf772"; + public const string table_move_right_28_regular = "\uec42"; + public const string table_multiple_20_regular = "\uec43"; + public const string table_offset_20_regular = "\U000f0103"; + public const string table_offset_24_regular = "\U000f0104"; + public const string table_offset_add_20_regular = "\U000f0105"; + public const string table_offset_add_24_regular = "\U000f0106"; + public const string table_offset_less_than_or_equal_to_20_regular = "\U000f0107"; + public const string table_offset_less_than_or_equal_to_24_regular = "\U000f0108"; + public const string table_offset_settings_20_regular = "\U000f0109"; + public const string table_offset_settings_24_regular = "\U000f010a"; + public const string table_resize_column_16_regular = "\uec44"; + public const string table_resize_column_20_regular = "\uec45"; + public const string table_resize_column_24_regular = "\uec46"; + public const string table_resize_column_28_regular = "\uec47"; + public const string table_resize_row_16_regular = "\uec48"; + public const string table_resize_row_20_regular = "\uec49"; + public const string table_resize_row_24_regular = "\uec4a"; + public const string table_resize_row_28_regular = "\uec4b"; + public const string table_search_20_regular = "\uec4c"; + public const string table_settings_16_regular = "\uec4d"; + public const string table_settings_20_regular = "\uec4e"; + public const string table_settings_24_regular = "\uf777"; + public const string table_settings_28_regular = "\uec4f"; + public const string table_simple_16_regular = "\uec50"; + public const string table_simple_20_regular = "\uec51"; + public const string table_simple_28_regular = "\uec53"; + public const string table_simple_32_regular = "\U000f014d"; + public const string table_simple_48_regular = "\uec54"; + public const string table_simple_checkmark_16_regular = "\uf08f"; + public const string table_simple_checkmark_20_regular = "\uf090"; + public const string table_simple_checkmark_24_regular = "\uf091"; + public const string table_simple_checkmark_28_regular = "\uf092"; + public const string table_simple_checkmark_32_regular = "\uf093"; + public const string table_simple_checkmark_48_regular = "\uf094"; + public const string table_simple_exclude_16_regular = "\U000f014e"; + public const string table_simple_exclude_20_regular = "\U000f014f"; + public const string table_simple_exclude_24_regular = "\U000f0150"; + public const string table_simple_exclude_28_regular = "\U000f0151"; + public const string table_simple_exclude_32_regular = "\U000f0152"; + public const string table_simple_exclude_48_regular = "\U000f0153"; + public const string table_simple_include_16_regular = "\U000f0154"; + public const string table_simple_include_20_regular = "\U000f0155"; + public const string table_simple_include_24_regular = "\U000f0156"; + public const string table_simple_include_28_regular = "\U000f0157"; + public const string table_simple_include_32_regular = "\U000f0158"; + public const string table_simple_include_48_regular = "\U000f0159"; + public const string table_simple_multiple_20_regular = "\U000f00ae"; + public const string table_simple_multiple_24_regular = "\U000f00af"; + public const string table_sparkle_20_regular = "\U000f05e4"; + public const string table_sparkle_24_regular = "\U000f05e5"; + public const string table_split_20_regular = "\uec55"; + public const string table_stack_above_16_regular = "\uec56"; + public const string table_stack_above_20_regular = "\uec57"; + public const string table_stack_above_24_regular = "\uec58"; + public const string table_stack_above_28_regular = "\uec59"; + public const string table_stack_below_16_regular = "\uec5a"; + public const string table_stack_below_20_regular = "\uec5b"; + public const string table_stack_below_24_regular = "\uec5c"; + public const string table_stack_below_28_regular = "\uec5d"; + public const string table_stack_left_16_regular = "\uec5e"; + public const string table_stack_left_20_regular = "\uec5f"; + public const string table_stack_left_24_regular = "\uec60"; + public const string table_stack_left_28_regular = "\uec61"; + public const string table_stack_right_16_regular = "\uec62"; + public const string table_stack_right_20_regular = "\uec63"; + public const string table_stack_right_24_regular = "\uec64"; + public const string table_stack_right_28_regular = "\uec65"; + public const string table_switch_16_regular = "\uec66"; + public const string table_switch_20_regular = "\uec67"; + public const string table_switch_24_regular = "\uf778"; + public const string table_switch_28_regular = "\uec68"; + public const string tablet_12_regular = "\uec69"; + public const string tablet_16_regular = "\uec6a"; + public const string tablet_20_regular = "\uf779"; + public const string tablet_24_regular = "\uf77a"; + public const string tablet_32_regular = "\uec6b"; + public const string tablet_48_regular = "\uec6c"; + public const string tablet_laptop_20_regular = "\U000f015a"; + public const string tablet_laptop_24_regular = "\U000f0246"; + public const string tablet_speaker_20_regular = "\uec6d"; + public const string tablet_speaker_24_regular = "\uec6e"; + public const string tabs_16_regular = "\uf095"; + public const string tabs_20_regular = "\uec6f"; + public const string tabs_24_regular = "\uf77b"; + public const string tag_16_regular = "\uec70"; + public const string tag_20_regular = "\uf77c"; + public const string tag_24_regular = "\uf77d"; + public const string tag_28_regular = "\uec71"; + public const string tag_32_regular = "\uec72"; + public const string tag_circle_20_regular = "\uec73"; + public const string tag_dismiss_16_regular = "\uec74"; + public const string tag_dismiss_20_regular = "\uec75"; + public const string tag_dismiss_24_regular = "\uec76"; + public const string tag_error_16_regular = "\uec77"; + public const string tag_error_20_regular = "\uec78"; + public const string tag_error_24_regular = "\uec79"; + public const string tag_lock_16_regular = "\uec7a"; + public const string tag_lock_20_regular = "\uec7b"; + public const string tag_lock_24_regular = "\uec7c"; + public const string tag_lock_32_regular = "\uec7d"; + public const string tag_multiple_16_regular = "\uf7b6"; + public const string tag_multiple_20_regular = "\uec7e"; + public const string tag_multiple_24_regular = "\uec7f"; + public const string tag_off_16_regular = "\U000f05f4"; + public const string tag_off_20_regular = "\uec80"; + public const string tag_off_24_regular = "\uec81"; + public const string tag_question_mark_16_regular = "\uec82"; + public const string tag_question_mark_20_regular = "\uec83"; + public const string tag_question_mark_24_regular = "\uec84"; + public const string tag_question_mark_32_regular = "\uec85"; + public const string tag_reset_20_regular = "\uec86"; + public const string tag_reset_24_regular = "\uec87"; + public const string tag_search_20_regular = "\uec88"; + public const string tag_search_24_regular = "\uec89"; + public const string tap_double_20_regular = "\uec8a"; + public const string tap_double_24_regular = "\uf77e"; + public const string tap_double_32_regular = "\uec8b"; + public const string tap_double_48_regular = "\uec8c"; + public const string tap_single_20_regular = "\uec8d"; + public const string tap_single_24_regular = "\uf77f"; + public const string tap_single_32_regular = "\uec8e"; + public const string tap_single_48_regular = "\uec8f"; + public const string target_16_regular = "\uf780"; + public const string target_20_regular = "\uf781"; + public const string target_24_regular = "\uf782"; + public const string target_32_regular = "\uec90"; + public const string target_add_20_regular = "\U000f036a"; + public const string target_add_24_regular = "\U000f036b"; + public const string target_arrow_16_regular = "\uf7b7"; + public const string target_arrow_20_regular = "\uf7b8"; + public const string target_arrow_24_regular = "\uec91"; + public const string target_dismiss_20_regular = "\U000f036c"; + public const string target_dismiss_24_regular = "\U000f036d"; + public const string target_edit_16_regular = "\uf783"; + public const string target_edit_20_regular = "\uf784"; + public const string target_edit_24_regular = "\uf785"; + public const string task_list_add_20_regular = "\uf788"; + public const string task_list_add_24_regular = "\uf789"; + public const string task_list_ltr_20_regular = "\uec92"; + public const string task_list_ltr_24_regular = "\uec93"; + public const string task_list_rtl_20_regular = "\uec94"; + public const string task_list_rtl_24_regular = "\uec95"; + public const string task_list_square_add_20_regular = "\uec96"; + public const string task_list_square_add_24_regular = "\uec97"; + public const string task_list_square_database_20_regular = "\uec98"; + public const string task_list_square_ltr_16_regular = "\uefad"; + public const string task_list_square_ltr_20_regular = "\uec99"; + public const string task_list_square_ltr_24_regular = "\uec9a"; + public const string task_list_square_person_20_regular = "\uec9b"; + public const string task_list_square_rtl_16_regular = "\uefae"; + public const string task_list_square_rtl_20_regular = "\uec9c"; + public const string task_list_square_rtl_24_regular = "\uec9d"; + public const string task_list_square_settings_20_regular = "\uec9e"; + public const string tasks_app_20_regular = "\uec9f"; + public const string tasks_app_24_regular = "\uf78a"; + public const string tasks_app_28_regular = "\uf78b"; + public const string teardrop_bottom_right_16_regular = "\U000f039d"; + public const string teardrop_bottom_right_20_regular = "\U000f039e"; + public const string teardrop_bottom_right_24_regular = "\U000f039f"; + public const string teardrop_bottom_right_28_regular = "\U000f03a0"; + public const string teardrop_bottom_right_32_regular = "\U000f03a1"; + public const string teardrop_bottom_right_48_regular = "\U000f03a2"; + public const string teddy_20_regular = "\ueca0"; + public const string teddy_24_regular = "\uf78e"; + public const string temperature_16_regular = "\ueca1"; + public const string temperature_20_regular = "\uf78f"; + public const string temperature_24_regular = "\uf790"; + public const string temperature_32_regular = "\uf058"; + public const string temperature_48_regular = "\uf059"; + public const string tent_12_regular = "\ueca2"; + public const string tent_16_regular = "\ueca3"; + public const string tent_20_regular = "\ueca4"; + public const string tent_24_regular = "\uf791"; + public const string tent_28_regular = "\ueca5"; + public const string tent_48_regular = "\ueca6"; + public const string tetris_app_16_regular = "\ueca7"; + public const string tetris_app_20_regular = "\ueca8"; + public const string tetris_app_24_regular = "\ueca9"; + public const string tetris_app_28_regular = "\uecaa"; + public const string tetris_app_32_regular = "\uecab"; + public const string tetris_app_48_regular = "\uecac"; + public const string text_12_regular = "\uecad"; + public const string text_16_regular = "\uecae"; + public const string text_32_regular = "\uecaf"; + public const string text_abc_underline_double_32_regular = "\U000f00b0"; + public const string text_add_20_regular = "\uecb0"; + public const string text_add_space_after_20_regular = "\uf795"; + public const string text_add_space_after_24_regular = "\uf796"; + public const string text_add_space_before_20_regular = "\uf797"; + public const string text_add_space_before_24_regular = "\uf798"; + public const string text_add_t_24_regular = "\uecb1"; + public const string text_align_center_16_regular = "\uecb2"; + public const string text_align_center_20_regular = "\uf799"; + public const string text_align_center_24_regular = "\uf79a"; + public const string text_align_center_rotate_270_16_regular = "\uecb3"; + public const string text_align_center_rotate_270_20_regular = "\uecb4"; + public const string text_align_center_rotate_270_24_regular = "\uecb5"; + public const string text_align_center_rotate_90_16_regular = "\uecb6"; + public const string text_align_center_rotate_90_20_regular = "\uecb7"; + public const string text_align_center_rotate_90_24_regular = "\uecb8"; + public const string text_align_distributed_20_regular = "\uf79b"; + public const string text_align_distributed_24_regular = "\uf79c"; + public const string text_align_distributed_evenly_20_regular = "\uecb9"; + public const string text_align_distributed_evenly_24_regular = "\uecba"; + public const string text_align_distributed_vertical_20_regular = "\uecbb"; + public const string text_align_distributed_vertical_24_regular = "\uecbc"; + public const string text_align_justify_24_regular = "\uf79e"; + public const string text_align_justify_low_20_regular = "\uecbd"; + public const string text_align_justify_low_24_regular = "\uecbe"; + public const string text_align_justify_low_rotate_90_20_regular = "\ueee2"; + public const string text_align_justify_low_rotate_90_24_regular = "\ueee3"; + public const string text_align_justify_low_rotate_270_20_regular = "\ueee0"; + public const string text_align_justify_low_rotate_270_24_regular = "\ueee1"; + public const string text_align_justify_rotate_270_20_regular = "\uecbf"; + public const string text_align_justify_rotate_270_24_regular = "\uecc0"; + public const string text_align_justify_rotate_90_20_regular = "\uecc1"; + public const string text_align_justify_rotate_90_24_regular = "\uecc2"; + public const string text_align_left_16_regular = "\uecc3"; + public const string text_align_left_20_regular = "\uf79f"; + public const string text_align_left_24_regular = "\uf7a0"; + public const string text_align_left_rotate_270_16_regular = "\uecc4"; + public const string text_align_left_rotate_270_20_regular = "\uecc5"; + public const string text_align_left_rotate_270_24_regular = "\uecc6"; + public const string text_align_left_rotate_90_16_regular = "\uecc7"; + public const string text_align_left_rotate_90_20_regular = "\uecc8"; + public const string text_align_left_rotate_90_24_regular = "\uecc9"; + public const string text_align_right_16_regular = "\uecca"; + public const string text_align_right_20_regular = "\uf7a1"; + public const string text_align_right_24_regular = "\uf7a2"; + public const string text_align_right_rotate_270_16_regular = "\ueccb"; + public const string text_align_right_rotate_270_20_regular = "\ueccc"; + public const string text_align_right_rotate_270_24_regular = "\ueccd"; + public const string text_align_right_rotate_90_16_regular = "\uecce"; + public const string text_align_right_rotate_90_20_regular = "\ueccf"; + public const string text_align_right_rotate_90_24_regular = "\uecd0"; + public const string text_arrow_down_right_column_16_regular = "\U000f04bc"; + public const string text_arrow_down_right_column_20_regular = "\U000f04bd"; + public const string text_arrow_down_right_column_24_regular = "\U000f04be"; + public const string text_arrow_down_right_column_28_regular = "\U000f04bf"; + public const string text_arrow_down_right_column_32_regular = "\U000f04c0"; + public const string text_arrow_down_right_column_48_regular = "\U000f04c1"; + public const string text_asterisk_16_regular = "\U000f03a7"; + public const string text_asterisk_20_regular = "\uf7a3"; + public const string text_baseline_20_regular = "\uecd1"; + public const string text_bold_16_regular = "\uecd2"; + public const string text_bold_20_regular = "\uf7a4"; + public const string text_bold_24_regular = "\uf7a5"; + public const string text_box_settings_20_regular = "\uecd3"; + public const string text_box_settings_24_regular = "\uecd4"; + public const string text_bullet_list_ltr_16_regular = "\uecd8"; + public const string text_bullet_list_ltr_20_regular = "\uecd9"; + public const string text_bullet_list_ltr_24_regular = "\uecda"; + public const string text_bullet_list_ltr_rotate_270_24_regular = "\uef85"; + public const string text_bullet_list_rtl_90_20_regular = "\uef86"; + public const string text_bullet_list_ltr_90_24_regular = "\uef84"; + public const string text_bullet_list_add_20_regular = "\uecd5"; + public const string text_bullet_list_add_24_regular = "\uf7a8"; + public const string text_bullet_list_checkmark_20_regular = "\uecd6"; + public const string text_bullet_list_dismiss_20_regular = "\uecd7"; + public const string text_bullet_list_ltr_90_20_regular = "\uef83"; + public const string text_bullet_list_rtl_16_regular = "\uecdf"; + public const string text_bullet_list_rtl_20_regular = "\uece0"; + public const string text_bullet_list_rtl_24_regular = "\uece1"; + public const string text_bullet_list_square_16_regular = "\U000f01ad"; + public const string text_bullet_list_square_20_regular = "\uece2"; + public const string text_bullet_list_square_24_regular = "\uf7a9"; + public const string text_bullet_list_square_32_regular = "\U000f01ae"; + public const string text_bullet_list_square_48_regular = "\U000f027d"; + public const string text_bullet_list_square_clock_20_regular = "\uece3"; + public const string text_bullet_list_square_edit_20_regular = "\uf7b9"; + public const string text_bullet_list_square_edit_24_regular = "\uf7ba"; + public const string text_bullet_list_square_person_20_regular = "\uece4"; + public const string text_bullet_list_square_person_32_regular = "\uefd3"; + public const string text_bullet_list_square_search_20_regular = "\uece5"; + public const string text_bullet_list_square_settings_20_regular = "\uece6"; + public const string text_bullet_list_square_shield_20_regular = "\uece7"; + public const string text_bullet_list_square_shield_48_regular = "\U000f027e"; + public const string text_bullet_list_square_sparkle_16_regular = "\U000f01af"; + public const string text_bullet_list_square_sparkle_20_regular = "\U000f01b0"; + public const string text_bullet_list_square_sparkle_24_regular = "\U000f01b1"; + public const string text_bullet_list_square_toolbox_20_regular = "\uece8"; + public const string text_bullet_list_square_warning_16_regular = "\uf7aa"; + public const string text_bullet_list_square_warning_20_regular = "\uf7ab"; + public const string text_bullet_list_square_warning_24_regular = "\uf7ac"; + public const string text_bullet_list_tree_16_regular = "\uf7ad"; + public const string text_bullet_list_tree_20_regular = "\uf7ae"; + public const string text_bullet_list_tree_24_regular = "\uf7af"; + public const string text_case_lowercase_16_regular = "\uece9"; + public const string text_case_lowercase_20_regular = "\uecea"; + public const string text_case_lowercase_24_regular = "\ueceb"; + public const string text_case_title_16_regular = "\uecec"; + public const string text_case_title_20_regular = "\ueced"; + public const string text_case_title_24_regular = "\uecee"; + public const string text_case_uppercase_16_regular = "\uecef"; + public const string text_case_uppercase_20_regular = "\uecf0"; + public const string text_case_uppercase_24_regular = "\uecf1"; + public const string text_change_case_16_regular = "\uecf2"; + public const string text_change_case_20_regular = "\uf7b2"; + public const string text_change_case_24_regular = "\uf7b3"; + public const string text_clear_formatting_16_regular = "\uecf3"; + public const string text_clear_formatting_20_regular = "\uf7bc"; + public const string text_clear_formatting_24_regular = "\uf7bd"; + public const string text_collapse_20_regular = "\uecf4"; + public const string text_collapse_24_regular = "\uf7be"; + public const string text_color_16_regular = "\uecf5"; + public const string text_color_20_regular = "\uf7bf"; + public const string text_color_24_regular = "\uf7c0"; + public const string text_column_one_20_regular = "\uf7c1"; + public const string text_column_one_24_regular = "\uf7c2"; + public const string text_column_one_narrow_20_regular = "\uecf6"; + public const string text_column_one_narrow_24_regular = "\uecf7"; + public const string text_column_one_semi_narrow_20_regular = "\U000f00b1"; + public const string text_column_one_semi_narrow_24_regular = "\U000f00b2"; + public const string text_column_one_wide_20_regular = "\uecf8"; + public const string text_column_one_wide_24_regular = "\uecf9"; + public const string text_column_one_wide_lightning_16_regular = "\U000f05f5"; + public const string text_column_one_wide_lightning_20_regular = "\uecfa"; + public const string text_column_one_wide_lightning_24_regular = "\uecfb"; + public const string text_column_three_20_regular = "\uf7c3"; + public const string text_column_three_24_regular = "\uf7c4"; + public const string text_column_two_20_regular = "\uf7c5"; + public const string text_column_two_24_regular = "\uf7c6"; + public const string text_column_two_left_20_regular = "\uf7c7"; + public const string text_column_two_left_24_regular = "\uf7c8"; + public const string text_column_two_right_20_regular = "\uf7c9"; + public const string text_column_two_right_24_regular = "\uf7ca"; + public const string text_continuous_20_regular = "\uecfc"; + public const string text_continuous_24_regular = "\uecfd"; + public const string text_density_16_regular = "\uecfe"; + public const string text_density_20_regular = "\uecff"; + public const string text_density_24_regular = "\ued00"; + public const string text_density_28_regular = "\ued01"; + public const string text_density_32_regular = "\U000f045f"; + public const string text_description_16_regular = "\U000f0330"; + public const string text_description_ltr_20_regular = "\uef87"; + public const string text_description_ltr_24_regular = "\uef88"; + public const string text_description_28_regular = "\U000f0331"; + public const string text_description_32_regular = "\U000f0332"; + public const string text_description_rtl_20_regular = "\uef89"; + public const string text_description_rtl_24_regular = "\uef8a"; + public const string text_direction_horizontal_left_20_regular = "\ued02"; + public const string text_direction_horizontal_left_24_regular = "\ued03"; + public const string text_direction_horizontal_right_20_regular = "\ued04"; + public const string text_direction_horizontal_right_24_regular = "\ued05"; + public const string text_direction_rotate_270_right_20_regular = "\ued06"; + public const string text_direction_rotate_270_right_24_regular = "\ued07"; + public const string text_direction_rotate_315_right_20_regular = "\U000f01f9"; + public const string text_direction_rotate_315_right_24_regular = "\U000f01fa"; + public const string text_direction_rotate_45_right_20_regular = "\U000f01fb"; + public const string text_direction_rotate_45_right_24_regular = "\U000f01fc"; + public const string text_direction_rotate_90_left_20_regular = "\ued08"; + public const string text_direction_rotate_90_left_24_regular = "\ued09"; + public const string text_direction_rotate_90_right_20_regular = "\ued0a"; + public const string text_direction_rotate_90_right_24_regular = "\ued0b"; + public const string text_direction_vertical_20_regular = "\uf7d7"; + public const string text_direction_vertical_24_regular = "\uf7d8"; + public const string text_edit_style_16_regular = "\U000f03a3"; + public const string text_edit_style_20_regular = "\uf7d9"; + public const string text_edit_style_24_regular = "\uf7da"; + public const string text_edit_style_character_a_32_regular = "\U000f0460"; + public const string text_edit_style_character_ga_32_regular = "\U000f04e2"; + public const string text_effects_20_regular = "\uf7db"; + public const string text_effects_24_regular = "\uf7dc"; + public const string text_effects_sparkle_20_regular = "\U000f04c2"; + public const string text_effects_sparkle_24_regular = "\U000f04c3"; + public const string text_expand_16_regular = "\U000f00b3"; + public const string text_expand_20_regular = "\ued0c"; + public const string text_expand_24_regular = "\uf7dd"; + public const string text_field_16_regular = "\uf7de"; + public const string text_field_20_regular = "\uf7df"; + public const string text_field_24_regular = "\uf7e0"; + public const string text_first_line_20_regular = "\uf7e1"; + public const string text_first_line_24_regular = "\uf7e2"; + public const string text_font_16_regular = "\uf7e3"; + public const string text_font_20_regular = "\uf7e4"; + public const string text_font_24_regular = "\uf7e5"; + public const string text_font_info_16_regular = "\ued0d"; + public const string text_font_info_20_regular = "\ued0e"; + public const string text_font_info_24_regular = "\ued0f"; + public const string text_font_size_16_regular = "\ued10"; + public const string text_font_size_20_regular = "\uf7e6"; + public const string text_font_size_24_regular = "\uf7e7"; + public const string text_footnote_20_regular = "\uf7e8"; + public const string text_footnote_24_regular = "\uf7e9"; + public const string text_grammar_arrow_left_20_regular = "\ued11"; + public const string text_grammar_arrow_left_24_regular = "\ued12"; + public const string text_grammar_arrow_right_20_regular = "\ued13"; + public const string text_grammar_arrow_right_24_regular = "\ued14"; + public const string text_grammar_checkmark_20_regular = "\ued15"; + public const string text_grammar_checkmark_24_regular = "\ued16"; + public const string text_grammar_dismiss_20_regular = "\ued17"; + public const string text_grammar_dismiss_24_regular = "\ued18"; + public const string text_grammar_error_20_regular = "\ued19"; + public const string text_grammar_lightning_16_regular = "\U000f0333"; + public const string text_grammar_lightning_20_regular = "\U000f0334"; + public const string text_grammar_lightning_24_regular = "\U000f0335"; + public const string text_grammar_lightning_28_regular = "\U000f0336"; + public const string text_grammar_lightning_32_regular = "\U000f0337"; + public const string text_grammar_settings_20_regular = "\ued1a"; + public const string text_grammar_settings_24_regular = "\ued1b"; + public const string text_grammar_wand_16_regular = "\ued1c"; + public const string text_grammar_wand_20_regular = "\ued1d"; + public const string text_grammar_wand_24_regular = "\ued1e"; + public const string text_hanging_20_regular = "\uf7ed"; + public const string text_hanging_24_regular = "\uf7ee"; + public const string text_header_1_20_regular = "\uf7ef"; + public const string text_header_1_24_regular = "\ued1f"; + public const string text_header_1_lines_16_regular = "\U000f036e"; + public const string text_header_1_lines_20_regular = "\U000f036f"; + public const string text_header_1_lines_24_regular = "\U000f0370"; + public const string text_header_1_lines_caret_16_regular = "\U000f0371"; + public const string text_header_1_lines_caret_20_regular = "\U000f0372"; + public const string text_header_1_lines_caret_24_regular = "\U000f0373"; + public const string text_header_2_20_regular = "\uf7f0"; + public const string text_header_2_24_regular = "\ued20"; + public const string text_header_2_lines_16_regular = "\U000f0374"; + public const string text_header_2_lines_20_regular = "\U000f0375"; + public const string text_header_2_lines_24_regular = "\U000f0376"; + public const string text_header_2_lines_caret_16_regular = "\U000f0377"; + public const string text_header_2_lines_caret_20_regular = "\U000f0378"; + public const string text_header_2_lines_caret_24_regular = "\U000f0379"; + public const string text_header_3_20_regular = "\uf7f1"; + public const string text_header_3_24_regular = "\ued21"; + public const string text_header_3_lines_16_regular = "\U000f037a"; + public const string text_header_3_lines_20_regular = "\U000f037b"; + public const string text_header_3_lines_24_regular = "\U000f037c"; + public const string text_header_3_lines_caret_16_regular = "\U000f037d"; + public const string text_header_3_lines_caret_20_regular = "\U000f037e"; + public const string text_header_3_lines_caret_24_regular = "\U000f037f"; + public const string text_indent_decrease_ltr_16_regular = "\ued22"; + public const string text_indent_decrease_ltr_20_regular = "\ued23"; + public const string text_indent_decrease_ltr_24_regular = "\ued24"; + public const string text_indent_decrease_rotate_90_20_regular = "\ued27"; + public const string text_indent_decrease_rotate_90_24_regular = "\ued28"; + public const string text_indent_decrease_rotate_270_20_regular = "\ued25"; + public const string text_indent_decrease_rotate_270_24_regular = "\ued26"; + public const string text_indent_decrease_rtl_16_regular = "\ued29"; + public const string text_indent_decrease_rtl_20_regular = "\ued2a"; + public const string text_indent_decrease_rtl_24_regular = "\ued2b"; + public const string text_indent_decrease_rtl_90_24_regular = "\uef90"; + public const string text_indent_decrease_rtl_rotate_270_24_regular = "\uefb0"; + public const string text_indent_increase_ltr_16_regular = "\ued2c"; + public const string text_indent_increase_ltr_20_regular = "\ued2d"; + public const string text_indent_increase_ltr_24_regular = "\ued2e"; + public const string text_indent_increase_rotate_90_20_regular = "\ued31"; + public const string text_indent_increase_rotate_90_24_regular = "\ued32"; + public const string text_indent_increase_rotate_270_20_regular = "\ued2f"; + public const string text_indent_increase_rotate_270_24_regular = "\ued30"; + public const string text_indent_increase_rtl_16_regular = "\ued33"; + public const string text_indent_increase_rtl_20_regular = "\ued34"; + public const string text_indent_increase_rtl_24_regular = "\ued35"; + public const string text_indent_increase_rtl_90_24_regular = "\uf029"; + public const string text_indent_increase_rtl_rotate_270_24_regular = "\uf3fc"; + public const string text_italic_16_regular = "\ued36"; + public const string text_italic_20_regular = "\uf7f4"; + public const string text_italic_24_regular = "\uf7f5"; + public const string text_line_spacing_20_regular = "\uf7f6"; + public const string text_line_spacing_24_regular = "\uf7f7"; + public const string text_more_20_regular = "\ued37"; + public const string text_more_24_regular = "\ued38"; + public const string text_number_format_20_regular = "\ued39"; + public const string text_number_format_24_regular = "\uf7f8"; + public const string text_number_list_ltr_16_regular = "\ued3a"; + public const string text_number_list_ltr_20_regular = "\uf7f9"; + public const string text_number_list_ltr_24_regular = "\uf7fa"; + public const string text_number_list_rotate_90_20_regular = "\ued3d"; + public const string text_number_list_rotate_90_24_regular = "\ued3e"; + public const string text_number_list_rotate_270_20_regular = "\ued3b"; + public const string text_number_list_ltr_rotate_270_24_regular = "\uf50b"; + public const string text_number_list_rotate_270_24_regular = "\ued3c"; + public const string text_number_list_rtl_16_regular = "\ued3f"; + public const string text_number_list_rtl_20_regular = "\ued40"; + public const string text_number_list_rtl_24_regular = "\uf7fb"; + public const string text_number_list_rtl_90_20_regular = "\uf50c"; + public const string text_number_list_rtl_90_24_regular = "\uf543"; + public const string text_number_list_rtl_rotate_270_20_regular = "\uf544"; + public const string text_number_list_rtl_rotate_270_24_regular = "\uf545"; + public const string text_paragraph_direction_20_regular = "\ued44"; + public const string text_paragraph_direction_24_regular = "\ued45"; + public const string text_paragraph_direction_left_16_regular = "\ued46"; + public const string text_paragraph_direction_left_20_regular = "\ued47"; + public const string text_paragraph_direction_right_16_regular = "\ued48"; + public const string text_paragraph_direction_right_20_regular = "\ued49"; + public const string text_period_asterisk_20_regular = "\ued4a"; + public const string text_position_behind_20_regular = "\ued4b"; + public const string text_position_behind_24_regular = "\ued4c"; + public const string text_position_front_20_regular = "\ued4d"; + public const string text_position_front_24_regular = "\ued4e"; + public const string text_position_line_20_regular = "\ued4f"; + public const string text_position_line_24_regular = "\ued50"; + public const string text_position_square_20_regular = "\ued51"; + public const string text_position_square_24_regular = "\ued52"; + public const string text_position_square_left_16_regular = "\U000f00b4"; + public const string text_position_square_left_20_regular = "\U000f00b5"; + public const string text_position_square_left_24_regular = "\U000f00b6"; + public const string text_position_square_right_16_regular = "\U000f00b7"; + public const string text_position_square_right_20_regular = "\U000f00b8"; + public const string text_position_square_right_24_regular = "\U000f00b9"; + public const string text_position_through_20_regular = "\ued53"; + public const string text_position_through_24_regular = "\ued54"; + public const string text_position_tight_20_regular = "\ued55"; + public const string text_position_tight_24_regular = "\ued56"; + public const string text_position_top_bottom_20_regular = "\ued57"; + public const string text_position_top_bottom_24_regular = "\ued58"; + public const string text_proofing_tools_20_regular = "\uf7fe"; + public const string text_proofing_tools_24_regular = "\uf7ff"; + public const string text_quote_16_regular = "\ued59"; + public const string text_quote_20_regular = "\uf800"; + public const string text_quote_24_regular = "\uf801"; + public const string text_sort_ascending_16_regular = "\ued5a"; + public const string text_sort_ascending_20_regular = "\uf802"; + public const string text_sort_ascending_24_regular = "\ued5b"; + public const string text_sort_descending_16_regular = "\ued5c"; + public const string text_sort_descending_20_regular = "\uf803"; + public const string text_sort_descending_24_regular = "\ued5d"; + public const string text_strikethrough_16_regular = "\ued5e"; + public const string text_strikethrough_20_regular = "\ued5f"; + public const string text_strikethrough_24_regular = "\ued60"; + public const string text_subscript_16_regular = "\ued61"; + public const string text_subscript_20_regular = "\uf806"; + public const string text_subscript_24_regular = "\uf807"; + public const string text_superscript_16_regular = "\ued62"; + public const string text_superscript_20_regular = "\uf808"; + public const string text_superscript_24_regular = "\uf809"; + public const string text_t_20_regular = "\ued63"; + public const string text_t_24_regular = "\ued64"; + public const string text_t_28_regular = "\ued65"; + public const string text_t_48_regular = "\ued66"; + public const string text_t_tag_16_regular = "\uf326"; + public const string text_underline_16_regular = "\ued67"; + public const string text_underline_20_regular = "\uf80a"; + public const string text_underline_24_regular = "\uf80b"; + public const string text_underline_character_u_16_regular = "\U000f00ba"; + public const string text_underline_character_u_20_regular = "\U000f00bb"; + public const string text_underline_character_u_24_regular = "\U000f00bc"; + public const string text_underline_double_20_regular = "\uf096"; + public const string text_underline_double_24_regular = "\uf097"; + public const string text_whole_word_16_regular = "\U000f03a4"; + public const string text_whole_word_20_regular = "\ued68"; + public const string text_word_count_20_regular = "\uf80c"; + public const string text_word_count_24_regular = "\uf80d"; + public const string text_wrap_16_regular = "\uef28"; + public const string text_wrap_20_regular = "\ued69"; + public const string text_wrap_24_regular = "\uf80e"; + public const string text_wrap_off_16_regular = "\uef29"; + public const string text_wrap_off_20_regular = "\uef2a"; + public const string text_wrap_off_24_regular = "\uef2b"; + public const string textbox_16_regular = "\ued6a"; + public const string textbox_20_regular = "\uf80f"; + public const string textbox_24_regular = "\uf810"; + public const string textbox_align_bottom_20_regular = "\uf813"; + public const string textbox_align_bottom_24_regular = "\uf814"; + public const string textbox_align_bottom_center_16_regular = "\U000f02e0"; + public const string textbox_align_bottom_center_20_regular = "\U000f02e1"; + public const string textbox_align_bottom_center_24_regular = "\U000f02e2"; + public const string textbox_align_bottom_left_16_regular = "\U000f02e3"; + public const string textbox_align_bottom_left_20_regular = "\U000f02e4"; + public const string textbox_align_bottom_left_24_regular = "\U000f02e5"; + public const string textbox_align_bottom_right_16_regular = "\U000f02e6"; + public const string textbox_align_bottom_right_20_regular = "\U000f02e7"; + public const string textbox_align_bottom_right_24_regular = "\U000f02e8"; + public const string textbox_align_bottom_rotate_90_20_regular = "\ued6b"; + public const string textbox_align_bottom_rotate_90_24_regular = "\ued6c"; + public const string textbox_align_center_16_regular = "\U000f02e9"; + public const string textbox_align_center_20_regular = "\ued6d"; + public const string textbox_align_center_24_regular = "\ued6e"; + public const string textbox_align_middle_16_regular = "\U000f015b"; + public const string textbox_align_middle_20_regular = "\uf815"; + public const string textbox_align_middle_24_regular = "\uf816"; + public const string textbox_align_middle_left_16_regular = "\U000f02ea"; + public const string textbox_align_middle_left_20_regular = "\U000f02eb"; + public const string textbox_align_middle_left_24_regular = "\U000f02ec"; + public const string textbox_align_middle_right_16_regular = "\U000f02ed"; + public const string textbox_align_middle_right_20_regular = "\U000f02ee"; + public const string textbox_align_middle_right_24_regular = "\U000f02ef"; + public const string textbox_align_middle_rotate_90_20_regular = "\ued6f"; + public const string textbox_align_middle_rotate_90_24_regular = "\ued70"; + public const string textbox_align_top_20_regular = "\uf817"; + public const string textbox_align_top_24_regular = "\uf818"; + public const string textbox_align_top_center_16_regular = "\U000f02f0"; + public const string textbox_align_top_center_20_regular = "\U000f02f1"; + public const string textbox_align_top_center_24_regular = "\U000f02f2"; + public const string textbox_align_top_left_16_regular = "\U000f02f3"; + public const string textbox_align_top_left_20_regular = "\U000f02f4"; + public const string textbox_align_top_left_24_regular = "\U000f02f5"; + public const string textbox_align_top_right_16_regular = "\U000f02f6"; + public const string textbox_align_top_right_20_regular = "\U000f02f7"; + public const string textbox_align_top_right_24_regular = "\U000f02f8"; + public const string textbox_align_top_rotate_90_20_regular = "\ued71"; + public const string textbox_align_top_rotate_90_24_regular = "\ued72"; + public const string textbox_more_20_regular = "\ued73"; + public const string textbox_more_24_regular = "\ued74"; + public const string textbox_rotate_90_20_regular = "\ued75"; + public const string textbox_rotate_90_24_regular = "\ued76"; + public const string thinking_20_regular = "\uf81b"; + public const string thinking_24_regular = "\uf81c"; + public const string thumb_dislike_16_regular = "\ued77"; + public const string thumb_dislike_20_regular = "\uf81d"; + public const string thumb_dislike_24_regular = "\uf81e"; + public const string thumb_like_16_regular = "\ued78"; + public const string thumb_like_20_regular = "\uf81f"; + public const string thumb_like_24_regular = "\uf820"; + public const string thumb_like_28_regular = "\ued79"; + public const string thumb_like_48_regular = "\ued7a"; + public const string thumb_like_dislike_16_regular = "\U000f0247"; + public const string thumb_like_dislike_20_regular = "\U000f0248"; + public const string thumb_like_dislike_24_regular = "\U000f0249"; + public const string ticket_diagonal_16_regular = "\ued7b"; + public const string ticket_diagonal_20_regular = "\ued7c"; + public const string ticket_diagonal_24_regular = "\ued7d"; + public const string ticket_diagonal_28_regular = "\ued7e"; + public const string ticket_horizontal_20_regular = "\ued7f"; + public const string ticket_horizontal_24_regular = "\ued80"; + public const string time_and_weather_20_regular = "\ued81"; + public const string time_and_weather_24_regular = "\uf823"; + public const string time_picker_20_regular = "\ued82"; + public const string time_picker_24_regular = "\uf824"; + public const string timeline_20_regular = "\ued83"; + public const string timeline_24_regular = "\uf825"; + public const string timer_10_20_regular = "\ued84"; + public const string timer_10_24_regular = "\uf826"; + public const string timer_12_regular = "\ued85"; + public const string timer_16_regular = "\ued86"; + public const string timer_2_20_regular = "\ued87"; + public const string timer_2_24_regular = "\uf828"; + public const string timer_20_regular = "\ued88"; + public const string timer_24_regular = "\uf827"; + public const string timer_28_regular = "\ued89"; + public const string timer_3_20_regular = "\ued8a"; + public const string timer_3_24_regular = "\ued8b"; + public const string timer_32_regular = "\ued8c"; + public const string timer_48_regular = "\ued8d"; + public const string timer_off_20_regular = "\ued8e"; + public const string timer_off_24_regular = "\uf829"; + public const string toggle_left_16_regular = "\ued8f"; + public const string toggle_left_20_regular = "\ued90"; + public const string toggle_left_24_regular = "\ued91"; + public const string toggle_left_28_regular = "\ued92"; + public const string toggle_left_48_regular = "\ued93"; + public const string toggle_multiple_16_regular = "\ued94"; + public const string toggle_multiple_20_regular = "\ued95"; + public const string toggle_multiple_24_regular = "\ued96"; + public const string toggle_right_16_regular = "\uf82a"; + public const string toggle_right_20_regular = "\uf82b"; + public const string toggle_right_24_regular = "\uf82c"; + public const string toggle_right_28_regular = "\ued97"; + public const string toggle_right_48_regular = "\ued98"; + public const string toolbox_12_regular = "\ued99"; + public const string toolbox_16_regular = "\uf82d"; + public const string toolbox_20_regular = "\uf82e"; + public const string toolbox_24_regular = "\uf82f"; + public const string toolbox_28_regular = "\uf830"; + public const string tooltip_quote_20_regular = "\uf7bb"; + public const string tooltip_quote_24_regular = "\ued9a"; + public const string top_speed_20_regular = "\ued9b"; + public const string top_speed_24_regular = "\uf831"; + public const string translate_16_regular = "\uf832"; + public const string translate_20_regular = "\uf833"; + public const string translate_24_regular = "\uf834"; + public const string translate_auto_16_regular = "\U000f01b2"; + public const string translate_auto_20_regular = "\U000f01b3"; + public const string translate_auto_24_regular = "\U000f01b4"; + public const string translate_off_16_regular = "\U000f00bd"; + public const string translate_off_20_regular = "\U000f00be"; + public const string translate_off_24_regular = "\U000f00bf"; + public const string transmission_20_regular = "\ued9c"; + public const string transmission_24_regular = "\ued9d"; + public const string transparency_square_20_regular = "\U000f061f"; + public const string transparency_square_24_regular = "\U000f0620"; + public const string tray_item_add_20_regular = "\ued9e"; + public const string tray_item_add_24_regular = "\ued9f"; + public const string tray_item_remove_20_regular = "\ueda0"; + public const string tray_item_remove_24_regular = "\ueda1"; + public const string tree_deciduous_20_regular = "\ueda2"; + public const string tree_deciduous_24_regular = "\U000f015c"; + public const string tree_deciduous_28_regular = "\U000f015d"; + public const string tree_evergreen_20_regular = "\ueda3"; + public const string triangle_12_regular = "\ueda4"; + public const string triangle_16_regular = "\ueda5"; + public const string triangle_20_regular = "\ueda6"; + public const string triangle_24_regular = "\U000f03a5"; + public const string triangle_28_regular = "\U000f03a6"; + public const string triangle_32_regular = "\ueda7"; + public const string triangle_48_regular = "\ueda8"; + public const string triangle_down_12_regular = "\ueda9"; + public const string triangle_down_16_regular = "\uedaa"; + public const string triangle_down_20_regular = "\uedab"; + public const string triangle_down_24_regular = "\U000f02f9"; + public const string triangle_down_32_regular = "\uedac"; + public const string triangle_down_48_regular = "\uedad"; + public const string triangle_left_12_regular = "\uedae"; + public const string triangle_left_16_regular = "\uedaf"; + public const string triangle_left_20_regular = "\uedb0"; + public const string triangle_left_32_regular = "\uedb1"; + public const string triangle_left_48_regular = "\uedb2"; + public const string triangle_right_12_regular = "\uedb3"; + public const string triangle_right_16_regular = "\uedb4"; + public const string triangle_right_20_regular = "\uedb5"; + public const string triangle_right_32_regular = "\uedb6"; + public const string triangle_right_48_regular = "\uedb7"; + public const string triangle_up_20_regular = "\U000f01e1"; + public const string trophy_16_regular = "\uf835"; + public const string trophy_20_regular = "\uf836"; + public const string trophy_24_regular = "\uf837"; + public const string trophy_28_regular = "\uedb8"; + public const string trophy_32_regular = "\uedb9"; + public const string trophy_48_regular = "\uedba"; + public const string trophy_lock_16_regular = "\uef2c"; + public const string trophy_lock_20_regular = "\uef2d"; + public const string trophy_lock_24_regular = "\uef2e"; + public const string trophy_lock_28_regular = "\uef2f"; + public const string trophy_lock_32_regular = "\uef30"; + public const string trophy_lock_48_regular = "\uef31"; + public const string trophy_off_16_regular = "\uedbb"; + public const string trophy_off_20_regular = "\uedbc"; + public const string trophy_off_24_regular = "\uedbd"; + public const string trophy_off_28_regular = "\uedbe"; + public const string trophy_off_32_regular = "\uedbf"; + public const string trophy_off_48_regular = "\uedc0"; + public const string tv_16_regular = "\uedc1"; + public const string tv_20_regular = "\uedc2"; + public const string tv_24_regular = "\uedc3"; + public const string tv_28_regular = "\uedc4"; + public const string tv_48_regular = "\uedc5"; + public const string tv_arrow_right_20_regular = "\uedc6"; + public const string tv_usb_16_regular = "\uedc7"; + public const string tv_usb_20_regular = "\uedc8"; + public const string tv_usb_24_regular = "\uedc9"; + public const string tv_usb_28_regular = "\uedca"; + public const string tv_usb_48_regular = "\uedcb"; + public const string umbrella_20_regular = "\uedcc"; + public const string umbrella_24_regular = "\uedcd"; + public const string uninstall_app_20_regular = "\uedce"; + public const string uninstall_app_24_regular = "\uf838"; + public const string usb_plug_20_regular = "\uedcf"; + public const string usb_plug_24_regular = "\uedd0"; + public const string usb_stick_20_regular = "\uf83f"; + public const string usb_stick_24_regular = "\uf840"; + public const string vault_16_regular = "\uf841"; + public const string vault_20_regular = "\uf842"; + public const string vault_24_regular = "\uf843"; + public const string vehicle_bicycle_16_regular = "\uedd1"; + public const string vehicle_bicycle_20_regular = "\uedd2"; + public const string vehicle_bicycle_24_regular = "\uf844"; + public const string vehicle_bus_16_regular = "\uedd3"; + public const string vehicle_bus_20_regular = "\uedd4"; + public const string vehicle_bus_24_regular = "\uf845"; + public const string vehicle_cab_16_regular = "\uedd5"; + public const string vehicle_cab_20_regular = "\uedd6"; + public const string vehicle_cab_24_regular = "\uf846"; + public const string vehicle_cab_28_regular = "\uedd7"; + public const string vehicle_cable_car_20_regular = "\U000f010b"; + public const string vehicle_cable_car_24_regular = "\U000f010c"; + public const string vehicle_cable_car_28_regular = "\U000f010d"; + public const string vehicle_car_16_regular = "\uf847"; + public const string vehicle_car_20_regular = "\uf848"; + public const string vehicle_car_24_regular = "\uf849"; + public const string vehicle_car_28_regular = "\uedd8"; + public const string vehicle_car_32_regular = "\uf05a"; + public const string vehicle_car_48_regular = "\uedd9"; + public const string vehicle_car_collision_16_regular = "\uedda"; + public const string vehicle_car_collision_20_regular = "\ueddb"; + public const string vehicle_car_collision_24_regular = "\ueddc"; + public const string vehicle_car_collision_28_regular = "\ueddd"; + public const string vehicle_car_collision_32_regular = "\uedde"; + public const string vehicle_car_collision_48_regular = "\ueddf"; + public const string vehicle_car_parking_16_regular = "\uf05b"; + public const string vehicle_car_parking_20_regular = "\uf002"; + public const string vehicle_car_parking_24_regular = "\uf003"; + public const string vehicle_car_parking_32_regular = "\uf05c"; + public const string vehicle_car_parking_48_regular = "\uf05d"; + public const string vehicle_car_profile_ltr_16_regular = "\uf7cd"; + public const string vehicle_car_profile_ltr_20_regular = "\uede0"; + public const string vehicle_car_profile_ltr_24_regular = "\uf004"; + public const string vehicle_car_profile_ltr_clock_16_regular = "\uf05e"; + public const string vehicle_car_profile_ltr_clock_20_regular = "\uf05f"; + public const string vehicle_car_profile_ltr_clock_24_regular = "\uf060"; + public const string vehicle_car_profile_rtl_16_regular = "\uf7ce"; + public const string vehicle_car_profile_rtl_20_regular = "\uede1"; + public const string vehicle_car_profile_rtl_24_regular = "\uf005"; + public const string vehicle_motorcycle_16_regular = "\U000f0642"; + public const string vehicle_motorcycle_20_regular = "\U000f0643"; + public const string vehicle_motorcycle_24_regular = "\U000f0644"; + public const string vehicle_motorcycle_28_regular = "\U000f0645"; + public const string vehicle_motorcycle_32_regular = "\U000f0646"; + public const string vehicle_motorcycle_48_regular = "\U000f0647"; + public const string vehicle_ship_16_regular = "\uede2"; + public const string vehicle_ship_20_regular = "\uede3"; + public const string vehicle_ship_24_regular = "\uede4"; + public const string vehicle_subway_16_regular = "\uede5"; + public const string vehicle_subway_20_regular = "\uede6"; + public const string vehicle_subway_24_regular = "\uede7"; + public const string vehicle_subway_clock_16_regular = "\U000f0418"; + public const string vehicle_subway_clock_20_regular = "\U000f0419"; + public const string vehicle_subway_clock_24_regular = "\U000f041a"; + public const string vehicle_tractor_20_regular = "\U000f057e"; + public const string vehicle_tractor_24_regular = "\U000f057f"; + public const string vehicle_truck_16_regular = "\uede8"; + public const string vehicle_truck_20_regular = "\uede9"; + public const string vehicle_truck_24_regular = "\uf84a"; + public const string vehicle_truck_bag_20_regular = "\uedea"; + public const string vehicle_truck_bag_24_regular = "\uedeb"; + public const string vehicle_truck_cube_20_regular = "\uedec"; + public const string vehicle_truck_cube_24_regular = "\ueded"; + public const string vehicle_truck_profile_16_regular = "\uf7ea"; + public const string vehicle_truck_profile_20_regular = "\uedee"; + public const string vehicle_truck_profile_24_regular = "\uedef"; + public const string video_16_regular = "\uf84b"; + public const string video_20_regular = "\uf84c"; + public const string video_24_regular = "\uf84d"; + public const string video_28_regular = "\uf84e"; + public const string video_32_regular = "\uedf0"; + public const string video_360_20_regular = "\uedf1"; + public const string video_360_24_regular = "\uedf2"; + public const string video_360_off_20_regular = "\uedf3"; + public const string video_48_regular = "\uedf4"; + public const string video_add_20_regular = "\uedf5"; + public const string video_add_24_regular = "\uedf6"; + public const string video_background_effect_16_regular = "\U000f00c0"; + public const string video_background_effect_20_regular = "\uedf7"; + public const string video_background_effect_24_regular = "\uf84f"; + public const string video_background_effect_28_regular = "\U000f00c1"; + public const string video_background_effect_32_regular = "\U000f00c2"; + public const string video_background_effect_48_regular = "\U000f00c3"; + public const string video_background_effect_horizontal_16_regular = "\U000f00c4"; + public const string video_background_effect_horizontal_20_regular = "\U000f00c5"; + public const string video_background_effect_horizontal_24_regular = "\U000f00c6"; + public const string video_background_effect_horizontal_28_regular = "\U000f00c7"; + public const string video_background_effect_horizontal_32_regular = "\U000f00c8"; + public const string video_background_effect_horizontal_48_regular = "\U000f00c9"; + public const string video_chat_16_regular = "\uedf8"; + public const string video_chat_20_regular = "\uedf9"; + public const string video_chat_24_regular = "\uedfa"; + public const string video_chat_28_regular = "\uedfb"; + public const string video_chat_32_regular = "\uedfc"; + public const string video_chat_48_regular = "\uedfd"; + public const string video_clip_16_regular = "\uedfe"; + public const string video_clip_20_regular = "\uedff"; + public const string video_clip_24_regular = "\uf850"; + public const string video_clip_28_regular = "\U000f00ca"; + public const string video_clip_32_regular = "\U000f00cb"; + public const string video_clip_48_regular = "\U000f00cc"; + public const string video_clip_multiple_16_regular = "\uee00"; + public const string video_clip_multiple_20_regular = "\uee01"; + public const string video_clip_multiple_24_regular = "\uee02"; + public const string video_clip_off_16_regular = "\uee03"; + public const string video_clip_off_20_regular = "\uee04"; + public const string video_clip_off_24_regular = "\uee05"; + public const string video_clip_optimize_16_regular = "\U000f041b"; + public const string video_clip_optimize_20_regular = "\U000f041c"; + public const string video_clip_optimize_24_regular = "\U000f041d"; + public const string video_clip_optimize_28_regular = "\U000f041e"; + public const string video_clip_wand_16_regular = "\U000f0548"; + public const string video_clip_wand_20_regular = "\U000f0549"; + public const string video_clip_wand_24_regular = "\U000f054a"; + public const string video_link_24_regular = "\U000f04fc"; + public const string video_link_28_regular = "\U000f04fd"; + public const string video_off_16_regular = "\U000f0520"; + public const string video_off_20_regular = "\uf851"; + public const string video_off_24_regular = "\uf852"; + public const string video_off_28_regular = "\uf853"; + public const string video_off_32_regular = "\uee06"; + public const string video_off_48_regular = "\uee07"; + public const string video_people_32_regular = "\uf061"; + public const string video_person_12_regular = "\uee08"; + public const string video_person_16_regular = "\uee09"; + public const string video_person_20_regular = "\uee0a"; + public const string video_person_24_regular = "\uf854"; + public const string video_person_28_regular = "\uee0b"; + public const string video_person_32_regular = "\uf327"; + public const string video_person_48_regular = "\uee0c"; + public const string video_person_call_16_regular = "\uee0d"; + public const string video_person_call_20_regular = "\uee0e"; + public const string video_person_call_24_regular = "\uee0f"; + public const string video_person_call_32_regular = "\uee10"; + public const string video_person_clock_16_regular = "\uf38e"; + public const string video_person_clock_20_regular = "\uf392"; + public const string video_person_clock_24_regular = "\uf3f5"; + public const string video_person_clock_28_regular = "\uf3f6"; + public const string video_person_clock_32_regular = "\uf3f7"; + public const string video_person_clock_48_regular = "\uf3f8"; + public const string video_person_off_20_regular = "\uee11"; + public const string video_person_off_24_regular = "\uf855"; + public const string video_person_pulse_16_regular = "\U000f041f"; + public const string video_person_pulse_20_regular = "\U000f0420"; + public const string video_person_pulse_24_regular = "\U000f0421"; + public const string video_person_pulse_28_regular = "\U000f0422"; + public const string video_person_sparkle_16_regular = "\uee12"; + public const string video_person_sparkle_20_regular = "\uee13"; + public const string video_person_sparkle_24_regular = "\uee14"; + public const string video_person_sparkle_28_regular = "\uee15"; + public const string video_person_sparkle_48_regular = "\uee16"; + public const string video_person_sparkle_off_20_regular = "\U000f02ca"; + public const string video_person_sparkle_off_24_regular = "\U000f02cb"; + public const string video_person_star_20_regular = "\uee17"; + public const string video_person_star_24_regular = "\uf856"; + public const string video_person_star_off_20_regular = "\uee18"; + public const string video_person_star_off_24_regular = "\uee19"; + public const string video_play_pause_20_regular = "\uee1a"; + public const string video_play_pause_24_regular = "\uf857"; + public const string video_prohibited_16_regular = "\uee1b"; + public const string video_prohibited_20_regular = "\uee1c"; + public const string video_prohibited_24_regular = "\uee1d"; + public const string video_prohibited_28_regular = "\uee1e"; + public const string video_recording_20_regular = "\uee1f"; + public const string video_security_20_regular = "\uf858"; + public const string video_security_24_regular = "\uf859"; + public const string video_switch_20_regular = "\uee20"; + public const string video_switch_24_regular = "\uf85a"; + public const string video_sync_20_regular = "\uee21"; + public const string view_desktop_20_regular = "\uf85b"; + public const string view_desktop_24_regular = "\uf85c"; + public const string view_desktop_mobile_20_regular = "\uf85d"; + public const string view_desktop_mobile_24_regular = "\uf85e"; + public const string virtual_network_20_regular = "\uee22"; + public const string virtual_network_toolbox_20_regular = "\uee23"; + public const string voicemail_16_regular = "\uf862"; + public const string voicemail_20_regular = "\uf863"; + public const string voicemail_24_regular = "\uf864"; + public const string voicemail_28_regular = "\uee24"; + public const string voicemail_32_regular = "\uf3f9"; + public const string voicemail_48_regular = "\U000f00cd"; + public const string voicemail_arrow_back_16_regular = "\uf7eb"; + public const string voicemail_arrow_back_20_regular = "\uee25"; + public const string voicemail_arrow_forward_16_regular = "\uf7ec"; + public const string voicemail_arrow_forward_20_regular = "\uee26"; + public const string voicemail_arrow_subtract_20_regular = "\uee27"; + public const string voicemail_shield_16_regular = "\U000f031f"; + public const string voicemail_shield_20_regular = "\U000f02cc"; + public const string voicemail_shield_24_regular = "\U000f02cd"; + public const string voicemail_shield_32_regular = "\U000f02ce"; + public const string voicemail_subtract_16_regular = "\uf7fc"; + public const string vote_20_regular = "\uee28"; + public const string vote_24_regular = "\uee29"; + public const string walkie_talkie_20_regular = "\uee2a"; + public const string walkie_talkie_24_regular = "\uf865"; + public const string walkie_talkie_28_regular = "\uf866"; + public const string wallet_16_regular = "\uee2b"; + public const string wallet_20_regular = "\uee2c"; + public const string wallet_24_regular = "\uee2d"; + public const string wallet_28_regular = "\uee2e"; + public const string wallet_32_regular = "\uee2f"; + public const string wallet_48_regular = "\uee30"; + public const string wallet_credit_card_16_regular = "\uee31"; + public const string wallet_credit_card_20_regular = "\uee32"; + public const string wallet_credit_card_24_regular = "\uee33"; + public const string wallet_credit_card_28_regular = "\U000f05f6"; + public const string wallet_credit_card_32_regular = "\uee34"; + public const string wallet_credit_card_48_regular = "\U000f05f7"; + public const string wallpaper_20_regular = "\uee35"; + public const string wallpaper_24_regular = "\uf867"; + public const string wand_16_regular = "\uee36"; + public const string wand_20_regular = "\uee37"; + public const string wand_24_regular = "\uee38"; + public const string wand_28_regular = "\uee39"; + public const string wand_48_regular = "\uee3a"; + public const string warning_12_regular = "\uee3b"; + public const string warning_16_regular = "\uf868"; + public const string warning_20_regular = "\uf869"; + public const string warning_24_regular = "\uf86a"; + public const string warning_28_regular = "\uee3c"; + public const string warning_32_regular = "\U000f024a"; + public const string warning_48_regular = "\U000f03cf"; + public const string warning_shield_20_regular = "\uee3d"; + public const string washer_20_regular = "\uf006"; + public const string washer_24_regular = "\uf007"; + public const string washer_32_regular = "\uf008"; + public const string washer_48_regular = "\uf009"; + public const string water_16_regular = "\uf062"; + public const string water_20_regular = "\uf063"; + public const string water_24_regular = "\uf064"; + public const string water_32_regular = "\uf065"; + public const string water_48_regular = "\uf066"; + public const string weather_blowing_snow_20_regular = "\uf86b"; + public const string weather_blowing_snow_24_regular = "\uf86c"; + public const string weather_blowing_snow_48_regular = "\uf86d"; + public const string weather_cloudy_20_regular = "\uf86e"; + public const string weather_cloudy_24_regular = "\uf86f"; + public const string weather_cloudy_48_regular = "\uf870"; + public const string weather_drizzle_20_regular = "\uee3e"; + public const string weather_drizzle_24_regular = "\uee3f"; + public const string weather_drizzle_48_regular = "\uee40"; + public const string weather_duststorm_20_regular = "\uf871"; + public const string weather_duststorm_24_regular = "\uf872"; + public const string weather_duststorm_48_regular = "\uf873"; + public const string weather_fog_20_regular = "\uf874"; + public const string weather_fog_24_regular = "\uf875"; + public const string weather_fog_48_regular = "\uf876"; + public const string weather_hail_day_20_regular = "\uf877"; + public const string weather_hail_day_24_regular = "\uf878"; + public const string weather_hail_day_48_regular = "\uf879"; + public const string weather_hail_night_20_regular = "\uf87a"; + public const string weather_hail_night_24_regular = "\uf87b"; + public const string weather_hail_night_48_regular = "\uf87c"; + public const string weather_haze_20_regular = "\uee41"; + public const string weather_haze_24_regular = "\uee42"; + public const string weather_haze_48_regular = "\uee43"; + public const string weather_moon_16_regular = "\uee44"; + public const string weather_moon_20_regular = "\uf87d"; + public const string weather_moon_24_regular = "\uf87e"; + public const string weather_moon_28_regular = "\uee45"; + public const string weather_moon_48_regular = "\uf87f"; + public const string weather_moon_off_16_regular = "\uee46"; + public const string weather_moon_off_20_regular = "\uee47"; + public const string weather_moon_off_24_regular = "\uee48"; + public const string weather_moon_off_28_regular = "\uee49"; + public const string weather_moon_off_48_regular = "\uee4a"; + public const string weather_partly_cloudy_day_16_regular = "\uee4b"; + public const string weather_partly_cloudy_day_20_regular = "\uf880"; + public const string weather_partly_cloudy_day_24_regular = "\uf881"; + public const string weather_partly_cloudy_day_48_regular = "\uf882"; + public const string weather_partly_cloudy_night_20_regular = "\uf883"; + public const string weather_partly_cloudy_night_24_regular = "\uf884"; + public const string weather_partly_cloudy_night_48_regular = "\uf885"; + public const string weather_rain_20_regular = "\uf886"; + public const string weather_rain_24_regular = "\uf887"; + public const string weather_rain_48_regular = "\uf888"; + public const string weather_rain_showers_day_20_regular = "\uf889"; + public const string weather_rain_showers_day_24_regular = "\uf88a"; + public const string weather_rain_showers_day_48_regular = "\uf88b"; + public const string weather_rain_showers_night_20_regular = "\uf88c"; + public const string weather_rain_showers_night_24_regular = "\uf88d"; + public const string weather_rain_showers_night_48_regular = "\uf88e"; + public const string weather_rain_snow_20_regular = "\uf88f"; + public const string weather_rain_snow_24_regular = "\uf890"; + public const string weather_rain_snow_48_regular = "\uf891"; + public const string weather_snow_20_regular = "\uf892"; + public const string weather_snow_24_regular = "\uf893"; + public const string weather_snow_48_regular = "\uf894"; + public const string weather_snow_shower_day_20_regular = "\uf895"; + public const string weather_snow_shower_day_24_regular = "\uf896"; + public const string weather_snow_shower_day_48_regular = "\uf897"; + public const string weather_snow_shower_night_20_regular = "\uf898"; + public const string weather_snow_shower_night_24_regular = "\uf899"; + public const string weather_snow_shower_night_48_regular = "\uf89a"; + public const string weather_snowflake_20_regular = "\uf89b"; + public const string weather_snowflake_24_regular = "\uf89c"; + public const string weather_snowflake_32_regular = "\uefd4"; + public const string weather_snowflake_48_regular = "\uf89d"; + public const string weather_squalls_20_regular = "\uf89e"; + public const string weather_squalls_24_regular = "\uf89f"; + public const string weather_squalls_48_regular = "\uf8a0"; + public const string weather_sunny_16_regular = "\uee4c"; + public const string weather_sunny_28_regular = "\uee4d"; + public const string weather_sunny_32_regular = "\uee4e"; + public const string weather_sunny_48_regular = "\uf8a3"; + public const string weather_sunny_high_20_regular = "\uee4f"; + public const string weather_sunny_high_24_regular = "\uee50"; + public const string weather_sunny_high_48_regular = "\uee51"; + public const string weather_sunny_low_20_regular = "\uee52"; + public const string weather_sunny_low_24_regular = "\uee53"; + public const string weather_sunny_low_48_regular = "\uee54"; + public const string weather_thunderstorm_20_regular = "\uf8a4"; + public const string weather_thunderstorm_24_regular = "\uf8a5"; + public const string weather_thunderstorm_48_regular = "\uf8a6"; + public const string web_asset_16_regular = "\uf3fa"; + public const string web_asset_20_regular = "\uee55"; + public const string web_asset_24_regular = "\uf8a7"; + public const string whiteboard_16_regular = "\U000f04c4"; + public const string whiteboard_20_regular = "\uf8aa"; + public const string whiteboard_24_regular = "\uf8ab"; + public const string whiteboard_48_regular = "\uee56"; + public const string whiteboard_off_16_regular = "\U000f04c5"; + public const string whiteboard_off_20_regular = "\U000f04c6"; + public const string whiteboard_off_24_regular = "\U000f04c7"; + public const string wifi_1_20_regular = "\uf8ac"; + public const string wifi_1_24_regular = "\uf8ad"; + public const string wifi_2_20_regular = "\uf8ae"; + public const string wifi_2_24_regular = "\uf8af"; + public const string wifi_3_20_regular = "\uf8b0"; + public const string wifi_3_24_regular = "\uf8b1"; + public const string wifi_4_20_regular = "\uf8b2"; + public const string wifi_4_24_regular = "\uf8b3"; + public const string wifi_lock_20_regular = "\uee57"; + public const string wifi_lock_24_regular = "\uee58"; + public const string wifi_off_20_regular = "\uee59"; + public const string wifi_off_24_regular = "\uee5a"; + public const string wifi_settings_20_regular = "\uee5b"; + public const string wifi_warning_20_regular = "\uee5c"; + public const string wifi_warning_24_regular = "\uf7fd"; + public const string window_16_regular = "\uee5d"; + public const string window_20_regular = "\uf8b5"; + public const string window_24_regular = "\uee5e"; + public const string window_28_regular = "\uee5f"; + public const string window_48_regular = "\uee61"; + public const string window_ad_20_regular = "\uf8b6"; + public const string window_ad_24_regular = "\U000f04e3"; + public const string window_ad_off_20_regular = "\uee62"; + public const string window_ad_person_20_regular = "\uee63"; + public const string window_apps_16_regular = "\uee64"; + public const string window_apps_20_regular = "\uee65"; + public const string window_apps_24_regular = "\uee66"; + public const string window_apps_28_regular = "\uee67"; + public const string window_apps_32_regular = "\uee68"; + public const string window_apps_48_regular = "\uee69"; + public const string window_arrow_up_16_regular = "\uee6a"; + public const string window_arrow_up_20_regular = "\uee6b"; + public const string window_arrow_up_24_regular = "\uee6c"; + public const string window_bullet_list_20_regular = "\uee6d"; + public const string window_bullet_list_add_20_regular = "\uee6e"; + public const string window_console_20_regular = "\uee6f"; + public const string window_database_20_regular = "\uee70"; + public const string window_database_24_regular = "\uefd5"; + public const string window_database_32_regular = "\U000f02cf"; + public const string window_dev_edit_16_regular = "\uee71"; + public const string window_dev_edit_20_regular = "\uee72"; + public const string window_dev_tools_16_regular = "\uf8b7"; + public const string window_dev_tools_20_regular = "\uf8b8"; + public const string window_dev_tools_24_regular = "\uf8b9"; + public const string window_edit_16_regular = "\uf804"; + public const string window_edit_20_regular = "\uee73"; + public const string window_fingerprint_16_regular = "\U000f054b"; + public const string window_fingerprint_20_regular = "\U000f054c"; + public const string window_fingerprint_24_regular = "\U000f054d"; + public const string window_fingerprint_28_regular = "\U000f054e"; + public const string window_fingerprint_32_regular = "\U000f054f"; + public const string window_fingerprint_48_regular = "\U000f0550"; + public const string window_header_horizontal_20_regular = "\uee74"; + public const string window_header_horizontal_off_20_regular = "\uee75"; + public const string window_header_vertical_20_regular = "\uee76"; + public const string window_inprivate_20_regular = "\uf8ba"; + public const string window_inprivate_account_20_regular = "\uf8bb"; + public const string window_location_target_20_regular = "\uee77"; + public const string window_multiple_16_regular = "\uee78"; + public const string window_multiple_20_regular = "\uf8bc"; + public const string window_multiple_swap_20_regular = "\uee79"; + public const string window_new_16_regular = "\uee7a"; + public const string window_new_20_regular = "\uf8bd"; + public const string window_new_24_regular = "\uee7b"; + public const string window_play_20_regular = "\uee7c"; + public const string window_settings_20_regular = "\uee7d"; + public const string window_shield_16_regular = "\uf8be"; + public const string window_shield_20_regular = "\uf8bf"; + public const string window_shield_24_regular = "\uf8c0"; + public const string window_text_20_regular = "\uee7e"; + public const string window_wrench_16_regular = "\uee7f"; + public const string window_wrench_20_regular = "\uee80"; + public const string window_wrench_24_regular = "\uee81"; + public const string window_wrench_28_regular = "\uee82"; + public const string window_wrench_32_regular = "\uee83"; + public const string window_wrench_48_regular = "\uee84"; + public const string wrench_16_regular = "\uee85"; + public const string wrench_20_regular = "\uee86"; + public const string wrench_24_regular = "\uf8c1"; + public const string wrench_screwdriver_20_regular = "\uee87"; + public const string wrench_screwdriver_24_regular = "\uee88"; + public const string wrench_screwdriver_32_regular = "\U000f0461"; + public const string wrench_settings_20_regular = "\U000f04e4"; + public const string wrench_settings_24_regular = "\U000f04e5"; + public const string xbox_console_20_regular = "\uf8c2"; + public const string xbox_console_24_regular = "\uf8c3"; + public const string xbox_controller_16_regular = "\ueeb7"; + public const string xbox_controller_20_regular = "\ueeb8"; + public const string xbox_controller_24_regular = "\ueeb9"; + public const string xbox_controller_28_regular = "\ueeba"; + public const string xbox_controller_32_regular = "\ueebb"; + public const string xbox_controller_48_regular = "\ueebc"; + public const string xbox_controller_error_20_regular = "\uf098"; + public const string xbox_controller_error_24_regular = "\uf099"; + public const string xbox_controller_error_32_regular = "\uf09a"; + public const string xbox_controller_error_48_regular = "\uf09b"; + public const string xray_20_regular = "\uee89"; + public const string xray_24_regular = "\uee8a"; + public const string zoom_fit_16_regular = "\uee8b"; + public const string zoom_fit_20_regular = "\uee8c"; + public const string zoom_fit_24_regular = "\uee8d"; + public const string zoom_in_16_regular = "\uee8e"; + public const string zoom_in_20_regular = "\uf8c4"; + public const string zoom_in_24_regular = "\uf8c5"; + public const string zoom_out_16_regular = "\uee8f"; + public const string zoom_out_20_regular = "\uf8c6"; + public const string zoom_out_24_regular = "\uf8c7"; + } +} \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf similarity index 94% rename from Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf index 6cbaf4b..cd3efca 100644 Binary files a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf and b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Regular.ttf differ diff --git a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf similarity index 94% rename from Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf index 554d68a..2407699 100644 Binary files a/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf and b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Fonts/OpenSans-Semibold.ttf differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000..1d1b981 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Images/dotnet_bot.png differ diff --git a/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt similarity index 86% rename from Maui_ChartTooltip/Resources/Raw/AboutAssets.txt rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt index 15d6244..89dc758 100644 --- a/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Raw/AboutAssets.txt @@ -4,7 +4,7 @@ is automatically handled by the following `MauiAsset` Build Action within your ` -These files will be deployed with you package and will be accessible using Essentials: +These files will be deployed with your package and will be accessible using Essentials: async Task LoadMauiAsset() { diff --git a/Maui_ChartTooltip/Resources/Splash/splash.svg b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg similarity index 100% rename from Maui_ChartTooltip/Resources/Splash/splash.svg rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Splash/splash.svg diff --git a/Maui_ChartTooltip/Resources/Styles/Colors.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml similarity index 80% rename from Maui_ChartTooltip/Resources/Styles/Colors.xaml rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml index 245758b..30307a5 100644 --- a/Maui_ChartTooltip/Resources/Styles/Colors.xaml +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml @@ -4,11 +4,21 @@ xmlns="http://schemas.microsoft.com/dotnet/2021/maui" xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"> + + #512BD4 + #ac99ea + #242424 #DFD8F7 + #9880e5 #2B0B98 + White Black + #D600AA + #190649 + #1f1f1f + #E1E1E1 #C8C8C8 #ACACAC @@ -17,11 +27,13 @@ #404040 #212121 #141414 + + @@ -30,15 +42,4 @@ - - #F7B548 - #FFD590 - #FFE5B9 - #28C2D1 - #7BDDEF - #C3F2F4 - #3E8EED - #72ACF1 - #A7CBF6 - \ No newline at end of file diff --git a/Maui_ChartTooltip/Resources/Styles/Styles.xaml b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml similarity index 81% rename from Maui_ChartTooltip/Resources/Styles/Styles.xaml rename to Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml index 1ec9d55..86f574d 100644 --- a/Maui_ChartTooltip/Resources/Styles/Styles.xaml +++ b/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml @@ -20,16 +20,19 @@ + + + + + + + + diff --git a/Maui_ChartTooltip/ViewModel/ViewModel.cs b/Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs similarity index 100% rename from Maui_ChartTooltip/ViewModel/ViewModel.cs rename to Maui_ChartTooltip/Maui_ChartTooltip/ViewModel/ViewModel.cs diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs new file mode 100644 index 0000000..65b4d62 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+ec7dc3677ebad7234d11de4c170473e302626986")] +[assembly: System.Reflection.AssemblyProductAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyTitleAttribute("Maui_ChartTooltip")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] +[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Android35.0")] +[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Android21.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache new file mode 100644 index 0000000..6cc4924 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ec9705db76e2a3065dcab3edb1145c8f2948277555f0e736ed03db085cb1e1f7 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..75a3680 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,49 @@ +is_global = true +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = false +build_property.IncludeAllContentForSelfExtract = +build_property.TargetFramework = net9.0-android +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = false +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Maui_ChartTooltip +build_property.ProjectDir = D:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/App.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.App.xaml +build_metadata.AdditionalFiles.TargetPath = App.xaml +build_metadata.AdditionalFiles.RelativePath = App.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/AppShell.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.AppShell.xaml +build_metadata.AdditionalFiles.TargetPath = AppShell.xaml +build_metadata.AdditionalFiles.RelativePath = AppShell.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/MainPage.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.MainPage.xaml +build_metadata.AdditionalFiles.TargetPath = MainPage.xaml +build_metadata.AdditionalFiles.RelativePath = MainPage.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Colors.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.Resources.Styles.Colors.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Colors.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Colors.xaml + +[D:/ChangeFramework/How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-/Maui_ChartTooltip/Maui_ChartTooltip/Resources/Styles/Styles.xaml] +build_metadata.AdditionalFiles.GenKind = Xaml +build_metadata.AdditionalFiles.ManifestResourceName = Maui_ChartTooltip.Resources.Styles.Styles.xaml +build_metadata.AdditionalFiles.TargetPath = Resources\Styles\Styles.xaml +build_metadata.AdditionalFiles.RelativePath = Resources\Styles\Styles.xaml diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs new file mode 100644 index 0000000..a599ed6 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.GlobalUsings.g.cs @@ -0,0 +1,26 @@ +// +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Maui; +global using global::Microsoft.Maui.Accessibility; +global using global::Microsoft.Maui.ApplicationModel; +global using global::Microsoft.Maui.ApplicationModel.Communication; +global using global::Microsoft.Maui.ApplicationModel.DataTransfer; +global using global::Microsoft.Maui.Authentication; +global using global::Microsoft.Maui.Controls; +global using global::Microsoft.Maui.Controls.Hosting; +global using global::Microsoft.Maui.Controls.Xaml; +global using global::Microsoft.Maui.Devices; +global using global::Microsoft.Maui.Devices.Sensors; +global using global::Microsoft.Maui.Dispatching; +global using global::Microsoft.Maui.Graphics; +global using global::Microsoft.Maui.Hosting; +global using global::Microsoft.Maui.Media; +global using global::Microsoft.Maui.Networking; +global using global::Microsoft.Maui.Storage; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache new file mode 100644 index 0000000..8ad6e7a Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.assets.cache differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5dabde9 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/Maui_ChartTooltip.csproj.AssemblyReference.cache differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt new file mode 100644 index 0000000..28aeaf0 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/R.txt @@ -0,0 +1,7226 @@ +int anim abc_fade_in 0x7f010000 +int anim abc_fade_out 0x7f010001 +int anim abc_grow_fade_in_from_bottom 0x7f010002 +int anim abc_popup_enter 0x7f010003 +int anim abc_popup_exit 0x7f010004 +int anim abc_shrink_fade_out_from_bottom 0x7f010005 +int anim abc_slide_in_bottom 0x7f010006 +int anim abc_slide_in_top 0x7f010007 +int anim abc_slide_out_bottom 0x7f010008 +int anim abc_slide_out_top 0x7f010009 +int anim abc_tooltip_enter 0x7f01000a +int anim abc_tooltip_exit 0x7f01000b +int anim btn_checkbox_to_checked_box_inner_merged_animation 0x7f01000c +int anim btn_checkbox_to_checked_box_outer_merged_animation 0x7f01000d +int anim btn_checkbox_to_checked_icon_null_animation 0x7f01000e +int anim btn_checkbox_to_unchecked_box_inner_merged_animation 0x7f01000f +int anim btn_checkbox_to_unchecked_check_path_merged_animation 0x7f010010 +int anim btn_checkbox_to_unchecked_icon_null_animation 0x7f010011 +int anim btn_radio_to_off_mtrl_dot_group_animation 0x7f010012 +int anim btn_radio_to_off_mtrl_ring_outer_animation 0x7f010013 +int anim btn_radio_to_off_mtrl_ring_outer_path_animation 0x7f010014 +int anim btn_radio_to_on_mtrl_dot_group_animation 0x7f010015 +int anim btn_radio_to_on_mtrl_ring_outer_animation 0x7f010016 +int anim btn_radio_to_on_mtrl_ring_outer_path_animation 0x7f010017 +int anim design_bottom_sheet_slide_in 0x7f010018 +int anim design_bottom_sheet_slide_out 0x7f010019 +int anim design_snackbar_in 0x7f01001a +int anim design_snackbar_out 0x7f01001b +int anim enterfromleft 0x7f01001c +int anim enterfromright 0x7f01001d +int anim exittoleft 0x7f01001e +int anim exittoright 0x7f01001f +int anim fragment_fast_out_extra_slow_in 0x7f010020 +int anim linear_indeterminate_line1_head_interpolator 0x7f010021 +int anim linear_indeterminate_line1_tail_interpolator 0x7f010022 +int anim linear_indeterminate_line2_head_interpolator 0x7f010023 +int anim linear_indeterminate_line2_tail_interpolator 0x7f010024 +int anim m3_bottom_sheet_slide_in 0x7f010025 +int anim m3_bottom_sheet_slide_out 0x7f010026 +int anim m3_motion_fade_enter 0x7f010027 +int anim m3_motion_fade_exit 0x7f010028 +int anim m3_side_sheet_enter_from_left 0x7f010029 +int anim m3_side_sheet_enter_from_right 0x7f01002a +int anim m3_side_sheet_exit_to_left 0x7f01002b +int anim m3_side_sheet_exit_to_right 0x7f01002c +int anim mtrl_bottom_sheet_slide_in 0x7f01002d +int anim mtrl_bottom_sheet_slide_out 0x7f01002e +int anim mtrl_card_lowers_interpolator 0x7f01002f +int anim nav_default_enter_anim 0x7f010030 +int anim nav_default_exit_anim 0x7f010031 +int anim nav_default_pop_enter_anim 0x7f010032 +int anim nav_default_pop_exit_anim 0x7f010033 +int anim nav_modal_default_enter_anim 0x7f010034 +int anim nav_modal_default_exit_anim 0x7f010035 +int animator design_appbar_state_list_animator 0x7f020000 +int animator design_fab_hide_motion_spec 0x7f020001 +int animator design_fab_show_motion_spec 0x7f020002 +int animator fragment_close_enter 0x7f020003 +int animator fragment_close_exit 0x7f020004 +int animator fragment_fade_enter 0x7f020005 +int animator fragment_fade_exit 0x7f020006 +int animator fragment_open_enter 0x7f020007 +int animator fragment_open_exit 0x7f020008 +int animator m3_appbar_state_list_animator 0x7f020009 +int animator m3_btn_elevated_btn_state_list_anim 0x7f02000a +int animator m3_btn_state_list_anim 0x7f02000b +int animator m3_card_elevated_state_list_anim 0x7f02000c +int animator m3_card_state_list_anim 0x7f02000d +int animator m3_chip_state_list_anim 0x7f02000e +int animator m3_elevated_chip_state_list_anim 0x7f02000f +int animator m3_extended_fab_change_size_collapse_motion_spec 0x7f020010 +int animator m3_extended_fab_change_size_expand_motion_spec 0x7f020011 +int animator m3_extended_fab_hide_motion_spec 0x7f020012 +int animator m3_extended_fab_show_motion_spec 0x7f020013 +int animator m3_extended_fab_state_list_animator 0x7f020014 +int animator mtrl_btn_state_list_anim 0x7f020015 +int animator mtrl_btn_unelevated_state_list_anim 0x7f020016 +int animator mtrl_card_state_list_anim 0x7f020017 +int animator mtrl_chip_state_list_anim 0x7f020018 +int animator mtrl_extended_fab_change_size_collapse_motion_spec 0x7f020019 +int animator mtrl_extended_fab_change_size_expand_motion_spec 0x7f02001a +int animator mtrl_extended_fab_hide_motion_spec 0x7f02001b +int animator mtrl_extended_fab_show_motion_spec 0x7f02001c +int animator mtrl_extended_fab_state_list_animator 0x7f02001d +int animator mtrl_fab_hide_motion_spec 0x7f02001e +int animator mtrl_fab_show_motion_spec 0x7f02001f +int animator mtrl_fab_transformation_sheet_collapse_spec 0x7f020020 +int animator mtrl_fab_transformation_sheet_expand_spec 0x7f020021 +int animator nav_default_enter_anim 0x7f020022 +int animator nav_default_exit_anim 0x7f020023 +int animator nav_default_pop_enter_anim 0x7f020024 +int animator nav_default_pop_exit_anim 0x7f020025 +int attr SharedValue 0x7f030000 +int attr SharedValueId 0x7f030001 +int attr action 0x7f030002 +int attr actionBarDivider 0x7f030003 +int attr actionBarItemBackground 0x7f030004 +int attr actionBarPopupTheme 0x7f030005 +int attr actionBarSize 0x7f030006 +int attr actionBarSplitStyle 0x7f030007 +int attr actionBarStyle 0x7f030008 +int attr actionBarTabBarStyle 0x7f030009 +int attr actionBarTabStyle 0x7f03000a +int attr actionBarTabTextStyle 0x7f03000b +int attr actionBarTheme 0x7f03000c +int attr actionBarWidgetTheme 0x7f03000d +int attr actionButtonStyle 0x7f03000e +int attr actionDropDownStyle 0x7f03000f +int attr actionLayout 0x7f030010 +int attr actionMenuTextAppearance 0x7f030011 +int attr actionMenuTextColor 0x7f030012 +int attr actionModeBackground 0x7f030013 +int attr actionModeCloseButtonStyle 0x7f030014 +int attr actionModeCloseContentDescription 0x7f030015 +int attr actionModeCloseDrawable 0x7f030016 +int attr actionModeCopyDrawable 0x7f030017 +int attr actionModeCutDrawable 0x7f030018 +int attr actionModeFindDrawable 0x7f030019 +int attr actionModePasteDrawable 0x7f03001a +int attr actionModePopupWindowStyle 0x7f03001b +int attr actionModeSelectAllDrawable 0x7f03001c +int attr actionModeShareDrawable 0x7f03001d +int attr actionModeSplitBackground 0x7f03001e +int attr actionModeStyle 0x7f03001f +int attr actionModeTheme 0x7f030020 +int attr actionModeWebSearchDrawable 0x7f030021 +int attr actionOverflowButtonStyle 0x7f030022 +int attr actionOverflowMenuStyle 0x7f030023 +int attr actionProviderClass 0x7f030024 +int attr actionTextColorAlpha 0x7f030025 +int attr actionViewClass 0x7f030026 +int attr activeIndicatorLabelPadding 0x7f030027 +int attr activityAction 0x7f030028 +int attr activityChooserViewStyle 0x7f030029 +int attr activityName 0x7f03002a +int attr addElevationShadow 0x7f03002b +int attr alertDialogButtonGroupStyle 0x7f03002c +int attr alertDialogCenterButtons 0x7f03002d +int attr alertDialogStyle 0x7f03002e +int attr alertDialogTheme 0x7f03002f +int attr allowStacking 0x7f030030 +int attr alpha 0x7f030031 +int attr alphabeticModifiers 0x7f030032 +int attr altSrc 0x7f030033 +int attr alwaysExpand 0x7f030034 +int attr animateCircleAngleTo 0x7f030035 +int attr animateRelativeTo 0x7f030036 +int attr animationBackgroundColor 0x7f030037 +int attr animationMode 0x7f030038 +int attr appBarLayoutStyle 0x7f030039 +int attr applyMotionScene 0x7f03003a +int attr arcMode 0x7f03003b +int attr argType 0x7f03003c +int attr arrowHeadLength 0x7f03003d +int attr arrowShaftLength 0x7f03003e +int attr attributeName 0x7f03003f +int attr autoAdjustToWithinGrandparentBounds 0x7f030040 +int attr autoCompleteMode 0x7f030041 +int attr autoCompleteTextViewStyle 0x7f030042 +int attr autoSizeMaxTextSize 0x7f030043 +int attr autoSizeMinTextSize 0x7f030044 +int attr autoSizePresetSizes 0x7f030045 +int attr autoSizeStepGranularity 0x7f030046 +int attr autoSizeTextType 0x7f030047 +int attr autoTransition 0x7f030048 +int attr background 0x7f030049 +int attr backgroundColor 0x7f03004a +int attr backgroundInsetBottom 0x7f03004b +int attr backgroundInsetEnd 0x7f03004c +int attr backgroundInsetStart 0x7f03004d +int attr backgroundInsetTop 0x7f03004e +int attr backgroundOverlayColorAlpha 0x7f03004f +int attr backgroundSplit 0x7f030050 +int attr backgroundStacked 0x7f030051 +int attr backgroundTint 0x7f030052 +int attr backgroundTintMode 0x7f030053 +int attr badgeGravity 0x7f030054 +int attr badgeHeight 0x7f030055 +int attr badgeRadius 0x7f030056 +int attr badgeShapeAppearance 0x7f030057 +int attr badgeShapeAppearanceOverlay 0x7f030058 +int attr badgeStyle 0x7f030059 +int attr badgeText 0x7f03005a +int attr badgeTextAppearance 0x7f03005b +int attr badgeTextColor 0x7f03005c +int attr badgeVerticalPadding 0x7f03005d +int attr badgeWidePadding 0x7f03005e +int attr badgeWidth 0x7f03005f +int attr badgeWithTextHeight 0x7f030060 +int attr badgeWithTextRadius 0x7f030061 +int attr badgeWithTextShapeAppearance 0x7f030062 +int attr badgeWithTextShapeAppearanceOverlay 0x7f030063 +int attr badgeWithTextWidth 0x7f030064 +int attr barLength 0x7f030065 +int attr barrierAllowsGoneWidgets 0x7f030066 +int attr barrierDirection 0x7f030067 +int attr barrierMargin 0x7f030068 +int attr behavior_autoHide 0x7f030069 +int attr behavior_autoShrink 0x7f03006a +int attr behavior_draggable 0x7f03006b +int attr behavior_expandedOffset 0x7f03006c +int attr behavior_fitToContents 0x7f03006d +int attr behavior_halfExpandedRatio 0x7f03006e +int attr behavior_hideable 0x7f03006f +int attr behavior_overlapTop 0x7f030070 +int attr behavior_peekHeight 0x7f030071 +int attr behavior_saveFlags 0x7f030072 +int attr behavior_significantVelocityThreshold 0x7f030073 +int attr behavior_skipCollapsed 0x7f030074 +int attr blendSrc 0x7f030075 +int attr borderRound 0x7f030076 +int attr borderRoundPercent 0x7f030077 +int attr borderWidth 0x7f030078 +int attr borderlessButtonStyle 0x7f030079 +int attr bottomAppBarStyle 0x7f03007a +int attr bottomInsetScrimEnabled 0x7f03007b +int attr bottomNavigationStyle 0x7f03007c +int attr bottomNavigationViewStyle 0x7f03007d +int attr bottomSheetDialogTheme 0x7f03007e +int attr bottomSheetDragHandleStyle 0x7f03007f +int attr bottomSheetStyle 0x7f030080 +int attr boxBackgroundColor 0x7f030081 +int attr boxBackgroundMode 0x7f030082 +int attr boxCollapsedPaddingTop 0x7f030083 +int attr boxCornerRadiusBottomEnd 0x7f030084 +int attr boxCornerRadiusBottomStart 0x7f030085 +int attr boxCornerRadiusTopEnd 0x7f030086 +int attr boxCornerRadiusTopStart 0x7f030087 +int attr boxStrokeColor 0x7f030088 +int attr boxStrokeErrorColor 0x7f030089 +int attr boxStrokeWidth 0x7f03008a +int attr boxStrokeWidthFocused 0x7f03008b +int attr brightness 0x7f03008c +int attr buttonBarButtonStyle 0x7f03008d +int attr buttonBarNegativeButtonStyle 0x7f03008e +int attr buttonBarNeutralButtonStyle 0x7f03008f +int attr buttonBarPositiveButtonStyle 0x7f030090 +int attr buttonBarStyle 0x7f030091 +int attr buttonCompat 0x7f030092 +int attr buttonGravity 0x7f030093 +int attr buttonIcon 0x7f030094 +int attr buttonIconDimen 0x7f030095 +int attr buttonIconTint 0x7f030096 +int attr buttonIconTintMode 0x7f030097 +int attr buttonPanelSideLayout 0x7f030098 +int attr buttonStyle 0x7f030099 +int attr buttonStyleSmall 0x7f03009a +int attr buttonTint 0x7f03009b +int attr buttonTintMode 0x7f03009c +int attr cardBackgroundColor 0x7f03009d +int attr cardCornerRadius 0x7f03009e +int attr cardElevation 0x7f03009f +int attr cardForegroundColor 0x7f0300a0 +int attr cardMaxElevation 0x7f0300a1 +int attr cardPreventCornerOverlap 0x7f0300a2 +int attr cardUseCompatPadding 0x7f0300a3 +int attr cardViewStyle 0x7f0300a4 +int attr carousel_backwardTransition 0x7f0300a5 +int attr carousel_emptyViewsBehavior 0x7f0300a6 +int attr carousel_firstView 0x7f0300a7 +int attr carousel_forwardTransition 0x7f0300a8 +int attr carousel_infinite 0x7f0300a9 +int attr carousel_nextState 0x7f0300aa +int attr carousel_previousState 0x7f0300ab +int attr carousel_touchUpMode 0x7f0300ac +int attr carousel_touchUp_dampeningFactor 0x7f0300ad +int attr carousel_touchUp_velocityThreshold 0x7f0300ae +int attr centerIfNoTextEnabled 0x7f0300af +int attr chainUseRtl 0x7f0300b0 +int attr checkMarkCompat 0x7f0300b1 +int attr checkMarkTint 0x7f0300b2 +int attr checkMarkTintMode 0x7f0300b3 +int attr checkboxStyle 0x7f0300b4 +int attr checkedButton 0x7f0300b5 +int attr checkedChip 0x7f0300b6 +int attr checkedIcon 0x7f0300b7 +int attr checkedIconEnabled 0x7f0300b8 +int attr checkedIconGravity 0x7f0300b9 +int attr checkedIconMargin 0x7f0300ba +int attr checkedIconSize 0x7f0300bb +int attr checkedIconTint 0x7f0300bc +int attr checkedIconVisible 0x7f0300bd +int attr checkedState 0x7f0300be +int attr checkedTextViewStyle 0x7f0300bf +int attr chipBackgroundColor 0x7f0300c0 +int attr chipCornerRadius 0x7f0300c1 +int attr chipEndPadding 0x7f0300c2 +int attr chipGroupStyle 0x7f0300c3 +int attr chipIcon 0x7f0300c4 +int attr chipIconEnabled 0x7f0300c5 +int attr chipIconSize 0x7f0300c6 +int attr chipIconTint 0x7f0300c7 +int attr chipIconVisible 0x7f0300c8 +int attr chipMinHeight 0x7f0300c9 +int attr chipMinTouchTargetSize 0x7f0300ca +int attr chipSpacing 0x7f0300cb +int attr chipSpacingHorizontal 0x7f0300cc +int attr chipSpacingVertical 0x7f0300cd +int attr chipStandaloneStyle 0x7f0300ce +int attr chipStartPadding 0x7f0300cf +int attr chipStrokeColor 0x7f0300d0 +int attr chipStrokeWidth 0x7f0300d1 +int attr chipStyle 0x7f0300d2 +int attr chipSurfaceColor 0x7f0300d3 +int attr circleRadius 0x7f0300d4 +int attr circularProgressIndicatorStyle 0x7f0300d5 +int attr circularflow_angles 0x7f0300d6 +int attr circularflow_defaultAngle 0x7f0300d7 +int attr circularflow_defaultRadius 0x7f0300d8 +int attr circularflow_radiusInDP 0x7f0300d9 +int attr circularflow_viewCenter 0x7f0300da +int attr clearTop 0x7f0300db +int attr clearsTag 0x7f0300dc +int attr clickAction 0x7f0300dd +int attr clockFaceBackgroundColor 0x7f0300de +int attr clockHandColor 0x7f0300df +int attr clockIcon 0x7f0300e0 +int attr clockNumberTextColor 0x7f0300e1 +int attr closeIcon 0x7f0300e2 +int attr closeIconEnabled 0x7f0300e3 +int attr closeIconEndPadding 0x7f0300e4 +int attr closeIconSize 0x7f0300e5 +int attr closeIconStartPadding 0x7f0300e6 +int attr closeIconTint 0x7f0300e7 +int attr closeIconVisible 0x7f0300e8 +int attr closeItemLayout 0x7f0300e9 +int attr collapseContentDescription 0x7f0300ea +int attr collapseIcon 0x7f0300eb +int attr collapsedSize 0x7f0300ec +int attr collapsedTitleGravity 0x7f0300ed +int attr collapsedTitleTextAppearance 0x7f0300ee +int attr collapsedTitleTextColor 0x7f0300ef +int attr collapsingToolbarLayoutLargeSize 0x7f0300f0 +int attr collapsingToolbarLayoutLargeStyle 0x7f0300f1 +int attr collapsingToolbarLayoutMediumSize 0x7f0300f2 +int attr collapsingToolbarLayoutMediumStyle 0x7f0300f3 +int attr collapsingToolbarLayoutStyle 0x7f0300f4 +int attr collectionViewStyle 0x7f0300f5 +int attr color 0x7f0300f6 +int attr colorAccent 0x7f0300f7 +int attr colorBackgroundFloating 0x7f0300f8 +int attr colorButtonNormal 0x7f0300f9 +int attr colorContainer 0x7f0300fa +int attr colorControlActivated 0x7f0300fb +int attr colorControlHighlight 0x7f0300fc +int attr colorControlNormal 0x7f0300fd +int attr colorError 0x7f0300fe +int attr colorErrorContainer 0x7f0300ff +int attr colorOnBackground 0x7f030100 +int attr colorOnContainer 0x7f030101 +int attr colorOnContainerUnchecked 0x7f030102 +int attr colorOnError 0x7f030103 +int attr colorOnErrorContainer 0x7f030104 +int attr colorOnPrimary 0x7f030105 +int attr colorOnPrimaryContainer 0x7f030106 +int attr colorOnPrimaryFixed 0x7f030107 +int attr colorOnPrimaryFixedVariant 0x7f030108 +int attr colorOnPrimarySurface 0x7f030109 +int attr colorOnSecondary 0x7f03010a +int attr colorOnSecondaryContainer 0x7f03010b +int attr colorOnSecondaryFixed 0x7f03010c +int attr colorOnSecondaryFixedVariant 0x7f03010d +int attr colorOnSurface 0x7f03010e +int attr colorOnSurfaceInverse 0x7f03010f +int attr colorOnSurfaceVariant 0x7f030110 +int attr colorOnTertiary 0x7f030111 +int attr colorOnTertiaryContainer 0x7f030112 +int attr colorOnTertiaryFixed 0x7f030113 +int attr colorOnTertiaryFixedVariant 0x7f030114 +int attr colorOutline 0x7f030115 +int attr colorOutlineVariant 0x7f030116 +int attr colorPrimary 0x7f030117 +int attr colorPrimaryContainer 0x7f030118 +int attr colorPrimaryDark 0x7f030119 +int attr colorPrimaryFixed 0x7f03011a +int attr colorPrimaryFixedDim 0x7f03011b +int attr colorPrimaryInverse 0x7f03011c +int attr colorPrimarySurface 0x7f03011d +int attr colorPrimaryVariant 0x7f03011e +int attr colorSecondary 0x7f03011f +int attr colorSecondaryContainer 0x7f030120 +int attr colorSecondaryFixed 0x7f030121 +int attr colorSecondaryFixedDim 0x7f030122 +int attr colorSecondaryVariant 0x7f030123 +int attr colorSurface 0x7f030124 +int attr colorSurfaceBright 0x7f030125 +int attr colorSurfaceContainer 0x7f030126 +int attr colorSurfaceContainerHigh 0x7f030127 +int attr colorSurfaceContainerHighest 0x7f030128 +int attr colorSurfaceContainerLow 0x7f030129 +int attr colorSurfaceContainerLowest 0x7f03012a +int attr colorSurfaceDim 0x7f03012b +int attr colorSurfaceInverse 0x7f03012c +int attr colorSurfaceVariant 0x7f03012d +int attr colorSwitchThumbNormal 0x7f03012e +int attr colorTertiary 0x7f03012f +int attr colorTertiaryContainer 0x7f030130 +int attr colorTertiaryFixed 0x7f030131 +int attr colorTertiaryFixedDim 0x7f030132 +int attr commitIcon 0x7f030133 +int attr compatShadowEnabled 0x7f030134 +int attr constraintRotate 0x7f030135 +int attr constraintSet 0x7f030136 +int attr constraintSetEnd 0x7f030137 +int attr constraintSetStart 0x7f030138 +int attr constraint_referenced_ids 0x7f030139 +int attr constraint_referenced_tags 0x7f03013a +int attr constraints 0x7f03013b +int attr content 0x7f03013c +int attr contentDescription 0x7f03013d +int attr contentInsetEnd 0x7f03013e +int attr contentInsetEndWithActions 0x7f03013f +int attr contentInsetLeft 0x7f030140 +int attr contentInsetRight 0x7f030141 +int attr contentInsetStart 0x7f030142 +int attr contentInsetStartWithNavigation 0x7f030143 +int attr contentPadding 0x7f030144 +int attr contentPaddingBottom 0x7f030145 +int attr contentPaddingEnd 0x7f030146 +int attr contentPaddingLeft 0x7f030147 +int attr contentPaddingRight 0x7f030148 +int attr contentPaddingStart 0x7f030149 +int attr contentPaddingTop 0x7f03014a +int attr contentScrim 0x7f03014b +int attr contrast 0x7f03014c +int attr controlBackground 0x7f03014d +int attr coordinatorLayoutStyle 0x7f03014e +int attr coplanarSiblingViewId 0x7f03014f +int attr cornerFamily 0x7f030150 +int attr cornerFamilyBottomLeft 0x7f030151 +int attr cornerFamilyBottomRight 0x7f030152 +int attr cornerFamilyTopLeft 0x7f030153 +int attr cornerFamilyTopRight 0x7f030154 +int attr cornerRadius 0x7f030155 +int attr cornerSize 0x7f030156 +int attr cornerSizeBottomLeft 0x7f030157 +int attr cornerSizeBottomRight 0x7f030158 +int attr cornerSizeTopLeft 0x7f030159 +int attr cornerSizeTopRight 0x7f03015a +int attr counterEnabled 0x7f03015b +int attr counterMaxLength 0x7f03015c +int attr counterOverflowTextAppearance 0x7f03015d +int attr counterOverflowTextColor 0x7f03015e +int attr counterTextAppearance 0x7f03015f +int attr counterTextColor 0x7f030160 +int attr crossfade 0x7f030161 +int attr currentState 0x7f030162 +int attr cursorColor 0x7f030163 +int attr cursorErrorColor 0x7f030164 +int attr curveFit 0x7f030165 +int attr customBoolean 0x7f030166 +int attr customColorDrawableValue 0x7f030167 +int attr customColorValue 0x7f030168 +int attr customDimension 0x7f030169 +int attr customFloatValue 0x7f03016a +int attr customIntegerValue 0x7f03016b +int attr customNavigationLayout 0x7f03016c +int attr customPixelDimension 0x7f03016d +int attr customReference 0x7f03016e +int attr customStringValue 0x7f03016f +int attr data 0x7f030170 +int attr dataPattern 0x7f030171 +int attr dayInvalidStyle 0x7f030172 +int attr daySelectedStyle 0x7f030173 +int attr dayStyle 0x7f030174 +int attr dayTodayStyle 0x7f030175 +int attr defaultDuration 0x7f030176 +int attr defaultMarginsEnabled 0x7f030177 +int attr defaultNavHost 0x7f030178 +int attr defaultQueryHint 0x7f030179 +int attr defaultScrollFlagsEnabled 0x7f03017a +int attr defaultState 0x7f03017b +int attr deltaPolarAngle 0x7f03017c +int attr deltaPolarRadius 0x7f03017d +int attr deriveConstraintsFrom 0x7f03017e +int attr destination 0x7f03017f +int attr dialogCornerRadius 0x7f030180 +int attr dialogPreferredPadding 0x7f030181 +int attr dialogTheme 0x7f030182 +int attr displayOptions 0x7f030183 +int attr divider 0x7f030184 +int attr dividerColor 0x7f030185 +int attr dividerHorizontal 0x7f030186 +int attr dividerInsetEnd 0x7f030187 +int attr dividerInsetStart 0x7f030188 +int attr dividerPadding 0x7f030189 +int attr dividerThickness 0x7f03018a +int attr dividerVertical 0x7f03018b +int attr dragDirection 0x7f03018c +int attr dragScale 0x7f03018d +int attr dragThreshold 0x7f03018e +int attr drawPath 0x7f03018f +int attr drawableBottomCompat 0x7f030190 +int attr drawableEndCompat 0x7f030191 +int attr drawableLeftCompat 0x7f030192 +int attr drawableRightCompat 0x7f030193 +int attr drawableSize 0x7f030194 +int attr drawableStartCompat 0x7f030195 +int attr drawableTint 0x7f030196 +int attr drawableTintMode 0x7f030197 +int attr drawableTopCompat 0x7f030198 +int attr drawerArrowStyle 0x7f030199 +int attr drawerLayoutCornerSize 0x7f03019a +int attr drawerLayoutStyle 0x7f03019b +int attr dropDownBackgroundTint 0x7f03019c +int attr dropDownListViewStyle 0x7f03019d +int attr dropdownListPreferredItemHeight 0x7f03019e +int attr duration 0x7f03019f +int attr dynamicColorThemeOverlay 0x7f0301a0 +int attr editTextBackground 0x7f0301a1 +int attr editTextColor 0x7f0301a2 +int attr editTextStyle 0x7f0301a3 +int attr elevation 0x7f0301a4 +int attr elevationOverlayAccentColor 0x7f0301a5 +int attr elevationOverlayColor 0x7f0301a6 +int attr elevationOverlayEnabled 0x7f0301a7 +int attr emojiCompatEnabled 0x7f0301a8 +int attr enableEdgeToEdge 0x7f0301a9 +int attr endIconCheckable 0x7f0301aa +int attr endIconContentDescription 0x7f0301ab +int attr endIconDrawable 0x7f0301ac +int attr endIconMinSize 0x7f0301ad +int attr endIconMode 0x7f0301ae +int attr endIconScaleType 0x7f0301af +int attr endIconTint 0x7f0301b0 +int attr endIconTintMode 0x7f0301b1 +int attr enforceMaterialTheme 0x7f0301b2 +int attr enforceTextAppearance 0x7f0301b3 +int attr ensureMinTouchTargetSize 0x7f0301b4 +int attr enterAnim 0x7f0301b5 +int attr errorAccessibilityLabel 0x7f0301b6 +int attr errorAccessibilityLiveRegion 0x7f0301b7 +int attr errorContentDescription 0x7f0301b8 +int attr errorEnabled 0x7f0301b9 +int attr errorIconDrawable 0x7f0301ba +int attr errorIconTint 0x7f0301bb +int attr errorIconTintMode 0x7f0301bc +int attr errorShown 0x7f0301bd +int attr errorTextAppearance 0x7f0301be +int attr errorTextColor 0x7f0301bf +int attr exitAnim 0x7f0301c0 +int attr expandActivityOverflowButtonDrawable 0x7f0301c1 +int attr expanded 0x7f0301c2 +int attr expandedHintEnabled 0x7f0301c3 +int attr expandedTitleGravity 0x7f0301c4 +int attr expandedTitleMargin 0x7f0301c5 +int attr expandedTitleMarginBottom 0x7f0301c6 +int attr expandedTitleMarginEnd 0x7f0301c7 +int attr expandedTitleMarginStart 0x7f0301c8 +int attr expandedTitleMarginTop 0x7f0301c9 +int attr expandedTitleTextAppearance 0x7f0301ca +int attr expandedTitleTextColor 0x7f0301cb +int attr extendMotionSpec 0x7f0301cc +int attr extendStrategy 0x7f0301cd +int attr extendedFloatingActionButtonPrimaryStyle 0x7f0301ce +int attr extendedFloatingActionButtonSecondaryStyle 0x7f0301cf +int attr extendedFloatingActionButtonStyle 0x7f0301d0 +int attr extendedFloatingActionButtonSurfaceStyle 0x7f0301d1 +int attr extendedFloatingActionButtonTertiaryStyle 0x7f0301d2 +int attr extraMultilineHeightEnabled 0x7f0301d3 +int attr fabAlignmentMode 0x7f0301d4 +int attr fabAlignmentModeEndMargin 0x7f0301d5 +int attr fabAnchorMode 0x7f0301d6 +int attr fabAnimationMode 0x7f0301d7 +int attr fabCradleMargin 0x7f0301d8 +int attr fabCradleRoundedCornerRadius 0x7f0301d9 +int attr fabCradleVerticalOffset 0x7f0301da +int attr fabCustomSize 0x7f0301db +int attr fabSize 0x7f0301dc +int attr fastScrollEnabled 0x7f0301dd +int attr fastScrollHorizontalThumbDrawable 0x7f0301de +int attr fastScrollHorizontalTrackDrawable 0x7f0301df +int attr fastScrollVerticalThumbDrawable 0x7f0301e0 +int attr fastScrollVerticalTrackDrawable 0x7f0301e1 +int attr finishPrimaryWithPlaceholder 0x7f0301e2 +int attr finishPrimaryWithSecondary 0x7f0301e3 +int attr finishSecondaryWithPrimary 0x7f0301e4 +int attr firstBaselineToTopHeight 0x7f0301e5 +int attr floatingActionButtonLargePrimaryStyle 0x7f0301e6 +int attr floatingActionButtonLargeSecondaryStyle 0x7f0301e7 +int attr floatingActionButtonLargeStyle 0x7f0301e8 +int attr floatingActionButtonLargeSurfaceStyle 0x7f0301e9 +int attr floatingActionButtonLargeTertiaryStyle 0x7f0301ea +int attr floatingActionButtonPrimaryStyle 0x7f0301eb +int attr floatingActionButtonSecondaryStyle 0x7f0301ec +int attr floatingActionButtonSmallPrimaryStyle 0x7f0301ed +int attr floatingActionButtonSmallSecondaryStyle 0x7f0301ee +int attr floatingActionButtonSmallStyle 0x7f0301ef +int attr floatingActionButtonSmallSurfaceStyle 0x7f0301f0 +int attr floatingActionButtonSmallTertiaryStyle 0x7f0301f1 +int attr floatingActionButtonStyle 0x7f0301f2 +int attr floatingActionButtonSurfaceStyle 0x7f0301f3 +int attr floatingActionButtonTertiaryStyle 0x7f0301f4 +int attr flow_firstHorizontalBias 0x7f0301f5 +int attr flow_firstHorizontalStyle 0x7f0301f6 +int attr flow_firstVerticalBias 0x7f0301f7 +int attr flow_firstVerticalStyle 0x7f0301f8 +int attr flow_horizontalAlign 0x7f0301f9 +int attr flow_horizontalBias 0x7f0301fa +int attr flow_horizontalGap 0x7f0301fb +int attr flow_horizontalStyle 0x7f0301fc +int attr flow_lastHorizontalBias 0x7f0301fd +int attr flow_lastHorizontalStyle 0x7f0301fe +int attr flow_lastVerticalBias 0x7f0301ff +int attr flow_lastVerticalStyle 0x7f030200 +int attr flow_maxElementsWrap 0x7f030201 +int attr flow_padding 0x7f030202 +int attr flow_verticalAlign 0x7f030203 +int attr flow_verticalBias 0x7f030204 +int attr flow_verticalGap 0x7f030205 +int attr flow_verticalStyle 0x7f030206 +int attr flow_wrapMode 0x7f030207 +int attr font 0x7f030208 +int attr fontFamily 0x7f030209 +int attr fontProviderAuthority 0x7f03020a +int attr fontProviderCerts 0x7f03020b +int attr fontProviderFetchStrategy 0x7f03020c +int attr fontProviderFetchTimeout 0x7f03020d +int attr fontProviderPackage 0x7f03020e +int attr fontProviderQuery 0x7f03020f +int attr fontProviderSystemFontFamily 0x7f030210 +int attr fontStyle 0x7f030211 +int attr fontVariationSettings 0x7f030212 +int attr fontWeight 0x7f030213 +int attr forceApplySystemWindowInsetTop 0x7f030214 +int attr forceDefaultNavigationOnClickListener 0x7f030215 +int attr foregroundInsidePadding 0x7f030216 +int attr framePosition 0x7f030217 +int attr gapBetweenBars 0x7f030218 +int attr gestureInsetBottomIgnored 0x7f030219 +int attr goIcon 0x7f03021a +int attr graph 0x7f03021b +int attr guidelineUseRtl 0x7f03021c +int attr haloColor 0x7f03021d +int attr haloRadius 0x7f03021e +int attr headerLayout 0x7f03021f +int attr height 0x7f030220 +int attr helperText 0x7f030221 +int attr helperTextEnabled 0x7f030222 +int attr helperTextTextAppearance 0x7f030223 +int attr helperTextTextColor 0x7f030224 +int attr hideAnimationBehavior 0x7f030225 +int attr hideMotionSpec 0x7f030226 +int attr hideNavigationIcon 0x7f030227 +int attr hideOnContentScroll 0x7f030228 +int attr hideOnScroll 0x7f030229 +int attr hintAnimationEnabled 0x7f03022a +int attr hintEnabled 0x7f03022b +int attr hintTextAppearance 0x7f03022c +int attr hintTextColor 0x7f03022d +int attr homeAsUpIndicator 0x7f03022e +int attr homeLayout 0x7f03022f +int attr horizontalOffset 0x7f030230 +int attr horizontalOffsetWithText 0x7f030231 +int attr hoveredFocusedTranslationZ 0x7f030232 +int attr icon 0x7f030233 +int attr iconEndPadding 0x7f030234 +int attr iconGravity 0x7f030235 +int attr iconPadding 0x7f030236 +int attr iconSize 0x7f030237 +int attr iconStartPadding 0x7f030238 +int attr iconTint 0x7f030239 +int attr iconTintMode 0x7f03023a +int attr iconifiedByDefault 0x7f03023b +int attr ifTagNotSet 0x7f03023c +int attr ifTagSet 0x7f03023d +int attr imageButtonStyle 0x7f03023e +int attr imagePanX 0x7f03023f +int attr imagePanY 0x7f030240 +int attr imageRotate 0x7f030241 +int attr imageZoom 0x7f030242 +int attr indeterminateAnimationType 0x7f030243 +int attr indeterminateProgressStyle 0x7f030244 +int attr indicatorColor 0x7f030245 +int attr indicatorDirectionCircular 0x7f030246 +int attr indicatorDirectionLinear 0x7f030247 +int attr indicatorInset 0x7f030248 +int attr indicatorSize 0x7f030249 +int attr initialActivityCount 0x7f03024a +int attr insetForeground 0x7f03024b +int attr isLightTheme 0x7f03024c +int attr isMaterial3DynamicColorApplied 0x7f03024d +int attr isMaterial3Theme 0x7f03024e +int attr isMaterialTheme 0x7f03024f +int attr itemActiveIndicatorStyle 0x7f030250 +int attr itemBackground 0x7f030251 +int attr itemFillColor 0x7f030252 +int attr itemHorizontalPadding 0x7f030253 +int attr itemHorizontalTranslationEnabled 0x7f030254 +int attr itemIconPadding 0x7f030255 +int attr itemIconSize 0x7f030256 +int attr itemIconTint 0x7f030257 +int attr itemMaxLines 0x7f030258 +int attr itemMinHeight 0x7f030259 +int attr itemPadding 0x7f03025a +int attr itemPaddingBottom 0x7f03025b +int attr itemPaddingTop 0x7f03025c +int attr itemRippleColor 0x7f03025d +int attr itemShapeAppearance 0x7f03025e +int attr itemShapeAppearanceOverlay 0x7f03025f +int attr itemShapeFillColor 0x7f030260 +int attr itemShapeInsetBottom 0x7f030261 +int attr itemShapeInsetEnd 0x7f030262 +int attr itemShapeInsetStart 0x7f030263 +int attr itemShapeInsetTop 0x7f030264 +int attr itemSpacing 0x7f030265 +int attr itemStrokeColor 0x7f030266 +int attr itemStrokeWidth 0x7f030267 +int attr itemTextAppearance 0x7f030268 +int attr itemTextAppearanceActive 0x7f030269 +int attr itemTextAppearanceActiveBoldEnabled 0x7f03026a +int attr itemTextAppearanceInactive 0x7f03026b +int attr itemTextColor 0x7f03026c +int attr itemVerticalPadding 0x7f03026d +int attr keyPositionType 0x7f03026e +int attr keyboardIcon 0x7f03026f +int attr keylines 0x7f030270 +int attr lStar 0x7f030271 +int attr labelBehavior 0x7f030272 +int attr labelStyle 0x7f030273 +int attr labelVisibilityMode 0x7f030274 +int attr largeFontVerticalOffsetAdjustment 0x7f030275 +int attr lastBaselineToBottomHeight 0x7f030276 +int attr lastItemDecorated 0x7f030277 +int attr launchSingleTop 0x7f030278 +int attr layout 0x7f030279 +int attr layoutDescription 0x7f03027a +int attr layoutDuringTransition 0x7f03027b +int attr layoutManager 0x7f03027c +int attr layout_anchor 0x7f03027d +int attr layout_anchorGravity 0x7f03027e +int attr layout_behavior 0x7f03027f +int attr layout_collapseMode 0x7f030280 +int attr layout_collapseParallaxMultiplier 0x7f030281 +int attr layout_constrainedHeight 0x7f030282 +int attr layout_constrainedWidth 0x7f030283 +int attr layout_constraintBaseline_creator 0x7f030284 +int attr layout_constraintBaseline_toBaselineOf 0x7f030285 +int attr layout_constraintBaseline_toBottomOf 0x7f030286 +int attr layout_constraintBaseline_toTopOf 0x7f030287 +int attr layout_constraintBottom_creator 0x7f030288 +int attr layout_constraintBottom_toBottomOf 0x7f030289 +int attr layout_constraintBottom_toTopOf 0x7f03028a +int attr layout_constraintCircle 0x7f03028b +int attr layout_constraintCircleAngle 0x7f03028c +int attr layout_constraintCircleRadius 0x7f03028d +int attr layout_constraintDimensionRatio 0x7f03028e +int attr layout_constraintEnd_toEndOf 0x7f03028f +int attr layout_constraintEnd_toStartOf 0x7f030290 +int attr layout_constraintGuide_begin 0x7f030291 +int attr layout_constraintGuide_end 0x7f030292 +int attr layout_constraintGuide_percent 0x7f030293 +int attr layout_constraintHeight 0x7f030294 +int attr layout_constraintHeight_default 0x7f030295 +int attr layout_constraintHeight_max 0x7f030296 +int attr layout_constraintHeight_min 0x7f030297 +int attr layout_constraintHeight_percent 0x7f030298 +int attr layout_constraintHorizontal_bias 0x7f030299 +int attr layout_constraintHorizontal_chainStyle 0x7f03029a +int attr layout_constraintHorizontal_weight 0x7f03029b +int attr layout_constraintLeft_creator 0x7f03029c +int attr layout_constraintLeft_toLeftOf 0x7f03029d +int attr layout_constraintLeft_toRightOf 0x7f03029e +int attr layout_constraintRight_creator 0x7f03029f +int attr layout_constraintRight_toLeftOf 0x7f0302a0 +int attr layout_constraintRight_toRightOf 0x7f0302a1 +int attr layout_constraintStart_toEndOf 0x7f0302a2 +int attr layout_constraintStart_toStartOf 0x7f0302a3 +int attr layout_constraintTag 0x7f0302a4 +int attr layout_constraintTop_creator 0x7f0302a5 +int attr layout_constraintTop_toBottomOf 0x7f0302a6 +int attr layout_constraintTop_toTopOf 0x7f0302a7 +int attr layout_constraintVertical_bias 0x7f0302a8 +int attr layout_constraintVertical_chainStyle 0x7f0302a9 +int attr layout_constraintVertical_weight 0x7f0302aa +int attr layout_constraintWidth 0x7f0302ab +int attr layout_constraintWidth_default 0x7f0302ac +int attr layout_constraintWidth_max 0x7f0302ad +int attr layout_constraintWidth_min 0x7f0302ae +int attr layout_constraintWidth_percent 0x7f0302af +int attr layout_dodgeInsetEdges 0x7f0302b0 +int attr layout_editor_absoluteX 0x7f0302b1 +int attr layout_editor_absoluteY 0x7f0302b2 +int attr layout_goneMarginBaseline 0x7f0302b3 +int attr layout_goneMarginBottom 0x7f0302b4 +int attr layout_goneMarginEnd 0x7f0302b5 +int attr layout_goneMarginLeft 0x7f0302b6 +int attr layout_goneMarginRight 0x7f0302b7 +int attr layout_goneMarginStart 0x7f0302b8 +int attr layout_goneMarginTop 0x7f0302b9 +int attr layout_insetEdge 0x7f0302ba +int attr layout_keyline 0x7f0302bb +int attr layout_marginBaseline 0x7f0302bc +int attr layout_optimizationLevel 0x7f0302bd +int attr layout_scrollEffect 0x7f0302be +int attr layout_scrollFlags 0x7f0302bf +int attr layout_scrollInterpolator 0x7f0302c0 +int attr layout_wrapBehaviorInParent 0x7f0302c1 +int attr liftOnScroll 0x7f0302c2 +int attr liftOnScrollColor 0x7f0302c3 +int attr liftOnScrollTargetViewId 0x7f0302c4 +int attr limitBoundsTo 0x7f0302c5 +int attr lineHeight 0x7f0302c6 +int attr lineSpacing 0x7f0302c7 +int attr linearProgressIndicatorStyle 0x7f0302c8 +int attr listChoiceBackgroundIndicator 0x7f0302c9 +int attr listChoiceIndicatorMultipleAnimated 0x7f0302ca +int attr listChoiceIndicatorSingleAnimated 0x7f0302cb +int attr listDividerAlertDialog 0x7f0302cc +int attr listItemLayout 0x7f0302cd +int attr listLayout 0x7f0302ce +int attr listMenuViewStyle 0x7f0302cf +int attr listPopupWindowStyle 0x7f0302d0 +int attr listPreferredItemHeight 0x7f0302d1 +int attr listPreferredItemHeightLarge 0x7f0302d2 +int attr listPreferredItemHeightSmall 0x7f0302d3 +int attr listPreferredItemPaddingEnd 0x7f0302d4 +int attr listPreferredItemPaddingLeft 0x7f0302d5 +int attr listPreferredItemPaddingRight 0x7f0302d6 +int attr listPreferredItemPaddingStart 0x7f0302d7 +int attr logo 0x7f0302d8 +int attr logoAdjustViewBounds 0x7f0302d9 +int attr logoDescription 0x7f0302da +int attr logoScaleType 0x7f0302db +int attr marginHorizontal 0x7f0302dc +int attr marginLeftSystemWindowInsets 0x7f0302dd +int attr marginRightSystemWindowInsets 0x7f0302de +int attr marginTopSystemWindowInsets 0x7f0302df +int attr materialAlertDialogBodyTextStyle 0x7f0302e0 +int attr materialAlertDialogButtonSpacerVisibility 0x7f0302e1 +int attr materialAlertDialogTheme 0x7f0302e2 +int attr materialAlertDialogTitleIconStyle 0x7f0302e3 +int attr materialAlertDialogTitlePanelStyle 0x7f0302e4 +int attr materialAlertDialogTitleTextStyle 0x7f0302e5 +int attr materialButtonOutlinedStyle 0x7f0302e6 +int attr materialButtonStyle 0x7f0302e7 +int attr materialButtonToggleGroupStyle 0x7f0302e8 +int attr materialCalendarDay 0x7f0302e9 +int attr materialCalendarDayOfWeekLabel 0x7f0302ea +int attr materialCalendarFullscreenTheme 0x7f0302eb +int attr materialCalendarHeaderCancelButton 0x7f0302ec +int attr materialCalendarHeaderConfirmButton 0x7f0302ed +int attr materialCalendarHeaderDivider 0x7f0302ee +int attr materialCalendarHeaderLayout 0x7f0302ef +int attr materialCalendarHeaderSelection 0x7f0302f0 +int attr materialCalendarHeaderTitle 0x7f0302f1 +int attr materialCalendarHeaderToggleButton 0x7f0302f2 +int attr materialCalendarMonth 0x7f0302f3 +int attr materialCalendarMonthNavigationButton 0x7f0302f4 +int attr materialCalendarStyle 0x7f0302f5 +int attr materialCalendarTheme 0x7f0302f6 +int attr materialCalendarYearNavigationButton 0x7f0302f7 +int attr materialCardViewElevatedStyle 0x7f0302f8 +int attr materialCardViewFilledStyle 0x7f0302f9 +int attr materialCardViewOutlinedStyle 0x7f0302fa +int attr materialCardViewStyle 0x7f0302fb +int attr materialCircleRadius 0x7f0302fc +int attr materialClockStyle 0x7f0302fd +int attr materialDisplayDividerStyle 0x7f0302fe +int attr materialIconButtonFilledStyle 0x7f0302ff +int attr materialIconButtonFilledTonalStyle 0x7f030300 +int attr materialIconButtonOutlinedStyle 0x7f030301 +int attr materialIconButtonStyle 0x7f030302 +int attr materialSearchBarStyle 0x7f030303 +int attr materialSearchViewPrefixStyle 0x7f030304 +int attr materialSearchViewStyle 0x7f030305 +int attr materialSearchViewToolbarHeight 0x7f030306 +int attr materialSearchViewToolbarStyle 0x7f030307 +int attr materialThemeOverlay 0x7f030308 +int attr materialTimePickerStyle 0x7f030309 +int attr materialTimePickerTheme 0x7f03030a +int attr materialTimePickerTitleStyle 0x7f03030b +int attr maui_edgetoedge_optout 0x7f03030c +int attr maui_splash 0x7f03030d +int attr maxAcceleration 0x7f03030e +int attr maxActionInlineWidth 0x7f03030f +int attr maxButtonHeight 0x7f030310 +int attr maxCharacterCount 0x7f030311 +int attr maxHeight 0x7f030312 +int attr maxImageSize 0x7f030313 +int attr maxLines 0x7f030314 +int attr maxNumber 0x7f030315 +int attr maxVelocity 0x7f030316 +int attr maxWidth 0x7f030317 +int attr measureWithLargestChild 0x7f030318 +int attr menu 0x7f030319 +int attr menuAlignmentMode 0x7f03031a +int attr menuGravity 0x7f03031b +int attr methodName 0x7f03031c +int attr mimeType 0x7f03031d +int attr minHeight 0x7f03031e +int attr minHideDelay 0x7f03031f +int attr minSeparation 0x7f030320 +int attr minTouchTargetSize 0x7f030321 +int attr minWidth 0x7f030322 +int attr mock_diagonalsColor 0x7f030323 +int attr mock_label 0x7f030324 +int attr mock_labelBackgroundColor 0x7f030325 +int attr mock_labelColor 0x7f030326 +int attr mock_showDiagonals 0x7f030327 +int attr mock_showLabel 0x7f030328 +int attr motionDebug 0x7f030329 +int attr motionDurationExtraLong1 0x7f03032a +int attr motionDurationExtraLong2 0x7f03032b +int attr motionDurationExtraLong3 0x7f03032c +int attr motionDurationExtraLong4 0x7f03032d +int attr motionDurationLong1 0x7f03032e +int attr motionDurationLong2 0x7f03032f +int attr motionDurationLong3 0x7f030330 +int attr motionDurationLong4 0x7f030331 +int attr motionDurationMedium1 0x7f030332 +int attr motionDurationMedium2 0x7f030333 +int attr motionDurationMedium3 0x7f030334 +int attr motionDurationMedium4 0x7f030335 +int attr motionDurationShort1 0x7f030336 +int attr motionDurationShort2 0x7f030337 +int attr motionDurationShort3 0x7f030338 +int attr motionDurationShort4 0x7f030339 +int attr motionEasingAccelerated 0x7f03033a +int attr motionEasingDecelerated 0x7f03033b +int attr motionEasingEmphasized 0x7f03033c +int attr motionEasingEmphasizedAccelerateInterpolator 0x7f03033d +int attr motionEasingEmphasizedDecelerateInterpolator 0x7f03033e +int attr motionEasingEmphasizedInterpolator 0x7f03033f +int attr motionEasingLinear 0x7f030340 +int attr motionEasingLinearInterpolator 0x7f030341 +int attr motionEasingStandard 0x7f030342 +int attr motionEasingStandardAccelerateInterpolator 0x7f030343 +int attr motionEasingStandardDecelerateInterpolator 0x7f030344 +int attr motionEasingStandardInterpolator 0x7f030345 +int attr motionEffect_alpha 0x7f030346 +int attr motionEffect_end 0x7f030347 +int attr motionEffect_move 0x7f030348 +int attr motionEffect_start 0x7f030349 +int attr motionEffect_strict 0x7f03034a +int attr motionEffect_translationX 0x7f03034b +int attr motionEffect_translationY 0x7f03034c +int attr motionEffect_viewTransition 0x7f03034d +int attr motionInterpolator 0x7f03034e +int attr motionPath 0x7f03034f +int attr motionPathRotate 0x7f030350 +int attr motionProgress 0x7f030351 +int attr motionStagger 0x7f030352 +int attr motionTarget 0x7f030353 +int attr motion_postLayoutCollision 0x7f030354 +int attr motion_triggerOnCollision 0x7f030355 +int attr moveWhenScrollAtTop 0x7f030356 +int attr multiChoiceItemLayout 0x7f030357 +int attr navGraph 0x7f030358 +int attr navigationContentDescription 0x7f030359 +int attr navigationIcon 0x7f03035a +int attr navigationIconTint 0x7f03035b +int attr navigationMode 0x7f03035c +int attr navigationRailStyle 0x7f03035d +int attr navigationViewStyle 0x7f03035e +int attr nestedScrollFlags 0x7f03035f +int attr nestedScrollViewStyle 0x7f030360 +int attr nestedScrollable 0x7f030361 +int attr nullable 0x7f030362 +int attr number 0x7f030363 +int attr numericModifiers 0x7f030364 +int attr offsetAlignmentMode 0x7f030365 +int attr onCross 0x7f030366 +int attr onHide 0x7f030367 +int attr onNegativeCross 0x7f030368 +int attr onPositiveCross 0x7f030369 +int attr onShow 0x7f03036a +int attr onStateTransition 0x7f03036b +int attr onTouchUp 0x7f03036c +int attr overlapAnchor 0x7f03036d +int attr overlay 0x7f03036e +int attr paddingBottomNoButtons 0x7f03036f +int attr paddingBottomSystemWindowInsets 0x7f030370 +int attr paddingEnd 0x7f030371 +int attr paddingLeftSystemWindowInsets 0x7f030372 +int attr paddingRightSystemWindowInsets 0x7f030373 +int attr paddingStart 0x7f030374 +int attr paddingStartSystemWindowInsets 0x7f030375 +int attr paddingTopNoTitle 0x7f030376 +int attr paddingTopSystemWindowInsets 0x7f030377 +int attr panelBackground 0x7f030378 +int attr panelMenuListTheme 0x7f030379 +int attr panelMenuListWidth 0x7f03037a +int attr passwordToggleContentDescription 0x7f03037b +int attr passwordToggleDrawable 0x7f03037c +int attr passwordToggleEnabled 0x7f03037d +int attr passwordToggleTint 0x7f03037e +int attr passwordToggleTintMode 0x7f03037f +int attr pathMotionArc 0x7f030380 +int attr path_percent 0x7f030381 +int attr percentHeight 0x7f030382 +int attr percentWidth 0x7f030383 +int attr percentX 0x7f030384 +int attr percentY 0x7f030385 +int attr perpendicularPath_percent 0x7f030386 +int attr pivotAnchor 0x7f030387 +int attr placeholderActivityName 0x7f030388 +int attr placeholderText 0x7f030389 +int attr placeholderTextAppearance 0x7f03038a +int attr placeholderTextColor 0x7f03038b +int attr placeholder_emptyVisibility 0x7f03038c +int attr polarRelativeTo 0x7f03038d +int attr popEnterAnim 0x7f03038e +int attr popExitAnim 0x7f03038f +int attr popUpTo 0x7f030390 +int attr popUpToInclusive 0x7f030391 +int attr popUpToSaveState 0x7f030392 +int attr popupMenuBackground 0x7f030393 +int attr popupMenuStyle 0x7f030394 +int attr popupTheme 0x7f030395 +int attr popupWindowStyle 0x7f030396 +int attr prefixText 0x7f030397 +int attr prefixTextAppearance 0x7f030398 +int attr prefixTextColor 0x7f030399 +int attr preserveIconSpacing 0x7f03039a +int attr pressedTranslationZ 0x7f03039b +int attr primaryActivityName 0x7f03039c +int attr progressBarPadding 0x7f03039d +int attr progressBarStyle 0x7f03039e +int attr quantizeMotionInterpolator 0x7f03039f +int attr quantizeMotionPhase 0x7f0303a0 +int attr quantizeMotionSteps 0x7f0303a1 +int attr queryBackground 0x7f0303a2 +int attr queryHint 0x7f0303a3 +int attr queryPatterns 0x7f0303a4 +int attr radioButtonStyle 0x7f0303a5 +int attr rangeFillColor 0x7f0303a6 +int attr ratingBarStyle 0x7f0303a7 +int attr ratingBarStyleIndicator 0x7f0303a8 +int attr ratingBarStyleSmall 0x7f0303a9 +int attr reactiveGuide_animateChange 0x7f0303aa +int attr reactiveGuide_applyToAllConstraintSets 0x7f0303ab +int attr reactiveGuide_applyToConstraintSet 0x7f0303ac +int attr reactiveGuide_valueId 0x7f0303ad +int attr recyclerViewStyle 0x7f0303ae +int attr region_heightLessThan 0x7f0303af +int attr region_heightMoreThan 0x7f0303b0 +int attr region_widthLessThan 0x7f0303b1 +int attr region_widthMoreThan 0x7f0303b2 +int attr removeEmbeddedFabElevation 0x7f0303b3 +int attr restoreState 0x7f0303b4 +int attr reverseLayout 0x7f0303b5 +int attr rippleColor 0x7f0303b6 +int attr rotationCenterId 0x7f0303b7 +int attr round 0x7f0303b8 +int attr roundPercent 0x7f0303b9 +int attr route 0x7f0303ba +int attr saturation 0x7f0303bb +int attr scaleFromTextSize 0x7f0303bc +int attr scrimAnimationDuration 0x7f0303bd +int attr scrimBackground 0x7f0303be +int attr scrimVisibleHeightTrigger 0x7f0303bf +int attr scrollViewStyle 0x7f0303c0 +int attr searchHintIcon 0x7f0303c1 +int attr searchIcon 0x7f0303c2 +int attr searchViewStyle 0x7f0303c3 +int attr secondaryActivityAction 0x7f0303c4 +int attr secondaryActivityName 0x7f0303c5 +int attr seekBarStyle 0x7f0303c6 +int attr selectableItemBackground 0x7f0303c7 +int attr selectableItemBackgroundBorderless 0x7f0303c8 +int attr selectionRequired 0x7f0303c9 +int attr selectorSize 0x7f0303ca +int attr setsTag 0x7f0303cb +int attr shapeAppearance 0x7f0303cc +int attr shapeAppearanceCornerExtraLarge 0x7f0303cd +int attr shapeAppearanceCornerExtraSmall 0x7f0303ce +int attr shapeAppearanceCornerLarge 0x7f0303cf +int attr shapeAppearanceCornerMedium 0x7f0303d0 +int attr shapeAppearanceCornerSmall 0x7f0303d1 +int attr shapeAppearanceLargeComponent 0x7f0303d2 +int attr shapeAppearanceMediumComponent 0x7f0303d3 +int attr shapeAppearanceOverlay 0x7f0303d4 +int attr shapeAppearanceSmallComponent 0x7f0303d5 +int attr shapeCornerFamily 0x7f0303d6 +int attr shortcutMatchRequired 0x7f0303d7 +int attr shouldRemoveExpandedCorners 0x7f0303d8 +int attr showAnimationBehavior 0x7f0303d9 +int attr showAsAction 0x7f0303da +int attr showDelay 0x7f0303db +int attr showDividers 0x7f0303dc +int attr showMotionSpec 0x7f0303dd +int attr showPaths 0x7f0303de +int attr showText 0x7f0303df +int attr showTitle 0x7f0303e0 +int attr shrinkMotionSpec 0x7f0303e1 +int attr sideSheetDialogTheme 0x7f0303e2 +int attr sideSheetModalStyle 0x7f0303e3 +int attr simpleItemLayout 0x7f0303e4 +int attr simpleItemSelectedColor 0x7f0303e5 +int attr simpleItemSelectedRippleColor 0x7f0303e6 +int attr simpleItems 0x7f0303e7 +int attr singleChoiceItemLayout 0x7f0303e8 +int attr singleLine 0x7f0303e9 +int attr singleSelection 0x7f0303ea +int attr sizePercent 0x7f0303eb +int attr sliderStyle 0x7f0303ec +int attr snackbarButtonStyle 0x7f0303ed +int attr snackbarStyle 0x7f0303ee +int attr snackbarTextViewStyle 0x7f0303ef +int attr spanCount 0x7f0303f0 +int attr spinBars 0x7f0303f1 +int attr spinnerDropDownItemStyle 0x7f0303f2 +int attr spinnerStyle 0x7f0303f3 +int attr splitLayoutDirection 0x7f0303f4 +int attr splitMaxAspectRatioInLandscape 0x7f0303f5 +int attr splitMaxAspectRatioInPortrait 0x7f0303f6 +int attr splitMinHeightDp 0x7f0303f7 +int attr splitMinSmallestWidthDp 0x7f0303f8 +int attr splitMinWidthDp 0x7f0303f9 +int attr splitRatio 0x7f0303fa +int attr splitTrack 0x7f0303fb +int attr springBoundary 0x7f0303fc +int attr springDamping 0x7f0303fd +int attr springMass 0x7f0303fe +int attr springStiffness 0x7f0303ff +int attr springStopThreshold 0x7f030400 +int attr srcCompat 0x7f030401 +int attr stackFromEnd 0x7f030402 +int attr staggered 0x7f030403 +int attr startDestination 0x7f030404 +int attr startIconCheckable 0x7f030405 +int attr startIconContentDescription 0x7f030406 +int attr startIconDrawable 0x7f030407 +int attr startIconMinSize 0x7f030408 +int attr startIconScaleType 0x7f030409 +int attr startIconTint 0x7f03040a +int attr startIconTintMode 0x7f03040b +int attr state_above_anchor 0x7f03040c +int attr state_collapsed 0x7f03040d +int attr state_collapsible 0x7f03040e +int attr state_dragged 0x7f03040f +int attr state_error 0x7f030410 +int attr state_indeterminate 0x7f030411 +int attr state_liftable 0x7f030412 +int attr state_lifted 0x7f030413 +int attr state_with_icon 0x7f030414 +int attr statusBarBackground 0x7f030415 +int attr statusBarForeground 0x7f030416 +int attr statusBarScrim 0x7f030417 +int attr stickyPlaceholder 0x7f030418 +int attr strokeColor 0x7f030419 +int attr strokeWidth 0x7f03041a +int attr subMenuArrow 0x7f03041b +int attr subheaderColor 0x7f03041c +int attr subheaderInsetEnd 0x7f03041d +int attr subheaderInsetStart 0x7f03041e +int attr subheaderTextAppearance 0x7f03041f +int attr submitBackground 0x7f030420 +int attr subtitle 0x7f030421 +int attr subtitleCentered 0x7f030422 +int attr subtitleTextAppearance 0x7f030423 +int attr subtitleTextColor 0x7f030424 +int attr subtitleTextStyle 0x7f030425 +int attr suffixText 0x7f030426 +int attr suffixTextAppearance 0x7f030427 +int attr suffixTextColor 0x7f030428 +int attr suggestionRowLayout 0x7f030429 +int attr swipeRefreshLayoutProgressSpinnerBackgroundColor 0x7f03042a +int attr switchMinWidth 0x7f03042b +int attr switchPadding 0x7f03042c +int attr switchStyle 0x7f03042d +int attr switchTextAppearance 0x7f03042e +int attr tabBackground 0x7f03042f +int attr tabContentStart 0x7f030430 +int attr tabGravity 0x7f030431 +int attr tabIconTint 0x7f030432 +int attr tabIconTintMode 0x7f030433 +int attr tabIndicator 0x7f030434 +int attr tabIndicatorAnimationDuration 0x7f030435 +int attr tabIndicatorAnimationMode 0x7f030436 +int attr tabIndicatorColor 0x7f030437 +int attr tabIndicatorFullWidth 0x7f030438 +int attr tabIndicatorGravity 0x7f030439 +int attr tabIndicatorHeight 0x7f03043a +int attr tabInlineLabel 0x7f03043b +int attr tabMaxWidth 0x7f03043c +int attr tabMinWidth 0x7f03043d +int attr tabMode 0x7f03043e +int attr tabPadding 0x7f03043f +int attr tabPaddingBottom 0x7f030440 +int attr tabPaddingEnd 0x7f030441 +int attr tabPaddingStart 0x7f030442 +int attr tabPaddingTop 0x7f030443 +int attr tabRippleColor 0x7f030444 +int attr tabSecondaryStyle 0x7f030445 +int attr tabSelectedTextAppearance 0x7f030446 +int attr tabSelectedTextColor 0x7f030447 +int attr tabStyle 0x7f030448 +int attr tabTextAppearance 0x7f030449 +int attr tabTextColor 0x7f03044a +int attr tabUnboundedRipple 0x7f03044b +int attr tag 0x7f03044c +int attr targetId 0x7f03044d +int attr targetPackage 0x7f03044e +int attr telltales_tailColor 0x7f03044f +int attr telltales_tailScale 0x7f030450 +int attr telltales_velocityMode 0x7f030451 +int attr textAllCaps 0x7f030452 +int attr textAppearanceBody1 0x7f030453 +int attr textAppearanceBody2 0x7f030454 +int attr textAppearanceBodyLarge 0x7f030455 +int attr textAppearanceBodyMedium 0x7f030456 +int attr textAppearanceBodySmall 0x7f030457 +int attr textAppearanceButton 0x7f030458 +int attr textAppearanceCaption 0x7f030459 +int attr textAppearanceDisplayLarge 0x7f03045a +int attr textAppearanceDisplayMedium 0x7f03045b +int attr textAppearanceDisplaySmall 0x7f03045c +int attr textAppearanceHeadline1 0x7f03045d +int attr textAppearanceHeadline2 0x7f03045e +int attr textAppearanceHeadline3 0x7f03045f +int attr textAppearanceHeadline4 0x7f030460 +int attr textAppearanceHeadline5 0x7f030461 +int attr textAppearanceHeadline6 0x7f030462 +int attr textAppearanceHeadlineLarge 0x7f030463 +int attr textAppearanceHeadlineMedium 0x7f030464 +int attr textAppearanceHeadlineSmall 0x7f030465 +int attr textAppearanceLabelLarge 0x7f030466 +int attr textAppearanceLabelMedium 0x7f030467 +int attr textAppearanceLabelSmall 0x7f030468 +int attr textAppearanceLargePopupMenu 0x7f030469 +int attr textAppearanceLineHeightEnabled 0x7f03046a +int attr textAppearanceListItem 0x7f03046b +int attr textAppearanceListItemSecondary 0x7f03046c +int attr textAppearanceListItemSmall 0x7f03046d +int attr textAppearanceOverline 0x7f03046e +int attr textAppearancePopupMenuHeader 0x7f03046f +int attr textAppearanceSearchResultSubtitle 0x7f030470 +int attr textAppearanceSearchResultTitle 0x7f030471 +int attr textAppearanceSmallPopupMenu 0x7f030472 +int attr textAppearanceSubtitle1 0x7f030473 +int attr textAppearanceSubtitle2 0x7f030474 +int attr textAppearanceTitleLarge 0x7f030475 +int attr textAppearanceTitleMedium 0x7f030476 +int attr textAppearanceTitleSmall 0x7f030477 +int attr textBackground 0x7f030478 +int attr textBackgroundPanX 0x7f030479 +int attr textBackgroundPanY 0x7f03047a +int attr textBackgroundRotate 0x7f03047b +int attr textBackgroundZoom 0x7f03047c +int attr textColorAlertDialogListItem 0x7f03047d +int attr textColorSearchUrl 0x7f03047e +int attr textEndPadding 0x7f03047f +int attr textFillColor 0x7f030480 +int attr textInputFilledDenseStyle 0x7f030481 +int attr textInputFilledExposedDropdownMenuStyle 0x7f030482 +int attr textInputFilledStyle 0x7f030483 +int attr textInputLayoutFocusedRectEnabled 0x7f030484 +int attr textInputOutlinedDenseStyle 0x7f030485 +int attr textInputOutlinedExposedDropdownMenuStyle 0x7f030486 +int attr textInputOutlinedStyle 0x7f030487 +int attr textInputStyle 0x7f030488 +int attr textLocale 0x7f030489 +int attr textOutlineColor 0x7f03048a +int attr textOutlineThickness 0x7f03048b +int attr textPanX 0x7f03048c +int attr textPanY 0x7f03048d +int attr textStartPadding 0x7f03048e +int attr textureBlurFactor 0x7f03048f +int attr textureEffect 0x7f030490 +int attr textureHeight 0x7f030491 +int attr textureWidth 0x7f030492 +int attr theme 0x7f030493 +int attr thickness 0x7f030494 +int attr thumbColor 0x7f030495 +int attr thumbElevation 0x7f030496 +int attr thumbIcon 0x7f030497 +int attr thumbIconSize 0x7f030498 +int attr thumbIconTint 0x7f030499 +int attr thumbIconTintMode 0x7f03049a +int attr thumbRadius 0x7f03049b +int attr thumbStrokeColor 0x7f03049c +int attr thumbStrokeWidth 0x7f03049d +int attr thumbTextPadding 0x7f03049e +int attr thumbTint 0x7f03049f +int attr thumbTintMode 0x7f0304a0 +int attr tickColor 0x7f0304a1 +int attr tickColorActive 0x7f0304a2 +int attr tickColorInactive 0x7f0304a3 +int attr tickMark 0x7f0304a4 +int attr tickMarkTint 0x7f0304a5 +int attr tickMarkTintMode 0x7f0304a6 +int attr tickRadiusActive 0x7f0304a7 +int attr tickRadiusInactive 0x7f0304a8 +int attr tickVisible 0x7f0304a9 +int attr tint 0x7f0304aa +int attr tintMode 0x7f0304ab +int attr tintNavigationIcon 0x7f0304ac +int attr title 0x7f0304ad +int attr titleCentered 0x7f0304ae +int attr titleCollapseMode 0x7f0304af +int attr titleEnabled 0x7f0304b0 +int attr titleMargin 0x7f0304b1 +int attr titleMarginBottom 0x7f0304b2 +int attr titleMarginEnd 0x7f0304b3 +int attr titleMarginStart 0x7f0304b4 +int attr titleMarginTop 0x7f0304b5 +int attr titleMargins 0x7f0304b6 +int attr titlePositionInterpolator 0x7f0304b7 +int attr titleTextAppearance 0x7f0304b8 +int attr titleTextColor 0x7f0304b9 +int attr titleTextEllipsize 0x7f0304ba +int attr titleTextStyle 0x7f0304bb +int attr toggleCheckedStateOnClick 0x7f0304bc +int attr toolbarId 0x7f0304bd +int attr toolbarNavigationButtonStyle 0x7f0304be +int attr toolbarStyle 0x7f0304bf +int attr toolbarSurfaceStyle 0x7f0304c0 +int attr tooltipForegroundColor 0x7f0304c1 +int attr tooltipFrameBackground 0x7f0304c2 +int attr tooltipStyle 0x7f0304c3 +int attr tooltipText 0x7f0304c4 +int attr topInsetScrimEnabled 0x7f0304c5 +int attr touchAnchorId 0x7f0304c6 +int attr touchAnchorSide 0x7f0304c7 +int attr touchRegionId 0x7f0304c8 +int attr track 0x7f0304c9 +int attr trackColor 0x7f0304ca +int attr trackColorActive 0x7f0304cb +int attr trackColorInactive 0x7f0304cc +int attr trackCornerRadius 0x7f0304cd +int attr trackDecoration 0x7f0304ce +int attr trackDecorationTint 0x7f0304cf +int attr trackDecorationTintMode 0x7f0304d0 +int attr trackHeight 0x7f0304d1 +int attr trackThickness 0x7f0304d2 +int attr trackTint 0x7f0304d3 +int attr trackTintMode 0x7f0304d4 +int attr transformPivotTarget 0x7f0304d5 +int attr transitionDisable 0x7f0304d6 +int attr transitionEasing 0x7f0304d7 +int attr transitionFlags 0x7f0304d8 +int attr transitionPathRotate 0x7f0304d9 +int attr transitionShapeAppearance 0x7f0304da +int attr triggerId 0x7f0304db +int attr triggerReceiver 0x7f0304dc +int attr triggerSlack 0x7f0304dd +int attr ttcIndex 0x7f0304de +int attr upDuration 0x7f0304df +int attr uri 0x7f0304e0 +int attr useCompatPadding 0x7f0304e1 +int attr useMaterialThemeColors 0x7f0304e2 +int attr values 0x7f0304e3 +int attr verticalOffset 0x7f0304e4 +int attr verticalOffsetWithText 0x7f0304e5 +int attr viewInflaterClass 0x7f0304e6 +int attr viewTransitionMode 0x7f0304e7 +int attr viewTransitionOnCross 0x7f0304e8 +int attr viewTransitionOnNegativeCross 0x7f0304e9 +int attr viewTransitionOnPositiveCross 0x7f0304ea +int attr visibilityMode 0x7f0304eb +int attr voiceIcon 0x7f0304ec +int attr warmth 0x7f0304ed +int attr waveDecay 0x7f0304ee +int attr waveOffset 0x7f0304ef +int attr wavePeriod 0x7f0304f0 +int attr wavePhase 0x7f0304f1 +int attr waveShape 0x7f0304f2 +int attr waveVariesBy 0x7f0304f3 +int attr windowActionBar 0x7f0304f4 +int attr windowActionBarOverlay 0x7f0304f5 +int attr windowActionModeOverlay 0x7f0304f6 +int attr windowFixedHeightMajor 0x7f0304f7 +int attr windowFixedHeightMinor 0x7f0304f8 +int attr windowFixedWidthMajor 0x7f0304f9 +int attr windowFixedWidthMinor 0x7f0304fa +int attr windowMinWidthMajor 0x7f0304fb +int attr windowMinWidthMinor 0x7f0304fc +int attr windowNoTitle 0x7f0304fd +int attr yearSelectedStyle 0x7f0304fe +int attr yearStyle 0x7f0304ff +int attr yearTodayStyle 0x7f030500 +int bool abc_action_bar_embed_tabs 0x7f040000 +int bool abc_config_actionMenuItemAllCaps 0x7f040001 +int bool mtrl_btn_textappearance_all_caps 0x7f040002 +int color abc_background_cache_hint_selector_material_dark 0x7f050000 +int color abc_background_cache_hint_selector_material_light 0x7f050001 +int color abc_btn_colored_borderless_text_material 0x7f050002 +int color abc_btn_colored_text_material 0x7f050003 +int color abc_color_highlight_material 0x7f050004 +int color abc_decor_view_status_guard 0x7f050005 +int color abc_decor_view_status_guard_light 0x7f050006 +int color abc_hint_foreground_material_dark 0x7f050007 +int color abc_hint_foreground_material_light 0x7f050008 +int color abc_primary_text_disable_only_material_dark 0x7f050009 +int color abc_primary_text_disable_only_material_light 0x7f05000a +int color abc_primary_text_material_dark 0x7f05000b +int color abc_primary_text_material_light 0x7f05000c +int color abc_search_url_text 0x7f05000d +int color abc_search_url_text_normal 0x7f05000e +int color abc_search_url_text_pressed 0x7f05000f +int color abc_search_url_text_selected 0x7f050010 +int color abc_secondary_text_material_dark 0x7f050011 +int color abc_secondary_text_material_light 0x7f050012 +int color abc_tint_btn_checkable 0x7f050013 +int color abc_tint_default 0x7f050014 +int color abc_tint_edittext 0x7f050015 +int color abc_tint_seek_thumb 0x7f050016 +int color abc_tint_spinner 0x7f050017 +int color abc_tint_switch_track 0x7f050018 +int color accent_material_dark 0x7f050019 +int color accent_material_light 0x7f05001a +int color androidx_core_ripple_material_light 0x7f05001b +int color androidx_core_secondary_text_default_material_light 0x7f05001c +int color background_floating_material_dark 0x7f05001d +int color background_floating_material_light 0x7f05001e +int color background_material_dark 0x7f05001f +int color background_material_light 0x7f050020 +int color bright_foreground_disabled_material_dark 0x7f050021 +int color bright_foreground_disabled_material_light 0x7f050022 +int color bright_foreground_inverse_material_dark 0x7f050023 +int color bright_foreground_inverse_material_light 0x7f050024 +int color bright_foreground_material_dark 0x7f050025 +int color bright_foreground_material_light 0x7f050026 +int color browser_actions_bg_grey 0x7f050027 +int color browser_actions_divider_color 0x7f050028 +int color browser_actions_text_color 0x7f050029 +int color browser_actions_title_color 0x7f05002a +int color button_material_dark 0x7f05002b +int color button_material_light 0x7f05002c +int color call_notification_answer_color 0x7f05002d +int color call_notification_decline_color 0x7f05002e +int color cardview_dark_background 0x7f05002f +int color cardview_light_background 0x7f050030 +int color cardview_shadow_end_color 0x7f050031 +int color cardview_shadow_start_color 0x7f050032 +int color colorAccent 0x7f050033 +int color colorActionMenuTextColor 0x7f050034 +int color colorPrimary 0x7f050035 +int color colorPrimaryDark 0x7f050036 +int color design_bottom_navigation_shadow_color 0x7f050037 +int color design_box_stroke_color 0x7f050038 +int color design_dark_default_color_background 0x7f050039 +int color design_dark_default_color_error 0x7f05003a +int color design_dark_default_color_on_background 0x7f05003b +int color design_dark_default_color_on_error 0x7f05003c +int color design_dark_default_color_on_primary 0x7f05003d +int color design_dark_default_color_on_secondary 0x7f05003e +int color design_dark_default_color_on_surface 0x7f05003f +int color design_dark_default_color_primary 0x7f050040 +int color design_dark_default_color_primary_dark 0x7f050041 +int color design_dark_default_color_primary_variant 0x7f050042 +int color design_dark_default_color_secondary 0x7f050043 +int color design_dark_default_color_secondary_variant 0x7f050044 +int color design_dark_default_color_surface 0x7f050045 +int color design_default_color_background 0x7f050046 +int color design_default_color_error 0x7f050047 +int color design_default_color_on_background 0x7f050048 +int color design_default_color_on_error 0x7f050049 +int color design_default_color_on_primary 0x7f05004a +int color design_default_color_on_secondary 0x7f05004b +int color design_default_color_on_surface 0x7f05004c +int color design_default_color_primary 0x7f05004d +int color design_default_color_primary_dark 0x7f05004e +int color design_default_color_primary_variant 0x7f05004f +int color design_default_color_secondary 0x7f050050 +int color design_default_color_secondary_variant 0x7f050051 +int color design_default_color_surface 0x7f050052 +int color design_error 0x7f050053 +int color design_fab_shadow_end_color 0x7f050054 +int color design_fab_shadow_mid_color 0x7f050055 +int color design_fab_shadow_start_color 0x7f050056 +int color design_fab_stroke_end_inner_color 0x7f050057 +int color design_fab_stroke_end_outer_color 0x7f050058 +int color design_fab_stroke_top_inner_color 0x7f050059 +int color design_fab_stroke_top_outer_color 0x7f05005a +int color design_icon_tint 0x7f05005b +int color design_snackbar_background_color 0x7f05005c +int color dim_foreground_disabled_material_dark 0x7f05005d +int color dim_foreground_disabled_material_light 0x7f05005e +int color dim_foreground_material_dark 0x7f05005f +int color dim_foreground_material_light 0x7f050060 +int color error_color_material_dark 0x7f050061 +int color error_color_material_light 0x7f050062 +int color foreground_material_dark 0x7f050063 +int color foreground_material_light 0x7f050064 +int color highlighted_text_material_dark 0x7f050065 +int color highlighted_text_material_light 0x7f050066 +int color m3_appbar_overlay_color 0x7f050067 +int color m3_assist_chip_icon_tint_color 0x7f050068 +int color m3_assist_chip_stroke_color 0x7f050069 +int color m3_bottom_sheet_drag_handle_color 0x7f05006a +int color m3_button_background_color_selector 0x7f05006b +int color m3_button_foreground_color_selector 0x7f05006c +int color m3_button_outline_color_selector 0x7f05006d +int color m3_button_ripple_color 0x7f05006e +int color m3_button_ripple_color_selector 0x7f05006f +int color m3_calendar_item_disabled_text 0x7f050070 +int color m3_calendar_item_stroke_color 0x7f050071 +int color m3_card_foreground_color 0x7f050072 +int color m3_card_ripple_color 0x7f050073 +int color m3_card_stroke_color 0x7f050074 +int color m3_checkbox_button_icon_tint 0x7f050075 +int color m3_checkbox_button_tint 0x7f050076 +int color m3_chip_assist_text_color 0x7f050077 +int color m3_chip_background_color 0x7f050078 +int color m3_chip_ripple_color 0x7f050079 +int color m3_chip_stroke_color 0x7f05007a +int color m3_chip_text_color 0x7f05007b +int color m3_dark_default_color_primary_text 0x7f05007c +int color m3_dark_default_color_secondary_text 0x7f05007d +int color m3_dark_highlighted_text 0x7f05007e +int color m3_dark_hint_foreground 0x7f05007f +int color m3_dark_primary_text_disable_only 0x7f050080 +int color m3_default_color_primary_text 0x7f050081 +int color m3_default_color_secondary_text 0x7f050082 +int color m3_dynamic_dark_default_color_primary_text 0x7f050083 +int color m3_dynamic_dark_default_color_secondary_text 0x7f050084 +int color m3_dynamic_dark_highlighted_text 0x7f050085 +int color m3_dynamic_dark_hint_foreground 0x7f050086 +int color m3_dynamic_dark_primary_text_disable_only 0x7f050087 +int color m3_dynamic_default_color_primary_text 0x7f050088 +int color m3_dynamic_default_color_secondary_text 0x7f050089 +int color m3_dynamic_highlighted_text 0x7f05008a +int color m3_dynamic_hint_foreground 0x7f05008b +int color m3_dynamic_primary_text_disable_only 0x7f05008c +int color m3_efab_ripple_color_selector 0x7f05008d +int color m3_elevated_chip_background_color 0x7f05008e +int color m3_fab_efab_background_color_selector 0x7f05008f +int color m3_fab_efab_foreground_color_selector 0x7f050090 +int color m3_fab_ripple_color_selector 0x7f050091 +int color m3_filled_icon_button_container_color_selector 0x7f050092 +int color m3_highlighted_text 0x7f050093 +int color m3_hint_foreground 0x7f050094 +int color m3_icon_button_icon_color_selector 0x7f050095 +int color m3_navigation_bar_item_with_indicator_icon_tint 0x7f050096 +int color m3_navigation_bar_item_with_indicator_label_tint 0x7f050097 +int color m3_navigation_bar_ripple_color_selector 0x7f050098 +int color m3_navigation_item_background_color 0x7f050099 +int color m3_navigation_item_icon_tint 0x7f05009a +int color m3_navigation_item_ripple_color 0x7f05009b +int color m3_navigation_item_text_color 0x7f05009c +int color m3_navigation_rail_item_with_indicator_icon_tint 0x7f05009d +int color m3_navigation_rail_item_with_indicator_label_tint 0x7f05009e +int color m3_navigation_rail_ripple_color_selector 0x7f05009f +int color m3_popupmenu_overlay_color 0x7f0500a0 +int color m3_primary_text_disable_only 0x7f0500a1 +int color m3_radiobutton_button_tint 0x7f0500a2 +int color m3_radiobutton_ripple_tint 0x7f0500a3 +int color m3_ref_palette_black 0x7f0500a4 +int color m3_ref_palette_dynamic_neutral0 0x7f0500a5 +int color m3_ref_palette_dynamic_neutral10 0x7f0500a6 +int color m3_ref_palette_dynamic_neutral100 0x7f0500a7 +int color m3_ref_palette_dynamic_neutral12 0x7f0500a8 +int color m3_ref_palette_dynamic_neutral17 0x7f0500a9 +int color m3_ref_palette_dynamic_neutral20 0x7f0500aa +int color m3_ref_palette_dynamic_neutral22 0x7f0500ab +int color m3_ref_palette_dynamic_neutral24 0x7f0500ac +int color m3_ref_palette_dynamic_neutral30 0x7f0500ad +int color m3_ref_palette_dynamic_neutral4 0x7f0500ae +int color m3_ref_palette_dynamic_neutral40 0x7f0500af +int color m3_ref_palette_dynamic_neutral50 0x7f0500b0 +int color m3_ref_palette_dynamic_neutral6 0x7f0500b1 +int color m3_ref_palette_dynamic_neutral60 0x7f0500b2 +int color m3_ref_palette_dynamic_neutral70 0x7f0500b3 +int color m3_ref_palette_dynamic_neutral80 0x7f0500b4 +int color m3_ref_palette_dynamic_neutral87 0x7f0500b5 +int color m3_ref_palette_dynamic_neutral90 0x7f0500b6 +int color m3_ref_palette_dynamic_neutral92 0x7f0500b7 +int color m3_ref_palette_dynamic_neutral94 0x7f0500b8 +int color m3_ref_palette_dynamic_neutral95 0x7f0500b9 +int color m3_ref_palette_dynamic_neutral96 0x7f0500ba +int color m3_ref_palette_dynamic_neutral98 0x7f0500bb +int color m3_ref_palette_dynamic_neutral99 0x7f0500bc +int color m3_ref_palette_dynamic_neutral_variant0 0x7f0500bd +int color m3_ref_palette_dynamic_neutral_variant10 0x7f0500be +int color m3_ref_palette_dynamic_neutral_variant100 0x7f0500bf +int color m3_ref_palette_dynamic_neutral_variant12 0x7f0500c0 +int color m3_ref_palette_dynamic_neutral_variant17 0x7f0500c1 +int color m3_ref_palette_dynamic_neutral_variant20 0x7f0500c2 +int color m3_ref_palette_dynamic_neutral_variant22 0x7f0500c3 +int color m3_ref_palette_dynamic_neutral_variant24 0x7f0500c4 +int color m3_ref_palette_dynamic_neutral_variant30 0x7f0500c5 +int color m3_ref_palette_dynamic_neutral_variant4 0x7f0500c6 +int color m3_ref_palette_dynamic_neutral_variant40 0x7f0500c7 +int color m3_ref_palette_dynamic_neutral_variant50 0x7f0500c8 +int color m3_ref_palette_dynamic_neutral_variant6 0x7f0500c9 +int color m3_ref_palette_dynamic_neutral_variant60 0x7f0500ca +int color m3_ref_palette_dynamic_neutral_variant70 0x7f0500cb +int color m3_ref_palette_dynamic_neutral_variant80 0x7f0500cc +int color m3_ref_palette_dynamic_neutral_variant87 0x7f0500cd +int color m3_ref_palette_dynamic_neutral_variant90 0x7f0500ce +int color m3_ref_palette_dynamic_neutral_variant92 0x7f0500cf +int color m3_ref_palette_dynamic_neutral_variant94 0x7f0500d0 +int color m3_ref_palette_dynamic_neutral_variant95 0x7f0500d1 +int color m3_ref_palette_dynamic_neutral_variant96 0x7f0500d2 +int color m3_ref_palette_dynamic_neutral_variant98 0x7f0500d3 +int color m3_ref_palette_dynamic_neutral_variant99 0x7f0500d4 +int color m3_ref_palette_dynamic_primary0 0x7f0500d5 +int color m3_ref_palette_dynamic_primary10 0x7f0500d6 +int color m3_ref_palette_dynamic_primary100 0x7f0500d7 +int color m3_ref_palette_dynamic_primary20 0x7f0500d8 +int color m3_ref_palette_dynamic_primary30 0x7f0500d9 +int color m3_ref_palette_dynamic_primary40 0x7f0500da +int color m3_ref_palette_dynamic_primary50 0x7f0500db +int color m3_ref_palette_dynamic_primary60 0x7f0500dc +int color m3_ref_palette_dynamic_primary70 0x7f0500dd +int color m3_ref_palette_dynamic_primary80 0x7f0500de +int color m3_ref_palette_dynamic_primary90 0x7f0500df +int color m3_ref_palette_dynamic_primary95 0x7f0500e0 +int color m3_ref_palette_dynamic_primary99 0x7f0500e1 +int color m3_ref_palette_dynamic_secondary0 0x7f0500e2 +int color m3_ref_palette_dynamic_secondary10 0x7f0500e3 +int color m3_ref_palette_dynamic_secondary100 0x7f0500e4 +int color m3_ref_palette_dynamic_secondary20 0x7f0500e5 +int color m3_ref_palette_dynamic_secondary30 0x7f0500e6 +int color m3_ref_palette_dynamic_secondary40 0x7f0500e7 +int color m3_ref_palette_dynamic_secondary50 0x7f0500e8 +int color m3_ref_palette_dynamic_secondary60 0x7f0500e9 +int color m3_ref_palette_dynamic_secondary70 0x7f0500ea +int color m3_ref_palette_dynamic_secondary80 0x7f0500eb +int color m3_ref_palette_dynamic_secondary90 0x7f0500ec +int color m3_ref_palette_dynamic_secondary95 0x7f0500ed +int color m3_ref_palette_dynamic_secondary99 0x7f0500ee +int color m3_ref_palette_dynamic_tertiary0 0x7f0500ef +int color m3_ref_palette_dynamic_tertiary10 0x7f0500f0 +int color m3_ref_palette_dynamic_tertiary100 0x7f0500f1 +int color m3_ref_palette_dynamic_tertiary20 0x7f0500f2 +int color m3_ref_palette_dynamic_tertiary30 0x7f0500f3 +int color m3_ref_palette_dynamic_tertiary40 0x7f0500f4 +int color m3_ref_palette_dynamic_tertiary50 0x7f0500f5 +int color m3_ref_palette_dynamic_tertiary60 0x7f0500f6 +int color m3_ref_palette_dynamic_tertiary70 0x7f0500f7 +int color m3_ref_palette_dynamic_tertiary80 0x7f0500f8 +int color m3_ref_palette_dynamic_tertiary90 0x7f0500f9 +int color m3_ref_palette_dynamic_tertiary95 0x7f0500fa +int color m3_ref_palette_dynamic_tertiary99 0x7f0500fb +int color m3_ref_palette_error0 0x7f0500fc +int color m3_ref_palette_error10 0x7f0500fd +int color m3_ref_palette_error100 0x7f0500fe +int color m3_ref_palette_error20 0x7f0500ff +int color m3_ref_palette_error30 0x7f050100 +int color m3_ref_palette_error40 0x7f050101 +int color m3_ref_palette_error50 0x7f050102 +int color m3_ref_palette_error60 0x7f050103 +int color m3_ref_palette_error70 0x7f050104 +int color m3_ref_palette_error80 0x7f050105 +int color m3_ref_palette_error90 0x7f050106 +int color m3_ref_palette_error95 0x7f050107 +int color m3_ref_palette_error99 0x7f050108 +int color m3_ref_palette_neutral0 0x7f050109 +int color m3_ref_palette_neutral10 0x7f05010a +int color m3_ref_palette_neutral100 0x7f05010b +int color m3_ref_palette_neutral12 0x7f05010c +int color m3_ref_palette_neutral17 0x7f05010d +int color m3_ref_palette_neutral20 0x7f05010e +int color m3_ref_palette_neutral22 0x7f05010f +int color m3_ref_palette_neutral24 0x7f050110 +int color m3_ref_palette_neutral30 0x7f050111 +int color m3_ref_palette_neutral4 0x7f050112 +int color m3_ref_palette_neutral40 0x7f050113 +int color m3_ref_palette_neutral50 0x7f050114 +int color m3_ref_palette_neutral6 0x7f050115 +int color m3_ref_palette_neutral60 0x7f050116 +int color m3_ref_palette_neutral70 0x7f050117 +int color m3_ref_palette_neutral80 0x7f050118 +int color m3_ref_palette_neutral87 0x7f050119 +int color m3_ref_palette_neutral90 0x7f05011a +int color m3_ref_palette_neutral92 0x7f05011b +int color m3_ref_palette_neutral94 0x7f05011c +int color m3_ref_palette_neutral95 0x7f05011d +int color m3_ref_palette_neutral96 0x7f05011e +int color m3_ref_palette_neutral98 0x7f05011f +int color m3_ref_palette_neutral99 0x7f050120 +int color m3_ref_palette_neutral_variant0 0x7f050121 +int color m3_ref_palette_neutral_variant10 0x7f050122 +int color m3_ref_palette_neutral_variant100 0x7f050123 +int color m3_ref_palette_neutral_variant20 0x7f050124 +int color m3_ref_palette_neutral_variant30 0x7f050125 +int color m3_ref_palette_neutral_variant40 0x7f050126 +int color m3_ref_palette_neutral_variant50 0x7f050127 +int color m3_ref_palette_neutral_variant60 0x7f050128 +int color m3_ref_palette_neutral_variant70 0x7f050129 +int color m3_ref_palette_neutral_variant80 0x7f05012a +int color m3_ref_palette_neutral_variant90 0x7f05012b +int color m3_ref_palette_neutral_variant95 0x7f05012c +int color m3_ref_palette_neutral_variant99 0x7f05012d +int color m3_ref_palette_primary0 0x7f05012e +int color m3_ref_palette_primary10 0x7f05012f +int color m3_ref_palette_primary100 0x7f050130 +int color m3_ref_palette_primary20 0x7f050131 +int color m3_ref_palette_primary30 0x7f050132 +int color m3_ref_palette_primary40 0x7f050133 +int color m3_ref_palette_primary50 0x7f050134 +int color m3_ref_palette_primary60 0x7f050135 +int color m3_ref_palette_primary70 0x7f050136 +int color m3_ref_palette_primary80 0x7f050137 +int color m3_ref_palette_primary90 0x7f050138 +int color m3_ref_palette_primary95 0x7f050139 +int color m3_ref_palette_primary99 0x7f05013a +int color m3_ref_palette_secondary0 0x7f05013b +int color m3_ref_palette_secondary10 0x7f05013c +int color m3_ref_palette_secondary100 0x7f05013d +int color m3_ref_palette_secondary20 0x7f05013e +int color m3_ref_palette_secondary30 0x7f05013f +int color m3_ref_palette_secondary40 0x7f050140 +int color m3_ref_palette_secondary50 0x7f050141 +int color m3_ref_palette_secondary60 0x7f050142 +int color m3_ref_palette_secondary70 0x7f050143 +int color m3_ref_palette_secondary80 0x7f050144 +int color m3_ref_palette_secondary90 0x7f050145 +int color m3_ref_palette_secondary95 0x7f050146 +int color m3_ref_palette_secondary99 0x7f050147 +int color m3_ref_palette_tertiary0 0x7f050148 +int color m3_ref_palette_tertiary10 0x7f050149 +int color m3_ref_palette_tertiary100 0x7f05014a +int color m3_ref_palette_tertiary20 0x7f05014b +int color m3_ref_palette_tertiary30 0x7f05014c +int color m3_ref_palette_tertiary40 0x7f05014d +int color m3_ref_palette_tertiary50 0x7f05014e +int color m3_ref_palette_tertiary60 0x7f05014f +int color m3_ref_palette_tertiary70 0x7f050150 +int color m3_ref_palette_tertiary80 0x7f050151 +int color m3_ref_palette_tertiary90 0x7f050152 +int color m3_ref_palette_tertiary95 0x7f050153 +int color m3_ref_palette_tertiary99 0x7f050154 +int color m3_ref_palette_white 0x7f050155 +int color m3_selection_control_ripple_color_selector 0x7f050156 +int color m3_simple_item_ripple_color 0x7f050157 +int color m3_slider_active_track_color 0x7f050158 +int color m3_slider_halo_color 0x7f050159 +int color m3_slider_inactive_track_color 0x7f05015a +int color m3_slider_thumb_color 0x7f05015b +int color m3_switch_thumb_tint 0x7f05015c +int color m3_switch_track_tint 0x7f05015d +int color m3_sys_color_dark_background 0x7f05015e +int color m3_sys_color_dark_error 0x7f05015f +int color m3_sys_color_dark_error_container 0x7f050160 +int color m3_sys_color_dark_inverse_on_surface 0x7f050161 +int color m3_sys_color_dark_inverse_primary 0x7f050162 +int color m3_sys_color_dark_inverse_surface 0x7f050163 +int color m3_sys_color_dark_on_background 0x7f050164 +int color m3_sys_color_dark_on_error 0x7f050165 +int color m3_sys_color_dark_on_error_container 0x7f050166 +int color m3_sys_color_dark_on_primary 0x7f050167 +int color m3_sys_color_dark_on_primary_container 0x7f050168 +int color m3_sys_color_dark_on_secondary 0x7f050169 +int color m3_sys_color_dark_on_secondary_container 0x7f05016a +int color m3_sys_color_dark_on_surface 0x7f05016b +int color m3_sys_color_dark_on_surface_variant 0x7f05016c +int color m3_sys_color_dark_on_tertiary 0x7f05016d +int color m3_sys_color_dark_on_tertiary_container 0x7f05016e +int color m3_sys_color_dark_outline 0x7f05016f +int color m3_sys_color_dark_outline_variant 0x7f050170 +int color m3_sys_color_dark_primary 0x7f050171 +int color m3_sys_color_dark_primary_container 0x7f050172 +int color m3_sys_color_dark_secondary 0x7f050173 +int color m3_sys_color_dark_secondary_container 0x7f050174 +int color m3_sys_color_dark_surface 0x7f050175 +int color m3_sys_color_dark_surface_bright 0x7f050176 +int color m3_sys_color_dark_surface_container 0x7f050177 +int color m3_sys_color_dark_surface_container_high 0x7f050178 +int color m3_sys_color_dark_surface_container_highest 0x7f050179 +int color m3_sys_color_dark_surface_container_low 0x7f05017a +int color m3_sys_color_dark_surface_container_lowest 0x7f05017b +int color m3_sys_color_dark_surface_dim 0x7f05017c +int color m3_sys_color_dark_surface_variant 0x7f05017d +int color m3_sys_color_dark_tertiary 0x7f05017e +int color m3_sys_color_dark_tertiary_container 0x7f05017f +int color m3_sys_color_dynamic_dark_background 0x7f050180 +int color m3_sys_color_dynamic_dark_error 0x7f050181 +int color m3_sys_color_dynamic_dark_error_container 0x7f050182 +int color m3_sys_color_dynamic_dark_inverse_on_surface 0x7f050183 +int color m3_sys_color_dynamic_dark_inverse_primary 0x7f050184 +int color m3_sys_color_dynamic_dark_inverse_surface 0x7f050185 +int color m3_sys_color_dynamic_dark_on_background 0x7f050186 +int color m3_sys_color_dynamic_dark_on_error 0x7f050187 +int color m3_sys_color_dynamic_dark_on_error_container 0x7f050188 +int color m3_sys_color_dynamic_dark_on_primary 0x7f050189 +int color m3_sys_color_dynamic_dark_on_primary_container 0x7f05018a +int color m3_sys_color_dynamic_dark_on_secondary 0x7f05018b +int color m3_sys_color_dynamic_dark_on_secondary_container 0x7f05018c +int color m3_sys_color_dynamic_dark_on_surface 0x7f05018d +int color m3_sys_color_dynamic_dark_on_surface_variant 0x7f05018e +int color m3_sys_color_dynamic_dark_on_tertiary 0x7f05018f +int color m3_sys_color_dynamic_dark_on_tertiary_container 0x7f050190 +int color m3_sys_color_dynamic_dark_outline 0x7f050191 +int color m3_sys_color_dynamic_dark_outline_variant 0x7f050192 +int color m3_sys_color_dynamic_dark_primary 0x7f050193 +int color m3_sys_color_dynamic_dark_primary_container 0x7f050194 +int color m3_sys_color_dynamic_dark_secondary 0x7f050195 +int color m3_sys_color_dynamic_dark_secondary_container 0x7f050196 +int color m3_sys_color_dynamic_dark_surface 0x7f050197 +int color m3_sys_color_dynamic_dark_surface_bright 0x7f050198 +int color m3_sys_color_dynamic_dark_surface_container 0x7f050199 +int color m3_sys_color_dynamic_dark_surface_container_high 0x7f05019a +int color m3_sys_color_dynamic_dark_surface_container_highest 0x7f05019b +int color m3_sys_color_dynamic_dark_surface_container_low 0x7f05019c +int color m3_sys_color_dynamic_dark_surface_container_lowest 0x7f05019d +int color m3_sys_color_dynamic_dark_surface_dim 0x7f05019e +int color m3_sys_color_dynamic_dark_surface_variant 0x7f05019f +int color m3_sys_color_dynamic_dark_tertiary 0x7f0501a0 +int color m3_sys_color_dynamic_dark_tertiary_container 0x7f0501a1 +int color m3_sys_color_dynamic_light_background 0x7f0501a2 +int color m3_sys_color_dynamic_light_error 0x7f0501a3 +int color m3_sys_color_dynamic_light_error_container 0x7f0501a4 +int color m3_sys_color_dynamic_light_inverse_on_surface 0x7f0501a5 +int color m3_sys_color_dynamic_light_inverse_primary 0x7f0501a6 +int color m3_sys_color_dynamic_light_inverse_surface 0x7f0501a7 +int color m3_sys_color_dynamic_light_on_background 0x7f0501a8 +int color m3_sys_color_dynamic_light_on_error 0x7f0501a9 +int color m3_sys_color_dynamic_light_on_error_container 0x7f0501aa +int color m3_sys_color_dynamic_light_on_primary 0x7f0501ab +int color m3_sys_color_dynamic_light_on_primary_container 0x7f0501ac +int color m3_sys_color_dynamic_light_on_secondary 0x7f0501ad +int color m3_sys_color_dynamic_light_on_secondary_container 0x7f0501ae +int color m3_sys_color_dynamic_light_on_surface 0x7f0501af +int color m3_sys_color_dynamic_light_on_surface_variant 0x7f0501b0 +int color m3_sys_color_dynamic_light_on_tertiary 0x7f0501b1 +int color m3_sys_color_dynamic_light_on_tertiary_container 0x7f0501b2 +int color m3_sys_color_dynamic_light_outline 0x7f0501b3 +int color m3_sys_color_dynamic_light_outline_variant 0x7f0501b4 +int color m3_sys_color_dynamic_light_primary 0x7f0501b5 +int color m3_sys_color_dynamic_light_primary_container 0x7f0501b6 +int color m3_sys_color_dynamic_light_secondary 0x7f0501b7 +int color m3_sys_color_dynamic_light_secondary_container 0x7f0501b8 +int color m3_sys_color_dynamic_light_surface 0x7f0501b9 +int color m3_sys_color_dynamic_light_surface_bright 0x7f0501ba +int color m3_sys_color_dynamic_light_surface_container 0x7f0501bb +int color m3_sys_color_dynamic_light_surface_container_high 0x7f0501bc +int color m3_sys_color_dynamic_light_surface_container_highest 0x7f0501bd +int color m3_sys_color_dynamic_light_surface_container_low 0x7f0501be +int color m3_sys_color_dynamic_light_surface_container_lowest 0x7f0501bf +int color m3_sys_color_dynamic_light_surface_dim 0x7f0501c0 +int color m3_sys_color_dynamic_light_surface_variant 0x7f0501c1 +int color m3_sys_color_dynamic_light_tertiary 0x7f0501c2 +int color m3_sys_color_dynamic_light_tertiary_container 0x7f0501c3 +int color m3_sys_color_dynamic_on_primary_fixed 0x7f0501c4 +int color m3_sys_color_dynamic_on_primary_fixed_variant 0x7f0501c5 +int color m3_sys_color_dynamic_on_secondary_fixed 0x7f0501c6 +int color m3_sys_color_dynamic_on_secondary_fixed_variant 0x7f0501c7 +int color m3_sys_color_dynamic_on_tertiary_fixed 0x7f0501c8 +int color m3_sys_color_dynamic_on_tertiary_fixed_variant 0x7f0501c9 +int color m3_sys_color_dynamic_primary_fixed 0x7f0501ca +int color m3_sys_color_dynamic_primary_fixed_dim 0x7f0501cb +int color m3_sys_color_dynamic_secondary_fixed 0x7f0501cc +int color m3_sys_color_dynamic_secondary_fixed_dim 0x7f0501cd +int color m3_sys_color_dynamic_tertiary_fixed 0x7f0501ce +int color m3_sys_color_dynamic_tertiary_fixed_dim 0x7f0501cf +int color m3_sys_color_light_background 0x7f0501d0 +int color m3_sys_color_light_error 0x7f0501d1 +int color m3_sys_color_light_error_container 0x7f0501d2 +int color m3_sys_color_light_inverse_on_surface 0x7f0501d3 +int color m3_sys_color_light_inverse_primary 0x7f0501d4 +int color m3_sys_color_light_inverse_surface 0x7f0501d5 +int color m3_sys_color_light_on_background 0x7f0501d6 +int color m3_sys_color_light_on_error 0x7f0501d7 +int color m3_sys_color_light_on_error_container 0x7f0501d8 +int color m3_sys_color_light_on_primary 0x7f0501d9 +int color m3_sys_color_light_on_primary_container 0x7f0501da +int color m3_sys_color_light_on_secondary 0x7f0501db +int color m3_sys_color_light_on_secondary_container 0x7f0501dc +int color m3_sys_color_light_on_surface 0x7f0501dd +int color m3_sys_color_light_on_surface_variant 0x7f0501de +int color m3_sys_color_light_on_tertiary 0x7f0501df +int color m3_sys_color_light_on_tertiary_container 0x7f0501e0 +int color m3_sys_color_light_outline 0x7f0501e1 +int color m3_sys_color_light_outline_variant 0x7f0501e2 +int color m3_sys_color_light_primary 0x7f0501e3 +int color m3_sys_color_light_primary_container 0x7f0501e4 +int color m3_sys_color_light_secondary 0x7f0501e5 +int color m3_sys_color_light_secondary_container 0x7f0501e6 +int color m3_sys_color_light_surface 0x7f0501e7 +int color m3_sys_color_light_surface_bright 0x7f0501e8 +int color m3_sys_color_light_surface_container 0x7f0501e9 +int color m3_sys_color_light_surface_container_high 0x7f0501ea +int color m3_sys_color_light_surface_container_highest 0x7f0501eb +int color m3_sys_color_light_surface_container_low 0x7f0501ec +int color m3_sys_color_light_surface_container_lowest 0x7f0501ed +int color m3_sys_color_light_surface_dim 0x7f0501ee +int color m3_sys_color_light_surface_variant 0x7f0501ef +int color m3_sys_color_light_tertiary 0x7f0501f0 +int color m3_sys_color_light_tertiary_container 0x7f0501f1 +int color m3_sys_color_on_primary_fixed 0x7f0501f2 +int color m3_sys_color_on_primary_fixed_variant 0x7f0501f3 +int color m3_sys_color_on_secondary_fixed 0x7f0501f4 +int color m3_sys_color_on_secondary_fixed_variant 0x7f0501f5 +int color m3_sys_color_on_tertiary_fixed 0x7f0501f6 +int color m3_sys_color_on_tertiary_fixed_variant 0x7f0501f7 +int color m3_sys_color_primary_fixed 0x7f0501f8 +int color m3_sys_color_primary_fixed_dim 0x7f0501f9 +int color m3_sys_color_secondary_fixed 0x7f0501fa +int color m3_sys_color_secondary_fixed_dim 0x7f0501fb +int color m3_sys_color_tertiary_fixed 0x7f0501fc +int color m3_sys_color_tertiary_fixed_dim 0x7f0501fd +int color m3_tabs_icon_color 0x7f0501fe +int color m3_tabs_icon_color_secondary 0x7f0501ff +int color m3_tabs_ripple_color 0x7f050200 +int color m3_tabs_ripple_color_secondary 0x7f050201 +int color m3_tabs_text_color 0x7f050202 +int color m3_tabs_text_color_secondary 0x7f050203 +int color m3_text_button_background_color_selector 0x7f050204 +int color m3_text_button_foreground_color_selector 0x7f050205 +int color m3_text_button_ripple_color_selector 0x7f050206 +int color m3_textfield_filled_background_color 0x7f050207 +int color m3_textfield_indicator_text_color 0x7f050208 +int color m3_textfield_input_text_color 0x7f050209 +int color m3_textfield_label_color 0x7f05020a +int color m3_textfield_stroke_color 0x7f05020b +int color m3_timepicker_button_background_color 0x7f05020c +int color m3_timepicker_button_ripple_color 0x7f05020d +int color m3_timepicker_button_text_color 0x7f05020e +int color m3_timepicker_clock_text_color 0x7f05020f +int color m3_timepicker_display_background_color 0x7f050210 +int color m3_timepicker_display_ripple_color 0x7f050211 +int color m3_timepicker_display_text_color 0x7f050212 +int color m3_timepicker_secondary_text_button_ripple_color 0x7f050213 +int color m3_timepicker_secondary_text_button_text_color 0x7f050214 +int color m3_timepicker_time_input_stroke_color 0x7f050215 +int color m3_tonal_button_ripple_color_selector 0x7f050216 +int color material_blue_grey_800 0x7f050217 +int color material_blue_grey_900 0x7f050218 +int color material_blue_grey_950 0x7f050219 +int color material_cursor_color 0x7f05021a +int color material_deep_teal_200 0x7f05021b +int color material_deep_teal_500 0x7f05021c +int color material_divider_color 0x7f05021d +int color material_dynamic_color_dark_error 0x7f05021e +int color material_dynamic_color_dark_error_container 0x7f05021f +int color material_dynamic_color_dark_on_error 0x7f050220 +int color material_dynamic_color_dark_on_error_container 0x7f050221 +int color material_dynamic_color_light_error 0x7f050222 +int color material_dynamic_color_light_error_container 0x7f050223 +int color material_dynamic_color_light_on_error 0x7f050224 +int color material_dynamic_color_light_on_error_container 0x7f050225 +int color material_dynamic_neutral0 0x7f050226 +int color material_dynamic_neutral10 0x7f050227 +int color material_dynamic_neutral100 0x7f050228 +int color material_dynamic_neutral20 0x7f050229 +int color material_dynamic_neutral30 0x7f05022a +int color material_dynamic_neutral40 0x7f05022b +int color material_dynamic_neutral50 0x7f05022c +int color material_dynamic_neutral60 0x7f05022d +int color material_dynamic_neutral70 0x7f05022e +int color material_dynamic_neutral80 0x7f05022f +int color material_dynamic_neutral90 0x7f050230 +int color material_dynamic_neutral95 0x7f050231 +int color material_dynamic_neutral99 0x7f050232 +int color material_dynamic_neutral_variant0 0x7f050233 +int color material_dynamic_neutral_variant10 0x7f050234 +int color material_dynamic_neutral_variant100 0x7f050235 +int color material_dynamic_neutral_variant20 0x7f050236 +int color material_dynamic_neutral_variant30 0x7f050237 +int color material_dynamic_neutral_variant40 0x7f050238 +int color material_dynamic_neutral_variant50 0x7f050239 +int color material_dynamic_neutral_variant60 0x7f05023a +int color material_dynamic_neutral_variant70 0x7f05023b +int color material_dynamic_neutral_variant80 0x7f05023c +int color material_dynamic_neutral_variant90 0x7f05023d +int color material_dynamic_neutral_variant95 0x7f05023e +int color material_dynamic_neutral_variant99 0x7f05023f +int color material_dynamic_primary0 0x7f050240 +int color material_dynamic_primary10 0x7f050241 +int color material_dynamic_primary100 0x7f050242 +int color material_dynamic_primary20 0x7f050243 +int color material_dynamic_primary30 0x7f050244 +int color material_dynamic_primary40 0x7f050245 +int color material_dynamic_primary50 0x7f050246 +int color material_dynamic_primary60 0x7f050247 +int color material_dynamic_primary70 0x7f050248 +int color material_dynamic_primary80 0x7f050249 +int color material_dynamic_primary90 0x7f05024a +int color material_dynamic_primary95 0x7f05024b +int color material_dynamic_primary99 0x7f05024c +int color material_dynamic_secondary0 0x7f05024d +int color material_dynamic_secondary10 0x7f05024e +int color material_dynamic_secondary100 0x7f05024f +int color material_dynamic_secondary20 0x7f050250 +int color material_dynamic_secondary30 0x7f050251 +int color material_dynamic_secondary40 0x7f050252 +int color material_dynamic_secondary50 0x7f050253 +int color material_dynamic_secondary60 0x7f050254 +int color material_dynamic_secondary70 0x7f050255 +int color material_dynamic_secondary80 0x7f050256 +int color material_dynamic_secondary90 0x7f050257 +int color material_dynamic_secondary95 0x7f050258 +int color material_dynamic_secondary99 0x7f050259 +int color material_dynamic_tertiary0 0x7f05025a +int color material_dynamic_tertiary10 0x7f05025b +int color material_dynamic_tertiary100 0x7f05025c +int color material_dynamic_tertiary20 0x7f05025d +int color material_dynamic_tertiary30 0x7f05025e +int color material_dynamic_tertiary40 0x7f05025f +int color material_dynamic_tertiary50 0x7f050260 +int color material_dynamic_tertiary60 0x7f050261 +int color material_dynamic_tertiary70 0x7f050262 +int color material_dynamic_tertiary80 0x7f050263 +int color material_dynamic_tertiary90 0x7f050264 +int color material_dynamic_tertiary95 0x7f050265 +int color material_dynamic_tertiary99 0x7f050266 +int color material_grey_100 0x7f050267 +int color material_grey_300 0x7f050268 +int color material_grey_50 0x7f050269 +int color material_grey_600 0x7f05026a +int color material_grey_800 0x7f05026b +int color material_grey_850 0x7f05026c +int color material_grey_900 0x7f05026d +int color material_harmonized_color_error 0x7f05026e +int color material_harmonized_color_error_container 0x7f05026f +int color material_harmonized_color_on_error 0x7f050270 +int color material_harmonized_color_on_error_container 0x7f050271 +int color material_on_background_disabled 0x7f050272 +int color material_on_background_emphasis_high_type 0x7f050273 +int color material_on_background_emphasis_medium 0x7f050274 +int color material_on_primary_disabled 0x7f050275 +int color material_on_primary_emphasis_high_type 0x7f050276 +int color material_on_primary_emphasis_medium 0x7f050277 +int color material_on_surface_disabled 0x7f050278 +int color material_on_surface_emphasis_high_type 0x7f050279 +int color material_on_surface_emphasis_medium 0x7f05027a +int color material_on_surface_stroke 0x7f05027b +int color material_personalized__highlighted_text 0x7f05027c +int color material_personalized__highlighted_text_inverse 0x7f05027d +int color material_personalized_color_background 0x7f05027e +int color material_personalized_color_control_activated 0x7f05027f +int color material_personalized_color_control_highlight 0x7f050280 +int color material_personalized_color_control_normal 0x7f050281 +int color material_personalized_color_error 0x7f050282 +int color material_personalized_color_error_container 0x7f050283 +int color material_personalized_color_on_background 0x7f050284 +int color material_personalized_color_on_error 0x7f050285 +int color material_personalized_color_on_error_container 0x7f050286 +int color material_personalized_color_on_primary 0x7f050287 +int color material_personalized_color_on_primary_container 0x7f050288 +int color material_personalized_color_on_secondary 0x7f050289 +int color material_personalized_color_on_secondary_container 0x7f05028a +int color material_personalized_color_on_surface 0x7f05028b +int color material_personalized_color_on_surface_inverse 0x7f05028c +int color material_personalized_color_on_surface_variant 0x7f05028d +int color material_personalized_color_on_tertiary 0x7f05028e +int color material_personalized_color_on_tertiary_container 0x7f05028f +int color material_personalized_color_outline 0x7f050290 +int color material_personalized_color_outline_variant 0x7f050291 +int color material_personalized_color_primary 0x7f050292 +int color material_personalized_color_primary_container 0x7f050293 +int color material_personalized_color_primary_inverse 0x7f050294 +int color material_personalized_color_primary_text 0x7f050295 +int color material_personalized_color_primary_text_inverse 0x7f050296 +int color material_personalized_color_secondary 0x7f050297 +int color material_personalized_color_secondary_container 0x7f050298 +int color material_personalized_color_secondary_text 0x7f050299 +int color material_personalized_color_secondary_text_inverse 0x7f05029a +int color material_personalized_color_surface 0x7f05029b +int color material_personalized_color_surface_bright 0x7f05029c +int color material_personalized_color_surface_container 0x7f05029d +int color material_personalized_color_surface_container_high 0x7f05029e +int color material_personalized_color_surface_container_highest 0x7f05029f +int color material_personalized_color_surface_container_low 0x7f0502a0 +int color material_personalized_color_surface_container_lowest 0x7f0502a1 +int color material_personalized_color_surface_dim 0x7f0502a2 +int color material_personalized_color_surface_inverse 0x7f0502a3 +int color material_personalized_color_surface_variant 0x7f0502a4 +int color material_personalized_color_tertiary 0x7f0502a5 +int color material_personalized_color_tertiary_container 0x7f0502a6 +int color material_personalized_color_text_hint_foreground_inverse 0x7f0502a7 +int color material_personalized_color_text_primary_inverse 0x7f0502a8 +int color material_personalized_color_text_primary_inverse_disable_only 0x7f0502a9 +int color material_personalized_color_text_secondary_and_tertiary_inverse 0x7f0502aa +int color material_personalized_color_text_secondary_and_tertiary_inverse_disabled 0x7f0502ab +int color material_personalized_hint_foreground 0x7f0502ac +int color material_personalized_hint_foreground_inverse 0x7f0502ad +int color material_personalized_primary_inverse_text_disable_only 0x7f0502ae +int color material_personalized_primary_text_disable_only 0x7f0502af +int color material_slider_active_tick_marks_color 0x7f0502b0 +int color material_slider_active_track_color 0x7f0502b1 +int color material_slider_halo_color 0x7f0502b2 +int color material_slider_inactive_tick_marks_color 0x7f0502b3 +int color material_slider_inactive_track_color 0x7f0502b4 +int color material_slider_thumb_color 0x7f0502b5 +int color material_timepicker_button_background 0x7f0502b6 +int color material_timepicker_button_stroke 0x7f0502b7 +int color material_timepicker_clock_text_color 0x7f0502b8 +int color material_timepicker_clockface 0x7f0502b9 +int color material_timepicker_modebutton_tint 0x7f0502ba +int color maui_splash_color 0x7f0502bb +int color mtrl_btn_bg_color_selector 0x7f0502bc +int color mtrl_btn_ripple_color 0x7f0502bd +int color mtrl_btn_stroke_color_selector 0x7f0502be +int color mtrl_btn_text_btn_bg_color_selector 0x7f0502bf +int color mtrl_btn_text_btn_ripple_color 0x7f0502c0 +int color mtrl_btn_text_color_disabled 0x7f0502c1 +int color mtrl_btn_text_color_selector 0x7f0502c2 +int color mtrl_btn_transparent_bg_color 0x7f0502c3 +int color mtrl_calendar_item_stroke_color 0x7f0502c4 +int color mtrl_calendar_selected_range 0x7f0502c5 +int color mtrl_card_view_foreground 0x7f0502c6 +int color mtrl_card_view_ripple 0x7f0502c7 +int color mtrl_chip_background_color 0x7f0502c8 +int color mtrl_chip_close_icon_tint 0x7f0502c9 +int color mtrl_chip_surface_color 0x7f0502ca +int color mtrl_chip_text_color 0x7f0502cb +int color mtrl_choice_chip_background_color 0x7f0502cc +int color mtrl_choice_chip_ripple_color 0x7f0502cd +int color mtrl_choice_chip_text_color 0x7f0502ce +int color mtrl_error 0x7f0502cf +int color mtrl_fab_bg_color_selector 0x7f0502d0 +int color mtrl_fab_icon_text_color_selector 0x7f0502d1 +int color mtrl_fab_ripple_color 0x7f0502d2 +int color mtrl_filled_background_color 0x7f0502d3 +int color mtrl_filled_icon_tint 0x7f0502d4 +int color mtrl_filled_stroke_color 0x7f0502d5 +int color mtrl_indicator_text_color 0x7f0502d6 +int color mtrl_navigation_bar_colored_item_tint 0x7f0502d7 +int color mtrl_navigation_bar_colored_ripple_color 0x7f0502d8 +int color mtrl_navigation_bar_item_tint 0x7f0502d9 +int color mtrl_navigation_bar_ripple_color 0x7f0502da +int color mtrl_navigation_item_background_color 0x7f0502db +int color mtrl_navigation_item_icon_tint 0x7f0502dc +int color mtrl_navigation_item_text_color 0x7f0502dd +int color mtrl_on_primary_text_btn_text_color_selector 0x7f0502de +int color mtrl_on_surface_ripple_color 0x7f0502df +int color mtrl_outlined_icon_tint 0x7f0502e0 +int color mtrl_outlined_stroke_color 0x7f0502e1 +int color mtrl_popupmenu_overlay_color 0x7f0502e2 +int color mtrl_scrim_color 0x7f0502e3 +int color mtrl_switch_thumb_icon_tint 0x7f0502e4 +int color mtrl_switch_thumb_tint 0x7f0502e5 +int color mtrl_switch_track_decoration_tint 0x7f0502e6 +int color mtrl_switch_track_tint 0x7f0502e7 +int color mtrl_tabs_colored_ripple_color 0x7f0502e8 +int color mtrl_tabs_icon_color_selector 0x7f0502e9 +int color mtrl_tabs_icon_color_selector_colored 0x7f0502ea +int color mtrl_tabs_legacy_text_color_selector 0x7f0502eb +int color mtrl_tabs_ripple_color 0x7f0502ec +int color mtrl_text_btn_text_color_selector 0x7f0502ed +int color mtrl_textinput_default_box_stroke_color 0x7f0502ee +int color mtrl_textinput_disabled_color 0x7f0502ef +int color mtrl_textinput_filled_box_default_background_color 0x7f0502f0 +int color mtrl_textinput_focused_box_stroke_color 0x7f0502f1 +int color mtrl_textinput_hovered_box_stroke_color 0x7f0502f2 +int color notification_action_color_filter 0x7f0502f3 +int color notification_icon_bg_color 0x7f0502f4 +int color notification_material_background_media_default_color 0x7f0502f5 +int color primary_dark_material_dark 0x7f0502f6 +int color primary_dark_material_light 0x7f0502f7 +int color primary_material_dark 0x7f0502f8 +int color primary_material_light 0x7f0502f9 +int color primary_text_default_material_dark 0x7f0502fa +int color primary_text_default_material_light 0x7f0502fb +int color primary_text_disabled_material_dark 0x7f0502fc +int color primary_text_disabled_material_light 0x7f0502fd +int color ripple_material_dark 0x7f0502fe +int color ripple_material_light 0x7f0502ff +int color secondary_text_default_material_dark 0x7f050300 +int color secondary_text_default_material_light 0x7f050301 +int color secondary_text_disabled_material_dark 0x7f050302 +int color secondary_text_disabled_material_light 0x7f050303 +int color switch_thumb_disabled_material_dark 0x7f050304 +int color switch_thumb_disabled_material_light 0x7f050305 +int color switch_thumb_material_dark 0x7f050306 +int color switch_thumb_material_light 0x7f050307 +int color switch_thumb_normal_material_dark 0x7f050308 +int color switch_thumb_normal_material_light 0x7f050309 +int color tooltip_background_dark 0x7f05030a +int color tooltip_background_light 0x7f05030b +int dimen abc_action_bar_content_inset_material 0x7f060000 +int dimen abc_action_bar_content_inset_with_nav 0x7f060001 +int dimen abc_action_bar_default_height_material 0x7f060002 +int dimen abc_action_bar_default_padding_end_material 0x7f060003 +int dimen abc_action_bar_default_padding_start_material 0x7f060004 +int dimen abc_action_bar_elevation_material 0x7f060005 +int dimen abc_action_bar_icon_vertical_padding_material 0x7f060006 +int dimen abc_action_bar_overflow_padding_end_material 0x7f060007 +int dimen abc_action_bar_overflow_padding_start_material 0x7f060008 +int dimen abc_action_bar_stacked_max_height 0x7f060009 +int dimen abc_action_bar_stacked_tab_max_width 0x7f06000a +int dimen abc_action_bar_subtitle_bottom_margin_material 0x7f06000b +int dimen abc_action_bar_subtitle_top_margin_material 0x7f06000c +int dimen abc_action_button_min_height_material 0x7f06000d +int dimen abc_action_button_min_width_material 0x7f06000e +int dimen abc_action_button_min_width_overflow_material 0x7f06000f +int dimen abc_alert_dialog_button_bar_height 0x7f060010 +int dimen abc_alert_dialog_button_dimen 0x7f060011 +int dimen abc_button_inset_horizontal_material 0x7f060012 +int dimen abc_button_inset_vertical_material 0x7f060013 +int dimen abc_button_padding_horizontal_material 0x7f060014 +int dimen abc_button_padding_vertical_material 0x7f060015 +int dimen abc_cascading_menus_min_smallest_width 0x7f060016 +int dimen abc_config_prefDialogWidth 0x7f060017 +int dimen abc_control_corner_material 0x7f060018 +int dimen abc_control_inset_material 0x7f060019 +int dimen abc_control_padding_material 0x7f06001a +int dimen abc_dialog_corner_radius_material 0x7f06001b +int dimen abc_dialog_fixed_height_major 0x7f06001c +int dimen abc_dialog_fixed_height_minor 0x7f06001d +int dimen abc_dialog_fixed_width_major 0x7f06001e +int dimen abc_dialog_fixed_width_minor 0x7f06001f +int dimen abc_dialog_list_padding_bottom_no_buttons 0x7f060020 +int dimen abc_dialog_list_padding_top_no_title 0x7f060021 +int dimen abc_dialog_min_width_major 0x7f060022 +int dimen abc_dialog_min_width_minor 0x7f060023 +int dimen abc_dialog_padding_material 0x7f060024 +int dimen abc_dialog_padding_top_material 0x7f060025 +int dimen abc_dialog_title_divider_material 0x7f060026 +int dimen abc_disabled_alpha_material_dark 0x7f060027 +int dimen abc_disabled_alpha_material_light 0x7f060028 +int dimen abc_dropdownitem_icon_width 0x7f060029 +int dimen abc_dropdownitem_text_padding_left 0x7f06002a +int dimen abc_dropdownitem_text_padding_right 0x7f06002b +int dimen abc_edit_text_inset_bottom_material 0x7f06002c +int dimen abc_edit_text_inset_horizontal_material 0x7f06002d +int dimen abc_edit_text_inset_top_material 0x7f06002e +int dimen abc_floating_window_z 0x7f06002f +int dimen abc_list_item_height_large_material 0x7f060030 +int dimen abc_list_item_height_material 0x7f060031 +int dimen abc_list_item_height_small_material 0x7f060032 +int dimen abc_list_item_padding_horizontal_material 0x7f060033 +int dimen abc_panel_menu_list_width 0x7f060034 +int dimen abc_progress_bar_height_material 0x7f060035 +int dimen abc_search_view_preferred_height 0x7f060036 +int dimen abc_search_view_preferred_width 0x7f060037 +int dimen abc_seekbar_track_background_height_material 0x7f060038 +int dimen abc_seekbar_track_progress_height_material 0x7f060039 +int dimen abc_select_dialog_padding_start_material 0x7f06003a +int dimen abc_star_big 0x7f06003b +int dimen abc_star_medium 0x7f06003c +int dimen abc_star_small 0x7f06003d +int dimen abc_switch_padding 0x7f06003e +int dimen abc_text_size_body_1_material 0x7f06003f +int dimen abc_text_size_body_2_material 0x7f060040 +int dimen abc_text_size_button_material 0x7f060041 +int dimen abc_text_size_caption_material 0x7f060042 +int dimen abc_text_size_display_1_material 0x7f060043 +int dimen abc_text_size_display_2_material 0x7f060044 +int dimen abc_text_size_display_3_material 0x7f060045 +int dimen abc_text_size_display_4_material 0x7f060046 +int dimen abc_text_size_headline_material 0x7f060047 +int dimen abc_text_size_large_material 0x7f060048 +int dimen abc_text_size_medium_material 0x7f060049 +int dimen abc_text_size_menu_header_material 0x7f06004a +int dimen abc_text_size_menu_material 0x7f06004b +int dimen abc_text_size_small_material 0x7f06004c +int dimen abc_text_size_subhead_material 0x7f06004d +int dimen abc_text_size_subtitle_material_toolbar 0x7f06004e +int dimen abc_text_size_title_material 0x7f06004f +int dimen abc_text_size_title_material_toolbar 0x7f060050 +int dimen appcompat_dialog_background_inset 0x7f060051 +int dimen browser_actions_context_menu_max_width 0x7f060052 +int dimen browser_actions_context_menu_min_padding 0x7f060053 +int dimen cardview_compat_inset_shadow 0x7f060054 +int dimen cardview_default_elevation 0x7f060055 +int dimen cardview_default_radius 0x7f060056 +int dimen clock_face_margin_start 0x7f060057 +int dimen compat_button_inset_horizontal_material 0x7f060058 +int dimen compat_button_inset_vertical_material 0x7f060059 +int dimen compat_button_padding_horizontal_material 0x7f06005a +int dimen compat_button_padding_vertical_material 0x7f06005b +int dimen compat_control_corner_material 0x7f06005c +int dimen compat_notification_large_icon_max_height 0x7f06005d +int dimen compat_notification_large_icon_max_width 0x7f06005e +int dimen def_drawer_elevation 0x7f06005f +int dimen design_appbar_elevation 0x7f060060 +int dimen design_bottom_navigation_active_item_max_width 0x7f060061 +int dimen design_bottom_navigation_active_item_min_width 0x7f060062 +int dimen design_bottom_navigation_active_text_size 0x7f060063 +int dimen design_bottom_navigation_elevation 0x7f060064 +int dimen design_bottom_navigation_height 0x7f060065 +int dimen design_bottom_navigation_icon_size 0x7f060066 +int dimen design_bottom_navigation_item_max_width 0x7f060067 +int dimen design_bottom_navigation_item_min_width 0x7f060068 +int dimen design_bottom_navigation_label_padding 0x7f060069 +int dimen design_bottom_navigation_margin 0x7f06006a +int dimen design_bottom_navigation_shadow_height 0x7f06006b +int dimen design_bottom_navigation_text_size 0x7f06006c +int dimen design_bottom_sheet_elevation 0x7f06006d +int dimen design_bottom_sheet_modal_elevation 0x7f06006e +int dimen design_bottom_sheet_peek_height_min 0x7f06006f +int dimen design_fab_border_width 0x7f060070 +int dimen design_fab_elevation 0x7f060071 +int dimen design_fab_image_size 0x7f060072 +int dimen design_fab_size_mini 0x7f060073 +int dimen design_fab_size_normal 0x7f060074 +int dimen design_fab_translation_z_hovered_focused 0x7f060075 +int dimen design_fab_translation_z_pressed 0x7f060076 +int dimen design_navigation_elevation 0x7f060077 +int dimen design_navigation_icon_padding 0x7f060078 +int dimen design_navigation_icon_size 0x7f060079 +int dimen design_navigation_item_horizontal_padding 0x7f06007a +int dimen design_navigation_item_icon_padding 0x7f06007b +int dimen design_navigation_item_vertical_padding 0x7f06007c +int dimen design_navigation_max_width 0x7f06007d +int dimen design_navigation_padding_bottom 0x7f06007e +int dimen design_navigation_separator_vertical_padding 0x7f06007f +int dimen design_snackbar_action_inline_max_width 0x7f060080 +int dimen design_snackbar_action_text_color_alpha 0x7f060081 +int dimen design_snackbar_background_corner_radius 0x7f060082 +int dimen design_snackbar_elevation 0x7f060083 +int dimen design_snackbar_extra_spacing_horizontal 0x7f060084 +int dimen design_snackbar_max_width 0x7f060085 +int dimen design_snackbar_min_width 0x7f060086 +int dimen design_snackbar_padding_horizontal 0x7f060087 +int dimen design_snackbar_padding_vertical 0x7f060088 +int dimen design_snackbar_padding_vertical_2lines 0x7f060089 +int dimen design_snackbar_text_size 0x7f06008a +int dimen design_tab_max_width 0x7f06008b +int dimen design_tab_scrollable_min_width 0x7f06008c +int dimen design_tab_text_size 0x7f06008d +int dimen design_tab_text_size_2line 0x7f06008e +int dimen design_textinput_caption_translate_y 0x7f06008f +int dimen disabled_alpha_material_dark 0x7f060090 +int dimen disabled_alpha_material_light 0x7f060091 +int dimen fastscroll_default_thickness 0x7f060092 +int dimen fastscroll_margin 0x7f060093 +int dimen fastscroll_minimum_range 0x7f060094 +int dimen highlight_alpha_material_colored 0x7f060095 +int dimen highlight_alpha_material_dark 0x7f060096 +int dimen highlight_alpha_material_light 0x7f060097 +int dimen hint_alpha_material_dark 0x7f060098 +int dimen hint_alpha_material_light 0x7f060099 +int dimen hint_pressed_alpha_material_dark 0x7f06009a +int dimen hint_pressed_alpha_material_light 0x7f06009b +int dimen item_touch_helper_max_drag_scroll_per_frame 0x7f06009c +int dimen item_touch_helper_swipe_escape_max_velocity 0x7f06009d +int dimen item_touch_helper_swipe_escape_velocity 0x7f06009e +int dimen m3_alert_dialog_action_bottom_padding 0x7f06009f +int dimen m3_alert_dialog_action_top_padding 0x7f0600a0 +int dimen m3_alert_dialog_corner_size 0x7f0600a1 +int dimen m3_alert_dialog_elevation 0x7f0600a2 +int dimen m3_alert_dialog_icon_margin 0x7f0600a3 +int dimen m3_alert_dialog_icon_size 0x7f0600a4 +int dimen m3_alert_dialog_title_bottom_margin 0x7f0600a5 +int dimen m3_appbar_expanded_title_margin_bottom 0x7f0600a6 +int dimen m3_appbar_expanded_title_margin_horizontal 0x7f0600a7 +int dimen m3_appbar_scrim_height_trigger 0x7f0600a8 +int dimen m3_appbar_scrim_height_trigger_large 0x7f0600a9 +int dimen m3_appbar_scrim_height_trigger_medium 0x7f0600aa +int dimen m3_appbar_size_compact 0x7f0600ab +int dimen m3_appbar_size_large 0x7f0600ac +int dimen m3_appbar_size_medium 0x7f0600ad +int dimen m3_back_progress_bottom_container_max_scale_x_distance 0x7f0600ae +int dimen m3_back_progress_bottom_container_max_scale_y_distance 0x7f0600af +int dimen m3_back_progress_main_container_max_translation_y 0x7f0600b0 +int dimen m3_back_progress_main_container_min_edge_gap 0x7f0600b1 +int dimen m3_back_progress_side_container_max_scale_x_distance_grow 0x7f0600b2 +int dimen m3_back_progress_side_container_max_scale_x_distance_shrink 0x7f0600b3 +int dimen m3_back_progress_side_container_max_scale_y_distance 0x7f0600b4 +int dimen m3_badge_horizontal_offset 0x7f0600b5 +int dimen m3_badge_offset 0x7f0600b6 +int dimen m3_badge_size 0x7f0600b7 +int dimen m3_badge_vertical_offset 0x7f0600b8 +int dimen m3_badge_with_text_horizontal_offset 0x7f0600b9 +int dimen m3_badge_with_text_offset 0x7f0600ba +int dimen m3_badge_with_text_size 0x7f0600bb +int dimen m3_badge_with_text_vertical_offset 0x7f0600bc +int dimen m3_badge_with_text_vertical_padding 0x7f0600bd +int dimen m3_bottom_nav_item_active_indicator_height 0x7f0600be +int dimen m3_bottom_nav_item_active_indicator_margin_horizontal 0x7f0600bf +int dimen m3_bottom_nav_item_active_indicator_width 0x7f0600c0 +int dimen m3_bottom_nav_item_padding_bottom 0x7f0600c1 +int dimen m3_bottom_nav_item_padding_top 0x7f0600c2 +int dimen m3_bottom_nav_min_height 0x7f0600c3 +int dimen m3_bottom_sheet_drag_handle_bottom_padding 0x7f0600c4 +int dimen m3_bottom_sheet_elevation 0x7f0600c5 +int dimen m3_bottom_sheet_modal_elevation 0x7f0600c6 +int dimen m3_bottomappbar_fab_cradle_margin 0x7f0600c7 +int dimen m3_bottomappbar_fab_cradle_rounded_corner_radius 0x7f0600c8 +int dimen m3_bottomappbar_fab_cradle_vertical_offset 0x7f0600c9 +int dimen m3_bottomappbar_fab_end_margin 0x7f0600ca +int dimen m3_bottomappbar_height 0x7f0600cb +int dimen m3_bottomappbar_horizontal_padding 0x7f0600cc +int dimen m3_btn_dialog_btn_min_width 0x7f0600cd +int dimen m3_btn_dialog_btn_spacing 0x7f0600ce +int dimen m3_btn_disabled_elevation 0x7f0600cf +int dimen m3_btn_disabled_translation_z 0x7f0600d0 +int dimen m3_btn_elevated_btn_elevation 0x7f0600d1 +int dimen m3_btn_elevation 0x7f0600d2 +int dimen m3_btn_icon_btn_padding_left 0x7f0600d3 +int dimen m3_btn_icon_btn_padding_right 0x7f0600d4 +int dimen m3_btn_icon_only_default_padding 0x7f0600d5 +int dimen m3_btn_icon_only_default_size 0x7f0600d6 +int dimen m3_btn_icon_only_icon_padding 0x7f0600d7 +int dimen m3_btn_icon_only_min_width 0x7f0600d8 +int dimen m3_btn_inset 0x7f0600d9 +int dimen m3_btn_max_width 0x7f0600da +int dimen m3_btn_padding_bottom 0x7f0600db +int dimen m3_btn_padding_left 0x7f0600dc +int dimen m3_btn_padding_right 0x7f0600dd +int dimen m3_btn_padding_top 0x7f0600de +int dimen m3_btn_stroke_size 0x7f0600df +int dimen m3_btn_text_btn_icon_padding_left 0x7f0600e0 +int dimen m3_btn_text_btn_icon_padding_right 0x7f0600e1 +int dimen m3_btn_text_btn_padding_left 0x7f0600e2 +int dimen m3_btn_text_btn_padding_right 0x7f0600e3 +int dimen m3_btn_translation_z_base 0x7f0600e4 +int dimen m3_btn_translation_z_hovered 0x7f0600e5 +int dimen m3_card_disabled_z 0x7f0600e6 +int dimen m3_card_dragged_z 0x7f0600e7 +int dimen m3_card_elevated_disabled_z 0x7f0600e8 +int dimen m3_card_elevated_dragged_z 0x7f0600e9 +int dimen m3_card_elevated_elevation 0x7f0600ea +int dimen m3_card_elevated_hovered_z 0x7f0600eb +int dimen m3_card_elevation 0x7f0600ec +int dimen m3_card_hovered_z 0x7f0600ed +int dimen m3_card_stroke_width 0x7f0600ee +int dimen m3_carousel_debug_keyline_width 0x7f0600ef +int dimen m3_carousel_extra_small_item_size 0x7f0600f0 +int dimen m3_carousel_gone_size 0x7f0600f1 +int dimen m3_carousel_small_item_default_corner_size 0x7f0600f2 +int dimen m3_carousel_small_item_size_max 0x7f0600f3 +int dimen m3_carousel_small_item_size_min 0x7f0600f4 +int dimen m3_chip_checked_hovered_translation_z 0x7f0600f5 +int dimen m3_chip_corner_size 0x7f0600f6 +int dimen m3_chip_disabled_translation_z 0x7f0600f7 +int dimen m3_chip_dragged_translation_z 0x7f0600f8 +int dimen m3_chip_elevated_elevation 0x7f0600f9 +int dimen m3_chip_hovered_translation_z 0x7f0600fa +int dimen m3_chip_icon_size 0x7f0600fb +int dimen m3_comp_assist_chip_container_height 0x7f0600fc +int dimen m3_comp_assist_chip_elevated_container_elevation 0x7f0600fd +int dimen m3_comp_assist_chip_flat_container_elevation 0x7f0600fe +int dimen m3_comp_assist_chip_flat_outline_width 0x7f0600ff +int dimen m3_comp_assist_chip_with_icon_icon_size 0x7f060100 +int dimen m3_comp_badge_large_size 0x7f060101 +int dimen m3_comp_badge_size 0x7f060102 +int dimen m3_comp_bottom_app_bar_container_elevation 0x7f060103 +int dimen m3_comp_bottom_app_bar_container_height 0x7f060104 +int dimen m3_comp_checkbox_selected_disabled_container_opacity 0x7f060105 +int dimen m3_comp_circular_progress_indicator_active_indicator_width 0x7f060106 +int dimen m3_comp_date_picker_modal_date_today_container_outline_width 0x7f060107 +int dimen m3_comp_date_picker_modal_header_container_height 0x7f060108 +int dimen m3_comp_date_picker_modal_range_selection_header_container_height 0x7f060109 +int dimen m3_comp_divider_thickness 0x7f06010a +int dimen m3_comp_elevated_button_container_elevation 0x7f06010b +int dimen m3_comp_elevated_button_disabled_container_elevation 0x7f06010c +int dimen m3_comp_elevated_card_container_elevation 0x7f06010d +int dimen m3_comp_elevated_card_icon_size 0x7f06010e +int dimen m3_comp_extended_fab_primary_container_elevation 0x7f06010f +int dimen m3_comp_extended_fab_primary_container_height 0x7f060110 +int dimen m3_comp_extended_fab_primary_focus_container_elevation 0x7f060111 +int dimen m3_comp_extended_fab_primary_focus_state_layer_opacity 0x7f060112 +int dimen m3_comp_extended_fab_primary_hover_container_elevation 0x7f060113 +int dimen m3_comp_extended_fab_primary_hover_state_layer_opacity 0x7f060114 +int dimen m3_comp_extended_fab_primary_icon_size 0x7f060115 +int dimen m3_comp_extended_fab_primary_pressed_container_elevation 0x7f060116 +int dimen m3_comp_extended_fab_primary_pressed_state_layer_opacity 0x7f060117 +int dimen m3_comp_fab_primary_container_elevation 0x7f060118 +int dimen m3_comp_fab_primary_container_height 0x7f060119 +int dimen m3_comp_fab_primary_focus_state_layer_opacity 0x7f06011a +int dimen m3_comp_fab_primary_hover_container_elevation 0x7f06011b +int dimen m3_comp_fab_primary_hover_state_layer_opacity 0x7f06011c +int dimen m3_comp_fab_primary_icon_size 0x7f06011d +int dimen m3_comp_fab_primary_large_container_height 0x7f06011e +int dimen m3_comp_fab_primary_large_icon_size 0x7f06011f +int dimen m3_comp_fab_primary_pressed_container_elevation 0x7f060120 +int dimen m3_comp_fab_primary_pressed_state_layer_opacity 0x7f060121 +int dimen m3_comp_fab_primary_small_container_height 0x7f060122 +int dimen m3_comp_fab_primary_small_icon_size 0x7f060123 +int dimen m3_comp_filled_autocomplete_menu_container_elevation 0x7f060124 +int dimen m3_comp_filled_button_container_elevation 0x7f060125 +int dimen m3_comp_filled_button_with_icon_icon_size 0x7f060126 +int dimen m3_comp_filled_card_container_elevation 0x7f060127 +int dimen m3_comp_filled_card_dragged_state_layer_opacity 0x7f060128 +int dimen m3_comp_filled_card_focus_state_layer_opacity 0x7f060129 +int dimen m3_comp_filled_card_hover_state_layer_opacity 0x7f06012a +int dimen m3_comp_filled_card_icon_size 0x7f06012b +int dimen m3_comp_filled_card_pressed_state_layer_opacity 0x7f06012c +int dimen m3_comp_filled_text_field_disabled_active_indicator_opacity 0x7f06012d +int dimen m3_comp_filter_chip_container_height 0x7f06012e +int dimen m3_comp_filter_chip_elevated_container_elevation 0x7f06012f +int dimen m3_comp_filter_chip_flat_container_elevation 0x7f060130 +int dimen m3_comp_filter_chip_flat_unselected_outline_width 0x7f060131 +int dimen m3_comp_filter_chip_with_icon_icon_size 0x7f060132 +int dimen m3_comp_input_chip_container_elevation 0x7f060133 +int dimen m3_comp_input_chip_container_height 0x7f060134 +int dimen m3_comp_input_chip_unselected_outline_width 0x7f060135 +int dimen m3_comp_input_chip_with_avatar_avatar_size 0x7f060136 +int dimen m3_comp_input_chip_with_leading_icon_leading_icon_size 0x7f060137 +int dimen m3_comp_linear_progress_indicator_active_indicator_height 0x7f060138 +int dimen m3_comp_menu_container_elevation 0x7f060139 +int dimen m3_comp_navigation_bar_active_indicator_height 0x7f06013a +int dimen m3_comp_navigation_bar_active_indicator_width 0x7f06013b +int dimen m3_comp_navigation_bar_container_elevation 0x7f06013c +int dimen m3_comp_navigation_bar_container_height 0x7f06013d +int dimen m3_comp_navigation_bar_focus_state_layer_opacity 0x7f06013e +int dimen m3_comp_navigation_bar_hover_state_layer_opacity 0x7f06013f +int dimen m3_comp_navigation_bar_icon_size 0x7f060140 +int dimen m3_comp_navigation_bar_pressed_state_layer_opacity 0x7f060141 +int dimen m3_comp_navigation_drawer_container_width 0x7f060142 +int dimen m3_comp_navigation_drawer_focus_state_layer_opacity 0x7f060143 +int dimen m3_comp_navigation_drawer_hover_state_layer_opacity 0x7f060144 +int dimen m3_comp_navigation_drawer_icon_size 0x7f060145 +int dimen m3_comp_navigation_drawer_modal_container_elevation 0x7f060146 +int dimen m3_comp_navigation_drawer_pressed_state_layer_opacity 0x7f060147 +int dimen m3_comp_navigation_drawer_standard_container_elevation 0x7f060148 +int dimen m3_comp_navigation_rail_active_indicator_height 0x7f060149 +int dimen m3_comp_navigation_rail_active_indicator_width 0x7f06014a +int dimen m3_comp_navigation_rail_container_elevation 0x7f06014b +int dimen m3_comp_navigation_rail_container_width 0x7f06014c +int dimen m3_comp_navigation_rail_focus_state_layer_opacity 0x7f06014d +int dimen m3_comp_navigation_rail_hover_state_layer_opacity 0x7f06014e +int dimen m3_comp_navigation_rail_icon_size 0x7f06014f +int dimen m3_comp_navigation_rail_pressed_state_layer_opacity 0x7f060150 +int dimen m3_comp_outlined_autocomplete_menu_container_elevation 0x7f060151 +int dimen m3_comp_outlined_button_disabled_outline_opacity 0x7f060152 +int dimen m3_comp_outlined_button_outline_width 0x7f060153 +int dimen m3_comp_outlined_card_container_elevation 0x7f060154 +int dimen m3_comp_outlined_card_disabled_outline_opacity 0x7f060155 +int dimen m3_comp_outlined_card_icon_size 0x7f060156 +int dimen m3_comp_outlined_card_outline_width 0x7f060157 +int dimen m3_comp_outlined_icon_button_unselected_outline_width 0x7f060158 +int dimen m3_comp_outlined_text_field_disabled_input_text_opacity 0x7f060159 +int dimen m3_comp_outlined_text_field_disabled_label_text_opacity 0x7f06015a +int dimen m3_comp_outlined_text_field_disabled_supporting_text_opacity 0x7f06015b +int dimen m3_comp_outlined_text_field_focus_outline_width 0x7f06015c +int dimen m3_comp_outlined_text_field_outline_width 0x7f06015d +int dimen m3_comp_primary_navigation_tab_active_focus_state_layer_opacity 0x7f06015e +int dimen m3_comp_primary_navigation_tab_active_hover_state_layer_opacity 0x7f06015f +int dimen m3_comp_primary_navigation_tab_active_indicator_height 0x7f060160 +int dimen m3_comp_primary_navigation_tab_active_pressed_state_layer_opacity 0x7f060161 +int dimen m3_comp_primary_navigation_tab_inactive_focus_state_layer_opacity 0x7f060162 +int dimen m3_comp_primary_navigation_tab_inactive_hover_state_layer_opacity 0x7f060163 +int dimen m3_comp_primary_navigation_tab_inactive_pressed_state_layer_opacity 0x7f060164 +int dimen m3_comp_primary_navigation_tab_with_icon_icon_size 0x7f060165 +int dimen m3_comp_radio_button_disabled_selected_icon_opacity 0x7f060166 +int dimen m3_comp_radio_button_disabled_unselected_icon_opacity 0x7f060167 +int dimen m3_comp_radio_button_selected_focus_state_layer_opacity 0x7f060168 +int dimen m3_comp_radio_button_selected_hover_state_layer_opacity 0x7f060169 +int dimen m3_comp_radio_button_selected_pressed_state_layer_opacity 0x7f06016a +int dimen m3_comp_radio_button_unselected_focus_state_layer_opacity 0x7f06016b +int dimen m3_comp_radio_button_unselected_hover_state_layer_opacity 0x7f06016c +int dimen m3_comp_radio_button_unselected_pressed_state_layer_opacity 0x7f06016d +int dimen m3_comp_search_bar_avatar_size 0x7f06016e +int dimen m3_comp_search_bar_container_elevation 0x7f06016f +int dimen m3_comp_search_bar_container_height 0x7f060170 +int dimen m3_comp_search_bar_hover_state_layer_opacity 0x7f060171 +int dimen m3_comp_search_bar_pressed_state_layer_opacity 0x7f060172 +int dimen m3_comp_search_view_container_elevation 0x7f060173 +int dimen m3_comp_search_view_docked_header_container_height 0x7f060174 +int dimen m3_comp_search_view_full_screen_header_container_height 0x7f060175 +int dimen m3_comp_secondary_navigation_tab_active_indicator_height 0x7f060176 +int dimen m3_comp_secondary_navigation_tab_focus_state_layer_opacity 0x7f060177 +int dimen m3_comp_secondary_navigation_tab_hover_state_layer_opacity 0x7f060178 +int dimen m3_comp_secondary_navigation_tab_pressed_state_layer_opacity 0x7f060179 +int dimen m3_comp_sheet_bottom_docked_drag_handle_height 0x7f06017a +int dimen m3_comp_sheet_bottom_docked_drag_handle_width 0x7f06017b +int dimen m3_comp_sheet_bottom_docked_modal_container_elevation 0x7f06017c +int dimen m3_comp_sheet_bottom_docked_standard_container_elevation 0x7f06017d +int dimen m3_comp_sheet_side_docked_container_width 0x7f06017e +int dimen m3_comp_sheet_side_docked_modal_container_elevation 0x7f06017f +int dimen m3_comp_sheet_side_docked_standard_container_elevation 0x7f060180 +int dimen m3_comp_slider_disabled_active_track_opacity 0x7f060181 +int dimen m3_comp_slider_disabled_handle_opacity 0x7f060182 +int dimen m3_comp_slider_disabled_inactive_track_opacity 0x7f060183 +int dimen m3_comp_slider_inactive_track_height 0x7f060184 +int dimen m3_comp_snackbar_container_elevation 0x7f060185 +int dimen m3_comp_suggestion_chip_container_height 0x7f060186 +int dimen m3_comp_suggestion_chip_elevated_container_elevation 0x7f060187 +int dimen m3_comp_suggestion_chip_flat_container_elevation 0x7f060188 +int dimen m3_comp_suggestion_chip_flat_outline_width 0x7f060189 +int dimen m3_comp_suggestion_chip_with_leading_icon_leading_icon_size 0x7f06018a +int dimen m3_comp_switch_disabled_selected_handle_opacity 0x7f06018b +int dimen m3_comp_switch_disabled_selected_icon_opacity 0x7f06018c +int dimen m3_comp_switch_disabled_track_opacity 0x7f06018d +int dimen m3_comp_switch_disabled_unselected_handle_opacity 0x7f06018e +int dimen m3_comp_switch_disabled_unselected_icon_opacity 0x7f06018f +int dimen m3_comp_switch_selected_focus_state_layer_opacity 0x7f060190 +int dimen m3_comp_switch_selected_hover_state_layer_opacity 0x7f060191 +int dimen m3_comp_switch_selected_pressed_state_layer_opacity 0x7f060192 +int dimen m3_comp_switch_track_height 0x7f060193 +int dimen m3_comp_switch_track_width 0x7f060194 +int dimen m3_comp_switch_unselected_focus_state_layer_opacity 0x7f060195 +int dimen m3_comp_switch_unselected_hover_state_layer_opacity 0x7f060196 +int dimen m3_comp_switch_unselected_pressed_state_layer_opacity 0x7f060197 +int dimen m3_comp_text_button_focus_state_layer_opacity 0x7f060198 +int dimen m3_comp_text_button_hover_state_layer_opacity 0x7f060199 +int dimen m3_comp_text_button_pressed_state_layer_opacity 0x7f06019a +int dimen m3_comp_time_input_time_input_field_focus_outline_width 0x7f06019b +int dimen m3_comp_time_picker_container_elevation 0x7f06019c +int dimen m3_comp_time_picker_period_selector_focus_state_layer_opacity 0x7f06019d +int dimen m3_comp_time_picker_period_selector_hover_state_layer_opacity 0x7f06019e +int dimen m3_comp_time_picker_period_selector_outline_width 0x7f06019f +int dimen m3_comp_time_picker_period_selector_pressed_state_layer_opacity 0x7f0601a0 +int dimen m3_comp_time_picker_time_selector_focus_state_layer_opacity 0x7f0601a1 +int dimen m3_comp_time_picker_time_selector_hover_state_layer_opacity 0x7f0601a2 +int dimen m3_comp_time_picker_time_selector_pressed_state_layer_opacity 0x7f0601a3 +int dimen m3_comp_top_app_bar_large_container_height 0x7f0601a4 +int dimen m3_comp_top_app_bar_medium_container_height 0x7f0601a5 +int dimen m3_comp_top_app_bar_small_container_elevation 0x7f0601a6 +int dimen m3_comp_top_app_bar_small_container_height 0x7f0601a7 +int dimen m3_comp_top_app_bar_small_on_scroll_container_elevation 0x7f0601a8 +int dimen m3_datepicker_elevation 0x7f0601a9 +int dimen m3_divider_heavy_thickness 0x7f0601aa +int dimen m3_extended_fab_bottom_padding 0x7f0601ab +int dimen m3_extended_fab_end_padding 0x7f0601ac +int dimen m3_extended_fab_icon_padding 0x7f0601ad +int dimen m3_extended_fab_min_height 0x7f0601ae +int dimen m3_extended_fab_start_padding 0x7f0601af +int dimen m3_extended_fab_top_padding 0x7f0601b0 +int dimen m3_fab_border_width 0x7f0601b1 +int dimen m3_fab_corner_size 0x7f0601b2 +int dimen m3_fab_translation_z_hovered_focused 0x7f0601b3 +int dimen m3_fab_translation_z_pressed 0x7f0601b4 +int dimen m3_large_fab_max_image_size 0x7f0601b5 +int dimen m3_large_fab_size 0x7f0601b6 +int dimen m3_large_text_vertical_offset_adjustment 0x7f0601b7 +int dimen m3_menu_elevation 0x7f0601b8 +int dimen m3_nav_badge_with_text_vertical_offset 0x7f0601b9 +int dimen m3_navigation_drawer_layout_corner_size 0x7f0601ba +int dimen m3_navigation_item_active_indicator_label_padding 0x7f0601bb +int dimen m3_navigation_item_horizontal_padding 0x7f0601bc +int dimen m3_navigation_item_icon_padding 0x7f0601bd +int dimen m3_navigation_item_shape_inset_bottom 0x7f0601be +int dimen m3_navigation_item_shape_inset_end 0x7f0601bf +int dimen m3_navigation_item_shape_inset_start 0x7f0601c0 +int dimen m3_navigation_item_shape_inset_top 0x7f0601c1 +int dimen m3_navigation_item_vertical_padding 0x7f0601c2 +int dimen m3_navigation_menu_divider_horizontal_padding 0x7f0601c3 +int dimen m3_navigation_menu_headline_horizontal_padding 0x7f0601c4 +int dimen m3_navigation_rail_default_width 0x7f0601c5 +int dimen m3_navigation_rail_elevation 0x7f0601c6 +int dimen m3_navigation_rail_icon_size 0x7f0601c7 +int dimen m3_navigation_rail_item_active_indicator_height 0x7f0601c8 +int dimen m3_navigation_rail_item_active_indicator_margin_horizontal 0x7f0601c9 +int dimen m3_navigation_rail_item_active_indicator_width 0x7f0601ca +int dimen m3_navigation_rail_item_min_height 0x7f0601cb +int dimen m3_navigation_rail_item_padding_bottom 0x7f0601cc +int dimen m3_navigation_rail_item_padding_bottom_with_large_font 0x7f0601cd +int dimen m3_navigation_rail_item_padding_top 0x7f0601ce +int dimen m3_navigation_rail_item_padding_top_with_large_font 0x7f0601cf +int dimen m3_ripple_default_alpha 0x7f0601d0 +int dimen m3_ripple_focused_alpha 0x7f0601d1 +int dimen m3_ripple_hovered_alpha 0x7f0601d2 +int dimen m3_ripple_pressed_alpha 0x7f0601d3 +int dimen m3_ripple_selectable_pressed_alpha 0x7f0601d4 +int dimen m3_searchbar_elevation 0x7f0601d5 +int dimen m3_searchbar_height 0x7f0601d6 +int dimen m3_searchbar_margin_horizontal 0x7f0601d7 +int dimen m3_searchbar_margin_vertical 0x7f0601d8 +int dimen m3_searchbar_outlined_stroke_width 0x7f0601d9 +int dimen m3_searchbar_padding_start 0x7f0601da +int dimen m3_searchbar_text_margin_start_no_navigation_icon 0x7f0601db +int dimen m3_searchbar_text_size 0x7f0601dc +int dimen m3_searchview_divider_size 0x7f0601dd +int dimen m3_searchview_elevation 0x7f0601de +int dimen m3_searchview_height 0x7f0601df +int dimen m3_side_sheet_margin_detached 0x7f0601e0 +int dimen m3_side_sheet_modal_elevation 0x7f0601e1 +int dimen m3_side_sheet_standard_elevation 0x7f0601e2 +int dimen m3_side_sheet_width 0x7f0601e3 +int dimen m3_simple_item_color_hovered_alpha 0x7f0601e4 +int dimen m3_simple_item_color_selected_alpha 0x7f0601e5 +int dimen m3_slider_inactive_track_height 0x7f0601e6 +int dimen m3_slider_thumb_elevation 0x7f0601e7 +int dimen m3_small_fab_max_image_size 0x7f0601e8 +int dimen m3_small_fab_size 0x7f0601e9 +int dimen m3_snackbar_action_text_color_alpha 0x7f0601ea +int dimen m3_snackbar_margin 0x7f0601eb +int dimen m3_sys_elevation_level0 0x7f0601ec +int dimen m3_sys_elevation_level1 0x7f0601ed +int dimen m3_sys_elevation_level2 0x7f0601ee +int dimen m3_sys_elevation_level3 0x7f0601ef +int dimen m3_sys_elevation_level4 0x7f0601f0 +int dimen m3_sys_elevation_level5 0x7f0601f1 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x1 0x7f0601f2 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_x2 0x7f0601f3 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y1 0x7f0601f4 +int dimen m3_sys_motion_easing_emphasized_accelerate_control_y2 0x7f0601f5 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x1 0x7f0601f6 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_x2 0x7f0601f7 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y1 0x7f0601f8 +int dimen m3_sys_motion_easing_emphasized_decelerate_control_y2 0x7f0601f9 +int dimen m3_sys_motion_easing_legacy_accelerate_control_x1 0x7f0601fa +int dimen m3_sys_motion_easing_legacy_accelerate_control_x2 0x7f0601fb +int dimen m3_sys_motion_easing_legacy_accelerate_control_y1 0x7f0601fc +int dimen m3_sys_motion_easing_legacy_accelerate_control_y2 0x7f0601fd +int dimen m3_sys_motion_easing_legacy_control_x1 0x7f0601fe +int dimen m3_sys_motion_easing_legacy_control_x2 0x7f0601ff +int dimen m3_sys_motion_easing_legacy_control_y1 0x7f060200 +int dimen m3_sys_motion_easing_legacy_control_y2 0x7f060201 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x1 0x7f060202 +int dimen m3_sys_motion_easing_legacy_decelerate_control_x2 0x7f060203 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y1 0x7f060204 +int dimen m3_sys_motion_easing_legacy_decelerate_control_y2 0x7f060205 +int dimen m3_sys_motion_easing_linear_control_x1 0x7f060206 +int dimen m3_sys_motion_easing_linear_control_x2 0x7f060207 +int dimen m3_sys_motion_easing_linear_control_y1 0x7f060208 +int dimen m3_sys_motion_easing_linear_control_y2 0x7f060209 +int dimen m3_sys_motion_easing_standard_accelerate_control_x1 0x7f06020a +int dimen m3_sys_motion_easing_standard_accelerate_control_x2 0x7f06020b +int dimen m3_sys_motion_easing_standard_accelerate_control_y1 0x7f06020c +int dimen m3_sys_motion_easing_standard_accelerate_control_y2 0x7f06020d +int dimen m3_sys_motion_easing_standard_control_x1 0x7f06020e +int dimen m3_sys_motion_easing_standard_control_x2 0x7f06020f +int dimen m3_sys_motion_easing_standard_control_y1 0x7f060210 +int dimen m3_sys_motion_easing_standard_control_y2 0x7f060211 +int dimen m3_sys_motion_easing_standard_decelerate_control_x1 0x7f060212 +int dimen m3_sys_motion_easing_standard_decelerate_control_x2 0x7f060213 +int dimen m3_sys_motion_easing_standard_decelerate_control_y1 0x7f060214 +int dimen m3_sys_motion_easing_standard_decelerate_control_y2 0x7f060215 +int dimen m3_sys_state_dragged_state_layer_opacity 0x7f060216 +int dimen m3_sys_state_focus_state_layer_opacity 0x7f060217 +int dimen m3_sys_state_hover_state_layer_opacity 0x7f060218 +int dimen m3_sys_state_pressed_state_layer_opacity 0x7f060219 +int dimen m3_timepicker_display_stroke_width 0x7f06021a +int dimen m3_timepicker_window_elevation 0x7f06021b +int dimen m3_toolbar_text_size_title 0x7f06021c +int dimen material_bottom_sheet_max_width 0x7f06021d +int dimen material_clock_display_height 0x7f06021e +int dimen material_clock_display_padding 0x7f06021f +int dimen material_clock_display_width 0x7f060220 +int dimen material_clock_face_margin_bottom 0x7f060221 +int dimen material_clock_face_margin_top 0x7f060222 +int dimen material_clock_hand_center_dot_radius 0x7f060223 +int dimen material_clock_hand_padding 0x7f060224 +int dimen material_clock_hand_stroke_width 0x7f060225 +int dimen material_clock_number_text_size 0x7f060226 +int dimen material_clock_period_toggle_height 0x7f060227 +int dimen material_clock_period_toggle_horizontal_gap 0x7f060228 +int dimen material_clock_period_toggle_vertical_gap 0x7f060229 +int dimen material_clock_period_toggle_width 0x7f06022a +int dimen material_clock_size 0x7f06022b +int dimen material_cursor_inset 0x7f06022c +int dimen material_cursor_width 0x7f06022d +int dimen material_divider_thickness 0x7f06022e +int dimen material_emphasis_disabled 0x7f06022f +int dimen material_emphasis_disabled_background 0x7f060230 +int dimen material_emphasis_high_type 0x7f060231 +int dimen material_emphasis_medium 0x7f060232 +int dimen material_filled_edittext_font_1_3_padding_bottom 0x7f060233 +int dimen material_filled_edittext_font_1_3_padding_top 0x7f060234 +int dimen material_filled_edittext_font_2_0_padding_bottom 0x7f060235 +int dimen material_filled_edittext_font_2_0_padding_top 0x7f060236 +int dimen material_font_1_3_box_collapsed_padding_top 0x7f060237 +int dimen material_font_2_0_box_collapsed_padding_top 0x7f060238 +int dimen material_helper_text_default_padding_top 0x7f060239 +int dimen material_helper_text_font_1_3_padding_horizontal 0x7f06023a +int dimen material_helper_text_font_1_3_padding_top 0x7f06023b +int dimen material_input_text_to_prefix_suffix_padding 0x7f06023c +int dimen material_textinput_default_width 0x7f06023d +int dimen material_textinput_max_width 0x7f06023e +int dimen material_textinput_min_width 0x7f06023f +int dimen material_time_picker_minimum_screen_height 0x7f060240 +int dimen material_time_picker_minimum_screen_width 0x7f060241 +int dimen mtrl_alert_dialog_background_inset_bottom 0x7f060242 +int dimen mtrl_alert_dialog_background_inset_end 0x7f060243 +int dimen mtrl_alert_dialog_background_inset_start 0x7f060244 +int dimen mtrl_alert_dialog_background_inset_top 0x7f060245 +int dimen mtrl_alert_dialog_picker_background_inset 0x7f060246 +int dimen mtrl_badge_horizontal_edge_offset 0x7f060247 +int dimen mtrl_badge_long_text_horizontal_padding 0x7f060248 +int dimen mtrl_badge_size 0x7f060249 +int dimen mtrl_badge_text_horizontal_edge_offset 0x7f06024a +int dimen mtrl_badge_text_size 0x7f06024b +int dimen mtrl_badge_toolbar_action_menu_item_horizontal_offset 0x7f06024c +int dimen mtrl_badge_toolbar_action_menu_item_vertical_offset 0x7f06024d +int dimen mtrl_badge_with_text_size 0x7f06024e +int dimen mtrl_bottomappbar_fabOffsetEndMode 0x7f06024f +int dimen mtrl_bottomappbar_fab_bottom_margin 0x7f060250 +int dimen mtrl_bottomappbar_fab_cradle_margin 0x7f060251 +int dimen mtrl_bottomappbar_fab_cradle_rounded_corner_radius 0x7f060252 +int dimen mtrl_bottomappbar_fab_cradle_vertical_offset 0x7f060253 +int dimen mtrl_bottomappbar_height 0x7f060254 +int dimen mtrl_btn_corner_radius 0x7f060255 +int dimen mtrl_btn_dialog_btn_min_width 0x7f060256 +int dimen mtrl_btn_disabled_elevation 0x7f060257 +int dimen mtrl_btn_disabled_z 0x7f060258 +int dimen mtrl_btn_elevation 0x7f060259 +int dimen mtrl_btn_focused_z 0x7f06025a +int dimen mtrl_btn_hovered_z 0x7f06025b +int dimen mtrl_btn_icon_btn_padding_left 0x7f06025c +int dimen mtrl_btn_icon_padding 0x7f06025d +int dimen mtrl_btn_inset 0x7f06025e +int dimen mtrl_btn_letter_spacing 0x7f06025f +int dimen mtrl_btn_max_width 0x7f060260 +int dimen mtrl_btn_padding_bottom 0x7f060261 +int dimen mtrl_btn_padding_left 0x7f060262 +int dimen mtrl_btn_padding_right 0x7f060263 +int dimen mtrl_btn_padding_top 0x7f060264 +int dimen mtrl_btn_pressed_z 0x7f060265 +int dimen mtrl_btn_snackbar_margin_horizontal 0x7f060266 +int dimen mtrl_btn_stroke_size 0x7f060267 +int dimen mtrl_btn_text_btn_icon_padding 0x7f060268 +int dimen mtrl_btn_text_btn_padding_left 0x7f060269 +int dimen mtrl_btn_text_btn_padding_right 0x7f06026a +int dimen mtrl_btn_text_size 0x7f06026b +int dimen mtrl_btn_z 0x7f06026c +int dimen mtrl_calendar_action_confirm_button_min_width 0x7f06026d +int dimen mtrl_calendar_action_height 0x7f06026e +int dimen mtrl_calendar_action_padding 0x7f06026f +int dimen mtrl_calendar_bottom_padding 0x7f060270 +int dimen mtrl_calendar_content_padding 0x7f060271 +int dimen mtrl_calendar_day_corner 0x7f060272 +int dimen mtrl_calendar_day_height 0x7f060273 +int dimen mtrl_calendar_day_horizontal_padding 0x7f060274 +int dimen mtrl_calendar_day_today_stroke 0x7f060275 +int dimen mtrl_calendar_day_vertical_padding 0x7f060276 +int dimen mtrl_calendar_day_width 0x7f060277 +int dimen mtrl_calendar_days_of_week_height 0x7f060278 +int dimen mtrl_calendar_dialog_background_inset 0x7f060279 +int dimen mtrl_calendar_header_content_padding 0x7f06027a +int dimen mtrl_calendar_header_content_padding_fullscreen 0x7f06027b +int dimen mtrl_calendar_header_divider_thickness 0x7f06027c +int dimen mtrl_calendar_header_height 0x7f06027d +int dimen mtrl_calendar_header_height_fullscreen 0x7f06027e +int dimen mtrl_calendar_header_selection_line_height 0x7f06027f +int dimen mtrl_calendar_header_text_padding 0x7f060280 +int dimen mtrl_calendar_header_toggle_margin_bottom 0x7f060281 +int dimen mtrl_calendar_header_toggle_margin_top 0x7f060282 +int dimen mtrl_calendar_landscape_header_width 0x7f060283 +int dimen mtrl_calendar_maximum_default_fullscreen_minor_axis 0x7f060284 +int dimen mtrl_calendar_month_horizontal_padding 0x7f060285 +int dimen mtrl_calendar_month_vertical_padding 0x7f060286 +int dimen mtrl_calendar_navigation_bottom_padding 0x7f060287 +int dimen mtrl_calendar_navigation_height 0x7f060288 +int dimen mtrl_calendar_navigation_top_padding 0x7f060289 +int dimen mtrl_calendar_pre_l_text_clip_padding 0x7f06028a +int dimen mtrl_calendar_selection_baseline_to_top_fullscreen 0x7f06028b +int dimen mtrl_calendar_selection_text_baseline_to_bottom 0x7f06028c +int dimen mtrl_calendar_selection_text_baseline_to_bottom_fullscreen 0x7f06028d +int dimen mtrl_calendar_selection_text_baseline_to_top 0x7f06028e +int dimen mtrl_calendar_text_input_padding_top 0x7f06028f +int dimen mtrl_calendar_title_baseline_to_top 0x7f060290 +int dimen mtrl_calendar_title_baseline_to_top_fullscreen 0x7f060291 +int dimen mtrl_calendar_year_corner 0x7f060292 +int dimen mtrl_calendar_year_height 0x7f060293 +int dimen mtrl_calendar_year_horizontal_padding 0x7f060294 +int dimen mtrl_calendar_year_vertical_padding 0x7f060295 +int dimen mtrl_calendar_year_width 0x7f060296 +int dimen mtrl_card_checked_icon_margin 0x7f060297 +int dimen mtrl_card_checked_icon_size 0x7f060298 +int dimen mtrl_card_corner_radius 0x7f060299 +int dimen mtrl_card_dragged_z 0x7f06029a +int dimen mtrl_card_elevation 0x7f06029b +int dimen mtrl_card_spacing 0x7f06029c +int dimen mtrl_chip_pressed_translation_z 0x7f06029d +int dimen mtrl_chip_text_size 0x7f06029e +int dimen mtrl_exposed_dropdown_menu_popup_elevation 0x7f06029f +int dimen mtrl_exposed_dropdown_menu_popup_vertical_offset 0x7f0602a0 +int dimen mtrl_exposed_dropdown_menu_popup_vertical_padding 0x7f0602a1 +int dimen mtrl_extended_fab_bottom_padding 0x7f0602a2 +int dimen mtrl_extended_fab_disabled_elevation 0x7f0602a3 +int dimen mtrl_extended_fab_disabled_translation_z 0x7f0602a4 +int dimen mtrl_extended_fab_elevation 0x7f0602a5 +int dimen mtrl_extended_fab_end_padding 0x7f0602a6 +int dimen mtrl_extended_fab_end_padding_icon 0x7f0602a7 +int dimen mtrl_extended_fab_icon_size 0x7f0602a8 +int dimen mtrl_extended_fab_icon_text_spacing 0x7f0602a9 +int dimen mtrl_extended_fab_min_height 0x7f0602aa +int dimen mtrl_extended_fab_min_width 0x7f0602ab +int dimen mtrl_extended_fab_start_padding 0x7f0602ac +int dimen mtrl_extended_fab_start_padding_icon 0x7f0602ad +int dimen mtrl_extended_fab_top_padding 0x7f0602ae +int dimen mtrl_extended_fab_translation_z_base 0x7f0602af +int dimen mtrl_extended_fab_translation_z_hovered_focused 0x7f0602b0 +int dimen mtrl_extended_fab_translation_z_pressed 0x7f0602b1 +int dimen mtrl_fab_elevation 0x7f0602b2 +int dimen mtrl_fab_min_touch_target 0x7f0602b3 +int dimen mtrl_fab_translation_z_hovered_focused 0x7f0602b4 +int dimen mtrl_fab_translation_z_pressed 0x7f0602b5 +int dimen mtrl_high_ripple_default_alpha 0x7f0602b6 +int dimen mtrl_high_ripple_focused_alpha 0x7f0602b7 +int dimen mtrl_high_ripple_hovered_alpha 0x7f0602b8 +int dimen mtrl_high_ripple_pressed_alpha 0x7f0602b9 +int dimen mtrl_low_ripple_default_alpha 0x7f0602ba +int dimen mtrl_low_ripple_focused_alpha 0x7f0602bb +int dimen mtrl_low_ripple_hovered_alpha 0x7f0602bc +int dimen mtrl_low_ripple_pressed_alpha 0x7f0602bd +int dimen mtrl_min_touch_target_size 0x7f0602be +int dimen mtrl_navigation_bar_item_default_icon_size 0x7f0602bf +int dimen mtrl_navigation_bar_item_default_margin 0x7f0602c0 +int dimen mtrl_navigation_elevation 0x7f0602c1 +int dimen mtrl_navigation_item_horizontal_padding 0x7f0602c2 +int dimen mtrl_navigation_item_icon_padding 0x7f0602c3 +int dimen mtrl_navigation_item_icon_size 0x7f0602c4 +int dimen mtrl_navigation_item_shape_horizontal_margin 0x7f0602c5 +int dimen mtrl_navigation_item_shape_vertical_margin 0x7f0602c6 +int dimen mtrl_navigation_rail_active_text_size 0x7f0602c7 +int dimen mtrl_navigation_rail_compact_width 0x7f0602c8 +int dimen mtrl_navigation_rail_default_width 0x7f0602c9 +int dimen mtrl_navigation_rail_elevation 0x7f0602ca +int dimen mtrl_navigation_rail_icon_margin 0x7f0602cb +int dimen mtrl_navigation_rail_icon_size 0x7f0602cc +int dimen mtrl_navigation_rail_margin 0x7f0602cd +int dimen mtrl_navigation_rail_text_bottom_margin 0x7f0602ce +int dimen mtrl_navigation_rail_text_size 0x7f0602cf +int dimen mtrl_progress_circular_inset 0x7f0602d0 +int dimen mtrl_progress_circular_inset_extra_small 0x7f0602d1 +int dimen mtrl_progress_circular_inset_medium 0x7f0602d2 +int dimen mtrl_progress_circular_inset_small 0x7f0602d3 +int dimen mtrl_progress_circular_radius 0x7f0602d4 +int dimen mtrl_progress_circular_size 0x7f0602d5 +int dimen mtrl_progress_circular_size_extra_small 0x7f0602d6 +int dimen mtrl_progress_circular_size_medium 0x7f0602d7 +int dimen mtrl_progress_circular_size_small 0x7f0602d8 +int dimen mtrl_progress_circular_track_thickness_extra_small 0x7f0602d9 +int dimen mtrl_progress_circular_track_thickness_medium 0x7f0602da +int dimen mtrl_progress_circular_track_thickness_small 0x7f0602db +int dimen mtrl_progress_indicator_full_rounded_corner_radius 0x7f0602dc +int dimen mtrl_progress_track_thickness 0x7f0602dd +int dimen mtrl_shape_corner_size_large_component 0x7f0602de +int dimen mtrl_shape_corner_size_medium_component 0x7f0602df +int dimen mtrl_shape_corner_size_small_component 0x7f0602e0 +int dimen mtrl_slider_halo_radius 0x7f0602e1 +int dimen mtrl_slider_label_padding 0x7f0602e2 +int dimen mtrl_slider_label_radius 0x7f0602e3 +int dimen mtrl_slider_label_square_side 0x7f0602e4 +int dimen mtrl_slider_thumb_elevation 0x7f0602e5 +int dimen mtrl_slider_thumb_radius 0x7f0602e6 +int dimen mtrl_slider_tick_radius 0x7f0602e7 +int dimen mtrl_slider_track_height 0x7f0602e8 +int dimen mtrl_slider_track_side_padding 0x7f0602e9 +int dimen mtrl_slider_widget_height 0x7f0602ea +int dimen mtrl_snackbar_action_text_color_alpha 0x7f0602eb +int dimen mtrl_snackbar_background_corner_radius 0x7f0602ec +int dimen mtrl_snackbar_background_overlay_color_alpha 0x7f0602ed +int dimen mtrl_snackbar_margin 0x7f0602ee +int dimen mtrl_snackbar_message_margin_horizontal 0x7f0602ef +int dimen mtrl_snackbar_padding_horizontal 0x7f0602f0 +int dimen mtrl_switch_text_padding 0x7f0602f1 +int dimen mtrl_switch_thumb_elevation 0x7f0602f2 +int dimen mtrl_switch_thumb_icon_size 0x7f0602f3 +int dimen mtrl_switch_thumb_size 0x7f0602f4 +int dimen mtrl_switch_track_height 0x7f0602f5 +int dimen mtrl_switch_track_width 0x7f0602f6 +int dimen mtrl_textinput_box_corner_radius_medium 0x7f0602f7 +int dimen mtrl_textinput_box_corner_radius_small 0x7f0602f8 +int dimen mtrl_textinput_box_label_cutout_padding 0x7f0602f9 +int dimen mtrl_textinput_box_stroke_width_default 0x7f0602fa +int dimen mtrl_textinput_box_stroke_width_focused 0x7f0602fb +int dimen mtrl_textinput_counter_margin_start 0x7f0602fc +int dimen mtrl_textinput_end_icon_margin_start 0x7f0602fd +int dimen mtrl_textinput_outline_box_expanded_padding 0x7f0602fe +int dimen mtrl_textinput_start_icon_margin_end 0x7f0602ff +int dimen mtrl_toolbar_default_height 0x7f060300 +int dimen mtrl_tooltip_arrowSize 0x7f060301 +int dimen mtrl_tooltip_cornerSize 0x7f060302 +int dimen mtrl_tooltip_minHeight 0x7f060303 +int dimen mtrl_tooltip_minWidth 0x7f060304 +int dimen mtrl_tooltip_padding 0x7f060305 +int dimen mtrl_transition_shared_axis_slide_distance 0x7f060306 +int dimen notification_action_icon_size 0x7f060307 +int dimen notification_action_text_size 0x7f060308 +int dimen notification_big_circle_margin 0x7f060309 +int dimen notification_content_margin_start 0x7f06030a +int dimen notification_large_icon_height 0x7f06030b +int dimen notification_large_icon_width 0x7f06030c +int dimen notification_main_column_padding_top 0x7f06030d +int dimen notification_media_narrow_margin 0x7f06030e +int dimen notification_right_icon_size 0x7f06030f +int dimen notification_right_side_padding_top 0x7f060310 +int dimen notification_small_icon_background_padding 0x7f060311 +int dimen notification_small_icon_size_as_large 0x7f060312 +int dimen notification_subtext_size 0x7f060313 +int dimen notification_top_pad 0x7f060314 +int dimen notification_top_pad_large_text 0x7f060315 +int dimen sliding_pane_detail_pane_width 0x7f060316 +int dimen tooltip_corner_radius 0x7f060317 +int dimen tooltip_horizontal_padding 0x7f060318 +int dimen tooltip_margin 0x7f060319 +int dimen tooltip_precise_anchor_extra_offset 0x7f06031a +int dimen tooltip_precise_anchor_threshold 0x7f06031b +int dimen tooltip_vertical_padding 0x7f06031c +int dimen tooltip_y_offset_non_touch 0x7f06031d +int dimen tooltip_y_offset_touch 0x7f06031e +int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000 +int drawable abc_action_bar_item_background_material 0x7f070001 +int drawable abc_btn_borderless_material 0x7f070002 +int drawable abc_btn_check_material 0x7f070003 +int drawable abc_btn_check_material_anim 0x7f070004 +int drawable abc_btn_check_to_on_mtrl_000 0x7f070005 +int drawable abc_btn_check_to_on_mtrl_015 0x7f070006 +int drawable abc_btn_colored_material 0x7f070007 +int drawable abc_btn_default_mtrl_shape 0x7f070008 +int drawable abc_btn_radio_material 0x7f070009 +int drawable abc_btn_radio_material_anim 0x7f07000a +int drawable abc_btn_radio_to_on_mtrl_000 0x7f07000b +int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000c +int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d +int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e +int drawable abc_cab_background_internal_bg 0x7f07000f +int drawable abc_cab_background_top_material 0x7f070010 +int drawable abc_cab_background_top_mtrl_alpha 0x7f070011 +int drawable abc_control_background_material 0x7f070012 +int drawable abc_dialog_material_background 0x7f070013 +int drawable abc_edit_text_material 0x7f070014 +int drawable abc_ic_ab_back_material 0x7f070015 +int drawable abc_ic_arrow_drop_right_black_24dp 0x7f070016 +int drawable abc_ic_clear_material 0x7f070017 +int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070018 +int drawable abc_ic_go_search_api_material 0x7f070019 +int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f07001a +int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001b +int drawable abc_ic_menu_overflow_material 0x7f07001c +int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001d +int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001e +int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001f +int drawable abc_ic_search_api_material 0x7f070020 +int drawable abc_ic_voice_search_api_material 0x7f070021 +int drawable abc_item_background_holo_dark 0x7f070022 +int drawable abc_item_background_holo_light 0x7f070023 +int drawable abc_list_divider_material 0x7f070024 +int drawable abc_list_divider_mtrl_alpha 0x7f070025 +int drawable abc_list_focused_holo 0x7f070026 +int drawable abc_list_longpressed_holo 0x7f070027 +int drawable abc_list_pressed_holo_dark 0x7f070028 +int drawable abc_list_pressed_holo_light 0x7f070029 +int drawable abc_list_selector_background_transition_holo_dark 0x7f07002a +int drawable abc_list_selector_background_transition_holo_light 0x7f07002b +int drawable abc_list_selector_disabled_holo_dark 0x7f07002c +int drawable abc_list_selector_disabled_holo_light 0x7f07002d +int drawable abc_list_selector_holo_dark 0x7f07002e +int drawable abc_list_selector_holo_light 0x7f07002f +int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f070030 +int drawable abc_popup_background_mtrl_mult 0x7f070031 +int drawable abc_ratingbar_indicator_material 0x7f070032 +int drawable abc_ratingbar_material 0x7f070033 +int drawable abc_ratingbar_small_material 0x7f070034 +int drawable abc_scrubber_control_off_mtrl_alpha 0x7f070035 +int drawable abc_scrubber_control_to_pressed_mtrl_000 0x7f070036 +int drawable abc_scrubber_control_to_pressed_mtrl_005 0x7f070037 +int drawable abc_scrubber_primary_mtrl_alpha 0x7f070038 +int drawable abc_scrubber_track_mtrl_alpha 0x7f070039 +int drawable abc_seekbar_thumb_material 0x7f07003a +int drawable abc_seekbar_tick_mark_material 0x7f07003b +int drawable abc_seekbar_track_material 0x7f07003c +int drawable abc_spinner_mtrl_am_alpha 0x7f07003d +int drawable abc_spinner_textfield_background_material 0x7f07003e +int drawable abc_star_black_48dp 0x7f07003f +int drawable abc_star_half_black_48dp 0x7f070040 +int drawable abc_switch_thumb_material 0x7f070041 +int drawable abc_switch_track_mtrl_alpha 0x7f070042 +int drawable abc_tab_indicator_material 0x7f070043 +int drawable abc_tab_indicator_mtrl_alpha 0x7f070044 +int drawable abc_text_cursor_material 0x7f070045 +int drawable abc_text_select_handle_left_mtrl 0x7f070046 +int drawable abc_text_select_handle_middle_mtrl 0x7f070047 +int drawable abc_text_select_handle_right_mtrl 0x7f070048 +int drawable abc_textfield_activated_mtrl_alpha 0x7f070049 +int drawable abc_textfield_default_mtrl_alpha 0x7f07004a +int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07004b +int drawable abc_textfield_search_default_mtrl_alpha 0x7f07004c +int drawable abc_textfield_search_material 0x7f07004d +int drawable abc_vector_test 0x7f07004e +int drawable avd_hide_password 0x7f07004f +int drawable avd_show_password 0x7f070050 +int drawable btn_checkbox_checked_mtrl 0x7f070051 +int drawable btn_checkbox_checked_to_unchecked_mtrl_animation 0x7f070052 +int drawable btn_checkbox_unchecked_mtrl 0x7f070053 +int drawable btn_checkbox_unchecked_to_checked_mtrl_animation 0x7f070054 +int drawable btn_radio_off_mtrl 0x7f070055 +int drawable btn_radio_off_to_on_mtrl_animation 0x7f070056 +int drawable btn_radio_on_mtrl 0x7f070057 +int drawable btn_radio_on_to_off_mtrl_animation 0x7f070058 +int drawable design_fab_background 0x7f070059 +int drawable design_ic_visibility 0x7f07005a +int drawable design_ic_visibility_off 0x7f07005b +int drawable design_password_eye 0x7f07005c +int drawable design_snackbar_background 0x7f07005d +int drawable dotnet_bot 0x7f07005e +int drawable ic_arrow_back_black_24 0x7f07005f +int drawable ic_call_answer 0x7f070060 +int drawable ic_call_answer_low 0x7f070061 +int drawable ic_call_answer_video 0x7f070062 +int drawable ic_call_answer_video_low 0x7f070063 +int drawable ic_call_decline 0x7f070064 +int drawable ic_call_decline_low 0x7f070065 +int drawable ic_clear_black_24 0x7f070066 +int drawable ic_clock_black_24dp 0x7f070067 +int drawable ic_keyboard_black_24dp 0x7f070068 +int drawable ic_m3_chip_check 0x7f070069 +int drawable ic_m3_chip_checked_circle 0x7f07006a +int drawable ic_m3_chip_close 0x7f07006b +int drawable ic_mtrl_checked_circle 0x7f07006c +int drawable ic_mtrl_chip_checked_black 0x7f07006d +int drawable ic_mtrl_chip_checked_circle 0x7f07006e +int drawable ic_mtrl_chip_close_circle 0x7f07006f +int drawable ic_search_black_24 0x7f070070 +int drawable m3_avd_hide_password 0x7f070071 +int drawable m3_avd_show_password 0x7f070072 +int drawable m3_bottom_sheet_drag_handle 0x7f070073 +int drawable m3_password_eye 0x7f070074 +int drawable m3_popupmenu_background_overlay 0x7f070075 +int drawable m3_radiobutton_ripple 0x7f070076 +int drawable m3_selection_control_ripple 0x7f070077 +int drawable m3_tabs_background 0x7f070078 +int drawable m3_tabs_line_indicator 0x7f070079 +int drawable m3_tabs_rounded_line_indicator 0x7f07007a +int drawable m3_tabs_transparent_background 0x7f07007b +int drawable material_cursor_drawable 0x7f07007c +int drawable material_ic_calendar_black_24dp 0x7f07007d +int drawable material_ic_clear_black_24dp 0x7f07007e +int drawable material_ic_edit_black_24dp 0x7f07007f +int drawable material_ic_keyboard_arrow_left_black_24dp 0x7f070080 +int drawable material_ic_keyboard_arrow_next_black_24dp 0x7f070081 +int drawable material_ic_keyboard_arrow_previous_black_24dp 0x7f070082 +int drawable material_ic_keyboard_arrow_right_black_24dp 0x7f070083 +int drawable material_ic_menu_arrow_down_black_24dp 0x7f070084 +int drawable material_ic_menu_arrow_up_black_24dp 0x7f070085 +int drawable maui_splash 0x7f070086 +int drawable maui_splash_image 0x7f070087 +int drawable mtrl_bottomsheet_drag_handle 0x7f070088 +int drawable mtrl_checkbox_button 0x7f070089 +int drawable mtrl_checkbox_button_checked_unchecked 0x7f07008a +int drawable mtrl_checkbox_button_icon 0x7f07008b +int drawable mtrl_checkbox_button_icon_checked_indeterminate 0x7f07008c +int drawable mtrl_checkbox_button_icon_checked_unchecked 0x7f07008d +int drawable mtrl_checkbox_button_icon_indeterminate_checked 0x7f07008e +int drawable mtrl_checkbox_button_icon_indeterminate_unchecked 0x7f07008f +int drawable mtrl_checkbox_button_icon_unchecked_checked 0x7f070090 +int drawable mtrl_checkbox_button_icon_unchecked_indeterminate 0x7f070091 +int drawable mtrl_checkbox_button_unchecked_checked 0x7f070092 +int drawable mtrl_dialog_background 0x7f070093 +int drawable mtrl_dropdown_arrow 0x7f070094 +int drawable mtrl_ic_arrow_drop_down 0x7f070095 +int drawable mtrl_ic_arrow_drop_up 0x7f070096 +int drawable mtrl_ic_cancel 0x7f070097 +int drawable mtrl_ic_check_mark 0x7f070098 +int drawable mtrl_ic_checkbox_checked 0x7f070099 +int drawable mtrl_ic_checkbox_unchecked 0x7f07009a +int drawable mtrl_ic_error 0x7f07009b +int drawable mtrl_ic_indeterminate 0x7f07009c +int drawable mtrl_navigation_bar_item_background 0x7f07009d +int drawable mtrl_popupmenu_background 0x7f07009e +int drawable mtrl_popupmenu_background_overlay 0x7f07009f +int drawable mtrl_switch_thumb 0x7f0700a0 +int drawable mtrl_switch_thumb_checked 0x7f0700a1 +int drawable mtrl_switch_thumb_checked_pressed 0x7f0700a2 +int drawable mtrl_switch_thumb_checked_unchecked 0x7f0700a3 +int drawable mtrl_switch_thumb_pressed 0x7f0700a4 +int drawable mtrl_switch_thumb_pressed_checked 0x7f0700a5 +int drawable mtrl_switch_thumb_pressed_unchecked 0x7f0700a6 +int drawable mtrl_switch_thumb_unchecked 0x7f0700a7 +int drawable mtrl_switch_thumb_unchecked_checked 0x7f0700a8 +int drawable mtrl_switch_thumb_unchecked_pressed 0x7f0700a9 +int drawable mtrl_switch_track 0x7f0700aa +int drawable mtrl_switch_track_decoration 0x7f0700ab +int drawable mtrl_tabs_default_indicator 0x7f0700ac +int drawable navigation_empty_icon 0x7f0700ad +int drawable notification_action_background 0x7f0700ae +int drawable notification_bg 0x7f0700af +int drawable notification_bg_low 0x7f0700b0 +int drawable notification_bg_low_normal 0x7f0700b1 +int drawable notification_bg_low_pressed 0x7f0700b2 +int drawable notification_bg_normal 0x7f0700b3 +int drawable notification_bg_normal_pressed 0x7f0700b4 +int drawable notification_icon_background 0x7f0700b5 +int drawable notification_oversize_large_icon_bg 0x7f0700b6 +int drawable notification_template_icon_bg 0x7f0700b7 +int drawable notification_template_icon_low_bg 0x7f0700b8 +int drawable notification_tile_bg 0x7f0700b9 +int drawable notify_panel_notification_icon_bg 0x7f0700ba +int drawable splash 0x7f0700bb +int drawable test_level_drawable 0x7f0700bc +int drawable tooltip_frame_dark 0x7f0700bd +int drawable tooltip_frame_light 0x7f0700be +int id accelerate 0x7f080000 +int id accessibility_action_clickable_span 0x7f080001 +int id accessibility_custom_action_0 0x7f080002 +int id accessibility_custom_action_1 0x7f080003 +int id accessibility_custom_action_10 0x7f080004 +int id accessibility_custom_action_11 0x7f080005 +int id accessibility_custom_action_12 0x7f080006 +int id accessibility_custom_action_13 0x7f080007 +int id accessibility_custom_action_14 0x7f080008 +int id accessibility_custom_action_15 0x7f080009 +int id accessibility_custom_action_16 0x7f08000a +int id accessibility_custom_action_17 0x7f08000b +int id accessibility_custom_action_18 0x7f08000c +int id accessibility_custom_action_19 0x7f08000d +int id accessibility_custom_action_2 0x7f08000e +int id accessibility_custom_action_20 0x7f08000f +int id accessibility_custom_action_21 0x7f080010 +int id accessibility_custom_action_22 0x7f080011 +int id accessibility_custom_action_23 0x7f080012 +int id accessibility_custom_action_24 0x7f080013 +int id accessibility_custom_action_25 0x7f080014 +int id accessibility_custom_action_26 0x7f080015 +int id accessibility_custom_action_27 0x7f080016 +int id accessibility_custom_action_28 0x7f080017 +int id accessibility_custom_action_29 0x7f080018 +int id accessibility_custom_action_3 0x7f080019 +int id accessibility_custom_action_30 0x7f08001a +int id accessibility_custom_action_31 0x7f08001b +int id accessibility_custom_action_4 0x7f08001c +int id accessibility_custom_action_5 0x7f08001d +int id accessibility_custom_action_6 0x7f08001e +int id accessibility_custom_action_7 0x7f08001f +int id accessibility_custom_action_8 0x7f080020 +int id accessibility_custom_action_9 0x7f080021 +int id action0 0x7f080022 +int id actionDown 0x7f080023 +int id actionDownUp 0x7f080024 +int id actionUp 0x7f080025 +int id action_bar 0x7f080026 +int id action_bar_activity_content 0x7f080027 +int id action_bar_container 0x7f080028 +int id action_bar_root 0x7f080029 +int id action_bar_spinner 0x7f08002a +int id action_bar_subtitle 0x7f08002b +int id action_bar_title 0x7f08002c +int id action_container 0x7f08002d +int id action_context_bar 0x7f08002e +int id action_divider 0x7f08002f +int id action_image 0x7f080030 +int id action_menu_divider 0x7f080031 +int id action_menu_presenter 0x7f080032 +int id action_mode_bar 0x7f080033 +int id action_mode_bar_stub 0x7f080034 +int id action_mode_close_button 0x7f080035 +int id action_text 0x7f080036 +int id actions 0x7f080037 +int id activity_chooser_view_content 0x7f080038 +int id adjacent 0x7f080039 +int id alertTitle 0x7f08003a +int id aligned 0x7f08003b +int id allStates 0x7f08003c +int id always 0x7f08003d +int id alwaysAllow 0x7f08003e +int id alwaysDisallow 0x7f08003f +int id androidx_window_activity_scope 0x7f080040 +int id antiClockwise 0x7f080041 +int id arc 0x7f080042 +int id asConfigured 0x7f080043 +int id background 0x7f080044 +int id barrier 0x7f080045 +int id baseline 0x7f080046 +int id bestChoice 0x7f080047 +int id bottom 0x7f080048 +int id bottomToTop 0x7f080049 +int id bounce 0x7f08004a +int id browser_actions_header_text 0x7f08004b +int id browser_actions_menu_item_icon 0x7f08004c +int id browser_actions_menu_item_text 0x7f08004d +int id browser_actions_menu_items 0x7f08004e +int id browser_actions_menu_view 0x7f08004f +int id button1 0x7f080050 +int id button2 0x7f080051 +int id button3 0x7f080052 +int id buttonPanel 0x7f080053 +int id cache_measures 0x7f080054 +int id callMeasure 0x7f080055 +int id cancel_action 0x7f080056 +int id cancel_button 0x7f080057 +int id center 0x7f080058 +int id chain 0x7f080059 +int id chain2 0x7f08005a +int id chains 0x7f08005b +int id checkbox 0x7f08005c +int id checked 0x7f08005d +int id chronometer 0x7f08005e +int id circle_center 0x7f08005f +int id clockwise 0x7f080060 +int id closest 0x7f080061 +int id confirm_button 0x7f080062 +int id constraint 0x7f080063 +int id container 0x7f080064 +int id content 0x7f080065 +int id contentPanel 0x7f080066 +int id coordinator 0x7f080067 +int id cos 0x7f080068 +int id currentState 0x7f080069 +int id custom 0x7f08006a +int id customPanel 0x7f08006b +int id cut 0x7f08006c +int id date_picker_actions 0x7f08006d +int id decelerate 0x7f08006e +int id decor_content_parent 0x7f08006f +int id default_activity_button 0x7f080070 +int id deltaRelative 0x7f080071 +int id dependency_ordering 0x7f080072 +int id design_bottom_sheet 0x7f080073 +int id design_menu_item_action_area 0x7f080074 +int id design_menu_item_action_area_stub 0x7f080075 +int id design_menu_item_text 0x7f080076 +int id design_navigation_view 0x7f080077 +int id dialog_button 0x7f080078 +int id dimensions 0x7f080079 +int id direct 0x7f08007a +int id dragAnticlockwise 0x7f08007b +int id dragClockwise 0x7f08007c +int id dragDown 0x7f08007d +int id dragEnd 0x7f08007e +int id dragLeft 0x7f08007f +int id dragRight 0x7f080080 +int id dragStart 0x7f080081 +int id dragUp 0x7f080082 +int id easeIn 0x7f080083 +int id easeInOut 0x7f080084 +int id easeOut 0x7f080085 +int id edit_query 0x7f080086 +int id edit_text_id 0x7f080087 +int id end 0x7f080088 +int id end_padder 0x7f080089 +int id expand_activities_button 0x7f08008a +int id expanded_menu 0x7f08008b +int id flip 0x7f08008c +int id flyoutcontent_appbar 0x7f08008d +int id fragment_container_view_tag 0x7f08008e +int id fullscreen_header 0x7f08008f +int id ghost_view 0x7f080090 +int id ghost_view_holder 0x7f080091 +int id glide_custom_view_target_tag 0x7f080092 +int id gone 0x7f080093 +int id graph 0x7f080094 +int id graph_wrap 0x7f080095 +int id group_divider 0x7f080096 +int id grouping 0x7f080097 +int id groups 0x7f080098 +int id header_title 0x7f080099 +int id hide_ime_id 0x7f08009a +int id home 0x7f08009b +int id honorRequest 0x7f08009c +int id horizontal_only 0x7f08009d +int id icon 0x7f08009e +int id icon1 0x7f08009f +int id icon_group 0x7f0800a0 +int id ignore 0x7f0800a1 +int id ignoreRequest 0x7f0800a2 +int id image 0x7f0800a3 +int id included 0x7f0800a4 +int id indeterminate 0x7f0800a5 +int id info 0x7f0800a6 +int id invisible 0x7f0800a7 +int id is_pooling_container_tag 0x7f0800a8 +int id item_touch_helper_previous_elevation 0x7f0800a9 +int id left 0x7f0800aa +int id legacy 0x7f0800ab +int id line1 0x7f0800ac +int id line3 0x7f0800ad +int id linear 0x7f0800ae +int id list_item 0x7f0800af +int id locale 0x7f0800b0 +int id ltr 0x7f0800b1 +int id m3_side_sheet 0x7f0800b2 +int id mask 0x7f0800b3 +int id masked 0x7f0800b4 +int id match_constraint 0x7f0800b5 +int id match_parent 0x7f0800b6 +int id material_clock_display 0x7f0800b7 +int id material_clock_display_and_toggle 0x7f0800b8 +int id material_clock_face 0x7f0800b9 +int id material_clock_hand 0x7f0800ba +int id material_clock_level 0x7f0800bb +int id material_clock_period_am_button 0x7f0800bc +int id material_clock_period_pm_button 0x7f0800bd +int id material_clock_period_toggle 0x7f0800be +int id material_hour_text_input 0x7f0800bf +int id material_hour_tv 0x7f0800c0 +int id material_label 0x7f0800c1 +int id material_minute_text_input 0x7f0800c2 +int id material_minute_tv 0x7f0800c3 +int id material_textinput_timepicker 0x7f0800c4 +int id material_timepicker_cancel_button 0x7f0800c5 +int id material_timepicker_container 0x7f0800c6 +int id material_timepicker_mode_button 0x7f0800c7 +int id material_timepicker_ok_button 0x7f0800c8 +int id material_timepicker_view 0x7f0800c9 +int id material_value_index 0x7f0800ca +int id media_actions 0x7f0800cb +int id media_controller_compat_view_tag 0x7f0800cc +int id message 0x7f0800cd +int id middle 0x7f0800ce +int id month_grid 0x7f0800cf +int id month_navigation_bar 0x7f0800d0 +int id month_navigation_fragment_toggle 0x7f0800d1 +int id month_navigation_next 0x7f0800d2 +int id month_navigation_previous 0x7f0800d3 +int id month_title 0x7f0800d4 +int id motion_base 0x7f0800d5 +int id mtrl_anchor_parent 0x7f0800d6 +int id mtrl_calendar_day_selector_frame 0x7f0800d7 +int id mtrl_calendar_days_of_week 0x7f0800d8 +int id mtrl_calendar_frame 0x7f0800d9 +int id mtrl_calendar_main_pane 0x7f0800da +int id mtrl_calendar_months 0x7f0800db +int id mtrl_calendar_selection_frame 0x7f0800dc +int id mtrl_calendar_text_input_frame 0x7f0800dd +int id mtrl_calendar_year_selector_frame 0x7f0800de +int id mtrl_card_checked_layer_id 0x7f0800df +int id mtrl_child_content_container 0x7f0800e0 +int id mtrl_internal_children_alpha_tag 0x7f0800e1 +int id mtrl_motion_snapshot_view 0x7f0800e2 +int id mtrl_picker_fullscreen 0x7f0800e3 +int id mtrl_picker_header 0x7f0800e4 +int id mtrl_picker_header_selection_text 0x7f0800e5 +int id mtrl_picker_header_title_and_selection 0x7f0800e6 +int id mtrl_picker_header_toggle 0x7f0800e7 +int id mtrl_picker_text_input_date 0x7f0800e8 +int id mtrl_picker_text_input_range_end 0x7f0800e9 +int id mtrl_picker_text_input_range_start 0x7f0800ea +int id mtrl_picker_title_text 0x7f0800eb +int id mtrl_view_tag_bottom_padding 0x7f0800ec +int id nav_controller_view_tag 0x7f0800ed +int id nav_host 0x7f0800ee +int id nav_host_fragment_container 0x7f0800ef +int id navigation_bar_item_active_indicator_view 0x7f0800f0 +int id navigation_bar_item_icon_container 0x7f0800f1 +int id navigation_bar_item_icon_view 0x7f0800f2 +int id navigation_bar_item_labels_group 0x7f0800f3 +int id navigation_bar_item_large_label_view 0x7f0800f4 +int id navigation_bar_item_small_label_view 0x7f0800f5 +int id navigation_header_container 0x7f0800f6 +int id navigation_layout 0x7f0800f7 +int id navigationlayout_appbar 0x7f0800f8 +int id navigationlayout_bottomtabs 0x7f0800f9 +int id navigationlayout_content 0x7f0800fa +int id navigationlayout_toptabs 0x7f0800fb +int id never 0x7f0800fc +int id noState 0x7f0800fd +int id none 0x7f0800fe +int id normal 0x7f0800ff +int id notification_background 0x7f080100 +int id notification_main_column 0x7f080101 +int id notification_main_column_container 0x7f080102 +int id off 0x7f080103 +int id on 0x7f080104 +int id open_search_bar_text_view 0x7f080105 +int id open_search_view_background 0x7f080106 +int id open_search_view_clear_button 0x7f080107 +int id open_search_view_content_container 0x7f080108 +int id open_search_view_divider 0x7f080109 +int id open_search_view_dummy_toolbar 0x7f08010a +int id open_search_view_edit_text 0x7f08010b +int id open_search_view_header_container 0x7f08010c +int id open_search_view_root 0x7f08010d +int id open_search_view_scrim 0x7f08010e +int id open_search_view_search_prefix 0x7f08010f +int id open_search_view_status_bar_spacer 0x7f080110 +int id open_search_view_toolbar 0x7f080111 +int id open_search_view_toolbar_container 0x7f080112 +int id overshoot 0x7f080113 +int id packed 0x7f080114 +int id parent 0x7f080115 +int id parentPanel 0x7f080116 +int id parent_matrix 0x7f080117 +int id path 0x7f080118 +int id pathRelative 0x7f080119 +int id percent 0x7f08011a +int id pooling_container_listener_holder_tag 0x7f08011b +int id position 0x7f08011c +int id pressed 0x7f08011d +int id progress 0x7f08011e +int id progress_circular 0x7f08011f +int id progress_horizontal 0x7f080120 +int id radio 0x7f080121 +int id ratio 0x7f080122 +int id rectangles 0x7f080123 +int id report_drawn 0x7f080124 +int id reverseSawtooth 0x7f080125 +int id right 0x7f080126 +int id right_icon 0x7f080127 +int id right_side 0x7f080128 +int id rounded 0x7f080129 +int id row_index_key 0x7f08012a +int id rtl 0x7f08012b +int id save_non_transition_alpha 0x7f08012c +int id save_overlay_view 0x7f08012d +int id sawtooth 0x7f08012e +int id scrollIndicatorDown 0x7f08012f +int id scrollIndicatorUp 0x7f080130 +int id scrollView 0x7f080131 +int id search_badge 0x7f080132 +int id search_bar 0x7f080133 +int id search_button 0x7f080134 +int id search_close_btn 0x7f080135 +int id search_edit_frame 0x7f080136 +int id search_go_btn 0x7f080137 +int id search_mag_icon 0x7f080138 +int id search_plate 0x7f080139 +int id search_src_text 0x7f08013a +int id search_voice_btn 0x7f08013b +int id secondaryProgress 0x7f08013c +int id select_dialog_listview 0x7f08013d +int id selection_type 0x7f08013e +int id sharedValueSet 0x7f08013f +int id sharedValueUnset 0x7f080140 +int id shellcontent_appbar 0x7f080141 +int id shortcut 0x7f080142 +int id sin 0x7f080143 +int id skipped 0x7f080144 +int id sliding_pane_detail_container 0x7f080145 +int id sliding_pane_layout 0x7f080146 +int id snackbar_action 0x7f080147 +int id snackbar_text 0x7f080148 +int id spacer 0x7f080149 +int id special_effects_controller_view_tag 0x7f08014a +int id spline 0x7f08014b +int id split_action_bar 0x7f08014c +int id spread 0x7f08014d +int id spread_inside 0x7f08014e +int id square 0x7f08014f +int id standard 0x7f080150 +int id start 0x7f080151 +int id startHorizontal 0x7f080152 +int id startVertical 0x7f080153 +int id status_bar_latest_event_content 0x7f080154 +int id submenuarrow 0x7f080155 +int id submit_area 0x7f080156 +int id tag_accessibility_actions 0x7f080157 +int id tag_accessibility_clickable_spans 0x7f080158 +int id tag_accessibility_heading 0x7f080159 +int id tag_accessibility_pane_title 0x7f08015a +int id tag_on_apply_window_listener 0x7f08015b +int id tag_on_receive_content_listener 0x7f08015c +int id tag_on_receive_content_mime_types 0x7f08015d +int id tag_screen_reader_focusable 0x7f08015e +int id tag_state_description 0x7f08015f +int id tag_transition_group 0x7f080160 +int id tag_unhandled_key_event_manager 0x7f080161 +int id tag_unhandled_key_listeners 0x7f080162 +int id tag_window_insets_animation_callback 0x7f080163 +int id text 0x7f080164 +int id text1 0x7f080165 +int id text2 0x7f080166 +int id textSpacerNoButtons 0x7f080167 +int id textSpacerNoTitle 0x7f080168 +int id text_input_end_icon 0x7f080169 +int id text_input_error_icon 0x7f08016a +int id text_input_start_icon 0x7f08016b +int id textinput_counter 0x7f08016c +int id textinput_error 0x7f08016d +int id textinput_helper_text 0x7f08016e +int id textinput_placeholder 0x7f08016f +int id textinput_prefix_text 0x7f080170 +int id textinput_suffix_text 0x7f080171 +int id time 0x7f080172 +int id title 0x7f080173 +int id titleDividerNoCustom 0x7f080174 +int id title_template 0x7f080175 +int id top 0x7f080176 +int id topPanel 0x7f080177 +int id topToBottom 0x7f080178 +int id touch_outside 0x7f080179 +int id transition_clip 0x7f08017a +int id transition_current_scene 0x7f08017b +int id transition_image_transform 0x7f08017c +int id transition_layout_save 0x7f08017d +int id transition_pause_alpha 0x7f08017e +int id transition_position 0x7f08017f +int id transition_scene_layoutid_cache 0x7f080180 +int id transition_transform 0x7f080181 +int id triangle 0x7f080182 +int id unchecked 0x7f080183 +int id up 0x7f080184 +int id vertical_only 0x7f080185 +int id view_offset_helper 0x7f080186 +int id view_transition 0x7f080187 +int id view_tree_lifecycle_owner 0x7f080188 +int id view_tree_on_back_pressed_dispatcher_owner 0x7f080189 +int id view_tree_saved_state_registry_owner 0x7f08018a +int id view_tree_view_model_store_owner 0x7f08018b +int id visible 0x7f08018c +int id visible_removing_fragment_view_tag 0x7f08018d +int id with_icon 0x7f08018e +int id wrap 0x7f08018f +int id wrap_content 0x7f080190 +int id wrap_content_constrained 0x7f080191 +int integer abc_config_activityDefaultDur 0x7f090000 +int integer abc_config_activityShortDur 0x7f090001 +int integer app_bar_elevation_anim_duration 0x7f090002 +int integer bottom_sheet_slide_duration 0x7f090003 +int integer cancel_button_image_alpha 0x7f090004 +int integer config_navAnimTime 0x7f090005 +int integer config_tooltipAnimTime 0x7f090006 +int integer design_snackbar_text_max_lines 0x7f090007 +int integer design_tab_indicator_anim_duration_ms 0x7f090008 +int integer hide_password_duration 0x7f090009 +int integer m3_badge_max_number 0x7f09000a +int integer m3_btn_anim_delay_ms 0x7f09000b +int integer m3_btn_anim_duration_ms 0x7f09000c +int integer m3_card_anim_delay_ms 0x7f09000d +int integer m3_card_anim_duration_ms 0x7f09000e +int integer m3_chip_anim_duration 0x7f09000f +int integer m3_sys_motion_duration_extra_long1 0x7f090010 +int integer m3_sys_motion_duration_extra_long2 0x7f090011 +int integer m3_sys_motion_duration_extra_long3 0x7f090012 +int integer m3_sys_motion_duration_extra_long4 0x7f090013 +int integer m3_sys_motion_duration_long1 0x7f090014 +int integer m3_sys_motion_duration_long2 0x7f090015 +int integer m3_sys_motion_duration_long3 0x7f090016 +int integer m3_sys_motion_duration_long4 0x7f090017 +int integer m3_sys_motion_duration_medium1 0x7f090018 +int integer m3_sys_motion_duration_medium2 0x7f090019 +int integer m3_sys_motion_duration_medium3 0x7f09001a +int integer m3_sys_motion_duration_medium4 0x7f09001b +int integer m3_sys_motion_duration_short1 0x7f09001c +int integer m3_sys_motion_duration_short2 0x7f09001d +int integer m3_sys_motion_duration_short3 0x7f09001e +int integer m3_sys_motion_duration_short4 0x7f09001f +int integer m3_sys_motion_path 0x7f090020 +int integer m3_sys_shape_corner_extra_large_corner_family 0x7f090021 +int integer m3_sys_shape_corner_extra_small_corner_family 0x7f090022 +int integer m3_sys_shape_corner_full_corner_family 0x7f090023 +int integer m3_sys_shape_corner_large_corner_family 0x7f090024 +int integer m3_sys_shape_corner_medium_corner_family 0x7f090025 +int integer m3_sys_shape_corner_small_corner_family 0x7f090026 +int integer material_motion_duration_long_1 0x7f090027 +int integer material_motion_duration_long_2 0x7f090028 +int integer material_motion_duration_medium_1 0x7f090029 +int integer material_motion_duration_medium_2 0x7f09002a +int integer material_motion_duration_short_1 0x7f09002b +int integer material_motion_duration_short_2 0x7f09002c +int integer material_motion_path 0x7f09002d +int integer mtrl_badge_max_character_count 0x7f09002e +int integer mtrl_btn_anim_delay_ms 0x7f09002f +int integer mtrl_btn_anim_duration_ms 0x7f090030 +int integer mtrl_calendar_header_orientation 0x7f090031 +int integer mtrl_calendar_selection_text_lines 0x7f090032 +int integer mtrl_calendar_year_selector_span 0x7f090033 +int integer mtrl_card_anim_delay_ms 0x7f090034 +int integer mtrl_card_anim_duration_ms 0x7f090035 +int integer mtrl_chip_anim_duration 0x7f090036 +int integer mtrl_switch_thumb_motion_duration 0x7f090037 +int integer mtrl_switch_thumb_post_morphing_duration 0x7f090038 +int integer mtrl_switch_thumb_pre_morphing_duration 0x7f090039 +int integer mtrl_switch_thumb_pressed_duration 0x7f09003a +int integer mtrl_switch_thumb_viewport_center_coordinate 0x7f09003b +int integer mtrl_switch_thumb_viewport_size 0x7f09003c +int integer mtrl_switch_track_viewport_height 0x7f09003d +int integer mtrl_switch_track_viewport_width 0x7f09003e +int integer mtrl_tab_indicator_anim_duration_ms 0x7f09003f +int integer mtrl_view_gone 0x7f090040 +int integer mtrl_view_invisible 0x7f090041 +int integer mtrl_view_visible 0x7f090042 +int integer show_password_duration 0x7f090043 +int integer status_bar_notification_info_maxnum 0x7f090044 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_0 0x7f0a0000 +int interpolator btn_checkbox_checked_mtrl_animation_interpolator_1 0x7f0a0001 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_0 0x7f0a0002 +int interpolator btn_checkbox_unchecked_mtrl_animation_interpolator_1 0x7f0a0003 +int interpolator btn_radio_to_off_mtrl_animation_interpolator_0 0x7f0a0004 +int interpolator btn_radio_to_on_mtrl_animation_interpolator_0 0x7f0a0005 +int interpolator fast_out_slow_in 0x7f0a0006 +int interpolator m3_sys_motion_easing_emphasized 0x7f0a0007 +int interpolator m3_sys_motion_easing_emphasized_accelerate 0x7f0a0008 +int interpolator m3_sys_motion_easing_emphasized_decelerate 0x7f0a0009 +int interpolator m3_sys_motion_easing_linear 0x7f0a000a +int interpolator m3_sys_motion_easing_standard 0x7f0a000b +int interpolator m3_sys_motion_easing_standard_accelerate 0x7f0a000c +int interpolator m3_sys_motion_easing_standard_decelerate 0x7f0a000d +int interpolator mtrl_fast_out_linear_in 0x7f0a000e +int interpolator mtrl_fast_out_slow_in 0x7f0a000f +int interpolator mtrl_linear 0x7f0a0010 +int interpolator mtrl_linear_out_slow_in 0x7f0a0011 +int layout abc_action_bar_title_item 0x7f0b0000 +int layout abc_action_bar_up_container 0x7f0b0001 +int layout abc_action_menu_item_layout 0x7f0b0002 +int layout abc_action_menu_layout 0x7f0b0003 +int layout abc_action_mode_bar 0x7f0b0004 +int layout abc_action_mode_close_item_material 0x7f0b0005 +int layout abc_activity_chooser_view 0x7f0b0006 +int layout abc_activity_chooser_view_list_item 0x7f0b0007 +int layout abc_alert_dialog_button_bar_material 0x7f0b0008 +int layout abc_alert_dialog_material 0x7f0b0009 +int layout abc_alert_dialog_title_material 0x7f0b000a +int layout abc_cascading_menu_item_layout 0x7f0b000b +int layout abc_dialog_title_material 0x7f0b000c +int layout abc_expanded_menu_layout 0x7f0b000d +int layout abc_list_menu_item_checkbox 0x7f0b000e +int layout abc_list_menu_item_icon 0x7f0b000f +int layout abc_list_menu_item_layout 0x7f0b0010 +int layout abc_list_menu_item_radio 0x7f0b0011 +int layout abc_popup_menu_header_item_layout 0x7f0b0012 +int layout abc_popup_menu_item_layout 0x7f0b0013 +int layout abc_screen_content_include 0x7f0b0014 +int layout abc_screen_simple 0x7f0b0015 +int layout abc_screen_simple_overlay_action_mode 0x7f0b0016 +int layout abc_screen_toolbar 0x7f0b0017 +int layout abc_search_dropdown_item_icons_2line 0x7f0b0018 +int layout abc_search_view 0x7f0b0019 +int layout abc_select_dialog_material 0x7f0b001a +int layout abc_tooltip 0x7f0b001b +int layout browser_actions_context_menu_page 0x7f0b001c +int layout browser_actions_context_menu_row 0x7f0b001d +int layout custom_dialog 0x7f0b001e +int layout design_bottom_navigation_item 0x7f0b001f +int layout design_bottom_sheet_dialog 0x7f0b0020 +int layout design_layout_snackbar 0x7f0b0021 +int layout design_layout_snackbar_include 0x7f0b0022 +int layout design_layout_tab_icon 0x7f0b0023 +int layout design_layout_tab_text 0x7f0b0024 +int layout design_menu_item_action_area 0x7f0b0025 +int layout design_navigation_item 0x7f0b0026 +int layout design_navigation_item_header 0x7f0b0027 +int layout design_navigation_item_separator 0x7f0b0028 +int layout design_navigation_item_subheader 0x7f0b0029 +int layout design_navigation_menu 0x7f0b002a +int layout design_navigation_menu_item 0x7f0b002b +int layout design_text_input_end_icon 0x7f0b002c +int layout design_text_input_start_icon 0x7f0b002d +int layout drawer_layout 0x7f0b002e +int layout flyoutcontent 0x7f0b002f +int layout fragment_backstack 0x7f0b0030 +int layout ime_base_split_test_activity 0x7f0b0031 +int layout ime_secondary_split_test_activity 0x7f0b0032 +int layout m3_alert_dialog 0x7f0b0033 +int layout m3_alert_dialog_actions 0x7f0b0034 +int layout m3_alert_dialog_title 0x7f0b0035 +int layout m3_auto_complete_simple_item 0x7f0b0036 +int layout m3_side_sheet_dialog 0x7f0b0037 +int layout material_chip_input_combo 0x7f0b0038 +int layout material_clock_display 0x7f0b0039 +int layout material_clock_display_divider 0x7f0b003a +int layout material_clock_period_toggle 0x7f0b003b +int layout material_clock_period_toggle_land 0x7f0b003c +int layout material_clockface_textview 0x7f0b003d +int layout material_clockface_view 0x7f0b003e +int layout material_radial_view_group 0x7f0b003f +int layout material_textinput_timepicker 0x7f0b0040 +int layout material_time_chip 0x7f0b0041 +int layout material_time_input 0x7f0b0042 +int layout material_timepicker 0x7f0b0043 +int layout material_timepicker_dialog 0x7f0b0044 +int layout material_timepicker_textinput_display 0x7f0b0045 +int layout mtrl_alert_dialog 0x7f0b0046 +int layout mtrl_alert_dialog_actions 0x7f0b0047 +int layout mtrl_alert_dialog_title 0x7f0b0048 +int layout mtrl_alert_select_dialog_item 0x7f0b0049 +int layout mtrl_alert_select_dialog_multichoice 0x7f0b004a +int layout mtrl_alert_select_dialog_singlechoice 0x7f0b004b +int layout mtrl_auto_complete_simple_item 0x7f0b004c +int layout mtrl_calendar_day 0x7f0b004d +int layout mtrl_calendar_day_of_week 0x7f0b004e +int layout mtrl_calendar_days_of_week 0x7f0b004f +int layout mtrl_calendar_horizontal 0x7f0b0050 +int layout mtrl_calendar_month 0x7f0b0051 +int layout mtrl_calendar_month_labeled 0x7f0b0052 +int layout mtrl_calendar_month_navigation 0x7f0b0053 +int layout mtrl_calendar_months 0x7f0b0054 +int layout mtrl_calendar_vertical 0x7f0b0055 +int layout mtrl_calendar_year 0x7f0b0056 +int layout mtrl_layout_snackbar 0x7f0b0057 +int layout mtrl_layout_snackbar_include 0x7f0b0058 +int layout mtrl_navigation_rail_item 0x7f0b0059 +int layout mtrl_picker_actions 0x7f0b005a +int layout mtrl_picker_dialog 0x7f0b005b +int layout mtrl_picker_fullscreen 0x7f0b005c +int layout mtrl_picker_header_dialog 0x7f0b005d +int layout mtrl_picker_header_fullscreen 0x7f0b005e +int layout mtrl_picker_header_selection_text 0x7f0b005f +int layout mtrl_picker_header_title_text 0x7f0b0060 +int layout mtrl_picker_header_toggle 0x7f0b0061 +int layout mtrl_picker_text_input_date 0x7f0b0062 +int layout mtrl_picker_text_input_date_range 0x7f0b0063 +int layout mtrl_search_bar 0x7f0b0064 +int layout mtrl_search_view 0x7f0b0065 +int layout navigationlayout 0x7f0b0066 +int layout notification_action 0x7f0b0067 +int layout notification_action_tombstone 0x7f0b0068 +int layout notification_media_action 0x7f0b0069 +int layout notification_media_cancel_action 0x7f0b006a +int layout notification_template_big_media 0x7f0b006b +int layout notification_template_big_media_custom 0x7f0b006c +int layout notification_template_big_media_narrow 0x7f0b006d +int layout notification_template_big_media_narrow_custom 0x7f0b006e +int layout notification_template_custom_big 0x7f0b006f +int layout notification_template_icon_group 0x7f0b0070 +int layout notification_template_lines_media 0x7f0b0071 +int layout notification_template_media 0x7f0b0072 +int layout notification_template_media_custom 0x7f0b0073 +int layout notification_template_part_chronometer 0x7f0b0074 +int layout notification_template_part_time 0x7f0b0075 +int layout select_dialog_item_material 0x7f0b0076 +int layout select_dialog_multichoice_material 0x7f0b0077 +int layout select_dialog_singlechoice_material 0x7f0b0078 +int layout shellcontent 0x7f0b0079 +int layout support_simple_spinner_dropdown_item 0x7f0b007a +int mipmap appicon 0x7f0c0000 +int mipmap appicon_background 0x7f0c0001 +int mipmap appicon_foreground 0x7f0c0002 +int mipmap appicon_round 0x7f0c0003 +int plurals mtrl_badge_content_description 0x7f0d0000 +int string abc_action_bar_home_description 0x7f0e0000 +int string abc_action_bar_up_description 0x7f0e0001 +int string abc_action_menu_overflow_description 0x7f0e0002 +int string abc_action_mode_done 0x7f0e0003 +int string abc_activity_chooser_view_see_all 0x7f0e0004 +int string abc_activitychooserview_choose_application 0x7f0e0005 +int string abc_capital_off 0x7f0e0006 +int string abc_capital_on 0x7f0e0007 +int string abc_menu_alt_shortcut_label 0x7f0e0008 +int string abc_menu_ctrl_shortcut_label 0x7f0e0009 +int string abc_menu_delete_shortcut_label 0x7f0e000a +int string abc_menu_enter_shortcut_label 0x7f0e000b +int string abc_menu_function_shortcut_label 0x7f0e000c +int string abc_menu_meta_shortcut_label 0x7f0e000d +int string abc_menu_shift_shortcut_label 0x7f0e000e +int string abc_menu_space_shortcut_label 0x7f0e000f +int string abc_menu_sym_shortcut_label 0x7f0e0010 +int string abc_prepend_shortcut_label 0x7f0e0011 +int string abc_search_hint 0x7f0e0012 +int string abc_searchview_description_clear 0x7f0e0013 +int string abc_searchview_description_query 0x7f0e0014 +int string abc_searchview_description_search 0x7f0e0015 +int string abc_searchview_description_submit 0x7f0e0016 +int string abc_searchview_description_voice 0x7f0e0017 +int string abc_shareactionprovider_share_with 0x7f0e0018 +int string abc_shareactionprovider_share_with_application 0x7f0e0019 +int string abc_toolbar_collapse_description 0x7f0e001a +int string androidx_startup 0x7f0e001b +int string appbar_scrolling_view_behavior 0x7f0e001c +int string bottom_sheet_behavior 0x7f0e001d +int string bottomsheet_action_collapse 0x7f0e001e +int string bottomsheet_action_expand 0x7f0e001f +int string bottomsheet_action_expand_halfway 0x7f0e0020 +int string bottomsheet_drag_handle_clicked 0x7f0e0021 +int string bottomsheet_drag_handle_content_description 0x7f0e0022 +int string call_notification_answer_action 0x7f0e0023 +int string call_notification_answer_video_action 0x7f0e0024 +int string call_notification_decline_action 0x7f0e0025 +int string call_notification_hang_up_action 0x7f0e0026 +int string call_notification_incoming_text 0x7f0e0027 +int string call_notification_ongoing_text 0x7f0e0028 +int string call_notification_screening_text 0x7f0e0029 +int string character_counter_content_description 0x7f0e002a +int string character_counter_overflowed_content_description 0x7f0e002b +int string character_counter_pattern 0x7f0e002c +int string clear_text_end_icon_content_description 0x7f0e002d +int string copy_toast_msg 0x7f0e002e +int string dest_title 0x7f0e002f +int string error_a11y_label 0x7f0e0030 +int string error_icon_content_description 0x7f0e0031 +int string exposed_dropdown_menu_content_description 0x7f0e0032 +int string fab_transformation_scrim_behavior 0x7f0e0033 +int string fab_transformation_sheet_behavior 0x7f0e0034 +int string fallback_menu_item_copy_link 0x7f0e0035 +int string fallback_menu_item_open_in_browser 0x7f0e0036 +int string fallback_menu_item_share_link 0x7f0e0037 +int string hide_bottom_view_on_scroll_behavior 0x7f0e0038 +int string icon_content_description 0x7f0e0039 +int string item_view_role_description 0x7f0e003a +int string m3_exceed_max_badge_text_suffix 0x7f0e003b +int string m3_ref_typeface_brand_medium 0x7f0e003c +int string m3_ref_typeface_brand_regular 0x7f0e003d +int string m3_ref_typeface_plain_medium 0x7f0e003e +int string m3_ref_typeface_plain_regular 0x7f0e003f +int string m3_sys_motion_easing_emphasized 0x7f0e0040 +int string m3_sys_motion_easing_emphasized_accelerate 0x7f0e0041 +int string m3_sys_motion_easing_emphasized_decelerate 0x7f0e0042 +int string m3_sys_motion_easing_emphasized_path_data 0x7f0e0043 +int string m3_sys_motion_easing_legacy 0x7f0e0044 +int string m3_sys_motion_easing_legacy_accelerate 0x7f0e0045 +int string m3_sys_motion_easing_legacy_decelerate 0x7f0e0046 +int string m3_sys_motion_easing_linear 0x7f0e0047 +int string m3_sys_motion_easing_standard 0x7f0e0048 +int string m3_sys_motion_easing_standard_accelerate 0x7f0e0049 +int string m3_sys_motion_easing_standard_decelerate 0x7f0e004a +int string material_clock_display_divider 0x7f0e004b +int string material_clock_toggle_content_description 0x7f0e004c +int string material_hour_24h_suffix 0x7f0e004d +int string material_hour_selection 0x7f0e004e +int string material_hour_suffix 0x7f0e004f +int string material_minute_selection 0x7f0e0050 +int string material_minute_suffix 0x7f0e0051 +int string material_motion_easing_accelerated 0x7f0e0052 +int string material_motion_easing_decelerated 0x7f0e0053 +int string material_motion_easing_emphasized 0x7f0e0054 +int string material_motion_easing_linear 0x7f0e0055 +int string material_motion_easing_standard 0x7f0e0056 +int string material_slider_range_end 0x7f0e0057 +int string material_slider_range_start 0x7f0e0058 +int string material_slider_value 0x7f0e0059 +int string material_timepicker_am 0x7f0e005a +int string material_timepicker_clock_mode_description 0x7f0e005b +int string material_timepicker_hour 0x7f0e005c +int string material_timepicker_minute 0x7f0e005d +int string material_timepicker_pm 0x7f0e005e +int string material_timepicker_select_time 0x7f0e005f +int string material_timepicker_text_input_mode_description 0x7f0e0060 +int string maui_empty_unused 0x7f0e0061 +int string mtrl_badge_numberless_content_description 0x7f0e0062 +int string mtrl_checkbox_button_icon_path_checked 0x7f0e0063 +int string mtrl_checkbox_button_icon_path_group_name 0x7f0e0064 +int string mtrl_checkbox_button_icon_path_indeterminate 0x7f0e0065 +int string mtrl_checkbox_button_icon_path_name 0x7f0e0066 +int string mtrl_checkbox_button_path_checked 0x7f0e0067 +int string mtrl_checkbox_button_path_group_name 0x7f0e0068 +int string mtrl_checkbox_button_path_name 0x7f0e0069 +int string mtrl_checkbox_button_path_unchecked 0x7f0e006a +int string mtrl_checkbox_state_description_checked 0x7f0e006b +int string mtrl_checkbox_state_description_indeterminate 0x7f0e006c +int string mtrl_checkbox_state_description_unchecked 0x7f0e006d +int string mtrl_chip_close_icon_content_description 0x7f0e006e +int string mtrl_exceed_max_badge_number_content_description 0x7f0e006f +int string mtrl_exceed_max_badge_number_suffix 0x7f0e0070 +int string mtrl_picker_a11y_next_month 0x7f0e0071 +int string mtrl_picker_a11y_prev_month 0x7f0e0072 +int string mtrl_picker_announce_current_range_selection 0x7f0e0073 +int string mtrl_picker_announce_current_selection 0x7f0e0074 +int string mtrl_picker_announce_current_selection_none 0x7f0e0075 +int string mtrl_picker_cancel 0x7f0e0076 +int string mtrl_picker_confirm 0x7f0e0077 +int string mtrl_picker_date_header_selected 0x7f0e0078 +int string mtrl_picker_date_header_title 0x7f0e0079 +int string mtrl_picker_date_header_unselected 0x7f0e007a +int string mtrl_picker_day_of_week_column_header 0x7f0e007b +int string mtrl_picker_end_date_description 0x7f0e007c +int string mtrl_picker_invalid_format 0x7f0e007d +int string mtrl_picker_invalid_format_example 0x7f0e007e +int string mtrl_picker_invalid_format_use 0x7f0e007f +int string mtrl_picker_invalid_range 0x7f0e0080 +int string mtrl_picker_navigate_to_current_year_description 0x7f0e0081 +int string mtrl_picker_navigate_to_year_description 0x7f0e0082 +int string mtrl_picker_out_of_range 0x7f0e0083 +int string mtrl_picker_range_header_only_end_selected 0x7f0e0084 +int string mtrl_picker_range_header_only_start_selected 0x7f0e0085 +int string mtrl_picker_range_header_selected 0x7f0e0086 +int string mtrl_picker_range_header_title 0x7f0e0087 +int string mtrl_picker_range_header_unselected 0x7f0e0088 +int string mtrl_picker_save 0x7f0e0089 +int string mtrl_picker_start_date_description 0x7f0e008a +int string mtrl_picker_text_input_date_hint 0x7f0e008b +int string mtrl_picker_text_input_date_range_end_hint 0x7f0e008c +int string mtrl_picker_text_input_date_range_start_hint 0x7f0e008d +int string mtrl_picker_text_input_day_abbr 0x7f0e008e +int string mtrl_picker_text_input_month_abbr 0x7f0e008f +int string mtrl_picker_text_input_year_abbr 0x7f0e0090 +int string mtrl_picker_today_description 0x7f0e0091 +int string mtrl_picker_toggle_to_calendar_input_mode 0x7f0e0092 +int string mtrl_picker_toggle_to_day_selection 0x7f0e0093 +int string mtrl_picker_toggle_to_text_input_mode 0x7f0e0094 +int string mtrl_picker_toggle_to_year_selection 0x7f0e0095 +int string mtrl_switch_thumb_group_name 0x7f0e0096 +int string mtrl_switch_thumb_path_checked 0x7f0e0097 +int string mtrl_switch_thumb_path_morphing 0x7f0e0098 +int string mtrl_switch_thumb_path_name 0x7f0e0099 +int string mtrl_switch_thumb_path_pressed 0x7f0e009a +int string mtrl_switch_thumb_path_unchecked 0x7f0e009b +int string mtrl_switch_track_decoration_path 0x7f0e009c +int string mtrl_switch_track_path 0x7f0e009d +int string mtrl_timepicker_cancel 0x7f0e009e +int string mtrl_timepicker_confirm 0x7f0e009f +int string nav_app_bar_navigate_up_description 0x7f0e00a0 +int string nav_app_bar_open_drawer_description 0x7f0e00a1 +int string overflow_tab_title 0x7f0e00a2 +int string password_toggle_content_description 0x7f0e00a3 +int string path_password_eye 0x7f0e00a4 +int string path_password_eye_mask_strike_through 0x7f0e00a5 +int string path_password_eye_mask_visible 0x7f0e00a6 +int string path_password_strike_through 0x7f0e00a7 +int string search_menu_title 0x7f0e00a8 +int string searchbar_scrolling_view_behavior 0x7f0e00a9 +int string searchview_clear_text_content_description 0x7f0e00aa +int string searchview_navigation_content_description 0x7f0e00ab +int string side_sheet_accessibility_pane_title 0x7f0e00ac +int string side_sheet_behavior 0x7f0e00ad +int string status_bar_notification_info_overflow 0x7f0e00ae +int style ActionMode 0x7f0f0000 +int style AlertDialog.AppCompat 0x7f0f0001 +int style AlertDialog.AppCompat.Light 0x7f0f0002 +int style Animation.AppCompat.Dialog 0x7f0f0003 +int style Animation.AppCompat.DropDownUp 0x7f0f0004 +int style Animation.AppCompat.Tooltip 0x7f0f0005 +int style Animation.Design.BottomSheetDialog 0x7f0f0006 +int style Animation.Material3.BottomSheetDialog 0x7f0f0007 +int style Animation.Material3.SideSheetDialog 0x7f0f0008 +int style Animation.Material3.SideSheetDialog.Left 0x7f0f0009 +int style Animation.Material3.SideSheetDialog.Right 0x7f0f000a +int style Animation.MaterialComponents.BottomSheetDialog 0x7f0f000b +int style AppTheme 0x7f0f000c +int style AppTheme.NoActionBar 0x7f0f000d +int style Base.AlertDialog.AppCompat 0x7f0f000e +int style Base.AlertDialog.AppCompat.Light 0x7f0f000f +int style Base.Animation.AppCompat.Dialog 0x7f0f0010 +int style Base.Animation.AppCompat.DropDownUp 0x7f0f0011 +int style Base.Animation.AppCompat.Tooltip 0x7f0f0012 +int style Base.CardView 0x7f0f0013 +int style Base.DialogWindowTitle.AppCompat 0x7f0f0014 +int style Base.DialogWindowTitleBackground.AppCompat 0x7f0f0015 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0016 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0017 +int style Base.MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f0018 +int style Base.TextAppearance.AppCompat 0x7f0f0019 +int style Base.TextAppearance.AppCompat.Body1 0x7f0f001a +int style Base.TextAppearance.AppCompat.Body2 0x7f0f001b +int style Base.TextAppearance.AppCompat.Button 0x7f0f001c +int style Base.TextAppearance.AppCompat.Caption 0x7f0f001d +int style Base.TextAppearance.AppCompat.Display1 0x7f0f001e +int style Base.TextAppearance.AppCompat.Display2 0x7f0f001f +int style Base.TextAppearance.AppCompat.Display3 0x7f0f0020 +int style Base.TextAppearance.AppCompat.Display4 0x7f0f0021 +int style Base.TextAppearance.AppCompat.Headline 0x7f0f0022 +int style Base.TextAppearance.AppCompat.Inverse 0x7f0f0023 +int style Base.TextAppearance.AppCompat.Large 0x7f0f0024 +int style Base.TextAppearance.AppCompat.Large.Inverse 0x7f0f0025 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f0026 +int style Base.TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f0027 +int style Base.TextAppearance.AppCompat.Medium 0x7f0f0028 +int style Base.TextAppearance.AppCompat.Medium.Inverse 0x7f0f0029 +int style Base.TextAppearance.AppCompat.Menu 0x7f0f002a +int style Base.TextAppearance.AppCompat.SearchResult 0x7f0f002b +int style Base.TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f002c +int style Base.TextAppearance.AppCompat.SearchResult.Title 0x7f0f002d +int style Base.TextAppearance.AppCompat.Small 0x7f0f002e +int style Base.TextAppearance.AppCompat.Small.Inverse 0x7f0f002f +int style Base.TextAppearance.AppCompat.Subhead 0x7f0f0030 +int style Base.TextAppearance.AppCompat.Subhead.Inverse 0x7f0f0031 +int style Base.TextAppearance.AppCompat.Title 0x7f0f0032 +int style Base.TextAppearance.AppCompat.Title.Inverse 0x7f0f0033 +int style Base.TextAppearance.AppCompat.Tooltip 0x7f0f0034 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f0035 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f0036 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f0037 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f0038 +int style Base.TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f0039 +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f003a +int style Base.TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f003b +int style Base.TextAppearance.AppCompat.Widget.Button 0x7f0f003c +int style Base.TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f003d +int style Base.TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f003e +int style Base.TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f003f +int style Base.TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f0040 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f0041 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f0042 +int style Base.TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f0043 +int style Base.TextAppearance.AppCompat.Widget.Switch 0x7f0f0044 +int style Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f0045 +int style Base.TextAppearance.Material3.Search 0x7f0f0046 +int style Base.TextAppearance.MaterialComponents.Badge 0x7f0f0047 +int style Base.TextAppearance.MaterialComponents.Button 0x7f0f0048 +int style Base.TextAppearance.MaterialComponents.Headline6 0x7f0f0049 +int style Base.TextAppearance.MaterialComponents.Subtitle2 0x7f0f004a +int style Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f004b +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f004c +int style Base.TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f004d +int style Base.Theme.AppCompat 0x7f0f004e +int style Base.Theme.AppCompat.CompactMenu 0x7f0f004f +int style Base.Theme.AppCompat.Dialog 0x7f0f0050 +int style Base.Theme.AppCompat.Dialog.Alert 0x7f0f0051 +int style Base.Theme.AppCompat.Dialog.FixedSize 0x7f0f0052 +int style Base.Theme.AppCompat.Dialog.MinWidth 0x7f0f0053 +int style Base.Theme.AppCompat.DialogWhenLarge 0x7f0f0054 +int style Base.Theme.AppCompat.Light 0x7f0f0055 +int style Base.Theme.AppCompat.Light.DarkActionBar 0x7f0f0056 +int style Base.Theme.AppCompat.Light.Dialog 0x7f0f0057 +int style Base.Theme.AppCompat.Light.Dialog.Alert 0x7f0f0058 +int style Base.Theme.AppCompat.Light.Dialog.FixedSize 0x7f0f0059 +int style Base.Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f005a +int style Base.Theme.AppCompat.Light.DialogWhenLarge 0x7f0f005b +int style Base.Theme.Material3.Dark 0x7f0f005c +int style Base.Theme.Material3.Dark.BottomSheetDialog 0x7f0f005d +int style Base.Theme.Material3.Dark.Dialog 0x7f0f005e +int style Base.Theme.Material3.Dark.Dialog.FixedSize 0x7f0f005f +int style Base.Theme.Material3.Dark.DialogWhenLarge 0x7f0f0060 +int style Base.Theme.Material3.Dark.SideSheetDialog 0x7f0f0061 +int style Base.Theme.Material3.Light 0x7f0f0062 +int style Base.Theme.Material3.Light.BottomSheetDialog 0x7f0f0063 +int style Base.Theme.Material3.Light.Dialog 0x7f0f0064 +int style Base.Theme.Material3.Light.Dialog.FixedSize 0x7f0f0065 +int style Base.Theme.Material3.Light.DialogWhenLarge 0x7f0f0066 +int style Base.Theme.Material3.Light.SideSheetDialog 0x7f0f0067 +int style Base.Theme.MaterialComponents 0x7f0f0068 +int style Base.Theme.MaterialComponents.Bridge 0x7f0f0069 +int style Base.Theme.MaterialComponents.CompactMenu 0x7f0f006a +int style Base.Theme.MaterialComponents.Dialog 0x7f0f006b +int style Base.Theme.MaterialComponents.Dialog.Alert 0x7f0f006c +int style Base.Theme.MaterialComponents.Dialog.Bridge 0x7f0f006d +int style Base.Theme.MaterialComponents.Dialog.FixedSize 0x7f0f006e +int style Base.Theme.MaterialComponents.Dialog.MinWidth 0x7f0f006f +int style Base.Theme.MaterialComponents.DialogWhenLarge 0x7f0f0070 +int style Base.Theme.MaterialComponents.Light 0x7f0f0071 +int style Base.Theme.MaterialComponents.Light.Bridge 0x7f0f0072 +int style Base.Theme.MaterialComponents.Light.DarkActionBar 0x7f0f0073 +int style Base.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0074 +int style Base.Theme.MaterialComponents.Light.Dialog 0x7f0f0075 +int style Base.Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0076 +int style Base.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0077 +int style Base.Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f0078 +int style Base.Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f0079 +int style Base.Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f007a +int style Base.ThemeOverlay.AppCompat 0x7f0f007b +int style Base.ThemeOverlay.AppCompat.ActionBar 0x7f0f007c +int style Base.ThemeOverlay.AppCompat.Dark 0x7f0f007d +int style Base.ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f007e +int style Base.ThemeOverlay.AppCompat.Dialog 0x7f0f007f +int style Base.ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f0080 +int style Base.ThemeOverlay.AppCompat.Light 0x7f0f0081 +int style Base.ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f0082 +int style Base.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0083 +int style Base.ThemeOverlay.Material3.Dialog 0x7f0f0084 +int style Base.ThemeOverlay.Material3.SideSheetDialog 0x7f0f0085 +int style Base.ThemeOverlay.Material3.TextInputEditText 0x7f0f0086 +int style Base.ThemeOverlay.MaterialComponents.Dialog 0x7f0f0087 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f0088 +int style Base.ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f0089 +int style Base.ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f008a +int style Base.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f008b +int style Base.V14.Theme.Material3.Dark 0x7f0f008c +int style Base.V14.Theme.Material3.Dark.BottomSheetDialog 0x7f0f008d +int style Base.V14.Theme.Material3.Dark.Dialog 0x7f0f008e +int style Base.V14.Theme.Material3.Dark.SideSheetDialog 0x7f0f008f +int style Base.V14.Theme.Material3.Light 0x7f0f0090 +int style Base.V14.Theme.Material3.Light.BottomSheetDialog 0x7f0f0091 +int style Base.V14.Theme.Material3.Light.Dialog 0x7f0f0092 +int style Base.V14.Theme.Material3.Light.SideSheetDialog 0x7f0f0093 +int style Base.V14.Theme.MaterialComponents 0x7f0f0094 +int style Base.V14.Theme.MaterialComponents.Bridge 0x7f0f0095 +int style Base.V14.Theme.MaterialComponents.Dialog 0x7f0f0096 +int style Base.V14.Theme.MaterialComponents.Dialog.Bridge 0x7f0f0097 +int style Base.V14.Theme.MaterialComponents.Light 0x7f0f0098 +int style Base.V14.Theme.MaterialComponents.Light.Bridge 0x7f0f0099 +int style Base.V14.Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f009a +int style Base.V14.Theme.MaterialComponents.Light.Dialog 0x7f0f009b +int style Base.V14.Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f009c +int style Base.V14.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f009d +int style Base.V14.ThemeOverlay.Material3.SideSheetDialog 0x7f0f009e +int style Base.V14.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f009f +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog 0x7f0f00a0 +int style Base.V14.ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f00a1 +int style Base.V14.ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f00a2 +int style Base.V14.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f00a3 +int style Base.V21.Theme.AppCompat 0x7f0f00a4 +int style Base.V21.Theme.AppCompat.Dialog 0x7f0f00a5 +int style Base.V21.Theme.AppCompat.Light 0x7f0f00a6 +int style Base.V21.Theme.AppCompat.Light.Dialog 0x7f0f00a7 +int style Base.V21.Theme.MaterialComponents 0x7f0f00a8 +int style Base.V21.Theme.MaterialComponents.Dialog 0x7f0f00a9 +int style Base.V21.Theme.MaterialComponents.Light 0x7f0f00aa +int style Base.V21.Theme.MaterialComponents.Light.Dialog 0x7f0f00ab +int style Base.V21.ThemeOverlay.AppCompat.Dialog 0x7f0f00ac +int style Base.V21.ThemeOverlay.Material3.BottomSheetDialog 0x7f0f00ad +int style Base.V21.ThemeOverlay.Material3.SideSheetDialog 0x7f0f00ae +int style Base.V21.ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f00af +int style Base.V22.Theme.AppCompat 0x7f0f00b0 +int style Base.V22.Theme.AppCompat.Light 0x7f0f00b1 +int style Base.V23.Theme.AppCompat 0x7f0f00b2 +int style Base.V23.Theme.AppCompat.Light 0x7f0f00b3 +int style Base.V24.Theme.Material3.Dark 0x7f0f00b4 +int style Base.V24.Theme.Material3.Dark.Dialog 0x7f0f00b5 +int style Base.V24.Theme.Material3.Light 0x7f0f00b6 +int style Base.V24.Theme.Material3.Light.Dialog 0x7f0f00b7 +int style Base.V26.Theme.AppCompat 0x7f0f00b8 +int style Base.V26.Theme.AppCompat.Light 0x7f0f00b9 +int style Base.V26.Widget.AppCompat.Toolbar 0x7f0f00ba +int style Base.V28.Theme.AppCompat 0x7f0f00bb +int style Base.V28.Theme.AppCompat.Light 0x7f0f00bc +int style Base.V7.Theme.AppCompat 0x7f0f00bd +int style Base.V7.Theme.AppCompat.Dialog 0x7f0f00be +int style Base.V7.Theme.AppCompat.Light 0x7f0f00bf +int style Base.V7.Theme.AppCompat.Light.Dialog 0x7f0f00c0 +int style Base.V7.ThemeOverlay.AppCompat.Dialog 0x7f0f00c1 +int style Base.V7.Widget.AppCompat.AutoCompleteTextView 0x7f0f00c2 +int style Base.V7.Widget.AppCompat.EditText 0x7f0f00c3 +int style Base.V7.Widget.AppCompat.Toolbar 0x7f0f00c4 +int style Base.Widget.AppCompat.ActionBar 0x7f0f00c5 +int style Base.Widget.AppCompat.ActionBar.Solid 0x7f0f00c6 +int style Base.Widget.AppCompat.ActionBar.TabBar 0x7f0f00c7 +int style Base.Widget.AppCompat.ActionBar.TabText 0x7f0f00c8 +int style Base.Widget.AppCompat.ActionBar.TabView 0x7f0f00c9 +int style Base.Widget.AppCompat.ActionButton 0x7f0f00ca +int style Base.Widget.AppCompat.ActionButton.CloseMode 0x7f0f00cb +int style Base.Widget.AppCompat.ActionButton.Overflow 0x7f0f00cc +int style Base.Widget.AppCompat.ActionMode 0x7f0f00cd +int style Base.Widget.AppCompat.ActivityChooserView 0x7f0f00ce +int style Base.Widget.AppCompat.AutoCompleteTextView 0x7f0f00cf +int style Base.Widget.AppCompat.Button 0x7f0f00d0 +int style Base.Widget.AppCompat.Button.Borderless 0x7f0f00d1 +int style Base.Widget.AppCompat.Button.Borderless.Colored 0x7f0f00d2 +int style Base.Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f00d3 +int style Base.Widget.AppCompat.Button.Colored 0x7f0f00d4 +int style Base.Widget.AppCompat.Button.Small 0x7f0f00d5 +int style Base.Widget.AppCompat.ButtonBar 0x7f0f00d6 +int style Base.Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f00d7 +int style Base.Widget.AppCompat.CompoundButton.CheckBox 0x7f0f00d8 +int style Base.Widget.AppCompat.CompoundButton.RadioButton 0x7f0f00d9 +int style Base.Widget.AppCompat.CompoundButton.Switch 0x7f0f00da +int style Base.Widget.AppCompat.DrawerArrowToggle 0x7f0f00db +int style Base.Widget.AppCompat.DrawerArrowToggle.Common 0x7f0f00dc +int style Base.Widget.AppCompat.DropDownItem.Spinner 0x7f0f00dd +int style Base.Widget.AppCompat.EditText 0x7f0f00de +int style Base.Widget.AppCompat.ImageButton 0x7f0f00df +int style Base.Widget.AppCompat.Light.ActionBar 0x7f0f00e0 +int style Base.Widget.AppCompat.Light.ActionBar.Solid 0x7f0f00e1 +int style Base.Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f00e2 +int style Base.Widget.AppCompat.Light.ActionBar.TabText 0x7f0f00e3 +int style Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f00e4 +int style Base.Widget.AppCompat.Light.ActionBar.TabView 0x7f0f00e5 +int style Base.Widget.AppCompat.Light.PopupMenu 0x7f0f00e6 +int style Base.Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f00e7 +int style Base.Widget.AppCompat.ListMenuView 0x7f0f00e8 +int style Base.Widget.AppCompat.ListPopupWindow 0x7f0f00e9 +int style Base.Widget.AppCompat.ListView 0x7f0f00ea +int style Base.Widget.AppCompat.ListView.DropDown 0x7f0f00eb +int style Base.Widget.AppCompat.ListView.Menu 0x7f0f00ec +int style Base.Widget.AppCompat.PopupMenu 0x7f0f00ed +int style Base.Widget.AppCompat.PopupMenu.Overflow 0x7f0f00ee +int style Base.Widget.AppCompat.PopupWindow 0x7f0f00ef +int style Base.Widget.AppCompat.ProgressBar 0x7f0f00f0 +int style Base.Widget.AppCompat.ProgressBar.Horizontal 0x7f0f00f1 +int style Base.Widget.AppCompat.RatingBar 0x7f0f00f2 +int style Base.Widget.AppCompat.RatingBar.Indicator 0x7f0f00f3 +int style Base.Widget.AppCompat.RatingBar.Small 0x7f0f00f4 +int style Base.Widget.AppCompat.SearchView 0x7f0f00f5 +int style Base.Widget.AppCompat.SearchView.ActionBar 0x7f0f00f6 +int style Base.Widget.AppCompat.SeekBar 0x7f0f00f7 +int style Base.Widget.AppCompat.SeekBar.Discrete 0x7f0f00f8 +int style Base.Widget.AppCompat.Spinner 0x7f0f00f9 +int style Base.Widget.AppCompat.Spinner.Underlined 0x7f0f00fa +int style Base.Widget.AppCompat.TextView 0x7f0f00fb +int style Base.Widget.AppCompat.TextView.SpinnerItem 0x7f0f00fc +int style Base.Widget.AppCompat.Toolbar 0x7f0f00fd +int style Base.Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f00fe +int style Base.Widget.Design.TabLayout 0x7f0f00ff +int style Base.Widget.Material3.ActionBar.Solid 0x7f0f0100 +int style Base.Widget.Material3.ActionMode 0x7f0f0101 +int style Base.Widget.Material3.BottomNavigationView 0x7f0f0102 +int style Base.Widget.Material3.CardView 0x7f0f0103 +int style Base.Widget.Material3.Chip 0x7f0f0104 +int style Base.Widget.Material3.CollapsingToolbar 0x7f0f0105 +int style Base.Widget.Material3.CompoundButton.CheckBox 0x7f0f0106 +int style Base.Widget.Material3.CompoundButton.RadioButton 0x7f0f0107 +int style Base.Widget.Material3.CompoundButton.Switch 0x7f0f0108 +int style Base.Widget.Material3.ExtendedFloatingActionButton 0x7f0f0109 +int style Base.Widget.Material3.ExtendedFloatingActionButton.Icon 0x7f0f010a +int style Base.Widget.Material3.FloatingActionButton 0x7f0f010b +int style Base.Widget.Material3.FloatingActionButton.Large 0x7f0f010c +int style Base.Widget.Material3.FloatingActionButton.Small 0x7f0f010d +int style Base.Widget.Material3.Light.ActionBar.Solid 0x7f0f010e +int style Base.Widget.Material3.MaterialCalendar.NavigationButton 0x7f0f010f +int style Base.Widget.Material3.Snackbar 0x7f0f0110 +int style Base.Widget.Material3.TabLayout 0x7f0f0111 +int style Base.Widget.Material3.TabLayout.OnSurface 0x7f0f0112 +int style Base.Widget.Material3.TabLayout.Secondary 0x7f0f0113 +int style Base.Widget.MaterialComponents.AutoCompleteTextView 0x7f0f0114 +int style Base.Widget.MaterialComponents.CheckedTextView 0x7f0f0115 +int style Base.Widget.MaterialComponents.Chip 0x7f0f0116 +int style Base.Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0117 +int style Base.Widget.MaterialComponents.MaterialCalendar.NavigationButton 0x7f0f0118 +int style Base.Widget.MaterialComponents.PopupMenu 0x7f0f0119 +int style Base.Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f011a +int style Base.Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f011b +int style Base.Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f011c +int style Base.Widget.MaterialComponents.Slider 0x7f0f011d +int style Base.Widget.MaterialComponents.Snackbar 0x7f0f011e +int style Base.Widget.MaterialComponents.TextInputEditText 0x7f0f011f +int style Base.Widget.MaterialComponents.TextInputLayout 0x7f0f0120 +int style Base.Widget.MaterialComponents.TextView 0x7f0f0121 +int style CardView 0x7f0f0122 +int style CardView.Dark 0x7f0f0123 +int style CardView.Light 0x7f0f0124 +int style MainTheme 0x7f0f0125 +int style MainTheme.Base 0x7f0f0126 +int style MainTheme.NoActionBar 0x7f0f0127 +int style MaterialAlertDialog.Material3 0x7f0f0128 +int style MaterialAlertDialog.Material3.Animation 0x7f0f0129 +int style MaterialAlertDialog.Material3.Body.Text 0x7f0f012a +int style MaterialAlertDialog.Material3.Body.Text.CenterStacked 0x7f0f012b +int style MaterialAlertDialog.Material3.Title.Icon 0x7f0f012c +int style MaterialAlertDialog.Material3.Title.Icon.CenterStacked 0x7f0f012d +int style MaterialAlertDialog.Material3.Title.Panel 0x7f0f012e +int style MaterialAlertDialog.Material3.Title.Panel.CenterStacked 0x7f0f012f +int style MaterialAlertDialog.Material3.Title.Text 0x7f0f0130 +int style MaterialAlertDialog.Material3.Title.Text.CenterStacked 0x7f0f0131 +int style MaterialAlertDialog.MaterialComponents 0x7f0f0132 +int style MaterialAlertDialog.MaterialComponents.Body.Text 0x7f0f0133 +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Calendar 0x7f0f0134 +int style MaterialAlertDialog.MaterialComponents.Picker.Date.Spinner 0x7f0f0135 +int style MaterialAlertDialog.MaterialComponents.Title.Icon 0x7f0f0136 +int style MaterialAlertDialog.MaterialComponents.Title.Icon.CenterStacked 0x7f0f0137 +int style MaterialAlertDialog.MaterialComponents.Title.Panel 0x7f0f0138 +int style MaterialAlertDialog.MaterialComponents.Title.Panel.CenterStacked 0x7f0f0139 +int style MaterialAlertDialog.MaterialComponents.Title.Text 0x7f0f013a +int style MaterialAlertDialog.MaterialComponents.Title.Text.CenterStacked 0x7f0f013b +int style Maui.MainTheme 0x7f0f013c +int style Maui.MainTheme.Base 0x7f0f013d +int style Maui.MainTheme.NoActionBar 0x7f0f013e +int style Maui.SplashTheme 0x7f0f013f +int style MauiAlertDialogTheme 0x7f0f0140 +int style MauiCheckBox 0x7f0f0141 +int style MauiMaterialButton 0x7f0f0142 +int style Platform.AppCompat 0x7f0f0143 +int style Platform.AppCompat.Light 0x7f0f0144 +int style Platform.MaterialComponents 0x7f0f0145 +int style Platform.MaterialComponents.Dialog 0x7f0f0146 +int style Platform.MaterialComponents.Light 0x7f0f0147 +int style Platform.MaterialComponents.Light.Dialog 0x7f0f0148 +int style Platform.ThemeOverlay.AppCompat 0x7f0f0149 +int style Platform.ThemeOverlay.AppCompat.Dark 0x7f0f014a +int style Platform.ThemeOverlay.AppCompat.Light 0x7f0f014b +int style Platform.V21.AppCompat 0x7f0f014c +int style Platform.V21.AppCompat.Light 0x7f0f014d +int style Platform.V25.AppCompat 0x7f0f014e +int style Platform.V25.AppCompat.Light 0x7f0f014f +int style Platform.Widget.AppCompat.Spinner 0x7f0f0150 +int style RtlOverlay.DialogWindowTitle.AppCompat 0x7f0f0151 +int style RtlOverlay.Widget.AppCompat.ActionBar.TitleItem 0x7f0f0152 +int style RtlOverlay.Widget.AppCompat.DialogTitle.Icon 0x7f0f0153 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem 0x7f0f0154 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.InternalGroup 0x7f0f0155 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Shortcut 0x7f0f0156 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.SubmenuArrow 0x7f0f0157 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Text 0x7f0f0158 +int style RtlOverlay.Widget.AppCompat.PopupMenuItem.Title 0x7f0f0159 +int style RtlOverlay.Widget.AppCompat.Search.DropDown 0x7f0f015a +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon1 0x7f0f015b +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Icon2 0x7f0f015c +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Query 0x7f0f015d +int style RtlOverlay.Widget.AppCompat.Search.DropDown.Text 0x7f0f015e +int style RtlOverlay.Widget.AppCompat.SearchView.MagIcon 0x7f0f015f +int style RtlUnderlay.Widget.AppCompat.ActionButton 0x7f0f0160 +int style RtlUnderlay.Widget.AppCompat.ActionButton.Overflow 0x7f0f0161 +int style ShapeAppearance.M3.Comp.Badge.Large.Shape 0x7f0f0162 +int style ShapeAppearance.M3.Comp.Badge.Shape 0x7f0f0163 +int style ShapeAppearance.M3.Comp.BottomAppBar.Container.Shape 0x7f0f0164 +int style ShapeAppearance.M3.Comp.DatePicker.Modal.Date.Container.Shape 0x7f0f0165 +int style ShapeAppearance.M3.Comp.FilledButton.Container.Shape 0x7f0f0166 +int style ShapeAppearance.M3.Comp.NavigationBar.ActiveIndicator.Shape 0x7f0f0167 +int style ShapeAppearance.M3.Comp.NavigationBar.Container.Shape 0x7f0f0168 +int style ShapeAppearance.M3.Comp.NavigationDrawer.ActiveIndicator.Shape 0x7f0f0169 +int style ShapeAppearance.M3.Comp.NavigationRail.ActiveIndicator.Shape 0x7f0f016a +int style ShapeAppearance.M3.Comp.NavigationRail.Container.Shape 0x7f0f016b +int style ShapeAppearance.M3.Comp.SearchBar.Avatar.Shape 0x7f0f016c +int style ShapeAppearance.M3.Comp.SearchBar.Container.Shape 0x7f0f016d +int style ShapeAppearance.M3.Comp.SearchView.FullScreen.Container.Shape 0x7f0f016e +int style ShapeAppearance.M3.Comp.Sheet.Side.Docked.Container.Shape 0x7f0f016f +int style ShapeAppearance.M3.Comp.Switch.Handle.Shape 0x7f0f0170 +int style ShapeAppearance.M3.Comp.Switch.StateLayer.Shape 0x7f0f0171 +int style ShapeAppearance.M3.Comp.Switch.Track.Shape 0x7f0f0172 +int style ShapeAppearance.M3.Comp.TextButton.Container.Shape 0x7f0f0173 +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraLarge 0x7f0f0174 +int style ShapeAppearance.M3.Sys.Shape.Corner.ExtraSmall 0x7f0f0175 +int style ShapeAppearance.M3.Sys.Shape.Corner.Full 0x7f0f0176 +int style ShapeAppearance.M3.Sys.Shape.Corner.Large 0x7f0f0177 +int style ShapeAppearance.M3.Sys.Shape.Corner.Medium 0x7f0f0178 +int style ShapeAppearance.M3.Sys.Shape.Corner.None 0x7f0f0179 +int style ShapeAppearance.M3.Sys.Shape.Corner.Small 0x7f0f017a +int style ShapeAppearance.Material3.Corner.ExtraLarge 0x7f0f017b +int style ShapeAppearance.Material3.Corner.ExtraSmall 0x7f0f017c +int style ShapeAppearance.Material3.Corner.Full 0x7f0f017d +int style ShapeAppearance.Material3.Corner.Large 0x7f0f017e +int style ShapeAppearance.Material3.Corner.Medium 0x7f0f017f +int style ShapeAppearance.Material3.Corner.None 0x7f0f0180 +int style ShapeAppearance.Material3.Corner.Small 0x7f0f0181 +int style ShapeAppearance.Material3.LargeComponent 0x7f0f0182 +int style ShapeAppearance.Material3.MediumComponent 0x7f0f0183 +int style ShapeAppearance.Material3.NavigationBarView.ActiveIndicator 0x7f0f0184 +int style ShapeAppearance.Material3.SmallComponent 0x7f0f0185 +int style ShapeAppearance.Material3.Tooltip 0x7f0f0186 +int style ShapeAppearance.MaterialComponents 0x7f0f0187 +int style ShapeAppearance.MaterialComponents.Badge 0x7f0f0188 +int style ShapeAppearance.MaterialComponents.LargeComponent 0x7f0f0189 +int style ShapeAppearance.MaterialComponents.MediumComponent 0x7f0f018a +int style ShapeAppearance.MaterialComponents.SmallComponent 0x7f0f018b +int style ShapeAppearance.MaterialComponents.Tooltip 0x7f0f018c +int style ShapeAppearanceOverlay.Material3.Button 0x7f0f018d +int style ShapeAppearanceOverlay.Material3.Chip 0x7f0f018e +int style ShapeAppearanceOverlay.Material3.Corner.Bottom 0x7f0f018f +int style ShapeAppearanceOverlay.Material3.Corner.Left 0x7f0f0190 +int style ShapeAppearanceOverlay.Material3.Corner.Right 0x7f0f0191 +int style ShapeAppearanceOverlay.Material3.Corner.Top 0x7f0f0192 +int style ShapeAppearanceOverlay.Material3.FloatingActionButton 0x7f0f0193 +int style ShapeAppearanceOverlay.Material3.NavigationView.Item 0x7f0f0194 +int style ShapeAppearanceOverlay.Material3.SearchBar 0x7f0f0195 +int style ShapeAppearanceOverlay.Material3.SearchView 0x7f0f0196 +int style ShapeAppearanceOverlay.MaterialAlertDialog.Material3 0x7f0f0197 +int style ShapeAppearanceOverlay.MaterialComponents.BottomSheet 0x7f0f0198 +int style ShapeAppearanceOverlay.MaterialComponents.Chip 0x7f0f0199 +int style ShapeAppearanceOverlay.MaterialComponents.ExtendedFloatingActionButton 0x7f0f019a +int style ShapeAppearanceOverlay.MaterialComponents.FloatingActionButton 0x7f0f019b +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Day 0x7f0f019c +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Window.Fullscreen 0x7f0f019d +int style ShapeAppearanceOverlay.MaterialComponents.MaterialCalendar.Year 0x7f0f019e +int style ShapeAppearanceOverlay.MaterialComponents.TextInputLayout.FilledBox 0x7f0f019f +int style TextAppearance.AppCompat 0x7f0f01a0 +int style TextAppearance.AppCompat.Body1 0x7f0f01a1 +int style TextAppearance.AppCompat.Body2 0x7f0f01a2 +int style TextAppearance.AppCompat.Button 0x7f0f01a3 +int style TextAppearance.AppCompat.Caption 0x7f0f01a4 +int style TextAppearance.AppCompat.Display1 0x7f0f01a5 +int style TextAppearance.AppCompat.Display2 0x7f0f01a6 +int style TextAppearance.AppCompat.Display3 0x7f0f01a7 +int style TextAppearance.AppCompat.Display4 0x7f0f01a8 +int style TextAppearance.AppCompat.Headline 0x7f0f01a9 +int style TextAppearance.AppCompat.Inverse 0x7f0f01aa +int style TextAppearance.AppCompat.Large 0x7f0f01ab +int style TextAppearance.AppCompat.Large.Inverse 0x7f0f01ac +int style TextAppearance.AppCompat.Light.SearchResult.Subtitle 0x7f0f01ad +int style TextAppearance.AppCompat.Light.SearchResult.Title 0x7f0f01ae +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Large 0x7f0f01af +int style TextAppearance.AppCompat.Light.Widget.PopupMenu.Small 0x7f0f01b0 +int style TextAppearance.AppCompat.Medium 0x7f0f01b1 +int style TextAppearance.AppCompat.Medium.Inverse 0x7f0f01b2 +int style TextAppearance.AppCompat.Menu 0x7f0f01b3 +int style TextAppearance.AppCompat.SearchResult.Subtitle 0x7f0f01b4 +int style TextAppearance.AppCompat.SearchResult.Title 0x7f0f01b5 +int style TextAppearance.AppCompat.Small 0x7f0f01b6 +int style TextAppearance.AppCompat.Small.Inverse 0x7f0f01b7 +int style TextAppearance.AppCompat.Subhead 0x7f0f01b8 +int style TextAppearance.AppCompat.Subhead.Inverse 0x7f0f01b9 +int style TextAppearance.AppCompat.Title 0x7f0f01ba +int style TextAppearance.AppCompat.Title.Inverse 0x7f0f01bb +int style TextAppearance.AppCompat.Tooltip 0x7f0f01bc +int style TextAppearance.AppCompat.Widget.ActionBar.Menu 0x7f0f01bd +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle 0x7f0f01be +int style TextAppearance.AppCompat.Widget.ActionBar.Subtitle.Inverse 0x7f0f01bf +int style TextAppearance.AppCompat.Widget.ActionBar.Title 0x7f0f01c0 +int style TextAppearance.AppCompat.Widget.ActionBar.Title.Inverse 0x7f0f01c1 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle 0x7f0f01c2 +int style TextAppearance.AppCompat.Widget.ActionMode.Subtitle.Inverse 0x7f0f01c3 +int style TextAppearance.AppCompat.Widget.ActionMode.Title 0x7f0f01c4 +int style TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse 0x7f0f01c5 +int style TextAppearance.AppCompat.Widget.Button 0x7f0f01c6 +int style TextAppearance.AppCompat.Widget.Button.Borderless.Colored 0x7f0f01c7 +int style TextAppearance.AppCompat.Widget.Button.Colored 0x7f0f01c8 +int style TextAppearance.AppCompat.Widget.Button.Inverse 0x7f0f01c9 +int style TextAppearance.AppCompat.Widget.DropDownItem 0x7f0f01ca +int style TextAppearance.AppCompat.Widget.PopupMenu.Header 0x7f0f01cb +int style TextAppearance.AppCompat.Widget.PopupMenu.Large 0x7f0f01cc +int style TextAppearance.AppCompat.Widget.PopupMenu.Small 0x7f0f01cd +int style TextAppearance.AppCompat.Widget.Switch 0x7f0f01ce +int style TextAppearance.AppCompat.Widget.TextView.SpinnerItem 0x7f0f01cf +int style TextAppearance.Compat.Notification 0x7f0f01d0 +int style TextAppearance.Compat.Notification.Info 0x7f0f01d1 +int style TextAppearance.Compat.Notification.Info.Media 0x7f0f01d2 +int style TextAppearance.Compat.Notification.Line2 0x7f0f01d3 +int style TextAppearance.Compat.Notification.Line2.Media 0x7f0f01d4 +int style TextAppearance.Compat.Notification.Media 0x7f0f01d5 +int style TextAppearance.Compat.Notification.Time 0x7f0f01d6 +int style TextAppearance.Compat.Notification.Time.Media 0x7f0f01d7 +int style TextAppearance.Compat.Notification.Title 0x7f0f01d8 +int style TextAppearance.Compat.Notification.Title.Media 0x7f0f01d9 +int style TextAppearance.Design.CollapsingToolbar.Expanded 0x7f0f01da +int style TextAppearance.Design.Counter 0x7f0f01db +int style TextAppearance.Design.Counter.Overflow 0x7f0f01dc +int style TextAppearance.Design.Error 0x7f0f01dd +int style TextAppearance.Design.HelperText 0x7f0f01de +int style TextAppearance.Design.Hint 0x7f0f01df +int style TextAppearance.Design.Placeholder 0x7f0f01e0 +int style TextAppearance.Design.Prefix 0x7f0f01e1 +int style TextAppearance.Design.Snackbar.Message 0x7f0f01e2 +int style TextAppearance.Design.Suffix 0x7f0f01e3 +int style TextAppearance.Design.Tab 0x7f0f01e4 +int style TextAppearance.M3.Sys.Typescale.BodyLarge 0x7f0f01e5 +int style TextAppearance.M3.Sys.Typescale.BodyMedium 0x7f0f01e6 +int style TextAppearance.M3.Sys.Typescale.BodySmall 0x7f0f01e7 +int style TextAppearance.M3.Sys.Typescale.DisplayLarge 0x7f0f01e8 +int style TextAppearance.M3.Sys.Typescale.DisplayMedium 0x7f0f01e9 +int style TextAppearance.M3.Sys.Typescale.DisplaySmall 0x7f0f01ea +int style TextAppearance.M3.Sys.Typescale.HeadlineLarge 0x7f0f01eb +int style TextAppearance.M3.Sys.Typescale.HeadlineMedium 0x7f0f01ec +int style TextAppearance.M3.Sys.Typescale.HeadlineSmall 0x7f0f01ed +int style TextAppearance.M3.Sys.Typescale.LabelLarge 0x7f0f01ee +int style TextAppearance.M3.Sys.Typescale.LabelMedium 0x7f0f01ef +int style TextAppearance.M3.Sys.Typescale.LabelSmall 0x7f0f01f0 +int style TextAppearance.M3.Sys.Typescale.TitleLarge 0x7f0f01f1 +int style TextAppearance.M3.Sys.Typescale.TitleMedium 0x7f0f01f2 +int style TextAppearance.M3.Sys.Typescale.TitleSmall 0x7f0f01f3 +int style TextAppearance.Material3.ActionBar.Subtitle 0x7f0f01f4 +int style TextAppearance.Material3.ActionBar.Title 0x7f0f01f5 +int style TextAppearance.Material3.BodyLarge 0x7f0f01f6 +int style TextAppearance.Material3.BodyMedium 0x7f0f01f7 +int style TextAppearance.Material3.BodySmall 0x7f0f01f8 +int style TextAppearance.Material3.DisplayLarge 0x7f0f01f9 +int style TextAppearance.Material3.DisplayMedium 0x7f0f01fa +int style TextAppearance.Material3.DisplaySmall 0x7f0f01fb +int style TextAppearance.Material3.HeadlineLarge 0x7f0f01fc +int style TextAppearance.Material3.HeadlineMedium 0x7f0f01fd +int style TextAppearance.Material3.HeadlineSmall 0x7f0f01fe +int style TextAppearance.Material3.LabelLarge 0x7f0f01ff +int style TextAppearance.Material3.LabelMedium 0x7f0f0200 +int style TextAppearance.Material3.LabelSmall 0x7f0f0201 +int style TextAppearance.Material3.MaterialTimePicker.Title 0x7f0f0202 +int style TextAppearance.Material3.SearchBar 0x7f0f0203 +int style TextAppearance.Material3.SearchView 0x7f0f0204 +int style TextAppearance.Material3.SearchView.Prefix 0x7f0f0205 +int style TextAppearance.Material3.TitleLarge 0x7f0f0206 +int style TextAppearance.Material3.TitleMedium 0x7f0f0207 +int style TextAppearance.Material3.TitleSmall 0x7f0f0208 +int style TextAppearance.MaterialComponents.Badge 0x7f0f0209 +int style TextAppearance.MaterialComponents.Body1 0x7f0f020a +int style TextAppearance.MaterialComponents.Body2 0x7f0f020b +int style TextAppearance.MaterialComponents.Button 0x7f0f020c +int style TextAppearance.MaterialComponents.Caption 0x7f0f020d +int style TextAppearance.MaterialComponents.Chip 0x7f0f020e +int style TextAppearance.MaterialComponents.Headline1 0x7f0f020f +int style TextAppearance.MaterialComponents.Headline2 0x7f0f0210 +int style TextAppearance.MaterialComponents.Headline3 0x7f0f0211 +int style TextAppearance.MaterialComponents.Headline4 0x7f0f0212 +int style TextAppearance.MaterialComponents.Headline5 0x7f0f0213 +int style TextAppearance.MaterialComponents.Headline6 0x7f0f0214 +int style TextAppearance.MaterialComponents.Overline 0x7f0f0215 +int style TextAppearance.MaterialComponents.Subtitle1 0x7f0f0216 +int style TextAppearance.MaterialComponents.Subtitle2 0x7f0f0217 +int style TextAppearance.MaterialComponents.TimePicker.Title 0x7f0f0218 +int style TextAppearance.MaterialComponents.Tooltip 0x7f0f0219 +int style TextAppearance.Widget.AppCompat.ExpandedMenu.Item 0x7f0f021a +int style TextAppearance.Widget.AppCompat.Toolbar.Subtitle 0x7f0f021b +int style TextAppearance.Widget.AppCompat.Toolbar.Title 0x7f0f021c +int style Theme.AppCompat 0x7f0f021d +int style Theme.AppCompat.CompactMenu 0x7f0f021e +int style Theme.AppCompat.DayNight 0x7f0f021f +int style Theme.AppCompat.DayNight.DarkActionBar 0x7f0f0220 +int style Theme.AppCompat.DayNight.Dialog 0x7f0f0221 +int style Theme.AppCompat.DayNight.Dialog.Alert 0x7f0f0222 +int style Theme.AppCompat.DayNight.Dialog.MinWidth 0x7f0f0223 +int style Theme.AppCompat.DayNight.DialogWhenLarge 0x7f0f0224 +int style Theme.AppCompat.DayNight.NoActionBar 0x7f0f0225 +int style Theme.AppCompat.Dialog 0x7f0f0226 +int style Theme.AppCompat.Dialog.Alert 0x7f0f0227 +int style Theme.AppCompat.Dialog.MinWidth 0x7f0f0228 +int style Theme.AppCompat.DialogWhenLarge 0x7f0f0229 +int style Theme.AppCompat.Empty 0x7f0f022a +int style Theme.AppCompat.Light 0x7f0f022b +int style Theme.AppCompat.Light.DarkActionBar 0x7f0f022c +int style Theme.AppCompat.Light.Dialog 0x7f0f022d +int style Theme.AppCompat.Light.Dialog.Alert 0x7f0f022e +int style Theme.AppCompat.Light.Dialog.MinWidth 0x7f0f022f +int style Theme.AppCompat.Light.DialogWhenLarge 0x7f0f0230 +int style Theme.AppCompat.Light.NoActionBar 0x7f0f0231 +int style Theme.AppCompat.NoActionBar 0x7f0f0232 +int style Theme.Design 0x7f0f0233 +int style Theme.Design.BottomSheetDialog 0x7f0f0234 +int style Theme.Design.Light 0x7f0f0235 +int style Theme.Design.Light.BottomSheetDialog 0x7f0f0236 +int style Theme.Design.Light.NoActionBar 0x7f0f0237 +int style Theme.Design.NoActionBar 0x7f0f0238 +int style Theme.Material3.Dark 0x7f0f0239 +int style Theme.Material3.Dark.BottomSheetDialog 0x7f0f023a +int style Theme.Material3.Dark.Dialog 0x7f0f023b +int style Theme.Material3.Dark.Dialog.Alert 0x7f0f023c +int style Theme.Material3.Dark.Dialog.MinWidth 0x7f0f023d +int style Theme.Material3.Dark.DialogWhenLarge 0x7f0f023e +int style Theme.Material3.Dark.NoActionBar 0x7f0f023f +int style Theme.Material3.Dark.SideSheetDialog 0x7f0f0240 +int style Theme.Material3.DayNight 0x7f0f0241 +int style Theme.Material3.DayNight.BottomSheetDialog 0x7f0f0242 +int style Theme.Material3.DayNight.Dialog 0x7f0f0243 +int style Theme.Material3.DayNight.Dialog.Alert 0x7f0f0244 +int style Theme.Material3.DayNight.Dialog.MinWidth 0x7f0f0245 +int style Theme.Material3.DayNight.DialogWhenLarge 0x7f0f0246 +int style Theme.Material3.DayNight.NoActionBar 0x7f0f0247 +int style Theme.Material3.DayNight.SideSheetDialog 0x7f0f0248 +int style Theme.Material3.DynamicColors.Dark 0x7f0f0249 +int style Theme.Material3.DynamicColors.DayNight 0x7f0f024a +int style Theme.Material3.DynamicColors.Light 0x7f0f024b +int style Theme.Material3.Light 0x7f0f024c +int style Theme.Material3.Light.BottomSheetDialog 0x7f0f024d +int style Theme.Material3.Light.Dialog 0x7f0f024e +int style Theme.Material3.Light.Dialog.Alert 0x7f0f024f +int style Theme.Material3.Light.Dialog.MinWidth 0x7f0f0250 +int style Theme.Material3.Light.DialogWhenLarge 0x7f0f0251 +int style Theme.Material3.Light.NoActionBar 0x7f0f0252 +int style Theme.Material3.Light.SideSheetDialog 0x7f0f0253 +int style Theme.MaterialComponents 0x7f0f0254 +int style Theme.MaterialComponents.BottomSheetDialog 0x7f0f0255 +int style Theme.MaterialComponents.Bridge 0x7f0f0256 +int style Theme.MaterialComponents.CompactMenu 0x7f0f0257 +int style Theme.MaterialComponents.DayNight 0x7f0f0258 +int style Theme.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f0259 +int style Theme.MaterialComponents.DayNight.Bridge 0x7f0f025a +int style Theme.MaterialComponents.DayNight.DarkActionBar 0x7f0f025b +int style Theme.MaterialComponents.DayNight.DarkActionBar.Bridge 0x7f0f025c +int style Theme.MaterialComponents.DayNight.Dialog 0x7f0f025d +int style Theme.MaterialComponents.DayNight.Dialog.Alert 0x7f0f025e +int style Theme.MaterialComponents.DayNight.Dialog.Alert.Bridge 0x7f0f025f +int style Theme.MaterialComponents.DayNight.Dialog.Bridge 0x7f0f0260 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize 0x7f0f0261 +int style Theme.MaterialComponents.DayNight.Dialog.FixedSize.Bridge 0x7f0f0262 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth 0x7f0f0263 +int style Theme.MaterialComponents.DayNight.Dialog.MinWidth.Bridge 0x7f0f0264 +int style Theme.MaterialComponents.DayNight.DialogWhenLarge 0x7f0f0265 +int style Theme.MaterialComponents.DayNight.NoActionBar 0x7f0f0266 +int style Theme.MaterialComponents.DayNight.NoActionBar.Bridge 0x7f0f0267 +int style Theme.MaterialComponents.Dialog 0x7f0f0268 +int style Theme.MaterialComponents.Dialog.Alert 0x7f0f0269 +int style Theme.MaterialComponents.Dialog.Alert.Bridge 0x7f0f026a +int style Theme.MaterialComponents.Dialog.Bridge 0x7f0f026b +int style Theme.MaterialComponents.Dialog.FixedSize 0x7f0f026c +int style Theme.MaterialComponents.Dialog.FixedSize.Bridge 0x7f0f026d +int style Theme.MaterialComponents.Dialog.MinWidth 0x7f0f026e +int style Theme.MaterialComponents.Dialog.MinWidth.Bridge 0x7f0f026f +int style Theme.MaterialComponents.DialogWhenLarge 0x7f0f0270 +int style Theme.MaterialComponents.Light 0x7f0f0271 +int style Theme.MaterialComponents.Light.BottomSheetDialog 0x7f0f0272 +int style Theme.MaterialComponents.Light.Bridge 0x7f0f0273 +int style Theme.MaterialComponents.Light.DarkActionBar 0x7f0f0274 +int style Theme.MaterialComponents.Light.DarkActionBar.Bridge 0x7f0f0275 +int style Theme.MaterialComponents.Light.Dialog 0x7f0f0276 +int style Theme.MaterialComponents.Light.Dialog.Alert 0x7f0f0277 +int style Theme.MaterialComponents.Light.Dialog.Alert.Bridge 0x7f0f0278 +int style Theme.MaterialComponents.Light.Dialog.Bridge 0x7f0f0279 +int style Theme.MaterialComponents.Light.Dialog.FixedSize 0x7f0f027a +int style Theme.MaterialComponents.Light.Dialog.FixedSize.Bridge 0x7f0f027b +int style Theme.MaterialComponents.Light.Dialog.MinWidth 0x7f0f027c +int style Theme.MaterialComponents.Light.Dialog.MinWidth.Bridge 0x7f0f027d +int style Theme.MaterialComponents.Light.DialogWhenLarge 0x7f0f027e +int style Theme.MaterialComponents.Light.NoActionBar 0x7f0f027f +int style Theme.MaterialComponents.Light.NoActionBar.Bridge 0x7f0f0280 +int style Theme.MaterialComponents.NoActionBar 0x7f0f0281 +int style Theme.MaterialComponents.NoActionBar.Bridge 0x7f0f0282 +int style ThemeOverlay.AppCompat 0x7f0f0283 +int style ThemeOverlay.AppCompat.ActionBar 0x7f0f0284 +int style ThemeOverlay.AppCompat.Dark 0x7f0f0285 +int style ThemeOverlay.AppCompat.Dark.ActionBar 0x7f0f0286 +int style ThemeOverlay.AppCompat.DayNight 0x7f0f0287 +int style ThemeOverlay.AppCompat.DayNight.ActionBar 0x7f0f0288 +int style ThemeOverlay.AppCompat.Dialog 0x7f0f0289 +int style ThemeOverlay.AppCompat.Dialog.Alert 0x7f0f028a +int style ThemeOverlay.AppCompat.Light 0x7f0f028b +int style ThemeOverlay.Design.TextInputEditText 0x7f0f028c +int style ThemeOverlay.Material3 0x7f0f028d +int style ThemeOverlay.Material3.ActionBar 0x7f0f028e +int style ThemeOverlay.Material3.AutoCompleteTextView 0x7f0f028f +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox 0x7f0f0290 +int style ThemeOverlay.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f0291 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f0292 +int style ThemeOverlay.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f0293 +int style ThemeOverlay.Material3.BottomAppBar 0x7f0f0294 +int style ThemeOverlay.Material3.BottomAppBar.Legacy 0x7f0f0295 +int style ThemeOverlay.Material3.BottomNavigationView 0x7f0f0296 +int style ThemeOverlay.Material3.BottomSheetDialog 0x7f0f0297 +int style ThemeOverlay.Material3.Button 0x7f0f0298 +int style ThemeOverlay.Material3.Button.ElevatedButton 0x7f0f0299 +int style ThemeOverlay.Material3.Button.IconButton 0x7f0f029a +int style ThemeOverlay.Material3.Button.IconButton.Filled 0x7f0f029b +int style ThemeOverlay.Material3.Button.IconButton.Filled.Tonal 0x7f0f029c +int style ThemeOverlay.Material3.Button.TextButton 0x7f0f029d +int style ThemeOverlay.Material3.Button.TextButton.Snackbar 0x7f0f029e +int style ThemeOverlay.Material3.Button.TonalButton 0x7f0f029f +int style ThemeOverlay.Material3.Chip 0x7f0f02a0 +int style ThemeOverlay.Material3.Chip.Assist 0x7f0f02a1 +int style ThemeOverlay.Material3.Dark 0x7f0f02a2 +int style ThemeOverlay.Material3.Dark.ActionBar 0x7f0f02a3 +int style ThemeOverlay.Material3.DayNight.BottomSheetDialog 0x7f0f02a4 +int style ThemeOverlay.Material3.DayNight.SideSheetDialog 0x7f0f02a5 +int style ThemeOverlay.Material3.Dialog 0x7f0f02a6 +int style ThemeOverlay.Material3.Dialog.Alert 0x7f0f02a7 +int style ThemeOverlay.Material3.Dialog.Alert.Framework 0x7f0f02a8 +int style ThemeOverlay.Material3.DynamicColors.Dark 0x7f0f02a9 +int style ThemeOverlay.Material3.DynamicColors.DayNight 0x7f0f02aa +int style ThemeOverlay.Material3.DynamicColors.Light 0x7f0f02ab +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Primary 0x7f0f02ac +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f02ad +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Surface 0x7f0f02ae +int style ThemeOverlay.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f02af +int style ThemeOverlay.Material3.FloatingActionButton.Primary 0x7f0f02b0 +int style ThemeOverlay.Material3.FloatingActionButton.Secondary 0x7f0f02b1 +int style ThemeOverlay.Material3.FloatingActionButton.Surface 0x7f0f02b2 +int style ThemeOverlay.Material3.FloatingActionButton.Tertiary 0x7f0f02b3 +int style ThemeOverlay.Material3.HarmonizedColors 0x7f0f02b4 +int style ThemeOverlay.Material3.HarmonizedColors.Empty 0x7f0f02b5 +int style ThemeOverlay.Material3.Light 0x7f0f02b6 +int style ThemeOverlay.Material3.Light.Dialog.Alert.Framework 0x7f0f02b7 +int style ThemeOverlay.Material3.MaterialAlertDialog 0x7f0f02b8 +int style ThemeOverlay.Material3.MaterialAlertDialog.Centered 0x7f0f02b9 +int style ThemeOverlay.Material3.MaterialCalendar 0x7f0f02ba +int style ThemeOverlay.Material3.MaterialCalendar.Fullscreen 0x7f0f02bb +int style ThemeOverlay.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f02bc +int style ThemeOverlay.Material3.MaterialTimePicker 0x7f0f02bd +int style ThemeOverlay.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f02be +int style ThemeOverlay.Material3.NavigationRailView 0x7f0f02bf +int style ThemeOverlay.Material3.NavigationView 0x7f0f02c0 +int style ThemeOverlay.Material3.PersonalizedColors 0x7f0f02c1 +int style ThemeOverlay.Material3.Search 0x7f0f02c2 +int style ThemeOverlay.Material3.SideSheetDialog 0x7f0f02c3 +int style ThemeOverlay.Material3.Snackbar 0x7f0f02c4 +int style ThemeOverlay.Material3.TabLayout 0x7f0f02c5 +int style ThemeOverlay.Material3.TextInputEditText 0x7f0f02c6 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox 0x7f0f02c7 +int style ThemeOverlay.Material3.TextInputEditText.FilledBox.Dense 0x7f0f02c8 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox 0x7f0f02c9 +int style ThemeOverlay.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f02ca +int style ThemeOverlay.Material3.Toolbar.Surface 0x7f0f02cb +int style ThemeOverlay.MaterialAlertDialog.Material3.Title.Icon 0x7f0f02cc +int style ThemeOverlay.MaterialComponents 0x7f0f02cd +int style ThemeOverlay.MaterialComponents.ActionBar 0x7f0f02ce +int style ThemeOverlay.MaterialComponents.ActionBar.Primary 0x7f0f02cf +int style ThemeOverlay.MaterialComponents.ActionBar.Surface 0x7f0f02d0 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView 0x7f0f02d1 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f02d2 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f02d3 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f02d4 +int style ThemeOverlay.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f02d5 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Primary 0x7f0f02d6 +int style ThemeOverlay.MaterialComponents.BottomAppBar.Surface 0x7f0f02d7 +int style ThemeOverlay.MaterialComponents.BottomSheetDialog 0x7f0f02d8 +int style ThemeOverlay.MaterialComponents.Dark 0x7f0f02d9 +int style ThemeOverlay.MaterialComponents.Dark.ActionBar 0x7f0f02da +int style ThemeOverlay.MaterialComponents.DayNight.BottomSheetDialog 0x7f0f02db +int style ThemeOverlay.MaterialComponents.Dialog 0x7f0f02dc +int style ThemeOverlay.MaterialComponents.Dialog.Alert 0x7f0f02dd +int style ThemeOverlay.MaterialComponents.Dialog.Alert.Framework 0x7f0f02de +int style ThemeOverlay.MaterialComponents.Light 0x7f0f02df +int style ThemeOverlay.MaterialComponents.Light.Dialog.Alert.Framework 0x7f0f02e0 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog 0x7f0f02e1 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Centered 0x7f0f02e2 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date 0x7f0f02e3 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Calendar 0x7f0f02e4 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text 0x7f0f02e5 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Header.Text.Day 0x7f0f02e6 +int style ThemeOverlay.MaterialComponents.MaterialAlertDialog.Picker.Date.Spinner 0x7f0f02e7 +int style ThemeOverlay.MaterialComponents.MaterialCalendar 0x7f0f02e8 +int style ThemeOverlay.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f02e9 +int style ThemeOverlay.MaterialComponents.TextInputEditText 0x7f0f02ea +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox 0x7f0f02eb +int style ThemeOverlay.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f02ec +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f02ed +int style ThemeOverlay.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f02ee +int style ThemeOverlay.MaterialComponents.TimePicker 0x7f0f02ef +int style ThemeOverlay.MaterialComponents.TimePicker.Display 0x7f0f02f0 +int style ThemeOverlay.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f02f1 +int style ThemeOverlay.MaterialComponents.Toolbar.Popup.Primary 0x7f0f02f2 +int style ThemeOverlay.MaterialComponents.Toolbar.Primary 0x7f0f02f3 +int style ThemeOverlay.MaterialComponents.Toolbar.Surface 0x7f0f02f4 +int style Widget.AppCompat.ActionBar 0x7f0f02f5 +int style Widget.AppCompat.ActionBar.Solid 0x7f0f02f6 +int style Widget.AppCompat.ActionBar.TabBar 0x7f0f02f7 +int style Widget.AppCompat.ActionBar.TabText 0x7f0f02f8 +int style Widget.AppCompat.ActionBar.TabView 0x7f0f02f9 +int style Widget.AppCompat.ActionButton 0x7f0f02fa +int style Widget.AppCompat.ActionButton.CloseMode 0x7f0f02fb +int style Widget.AppCompat.ActionButton.Overflow 0x7f0f02fc +int style Widget.AppCompat.ActionMode 0x7f0f02fd +int style Widget.AppCompat.ActivityChooserView 0x7f0f02fe +int style Widget.AppCompat.AutoCompleteTextView 0x7f0f02ff +int style Widget.AppCompat.Button 0x7f0f0300 +int style Widget.AppCompat.Button.Borderless 0x7f0f0301 +int style Widget.AppCompat.Button.Borderless.Colored 0x7f0f0302 +int style Widget.AppCompat.Button.ButtonBar.AlertDialog 0x7f0f0303 +int style Widget.AppCompat.Button.Colored 0x7f0f0304 +int style Widget.AppCompat.Button.Small 0x7f0f0305 +int style Widget.AppCompat.ButtonBar 0x7f0f0306 +int style Widget.AppCompat.ButtonBar.AlertDialog 0x7f0f0307 +int style Widget.AppCompat.CompoundButton.CheckBox 0x7f0f0308 +int style Widget.AppCompat.CompoundButton.RadioButton 0x7f0f0309 +int style Widget.AppCompat.CompoundButton.Switch 0x7f0f030a +int style Widget.AppCompat.DrawerArrowToggle 0x7f0f030b +int style Widget.AppCompat.DropDownItem.Spinner 0x7f0f030c +int style Widget.AppCompat.EditText 0x7f0f030d +int style Widget.AppCompat.ImageButton 0x7f0f030e +int style Widget.AppCompat.Light.ActionBar 0x7f0f030f +int style Widget.AppCompat.Light.ActionBar.Solid 0x7f0f0310 +int style Widget.AppCompat.Light.ActionBar.Solid.Inverse 0x7f0f0311 +int style Widget.AppCompat.Light.ActionBar.TabBar 0x7f0f0312 +int style Widget.AppCompat.Light.ActionBar.TabBar.Inverse 0x7f0f0313 +int style Widget.AppCompat.Light.ActionBar.TabText 0x7f0f0314 +int style Widget.AppCompat.Light.ActionBar.TabText.Inverse 0x7f0f0315 +int style Widget.AppCompat.Light.ActionBar.TabView 0x7f0f0316 +int style Widget.AppCompat.Light.ActionBar.TabView.Inverse 0x7f0f0317 +int style Widget.AppCompat.Light.ActionButton 0x7f0f0318 +int style Widget.AppCompat.Light.ActionButton.CloseMode 0x7f0f0319 +int style Widget.AppCompat.Light.ActionButton.Overflow 0x7f0f031a +int style Widget.AppCompat.Light.ActionMode.Inverse 0x7f0f031b +int style Widget.AppCompat.Light.ActivityChooserView 0x7f0f031c +int style Widget.AppCompat.Light.AutoCompleteTextView 0x7f0f031d +int style Widget.AppCompat.Light.DropDownItem.Spinner 0x7f0f031e +int style Widget.AppCompat.Light.ListPopupWindow 0x7f0f031f +int style Widget.AppCompat.Light.ListView.DropDown 0x7f0f0320 +int style Widget.AppCompat.Light.PopupMenu 0x7f0f0321 +int style Widget.AppCompat.Light.PopupMenu.Overflow 0x7f0f0322 +int style Widget.AppCompat.Light.SearchView 0x7f0f0323 +int style Widget.AppCompat.Light.Spinner.DropDown.ActionBar 0x7f0f0324 +int style Widget.AppCompat.ListMenuView 0x7f0f0325 +int style Widget.AppCompat.ListPopupWindow 0x7f0f0326 +int style Widget.AppCompat.ListView 0x7f0f0327 +int style Widget.AppCompat.ListView.DropDown 0x7f0f0328 +int style Widget.AppCompat.ListView.Menu 0x7f0f0329 +int style Widget.AppCompat.PopupMenu 0x7f0f032a +int style Widget.AppCompat.PopupMenu.Overflow 0x7f0f032b +int style Widget.AppCompat.PopupWindow 0x7f0f032c +int style Widget.AppCompat.ProgressBar 0x7f0f032d +int style Widget.AppCompat.ProgressBar.Horizontal 0x7f0f032e +int style Widget.AppCompat.RatingBar 0x7f0f032f +int style Widget.AppCompat.RatingBar.Indicator 0x7f0f0330 +int style Widget.AppCompat.RatingBar.Small 0x7f0f0331 +int style Widget.AppCompat.SearchView 0x7f0f0332 +int style Widget.AppCompat.SearchView.ActionBar 0x7f0f0333 +int style Widget.AppCompat.SeekBar 0x7f0f0334 +int style Widget.AppCompat.SeekBar.Discrete 0x7f0f0335 +int style Widget.AppCompat.Spinner 0x7f0f0336 +int style Widget.AppCompat.Spinner.DropDown 0x7f0f0337 +int style Widget.AppCompat.Spinner.DropDown.ActionBar 0x7f0f0338 +int style Widget.AppCompat.Spinner.Underlined 0x7f0f0339 +int style Widget.AppCompat.TextView 0x7f0f033a +int style Widget.AppCompat.TextView.SpinnerItem 0x7f0f033b +int style Widget.AppCompat.Toolbar 0x7f0f033c +int style Widget.AppCompat.Toolbar.Button.Navigation 0x7f0f033d +int style Widget.Compat.NotificationActionContainer 0x7f0f033e +int style Widget.Compat.NotificationActionText 0x7f0f033f +int style Widget.Design.AppBarLayout 0x7f0f0340 +int style Widget.Design.BottomNavigationView 0x7f0f0341 +int style Widget.Design.BottomSheet.Modal 0x7f0f0342 +int style Widget.Design.CollapsingToolbar 0x7f0f0343 +int style Widget.Design.FloatingActionButton 0x7f0f0344 +int style Widget.Design.NavigationView 0x7f0f0345 +int style Widget.Design.ScrimInsetsFrameLayout 0x7f0f0346 +int style Widget.Design.Snackbar 0x7f0f0347 +int style Widget.Design.TabLayout 0x7f0f0348 +int style Widget.Design.TextInputEditText 0x7f0f0349 +int style Widget.Design.TextInputLayout 0x7f0f034a +int style Widget.Material3.ActionBar.Solid 0x7f0f034b +int style Widget.Material3.ActionMode 0x7f0f034c +int style Widget.Material3.AppBarLayout 0x7f0f034d +int style Widget.Material3.AutoCompleteTextView.FilledBox 0x7f0f034e +int style Widget.Material3.AutoCompleteTextView.FilledBox.Dense 0x7f0f034f +int style Widget.Material3.AutoCompleteTextView.OutlinedBox 0x7f0f0350 +int style Widget.Material3.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f0351 +int style Widget.Material3.Badge 0x7f0f0352 +int style Widget.Material3.Badge.AdjustToBounds 0x7f0f0353 +int style Widget.Material3.BottomAppBar 0x7f0f0354 +int style Widget.Material3.BottomAppBar.Button.Navigation 0x7f0f0355 +int style Widget.Material3.BottomAppBar.Legacy 0x7f0f0356 +int style Widget.Material3.BottomNavigation.Badge 0x7f0f0357 +int style Widget.Material3.BottomNavigationView 0x7f0f0358 +int style Widget.Material3.BottomNavigationView.ActiveIndicator 0x7f0f0359 +int style Widget.Material3.BottomSheet 0x7f0f035a +int style Widget.Material3.BottomSheet.DragHandle 0x7f0f035b +int style Widget.Material3.BottomSheet.Modal 0x7f0f035c +int style Widget.Material3.Button 0x7f0f035d +int style Widget.Material3.Button.ElevatedButton 0x7f0f035e +int style Widget.Material3.Button.ElevatedButton.Icon 0x7f0f035f +int style Widget.Material3.Button.Icon 0x7f0f0360 +int style Widget.Material3.Button.IconButton 0x7f0f0361 +int style Widget.Material3.Button.IconButton.Filled 0x7f0f0362 +int style Widget.Material3.Button.IconButton.Filled.Tonal 0x7f0f0363 +int style Widget.Material3.Button.IconButton.Outlined 0x7f0f0364 +int style Widget.Material3.Button.OutlinedButton 0x7f0f0365 +int style Widget.Material3.Button.OutlinedButton.Icon 0x7f0f0366 +int style Widget.Material3.Button.TextButton 0x7f0f0367 +int style Widget.Material3.Button.TextButton.Dialog 0x7f0f0368 +int style Widget.Material3.Button.TextButton.Dialog.Flush 0x7f0f0369 +int style Widget.Material3.Button.TextButton.Dialog.Icon 0x7f0f036a +int style Widget.Material3.Button.TextButton.Icon 0x7f0f036b +int style Widget.Material3.Button.TextButton.Snackbar 0x7f0f036c +int style Widget.Material3.Button.TonalButton 0x7f0f036d +int style Widget.Material3.Button.TonalButton.Icon 0x7f0f036e +int style Widget.Material3.Button.UnelevatedButton 0x7f0f036f +int style Widget.Material3.CardView.Elevated 0x7f0f0370 +int style Widget.Material3.CardView.Filled 0x7f0f0371 +int style Widget.Material3.CardView.Outlined 0x7f0f0372 +int style Widget.Material3.CheckedTextView 0x7f0f0373 +int style Widget.Material3.Chip.Assist 0x7f0f0374 +int style Widget.Material3.Chip.Assist.Elevated 0x7f0f0375 +int style Widget.Material3.Chip.Filter 0x7f0f0376 +int style Widget.Material3.Chip.Filter.Elevated 0x7f0f0377 +int style Widget.Material3.Chip.Input 0x7f0f0378 +int style Widget.Material3.Chip.Input.Elevated 0x7f0f0379 +int style Widget.Material3.Chip.Input.Icon 0x7f0f037a +int style Widget.Material3.Chip.Input.Icon.Elevated 0x7f0f037b +int style Widget.Material3.Chip.Suggestion 0x7f0f037c +int style Widget.Material3.Chip.Suggestion.Elevated 0x7f0f037d +int style Widget.Material3.ChipGroup 0x7f0f037e +int style Widget.Material3.CircularProgressIndicator 0x7f0f037f +int style Widget.Material3.CircularProgressIndicator.ExtraSmall 0x7f0f0380 +int style Widget.Material3.CircularProgressIndicator.Medium 0x7f0f0381 +int style Widget.Material3.CircularProgressIndicator.Small 0x7f0f0382 +int style Widget.Material3.CollapsingToolbar 0x7f0f0383 +int style Widget.Material3.CollapsingToolbar.Large 0x7f0f0384 +int style Widget.Material3.CollapsingToolbar.Medium 0x7f0f0385 +int style Widget.Material3.CompoundButton.CheckBox 0x7f0f0386 +int style Widget.Material3.CompoundButton.MaterialSwitch 0x7f0f0387 +int style Widget.Material3.CompoundButton.RadioButton 0x7f0f0388 +int style Widget.Material3.CompoundButton.Switch 0x7f0f0389 +int style Widget.Material3.DrawerLayout 0x7f0f038a +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Primary 0x7f0f038b +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Secondary 0x7f0f038c +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Surface 0x7f0f038d +int style Widget.Material3.ExtendedFloatingActionButton.Icon.Tertiary 0x7f0f038e +int style Widget.Material3.ExtendedFloatingActionButton.Primary 0x7f0f038f +int style Widget.Material3.ExtendedFloatingActionButton.Secondary 0x7f0f0390 +int style Widget.Material3.ExtendedFloatingActionButton.Surface 0x7f0f0391 +int style Widget.Material3.ExtendedFloatingActionButton.Tertiary 0x7f0f0392 +int style Widget.Material3.FloatingActionButton.Large.Primary 0x7f0f0393 +int style Widget.Material3.FloatingActionButton.Large.Secondary 0x7f0f0394 +int style Widget.Material3.FloatingActionButton.Large.Surface 0x7f0f0395 +int style Widget.Material3.FloatingActionButton.Large.Tertiary 0x7f0f0396 +int style Widget.Material3.FloatingActionButton.Primary 0x7f0f0397 +int style Widget.Material3.FloatingActionButton.Secondary 0x7f0f0398 +int style Widget.Material3.FloatingActionButton.Small.Primary 0x7f0f0399 +int style Widget.Material3.FloatingActionButton.Small.Secondary 0x7f0f039a +int style Widget.Material3.FloatingActionButton.Small.Surface 0x7f0f039b +int style Widget.Material3.FloatingActionButton.Small.Tertiary 0x7f0f039c +int style Widget.Material3.FloatingActionButton.Surface 0x7f0f039d +int style Widget.Material3.FloatingActionButton.Tertiary 0x7f0f039e +int style Widget.Material3.Light.ActionBar.Solid 0x7f0f039f +int style Widget.Material3.LinearProgressIndicator 0x7f0f03a0 +int style Widget.Material3.MaterialButtonToggleGroup 0x7f0f03a1 +int style Widget.Material3.MaterialCalendar 0x7f0f03a2 +int style Widget.Material3.MaterialCalendar.Day 0x7f0f03a3 +int style Widget.Material3.MaterialCalendar.Day.Invalid 0x7f0f03a4 +int style Widget.Material3.MaterialCalendar.Day.Selected 0x7f0f03a5 +int style Widget.Material3.MaterialCalendar.Day.Today 0x7f0f03a6 +int style Widget.Material3.MaterialCalendar.DayOfWeekLabel 0x7f0f03a7 +int style Widget.Material3.MaterialCalendar.DayTextView 0x7f0f03a8 +int style Widget.Material3.MaterialCalendar.Fullscreen 0x7f0f03a9 +int style Widget.Material3.MaterialCalendar.HeaderCancelButton 0x7f0f03aa +int style Widget.Material3.MaterialCalendar.HeaderDivider 0x7f0f03ab +int style Widget.Material3.MaterialCalendar.HeaderLayout 0x7f0f03ac +int style Widget.Material3.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f03ad +int style Widget.Material3.MaterialCalendar.HeaderSelection 0x7f0f03ae +int style Widget.Material3.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f03af +int style Widget.Material3.MaterialCalendar.HeaderTitle 0x7f0f03b0 +int style Widget.Material3.MaterialCalendar.HeaderToggleButton 0x7f0f03b1 +int style Widget.Material3.MaterialCalendar.Item 0x7f0f03b2 +int style Widget.Material3.MaterialCalendar.MonthNavigationButton 0x7f0f03b3 +int style Widget.Material3.MaterialCalendar.MonthTextView 0x7f0f03b4 +int style Widget.Material3.MaterialCalendar.Year 0x7f0f03b5 +int style Widget.Material3.MaterialCalendar.Year.Selected 0x7f0f03b6 +int style Widget.Material3.MaterialCalendar.Year.Today 0x7f0f03b7 +int style Widget.Material3.MaterialCalendar.YearNavigationButton 0x7f0f03b8 +int style Widget.Material3.MaterialDivider 0x7f0f03b9 +int style Widget.Material3.MaterialDivider.Heavy 0x7f0f03ba +int style Widget.Material3.MaterialTimePicker 0x7f0f03bb +int style Widget.Material3.MaterialTimePicker.Button 0x7f0f03bc +int style Widget.Material3.MaterialTimePicker.Clock 0x7f0f03bd +int style Widget.Material3.MaterialTimePicker.Display 0x7f0f03be +int style Widget.Material3.MaterialTimePicker.Display.Divider 0x7f0f03bf +int style Widget.Material3.MaterialTimePicker.Display.HelperText 0x7f0f03c0 +int style Widget.Material3.MaterialTimePicker.Display.TextInputEditText 0x7f0f03c1 +int style Widget.Material3.MaterialTimePicker.Display.TextInputLayout 0x7f0f03c2 +int style Widget.Material3.MaterialTimePicker.ImageButton 0x7f0f03c3 +int style Widget.Material3.NavigationRailView 0x7f0f03c4 +int style Widget.Material3.NavigationRailView.ActiveIndicator 0x7f0f03c5 +int style Widget.Material3.NavigationRailView.Badge 0x7f0f03c6 +int style Widget.Material3.NavigationView 0x7f0f03c7 +int style Widget.Material3.PopupMenu 0x7f0f03c8 +int style Widget.Material3.PopupMenu.ContextMenu 0x7f0f03c9 +int style Widget.Material3.PopupMenu.ListPopupWindow 0x7f0f03ca +int style Widget.Material3.PopupMenu.Overflow 0x7f0f03cb +int style Widget.Material3.Search.ActionButton.Overflow 0x7f0f03cc +int style Widget.Material3.Search.Toolbar.Button.Navigation 0x7f0f03cd +int style Widget.Material3.SearchBar 0x7f0f03ce +int style Widget.Material3.SearchBar.Outlined 0x7f0f03cf +int style Widget.Material3.SearchView 0x7f0f03d0 +int style Widget.Material3.SearchView.Prefix 0x7f0f03d1 +int style Widget.Material3.SearchView.Toolbar 0x7f0f03d2 +int style Widget.Material3.SideSheet 0x7f0f03d3 +int style Widget.Material3.SideSheet.Detached 0x7f0f03d4 +int style Widget.Material3.SideSheet.Modal 0x7f0f03d5 +int style Widget.Material3.SideSheet.Modal.Detached 0x7f0f03d6 +int style Widget.Material3.Slider 0x7f0f03d7 +int style Widget.Material3.Slider.Label 0x7f0f03d8 +int style Widget.Material3.Snackbar 0x7f0f03d9 +int style Widget.Material3.Snackbar.FullWidth 0x7f0f03da +int style Widget.Material3.Snackbar.TextView 0x7f0f03db +int style Widget.Material3.TabLayout 0x7f0f03dc +int style Widget.Material3.TabLayout.OnSurface 0x7f0f03dd +int style Widget.Material3.TabLayout.Secondary 0x7f0f03de +int style Widget.Material3.TextInputEditText.FilledBox 0x7f0f03df +int style Widget.Material3.TextInputEditText.FilledBox.Dense 0x7f0f03e0 +int style Widget.Material3.TextInputEditText.OutlinedBox 0x7f0f03e1 +int style Widget.Material3.TextInputEditText.OutlinedBox.Dense 0x7f0f03e2 +int style Widget.Material3.TextInputLayout.FilledBox 0x7f0f03e3 +int style Widget.Material3.TextInputLayout.FilledBox.Dense 0x7f0f03e4 +int style Widget.Material3.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f03e5 +int style Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f03e6 +int style Widget.Material3.TextInputLayout.OutlinedBox 0x7f0f03e7 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense 0x7f0f03e8 +int style Widget.Material3.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f03e9 +int style Widget.Material3.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f03ea +int style Widget.Material3.Toolbar 0x7f0f03eb +int style Widget.Material3.Toolbar.OnSurface 0x7f0f03ec +int style Widget.Material3.Toolbar.Surface 0x7f0f03ed +int style Widget.Material3.Tooltip 0x7f0f03ee +int style Widget.MaterialComponents.ActionBar.Primary 0x7f0f03ef +int style Widget.MaterialComponents.ActionBar.PrimarySurface 0x7f0f03f0 +int style Widget.MaterialComponents.ActionBar.Solid 0x7f0f03f1 +int style Widget.MaterialComponents.ActionBar.Surface 0x7f0f03f2 +int style Widget.MaterialComponents.ActionMode 0x7f0f03f3 +int style Widget.MaterialComponents.AppBarLayout.Primary 0x7f0f03f4 +int style Widget.MaterialComponents.AppBarLayout.PrimarySurface 0x7f0f03f5 +int style Widget.MaterialComponents.AppBarLayout.Surface 0x7f0f03f6 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox 0x7f0f03f7 +int style Widget.MaterialComponents.AutoCompleteTextView.FilledBox.Dense 0x7f0f03f8 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox 0x7f0f03f9 +int style Widget.MaterialComponents.AutoCompleteTextView.OutlinedBox.Dense 0x7f0f03fa +int style Widget.MaterialComponents.Badge 0x7f0f03fb +int style Widget.MaterialComponents.BottomAppBar 0x7f0f03fc +int style Widget.MaterialComponents.BottomAppBar.Colored 0x7f0f03fd +int style Widget.MaterialComponents.BottomAppBar.PrimarySurface 0x7f0f03fe +int style Widget.MaterialComponents.BottomNavigationView 0x7f0f03ff +int style Widget.MaterialComponents.BottomNavigationView.Colored 0x7f0f0400 +int style Widget.MaterialComponents.BottomNavigationView.PrimarySurface 0x7f0f0401 +int style Widget.MaterialComponents.BottomSheet 0x7f0f0402 +int style Widget.MaterialComponents.BottomSheet.Modal 0x7f0f0403 +int style Widget.MaterialComponents.Button 0x7f0f0404 +int style Widget.MaterialComponents.Button.Icon 0x7f0f0405 +int style Widget.MaterialComponents.Button.OutlinedButton 0x7f0f0406 +int style Widget.MaterialComponents.Button.OutlinedButton.Icon 0x7f0f0407 +int style Widget.MaterialComponents.Button.TextButton 0x7f0f0408 +int style Widget.MaterialComponents.Button.TextButton.Dialog 0x7f0f0409 +int style Widget.MaterialComponents.Button.TextButton.Dialog.Flush 0x7f0f040a +int style Widget.MaterialComponents.Button.TextButton.Dialog.Icon 0x7f0f040b +int style Widget.MaterialComponents.Button.TextButton.Icon 0x7f0f040c +int style Widget.MaterialComponents.Button.TextButton.Snackbar 0x7f0f040d +int style Widget.MaterialComponents.Button.UnelevatedButton 0x7f0f040e +int style Widget.MaterialComponents.Button.UnelevatedButton.Icon 0x7f0f040f +int style Widget.MaterialComponents.CardView 0x7f0f0410 +int style Widget.MaterialComponents.CheckedTextView 0x7f0f0411 +int style Widget.MaterialComponents.Chip.Action 0x7f0f0412 +int style Widget.MaterialComponents.Chip.Choice 0x7f0f0413 +int style Widget.MaterialComponents.Chip.Entry 0x7f0f0414 +int style Widget.MaterialComponents.Chip.Filter 0x7f0f0415 +int style Widget.MaterialComponents.ChipGroup 0x7f0f0416 +int style Widget.MaterialComponents.CircularProgressIndicator 0x7f0f0417 +int style Widget.MaterialComponents.CircularProgressIndicator.ExtraSmall 0x7f0f0418 +int style Widget.MaterialComponents.CircularProgressIndicator.Medium 0x7f0f0419 +int style Widget.MaterialComponents.CircularProgressIndicator.Small 0x7f0f041a +int style Widget.MaterialComponents.CollapsingToolbar 0x7f0f041b +int style Widget.MaterialComponents.CompoundButton.CheckBox 0x7f0f041c +int style Widget.MaterialComponents.CompoundButton.RadioButton 0x7f0f041d +int style Widget.MaterialComponents.CompoundButton.Switch 0x7f0f041e +int style Widget.MaterialComponents.ExtendedFloatingActionButton 0x7f0f041f +int style Widget.MaterialComponents.ExtendedFloatingActionButton.Icon 0x7f0f0420 +int style Widget.MaterialComponents.FloatingActionButton 0x7f0f0421 +int style Widget.MaterialComponents.Light.ActionBar.Solid 0x7f0f0422 +int style Widget.MaterialComponents.LinearProgressIndicator 0x7f0f0423 +int style Widget.MaterialComponents.MaterialButtonToggleGroup 0x7f0f0424 +int style Widget.MaterialComponents.MaterialCalendar 0x7f0f0425 +int style Widget.MaterialComponents.MaterialCalendar.Day 0x7f0f0426 +int style Widget.MaterialComponents.MaterialCalendar.Day.Invalid 0x7f0f0427 +int style Widget.MaterialComponents.MaterialCalendar.Day.Selected 0x7f0f0428 +int style Widget.MaterialComponents.MaterialCalendar.Day.Today 0x7f0f0429 +int style Widget.MaterialComponents.MaterialCalendar.DayOfWeekLabel 0x7f0f042a +int style Widget.MaterialComponents.MaterialCalendar.DayTextView 0x7f0f042b +int style Widget.MaterialComponents.MaterialCalendar.Fullscreen 0x7f0f042c +int style Widget.MaterialComponents.MaterialCalendar.HeaderCancelButton 0x7f0f042d +int style Widget.MaterialComponents.MaterialCalendar.HeaderConfirmButton 0x7f0f042e +int style Widget.MaterialComponents.MaterialCalendar.HeaderDivider 0x7f0f042f +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout 0x7f0f0430 +int style Widget.MaterialComponents.MaterialCalendar.HeaderLayout.Fullscreen 0x7f0f0431 +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection 0x7f0f0432 +int style Widget.MaterialComponents.MaterialCalendar.HeaderSelection.Fullscreen 0x7f0f0433 +int style Widget.MaterialComponents.MaterialCalendar.HeaderTitle 0x7f0f0434 +int style Widget.MaterialComponents.MaterialCalendar.HeaderToggleButton 0x7f0f0435 +int style Widget.MaterialComponents.MaterialCalendar.Item 0x7f0f0436 +int style Widget.MaterialComponents.MaterialCalendar.MonthNavigationButton 0x7f0f0437 +int style Widget.MaterialComponents.MaterialCalendar.MonthTextView 0x7f0f0438 +int style Widget.MaterialComponents.MaterialCalendar.Year 0x7f0f0439 +int style Widget.MaterialComponents.MaterialCalendar.Year.Selected 0x7f0f043a +int style Widget.MaterialComponents.MaterialCalendar.Year.Today 0x7f0f043b +int style Widget.MaterialComponents.MaterialCalendar.YearNavigationButton 0x7f0f043c +int style Widget.MaterialComponents.MaterialDivider 0x7f0f043d +int style Widget.MaterialComponents.NavigationRailView 0x7f0f043e +int style Widget.MaterialComponents.NavigationRailView.Colored 0x7f0f043f +int style Widget.MaterialComponents.NavigationRailView.Colored.Compact 0x7f0f0440 +int style Widget.MaterialComponents.NavigationRailView.Compact 0x7f0f0441 +int style Widget.MaterialComponents.NavigationRailView.PrimarySurface 0x7f0f0442 +int style Widget.MaterialComponents.NavigationView 0x7f0f0443 +int style Widget.MaterialComponents.PopupMenu 0x7f0f0444 +int style Widget.MaterialComponents.PopupMenu.ContextMenu 0x7f0f0445 +int style Widget.MaterialComponents.PopupMenu.ListPopupWindow 0x7f0f0446 +int style Widget.MaterialComponents.PopupMenu.Overflow 0x7f0f0447 +int style Widget.MaterialComponents.ProgressIndicator 0x7f0f0448 +int style Widget.MaterialComponents.ShapeableImageView 0x7f0f0449 +int style Widget.MaterialComponents.Slider 0x7f0f044a +int style Widget.MaterialComponents.Snackbar 0x7f0f044b +int style Widget.MaterialComponents.Snackbar.FullWidth 0x7f0f044c +int style Widget.MaterialComponents.Snackbar.TextView 0x7f0f044d +int style Widget.MaterialComponents.TabLayout 0x7f0f044e +int style Widget.MaterialComponents.TabLayout.Colored 0x7f0f044f +int style Widget.MaterialComponents.TabLayout.PrimarySurface 0x7f0f0450 +int style Widget.MaterialComponents.TextInputEditText.FilledBox 0x7f0f0451 +int style Widget.MaterialComponents.TextInputEditText.FilledBox.Dense 0x7f0f0452 +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox 0x7f0f0453 +int style Widget.MaterialComponents.TextInputEditText.OutlinedBox.Dense 0x7f0f0454 +int style Widget.MaterialComponents.TextInputLayout.FilledBox 0x7f0f0455 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense 0x7f0f0456 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.Dense.ExposedDropdownMenu 0x7f0f0457 +int style Widget.MaterialComponents.TextInputLayout.FilledBox.ExposedDropdownMenu 0x7f0f0458 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox 0x7f0f0459 +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense 0x7f0f045a +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense.ExposedDropdownMenu 0x7f0f045b +int style Widget.MaterialComponents.TextInputLayout.OutlinedBox.ExposedDropdownMenu 0x7f0f045c +int style Widget.MaterialComponents.TextView 0x7f0f045d +int style Widget.MaterialComponents.TimePicker 0x7f0f045e +int style Widget.MaterialComponents.TimePicker.Button 0x7f0f045f +int style Widget.MaterialComponents.TimePicker.Clock 0x7f0f0460 +int style Widget.MaterialComponents.TimePicker.Display 0x7f0f0461 +int style Widget.MaterialComponents.TimePicker.Display.Divider 0x7f0f0462 +int style Widget.MaterialComponents.TimePicker.Display.HelperText 0x7f0f0463 +int style Widget.MaterialComponents.TimePicker.Display.TextInputEditText 0x7f0f0464 +int style Widget.MaterialComponents.TimePicker.Display.TextInputLayout 0x7f0f0465 +int style Widget.MaterialComponents.TimePicker.ImageButton 0x7f0f0466 +int style Widget.MaterialComponents.TimePicker.ImageButton.ShapeAppearance 0x7f0f0467 +int style Widget.MaterialComponents.Toolbar 0x7f0f0468 +int style Widget.MaterialComponents.Toolbar.Primary 0x7f0f0469 +int style Widget.MaterialComponents.Toolbar.PrimarySurface 0x7f0f046a +int style Widget.MaterialComponents.Toolbar.Surface 0x7f0f046b +int style Widget.MaterialComponents.Tooltip 0x7f0f046c +int style Widget.Support.CoordinatorLayout 0x7f0f046d +int style collectionViewTheme 0x7f0f046e +int style scrollViewScrollBars 0x7f0f046f +int style scrollViewTheme 0x7f0f0470 +int[] styleable ActionBar { 0x7f030049, 0x7f030050, 0x7f030051, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f03016c, 0x7f030183, 0x7f030184, 0x7f0301a4, 0x7f030220, 0x7f030228, 0x7f03022e, 0x7f03022f, 0x7f030233, 0x7f030244, 0x7f03025a, 0x7f0302d8, 0x7f03035c, 0x7f030395, 0x7f03039d, 0x7f03039e, 0x7f030421, 0x7f030425, 0x7f0304ad, 0x7f0304bb } +int[] styleable ActionBarLayout { 0x010100b3 } +int styleable ActionBarLayout_android_layout_gravity 0 +int styleable ActionBar_background 0 +int styleable ActionBar_backgroundSplit 1 +int styleable ActionBar_backgroundStacked 2 +int styleable ActionBar_contentInsetEnd 3 +int styleable ActionBar_contentInsetEndWithActions 4 +int styleable ActionBar_contentInsetLeft 5 +int styleable ActionBar_contentInsetRight 6 +int styleable ActionBar_contentInsetStart 7 +int styleable ActionBar_contentInsetStartWithNavigation 8 +int styleable ActionBar_customNavigationLayout 9 +int styleable ActionBar_displayOptions 10 +int styleable ActionBar_divider 11 +int styleable ActionBar_elevation 12 +int styleable ActionBar_height 13 +int styleable ActionBar_hideOnContentScroll 14 +int styleable ActionBar_homeAsUpIndicator 15 +int styleable ActionBar_homeLayout 16 +int styleable ActionBar_icon 17 +int styleable ActionBar_indeterminateProgressStyle 18 +int styleable ActionBar_itemPadding 19 +int styleable ActionBar_logo 20 +int styleable ActionBar_navigationMode 21 +int styleable ActionBar_popupTheme 22 +int styleable ActionBar_progressBarPadding 23 +int styleable ActionBar_progressBarStyle 24 +int styleable ActionBar_subtitle 25 +int styleable ActionBar_subtitleTextStyle 26 +int styleable ActionBar_title 27 +int styleable ActionBar_titleTextStyle 28 +int[] styleable ActionMenuItemView { 0x0101013f } +int styleable ActionMenuItemView_android_minWidth 0 +int[] styleable ActionMenuView { } +int[] styleable ActionMode { 0x7f030049, 0x7f030050, 0x7f0300e9, 0x7f030220, 0x7f030425, 0x7f0304bb } +int styleable ActionMode_background 0 +int styleable ActionMode_backgroundSplit 1 +int styleable ActionMode_closeItemLayout 2 +int styleable ActionMode_height 3 +int styleable ActionMode_subtitleTextStyle 4 +int styleable ActionMode_titleTextStyle 5 +int[] styleable ActivityChooserView { 0x7f0301c1, 0x7f03024a } +int styleable ActivityChooserView_expandActivityOverflowButtonDrawable 0 +int styleable ActivityChooserView_initialActivityCount 1 +int[] styleable ActivityFilter { 0x7f030028, 0x7f03002a } +int styleable ActivityFilter_activityAction 0 +int styleable ActivityFilter_activityName 1 +int[] styleable ActivityNavigator { 0x7f030002, 0x01010003, 0x7f030170, 0x7f030171, 0x7f03044e } +int styleable ActivityNavigator_action 0 +int styleable ActivityNavigator_android_name 1 +int styleable ActivityNavigator_data 2 +int styleable ActivityNavigator_dataPattern 3 +int styleable ActivityNavigator_targetPackage 4 +int[] styleable ActivityRule { 0x7f030034, 0x7f03044c } +int styleable ActivityRule_alwaysExpand 0 +int styleable ActivityRule_tag 1 +int[] styleable AlertDialog { 0x010100f2, 0x7f030095, 0x7f030098, 0x7f0302cd, 0x7f0302ce, 0x7f030357, 0x7f0303e0, 0x7f0303e8 } +int styleable AlertDialog_android_layout 0 +int styleable AlertDialog_buttonIconDimen 1 +int styleable AlertDialog_buttonPanelSideLayout 2 +int styleable AlertDialog_listItemLayout 3 +int styleable AlertDialog_listLayout 4 +int styleable AlertDialog_multiChoiceItemLayout 5 +int styleable AlertDialog_showTitle 6 +int styleable AlertDialog_singleChoiceItemLayout 7 +int[] styleable AnimatedStateListDrawableCompat { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +int styleable AnimatedStateListDrawableCompat_android_constantSize 0 +int styleable AnimatedStateListDrawableCompat_android_dither 1 +int styleable AnimatedStateListDrawableCompat_android_enterFadeDuration 2 +int styleable AnimatedStateListDrawableCompat_android_exitFadeDuration 3 +int styleable AnimatedStateListDrawableCompat_android_variablePadding 4 +int styleable AnimatedStateListDrawableCompat_android_visible 5 +int[] styleable AnimatedStateListDrawableItem { 0x01010199, 0x010100d0 } +int styleable AnimatedStateListDrawableItem_android_drawable 0 +int styleable AnimatedStateListDrawableItem_android_id 1 +int[] styleable AnimatedStateListDrawableTransition { 0x01010199, 0x0101044a, 0x0101044b, 0x01010449 } +int styleable AnimatedStateListDrawableTransition_android_drawable 0 +int styleable AnimatedStateListDrawableTransition_android_fromId 1 +int styleable AnimatedStateListDrawableTransition_android_reversible 2 +int styleable AnimatedStateListDrawableTransition_android_toId 3 +int[] styleable AppBarLayout { 0x010100d4, 0x01010540, 0x0101048f, 0x7f0301a4, 0x7f0301c2, 0x7f0302c2, 0x7f0302c3, 0x7f0302c4, 0x7f030416 } +int[] styleable AppBarLayoutStates { 0x7f03040d, 0x7f03040e, 0x7f030412, 0x7f030413 } +int styleable AppBarLayoutStates_state_collapsed 0 +int styleable AppBarLayoutStates_state_collapsible 1 +int styleable AppBarLayoutStates_state_liftable 2 +int styleable AppBarLayoutStates_state_lifted 3 +int[] styleable AppBarLayout_Layout { 0x7f0302be, 0x7f0302bf, 0x7f0302c0 } +int styleable AppBarLayout_Layout_layout_scrollEffect 0 +int styleable AppBarLayout_Layout_layout_scrollFlags 1 +int styleable AppBarLayout_Layout_layout_scrollInterpolator 2 +int styleable AppBarLayout_android_background 0 +int styleable AppBarLayout_android_keyboardNavigationCluster 1 +int styleable AppBarLayout_android_touchscreenBlocksFocus 2 +int styleable AppBarLayout_elevation 3 +int styleable AppBarLayout_expanded 4 +int styleable AppBarLayout_liftOnScroll 5 +int styleable AppBarLayout_liftOnScrollColor 6 +int styleable AppBarLayout_liftOnScrollTargetViewId 7 +int styleable AppBarLayout_statusBarForeground 8 +int[] styleable AppCompatEmojiHelper { } +int[] styleable AppCompatImageView { 0x01010119, 0x7f030401, 0x7f0304aa, 0x7f0304ab } +int styleable AppCompatImageView_android_src 0 +int styleable AppCompatImageView_srcCompat 1 +int styleable AppCompatImageView_tint 2 +int styleable AppCompatImageView_tintMode 3 +int[] styleable AppCompatSeekBar { 0x01010142, 0x7f0304a4, 0x7f0304a5, 0x7f0304a6 } +int styleable AppCompatSeekBar_android_thumb 0 +int styleable AppCompatSeekBar_tickMark 1 +int styleable AppCompatSeekBar_tickMarkTint 2 +int styleable AppCompatSeekBar_tickMarkTintMode 3 +int[] styleable AppCompatTextHelper { 0x0101016e, 0x01010393, 0x0101016f, 0x01010170, 0x01010392, 0x0101016d, 0x01010034 } +int styleable AppCompatTextHelper_android_drawableBottom 0 +int styleable AppCompatTextHelper_android_drawableEnd 1 +int styleable AppCompatTextHelper_android_drawableLeft 2 +int styleable AppCompatTextHelper_android_drawableRight 3 +int styleable AppCompatTextHelper_android_drawableStart 4 +int styleable AppCompatTextHelper_android_drawableTop 5 +int styleable AppCompatTextHelper_android_textAppearance 6 +int[] styleable AppCompatTextView { 0x01010034, 0x7f030043, 0x7f030044, 0x7f030045, 0x7f030046, 0x7f030047, 0x7f030190, 0x7f030191, 0x7f030192, 0x7f030193, 0x7f030195, 0x7f030196, 0x7f030197, 0x7f030198, 0x7f0301a8, 0x7f0301e5, 0x7f030209, 0x7f030212, 0x7f030276, 0x7f0302c6, 0x7f030452, 0x7f030489 } +int styleable AppCompatTextView_android_textAppearance 0 +int styleable AppCompatTextView_autoSizeMaxTextSize 1 +int styleable AppCompatTextView_autoSizeMinTextSize 2 +int styleable AppCompatTextView_autoSizePresetSizes 3 +int styleable AppCompatTextView_autoSizeStepGranularity 4 +int styleable AppCompatTextView_autoSizeTextType 5 +int styleable AppCompatTextView_drawableBottomCompat 6 +int styleable AppCompatTextView_drawableEndCompat 7 +int styleable AppCompatTextView_drawableLeftCompat 8 +int styleable AppCompatTextView_drawableRightCompat 9 +int styleable AppCompatTextView_drawableStartCompat 10 +int styleable AppCompatTextView_drawableTint 11 +int styleable AppCompatTextView_drawableTintMode 12 +int styleable AppCompatTextView_drawableTopCompat 13 +int styleable AppCompatTextView_emojiCompatEnabled 14 +int styleable AppCompatTextView_firstBaselineToTopHeight 15 +int styleable AppCompatTextView_fontFamily 16 +int styleable AppCompatTextView_fontVariationSettings 17 +int styleable AppCompatTextView_lastBaselineToBottomHeight 18 +int styleable AppCompatTextView_lineHeight 19 +int styleable AppCompatTextView_textAllCaps 20 +int styleable AppCompatTextView_textLocale 21 +int[] styleable AppCompatTheme { 0x7f030003, 0x7f030004, 0x7f030005, 0x7f030006, 0x7f030007, 0x7f030008, 0x7f030009, 0x7f03000a, 0x7f03000b, 0x7f03000c, 0x7f03000d, 0x7f03000e, 0x7f03000f, 0x7f030011, 0x7f030012, 0x7f030013, 0x7f030014, 0x7f030015, 0x7f030016, 0x7f030017, 0x7f030018, 0x7f030019, 0x7f03001a, 0x7f03001b, 0x7f03001c, 0x7f03001d, 0x7f03001e, 0x7f03001f, 0x7f030020, 0x7f030021, 0x7f030022, 0x7f030023, 0x7f030029, 0x7f03002c, 0x7f03002d, 0x7f03002e, 0x7f03002f, 0x010100ae, 0x01010057, 0x7f030042, 0x7f030079, 0x7f03008d, 0x7f03008e, 0x7f03008f, 0x7f030090, 0x7f030091, 0x7f030099, 0x7f03009a, 0x7f0300b4, 0x7f0300bf, 0x7f0300f7, 0x7f0300f8, 0x7f0300f9, 0x7f0300fb, 0x7f0300fc, 0x7f0300fd, 0x7f0300fe, 0x7f030117, 0x7f030119, 0x7f03012e, 0x7f03014d, 0x7f030180, 0x7f030181, 0x7f030182, 0x7f030186, 0x7f03018b, 0x7f03019e, 0x7f03019d, 0x7f0301a1, 0x7f0301a2, 0x7f0301a3, 0x7f03022e, 0x7f03023e, 0x7f0302c9, 0x7f0302ca, 0x7f0302cb, 0x7f0302cc, 0x7f0302cf, 0x7f0302d0, 0x7f0302d1, 0x7f0302d2, 0x7f0302d3, 0x7f0302d4, 0x7f0302d5, 0x7f0302d6, 0x7f0302d7, 0x7f030378, 0x7f030379, 0x7f03037a, 0x7f030394, 0x7f030396, 0x7f0303a5, 0x7f0303a7, 0x7f0303a8, 0x7f0303a9, 0x7f0303c3, 0x7f0303c6, 0x7f0303c7, 0x7f0303c8, 0x7f0303f2, 0x7f0303f3, 0x7f03042d, 0x7f030469, 0x7f03046b, 0x7f03046c, 0x7f03046d, 0x7f03046f, 0x7f030470, 0x7f030471, 0x7f030472, 0x7f03047d, 0x7f03047e, 0x7f0304be, 0x7f0304bf, 0x7f0304c1, 0x7f0304c2, 0x7f0304e6, 0x7f0304f4, 0x7f0304f5, 0x7f0304f6, 0x7f0304f7, 0x7f0304f8, 0x7f0304f9, 0x7f0304fa, 0x7f0304fb, 0x7f0304fc, 0x7f0304fd } +int styleable AppCompatTheme_actionBarDivider 0 +int styleable AppCompatTheme_actionBarItemBackground 1 +int styleable AppCompatTheme_actionBarPopupTheme 2 +int styleable AppCompatTheme_actionBarSize 3 +int styleable AppCompatTheme_actionBarSplitStyle 4 +int styleable AppCompatTheme_actionBarStyle 5 +int styleable AppCompatTheme_actionBarTabBarStyle 6 +int styleable AppCompatTheme_actionBarTabStyle 7 +int styleable AppCompatTheme_actionBarTabTextStyle 8 +int styleable AppCompatTheme_actionBarTheme 9 +int styleable AppCompatTheme_actionBarWidgetTheme 10 +int styleable AppCompatTheme_actionButtonStyle 11 +int styleable AppCompatTheme_actionDropDownStyle 12 +int styleable AppCompatTheme_actionMenuTextAppearance 13 +int styleable AppCompatTheme_actionMenuTextColor 14 +int styleable AppCompatTheme_actionModeBackground 15 +int styleable AppCompatTheme_actionModeCloseButtonStyle 16 +int styleable AppCompatTheme_actionModeCloseContentDescription 17 +int styleable AppCompatTheme_actionModeCloseDrawable 18 +int styleable AppCompatTheme_actionModeCopyDrawable 19 +int styleable AppCompatTheme_actionModeCutDrawable 20 +int styleable AppCompatTheme_actionModeFindDrawable 21 +int styleable AppCompatTheme_actionModePasteDrawable 22 +int styleable AppCompatTheme_actionModePopupWindowStyle 23 +int styleable AppCompatTheme_actionModeSelectAllDrawable 24 +int styleable AppCompatTheme_actionModeShareDrawable 25 +int styleable AppCompatTheme_actionModeSplitBackground 26 +int styleable AppCompatTheme_actionModeStyle 27 +int styleable AppCompatTheme_actionModeTheme 28 +int styleable AppCompatTheme_actionModeWebSearchDrawable 29 +int styleable AppCompatTheme_actionOverflowButtonStyle 30 +int styleable AppCompatTheme_actionOverflowMenuStyle 31 +int styleable AppCompatTheme_activityChooserViewStyle 32 +int styleable AppCompatTheme_alertDialogButtonGroupStyle 33 +int styleable AppCompatTheme_alertDialogCenterButtons 34 +int styleable AppCompatTheme_alertDialogStyle 35 +int styleable AppCompatTheme_alertDialogTheme 36 +int styleable AppCompatTheme_android_windowAnimationStyle 37 +int styleable AppCompatTheme_android_windowIsFloating 38 +int styleable AppCompatTheme_autoCompleteTextViewStyle 39 +int styleable AppCompatTheme_borderlessButtonStyle 40 +int styleable AppCompatTheme_buttonBarButtonStyle 41 +int styleable AppCompatTheme_buttonBarNegativeButtonStyle 42 +int styleable AppCompatTheme_buttonBarNeutralButtonStyle 43 +int styleable AppCompatTheme_buttonBarPositiveButtonStyle 44 +int styleable AppCompatTheme_buttonBarStyle 45 +int styleable AppCompatTheme_buttonStyle 46 +int styleable AppCompatTheme_buttonStyleSmall 47 +int styleable AppCompatTheme_checkboxStyle 48 +int styleable AppCompatTheme_checkedTextViewStyle 49 +int styleable AppCompatTheme_colorAccent 50 +int styleable AppCompatTheme_colorBackgroundFloating 51 +int styleable AppCompatTheme_colorButtonNormal 52 +int styleable AppCompatTheme_colorControlActivated 53 +int styleable AppCompatTheme_colorControlHighlight 54 +int styleable AppCompatTheme_colorControlNormal 55 +int styleable AppCompatTheme_colorError 56 +int styleable AppCompatTheme_colorPrimary 57 +int styleable AppCompatTheme_colorPrimaryDark 58 +int styleable AppCompatTheme_colorSwitchThumbNormal 59 +int styleable AppCompatTheme_controlBackground 60 +int styleable AppCompatTheme_dialogCornerRadius 61 +int styleable AppCompatTheme_dialogPreferredPadding 62 +int styleable AppCompatTheme_dialogTheme 63 +int styleable AppCompatTheme_dividerHorizontal 64 +int styleable AppCompatTheme_dividerVertical 65 +int styleable AppCompatTheme_dropDownListViewStyle 67 +int styleable AppCompatTheme_dropdownListPreferredItemHeight 66 +int styleable AppCompatTheme_editTextBackground 68 +int styleable AppCompatTheme_editTextColor 69 +int styleable AppCompatTheme_editTextStyle 70 +int styleable AppCompatTheme_homeAsUpIndicator 71 +int styleable AppCompatTheme_imageButtonStyle 72 +int styleable AppCompatTheme_listChoiceBackgroundIndicator 73 +int styleable AppCompatTheme_listChoiceIndicatorMultipleAnimated 74 +int styleable AppCompatTheme_listChoiceIndicatorSingleAnimated 75 +int styleable AppCompatTheme_listDividerAlertDialog 76 +int styleable AppCompatTheme_listMenuViewStyle 77 +int styleable AppCompatTheme_listPopupWindowStyle 78 +int styleable AppCompatTheme_listPreferredItemHeight 79 +int styleable AppCompatTheme_listPreferredItemHeightLarge 80 +int styleable AppCompatTheme_listPreferredItemHeightSmall 81 +int styleable AppCompatTheme_listPreferredItemPaddingEnd 82 +int styleable AppCompatTheme_listPreferredItemPaddingLeft 83 +int styleable AppCompatTheme_listPreferredItemPaddingRight 84 +int styleable AppCompatTheme_listPreferredItemPaddingStart 85 +int styleable AppCompatTheme_panelBackground 86 +int styleable AppCompatTheme_panelMenuListTheme 87 +int styleable AppCompatTheme_panelMenuListWidth 88 +int styleable AppCompatTheme_popupMenuStyle 89 +int styleable AppCompatTheme_popupWindowStyle 90 +int styleable AppCompatTheme_radioButtonStyle 91 +int styleable AppCompatTheme_ratingBarStyle 92 +int styleable AppCompatTheme_ratingBarStyleIndicator 93 +int styleable AppCompatTheme_ratingBarStyleSmall 94 +int styleable AppCompatTheme_searchViewStyle 95 +int styleable AppCompatTheme_seekBarStyle 96 +int styleable AppCompatTheme_selectableItemBackground 97 +int styleable AppCompatTheme_selectableItemBackgroundBorderless 98 +int styleable AppCompatTheme_spinnerDropDownItemStyle 99 +int styleable AppCompatTheme_spinnerStyle 100 +int styleable AppCompatTheme_switchStyle 101 +int styleable AppCompatTheme_textAppearanceLargePopupMenu 102 +int styleable AppCompatTheme_textAppearanceListItem 103 +int styleable AppCompatTheme_textAppearanceListItemSecondary 104 +int styleable AppCompatTheme_textAppearanceListItemSmall 105 +int styleable AppCompatTheme_textAppearancePopupMenuHeader 106 +int styleable AppCompatTheme_textAppearanceSearchResultSubtitle 107 +int styleable AppCompatTheme_textAppearanceSearchResultTitle 108 +int styleable AppCompatTheme_textAppearanceSmallPopupMenu 109 +int styleable AppCompatTheme_textColorAlertDialogListItem 110 +int styleable AppCompatTheme_textColorSearchUrl 111 +int styleable AppCompatTheme_toolbarNavigationButtonStyle 112 +int styleable AppCompatTheme_toolbarStyle 113 +int styleable AppCompatTheme_tooltipForegroundColor 114 +int styleable AppCompatTheme_tooltipFrameBackground 115 +int styleable AppCompatTheme_viewInflaterClass 116 +int styleable AppCompatTheme_windowActionBar 117 +int styleable AppCompatTheme_windowActionBarOverlay 118 +int styleable AppCompatTheme_windowActionModeOverlay 119 +int styleable AppCompatTheme_windowFixedHeightMajor 120 +int styleable AppCompatTheme_windowFixedHeightMinor 121 +int styleable AppCompatTheme_windowFixedWidthMajor 122 +int styleable AppCompatTheme_windowFixedWidthMinor 123 +int styleable AppCompatTheme_windowMinWidthMajor 124 +int styleable AppCompatTheme_windowMinWidthMinor 125 +int styleable AppCompatTheme_windowNoTitle 126 +int[] styleable Badge { 0x7f030040, 0x7f03004a, 0x7f030054, 0x7f030055, 0x7f030056, 0x7f030057, 0x7f030058, 0x7f03005a, 0x7f03005b, 0x7f03005c, 0x7f03005d, 0x7f03005e, 0x7f03005f, 0x7f030060, 0x7f030061, 0x7f030062, 0x7f030063, 0x7f030064, 0x7f030230, 0x7f030231, 0x7f030275, 0x7f030311, 0x7f030315, 0x7f030363, 0x7f030365, 0x7f0304e4, 0x7f0304e5 } +int styleable Badge_autoAdjustToWithinGrandparentBounds 0 +int styleable Badge_backgroundColor 1 +int styleable Badge_badgeGravity 2 +int styleable Badge_badgeHeight 3 +int styleable Badge_badgeRadius 4 +int styleable Badge_badgeShapeAppearance 5 +int styleable Badge_badgeShapeAppearanceOverlay 6 +int styleable Badge_badgeText 7 +int styleable Badge_badgeTextAppearance 8 +int styleable Badge_badgeTextColor 9 +int styleable Badge_badgeVerticalPadding 10 +int styleable Badge_badgeWidePadding 11 +int styleable Badge_badgeWidth 12 +int styleable Badge_badgeWithTextHeight 13 +int styleable Badge_badgeWithTextRadius 14 +int styleable Badge_badgeWithTextShapeAppearance 15 +int styleable Badge_badgeWithTextShapeAppearanceOverlay 16 +int styleable Badge_badgeWithTextWidth 17 +int styleable Badge_horizontalOffset 18 +int styleable Badge_horizontalOffsetWithText 19 +int styleable Badge_largeFontVerticalOffsetAdjustment 20 +int styleable Badge_maxCharacterCount 21 +int styleable Badge_maxNumber 22 +int styleable Badge_number 23 +int styleable Badge_offsetAlignmentMode 24 +int styleable Badge_verticalOffset 25 +int styleable Badge_verticalOffsetWithText 26 +int[] styleable BaseProgressIndicator { 0x01010139, 0x7f030225, 0x7f030245, 0x7f03031f, 0x7f0303d9, 0x7f0303db, 0x7f0304ca, 0x7f0304cd, 0x7f0304d2 } +int styleable BaseProgressIndicator_android_indeterminate 0 +int styleable BaseProgressIndicator_hideAnimationBehavior 1 +int styleable BaseProgressIndicator_indicatorColor 2 +int styleable BaseProgressIndicator_minHideDelay 3 +int styleable BaseProgressIndicator_showAnimationBehavior 4 +int styleable BaseProgressIndicator_showDelay 5 +int styleable BaseProgressIndicator_trackColor 6 +int styleable BaseProgressIndicator_trackCornerRadius 7 +int styleable BaseProgressIndicator_trackThickness 8 +int[] styleable BottomAppBar { 0x7f03002b, 0x7f030052, 0x7f0301a4, 0x7f0301d4, 0x7f0301d5, 0x7f0301d6, 0x7f0301d7, 0x7f0301d8, 0x7f0301d9, 0x7f0301da, 0x7f030229, 0x7f03031a, 0x7f03035b, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f0303b3 } +int styleable BottomAppBar_addElevationShadow 0 +int styleable BottomAppBar_backgroundTint 1 +int styleable BottomAppBar_elevation 2 +int styleable BottomAppBar_fabAlignmentMode 3 +int styleable BottomAppBar_fabAlignmentModeEndMargin 4 +int styleable BottomAppBar_fabAnchorMode 5 +int styleable BottomAppBar_fabAnimationMode 6 +int styleable BottomAppBar_fabCradleMargin 7 +int styleable BottomAppBar_fabCradleRoundedCornerRadius 8 +int styleable BottomAppBar_fabCradleVerticalOffset 9 +int styleable BottomAppBar_hideOnScroll 10 +int styleable BottomAppBar_menuAlignmentMode 11 +int styleable BottomAppBar_navigationIconTint 12 +int styleable BottomAppBar_paddingBottomSystemWindowInsets 13 +int styleable BottomAppBar_paddingLeftSystemWindowInsets 14 +int styleable BottomAppBar_paddingRightSystemWindowInsets 15 +int styleable BottomAppBar_removeEmbeddedFabElevation 16 +int[] styleable BottomNavigationView { 0x01010140, 0x7f030134, 0x7f030254, 0x7f0303cc, 0x7f0303d4 } +int styleable BottomNavigationView_android_minHeight 0 +int styleable BottomNavigationView_compatShadowEnabled 1 +int styleable BottomNavigationView_itemHorizontalTranslationEnabled 2 +int styleable BottomNavigationView_shapeAppearance 3 +int styleable BottomNavigationView_shapeAppearanceOverlay 4 +int[] styleable BottomSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030052, 0x7f03006b, 0x7f03006c, 0x7f03006d, 0x7f03006e, 0x7f03006f, 0x7f030071, 0x7f030072, 0x7f030073, 0x7f030074, 0x7f030219, 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f030377, 0x7f0303cc, 0x7f0303d4, 0x7f0303d8 } +int styleable BottomSheetBehavior_Layout_android_elevation 0 +int styleable BottomSheetBehavior_Layout_android_maxHeight 1 +int styleable BottomSheetBehavior_Layout_android_maxWidth 2 +int styleable BottomSheetBehavior_Layout_backgroundTint 3 +int styleable BottomSheetBehavior_Layout_behavior_draggable 4 +int styleable BottomSheetBehavior_Layout_behavior_expandedOffset 5 +int styleable BottomSheetBehavior_Layout_behavior_fitToContents 6 +int styleable BottomSheetBehavior_Layout_behavior_halfExpandedRatio 7 +int styleable BottomSheetBehavior_Layout_behavior_hideable 8 +int styleable BottomSheetBehavior_Layout_behavior_peekHeight 9 +int styleable BottomSheetBehavior_Layout_behavior_saveFlags 10 +int styleable BottomSheetBehavior_Layout_behavior_significantVelocityThreshold 11 +int styleable BottomSheetBehavior_Layout_behavior_skipCollapsed 12 +int styleable BottomSheetBehavior_Layout_gestureInsetBottomIgnored 13 +int styleable BottomSheetBehavior_Layout_marginLeftSystemWindowInsets 14 +int styleable BottomSheetBehavior_Layout_marginRightSystemWindowInsets 15 +int styleable BottomSheetBehavior_Layout_marginTopSystemWindowInsets 16 +int styleable BottomSheetBehavior_Layout_paddingBottomSystemWindowInsets 17 +int styleable BottomSheetBehavior_Layout_paddingLeftSystemWindowInsets 18 +int styleable BottomSheetBehavior_Layout_paddingRightSystemWindowInsets 19 +int styleable BottomSheetBehavior_Layout_paddingTopSystemWindowInsets 20 +int styleable BottomSheetBehavior_Layout_shapeAppearance 21 +int styleable BottomSheetBehavior_Layout_shapeAppearanceOverlay 22 +int styleable BottomSheetBehavior_Layout_shouldRemoveExpandedCorners 23 +int[] styleable ButtonBarLayout { 0x7f030030 } +int styleable ButtonBarLayout_allowStacking 0 +int[] styleable Capability { 0x7f0303a4, 0x7f0303d7 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable CardView { 0x01010140, 0x0101013f, 0x7f03009d, 0x7f03009e, 0x7f03009f, 0x7f0300a1, 0x7f0300a2, 0x7f0300a3, 0x7f030144, 0x7f030145, 0x7f030147, 0x7f030148, 0x7f03014a } +int styleable CardView_android_minHeight 0 +int styleable CardView_android_minWidth 1 +int styleable CardView_cardBackgroundColor 2 +int styleable CardView_cardCornerRadius 3 +int styleable CardView_cardElevation 4 +int styleable CardView_cardMaxElevation 5 +int styleable CardView_cardPreventCornerOverlap 6 +int styleable CardView_cardUseCompatPadding 7 +int styleable CardView_contentPadding 8 +int styleable CardView_contentPaddingBottom 9 +int styleable CardView_contentPaddingLeft 10 +int styleable CardView_contentPaddingRight 11 +int styleable CardView_contentPaddingTop 12 +int[] styleable Carousel { 0x7f0300a5, 0x7f0300a6, 0x7f0300a7, 0x7f0300a8, 0x7f0300a9, 0x7f0300aa, 0x7f0300ab, 0x7f0300ac, 0x7f0300ad, 0x7f0300ae } +int styleable Carousel_carousel_backwardTransition 0 +int styleable Carousel_carousel_emptyViewsBehavior 1 +int styleable Carousel_carousel_firstView 2 +int styleable Carousel_carousel_forwardTransition 3 +int styleable Carousel_carousel_infinite 4 +int styleable Carousel_carousel_nextState 5 +int styleable Carousel_carousel_previousState 6 +int styleable Carousel_carousel_touchUpMode 7 +int styleable Carousel_carousel_touchUp_dampeningFactor 8 +int styleable Carousel_carousel_touchUp_velocityThreshold 9 +int[] styleable CheckedTextView { 0x01010108, 0x7f0300b1, 0x7f0300b2, 0x7f0300b3 } +int styleable CheckedTextView_android_checkMark 0 +int styleable CheckedTextView_checkMarkCompat 1 +int styleable CheckedTextView_checkMarkTint 2 +int styleable CheckedTextView_checkMarkTintMode 3 +int[] styleable Chip { 0x010101e5, 0x010100ab, 0x0101011f, 0x0101014f, 0x01010034, 0x01010098, 0x01010095, 0x7f0300b7, 0x7f0300b8, 0x7f0300bc, 0x7f0300bd, 0x7f0300c0, 0x7f0300c1, 0x7f0300c2, 0x7f0300c4, 0x7f0300c5, 0x7f0300c6, 0x7f0300c7, 0x7f0300c8, 0x7f0300c9, 0x7f0300ca, 0x7f0300cf, 0x7f0300d0, 0x7f0300d1, 0x7f0300d3, 0x7f0300e2, 0x7f0300e3, 0x7f0300e4, 0x7f0300e5, 0x7f0300e6, 0x7f0300e7, 0x7f0300e8, 0x7f0301b4, 0x7f030226, 0x7f030234, 0x7f030238, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f0303dd, 0x7f03047f, 0x7f03048e } +int[] styleable ChipGroup { 0x7f0300b6, 0x7f0300cb, 0x7f0300cc, 0x7f0300cd, 0x7f0303c9, 0x7f0303e9, 0x7f0303ea } +int styleable ChipGroup_checkedChip 0 +int styleable ChipGroup_chipSpacing 1 +int styleable ChipGroup_chipSpacingHorizontal 2 +int styleable ChipGroup_chipSpacingVertical 3 +int styleable ChipGroup_selectionRequired 4 +int styleable ChipGroup_singleLine 5 +int styleable ChipGroup_singleSelection 6 +int styleable Chip_android_checkable 0 +int styleable Chip_android_ellipsize 1 +int styleable Chip_android_maxWidth 2 +int styleable Chip_android_text 3 +int styleable Chip_android_textAppearance 4 +int styleable Chip_android_textColor 5 +int styleable Chip_android_textSize 6 +int styleable Chip_checkedIcon 7 +int styleable Chip_checkedIconEnabled 8 +int styleable Chip_checkedIconTint 9 +int styleable Chip_checkedIconVisible 10 +int styleable Chip_chipBackgroundColor 11 +int styleable Chip_chipCornerRadius 12 +int styleable Chip_chipEndPadding 13 +int styleable Chip_chipIcon 14 +int styleable Chip_chipIconEnabled 15 +int styleable Chip_chipIconSize 16 +int styleable Chip_chipIconTint 17 +int styleable Chip_chipIconVisible 18 +int styleable Chip_chipMinHeight 19 +int styleable Chip_chipMinTouchTargetSize 20 +int styleable Chip_chipStartPadding 21 +int styleable Chip_chipStrokeColor 22 +int styleable Chip_chipStrokeWidth 23 +int styleable Chip_chipSurfaceColor 24 +int styleable Chip_closeIcon 25 +int styleable Chip_closeIconEnabled 26 +int styleable Chip_closeIconEndPadding 27 +int styleable Chip_closeIconSize 28 +int styleable Chip_closeIconStartPadding 29 +int styleable Chip_closeIconTint 30 +int styleable Chip_closeIconVisible 31 +int styleable Chip_ensureMinTouchTargetSize 32 +int styleable Chip_hideMotionSpec 33 +int styleable Chip_iconEndPadding 34 +int styleable Chip_iconStartPadding 35 +int styleable Chip_rippleColor 36 +int styleable Chip_shapeAppearance 37 +int styleable Chip_shapeAppearanceOverlay 38 +int styleable Chip_showMotionSpec 39 +int styleable Chip_textEndPadding 40 +int styleable Chip_textStartPadding 41 +int[] styleable CircularProgressIndicator { 0x7f030246, 0x7f030248, 0x7f030249 } +int styleable CircularProgressIndicator_indicatorDirectionCircular 0 +int styleable CircularProgressIndicator_indicatorInset 1 +int styleable CircularProgressIndicator_indicatorSize 2 +int[] styleable ClockFaceView { 0x7f0300de, 0x7f0300e1 } +int styleable ClockFaceView_clockFaceBackgroundColor 0 +int styleable ClockFaceView_clockNumberTextColor 1 +int[] styleable ClockHandView { 0x7f0300df, 0x7f0302fc, 0x7f0303ca } +int styleable ClockHandView_clockHandColor 0 +int styleable ClockHandView_materialCircleRadius 1 +int styleable ClockHandView_selectorSize 2 +int[] styleable CollapsingToolbarLayout { 0x7f0300ed, 0x7f0300ee, 0x7f0300ef, 0x7f03014b, 0x7f0301c4, 0x7f0301c5, 0x7f0301c6, 0x7f0301c7, 0x7f0301c8, 0x7f0301c9, 0x7f0301ca, 0x7f0301cb, 0x7f0301d3, 0x7f030214, 0x7f030314, 0x7f0303bd, 0x7f0303bf, 0x7f030417, 0x7f0304ad, 0x7f0304af, 0x7f0304b0, 0x7f0304b7, 0x7f0304ba, 0x7f0304bd } +int[] styleable CollapsingToolbarLayout_Layout { 0x7f030280, 0x7f030281 } +int styleable CollapsingToolbarLayout_Layout_layout_collapseMode 0 +int styleable CollapsingToolbarLayout_Layout_layout_collapseParallaxMultiplier 1 +int styleable CollapsingToolbarLayout_collapsedTitleGravity 0 +int styleable CollapsingToolbarLayout_collapsedTitleTextAppearance 1 +int styleable CollapsingToolbarLayout_collapsedTitleTextColor 2 +int styleable CollapsingToolbarLayout_contentScrim 3 +int styleable CollapsingToolbarLayout_expandedTitleGravity 4 +int styleable CollapsingToolbarLayout_expandedTitleMargin 5 +int styleable CollapsingToolbarLayout_expandedTitleMarginBottom 6 +int styleable CollapsingToolbarLayout_expandedTitleMarginEnd 7 +int styleable CollapsingToolbarLayout_expandedTitleMarginStart 8 +int styleable CollapsingToolbarLayout_expandedTitleMarginTop 9 +int styleable CollapsingToolbarLayout_expandedTitleTextAppearance 10 +int styleable CollapsingToolbarLayout_expandedTitleTextColor 11 +int styleable CollapsingToolbarLayout_extraMultilineHeightEnabled 12 +int styleable CollapsingToolbarLayout_forceApplySystemWindowInsetTop 13 +int styleable CollapsingToolbarLayout_maxLines 14 +int styleable CollapsingToolbarLayout_scrimAnimationDuration 15 +int styleable CollapsingToolbarLayout_scrimVisibleHeightTrigger 16 +int styleable CollapsingToolbarLayout_statusBarScrim 17 +int styleable CollapsingToolbarLayout_title 18 +int styleable CollapsingToolbarLayout_titleCollapseMode 19 +int styleable CollapsingToolbarLayout_titleEnabled 20 +int styleable CollapsingToolbarLayout_titlePositionInterpolator 21 +int styleable CollapsingToolbarLayout_titleTextEllipsize 22 +int styleable CollapsingToolbarLayout_toolbarId 23 +int[] styleable ColorStateListItem { 0x7f030031, 0x0101031f, 0x010101a5, 0x01010647, 0x7f030271 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable CompoundButton { 0x01010107, 0x7f030092, 0x7f03009b, 0x7f03009c } +int styleable CompoundButton_android_button 0 +int styleable CompoundButton_buttonCompat 1 +int styleable CompoundButton_buttonTint 2 +int styleable CompoundButton_buttonTintMode 3 +int[] styleable Constraint { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03013a, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9, 0x7f0304eb } +int[] styleable ConstraintLayout_Layout { 0x01010440, 0x010100f5, 0x010100f6, 0x010100fa, 0x010103b6, 0x0101053b, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x0101053c, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010100d5, 0x010100d9, 0x010103b4, 0x010100d6, 0x010100d8, 0x010103b3, 0x010100d7, 0x010100dc, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f0300d6, 0x7f0300d7, 0x7f0300d8, 0x7f0300d9, 0x7f0300da, 0x7f030136, 0x7f030139, 0x7f03013a, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f03027a, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302bd, 0x7f0302c1 } +int styleable ConstraintLayout_Layout_android_elevation 0 +int styleable ConstraintLayout_Layout_android_layout_height 1 +int styleable ConstraintLayout_Layout_android_layout_margin 2 +int styleable ConstraintLayout_Layout_android_layout_marginBottom 3 +int styleable ConstraintLayout_Layout_android_layout_marginEnd 4 +int styleable ConstraintLayout_Layout_android_layout_marginHorizontal 5 +int styleable ConstraintLayout_Layout_android_layout_marginLeft 6 +int styleable ConstraintLayout_Layout_android_layout_marginRight 7 +int styleable ConstraintLayout_Layout_android_layout_marginStart 8 +int styleable ConstraintLayout_Layout_android_layout_marginTop 9 +int styleable ConstraintLayout_Layout_android_layout_marginVertical 10 +int styleable ConstraintLayout_Layout_android_layout_width 11 +int styleable ConstraintLayout_Layout_android_maxHeight 12 +int styleable ConstraintLayout_Layout_android_maxWidth 13 +int styleable ConstraintLayout_Layout_android_minHeight 14 +int styleable ConstraintLayout_Layout_android_minWidth 15 +int styleable ConstraintLayout_Layout_android_orientation 16 +int styleable ConstraintLayout_Layout_android_padding 17 +int styleable ConstraintLayout_Layout_android_paddingBottom 18 +int styleable ConstraintLayout_Layout_android_paddingEnd 19 +int styleable ConstraintLayout_Layout_android_paddingLeft 20 +int styleable ConstraintLayout_Layout_android_paddingRight 21 +int styleable ConstraintLayout_Layout_android_paddingStart 22 +int styleable ConstraintLayout_Layout_android_paddingTop 23 +int styleable ConstraintLayout_Layout_android_visibility 24 +int styleable ConstraintLayout_Layout_barrierAllowsGoneWidgets 25 +int styleable ConstraintLayout_Layout_barrierDirection 26 +int styleable ConstraintLayout_Layout_barrierMargin 27 +int styleable ConstraintLayout_Layout_chainUseRtl 28 +int styleable ConstraintLayout_Layout_circularflow_angles 29 +int styleable ConstraintLayout_Layout_circularflow_defaultAngle 30 +int styleable ConstraintLayout_Layout_circularflow_defaultRadius 31 +int styleable ConstraintLayout_Layout_circularflow_radiusInDP 32 +int styleable ConstraintLayout_Layout_circularflow_viewCenter 33 +int styleable ConstraintLayout_Layout_constraintSet 34 +int styleable ConstraintLayout_Layout_constraint_referenced_ids 35 +int styleable ConstraintLayout_Layout_constraint_referenced_tags 36 +int styleable ConstraintLayout_Layout_flow_firstHorizontalBias 37 +int styleable ConstraintLayout_Layout_flow_firstHorizontalStyle 38 +int styleable ConstraintLayout_Layout_flow_firstVerticalBias 39 +int styleable ConstraintLayout_Layout_flow_firstVerticalStyle 40 +int styleable ConstraintLayout_Layout_flow_horizontalAlign 41 +int styleable ConstraintLayout_Layout_flow_horizontalBias 42 +int styleable ConstraintLayout_Layout_flow_horizontalGap 43 +int styleable ConstraintLayout_Layout_flow_horizontalStyle 44 +int styleable ConstraintLayout_Layout_flow_lastHorizontalBias 45 +int styleable ConstraintLayout_Layout_flow_lastHorizontalStyle 46 +int styleable ConstraintLayout_Layout_flow_lastVerticalBias 47 +int styleable ConstraintLayout_Layout_flow_lastVerticalStyle 48 +int styleable ConstraintLayout_Layout_flow_maxElementsWrap 49 +int styleable ConstraintLayout_Layout_flow_verticalAlign 50 +int styleable ConstraintLayout_Layout_flow_verticalBias 51 +int styleable ConstraintLayout_Layout_flow_verticalGap 52 +int styleable ConstraintLayout_Layout_flow_verticalStyle 53 +int styleable ConstraintLayout_Layout_flow_wrapMode 54 +int styleable ConstraintLayout_Layout_guidelineUseRtl 55 +int styleable ConstraintLayout_Layout_layoutDescription 56 +int styleable ConstraintLayout_Layout_layout_constrainedHeight 57 +int styleable ConstraintLayout_Layout_layout_constrainedWidth 58 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_creator 59 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBaselineOf 60 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toBottomOf 61 +int styleable ConstraintLayout_Layout_layout_constraintBaseline_toTopOf 62 +int styleable ConstraintLayout_Layout_layout_constraintBottom_creator 63 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toBottomOf 64 +int styleable ConstraintLayout_Layout_layout_constraintBottom_toTopOf 65 +int styleable ConstraintLayout_Layout_layout_constraintCircle 66 +int styleable ConstraintLayout_Layout_layout_constraintCircleAngle 67 +int styleable ConstraintLayout_Layout_layout_constraintCircleRadius 68 +int styleable ConstraintLayout_Layout_layout_constraintDimensionRatio 69 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toEndOf 70 +int styleable ConstraintLayout_Layout_layout_constraintEnd_toStartOf 71 +int styleable ConstraintLayout_Layout_layout_constraintGuide_begin 72 +int styleable ConstraintLayout_Layout_layout_constraintGuide_end 73 +int styleable ConstraintLayout_Layout_layout_constraintGuide_percent 74 +int styleable ConstraintLayout_Layout_layout_constraintHeight 75 +int styleable ConstraintLayout_Layout_layout_constraintHeight_default 76 +int styleable ConstraintLayout_Layout_layout_constraintHeight_max 77 +int styleable ConstraintLayout_Layout_layout_constraintHeight_min 78 +int styleable ConstraintLayout_Layout_layout_constraintHeight_percent 79 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_bias 80 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_chainStyle 81 +int styleable ConstraintLayout_Layout_layout_constraintHorizontal_weight 82 +int styleable ConstraintLayout_Layout_layout_constraintLeft_creator 83 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toLeftOf 84 +int styleable ConstraintLayout_Layout_layout_constraintLeft_toRightOf 85 +int styleable ConstraintLayout_Layout_layout_constraintRight_creator 86 +int styleable ConstraintLayout_Layout_layout_constraintRight_toLeftOf 87 +int styleable ConstraintLayout_Layout_layout_constraintRight_toRightOf 88 +int styleable ConstraintLayout_Layout_layout_constraintStart_toEndOf 89 +int styleable ConstraintLayout_Layout_layout_constraintStart_toStartOf 90 +int styleable ConstraintLayout_Layout_layout_constraintTag 91 +int styleable ConstraintLayout_Layout_layout_constraintTop_creator 92 +int styleable ConstraintLayout_Layout_layout_constraintTop_toBottomOf 93 +int styleable ConstraintLayout_Layout_layout_constraintTop_toTopOf 94 +int styleable ConstraintLayout_Layout_layout_constraintVertical_bias 95 +int styleable ConstraintLayout_Layout_layout_constraintVertical_chainStyle 96 +int styleable ConstraintLayout_Layout_layout_constraintVertical_weight 97 +int styleable ConstraintLayout_Layout_layout_constraintWidth 98 +int styleable ConstraintLayout_Layout_layout_constraintWidth_default 99 +int styleable ConstraintLayout_Layout_layout_constraintWidth_max 100 +int styleable ConstraintLayout_Layout_layout_constraintWidth_min 101 +int styleable ConstraintLayout_Layout_layout_constraintWidth_percent 102 +int styleable ConstraintLayout_Layout_layout_editor_absoluteX 103 +int styleable ConstraintLayout_Layout_layout_editor_absoluteY 104 +int styleable ConstraintLayout_Layout_layout_goneMarginBaseline 105 +int styleable ConstraintLayout_Layout_layout_goneMarginBottom 106 +int styleable ConstraintLayout_Layout_layout_goneMarginEnd 107 +int styleable ConstraintLayout_Layout_layout_goneMarginLeft 108 +int styleable ConstraintLayout_Layout_layout_goneMarginRight 109 +int styleable ConstraintLayout_Layout_layout_goneMarginStart 110 +int styleable ConstraintLayout_Layout_layout_goneMarginTop 111 +int styleable ConstraintLayout_Layout_layout_marginBaseline 112 +int styleable ConstraintLayout_Layout_layout_optimizationLevel 113 +int styleable ConstraintLayout_Layout_layout_wrapBehaviorInParent 114 +int[] styleable ConstraintLayout_ReactiveGuide { 0x7f0303aa, 0x7f0303ab, 0x7f0303ac, 0x7f0303ad } +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_animateChange 0 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToAllConstraintSets 1 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_applyToConstraintSet 2 +int styleable ConstraintLayout_ReactiveGuide_reactiveGuide_valueId 3 +int[] styleable ConstraintLayout_placeholder { 0x7f03013c, 0x7f03038c } +int styleable ConstraintLayout_placeholder_content 0 +int styleable ConstraintLayout_placeholder_placeholder_emptyVisibility 1 +int[] styleable ConstraintOverride { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030288, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029f, 0x7f0302a4, 0x7f0302a5, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030353, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9, 0x7f0304eb } +int styleable ConstraintOverride_android_alpha 0 +int styleable ConstraintOverride_android_elevation 1 +int styleable ConstraintOverride_android_id 2 +int styleable ConstraintOverride_android_layout_height 3 +int styleable ConstraintOverride_android_layout_marginBottom 4 +int styleable ConstraintOverride_android_layout_marginEnd 5 +int styleable ConstraintOverride_android_layout_marginLeft 6 +int styleable ConstraintOverride_android_layout_marginRight 7 +int styleable ConstraintOverride_android_layout_marginStart 8 +int styleable ConstraintOverride_android_layout_marginTop 9 +int styleable ConstraintOverride_android_layout_width 10 +int styleable ConstraintOverride_android_maxHeight 11 +int styleable ConstraintOverride_android_maxWidth 12 +int styleable ConstraintOverride_android_minHeight 13 +int styleable ConstraintOverride_android_minWidth 14 +int styleable ConstraintOverride_android_orientation 15 +int styleable ConstraintOverride_android_rotation 16 +int styleable ConstraintOverride_android_rotationX 17 +int styleable ConstraintOverride_android_rotationY 18 +int styleable ConstraintOverride_android_scaleX 19 +int styleable ConstraintOverride_android_scaleY 20 +int styleable ConstraintOverride_android_transformPivotX 21 +int styleable ConstraintOverride_android_transformPivotY 22 +int styleable ConstraintOverride_android_translationX 23 +int styleable ConstraintOverride_android_translationY 24 +int styleable ConstraintOverride_android_translationZ 25 +int styleable ConstraintOverride_android_visibility 26 +int styleable ConstraintOverride_animateCircleAngleTo 27 +int styleable ConstraintOverride_animateRelativeTo 28 +int styleable ConstraintOverride_barrierAllowsGoneWidgets 29 +int styleable ConstraintOverride_barrierDirection 30 +int styleable ConstraintOverride_barrierMargin 31 +int styleable ConstraintOverride_chainUseRtl 32 +int styleable ConstraintOverride_constraint_referenced_ids 33 +int styleable ConstraintOverride_drawPath 34 +int styleable ConstraintOverride_flow_firstHorizontalBias 35 +int styleable ConstraintOverride_flow_firstHorizontalStyle 36 +int styleable ConstraintOverride_flow_firstVerticalBias 37 +int styleable ConstraintOverride_flow_firstVerticalStyle 38 +int styleable ConstraintOverride_flow_horizontalAlign 39 +int styleable ConstraintOverride_flow_horizontalBias 40 +int styleable ConstraintOverride_flow_horizontalGap 41 +int styleable ConstraintOverride_flow_horizontalStyle 42 +int styleable ConstraintOverride_flow_lastHorizontalBias 43 +int styleable ConstraintOverride_flow_lastHorizontalStyle 44 +int styleable ConstraintOverride_flow_lastVerticalBias 45 +int styleable ConstraintOverride_flow_lastVerticalStyle 46 +int styleable ConstraintOverride_flow_maxElementsWrap 47 +int styleable ConstraintOverride_flow_verticalAlign 48 +int styleable ConstraintOverride_flow_verticalBias 49 +int styleable ConstraintOverride_flow_verticalGap 50 +int styleable ConstraintOverride_flow_verticalStyle 51 +int styleable ConstraintOverride_flow_wrapMode 52 +int styleable ConstraintOverride_guidelineUseRtl 53 +int styleable ConstraintOverride_layout_constrainedHeight 54 +int styleable ConstraintOverride_layout_constrainedWidth 55 +int styleable ConstraintOverride_layout_constraintBaseline_creator 56 +int styleable ConstraintOverride_layout_constraintBottom_creator 57 +int styleable ConstraintOverride_layout_constraintCircleAngle 58 +int styleable ConstraintOverride_layout_constraintCircleRadius 59 +int styleable ConstraintOverride_layout_constraintDimensionRatio 60 +int styleable ConstraintOverride_layout_constraintGuide_begin 61 +int styleable ConstraintOverride_layout_constraintGuide_end 62 +int styleable ConstraintOverride_layout_constraintGuide_percent 63 +int styleable ConstraintOverride_layout_constraintHeight 64 +int styleable ConstraintOverride_layout_constraintHeight_default 65 +int styleable ConstraintOverride_layout_constraintHeight_max 66 +int styleable ConstraintOverride_layout_constraintHeight_min 67 +int styleable ConstraintOverride_layout_constraintHeight_percent 68 +int styleable ConstraintOverride_layout_constraintHorizontal_bias 69 +int styleable ConstraintOverride_layout_constraintHorizontal_chainStyle 70 +int styleable ConstraintOverride_layout_constraintHorizontal_weight 71 +int styleable ConstraintOverride_layout_constraintLeft_creator 72 +int styleable ConstraintOverride_layout_constraintRight_creator 73 +int styleable ConstraintOverride_layout_constraintTag 74 +int styleable ConstraintOverride_layout_constraintTop_creator 75 +int styleable ConstraintOverride_layout_constraintVertical_bias 76 +int styleable ConstraintOverride_layout_constraintVertical_chainStyle 77 +int styleable ConstraintOverride_layout_constraintVertical_weight 78 +int styleable ConstraintOverride_layout_constraintWidth 79 +int styleable ConstraintOverride_layout_constraintWidth_default 80 +int styleable ConstraintOverride_layout_constraintWidth_max 81 +int styleable ConstraintOverride_layout_constraintWidth_min 82 +int styleable ConstraintOverride_layout_constraintWidth_percent 83 +int styleable ConstraintOverride_layout_editor_absoluteX 84 +int styleable ConstraintOverride_layout_editor_absoluteY 85 +int styleable ConstraintOverride_layout_goneMarginBaseline 86 +int styleable ConstraintOverride_layout_goneMarginBottom 87 +int styleable ConstraintOverride_layout_goneMarginEnd 88 +int styleable ConstraintOverride_layout_goneMarginLeft 89 +int styleable ConstraintOverride_layout_goneMarginRight 90 +int styleable ConstraintOverride_layout_goneMarginStart 91 +int styleable ConstraintOverride_layout_goneMarginTop 92 +int styleable ConstraintOverride_layout_marginBaseline 93 +int styleable ConstraintOverride_layout_wrapBehaviorInParent 94 +int styleable ConstraintOverride_motionProgress 95 +int styleable ConstraintOverride_motionStagger 96 +int styleable ConstraintOverride_motionTarget 97 +int styleable ConstraintOverride_pathMotionArc 98 +int styleable ConstraintOverride_pivotAnchor 99 +int styleable ConstraintOverride_polarRelativeTo 100 +int styleable ConstraintOverride_quantizeMotionInterpolator 101 +int styleable ConstraintOverride_quantizeMotionPhase 102 +int styleable ConstraintOverride_quantizeMotionSteps 103 +int styleable ConstraintOverride_transformPivotTarget 104 +int styleable ConstraintOverride_transitionEasing 105 +int styleable ConstraintOverride_transitionPathRotate 106 +int styleable ConstraintOverride_visibilityMode 107 +int[] styleable ConstraintSet { 0x0101031f, 0x01010440, 0x010100d0, 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x01010120, 0x0101011f, 0x01010140, 0x0101013f, 0x010100c4, 0x010101b5, 0x010101b6, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x010100dc, 0x7f030035, 0x7f030036, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030135, 0x7f030139, 0x7f03013a, 0x7f03017e, 0x7f03018f, 0x7f0301f5, 0x7f0301f6, 0x7f0301f7, 0x7f0301f8, 0x7f0301f9, 0x7f0301fa, 0x7f0301fb, 0x7f0301fc, 0x7f0301fd, 0x7f0301fe, 0x7f0301ff, 0x7f030200, 0x7f030201, 0x7f030203, 0x7f030204, 0x7f030205, 0x7f030206, 0x7f030207, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a4, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030351, 0x7f030352, 0x7f030380, 0x7f030387, 0x7f03038d, 0x7f0303a1, 0x7f0304d7, 0x7f0304d9 } +int styleable ConstraintSet_android_alpha 0 +int styleable ConstraintSet_android_elevation 1 +int styleable ConstraintSet_android_id 2 +int styleable ConstraintSet_android_layout_height 3 +int styleable ConstraintSet_android_layout_marginBottom 4 +int styleable ConstraintSet_android_layout_marginEnd 5 +int styleable ConstraintSet_android_layout_marginLeft 6 +int styleable ConstraintSet_android_layout_marginRight 7 +int styleable ConstraintSet_android_layout_marginStart 8 +int styleable ConstraintSet_android_layout_marginTop 9 +int styleable ConstraintSet_android_layout_width 10 +int styleable ConstraintSet_android_maxHeight 11 +int styleable ConstraintSet_android_maxWidth 12 +int styleable ConstraintSet_android_minHeight 13 +int styleable ConstraintSet_android_minWidth 14 +int styleable ConstraintSet_android_orientation 15 +int styleable ConstraintSet_android_pivotX 16 +int styleable ConstraintSet_android_pivotY 17 +int styleable ConstraintSet_android_rotation 18 +int styleable ConstraintSet_android_rotationX 19 +int styleable ConstraintSet_android_rotationY 20 +int styleable ConstraintSet_android_scaleX 21 +int styleable ConstraintSet_android_scaleY 22 +int styleable ConstraintSet_android_transformPivotX 23 +int styleable ConstraintSet_android_transformPivotY 24 +int styleable ConstraintSet_android_translationX 25 +int styleable ConstraintSet_android_translationY 26 +int styleable ConstraintSet_android_translationZ 27 +int styleable ConstraintSet_android_visibility 28 +int styleable ConstraintSet_animateCircleAngleTo 29 +int styleable ConstraintSet_animateRelativeTo 30 +int styleable ConstraintSet_barrierAllowsGoneWidgets 31 +int styleable ConstraintSet_barrierDirection 32 +int styleable ConstraintSet_barrierMargin 33 +int styleable ConstraintSet_chainUseRtl 34 +int styleable ConstraintSet_constraintRotate 35 +int styleable ConstraintSet_constraint_referenced_ids 36 +int styleable ConstraintSet_constraint_referenced_tags 37 +int styleable ConstraintSet_deriveConstraintsFrom 38 +int styleable ConstraintSet_drawPath 39 +int styleable ConstraintSet_flow_firstHorizontalBias 40 +int styleable ConstraintSet_flow_firstHorizontalStyle 41 +int styleable ConstraintSet_flow_firstVerticalBias 42 +int styleable ConstraintSet_flow_firstVerticalStyle 43 +int styleable ConstraintSet_flow_horizontalAlign 44 +int styleable ConstraintSet_flow_horizontalBias 45 +int styleable ConstraintSet_flow_horizontalGap 46 +int styleable ConstraintSet_flow_horizontalStyle 47 +int styleable ConstraintSet_flow_lastHorizontalBias 48 +int styleable ConstraintSet_flow_lastHorizontalStyle 49 +int styleable ConstraintSet_flow_lastVerticalBias 50 +int styleable ConstraintSet_flow_lastVerticalStyle 51 +int styleable ConstraintSet_flow_maxElementsWrap 52 +int styleable ConstraintSet_flow_verticalAlign 53 +int styleable ConstraintSet_flow_verticalBias 54 +int styleable ConstraintSet_flow_verticalGap 55 +int styleable ConstraintSet_flow_verticalStyle 56 +int styleable ConstraintSet_flow_wrapMode 57 +int styleable ConstraintSet_guidelineUseRtl 58 +int styleable ConstraintSet_layout_constrainedHeight 59 +int styleable ConstraintSet_layout_constrainedWidth 60 +int styleable ConstraintSet_layout_constraintBaseline_creator 61 +int styleable ConstraintSet_layout_constraintBaseline_toBaselineOf 62 +int styleable ConstraintSet_layout_constraintBaseline_toBottomOf 63 +int styleable ConstraintSet_layout_constraintBaseline_toTopOf 64 +int styleable ConstraintSet_layout_constraintBottom_creator 65 +int styleable ConstraintSet_layout_constraintBottom_toBottomOf 66 +int styleable ConstraintSet_layout_constraintBottom_toTopOf 67 +int styleable ConstraintSet_layout_constraintCircle 68 +int styleable ConstraintSet_layout_constraintCircleAngle 69 +int styleable ConstraintSet_layout_constraintCircleRadius 70 +int styleable ConstraintSet_layout_constraintDimensionRatio 71 +int styleable ConstraintSet_layout_constraintEnd_toEndOf 72 +int styleable ConstraintSet_layout_constraintEnd_toStartOf 73 +int styleable ConstraintSet_layout_constraintGuide_begin 74 +int styleable ConstraintSet_layout_constraintGuide_end 75 +int styleable ConstraintSet_layout_constraintGuide_percent 76 +int styleable ConstraintSet_layout_constraintHeight_default 77 +int styleable ConstraintSet_layout_constraintHeight_max 78 +int styleable ConstraintSet_layout_constraintHeight_min 79 +int styleable ConstraintSet_layout_constraintHeight_percent 80 +int styleable ConstraintSet_layout_constraintHorizontal_bias 81 +int styleable ConstraintSet_layout_constraintHorizontal_chainStyle 82 +int styleable ConstraintSet_layout_constraintHorizontal_weight 83 +int styleable ConstraintSet_layout_constraintLeft_creator 84 +int styleable ConstraintSet_layout_constraintLeft_toLeftOf 85 +int styleable ConstraintSet_layout_constraintLeft_toRightOf 86 +int styleable ConstraintSet_layout_constraintRight_creator 87 +int styleable ConstraintSet_layout_constraintRight_toLeftOf 88 +int styleable ConstraintSet_layout_constraintRight_toRightOf 89 +int styleable ConstraintSet_layout_constraintStart_toEndOf 90 +int styleable ConstraintSet_layout_constraintStart_toStartOf 91 +int styleable ConstraintSet_layout_constraintTag 92 +int styleable ConstraintSet_layout_constraintTop_creator 93 +int styleable ConstraintSet_layout_constraintTop_toBottomOf 94 +int styleable ConstraintSet_layout_constraintTop_toTopOf 95 +int styleable ConstraintSet_layout_constraintVertical_bias 96 +int styleable ConstraintSet_layout_constraintVertical_chainStyle 97 +int styleable ConstraintSet_layout_constraintVertical_weight 98 +int styleable ConstraintSet_layout_constraintWidth_default 99 +int styleable ConstraintSet_layout_constraintWidth_max 100 +int styleable ConstraintSet_layout_constraintWidth_min 101 +int styleable ConstraintSet_layout_constraintWidth_percent 102 +int styleable ConstraintSet_layout_editor_absoluteX 103 +int styleable ConstraintSet_layout_editor_absoluteY 104 +int styleable ConstraintSet_layout_goneMarginBaseline 105 +int styleable ConstraintSet_layout_goneMarginBottom 106 +int styleable ConstraintSet_layout_goneMarginEnd 107 +int styleable ConstraintSet_layout_goneMarginLeft 108 +int styleable ConstraintSet_layout_goneMarginRight 109 +int styleable ConstraintSet_layout_goneMarginStart 110 +int styleable ConstraintSet_layout_goneMarginTop 111 +int styleable ConstraintSet_layout_marginBaseline 112 +int styleable ConstraintSet_layout_wrapBehaviorInParent 113 +int styleable ConstraintSet_motionProgress 114 +int styleable ConstraintSet_motionStagger 115 +int styleable ConstraintSet_pathMotionArc 116 +int styleable ConstraintSet_pivotAnchor 117 +int styleable ConstraintSet_polarRelativeTo 118 +int styleable ConstraintSet_quantizeMotionSteps 119 +int styleable ConstraintSet_transitionEasing 120 +int styleable ConstraintSet_transitionPathRotate 121 +int styleable Constraint_android_alpha 0 +int styleable Constraint_android_elevation 1 +int styleable Constraint_android_id 2 +int styleable Constraint_android_layout_height 3 +int styleable Constraint_android_layout_marginBottom 4 +int styleable Constraint_android_layout_marginEnd 5 +int styleable Constraint_android_layout_marginLeft 6 +int styleable Constraint_android_layout_marginRight 7 +int styleable Constraint_android_layout_marginStart 8 +int styleable Constraint_android_layout_marginTop 9 +int styleable Constraint_android_layout_width 10 +int styleable Constraint_android_maxHeight 11 +int styleable Constraint_android_maxWidth 12 +int styleable Constraint_android_minHeight 13 +int styleable Constraint_android_minWidth 14 +int styleable Constraint_android_orientation 15 +int styleable Constraint_android_rotation 16 +int styleable Constraint_android_rotationX 17 +int styleable Constraint_android_rotationY 18 +int styleable Constraint_android_scaleX 19 +int styleable Constraint_android_scaleY 20 +int styleable Constraint_android_transformPivotX 21 +int styleable Constraint_android_transformPivotY 22 +int styleable Constraint_android_translationX 23 +int styleable Constraint_android_translationY 24 +int styleable Constraint_android_translationZ 25 +int styleable Constraint_android_visibility 26 +int styleable Constraint_animateCircleAngleTo 27 +int styleable Constraint_animateRelativeTo 28 +int styleable Constraint_barrierAllowsGoneWidgets 29 +int styleable Constraint_barrierDirection 30 +int styleable Constraint_barrierMargin 31 +int styleable Constraint_chainUseRtl 32 +int styleable Constraint_constraint_referenced_ids 33 +int styleable Constraint_constraint_referenced_tags 34 +int styleable Constraint_drawPath 35 +int styleable Constraint_flow_firstHorizontalBias 36 +int styleable Constraint_flow_firstHorizontalStyle 37 +int styleable Constraint_flow_firstVerticalBias 38 +int styleable Constraint_flow_firstVerticalStyle 39 +int styleable Constraint_flow_horizontalAlign 40 +int styleable Constraint_flow_horizontalBias 41 +int styleable Constraint_flow_horizontalGap 42 +int styleable Constraint_flow_horizontalStyle 43 +int styleable Constraint_flow_lastHorizontalBias 44 +int styleable Constraint_flow_lastHorizontalStyle 45 +int styleable Constraint_flow_lastVerticalBias 46 +int styleable Constraint_flow_lastVerticalStyle 47 +int styleable Constraint_flow_maxElementsWrap 48 +int styleable Constraint_flow_verticalAlign 49 +int styleable Constraint_flow_verticalBias 50 +int styleable Constraint_flow_verticalGap 51 +int styleable Constraint_flow_verticalStyle 52 +int styleable Constraint_flow_wrapMode 53 +int styleable Constraint_guidelineUseRtl 54 +int styleable Constraint_layout_constrainedHeight 55 +int styleable Constraint_layout_constrainedWidth 56 +int styleable Constraint_layout_constraintBaseline_creator 57 +int styleable Constraint_layout_constraintBaseline_toBaselineOf 58 +int styleable Constraint_layout_constraintBaseline_toBottomOf 59 +int styleable Constraint_layout_constraintBaseline_toTopOf 60 +int styleable Constraint_layout_constraintBottom_creator 61 +int styleable Constraint_layout_constraintBottom_toBottomOf 62 +int styleable Constraint_layout_constraintBottom_toTopOf 63 +int styleable Constraint_layout_constraintCircle 64 +int styleable Constraint_layout_constraintCircleAngle 65 +int styleable Constraint_layout_constraintCircleRadius 66 +int styleable Constraint_layout_constraintDimensionRatio 67 +int styleable Constraint_layout_constraintEnd_toEndOf 68 +int styleable Constraint_layout_constraintEnd_toStartOf 69 +int styleable Constraint_layout_constraintGuide_begin 70 +int styleable Constraint_layout_constraintGuide_end 71 +int styleable Constraint_layout_constraintGuide_percent 72 +int styleable Constraint_layout_constraintHeight 73 +int styleable Constraint_layout_constraintHeight_default 74 +int styleable Constraint_layout_constraintHeight_max 75 +int styleable Constraint_layout_constraintHeight_min 76 +int styleable Constraint_layout_constraintHeight_percent 77 +int styleable Constraint_layout_constraintHorizontal_bias 78 +int styleable Constraint_layout_constraintHorizontal_chainStyle 79 +int styleable Constraint_layout_constraintHorizontal_weight 80 +int styleable Constraint_layout_constraintLeft_creator 81 +int styleable Constraint_layout_constraintLeft_toLeftOf 82 +int styleable Constraint_layout_constraintLeft_toRightOf 83 +int styleable Constraint_layout_constraintRight_creator 84 +int styleable Constraint_layout_constraintRight_toLeftOf 85 +int styleable Constraint_layout_constraintRight_toRightOf 86 +int styleable Constraint_layout_constraintStart_toEndOf 87 +int styleable Constraint_layout_constraintStart_toStartOf 88 +int styleable Constraint_layout_constraintTag 89 +int styleable Constraint_layout_constraintTop_creator 90 +int styleable Constraint_layout_constraintTop_toBottomOf 91 +int styleable Constraint_layout_constraintTop_toTopOf 92 +int styleable Constraint_layout_constraintVertical_bias 93 +int styleable Constraint_layout_constraintVertical_chainStyle 94 +int styleable Constraint_layout_constraintVertical_weight 95 +int styleable Constraint_layout_constraintWidth 96 +int styleable Constraint_layout_constraintWidth_default 97 +int styleable Constraint_layout_constraintWidth_max 98 +int styleable Constraint_layout_constraintWidth_min 99 +int styleable Constraint_layout_constraintWidth_percent 100 +int styleable Constraint_layout_editor_absoluteX 101 +int styleable Constraint_layout_editor_absoluteY 102 +int styleable Constraint_layout_goneMarginBaseline 103 +int styleable Constraint_layout_goneMarginBottom 104 +int styleable Constraint_layout_goneMarginEnd 105 +int styleable Constraint_layout_goneMarginLeft 106 +int styleable Constraint_layout_goneMarginRight 107 +int styleable Constraint_layout_goneMarginStart 108 +int styleable Constraint_layout_goneMarginTop 109 +int styleable Constraint_layout_marginBaseline 110 +int styleable Constraint_layout_wrapBehaviorInParent 111 +int styleable Constraint_motionProgress 112 +int styleable Constraint_motionStagger 113 +int styleable Constraint_pathMotionArc 114 +int styleable Constraint_pivotAnchor 115 +int styleable Constraint_polarRelativeTo 116 +int styleable Constraint_quantizeMotionInterpolator 117 +int styleable Constraint_quantizeMotionPhase 118 +int styleable Constraint_quantizeMotionSteps 119 +int styleable Constraint_transformPivotTarget 120 +int styleable Constraint_transitionEasing 121 +int styleable Constraint_transitionPathRotate 122 +int styleable Constraint_visibilityMode 123 +int[] styleable CoordinatorLayout { 0x7f030270, 0x7f030415 } +int[] styleable CoordinatorLayout_Layout { 0x010100b3, 0x7f03027d, 0x7f03027e, 0x7f03027f, 0x7f0302b0, 0x7f0302ba, 0x7f0302bb } +int styleable CoordinatorLayout_Layout_android_layout_gravity 0 +int styleable CoordinatorLayout_Layout_layout_anchor 1 +int styleable CoordinatorLayout_Layout_layout_anchorGravity 2 +int styleable CoordinatorLayout_Layout_layout_behavior 3 +int styleable CoordinatorLayout_Layout_layout_dodgeInsetEdges 4 +int styleable CoordinatorLayout_Layout_layout_insetEdge 5 +int styleable CoordinatorLayout_Layout_layout_keyline 6 +int styleable CoordinatorLayout_keylines 0 +int styleable CoordinatorLayout_statusBarBackground 1 +int[] styleable CustomAttribute { 0x7f03003f, 0x7f030166, 0x7f030167, 0x7f030168, 0x7f030169, 0x7f03016a, 0x7f03016b, 0x7f03016d, 0x7f03016e, 0x7f03016f, 0x7f03031c } +int styleable CustomAttribute_attributeName 0 +int styleable CustomAttribute_customBoolean 1 +int styleable CustomAttribute_customColorDrawableValue 2 +int styleable CustomAttribute_customColorValue 3 +int styleable CustomAttribute_customDimension 4 +int styleable CustomAttribute_customFloatValue 5 +int styleable CustomAttribute_customIntegerValue 6 +int styleable CustomAttribute_customPixelDimension 7 +int styleable CustomAttribute_customReference 8 +int styleable CustomAttribute_customStringValue 9 +int styleable CustomAttribute_methodName 10 +int[] styleable DialogFragmentNavigator { 0x01010003 } +int styleable DialogFragmentNavigator_android_name 0 +int[] styleable DrawerArrowToggle { 0x7f03003d, 0x7f03003e, 0x7f030065, 0x7f0300f6, 0x7f030194, 0x7f030218, 0x7f0303f1, 0x7f030494 } +int styleable DrawerArrowToggle_arrowHeadLength 0 +int styleable DrawerArrowToggle_arrowShaftLength 1 +int styleable DrawerArrowToggle_barLength 2 +int styleable DrawerArrowToggle_color 3 +int styleable DrawerArrowToggle_drawableSize 4 +int styleable DrawerArrowToggle_gapBetweenBars 5 +int styleable DrawerArrowToggle_spinBars 6 +int styleable DrawerArrowToggle_thickness 7 +int[] styleable DrawerLayout { 0x7f0301a4 } +int styleable DrawerLayout_elevation 0 +int[] styleable ExtendedFloatingActionButton { 0x7f0300ec, 0x7f0301a4, 0x7f0301cc, 0x7f0301cd, 0x7f030226, 0x7f0303dd, 0x7f0303e1 } +int[] styleable ExtendedFloatingActionButton_Behavior_Layout { 0x7f030069, 0x7f03006a } +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable ExtendedFloatingActionButton_Behavior_Layout_behavior_autoShrink 1 +int styleable ExtendedFloatingActionButton_collapsedSize 0 +int styleable ExtendedFloatingActionButton_elevation 1 +int styleable ExtendedFloatingActionButton_extendMotionSpec 2 +int styleable ExtendedFloatingActionButton_extendStrategy 3 +int styleable ExtendedFloatingActionButton_hideMotionSpec 4 +int styleable ExtendedFloatingActionButton_showMotionSpec 5 +int styleable ExtendedFloatingActionButton_shrinkMotionSpec 6 +int[] styleable FloatingActionButton { 0x0101000e, 0x7f030052, 0x7f030053, 0x7f030078, 0x7f0301a4, 0x7f0301b4, 0x7f0301db, 0x7f0301dc, 0x7f030226, 0x7f030232, 0x7f030313, 0x7f03039b, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f0303dd, 0x7f0304e1 } +int[] styleable FloatingActionButton_Behavior_Layout { 0x7f030069 } +int styleable FloatingActionButton_Behavior_Layout_behavior_autoHide 0 +int styleable FloatingActionButton_android_enabled 0 +int styleable FloatingActionButton_backgroundTint 1 +int styleable FloatingActionButton_backgroundTintMode 2 +int styleable FloatingActionButton_borderWidth 3 +int styleable FloatingActionButton_elevation 4 +int styleable FloatingActionButton_ensureMinTouchTargetSize 5 +int styleable FloatingActionButton_fabCustomSize 6 +int styleable FloatingActionButton_fabSize 7 +int styleable FloatingActionButton_hideMotionSpec 8 +int styleable FloatingActionButton_hoveredFocusedTranslationZ 9 +int styleable FloatingActionButton_maxImageSize 10 +int styleable FloatingActionButton_pressedTranslationZ 11 +int styleable FloatingActionButton_rippleColor 12 +int styleable FloatingActionButton_shapeAppearance 13 +int styleable FloatingActionButton_shapeAppearanceOverlay 14 +int styleable FloatingActionButton_showMotionSpec 15 +int styleable FloatingActionButton_useCompatPadding 16 +int[] styleable FlowLayout { 0x7f030265, 0x7f0302c7 } +int styleable FlowLayout_itemSpacing 0 +int styleable FlowLayout_lineSpacing 1 +int[] styleable FontFamily { 0x7f03020a, 0x7f03020b, 0x7f03020c, 0x7f03020d, 0x7f03020e, 0x7f03020f, 0x7f030210 } +int[] styleable FontFamilyFont { 0x01010532, 0x0101053f, 0x01010570, 0x01010533, 0x0101056f, 0x7f030208, 0x7f030211, 0x7f030212, 0x7f030213, 0x7f0304de } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable ForegroundLinearLayout { 0x01010109, 0x01010200, 0x7f030216 } +int styleable ForegroundLinearLayout_android_foreground 0 +int styleable ForegroundLinearLayout_android_foregroundGravity 1 +int styleable ForegroundLinearLayout_foregroundInsidePadding 2 +int[] styleable Fragment { 0x010100d0, 0x01010003, 0x010100d1 } +int[] styleable FragmentContainerView { 0x01010003, 0x010100d1 } +int styleable FragmentContainerView_android_name 0 +int styleable FragmentContainerView_android_tag 1 +int[] styleable FragmentNavigator { 0x01010003 } +int styleable FragmentNavigator_android_name 0 +int styleable Fragment_android_id 0 +int styleable Fragment_android_name 1 +int styleable Fragment_android_tag 2 +int[] styleable GradientColor { 0x0101020b, 0x010101a2, 0x010101a3, 0x0101019e, 0x01010512, 0x01010513, 0x010101a4, 0x0101019d, 0x01010510, 0x01010511, 0x01010201, 0x010101a1 } +int[] styleable GradientColorItem { 0x010101a5, 0x01010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable ImageFilterView { 0x7f030033, 0x7f030075, 0x7f03008c, 0x7f03014c, 0x7f030161, 0x7f03023f, 0x7f030240, 0x7f030241, 0x7f030242, 0x7f03036e, 0x7f0303b8, 0x7f0303b9, 0x7f0303bb, 0x7f0304ed } +int styleable ImageFilterView_altSrc 0 +int styleable ImageFilterView_blendSrc 1 +int styleable ImageFilterView_brightness 2 +int styleable ImageFilterView_contrast 3 +int styleable ImageFilterView_crossfade 4 +int styleable ImageFilterView_imagePanX 5 +int styleable ImageFilterView_imagePanY 6 +int styleable ImageFilterView_imageRotate 7 +int styleable ImageFilterView_imageZoom 8 +int styleable ImageFilterView_overlay 9 +int styleable ImageFilterView_round 10 +int styleable ImageFilterView_roundPercent 11 +int styleable ImageFilterView_saturation 12 +int styleable ImageFilterView_warmth 13 +int[] styleable Insets { 0x7f0302dd, 0x7f0302de, 0x7f0302df, 0x7f030370, 0x7f030372, 0x7f030373, 0x7f030375, 0x7f030377 } +int styleable Insets_marginLeftSystemWindowInsets 0 +int styleable Insets_marginRightSystemWindowInsets 1 +int styleable Insets_marginTopSystemWindowInsets 2 +int styleable Insets_paddingBottomSystemWindowInsets 3 +int styleable Insets_paddingLeftSystemWindowInsets 4 +int styleable Insets_paddingRightSystemWindowInsets 5 +int styleable Insets_paddingStartSystemWindowInsets 6 +int styleable Insets_paddingTopSystemWindowInsets 7 +int[] styleable ItemsViewRendererTheme { 0x7f0300f5 } +int styleable ItemsViewRendererTheme_collectionViewStyle 0 +int[] styleable KeyAttribute { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d5, 0x7f0304d7, 0x7f0304d9 } +int styleable KeyAttribute_android_alpha 0 +int styleable KeyAttribute_android_elevation 1 +int styleable KeyAttribute_android_rotation 2 +int styleable KeyAttribute_android_rotationX 3 +int styleable KeyAttribute_android_rotationY 4 +int styleable KeyAttribute_android_scaleX 5 +int styleable KeyAttribute_android_scaleY 6 +int styleable KeyAttribute_android_transformPivotX 7 +int styleable KeyAttribute_android_transformPivotY 8 +int styleable KeyAttribute_android_translationX 9 +int styleable KeyAttribute_android_translationY 10 +int styleable KeyAttribute_android_translationZ 11 +int styleable KeyAttribute_curveFit 12 +int styleable KeyAttribute_framePosition 13 +int styleable KeyAttribute_motionProgress 14 +int styleable KeyAttribute_motionTarget 15 +int styleable KeyAttribute_transformPivotTarget 16 +int styleable KeyAttribute_transitionEasing 17 +int styleable KeyAttribute_transitionPathRotate 18 +int[] styleable KeyCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d7, 0x7f0304d9, 0x7f0304ef, 0x7f0304f0, 0x7f0304f1, 0x7f0304f2, 0x7f0304f3 } +int styleable KeyCycle_android_alpha 0 +int styleable KeyCycle_android_elevation 1 +int styleable KeyCycle_android_rotation 2 +int styleable KeyCycle_android_rotationX 3 +int styleable KeyCycle_android_rotationY 4 +int styleable KeyCycle_android_scaleX 5 +int styleable KeyCycle_android_scaleY 6 +int styleable KeyCycle_android_translationX 7 +int styleable KeyCycle_android_translationY 8 +int styleable KeyCycle_android_translationZ 9 +int styleable KeyCycle_curveFit 10 +int styleable KeyCycle_framePosition 11 +int styleable KeyCycle_motionProgress 12 +int styleable KeyCycle_motionTarget 13 +int styleable KeyCycle_transitionEasing 14 +int styleable KeyCycle_transitionPathRotate 15 +int styleable KeyCycle_waveOffset 16 +int styleable KeyCycle_wavePeriod 17 +int styleable KeyCycle_wavePhase 18 +int styleable KeyCycle_waveShape 19 +int styleable KeyCycle_waveVariesBy 20 +int[] styleable KeyFrame { } +int[] styleable KeyFramesAcceleration { } +int[] styleable KeyFramesVelocity { } +int[] styleable KeyPosition { 0x7f030165, 0x7f03018f, 0x7f030217, 0x7f03026e, 0x7f030353, 0x7f030380, 0x7f030382, 0x7f030383, 0x7f030384, 0x7f030385, 0x7f0303eb, 0x7f0304d7 } +int styleable KeyPosition_curveFit 0 +int styleable KeyPosition_drawPath 1 +int styleable KeyPosition_framePosition 2 +int styleable KeyPosition_keyPositionType 3 +int styleable KeyPosition_motionTarget 4 +int styleable KeyPosition_pathMotionArc 5 +int styleable KeyPosition_percentHeight 6 +int styleable KeyPosition_percentWidth 7 +int styleable KeyPosition_percentX 8 +int styleable KeyPosition_percentY 9 +int styleable KeyPosition_sizePercent 10 +int styleable KeyPosition_transitionEasing 11 +int[] styleable KeyTimeCycle { 0x0101031f, 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010322, 0x01010323, 0x010103fa, 0x7f030165, 0x7f030217, 0x7f030351, 0x7f030353, 0x7f0304d7, 0x7f0304d9, 0x7f0304ee, 0x7f0304ef, 0x7f0304f0, 0x7f0304f1, 0x7f0304f2 } +int styleable KeyTimeCycle_android_alpha 0 +int styleable KeyTimeCycle_android_elevation 1 +int styleable KeyTimeCycle_android_rotation 2 +int styleable KeyTimeCycle_android_rotationX 3 +int styleable KeyTimeCycle_android_rotationY 4 +int styleable KeyTimeCycle_android_scaleX 5 +int styleable KeyTimeCycle_android_scaleY 6 +int styleable KeyTimeCycle_android_translationX 7 +int styleable KeyTimeCycle_android_translationY 8 +int styleable KeyTimeCycle_android_translationZ 9 +int styleable KeyTimeCycle_curveFit 10 +int styleable KeyTimeCycle_framePosition 11 +int styleable KeyTimeCycle_motionProgress 12 +int styleable KeyTimeCycle_motionTarget 13 +int styleable KeyTimeCycle_transitionEasing 14 +int styleable KeyTimeCycle_transitionPathRotate 15 +int styleable KeyTimeCycle_waveDecay 16 +int styleable KeyTimeCycle_waveOffset 17 +int styleable KeyTimeCycle_wavePeriod 18 +int styleable KeyTimeCycle_wavePhase 19 +int styleable KeyTimeCycle_waveShape 20 +int[] styleable KeyTrigger { 0x7f030217, 0x7f030353, 0x7f030354, 0x7f030355, 0x7f030366, 0x7f030368, 0x7f030369, 0x7f0304db, 0x7f0304dc, 0x7f0304dd, 0x7f0304e8, 0x7f0304e9, 0x7f0304ea } +int styleable KeyTrigger_framePosition 0 +int styleable KeyTrigger_motionTarget 1 +int styleable KeyTrigger_motion_postLayoutCollision 2 +int styleable KeyTrigger_motion_triggerOnCollision 3 +int styleable KeyTrigger_onCross 4 +int styleable KeyTrigger_onNegativeCross 5 +int styleable KeyTrigger_onPositiveCross 6 +int styleable KeyTrigger_triggerId 7 +int styleable KeyTrigger_triggerReceiver 8 +int styleable KeyTrigger_triggerSlack 9 +int styleable KeyTrigger_viewTransitionOnCross 10 +int styleable KeyTrigger_viewTransitionOnNegativeCross 11 +int styleable KeyTrigger_viewTransitionOnPositiveCross 12 +int[] styleable Layout { 0x010100f5, 0x010100fa, 0x010103b6, 0x010100f7, 0x010100f9, 0x010103b5, 0x010100f8, 0x010100f4, 0x010100c4, 0x7f030066, 0x7f030067, 0x7f030068, 0x7f0300b0, 0x7f030139, 0x7f03013a, 0x7f03021c, 0x7f030282, 0x7f030283, 0x7f030284, 0x7f030285, 0x7f030286, 0x7f030287, 0x7f030288, 0x7f030289, 0x7f03028a, 0x7f03028b, 0x7f03028c, 0x7f03028d, 0x7f03028e, 0x7f03028f, 0x7f030290, 0x7f030291, 0x7f030292, 0x7f030293, 0x7f030294, 0x7f030295, 0x7f030296, 0x7f030297, 0x7f030298, 0x7f030299, 0x7f03029a, 0x7f03029b, 0x7f03029c, 0x7f03029d, 0x7f03029e, 0x7f03029f, 0x7f0302a0, 0x7f0302a1, 0x7f0302a2, 0x7f0302a3, 0x7f0302a5, 0x7f0302a6, 0x7f0302a7, 0x7f0302a8, 0x7f0302a9, 0x7f0302aa, 0x7f0302ab, 0x7f0302ac, 0x7f0302ad, 0x7f0302ae, 0x7f0302af, 0x7f0302b1, 0x7f0302b2, 0x7f0302b3, 0x7f0302b4, 0x7f0302b5, 0x7f0302b6, 0x7f0302b7, 0x7f0302b8, 0x7f0302b9, 0x7f0302bc, 0x7f0302c1, 0x7f030312, 0x7f030317, 0x7f03031e, 0x7f030322 } +int styleable Layout_android_layout_height 0 +int styleable Layout_android_layout_marginBottom 1 +int styleable Layout_android_layout_marginEnd 2 +int styleable Layout_android_layout_marginLeft 3 +int styleable Layout_android_layout_marginRight 4 +int styleable Layout_android_layout_marginStart 5 +int styleable Layout_android_layout_marginTop 6 +int styleable Layout_android_layout_width 7 +int styleable Layout_android_orientation 8 +int styleable Layout_barrierAllowsGoneWidgets 9 +int styleable Layout_barrierDirection 10 +int styleable Layout_barrierMargin 11 +int styleable Layout_chainUseRtl 12 +int styleable Layout_constraint_referenced_ids 13 +int styleable Layout_constraint_referenced_tags 14 +int styleable Layout_guidelineUseRtl 15 +int styleable Layout_layout_constrainedHeight 16 +int styleable Layout_layout_constrainedWidth 17 +int styleable Layout_layout_constraintBaseline_creator 18 +int styleable Layout_layout_constraintBaseline_toBaselineOf 19 +int styleable Layout_layout_constraintBaseline_toBottomOf 20 +int styleable Layout_layout_constraintBaseline_toTopOf 21 +int styleable Layout_layout_constraintBottom_creator 22 +int styleable Layout_layout_constraintBottom_toBottomOf 23 +int styleable Layout_layout_constraintBottom_toTopOf 24 +int styleable Layout_layout_constraintCircle 25 +int styleable Layout_layout_constraintCircleAngle 26 +int styleable Layout_layout_constraintCircleRadius 27 +int styleable Layout_layout_constraintDimensionRatio 28 +int styleable Layout_layout_constraintEnd_toEndOf 29 +int styleable Layout_layout_constraintEnd_toStartOf 30 +int styleable Layout_layout_constraintGuide_begin 31 +int styleable Layout_layout_constraintGuide_end 32 +int styleable Layout_layout_constraintGuide_percent 33 +int styleable Layout_layout_constraintHeight 34 +int styleable Layout_layout_constraintHeight_default 35 +int styleable Layout_layout_constraintHeight_max 36 +int styleable Layout_layout_constraintHeight_min 37 +int styleable Layout_layout_constraintHeight_percent 38 +int styleable Layout_layout_constraintHorizontal_bias 39 +int styleable Layout_layout_constraintHorizontal_chainStyle 40 +int styleable Layout_layout_constraintHorizontal_weight 41 +int styleable Layout_layout_constraintLeft_creator 42 +int styleable Layout_layout_constraintLeft_toLeftOf 43 +int styleable Layout_layout_constraintLeft_toRightOf 44 +int styleable Layout_layout_constraintRight_creator 45 +int styleable Layout_layout_constraintRight_toLeftOf 46 +int styleable Layout_layout_constraintRight_toRightOf 47 +int styleable Layout_layout_constraintStart_toEndOf 48 +int styleable Layout_layout_constraintStart_toStartOf 49 +int styleable Layout_layout_constraintTop_creator 50 +int styleable Layout_layout_constraintTop_toBottomOf 51 +int styleable Layout_layout_constraintTop_toTopOf 52 +int styleable Layout_layout_constraintVertical_bias 53 +int styleable Layout_layout_constraintVertical_chainStyle 54 +int styleable Layout_layout_constraintVertical_weight 55 +int styleable Layout_layout_constraintWidth 56 +int styleable Layout_layout_constraintWidth_default 57 +int styleable Layout_layout_constraintWidth_max 58 +int styleable Layout_layout_constraintWidth_min 59 +int styleable Layout_layout_constraintWidth_percent 60 +int styleable Layout_layout_editor_absoluteX 61 +int styleable Layout_layout_editor_absoluteY 62 +int styleable Layout_layout_goneMarginBaseline 63 +int styleable Layout_layout_goneMarginBottom 64 +int styleable Layout_layout_goneMarginEnd 65 +int styleable Layout_layout_goneMarginLeft 66 +int styleable Layout_layout_goneMarginRight 67 +int styleable Layout_layout_goneMarginStart 68 +int styleable Layout_layout_goneMarginTop 69 +int styleable Layout_layout_marginBaseline 70 +int styleable Layout_layout_wrapBehaviorInParent 71 +int styleable Layout_maxHeight 72 +int styleable Layout_maxWidth 73 +int styleable Layout_minHeight 74 +int styleable Layout_minWidth 75 +int[] styleable LinearLayoutCompat { 0x01010126, 0x01010127, 0x010100af, 0x010100c4, 0x01010128, 0x7f030184, 0x7f030189, 0x7f030318, 0x7f0303dc } +int[] styleable LinearLayoutCompat_Layout { 0x010100b3, 0x010100f5, 0x01010181, 0x010100f4 } +int styleable LinearLayoutCompat_Layout_android_layout_gravity 0 +int styleable LinearLayoutCompat_Layout_android_layout_height 1 +int styleable LinearLayoutCompat_Layout_android_layout_weight 2 +int styleable LinearLayoutCompat_Layout_android_layout_width 3 +int styleable LinearLayoutCompat_android_baselineAligned 0 +int styleable LinearLayoutCompat_android_baselineAlignedChildIndex 1 +int styleable LinearLayoutCompat_android_gravity 2 +int styleable LinearLayoutCompat_android_orientation 3 +int styleable LinearLayoutCompat_android_weightSum 4 +int styleable LinearLayoutCompat_divider 5 +int styleable LinearLayoutCompat_dividerPadding 6 +int styleable LinearLayoutCompat_measureWithLargestChild 7 +int styleable LinearLayoutCompat_showDividers 8 +int[] styleable LinearProgressIndicator { 0x7f030243, 0x7f030247 } +int styleable LinearProgressIndicator_indeterminateAnimationType 0 +int styleable LinearProgressIndicator_indicatorDirectionLinear 1 +int[] styleable ListPopupWindow { 0x010102ac, 0x010102ad } +int styleable ListPopupWindow_android_dropDownHorizontalOffset 0 +int styleable ListPopupWindow_android_dropDownVerticalOffset 1 +int[] styleable MaterialAlertDialog { 0x7f03004b, 0x7f03004c, 0x7f03004d, 0x7f03004e, 0x7f030052 } +int[] styleable MaterialAlertDialogTheme { 0x7f0302e0, 0x7f0302e1, 0x7f0302e2, 0x7f0302e3, 0x7f0302e4, 0x7f0302e5 } +int styleable MaterialAlertDialogTheme_materialAlertDialogBodyTextStyle 0 +int styleable MaterialAlertDialogTheme_materialAlertDialogButtonSpacerVisibility 1 +int styleable MaterialAlertDialogTheme_materialAlertDialogTheme 2 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleIconStyle 3 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitlePanelStyle 4 +int styleable MaterialAlertDialogTheme_materialAlertDialogTitleTextStyle 5 +int styleable MaterialAlertDialog_backgroundInsetBottom 0 +int styleable MaterialAlertDialog_backgroundInsetEnd 1 +int styleable MaterialAlertDialog_backgroundInsetStart 2 +int styleable MaterialAlertDialog_backgroundInsetTop 3 +int styleable MaterialAlertDialog_backgroundTint 4 +int[] styleable MaterialAutoCompleteTextView { 0x01010220, 0x0101048c, 0x7f03019c, 0x7f0303e4, 0x7f0303e7, 0x7f0303e5, 0x7f0303e6 } +int styleable MaterialAutoCompleteTextView_android_inputType 0 +int styleable MaterialAutoCompleteTextView_android_popupElevation 1 +int styleable MaterialAutoCompleteTextView_dropDownBackgroundTint 2 +int styleable MaterialAutoCompleteTextView_simpleItemLayout 3 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedColor 5 +int styleable MaterialAutoCompleteTextView_simpleItemSelectedRippleColor 6 +int styleable MaterialAutoCompleteTextView_simpleItems 4 +int[] styleable MaterialButton { 0x010100d4, 0x010101e5, 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f030052, 0x7f030053, 0x7f030155, 0x7f0301a4, 0x7f030233, 0x7f030235, 0x7f030236, 0x7f030237, 0x7f030239, 0x7f03023a, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f030419, 0x7f03041a, 0x7f0304bc } +int[] styleable MaterialButtonToggleGroup { 0x0101000e, 0x7f0300b5, 0x7f0303c9, 0x7f0303ea } +int styleable MaterialButtonToggleGroup_android_enabled 0 +int styleable MaterialButtonToggleGroup_checkedButton 1 +int styleable MaterialButtonToggleGroup_selectionRequired 2 +int styleable MaterialButtonToggleGroup_singleSelection 3 +int styleable MaterialButton_android_background 0 +int styleable MaterialButton_android_checkable 1 +int styleable MaterialButton_android_insetBottom 2 +int styleable MaterialButton_android_insetLeft 3 +int styleable MaterialButton_android_insetRight 4 +int styleable MaterialButton_android_insetTop 5 +int styleable MaterialButton_backgroundTint 6 +int styleable MaterialButton_backgroundTintMode 7 +int styleable MaterialButton_cornerRadius 8 +int styleable MaterialButton_elevation 9 +int styleable MaterialButton_icon 10 +int styleable MaterialButton_iconGravity 11 +int styleable MaterialButton_iconPadding 12 +int styleable MaterialButton_iconSize 13 +int styleable MaterialButton_iconTint 14 +int styleable MaterialButton_iconTintMode 15 +int styleable MaterialButton_rippleColor 16 +int styleable MaterialButton_shapeAppearance 17 +int styleable MaterialButton_shapeAppearanceOverlay 18 +int styleable MaterialButton_strokeColor 19 +int styleable MaterialButton_strokeWidth 20 +int styleable MaterialButton_toggleCheckedStateOnClick 21 +int[] styleable MaterialCalendar { 0x0101020d, 0x7f030052, 0x7f030172, 0x7f030173, 0x7f030174, 0x7f030175, 0x7f030361, 0x7f0303a6, 0x7f0304fe, 0x7f0304ff, 0x7f030500 } +int[] styleable MaterialCalendarItem { 0x010101ba, 0x010101b7, 0x010101b8, 0x010101b9, 0x7f030252, 0x7f03025e, 0x7f03025f, 0x7f030266, 0x7f030267, 0x7f03026c } +int styleable MaterialCalendarItem_android_insetBottom 0 +int styleable MaterialCalendarItem_android_insetLeft 1 +int styleable MaterialCalendarItem_android_insetRight 2 +int styleable MaterialCalendarItem_android_insetTop 3 +int styleable MaterialCalendarItem_itemFillColor 4 +int styleable MaterialCalendarItem_itemShapeAppearance 5 +int styleable MaterialCalendarItem_itemShapeAppearanceOverlay 6 +int styleable MaterialCalendarItem_itemStrokeColor 7 +int styleable MaterialCalendarItem_itemStrokeWidth 8 +int styleable MaterialCalendarItem_itemTextColor 9 +int styleable MaterialCalendar_android_windowFullscreen 0 +int styleable MaterialCalendar_backgroundTint 1 +int styleable MaterialCalendar_dayInvalidStyle 2 +int styleable MaterialCalendar_daySelectedStyle 3 +int styleable MaterialCalendar_dayStyle 4 +int styleable MaterialCalendar_dayTodayStyle 5 +int styleable MaterialCalendar_nestedScrollable 6 +int styleable MaterialCalendar_rangeFillColor 7 +int styleable MaterialCalendar_yearSelectedStyle 8 +int styleable MaterialCalendar_yearStyle 9 +int styleable MaterialCalendar_yearTodayStyle 10 +int[] styleable MaterialCardView { 0x010101e5, 0x7f0300a0, 0x7f0300b7, 0x7f0300b9, 0x7f0300ba, 0x7f0300bb, 0x7f0300bc, 0x7f0303b6, 0x7f0303cc, 0x7f0303d4, 0x7f03040f, 0x7f030419, 0x7f03041a } +int styleable MaterialCardView_android_checkable 0 +int styleable MaterialCardView_cardForegroundColor 1 +int styleable MaterialCardView_checkedIcon 2 +int styleable MaterialCardView_checkedIconGravity 3 +int styleable MaterialCardView_checkedIconMargin 4 +int styleable MaterialCardView_checkedIconSize 5 +int styleable MaterialCardView_checkedIconTint 6 +int styleable MaterialCardView_rippleColor 7 +int styleable MaterialCardView_shapeAppearance 8 +int styleable MaterialCardView_shapeAppearanceOverlay 9 +int styleable MaterialCardView_state_dragged 10 +int styleable MaterialCardView_strokeColor 11 +int styleable MaterialCardView_strokeWidth 12 +int[] styleable MaterialCheckBox { 0x01010107, 0x7f030092, 0x7f030094, 0x7f030096, 0x7f030097, 0x7f03009b, 0x7f0300af, 0x7f0300be, 0x7f0301b6, 0x7f0301bd, 0x7f0304e2 } +int[] styleable MaterialCheckBoxStates { 0x7f030410, 0x7f030411 } +int styleable MaterialCheckBoxStates_state_error 0 +int styleable MaterialCheckBoxStates_state_indeterminate 1 +int styleable MaterialCheckBox_android_button 0 +int styleable MaterialCheckBox_buttonCompat 1 +int styleable MaterialCheckBox_buttonIcon 2 +int styleable MaterialCheckBox_buttonIconTint 3 +int styleable MaterialCheckBox_buttonIconTintMode 4 +int styleable MaterialCheckBox_buttonTint 5 +int styleable MaterialCheckBox_centerIfNoTextEnabled 6 +int styleable MaterialCheckBox_checkedState 7 +int styleable MaterialCheckBox_errorAccessibilityLabel 8 +int styleable MaterialCheckBox_errorShown 9 +int styleable MaterialCheckBox_useMaterialThemeColors 10 +int[] styleable MaterialDivider { 0x7f030185, 0x7f030187, 0x7f030188, 0x7f03018a, 0x7f030277 } +int styleable MaterialDivider_dividerColor 0 +int styleable MaterialDivider_dividerInsetEnd 1 +int styleable MaterialDivider_dividerInsetStart 2 +int styleable MaterialDivider_dividerThickness 3 +int styleable MaterialDivider_lastItemDecorated 4 +int[] styleable MaterialRadioButton { 0x7f03009b, 0x7f0304e2 } +int styleable MaterialRadioButton_buttonTint 0 +int styleable MaterialRadioButton_useMaterialThemeColors 1 +int[] styleable MaterialShape { 0x7f0303cc, 0x7f0303d4 } +int styleable MaterialShape_shapeAppearance 0 +int styleable MaterialShape_shapeAppearanceOverlay 1 +int[] styleable MaterialSwitch { 0x7f030497, 0x7f030498, 0x7f030499, 0x7f03049a, 0x7f0304ce, 0x7f0304cf, 0x7f0304d0 } +int styleable MaterialSwitch_thumbIcon 0 +int styleable MaterialSwitch_thumbIconSize 1 +int styleable MaterialSwitch_thumbIconTint 2 +int styleable MaterialSwitch_thumbIconTintMode 3 +int styleable MaterialSwitch_trackDecoration 4 +int styleable MaterialSwitch_trackDecorationTint 5 +int styleable MaterialSwitch_trackDecorationTintMode 6 +int[] styleable MaterialTextAppearance { 0x010104b6, 0x0101057f, 0x7f0302c6 } +int styleable MaterialTextAppearance_android_letterSpacing 0 +int styleable MaterialTextAppearance_android_lineHeight 1 +int styleable MaterialTextAppearance_lineHeight 2 +int[] styleable MaterialTextView { 0x0101057f, 0x01010034, 0x7f0302c6 } +int styleable MaterialTextView_android_lineHeight 0 +int styleable MaterialTextView_android_textAppearance 1 +int styleable MaterialTextView_lineHeight 2 +int[] styleable MaterialTimePicker { 0x7f030052, 0x7f0300e0, 0x7f03026f } +int styleable MaterialTimePicker_backgroundTint 0 +int styleable MaterialTimePicker_clockIcon 1 +int styleable MaterialTimePicker_keyboardIcon 2 +int[] styleable MaterialToolbar { 0x7f0302d9, 0x7f0302db, 0x7f03035b, 0x7f030422, 0x7f0304ae } +int styleable MaterialToolbar_logoAdjustViewBounds 0 +int styleable MaterialToolbar_logoScaleType 1 +int styleable MaterialToolbar_navigationIconTint 2 +int styleable MaterialToolbar_subtitleCentered 3 +int styleable MaterialToolbar_titleCentered 4 +int[] styleable MenuGroup { 0x010101e0, 0x0101000e, 0x010100d0, 0x010101de, 0x010101df, 0x01010194 } +int styleable MenuGroup_android_checkableBehavior 0 +int styleable MenuGroup_android_enabled 1 +int styleable MenuGroup_android_id 2 +int styleable MenuGroup_android_menuCategory 3 +int styleable MenuGroup_android_orderInCategory 4 +int styleable MenuGroup_android_visible 5 +int[] styleable MenuItem { 0x7f030010, 0x7f030024, 0x7f030026, 0x7f030032, 0x010101e3, 0x010101e5, 0x01010106, 0x0101000e, 0x01010002, 0x010100d0, 0x010101de, 0x010101e4, 0x0101026f, 0x010101df, 0x010101e1, 0x010101e2, 0x01010194, 0x7f03013d, 0x7f030239, 0x7f03023a, 0x7f030364, 0x7f0303da, 0x7f0304c4 } +int styleable MenuItem_actionLayout 0 +int styleable MenuItem_actionProviderClass 1 +int styleable MenuItem_actionViewClass 2 +int styleable MenuItem_alphabeticModifiers 3 +int styleable MenuItem_android_alphabeticShortcut 4 +int styleable MenuItem_android_checkable 5 +int styleable MenuItem_android_checked 6 +int styleable MenuItem_android_enabled 7 +int styleable MenuItem_android_icon 8 +int styleable MenuItem_android_id 9 +int styleable MenuItem_android_menuCategory 10 +int styleable MenuItem_android_numericShortcut 11 +int styleable MenuItem_android_onClick 12 +int styleable MenuItem_android_orderInCategory 13 +int styleable MenuItem_android_title 14 +int styleable MenuItem_android_titleCondensed 15 +int styleable MenuItem_android_visible 16 +int styleable MenuItem_contentDescription 17 +int styleable MenuItem_iconTint 18 +int styleable MenuItem_iconTintMode 19 +int styleable MenuItem_numericModifiers 20 +int styleable MenuItem_showAsAction 21 +int styleable MenuItem_tooltipText 22 +int[] styleable MenuView { 0x0101012f, 0x0101012d, 0x01010130, 0x01010131, 0x0101012c, 0x0101012e, 0x010100ae, 0x7f03039a, 0x7f03041b } +int styleable MenuView_android_headerBackground 0 +int styleable MenuView_android_horizontalDivider 1 +int styleable MenuView_android_itemBackground 2 +int styleable MenuView_android_itemIconDisabledAlpha 3 +int styleable MenuView_android_itemTextAppearance 4 +int styleable MenuView_android_verticalDivider 5 +int styleable MenuView_android_windowAnimationStyle 6 +int styleable MenuView_preserveIconSpacing 7 +int styleable MenuView_subMenuArrow 8 +int[] styleable MockView { 0x7f030323, 0x7f030324, 0x7f030325, 0x7f030326, 0x7f030327, 0x7f030328 } +int styleable MockView_mock_diagonalsColor 0 +int styleable MockView_mock_label 1 +int styleable MockView_mock_labelBackgroundColor 2 +int styleable MockView_mock_labelColor 3 +int styleable MockView_mock_showDiagonals 4 +int styleable MockView_mock_showLabel 5 +int[] styleable Motion { 0x7f030035, 0x7f030036, 0x7f03018f, 0x7f030350, 0x7f030352, 0x7f030380, 0x7f03039f, 0x7f0303a0, 0x7f0303a1, 0x7f0304d7 } +int[] styleable MotionEffect { 0x7f030346, 0x7f030347, 0x7f030348, 0x7f030349, 0x7f03034a, 0x7f03034b, 0x7f03034c, 0x7f03034d } +int styleable MotionEffect_motionEffect_alpha 0 +int styleable MotionEffect_motionEffect_end 1 +int styleable MotionEffect_motionEffect_move 2 +int styleable MotionEffect_motionEffect_start 3 +int styleable MotionEffect_motionEffect_strict 4 +int styleable MotionEffect_motionEffect_translationX 5 +int styleable MotionEffect_motionEffect_translationY 6 +int styleable MotionEffect_motionEffect_viewTransition 7 +int[] styleable MotionHelper { 0x7f030367, 0x7f03036a } +int styleable MotionHelper_onHide 0 +int styleable MotionHelper_onShow 1 +int[] styleable MotionLabel { 0x01010535, 0x010103ac, 0x010100af, 0x01010164, 0x0101014f, 0x01010098, 0x01010095, 0x01010097, 0x01010096, 0x7f030076, 0x7f030077, 0x7f0303bc, 0x7f030478, 0x7f030479, 0x7f03047a, 0x7f03047b, 0x7f03047c, 0x7f03048a, 0x7f03048b, 0x7f03048c, 0x7f03048d, 0x7f03048f, 0x7f030490, 0x7f030491, 0x7f030492 } +int styleable MotionLabel_android_autoSizeTextType 0 +int styleable MotionLabel_android_fontFamily 1 +int styleable MotionLabel_android_gravity 2 +int styleable MotionLabel_android_shadowRadius 3 +int styleable MotionLabel_android_text 4 +int styleable MotionLabel_android_textColor 5 +int styleable MotionLabel_android_textSize 6 +int styleable MotionLabel_android_textStyle 7 +int styleable MotionLabel_android_typeface 8 +int styleable MotionLabel_borderRound 9 +int styleable MotionLabel_borderRoundPercent 10 +int styleable MotionLabel_scaleFromTextSize 11 +int styleable MotionLabel_textBackground 12 +int styleable MotionLabel_textBackgroundPanX 13 +int styleable MotionLabel_textBackgroundPanY 14 +int styleable MotionLabel_textBackgroundRotate 15 +int styleable MotionLabel_textBackgroundZoom 16 +int styleable MotionLabel_textOutlineColor 17 +int styleable MotionLabel_textOutlineThickness 18 +int styleable MotionLabel_textPanX 19 +int styleable MotionLabel_textPanY 20 +int styleable MotionLabel_textureBlurFactor 21 +int styleable MotionLabel_textureEffect 22 +int styleable MotionLabel_textureHeight 23 +int styleable MotionLabel_textureWidth 24 +int[] styleable MotionLayout { 0x7f03003a, 0x7f030162, 0x7f03027a, 0x7f030329, 0x7f030351, 0x7f0303de } +int styleable MotionLayout_applyMotionScene 0 +int styleable MotionLayout_currentState 1 +int styleable MotionLayout_layoutDescription 2 +int styleable MotionLayout_motionDebug 3 +int styleable MotionLayout_motionProgress 4 +int styleable MotionLayout_showPaths 5 +int[] styleable MotionScene { 0x7f030176, 0x7f03027b } +int styleable MotionScene_defaultDuration 0 +int styleable MotionScene_layoutDuringTransition 1 +int[] styleable MotionTelltales { 0x7f03044f, 0x7f030450, 0x7f030451 } +int styleable MotionTelltales_telltales_tailColor 0 +int styleable MotionTelltales_telltales_tailScale 1 +int styleable MotionTelltales_telltales_velocityMode 2 +int styleable Motion_animateCircleAngleTo 0 +int styleable Motion_animateRelativeTo 1 +int styleable Motion_drawPath 2 +int styleable Motion_motionPathRotate 3 +int styleable Motion_motionStagger 4 +int styleable Motion_pathMotionArc 5 +int styleable Motion_quantizeMotionInterpolator 6 +int styleable Motion_quantizeMotionPhase 7 +int styleable Motion_quantizeMotionSteps 8 +int styleable Motion_transitionEasing 9 +int[] styleable NavAction { 0x010100d0, 0x7f03017f, 0x7f0301b5, 0x7f0301c0, 0x7f030278, 0x7f03038e, 0x7f03038f, 0x7f030390, 0x7f030391, 0x7f030392, 0x7f0303b4 } +int styleable NavAction_android_id 0 +int styleable NavAction_destination 1 +int styleable NavAction_enterAnim 2 +int styleable NavAction_exitAnim 3 +int styleable NavAction_launchSingleTop 4 +int styleable NavAction_popEnterAnim 5 +int styleable NavAction_popExitAnim 6 +int styleable NavAction_popUpTo 7 +int styleable NavAction_popUpToInclusive 8 +int styleable NavAction_popUpToSaveState 9 +int styleable NavAction_restoreState 10 +int[] styleable NavArgument { 0x010101ed, 0x01010003, 0x7f03003c, 0x7f030362 } +int styleable NavArgument_android_defaultValue 0 +int styleable NavArgument_android_name 1 +int styleable NavArgument_argType 2 +int styleable NavArgument_nullable 3 +int[] styleable NavDeepLink { 0x7f030002, 0x010104ee, 0x7f03031d, 0x7f0304e0 } +int styleable NavDeepLink_action 0 +int styleable NavDeepLink_android_autoVerify 1 +int styleable NavDeepLink_mimeType 2 +int styleable NavDeepLink_uri 3 +int[] styleable NavGraphNavigator { 0x7f030404 } +int styleable NavGraphNavigator_startDestination 0 +int[] styleable NavHost { 0x7f030358 } +int[] styleable NavHostFragment { 0x7f030178 } +int styleable NavHostFragment_defaultNavHost 0 +int styleable NavHost_navGraph 0 +int[] styleable NavInclude { 0x7f03021b } +int styleable NavInclude_graph 0 +int[] styleable NavigationBarActiveIndicator { 0x010101a5, 0x01010155, 0x01010159, 0x7f0302dc, 0x7f0303cc } +int styleable NavigationBarActiveIndicator_android_color 0 +int styleable NavigationBarActiveIndicator_android_height 1 +int styleable NavigationBarActiveIndicator_android_width 2 +int styleable NavigationBarActiveIndicator_marginHorizontal 3 +int styleable NavigationBarActiveIndicator_shapeAppearance 4 +int[] styleable NavigationBarView { 0x7f030027, 0x7f030052, 0x7f0301a4, 0x7f030250, 0x7f030251, 0x7f030256, 0x7f030257, 0x7f03025b, 0x7f03025c, 0x7f03025d, 0x7f030269, 0x7f03026a, 0x7f03026b, 0x7f03026c, 0x7f030274, 0x7f030319 } +int styleable NavigationBarView_activeIndicatorLabelPadding 0 +int styleable NavigationBarView_backgroundTint 1 +int styleable NavigationBarView_elevation 2 +int styleable NavigationBarView_itemActiveIndicatorStyle 3 +int styleable NavigationBarView_itemBackground 4 +int styleable NavigationBarView_itemIconSize 5 +int styleable NavigationBarView_itemIconTint 6 +int styleable NavigationBarView_itemPaddingBottom 7 +int styleable NavigationBarView_itemPaddingTop 8 +int styleable NavigationBarView_itemRippleColor 9 +int styleable NavigationBarView_itemTextAppearanceActive 10 +int styleable NavigationBarView_itemTextAppearanceActiveBoldEnabled 11 +int styleable NavigationBarView_itemTextAppearanceInactive 12 +int styleable NavigationBarView_itemTextColor 13 +int styleable NavigationBarView_labelVisibilityMode 14 +int styleable NavigationBarView_menu 15 +int[] styleable NavigationRailView { 0x7f03021f, 0x7f030259, 0x7f03031b, 0x7f030370, 0x7f030375, 0x7f030377, 0x7f0303cc, 0x7f0303d4 } +int styleable NavigationRailView_headerLayout 0 +int styleable NavigationRailView_itemMinHeight 1 +int styleable NavigationRailView_menuGravity 2 +int styleable NavigationRailView_paddingBottomSystemWindowInsets 3 +int styleable NavigationRailView_paddingStartSystemWindowInsets 4 +int styleable NavigationRailView_paddingTopSystemWindowInsets 5 +int styleable NavigationRailView_shapeAppearance 6 +int styleable NavigationRailView_shapeAppearanceOverlay 7 +int[] styleable NavigationView { 0x010100d4, 0x010100dd, 0x010100b3, 0x0101011f, 0x7f03007b, 0x7f030187, 0x7f030188, 0x7f03019a, 0x7f0301a4, 0x7f03021f, 0x7f030251, 0x7f030253, 0x7f030255, 0x7f030256, 0x7f030257, 0x7f030258, 0x7f03025d, 0x7f03025e, 0x7f03025f, 0x7f030260, 0x7f030261, 0x7f030262, 0x7f030263, 0x7f030264, 0x7f030268, 0x7f03026a, 0x7f03026c, 0x7f03026d, 0x7f030319, 0x7f0303cc, 0x7f0303d4, 0x7f03041c, 0x7f03041d, 0x7f03041e, 0x7f03041f, 0x7f0304c5 } +int styleable NavigationView_android_background 0 +int styleable NavigationView_android_fitsSystemWindows 1 +int styleable NavigationView_android_layout_gravity 2 +int styleable NavigationView_android_maxWidth 3 +int styleable NavigationView_bottomInsetScrimEnabled 4 +int styleable NavigationView_dividerInsetEnd 5 +int styleable NavigationView_dividerInsetStart 6 +int styleable NavigationView_drawerLayoutCornerSize 7 +int styleable NavigationView_elevation 8 +int styleable NavigationView_headerLayout 9 +int styleable NavigationView_itemBackground 10 +int styleable NavigationView_itemHorizontalPadding 11 +int styleable NavigationView_itemIconPadding 12 +int styleable NavigationView_itemIconSize 13 +int styleable NavigationView_itemIconTint 14 +int styleable NavigationView_itemMaxLines 15 +int styleable NavigationView_itemRippleColor 16 +int styleable NavigationView_itemShapeAppearance 17 +int styleable NavigationView_itemShapeAppearanceOverlay 18 +int styleable NavigationView_itemShapeFillColor 19 +int styleable NavigationView_itemShapeInsetBottom 20 +int styleable NavigationView_itemShapeInsetEnd 21 +int styleable NavigationView_itemShapeInsetStart 22 +int styleable NavigationView_itemShapeInsetTop 23 +int styleable NavigationView_itemTextAppearance 24 +int styleable NavigationView_itemTextAppearanceActiveBoldEnabled 25 +int styleable NavigationView_itemTextColor 26 +int styleable NavigationView_itemVerticalPadding 27 +int styleable NavigationView_menu 28 +int styleable NavigationView_shapeAppearance 29 +int styleable NavigationView_shapeAppearanceOverlay 30 +int styleable NavigationView_subheaderColor 31 +int styleable NavigationView_subheaderInsetEnd 32 +int styleable NavigationView_subheaderInsetStart 33 +int styleable NavigationView_subheaderTextAppearance 34 +int styleable NavigationView_topInsetScrimEnabled 35 +int[] styleable Navigator { 0x010100d0, 0x01010001, 0x7f0303ba } +int styleable Navigator_android_id 0 +int styleable Navigator_android_label 1 +int styleable Navigator_route 2 +int[] styleable OnClick { 0x7f0300dd, 0x7f03044d } +int styleable OnClick_clickAction 0 +int styleable OnClick_targetId 1 +int[] styleable OnSwipe { 0x7f030041, 0x7f03018c, 0x7f03018d, 0x7f03018e, 0x7f0302c5, 0x7f03030e, 0x7f030316, 0x7f030356, 0x7f03035f, 0x7f03036c, 0x7f0303b7, 0x7f0303fc, 0x7f0303fd, 0x7f0303fe, 0x7f0303ff, 0x7f030400, 0x7f0304c6, 0x7f0304c7, 0x7f0304c8 } +int styleable OnSwipe_autoCompleteMode 0 +int styleable OnSwipe_dragDirection 1 +int styleable OnSwipe_dragScale 2 +int styleable OnSwipe_dragThreshold 3 +int styleable OnSwipe_limitBoundsTo 4 +int styleable OnSwipe_maxAcceleration 5 +int styleable OnSwipe_maxVelocity 6 +int styleable OnSwipe_moveWhenScrollAtTop 7 +int styleable OnSwipe_nestedScrollFlags 8 +int styleable OnSwipe_onTouchUp 9 +int styleable OnSwipe_rotationCenterId 10 +int styleable OnSwipe_springBoundary 11 +int styleable OnSwipe_springDamping 12 +int styleable OnSwipe_springMass 13 +int styleable OnSwipe_springStiffness 14 +int styleable OnSwipe_springStopThreshold 15 +int styleable OnSwipe_touchAnchorId 16 +int styleable OnSwipe_touchAnchorSide 17 +int styleable OnSwipe_touchRegionId 18 +int[] styleable PopupWindow { 0x010102c9, 0x01010176, 0x7f03036d } +int[] styleable PopupWindowBackgroundState { 0x7f03040c } +int styleable PopupWindowBackgroundState_state_above_anchor 0 +int styleable PopupWindow_android_popupAnimationStyle 0 +int styleable PopupWindow_android_popupBackground 1 +int styleable PopupWindow_overlapAnchor 2 +int[] styleable PropertySet { 0x0101031f, 0x010100dc, 0x7f0302a4, 0x7f030351, 0x7f0304eb } +int styleable PropertySet_android_alpha 0 +int styleable PropertySet_android_visibility 1 +int styleable PropertySet_layout_constraintTag 2 +int styleable PropertySet_motionProgress 3 +int styleable PropertySet_visibilityMode 4 +int[] styleable RadialViewGroup { 0x7f0302fc } +int styleable RadialViewGroup_materialCircleRadius 0 +int[] styleable RangeSlider { 0x7f030320, 0x7f0304e3 } +int styleable RangeSlider_minSeparation 0 +int styleable RangeSlider_values 1 +int[] styleable RecycleListView { 0x7f03036f, 0x7f030376 } +int styleable RecycleListView_paddingBottomNoButtons 0 +int styleable RecycleListView_paddingTopNoTitle 1 +int[] styleable RecyclerView { 0x010100eb, 0x010100f1, 0x010100c4, 0x7f0301dd, 0x7f0301de, 0x7f0301df, 0x7f0301e0, 0x7f0301e1, 0x7f03027c, 0x7f0303b5, 0x7f0303f0, 0x7f030402 } +int styleable RecyclerView_android_clipToPadding 0 +int styleable RecyclerView_android_descendantFocusability 1 +int styleable RecyclerView_android_orientation 2 +int styleable RecyclerView_fastScrollEnabled 3 +int styleable RecyclerView_fastScrollHorizontalThumbDrawable 4 +int styleable RecyclerView_fastScrollHorizontalTrackDrawable 5 +int styleable RecyclerView_fastScrollVerticalThumbDrawable 6 +int styleable RecyclerView_fastScrollVerticalTrackDrawable 7 +int styleable RecyclerView_layoutManager 8 +int styleable RecyclerView_reverseLayout 9 +int styleable RecyclerView_spanCount 10 +int styleable RecyclerView_stackFromEnd 11 +int[] styleable ScrimInsetsFrameLayout { 0x7f03024b } +int styleable ScrimInsetsFrameLayout_insetForeground 0 +int[] styleable ScrollViewRendererTheme { 0x7f0303c0 } +int styleable ScrollViewRendererTheme_scrollViewStyle 0 +int[] styleable ScrollingViewBehavior_Layout { 0x7f030070 } +int styleable ScrollingViewBehavior_Layout_behavior_overlapTop 0 +int[] styleable SearchBar { 0x01010150, 0x0101014f, 0x01010034, 0x7f030052, 0x7f030177, 0x7f03017a, 0x7f0301a4, 0x7f030215, 0x7f030227, 0x7f03035b, 0x7f030419, 0x7f03041a, 0x7f0304ac } +int styleable SearchBar_android_hint 0 +int styleable SearchBar_android_text 1 +int styleable SearchBar_android_textAppearance 2 +int styleable SearchBar_backgroundTint 3 +int styleable SearchBar_defaultMarginsEnabled 4 +int styleable SearchBar_defaultScrollFlagsEnabled 5 +int styleable SearchBar_elevation 6 +int styleable SearchBar_forceDefaultNavigationOnClickListener 7 +int styleable SearchBar_hideNavigationIcon 8 +int styleable SearchBar_navigationIconTint 9 +int styleable SearchBar_strokeColor 10 +int styleable SearchBar_strokeWidth 11 +int styleable SearchBar_tintNavigationIcon 12 +int[] styleable SearchView { 0x010100da, 0x01010264, 0x01010220, 0x0101011f, 0x7f0300e2, 0x7f030133, 0x7f030179, 0x7f03021a, 0x7f03023b, 0x7f030279, 0x7f0303a2, 0x7f0303a3, 0x7f0303c1, 0x7f0303c2, 0x7f030420, 0x7f030429, 0x7f0304ec } +int styleable SearchView_android_focusable 0 +int styleable SearchView_android_imeOptions 1 +int styleable SearchView_android_inputType 2 +int styleable SearchView_android_maxWidth 3 +int styleable SearchView_closeIcon 4 +int styleable SearchView_commitIcon 5 +int styleable SearchView_defaultQueryHint 6 +int styleable SearchView_goIcon 7 +int styleable SearchView_iconifiedByDefault 8 +int styleable SearchView_layout 9 +int styleable SearchView_queryBackground 10 +int styleable SearchView_queryHint 11 +int styleable SearchView_searchHintIcon 12 +int styleable SearchView_searchIcon 13 +int styleable SearchView_submitBackground 14 +int styleable SearchView_suggestionRowLayout 15 +int styleable SearchView_voiceIcon 16 +int[] styleable ShapeAppearance { 0x7f030150, 0x7f030151, 0x7f030152, 0x7f030153, 0x7f030154, 0x7f030156, 0x7f030157, 0x7f030158, 0x7f030159, 0x7f03015a } +int styleable ShapeAppearance_cornerFamily 0 +int styleable ShapeAppearance_cornerFamilyBottomLeft 1 +int styleable ShapeAppearance_cornerFamilyBottomRight 2 +int styleable ShapeAppearance_cornerFamilyTopLeft 3 +int styleable ShapeAppearance_cornerFamilyTopRight 4 +int styleable ShapeAppearance_cornerSize 5 +int styleable ShapeAppearance_cornerSizeBottomLeft 6 +int styleable ShapeAppearance_cornerSizeBottomRight 7 +int styleable ShapeAppearance_cornerSizeTopLeft 8 +int styleable ShapeAppearance_cornerSizeTopRight 9 +int[] styleable ShapeableImageView { 0x7f030144, 0x7f030145, 0x7f030146, 0x7f030147, 0x7f030148, 0x7f030149, 0x7f03014a, 0x7f0303cc, 0x7f0303d4, 0x7f030419, 0x7f03041a } +int styleable ShapeableImageView_contentPadding 0 +int styleable ShapeableImageView_contentPaddingBottom 1 +int styleable ShapeableImageView_contentPaddingEnd 2 +int styleable ShapeableImageView_contentPaddingLeft 3 +int styleable ShapeableImageView_contentPaddingRight 4 +int styleable ShapeableImageView_contentPaddingStart 5 +int styleable ShapeableImageView_contentPaddingTop 6 +int styleable ShapeableImageView_shapeAppearance 7 +int styleable ShapeableImageView_shapeAppearanceOverlay 8 +int styleable ShapeableImageView_strokeColor 9 +int styleable ShapeableImageView_strokeWidth 10 +int[] styleable SideSheetBehavior_Layout { 0x01010440, 0x01010120, 0x0101011f, 0x7f030052, 0x7f03006b, 0x7f03014f, 0x7f0303cc, 0x7f0303d4 } +int styleable SideSheetBehavior_Layout_android_elevation 0 +int styleable SideSheetBehavior_Layout_android_maxHeight 1 +int styleable SideSheetBehavior_Layout_android_maxWidth 2 +int styleable SideSheetBehavior_Layout_backgroundTint 3 +int styleable SideSheetBehavior_Layout_behavior_draggable 4 +int styleable SideSheetBehavior_Layout_coplanarSiblingViewId 5 +int styleable SideSheetBehavior_Layout_shapeAppearance 6 +int styleable SideSheetBehavior_Layout_shapeAppearanceOverlay 7 +int[] styleable Slider { 0x0101000e, 0x01010146, 0x01010024, 0x010102de, 0x010102df, 0x7f03021d, 0x7f03021e, 0x7f030272, 0x7f030273, 0x7f030321, 0x7f030495, 0x7f030496, 0x7f03049b, 0x7f03049c, 0x7f03049d, 0x7f0304a1, 0x7f0304a2, 0x7f0304a3, 0x7f0304a7, 0x7f0304a8, 0x7f0304a9, 0x7f0304ca, 0x7f0304cb, 0x7f0304cc, 0x7f0304d1 } +int styleable Slider_android_enabled 0 +int styleable Slider_android_stepSize 1 +int styleable Slider_android_value 2 +int styleable Slider_android_valueFrom 3 +int styleable Slider_android_valueTo 4 +int styleable Slider_haloColor 5 +int styleable Slider_haloRadius 6 +int styleable Slider_labelBehavior 7 +int styleable Slider_labelStyle 8 +int styleable Slider_minTouchTargetSize 9 +int styleable Slider_thumbColor 10 +int styleable Slider_thumbElevation 11 +int styleable Slider_thumbRadius 12 +int styleable Slider_thumbStrokeColor 13 +int styleable Slider_thumbStrokeWidth 14 +int styleable Slider_tickColor 15 +int styleable Slider_tickColorActive 16 +int styleable Slider_tickColorInactive 17 +int styleable Slider_tickRadiusActive 18 +int styleable Slider_tickRadiusInactive 19 +int styleable Slider_tickVisible 20 +int styleable Slider_trackColor 21 +int styleable Slider_trackColorActive 22 +int styleable Slider_trackColorInactive 23 +int styleable Slider_trackHeight 24 +int[] styleable Snackbar { 0x7f0303ed, 0x7f0303ee, 0x7f0303ef } +int[] styleable SnackbarLayout { 0x7f030025, 0x0101011f, 0x7f030038, 0x7f03004f, 0x7f030052, 0x7f030053, 0x7f0301a4, 0x7f03030f, 0x7f0303cc, 0x7f0303d4 } +int styleable SnackbarLayout_actionTextColorAlpha 0 +int styleable SnackbarLayout_android_maxWidth 1 +int styleable SnackbarLayout_animationMode 2 +int styleable SnackbarLayout_backgroundOverlayColorAlpha 3 +int styleable SnackbarLayout_backgroundTint 4 +int styleable SnackbarLayout_backgroundTintMode 5 +int styleable SnackbarLayout_elevation 6 +int styleable SnackbarLayout_maxActionInlineWidth 7 +int styleable SnackbarLayout_shapeAppearance 8 +int styleable SnackbarLayout_shapeAppearanceOverlay 9 +int styleable Snackbar_snackbarButtonStyle 0 +int styleable Snackbar_snackbarStyle 1 +int styleable Snackbar_snackbarTextViewStyle 2 +int[] styleable Spinner { 0x01010262, 0x010100b2, 0x01010176, 0x0101017b, 0x7f030395 } +int styleable Spinner_android_dropDownWidth 0 +int styleable Spinner_android_entries 1 +int styleable Spinner_android_popupBackground 2 +int styleable Spinner_android_prompt 3 +int styleable Spinner_popupTheme 4 +int[] styleable SplitPairFilter { 0x7f03039c, 0x7f0303c4, 0x7f0303c5 } +int styleable SplitPairFilter_primaryActivityName 0 +int styleable SplitPairFilter_secondaryActivityAction 1 +int styleable SplitPairFilter_secondaryActivityName 2 +int[] styleable SplitPairRule { 0x7f030037, 0x7f0300db, 0x7f0301e3, 0x7f0301e4, 0x7f0303f4, 0x7f0303f5, 0x7f0303f6, 0x7f0303f7, 0x7f0303f8, 0x7f0303f9, 0x7f0303fa, 0x7f03044c } +int styleable SplitPairRule_animationBackgroundColor 0 +int styleable SplitPairRule_clearTop 1 +int styleable SplitPairRule_finishPrimaryWithSecondary 2 +int styleable SplitPairRule_finishSecondaryWithPrimary 3 +int styleable SplitPairRule_splitLayoutDirection 4 +int styleable SplitPairRule_splitMaxAspectRatioInLandscape 5 +int styleable SplitPairRule_splitMaxAspectRatioInPortrait 6 +int styleable SplitPairRule_splitMinHeightDp 7 +int styleable SplitPairRule_splitMinSmallestWidthDp 8 +int styleable SplitPairRule_splitMinWidthDp 9 +int styleable SplitPairRule_splitRatio 10 +int styleable SplitPairRule_tag 11 +int[] styleable SplitPlaceholderRule { 0x7f030037, 0x7f0301e2, 0x7f030388, 0x7f0303f4, 0x7f0303f5, 0x7f0303f6, 0x7f0303f7, 0x7f0303f8, 0x7f0303f9, 0x7f0303fa, 0x7f030418, 0x7f03044c } +int styleable SplitPlaceholderRule_animationBackgroundColor 0 +int styleable SplitPlaceholderRule_finishPrimaryWithPlaceholder 1 +int styleable SplitPlaceholderRule_placeholderActivityName 2 +int styleable SplitPlaceholderRule_splitLayoutDirection 3 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInLandscape 4 +int styleable SplitPlaceholderRule_splitMaxAspectRatioInPortrait 5 +int styleable SplitPlaceholderRule_splitMinHeightDp 6 +int styleable SplitPlaceholderRule_splitMinSmallestWidthDp 7 +int styleable SplitPlaceholderRule_splitMinWidthDp 8 +int styleable SplitPlaceholderRule_splitRatio 9 +int styleable SplitPlaceholderRule_stickyPlaceholder 10 +int styleable SplitPlaceholderRule_tag 11 +int[] styleable State { 0x010100d0, 0x7f03013b } +int[] styleable StateListDrawable { 0x01010196, 0x0101011c, 0x0101030c, 0x0101030d, 0x01010195, 0x01010194 } +int[] styleable StateListDrawableItem { 0x01010199 } +int styleable StateListDrawableItem_android_drawable 0 +int styleable StateListDrawable_android_constantSize 0 +int styleable StateListDrawable_android_dither 1 +int styleable StateListDrawable_android_enterFadeDuration 2 +int styleable StateListDrawable_android_exitFadeDuration 3 +int styleable StateListDrawable_android_variablePadding 4 +int styleable StateListDrawable_android_visible 5 +int[] styleable StateSet { 0x7f03017b } +int styleable StateSet_defaultState 0 +int styleable State_android_id 0 +int styleable State_constraints 1 +int[] styleable SwipeRefreshLayout { 0x7f03042a } +int styleable SwipeRefreshLayout_swipeRefreshLayoutProgressSpinnerBackgroundColor 0 +int[] styleable SwitchCompat { 0x01010125, 0x01010124, 0x01010142, 0x7f0303df, 0x7f0303fb, 0x7f03042b, 0x7f03042c, 0x7f03042e, 0x7f03049e, 0x7f03049f, 0x7f0304a0, 0x7f0304c9, 0x7f0304d3, 0x7f0304d4 } +int styleable SwitchCompat_android_textOff 0 +int styleable SwitchCompat_android_textOn 1 +int styleable SwitchCompat_android_thumb 2 +int styleable SwitchCompat_showText 3 +int styleable SwitchCompat_splitTrack 4 +int styleable SwitchCompat_switchMinWidth 5 +int styleable SwitchCompat_switchPadding 6 +int styleable SwitchCompat_switchTextAppearance 7 +int styleable SwitchCompat_thumbTextPadding 8 +int styleable SwitchCompat_thumbTint 9 +int styleable SwitchCompat_thumbTintMode 10 +int styleable SwitchCompat_track 11 +int styleable SwitchCompat_trackTint 12 +int styleable SwitchCompat_trackTintMode 13 +int[] styleable SwitchMaterial { 0x7f0304e2 } +int styleable SwitchMaterial_useMaterialThemeColors 0 +int[] styleable TabItem { 0x01010002, 0x010100f2, 0x0101014f } +int styleable TabItem_android_icon 0 +int styleable TabItem_android_layout 1 +int styleable TabItem_android_text 2 +int[] styleable TabLayout { 0x7f03042f, 0x7f030430, 0x7f030431, 0x7f030432, 0x7f030433, 0x7f030434, 0x7f030435, 0x7f030436, 0x7f030437, 0x7f030438, 0x7f030439, 0x7f03043a, 0x7f03043b, 0x7f03043c, 0x7f03043d, 0x7f03043e, 0x7f03043f, 0x7f030440, 0x7f030441, 0x7f030442, 0x7f030443, 0x7f030444, 0x7f030446, 0x7f030447, 0x7f030449, 0x7f03044a, 0x7f03044b } +int styleable TabLayout_tabBackground 0 +int styleable TabLayout_tabContentStart 1 +int styleable TabLayout_tabGravity 2 +int styleable TabLayout_tabIconTint 3 +int styleable TabLayout_tabIconTintMode 4 +int styleable TabLayout_tabIndicator 5 +int styleable TabLayout_tabIndicatorAnimationDuration 6 +int styleable TabLayout_tabIndicatorAnimationMode 7 +int styleable TabLayout_tabIndicatorColor 8 +int styleable TabLayout_tabIndicatorFullWidth 9 +int styleable TabLayout_tabIndicatorGravity 10 +int styleable TabLayout_tabIndicatorHeight 11 +int styleable TabLayout_tabInlineLabel 12 +int styleable TabLayout_tabMaxWidth 13 +int styleable TabLayout_tabMinWidth 14 +int styleable TabLayout_tabMode 15 +int styleable TabLayout_tabPadding 16 +int styleable TabLayout_tabPaddingBottom 17 +int styleable TabLayout_tabPaddingEnd 18 +int styleable TabLayout_tabPaddingStart 19 +int styleable TabLayout_tabPaddingTop 20 +int styleable TabLayout_tabRippleColor 21 +int styleable TabLayout_tabSelectedTextAppearance 22 +int styleable TabLayout_tabSelectedTextColor 23 +int styleable TabLayout_tabTextAppearance 24 +int styleable TabLayout_tabTextColor 25 +int styleable TabLayout_tabUnboundedRipple 26 +int[] styleable TextAppearance { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x01010098, 0x0101009a, 0x0101009b, 0x01010585, 0x01010095, 0x01010097, 0x01010096, 0x7f030209, 0x7f030212, 0x7f030452, 0x7f030489 } +int styleable TextAppearance_android_fontFamily 0 +int styleable TextAppearance_android_shadowColor 1 +int styleable TextAppearance_android_shadowDx 2 +int styleable TextAppearance_android_shadowDy 3 +int styleable TextAppearance_android_shadowRadius 4 +int styleable TextAppearance_android_textColor 5 +int styleable TextAppearance_android_textColorHint 6 +int styleable TextAppearance_android_textColorLink 7 +int styleable TextAppearance_android_textFontWeight 8 +int styleable TextAppearance_android_textSize 9 +int styleable TextAppearance_android_textStyle 10 +int styleable TextAppearance_android_typeface 11 +int styleable TextAppearance_fontFamily 12 +int styleable TextAppearance_fontVariationSettings 13 +int styleable TextAppearance_textAllCaps 14 +int styleable TextAppearance_textLocale 15 +int[] styleable TextEffects { 0x010103ac, 0x01010161, 0x01010162, 0x01010163, 0x01010164, 0x0101014f, 0x01010095, 0x01010097, 0x01010096, 0x7f030076, 0x7f030077, 0x7f030480, 0x7f03048a, 0x7f03048b } +int styleable TextEffects_android_fontFamily 0 +int styleable TextEffects_android_shadowColor 1 +int styleable TextEffects_android_shadowDx 2 +int styleable TextEffects_android_shadowDy 3 +int styleable TextEffects_android_shadowRadius 4 +int styleable TextEffects_android_text 5 +int styleable TextEffects_android_textSize 6 +int styleable TextEffects_android_textStyle 7 +int styleable TextEffects_android_typeface 8 +int styleable TextEffects_borderRound 9 +int styleable TextEffects_borderRoundPercent 10 +int styleable TextEffects_textFillColor 11 +int styleable TextEffects_textOutlineColor 12 +int styleable TextEffects_textOutlineThickness 13 +int[] styleable TextInputEditText { 0x7f030484 } +int styleable TextInputEditText_textInputLayoutFocusedRectEnabled 0 +int[] styleable TextInputLayout { 0x0101000e, 0x01010150, 0x01010157, 0x0101011f, 0x0101015a, 0x0101013f, 0x0101009a, 0x7f030081, 0x7f030082, 0x7f030083, 0x7f030084, 0x7f030085, 0x7f030086, 0x7f030087, 0x7f030088, 0x7f030089, 0x7f03008a, 0x7f03008b, 0x7f03015b, 0x7f03015c, 0x7f03015d, 0x7f03015e, 0x7f03015f, 0x7f030160, 0x7f030163, 0x7f030164, 0x7f0301aa, 0x7f0301ab, 0x7f0301ac, 0x7f0301ad, 0x7f0301ae, 0x7f0301af, 0x7f0301b0, 0x7f0301b1, 0x7f0301b7, 0x7f0301b8, 0x7f0301b9, 0x7f0301ba, 0x7f0301bb, 0x7f0301bc, 0x7f0301be, 0x7f0301bf, 0x7f0301c3, 0x7f030221, 0x7f030222, 0x7f030223, 0x7f030224, 0x7f03022a, 0x7f03022b, 0x7f03022c, 0x7f03022d, 0x7f03037b, 0x7f03037c, 0x7f03037d, 0x7f03037e, 0x7f03037f, 0x7f030389, 0x7f03038a, 0x7f03038b, 0x7f030397, 0x7f030398, 0x7f030399, 0x7f0303cc, 0x7f0303d4, 0x7f030405, 0x7f030406, 0x7f030407, 0x7f030408, 0x7f030409, 0x7f03040a, 0x7f03040b, 0x7f030426, 0x7f030427, 0x7f030428 } +int styleable TextInputLayout_android_enabled 0 +int styleable TextInputLayout_android_hint 1 +int styleable TextInputLayout_android_maxEms 2 +int styleable TextInputLayout_android_maxWidth 3 +int styleable TextInputLayout_android_minEms 4 +int styleable TextInputLayout_android_minWidth 5 +int styleable TextInputLayout_android_textColorHint 6 +int styleable TextInputLayout_boxBackgroundColor 7 +int styleable TextInputLayout_boxBackgroundMode 8 +int styleable TextInputLayout_boxCollapsedPaddingTop 9 +int styleable TextInputLayout_boxCornerRadiusBottomEnd 10 +int styleable TextInputLayout_boxCornerRadiusBottomStart 11 +int styleable TextInputLayout_boxCornerRadiusTopEnd 12 +int styleable TextInputLayout_boxCornerRadiusTopStart 13 +int styleable TextInputLayout_boxStrokeColor 14 +int styleable TextInputLayout_boxStrokeErrorColor 15 +int styleable TextInputLayout_boxStrokeWidth 16 +int styleable TextInputLayout_boxStrokeWidthFocused 17 +int styleable TextInputLayout_counterEnabled 18 +int styleable TextInputLayout_counterMaxLength 19 +int styleable TextInputLayout_counterOverflowTextAppearance 20 +int styleable TextInputLayout_counterOverflowTextColor 21 +int styleable TextInputLayout_counterTextAppearance 22 +int styleable TextInputLayout_counterTextColor 23 +int styleable TextInputLayout_cursorColor 24 +int styleable TextInputLayout_cursorErrorColor 25 +int styleable TextInputLayout_endIconCheckable 26 +int styleable TextInputLayout_endIconContentDescription 27 +int styleable TextInputLayout_endIconDrawable 28 +int styleable TextInputLayout_endIconMinSize 29 +int styleable TextInputLayout_endIconMode 30 +int styleable TextInputLayout_endIconScaleType 31 +int styleable TextInputLayout_endIconTint 32 +int styleable TextInputLayout_endIconTintMode 33 +int styleable TextInputLayout_errorAccessibilityLiveRegion 34 +int styleable TextInputLayout_errorContentDescription 35 +int styleable TextInputLayout_errorEnabled 36 +int styleable TextInputLayout_errorIconDrawable 37 +int styleable TextInputLayout_errorIconTint 38 +int styleable TextInputLayout_errorIconTintMode 39 +int styleable TextInputLayout_errorTextAppearance 40 +int styleable TextInputLayout_errorTextColor 41 +int styleable TextInputLayout_expandedHintEnabled 42 +int styleable TextInputLayout_helperText 43 +int styleable TextInputLayout_helperTextEnabled 44 +int styleable TextInputLayout_helperTextTextAppearance 45 +int styleable TextInputLayout_helperTextTextColor 46 +int styleable TextInputLayout_hintAnimationEnabled 47 +int styleable TextInputLayout_hintEnabled 48 +int styleable TextInputLayout_hintTextAppearance 49 +int styleable TextInputLayout_hintTextColor 50 +int styleable TextInputLayout_passwordToggleContentDescription 51 +int styleable TextInputLayout_passwordToggleDrawable 52 +int styleable TextInputLayout_passwordToggleEnabled 53 +int styleable TextInputLayout_passwordToggleTint 54 +int styleable TextInputLayout_passwordToggleTintMode 55 +int styleable TextInputLayout_placeholderText 56 +int styleable TextInputLayout_placeholderTextAppearance 57 +int styleable TextInputLayout_placeholderTextColor 58 +int styleable TextInputLayout_prefixText 59 +int styleable TextInputLayout_prefixTextAppearance 60 +int styleable TextInputLayout_prefixTextColor 61 +int styleable TextInputLayout_shapeAppearance 62 +int styleable TextInputLayout_shapeAppearanceOverlay 63 +int styleable TextInputLayout_startIconCheckable 64 +int styleable TextInputLayout_startIconContentDescription 65 +int styleable TextInputLayout_startIconDrawable 66 +int styleable TextInputLayout_startIconMinSize 67 +int styleable TextInputLayout_startIconScaleType 68 +int styleable TextInputLayout_startIconTint 69 +int styleable TextInputLayout_startIconTintMode 70 +int styleable TextInputLayout_suffixText 71 +int styleable TextInputLayout_suffixTextAppearance 72 +int styleable TextInputLayout_suffixTextColor 73 +int[] styleable ThemeEnforcement { 0x01010034, 0x7f0301b2, 0x7f0301b3 } +int styleable ThemeEnforcement_android_textAppearance 0 +int styleable ThemeEnforcement_enforceMaterialTheme 1 +int styleable ThemeEnforcement_enforceTextAppearance 2 +int[] styleable Toolbar { 0x010100af, 0x01010140, 0x7f030093, 0x7f0300ea, 0x7f0300eb, 0x7f03013e, 0x7f03013f, 0x7f030140, 0x7f030141, 0x7f030142, 0x7f030143, 0x7f0302d8, 0x7f0302da, 0x7f030310, 0x7f030319, 0x7f030359, 0x7f03035a, 0x7f030395, 0x7f030421, 0x7f030423, 0x7f030424, 0x7f0304ad, 0x7f0304b1, 0x7f0304b2, 0x7f0304b3, 0x7f0304b6, 0x7f0304b4, 0x7f0304b5, 0x7f0304b8, 0x7f0304b9 } +int styleable Toolbar_android_gravity 0 +int styleable Toolbar_android_minHeight 1 +int styleable Toolbar_buttonGravity 2 +int styleable Toolbar_collapseContentDescription 3 +int styleable Toolbar_collapseIcon 4 +int styleable Toolbar_contentInsetEnd 5 +int styleable Toolbar_contentInsetEndWithActions 6 +int styleable Toolbar_contentInsetLeft 7 +int styleable Toolbar_contentInsetRight 8 +int styleable Toolbar_contentInsetStart 9 +int styleable Toolbar_contentInsetStartWithNavigation 10 +int styleable Toolbar_logo 11 +int styleable Toolbar_logoDescription 12 +int styleable Toolbar_maxButtonHeight 13 +int styleable Toolbar_menu 14 +int styleable Toolbar_navigationContentDescription 15 +int styleable Toolbar_navigationIcon 16 +int styleable Toolbar_popupTheme 17 +int styleable Toolbar_subtitle 18 +int styleable Toolbar_subtitleTextAppearance 19 +int styleable Toolbar_subtitleTextColor 20 +int styleable Toolbar_title 21 +int styleable Toolbar_titleMargin 22 +int styleable Toolbar_titleMarginBottom 23 +int styleable Toolbar_titleMarginEnd 24 +int styleable Toolbar_titleMarginStart 26 +int styleable Toolbar_titleMarginTop 27 +int styleable Toolbar_titleMargins 25 +int styleable Toolbar_titleTextAppearance 28 +int styleable Toolbar_titleTextColor 29 +int[] styleable Tooltip { 0x010100f6, 0x01010140, 0x0101013f, 0x010100d5, 0x0101014f, 0x01010034, 0x01010098, 0x7f030052 } +int styleable Tooltip_android_layout_margin 0 +int styleable Tooltip_android_minHeight 1 +int styleable Tooltip_android_minWidth 2 +int styleable Tooltip_android_padding 3 +int styleable Tooltip_android_text 4 +int styleable Tooltip_android_textAppearance 5 +int styleable Tooltip_android_textColor 6 +int styleable Tooltip_backgroundTint 7 +int[] styleable Transform { 0x01010440, 0x01010326, 0x01010327, 0x01010328, 0x01010324, 0x01010325, 0x01010320, 0x01010321, 0x01010322, 0x01010323, 0x010103fa, 0x7f0304d5 } +int styleable Transform_android_elevation 0 +int styleable Transform_android_rotation 1 +int styleable Transform_android_rotationX 2 +int styleable Transform_android_rotationY 3 +int styleable Transform_android_scaleX 4 +int styleable Transform_android_scaleY 5 +int styleable Transform_android_transformPivotX 6 +int styleable Transform_android_transformPivotY 7 +int styleable Transform_android_translationX 8 +int styleable Transform_android_translationY 9 +int styleable Transform_android_translationZ 10 +int styleable Transform_transformPivotTarget 11 +int[] styleable Transition { 0x010100d0, 0x7f030048, 0x7f030137, 0x7f030138, 0x7f03019f, 0x7f03027b, 0x7f03034e, 0x7f030380, 0x7f030403, 0x7f0304d6, 0x7f0304d8 } +int styleable Transition_android_id 0 +int styleable Transition_autoTransition 1 +int styleable Transition_constraintSetEnd 2 +int styleable Transition_constraintSetStart 3 +int styleable Transition_duration 4 +int styleable Transition_layoutDuringTransition 5 +int styleable Transition_motionInterpolator 6 +int styleable Transition_pathMotionArc 7 +int styleable Transition_staggered 8 +int styleable Transition_transitionDisable 9 +int styleable Transition_transitionFlags 10 +int[] styleable Variant { 0x7f03013b, 0x7f0303af, 0x7f0303b0, 0x7f0303b1, 0x7f0303b2 } +int styleable Variant_constraints 0 +int styleable Variant_region_heightLessThan 1 +int styleable Variant_region_heightMoreThan 2 +int styleable Variant_region_widthLessThan 3 +int styleable Variant_region_widthMoreThan 4 +int[] styleable View { 0x010100da, 0x01010000, 0x7f030371, 0x7f030374, 0x7f030493 } +int[] styleable ViewBackgroundHelper { 0x010100d4, 0x7f030052, 0x7f030053 } +int styleable ViewBackgroundHelper_android_background 0 +int styleable ViewBackgroundHelper_backgroundTint 1 +int styleable ViewBackgroundHelper_backgroundTintMode 2 +int[] styleable ViewPager2 { 0x010100c4 } +int styleable ViewPager2_android_orientation 0 +int[] styleable ViewStubCompat { 0x010100d0, 0x010100f3, 0x010100f2 } +int styleable ViewStubCompat_android_id 0 +int styleable ViewStubCompat_android_inflatedId 1 +int styleable ViewStubCompat_android_layout 2 +int[] styleable ViewTransition { 0x010100d0, 0x7f0300dc, 0x7f03019f, 0x7f03023c, 0x7f03023d, 0x7f03034e, 0x7f030353, 0x7f03036b, 0x7f030380, 0x7f0303cb, 0x7f030000, 0x7f030001, 0x7f0304d6, 0x7f0304df, 0x7f0304e7 } +int styleable ViewTransition_SharedValue 10 +int styleable ViewTransition_SharedValueId 11 +int styleable ViewTransition_android_id 0 +int styleable ViewTransition_clearsTag 1 +int styleable ViewTransition_duration 2 +int styleable ViewTransition_ifTagNotSet 3 +int styleable ViewTransition_ifTagSet 4 +int styleable ViewTransition_motionInterpolator 5 +int styleable ViewTransition_motionTarget 6 +int styleable ViewTransition_onStateTransition 7 +int styleable ViewTransition_pathMotionArc 8 +int styleable ViewTransition_setsTag 9 +int styleable ViewTransition_transitionDisable 12 +int styleable ViewTransition_upDuration 13 +int styleable ViewTransition_viewTransitionMode 14 +int styleable View_android_focusable 0 +int styleable View_android_theme 1 +int styleable View_paddingEnd 2 +int styleable View_paddingStart 3 +int styleable View_theme 4 +int[] styleable include { 0x7f030136 } +int styleable include_constraintSet 0 +int xml image_share_filepaths 0x7f110000 +int xml microsoft_maui_essentials_fileprovider_file_paths 0x7f110001 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll new file mode 100644 index 0000000..4f5b23f Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/_Microsoft.Android.Resource.Designer.dll differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs new file mode 100644 index 0000000..d38a503 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/__Microsoft.Android.Resource.Designer.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. DO NOT EDIT +// +//------------------------------------------------------------------------------ +using System; +using System.CodeDom.Compiler; + +namespace Maui_ChartTooltip { + #pragma warning disable IDE0002 + /// + /// Android Resource Designer class. + /// Exposes the Android Resource designer assembly into the project Namespace. + /// + public partial class Resource : _Microsoft.Android.Resource.Designer.ResourceConstant { + } + #pragma warning restore IDE0002 +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt new file mode 100644 index 0000000..93e0912 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/case_map.txt @@ -0,0 +1,22 @@ +animation\enterfromleft;animation\enterfromleft +animation\enterfromright;animation\enterfromright +animation\exittoleft;animation\exittoleft +animation\exittoright;animation\exittoright +animation\nav_default_enter_anim;animation\nav_default_enter_anim +animation\nav_default_exit_anim;animation\nav_default_exit_anim +animation\nav_default_pop_enter_anim;animation\nav_default_pop_enter_anim +animation\nav_default_pop_exit_anim;animation\nav_default_pop_exit_anim +animation\nav_modal_default_enter_anim;animation\nav_modal_default_enter_anim +animation\nav_modal_default_exit_anim;animation\nav_modal_default_exit_anim +drawable\maui_splash;drawable\maui_splash +drawable\maui_splash_image;drawable\maui_splash_image +layout\drawer_layout;layout\drawer_layout +layout\flyoutcontent;compatibility\Android\Resources\layout\flyoutcontent +layout\fragment_backstack;layout\fragment_backstack +layout\navigationlayout;layout\navigationlayout +layout\shellcontent;compatibility\Android\Resources\layout\shellcontent +values\attr;values\attr +values\colors;values\colors +values\strings;values\strings +values\styles;values\styles +xml\microsoft_maui_essentials_fileprovider_file_paths;resources\xml\microsoft_maui_essentials_fileprovider_file_paths diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props new file mode 100644 index 0000000..9cba96b --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/build.props @@ -0,0 +1,31 @@ +aotassemblies=false +androidaddkeepalives= +androidaotmode=interpreter +androidembedprofilers= +androidenableprofiledaot= +androiddextool=d8 +androidlinktool= +androidlinkresources= +androidpackageformat=apk +embedassembliesintoapk=false +androidlinkmode=none +androidlinkskip= +androidsdkbuildtoolsversion=35.0.0 +androidsdkpath=c:\program files (x86)\android\android-sdk\ +androidndkpath= +javasdkpath=c:\program files (x86)\android\openjdk\jdk-17.0.12\ +androidsequencepointsmode=none +androidnetsdkversion=35.0.61 +monosymbolarchive=false +androiduselatestplatformsdk=false +targetframeworkversion=v9.0 +androidcreatepackageperabi= +androidgeneratejnimarshalmethods=false +os=windows_nt +androidincludedebugsymbols=true +androidpackagenamingpolicy=lowercasecrc64 +_nugetassetsfilehash=3c1120c81d76185461b97b2537071fb4c0872fc9d5f1c1dce4150dcdae4bcbd0 +typemapkind=strings-asm +androidmanifestplaceholders= +projectfullpath=d:\changeframework\how-to-display-more-data-in-the-tooltip-in-.net-maui-charts-\maui_charttooltip\maui_charttooltip\maui_charttooltip.csproj +androidusedesignerassembly=true diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache new file mode 100644 index 0000000..9258c1b --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryimports.cache @@ -0,0 +1 @@ +obj\Debug\net9.0-android\lp\103\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\104\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\105\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\106\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\107\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\108\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\109\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\110\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\111\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\112\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\113\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\114\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\115\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\116\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\117\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\118\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\119\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\120\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\121\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\122\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\123\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\124\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\125\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\126\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\127\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\128\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\129\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\130\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\131\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\132\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\133\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\134\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\135\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\136\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\137\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\138\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\139\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\140\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\141\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\142\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\143\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\144\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\145\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\146\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\147\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\148\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\149\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\150\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\151\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\152\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\153\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\154\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\155\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\156\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\157\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\158\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\159\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\160\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\161\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\162\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\163\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\164\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\165\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\166\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\167\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\168\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\169\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\170\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\174\jl\AndroidManifest.xmlobj\Debug\net9.0-android\lp\103\jl\classes.jarobj\Debug\net9.0-android\lp\104\jl\classes.jarobj\Debug\net9.0-android\lp\105\jl\classes.jarobj\Debug\net9.0-android\lp\106\jl\classes.jarobj\Debug\net9.0-android\lp\107\jl\classes.jarobj\Debug\net9.0-android\lp\108\jl\classes.jarobj\Debug\net9.0-android\lp\110\jl\classes.jarobj\Debug\net9.0-android\lp\111\jl\classes.jarobj\Debug\net9.0-android\lp\112\jl\classes.jarobj\Debug\net9.0-android\lp\113\jl\classes.jarobj\Debug\net9.0-android\lp\114\jl\classes.jarobj\Debug\net9.0-android\lp\115\jl\classes.jarobj\Debug\net9.0-android\lp\116\jl\classes.jarobj\Debug\net9.0-android\lp\117\jl\classes.jarobj\Debug\net9.0-android\lp\118\jl\classes.jarobj\Debug\net9.0-android\lp\119\jl\classes.jarobj\Debug\net9.0-android\lp\121\jl\classes.jarobj\Debug\net9.0-android\lp\122\jl\classes.jarobj\Debug\net9.0-android\lp\123\jl\classes.jarobj\Debug\net9.0-android\lp\124\jl\classes.jarobj\Debug\net9.0-android\lp\125\jl\classes.jarobj\Debug\net9.0-android\lp\126\jl\classes.jarobj\Debug\net9.0-android\lp\127\jl\classes.jarobj\Debug\net9.0-android\lp\128\jl\classes.jarobj\Debug\net9.0-android\lp\129\jl\classes.jarobj\Debug\net9.0-android\lp\130\jl\classes.jarobj\Debug\net9.0-android\lp\131\jl\classes.jarobj\Debug\net9.0-android\lp\132\jl\classes.jarobj\Debug\net9.0-android\lp\133\jl\classes.jarobj\Debug\net9.0-android\lp\134\jl\classes.jarobj\Debug\net9.0-android\lp\135\jl\classes.jarobj\Debug\net9.0-android\lp\136\jl\classes.jarobj\Debug\net9.0-android\lp\136\jl\libs\repackaged.jarobj\Debug\net9.0-android\lp\137\jl\classes.jarobj\Debug\net9.0-android\lp\138\jl\classes.jarobj\Debug\net9.0-android\lp\139\jl\classes.jarobj\Debug\net9.0-android\lp\140\jl\classes.jarobj\Debug\net9.0-android\lp\141\jl\classes.jarobj\Debug\net9.0-android\lp\142\jl\classes.jarobj\Debug\net9.0-android\lp\143\jl\classes.jarobj\Debug\net9.0-android\lp\144\jl\classes.jarobj\Debug\net9.0-android\lp\145\jl\classes.jarobj\Debug\net9.0-android\lp\146\jl\classes.jarobj\Debug\net9.0-android\lp\147\jl\classes.jarobj\Debug\net9.0-android\lp\148\jl\classes.jarobj\Debug\net9.0-android\lp\149\jl\classes.jarobj\Debug\net9.0-android\lp\150\jl\classes.jarobj\Debug\net9.0-android\lp\151\jl\classes.jarobj\Debug\net9.0-android\lp\152\jl\classes.jarobj\Debug\net9.0-android\lp\153\jl\classes.jarobj\Debug\net9.0-android\lp\155\jl\classes.jarobj\Debug\net9.0-android\lp\156\jl\classes.jarobj\Debug\net9.0-android\lp\157\jl\classes.jarobj\Debug\net9.0-android\lp\158\jl\classes.jarobj\Debug\net9.0-android\lp\159\jl\classes.jarobj\Debug\net9.0-android\lp\160\jl\classes.jarobj\Debug\net9.0-android\lp\161\jl\classes.jarobj\Debug\net9.0-android\lp\162\jl\classes.jarobj\Debug\net9.0-android\lp\163\jl\classes.jarobj\Debug\net9.0-android\lp\164\jl\classes.jarobj\Debug\net9.0-android\lp\165\jl\classes.jarobj\Debug\net9.0-android\lp\166\jl\classes.jarobj\Debug\net9.0-android\lp\167\jl\classes.jarobj\Debug\net9.0-android\lp\168\jl\classes.jarobj\Debug\net9.0-android\lp\169\jl\classes.jarobj\Debug\net9.0-android\lp\170\jl\classes.jarobj\Debug\net9.0-android\lp\171\jl\libs\ED64959F88B22E6D.jarobj\Debug\net9.0-android\lp\172\jl\libs\2E7FD15AFA9B216B.jarobj\Debug\net9.0-android\lp\174\jl\classes.jarobj\Debug\net9.0-android\lp\177\jl\libs\F975D0960055A5E3.jarobj\Debug\net9.0-android\lp\178\jl\libs\B71CFF5D5A0B3AEB.jar \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache new file mode 100644 index 0000000..8e6f4ec --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/libraryprojectimports.cache @@ -0,0 +1 @@ +D:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\libs\repackaged.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\171\jl\libs\ED64959F88B22E6D.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\172\jl\libs\2E7FD15AFA9B216B.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174\jl\classes.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\177\jl\libs\F975D0960055A5E3.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\178\jl\libs\B71CFF5D5A0B3AEB.jarD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\173\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\175\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\176\jl\resD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\104.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\106.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\107.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\110.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\111.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\113.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\114.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\116.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\117.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\121.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\122.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\124.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\126.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\127.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\129.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\130.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\131.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\132.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\133.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\136.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\137.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\138.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\139.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\141.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\143.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\144.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\148.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\149.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\150.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\151.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\152.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\153.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\156.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\157.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\159.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\160.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\161.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\163.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\164.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\165.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\166.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\167.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\168.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\169.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\173.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\174.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\175.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\176.stampD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\103\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\105\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\108\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\112\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\115\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\118\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\119\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\123\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\125\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\128\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\134\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\135\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\140\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\142\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\145\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\146\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\147\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\155\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\158\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\162\jl\proguard.txtD:\ChangeFramework\How-to-display-more-data-in-the-tooltip-in-.NET-MAUI-charts-\Maui_ChartTooltip\Maui_ChartTooltip\obj\Debug\net9.0-android\lp\170\jl\proguard.txtobj\Debug\net9.0-android\lp\0obj\Debug\net9.0-android\lp\1obj\Debug\net9.0-android\lp\2obj\Debug\net9.0-android\lp\3obj\Debug\net9.0-android\lp\4obj\Debug\net9.0-android\lp\5obj\Debug\net9.0-android\lp\6obj\Debug\net9.0-android\lp\7obj\Debug\net9.0-android\lp\8obj\Debug\net9.0-android\lp\9obj\Debug\net9.0-android\lp\10obj\Debug\net9.0-android\lp\11obj\Debug\net9.0-android\lp\12obj\Debug\net9.0-android\lp\13obj\Debug\net9.0-android\lp\14obj\Debug\net9.0-android\lp\15obj\Debug\net9.0-android\lp\16obj\Debug\net9.0-android\lp\17obj\Debug\net9.0-android\lp\18obj\Debug\net9.0-android\lp\19obj\Debug\net9.0-android\lp\20obj\Debug\net9.0-android\lp\21obj\Debug\net9.0-android\lp\22obj\Debug\net9.0-android\lp\23obj\Debug\net9.0-android\lp\24obj\Debug\net9.0-android\lp\25obj\Debug\net9.0-android\lp\26obj\Debug\net9.0-android\lp\27obj\Debug\net9.0-android\lp\28obj\Debug\net9.0-android\lp\29obj\Debug\net9.0-android\lp\30obj\Debug\net9.0-android\lp\31obj\Debug\net9.0-android\lp\32obj\Debug\net9.0-android\lp\33obj\Debug\net9.0-android\lp\34obj\Debug\net9.0-android\lp\35obj\Debug\net9.0-android\lp\36obj\Debug\net9.0-android\lp\37obj\Debug\net9.0-android\lp\38obj\Debug\net9.0-android\lp\39obj\Debug\net9.0-android\lp\40obj\Debug\net9.0-android\lp\41obj\Debug\net9.0-android\lp\42obj\Debug\net9.0-android\lp\43obj\Debug\net9.0-android\lp\44obj\Debug\net9.0-android\lp\45obj\Debug\net9.0-android\lp\46obj\Debug\net9.0-android\lp\47obj\Debug\net9.0-android\lp\48obj\Debug\net9.0-android\lp\49obj\Debug\net9.0-android\lp\50obj\Debug\net9.0-android\lp\51obj\Debug\net9.0-android\lp\52obj\Debug\net9.0-android\lp\53obj\Debug\net9.0-android\lp\54obj\Debug\net9.0-android\lp\55obj\Debug\net9.0-android\lp\56obj\Debug\net9.0-android\lp\57obj\Debug\net9.0-android\lp\58obj\Debug\net9.0-android\lp\59obj\Debug\net9.0-android\lp\60obj\Debug\net9.0-android\lp\61obj\Debug\net9.0-android\lp\62obj\Debug\net9.0-android\lp\63obj\Debug\net9.0-android\lp\64obj\Debug\net9.0-android\lp\65obj\Debug\net9.0-android\lp\66obj\Debug\net9.0-android\lp\67obj\Debug\net9.0-android\lp\68obj\Debug\net9.0-android\lp\69obj\Debug\net9.0-android\lp\70obj\Debug\net9.0-android\lp\71obj\Debug\net9.0-android\lp\72obj\Debug\net9.0-android\lp\73obj\Debug\net9.0-android\lp\74obj\Debug\net9.0-android\lp\75obj\Debug\net9.0-android\lp\76obj\Debug\net9.0-android\lp\77obj\Debug\net9.0-android\lp\78obj\Debug\net9.0-android\lp\79obj\Debug\net9.0-android\lp\80obj\Debug\net9.0-android\lp\81obj\Debug\net9.0-android\lp\82obj\Debug\net9.0-android\lp\83obj\Debug\net9.0-android\lp\84obj\Debug\net9.0-android\lp\85obj\Debug\net9.0-android\lp\86obj\Debug\net9.0-android\lp\87obj\Debug\net9.0-android\lp\88obj\Debug\net9.0-android\lp\89obj\Debug\net9.0-android\lp\90obj\Debug\net9.0-android\lp\91obj\Debug\net9.0-android\lp\92obj\Debug\net9.0-android\lp\93obj\Debug\net9.0-android\lp\94obj\Debug\net9.0-android\lp\95obj\Debug\net9.0-android\lp\96obj\Debug\net9.0-android\lp\97obj\Debug\net9.0-android\lp\98obj\Debug\net9.0-android\lp\99obj\Debug\net9.0-android\lp\100obj\Debug\net9.0-android\lp\101obj\Debug\net9.0-android\lp\102obj\Debug\net9.0-android\lp\103obj\Debug\net9.0-android\lp\104obj\Debug\net9.0-android\lp\105obj\Debug\net9.0-android\lp\106obj\Debug\net9.0-android\lp\107obj\Debug\net9.0-android\lp\108obj\Debug\net9.0-android\lp\109obj\Debug\net9.0-android\lp\110obj\Debug\net9.0-android\lp\111obj\Debug\net9.0-android\lp\112obj\Debug\net9.0-android\lp\113obj\Debug\net9.0-android\lp\114obj\Debug\net9.0-android\lp\115obj\Debug\net9.0-android\lp\116obj\Debug\net9.0-android\lp\117obj\Debug\net9.0-android\lp\118obj\Debug\net9.0-android\lp\119obj\Debug\net9.0-android\lp\120obj\Debug\net9.0-android\lp\121obj\Debug\net9.0-android\lp\122obj\Debug\net9.0-android\lp\123obj\Debug\net9.0-android\lp\124obj\Debug\net9.0-android\lp\125obj\Debug\net9.0-android\lp\126obj\Debug\net9.0-android\lp\127obj\Debug\net9.0-android\lp\128obj\Debug\net9.0-android\lp\129obj\Debug\net9.0-android\lp\130obj\Debug\net9.0-android\lp\131obj\Debug\net9.0-android\lp\132obj\Debug\net9.0-android\lp\133obj\Debug\net9.0-android\lp\134obj\Debug\net9.0-android\lp\135obj\Debug\net9.0-android\lp\136obj\Debug\net9.0-android\lp\137obj\Debug\net9.0-android\lp\138obj\Debug\net9.0-android\lp\139obj\Debug\net9.0-android\lp\140obj\Debug\net9.0-android\lp\141obj\Debug\net9.0-android\lp\142obj\Debug\net9.0-android\lp\143obj\Debug\net9.0-android\lp\144obj\Debug\net9.0-android\lp\145obj\Debug\net9.0-android\lp\146obj\Debug\net9.0-android\lp\147obj\Debug\net9.0-android\lp\148obj\Debug\net9.0-android\lp\149obj\Debug\net9.0-android\lp\150obj\Debug\net9.0-android\lp\151obj\Debug\net9.0-android\lp\152obj\Debug\net9.0-android\lp\153obj\Debug\net9.0-android\lp\154obj\Debug\net9.0-android\lp\155obj\Debug\net9.0-android\lp\156obj\Debug\net9.0-android\lp\157obj\Debug\net9.0-android\lp\158obj\Debug\net9.0-android\lp\159obj\Debug\net9.0-android\lp\160obj\Debug\net9.0-android\lp\161obj\Debug\net9.0-android\lp\162obj\Debug\net9.0-android\lp\163obj\Debug\net9.0-android\lp\164obj\Debug\net9.0-android\lp\165obj\Debug\net9.0-android\lp\166obj\Debug\net9.0-android\lp\167obj\Debug\net9.0-android\lp\168obj\Debug\net9.0-android\lp\169obj\Debug\net9.0-android\lp\170obj\Debug\net9.0-android\lp\171obj\Debug\net9.0-android\lp\172obj\Debug\net9.0-android\lp\173obj\Debug\net9.0-android\lp\174obj\Debug\net9.0-android\lp\175obj\Debug\net9.0-android\lp\176obj\Debug\net9.0-android\lp\177obj\Debug\net9.0-android\lp\178 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_BuildLibraryImportsCache.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_BuildLibraryImportsCache.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_ResolveLibraryProjectImports.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/designtime/stamp/_ResolveLibraryProjectImports.stamp new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp new file mode 100644 index 0000000..7786faa --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103.stamp @@ -0,0 +1 @@ +061DCF5BF8C87518 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml new file mode 100644 index 0000000..dc1e263 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl new file mode 100644 index 0000000..b7ed474 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/aidl/androidx/versionedparcelable/ParcelImpl.aidl @@ -0,0 +1,19 @@ +/** + * Copyright 2023, The Android Open Source Project + * + * 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. + */ + +package androidx.versionedparcelable; + +@JavaOnlyStableParcelable parcelable ParcelImpl; diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar new file mode 100644 index 0000000..e53e921 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/proguard.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/proguard.txt new file mode 100644 index 0000000..2a047c9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/proguard.txt @@ -0,0 +1,4 @@ +-keep class * implements androidx.versionedparcelable.VersionedParcelable +-keep public class android.support.**Parcelizer { *; } +-keep public class androidx.**Parcelizer { *; } +-keep public class androidx.versionedparcelable.ParcelImpl diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res.zip new file mode 100644 index 0000000..36657a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/103/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp new file mode 100644 index 0000000..34521be --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104.stamp @@ -0,0 +1 @@ +6B7CAB57EF76EAFC \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml new file mode 100644 index 0000000..e625bb0 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar new file mode 100644 index 0000000..baa0ace Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip new file mode 100644 index 0000000..36657a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/104/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp new file mode 100644 index 0000000..b9cbc58 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105.stamp @@ -0,0 +1 @@ +09A8E667A6A2EF29 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml new file mode 100644 index 0000000..ca4f028 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..bd8164d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,4 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=31 +minAndroidGradlePluginVersion=1.0.0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt new file mode 100644 index 0000000..fddb3a8 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/R.txt @@ -0,0 +1 @@ +int string androidx_startup 0x0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt new file mode 100644 index 0000000..ea3d5d7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/baseline-prof.txt @@ -0,0 +1,4 @@ +# Baseline Profile Rules for androidx.startup + +Landroidx/startup/AppInitializer; +HSPLandroidx/startup/AppInitializer;->**(**)** diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar new file mode 100644 index 0000000..90d5279 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/proguard.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/proguard.txt new file mode 100644 index 0000000..b35cf7a --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/proguard.txt @@ -0,0 +1,12 @@ +# It's important that we preserve initializer names, given they are used in the AndroidManifest.xml. +-keepnames class * extends androidx.startup.Initializer + +# These Proguard rules ensures that ComponentInitializers are are neither shrunk nor obfuscated, +# and are a part of the primary dex file. This is because they are discovered and instantiated +# during application startup. +-keep class * extends androidx.startup.Initializer { + # Keep the public no-argument constructor while allowing other methods to be optimized. + (); +} + +-assumenosideeffects class androidx.startup.StartupLogger { public static ; } diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip new file mode 100644 index 0000000..2bd21be Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml new file mode 100644 index 0000000..2cc6f92 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/105/jl/res/values/values.xml @@ -0,0 +1,4 @@ + + + androidx.startup + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp new file mode 100644 index 0000000..db89f5c --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106.stamp @@ -0,0 +1 @@ +30DF70518BA80848 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml new file mode 100644 index 0000000..b4e1ab9 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/AndroidManifest.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip new file mode 100644 index 0000000..313d439 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/annotations.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar new file mode 100644 index 0000000..348614d Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res.zip new file mode 100644 index 0000000..36657a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/106/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp new file mode 100644 index 0000000..976f309 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107.stamp @@ -0,0 +1 @@ +FD24BA5B54543869 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml new file mode 100644 index 0000000..cceae92 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..c78f08e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,5 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=33 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar new file mode 100644 index 0000000..ae9d872 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip new file mode 100644 index 0000000..36657a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/107/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp new file mode 100644 index 0000000..76fe466 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108.stamp @@ -0,0 +1 @@ +0C5729B42DD21DBF \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml new file mode 100644 index 0000000..7f48070 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt new file mode 100644 index 0000000..2686c46 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/R.txt @@ -0,0 +1 @@ +int id view_tree_lifecycle_owner 0x0 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt new file mode 100644 index 0000000..e60ad60 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/baseline-prof.txt @@ -0,0 +1,95 @@ +# Baseline Profile rules for lifecycle-runtime + +HPLandroidx/lifecycle/LifecycleRegistry;->backwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->(Landroidx/lifecycle/LifecycleObserver;Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry$ObserverWithState;->dispatchEvent(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->(Landroidx/lifecycle/LifecycleOwner;Z)V +HSPLandroidx/lifecycle/LifecycleRegistry;->addObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->calculateTargetState(Landroidx/lifecycle/LifecycleObserver;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->enforceMainThreadIfNeeded(Ljava/lang/String;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->forwardPass(Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->getCurrentState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->handleLifecycleEvent(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->isSynced()Z +HSPLandroidx/lifecycle/LifecycleRegistry;->min(Landroidx/lifecycle/Lifecycle$State;Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/LifecycleRegistry;->moveToState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->popParentState()V +HSPLandroidx/lifecycle/LifecycleRegistry;->pushParentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->removeObserver(Landroidx/lifecycle/LifecycleObserver;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->setCurrentState(Landroidx/lifecycle/Lifecycle$State;)V +HSPLandroidx/lifecycle/LifecycleRegistry;->sync()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->()V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostCreated(Landroid/app/Activity;Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPostStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityResumed(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStarted(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->registerIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->()V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroid/app/Activity;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatch(Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchCreate(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchResume(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->dispatchStart(Landroidx/lifecycle/ReportFragment$ActivityInitializationListener;)V +HSPLandroidx/lifecycle/ReportFragment;->injectIfNeededIn(Landroid/app/Activity;)V +HSPLandroidx/lifecycle/ReportFragment;->onActivityCreated(Landroid/os/Bundle;)V +HSPLandroidx/lifecycle/ReportFragment;->onResume()V +HSPLandroidx/lifecycle/ReportFragment;->onStart()V +HSPLandroidx/lifecycle/ViewTreeLifecycleOwner;->set(Landroid/view/View;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/ViewTreeViewModelStoreOwner;->set(Landroid/view/View;Landroidx/lifecycle/ViewModelStoreOwner;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreDestroyed(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPrePaused(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityPreStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment$LifecycleCallbacks;->onActivityStopped(Landroid/app/Activity;)V +PLandroidx/lifecycle/ReportFragment;->onDestroy()V +PLandroidx/lifecycle/ReportFragment;->onPause()V +PLandroidx/lifecycle/ReportFragment;->onStop()V + +# Baseline Profiles for lifecycle-common + +HPLandroidx/lifecycle/Lifecycle$Event;->downFrom(Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->(Ljava/util/Map;)V +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->invokeCallbacks(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache$CallbackInfo;->invokeMethodsForEvent(Ljava/util/List;Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->(ILjava/lang/reflect/Method;)V +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->hashCode()I +HSPLandroidx/lifecycle/ClassesInfoCache$MethodReference;->invokeCallback(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ClassesInfoCache;->()V +HSPLandroidx/lifecycle/ClassesInfoCache;->()V +HSPLandroidx/lifecycle/ClassesInfoCache;->createInfo(Ljava/lang/Class;[Ljava/lang/reflect/Method;)Landroidx/lifecycle/ClassesInfoCache$CallbackInfo; +HSPLandroidx/lifecycle/ClassesInfoCache;->getDeclaredMethods(Ljava/lang/Class;)[Ljava/lang/reflect/Method; +HSPLandroidx/lifecycle/ClassesInfoCache;->getInfo(Ljava/lang/Class;)Landroidx/lifecycle/ClassesInfoCache$CallbackInfo; +HSPLandroidx/lifecycle/ClassesInfoCache;->hasLifecycleMethods(Ljava/lang/Class;)Z +HSPLandroidx/lifecycle/ClassesInfoCache;->verifyAndPutHandler(Ljava/util/Map;Landroidx/lifecycle/ClassesInfoCache$MethodReference;Landroidx/lifecycle/Lifecycle$Event;Ljava/lang/Class;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onCreate(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onResume(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onStart(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter$1;->()V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter;->(Landroidx/lifecycle/FullLifecycleObserver;Landroidx/lifecycle/LifecycleEventObserver;)V +HSPLandroidx/lifecycle/FullLifecycleObserverAdapter;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +HSPLandroidx/lifecycle/Lifecycle$1;->()V +HSPLandroidx/lifecycle/Lifecycle$Event;->()V +HSPLandroidx/lifecycle/Lifecycle$Event;->(Ljava/lang/String;I)V +HSPLandroidx/lifecycle/Lifecycle$Event;->getTargetState()Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/Lifecycle$Event;->upFrom(Landroidx/lifecycle/Lifecycle$State;)Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/Lifecycle$Event;->values()[Landroidx/lifecycle/Lifecycle$Event; +HSPLandroidx/lifecycle/Lifecycle$State;->()V +HSPLandroidx/lifecycle/Lifecycle$State;->(Ljava/lang/String;I)V +HSPLandroidx/lifecycle/Lifecycle$State;->isAtLeast(Landroidx/lifecycle/Lifecycle$State;)Z +HSPLandroidx/lifecycle/Lifecycle$State;->values()[Landroidx/lifecycle/Lifecycle$State; +HSPLandroidx/lifecycle/Lifecycle;->()V +HSPLandroidx/lifecycle/Lifecycling;->()V +HSPLandroidx/lifecycle/Lifecycling;->generatedConstructor(Ljava/lang/Class;)Ljava/lang/reflect/Constructor; +HSPLandroidx/lifecycle/Lifecycling;->getAdapterName(Ljava/lang/String;)Ljava/lang/String; +HSPLandroidx/lifecycle/Lifecycling;->getObserverConstructorType(Ljava/lang/Class;)I +HSPLandroidx/lifecycle/Lifecycling;->lifecycleEventObserver(Ljava/lang/Object;)Landroidx/lifecycle/LifecycleEventObserver; +HSPLandroidx/lifecycle/Lifecycling;->resolveObserverCallbackType(Ljava/lang/Class;)I +HSPLandroidx/lifecycle/ReflectiveGenericLifecycleObserver;->(Ljava/lang/Object;)V +HSPLandroidx/lifecycle/ReflectiveGenericLifecycleObserver;->onStateChanged(Landroidx/lifecycle/LifecycleOwner;Landroidx/lifecycle/Lifecycle$Event;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onDestroy(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onPause(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V +PLandroidx/lifecycle/DefaultLifecycleObserver$-CC;->$default$onStop(Landroidx/lifecycle/DefaultLifecycleObserver;Landroidx/lifecycle/LifecycleOwner;)V diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar new file mode 100644 index 0000000..18357e5 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt new file mode 100644 index 0000000..4335578 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/proguard.txt @@ -0,0 +1,26 @@ +-keepattributes AnnotationDefault, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations + +-keepclassmembers enum androidx.lifecycle.Lifecycle$Event { + ; +} + +-keep class * implements androidx.lifecycle.GeneratedAdapter { + (...); +} + +-keepclassmembers class ** { + @androidx.lifecycle.OnLifecycleEvent *; +} + +# The deprecated `android.app.Fragment` creates `Fragment` instances using reflection. +# See: b/338958225, b/341537875 +-keepclasseswithmembers,allowobfuscation public class androidx.lifecycle.ReportFragment { + public (); +} + +# this rule is need to work properly when app is compiled with api 28, see b/142778206 +# Also this rule prevents registerIn from being inlined. +-keepclassmembers class androidx.lifecycle.ReportFragment$LifecycleCallbacks { *; } diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip new file mode 100644 index 0000000..d28ef4d Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res/values/values.xml new file mode 100644 index 0000000..cfedb20 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/108/jl/res/values/values.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp new file mode 100644 index 0000000..2b7d7a7 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109.stamp @@ -0,0 +1 @@ +C47BBA77001E2603 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml new file mode 100644 index 0000000..86fdbf5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/109/jl/AndroidManifest.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp new file mode 100644 index 0000000..ee72fc4 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110.stamp @@ -0,0 +1 @@ +EF37D2C4F931DC45 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml new file mode 100644 index 0000000..c78c260 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar new file mode 100644 index 0000000..de755d1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/110/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp new file mode 100644 index 0000000..31eda12 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111.stamp @@ -0,0 +1 @@ +E91950BE7DF3D9B5 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml new file mode 100644 index 0000000..d2ba992 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/R.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar new file mode 100644 index 0000000..59db712 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/public.txt new file mode 100644 index 0000000..e69de29 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip new file mode 100644 index 0000000..4e98974 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml new file mode 100644 index 0000000..55344e5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/111/jl/res/values/values.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp new file mode 100644 index 0000000..e90e5d3 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112.stamp @@ -0,0 +1 @@ +47ED9431E4E9D223 \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml new file mode 100644 index 0000000..4adb174 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/AndroidManifest.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties new file mode 100644 index 0000000..68ba633 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/META-INF/com/android/build/gradle/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=34 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt new file mode 100644 index 0000000..86ba3fb --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/R.txt @@ -0,0 +1,207 @@ +int attr alpha 0x0 +int attr font 0x0 +int attr fontProviderAuthority 0x0 +int attr fontProviderCerts 0x0 +int attr fontProviderFetchStrategy 0x0 +int attr fontProviderFetchTimeout 0x0 +int attr fontProviderPackage 0x0 +int attr fontProviderQuery 0x0 +int attr fontProviderSystemFontFamily 0x0 +int attr fontStyle 0x0 +int attr fontVariationSettings 0x0 +int attr fontWeight 0x0 +int attr lStar 0x0 +int attr nestedScrollViewStyle 0x0 +int attr queryPatterns 0x0 +int attr shortcutMatchRequired 0x0 +int attr ttcIndex 0x0 +int color androidx_core_ripple_material_light 0x0 +int color androidx_core_secondary_text_default_material_light 0x0 +int color call_notification_answer_color 0x0 +int color call_notification_decline_color 0x0 +int color notification_action_color_filter 0x0 +int color notification_icon_bg_color 0x0 +int dimen compat_button_inset_horizontal_material 0x0 +int dimen compat_button_inset_vertical_material 0x0 +int dimen compat_button_padding_horizontal_material 0x0 +int dimen compat_button_padding_vertical_material 0x0 +int dimen compat_control_corner_material 0x0 +int dimen compat_notification_large_icon_max_height 0x0 +int dimen compat_notification_large_icon_max_width 0x0 +int dimen notification_action_icon_size 0x0 +int dimen notification_action_text_size 0x0 +int dimen notification_big_circle_margin 0x0 +int dimen notification_content_margin_start 0x0 +int dimen notification_large_icon_height 0x0 +int dimen notification_large_icon_width 0x0 +int dimen notification_main_column_padding_top 0x0 +int dimen notification_media_narrow_margin 0x0 +int dimen notification_right_icon_size 0x0 +int dimen notification_right_side_padding_top 0x0 +int dimen notification_small_icon_background_padding 0x0 +int dimen notification_small_icon_size_as_large 0x0 +int dimen notification_subtext_size 0x0 +int dimen notification_top_pad 0x0 +int dimen notification_top_pad_large_text 0x0 +int drawable ic_call_answer 0x0 +int drawable ic_call_answer_low 0x0 +int drawable ic_call_answer_video 0x0 +int drawable ic_call_answer_video_low 0x0 +int drawable ic_call_decline 0x0 +int drawable ic_call_decline_low 0x0 +int drawable notification_action_background 0x0 +int drawable notification_bg 0x0 +int drawable notification_bg_low 0x0 +int drawable notification_bg_low_normal 0x0 +int drawable notification_bg_low_pressed 0x0 +int drawable notification_bg_normal 0x0 +int drawable notification_bg_normal_pressed 0x0 +int drawable notification_icon_background 0x0 +int drawable notification_oversize_large_icon_bg 0x0 +int drawable notification_template_icon_bg 0x0 +int drawable notification_template_icon_low_bg 0x0 +int drawable notification_tile_bg 0x0 +int drawable notify_panel_notification_icon_bg 0x0 +int id accessibility_action_clickable_span 0x0 +int id accessibility_custom_action_0 0x0 +int id accessibility_custom_action_1 0x0 +int id accessibility_custom_action_10 0x0 +int id accessibility_custom_action_11 0x0 +int id accessibility_custom_action_12 0x0 +int id accessibility_custom_action_13 0x0 +int id accessibility_custom_action_14 0x0 +int id accessibility_custom_action_15 0x0 +int id accessibility_custom_action_16 0x0 +int id accessibility_custom_action_17 0x0 +int id accessibility_custom_action_18 0x0 +int id accessibility_custom_action_19 0x0 +int id accessibility_custom_action_2 0x0 +int id accessibility_custom_action_20 0x0 +int id accessibility_custom_action_21 0x0 +int id accessibility_custom_action_22 0x0 +int id accessibility_custom_action_23 0x0 +int id accessibility_custom_action_24 0x0 +int id accessibility_custom_action_25 0x0 +int id accessibility_custom_action_26 0x0 +int id accessibility_custom_action_27 0x0 +int id accessibility_custom_action_28 0x0 +int id accessibility_custom_action_29 0x0 +int id accessibility_custom_action_3 0x0 +int id accessibility_custom_action_30 0x0 +int id accessibility_custom_action_31 0x0 +int id accessibility_custom_action_4 0x0 +int id accessibility_custom_action_5 0x0 +int id accessibility_custom_action_6 0x0 +int id accessibility_custom_action_7 0x0 +int id accessibility_custom_action_8 0x0 +int id accessibility_custom_action_9 0x0 +int id action_container 0x0 +int id action_divider 0x0 +int id action_image 0x0 +int id action_text 0x0 +int id actions 0x0 +int id async 0x0 +int id blocking 0x0 +int id chronometer 0x0 +int id dialog_button 0x0 +int id edit_text_id 0x0 +int id forever 0x0 +int id hide_ime_id 0x0 +int id icon 0x0 +int id icon_group 0x0 +int id info 0x0 +int id italic 0x0 +int id line1 0x0 +int id line3 0x0 +int id normal 0x0 +int id notification_background 0x0 +int id notification_main_column 0x0 +int id notification_main_column_container 0x0 +int id right_icon 0x0 +int id right_side 0x0 +int id tag_accessibility_actions 0x0 +int id tag_accessibility_clickable_spans 0x0 +int id tag_accessibility_heading 0x0 +int id tag_accessibility_pane_title 0x0 +int id tag_on_apply_window_listener 0x0 +int id tag_on_receive_content_listener 0x0 +int id tag_on_receive_content_mime_types 0x0 +int id tag_screen_reader_focusable 0x0 +int id tag_state_description 0x0 +int id tag_transition_group 0x0 +int id tag_unhandled_key_event_manager 0x0 +int id tag_unhandled_key_listeners 0x0 +int id tag_window_insets_animation_callback 0x0 +int id text 0x0 +int id text2 0x0 +int id time 0x0 +int id title 0x0 +int integer status_bar_notification_info_maxnum 0x0 +int layout custom_dialog 0x0 +int layout ime_base_split_test_activity 0x0 +int layout ime_secondary_split_test_activity 0x0 +int layout notification_action 0x0 +int layout notification_action_tombstone 0x0 +int layout notification_template_custom_big 0x0 +int layout notification_template_icon_group 0x0 +int layout notification_template_part_chronometer 0x0 +int layout notification_template_part_time 0x0 +int string call_notification_answer_action 0x0 +int string call_notification_answer_video_action 0x0 +int string call_notification_decline_action 0x0 +int string call_notification_hang_up_action 0x0 +int string call_notification_incoming_text 0x0 +int string call_notification_ongoing_text 0x0 +int string call_notification_screening_text 0x0 +int string status_bar_notification_info_overflow 0x0 +int style TextAppearance_Compat_Notification 0x0 +int style TextAppearance_Compat_Notification_Info 0x0 +int style TextAppearance_Compat_Notification_Line2 0x0 +int style TextAppearance_Compat_Notification_Time 0x0 +int style TextAppearance_Compat_Notification_Title 0x0 +int style Widget_Compat_NotificationActionContainer 0x0 +int style Widget_Compat_NotificationActionText 0x0 +int[] styleable Capability { 0x0, 0x0 } +int styleable Capability_queryPatterns 0 +int styleable Capability_shortcutMatchRequired 1 +int[] styleable ColorStateListItem { 0x0, 0x101031f, 0x10101a5, 0x1010647, 0x0 } +int styleable ColorStateListItem_alpha 0 +int styleable ColorStateListItem_android_alpha 1 +int styleable ColorStateListItem_android_color 2 +int styleable ColorStateListItem_android_lStar 3 +int styleable ColorStateListItem_lStar 4 +int[] styleable FontFamily { 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamily_fontProviderAuthority 0 +int styleable FontFamily_fontProviderCerts 1 +int styleable FontFamily_fontProviderFetchStrategy 2 +int styleable FontFamily_fontProviderFetchTimeout 3 +int styleable FontFamily_fontProviderPackage 4 +int styleable FontFamily_fontProviderQuery 5 +int styleable FontFamily_fontProviderSystemFontFamily 6 +int[] styleable FontFamilyFont { 0x1010532, 0x101053f, 0x1010570, 0x1010533, 0x101056f, 0x0, 0x0, 0x0, 0x0, 0x0 } +int styleable FontFamilyFont_android_font 0 +int styleable FontFamilyFont_android_fontStyle 1 +int styleable FontFamilyFont_android_fontVariationSettings 2 +int styleable FontFamilyFont_android_fontWeight 3 +int styleable FontFamilyFont_android_ttcIndex 4 +int styleable FontFamilyFont_font 5 +int styleable FontFamilyFont_fontStyle 6 +int styleable FontFamilyFont_fontVariationSettings 7 +int styleable FontFamilyFont_fontWeight 8 +int styleable FontFamilyFont_ttcIndex 9 +int[] styleable GradientColor { 0x101020b, 0x10101a2, 0x10101a3, 0x101019e, 0x1010512, 0x1010513, 0x10101a4, 0x101019d, 0x1010510, 0x1010511, 0x1010201, 0x10101a1 } +int styleable GradientColor_android_centerColor 0 +int styleable GradientColor_android_centerX 1 +int styleable GradientColor_android_centerY 2 +int styleable GradientColor_android_endColor 3 +int styleable GradientColor_android_endX 4 +int styleable GradientColor_android_endY 5 +int styleable GradientColor_android_gradientRadius 6 +int styleable GradientColor_android_startColor 7 +int styleable GradientColor_android_startX 8 +int styleable GradientColor_android_startY 9 +int styleable GradientColor_android_tileMode 10 +int styleable GradientColor_android_type 11 +int[] styleable GradientColorItem { 0x10101a5, 0x1010514 } +int styleable GradientColorItem_android_color 0 +int styleable GradientColorItem_android_offset 1 diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl new file mode 100644 index 0000000..430b8b5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/aidl/android/support/v4/os/ResultReceiver.aidl @@ -0,0 +1,19 @@ +/** + * Copyright 2015, The Android Open Source Project + * + * 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. + */ + +package android.support.v4.os; + +@JavaOnlyStableParcelable parcelable ResultReceiver; diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip new file mode 100644 index 0000000..8285c5f Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/annotations.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar new file mode 100644 index 0000000..f38b16b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/classes.jar differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/proguard.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/proguard.txt new file mode 100644 index 0000000..bcc9a89 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/proguard.txt @@ -0,0 +1,16 @@ +# Never inline methods, but allow shrinking and obfuscation. +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.ViewCompat$Api* { + ; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.WindowInsetsCompat$*Impl* { + ; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.app.NotificationCompat$*$Api*Impl { + ; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.os.UserHandleCompat$Api*Impl { + ; +} +-keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.widget.EdgeEffectCompat$Api*Impl { + ; +} diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/public.txt b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/public.txt new file mode 100644 index 0000000..f23be3d --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/public.txt @@ -0,0 +1,21 @@ +style TextAppearance_Compat_Notification +style TextAppearance_Compat_Notification_Info +style TextAppearance_Compat_Notification_Line2 +style TextAppearance_Compat_Notification_Time +style TextAppearance_Compat_Notification_Title +attr alpha +attr font +attr fontProviderAuthority +attr fontProviderCerts +attr fontProviderFetchStrategy +attr fontProviderFetchTimeout +attr fontProviderPackage +attr fontProviderQuery +attr fontProviderSystemFontFamily +attr fontStyle +attr fontVariationSettings +attr fontWeight +attr lStar +attr queryPatterns +attr shortcutMatchRequired +attr ttcIndex diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res.zip b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res.zip new file mode 100644 index 0000000..c32bdda Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res.zip differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer.xml new file mode 100644 index 0000000..da8a42f --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer.xml @@ -0,0 +1,36 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml new file mode 100644 index 0000000..89e62a5 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_low.xml @@ -0,0 +1,33 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml new file mode 100644 index 0000000..243ca3c --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video.xml @@ -0,0 +1,29 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml new file mode 100644 index 0000000..24b6942 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_answer_video_low.xml @@ -0,0 +1,26 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline.xml new file mode 100644 index 0000000..be9593c --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline.xml @@ -0,0 +1,38 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml new file mode 100644 index 0000000..990af5f --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-anydpi-v21/ic_call_decline_low.xml @@ -0,0 +1,35 @@ + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer.png new file mode 100644 index 0000000..7aca1a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..7aca1a1 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..8eafb01 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..8eafb01 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline.png new file mode 100644 index 0000000..4d9cfdc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..4d9cfdc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000..af91f5e Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000..1602ab8 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000..6ebed8b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000..6193822 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png new file mode 100644 index 0000000..383433d Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notification_oversize_large_icon_bg.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000..6f37a22 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-hdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer.png new file mode 100644 index 0000000..ad1fefc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..ad1fefc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..0242aa7 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..0242aa7 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline.png new file mode 100644 index 0000000..3d1f421 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..3d1f421 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-ldpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer.png new file mode 100644 index 0000000..1b1d00b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..1b1d00b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..64aacd7 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..64aacd7 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline.png new file mode 100644 index 0000000..a72e078 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..a72e078 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000..62de9d7 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000..eaabd93 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000..aa239b3 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000..62d8622 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000..c286875 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-mdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-v21/notification_action_background.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-v21/notification_action_background.xml new file mode 100644 index 0000000..a9ea90a --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-v21/notification_action_background.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000..1e29937 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..1e29937 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..cbad0c4 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..cbad0c4 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000..8edb3fc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..8edb3fc Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png new file mode 100644 index 0000000..8c884de Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png new file mode 100644 index 0000000..32e00be Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_low_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png new file mode 100644 index 0000000..bdf477b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png new file mode 100644 index 0000000..5c4da74 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notification_bg_normal_pressed.9.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png new file mode 100644 index 0000000..9128e62 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xhdpi-v4/notify_panel_notification_icon_bg.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000..949da2b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..949da2b Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..35e3bc8 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..35e3bc8 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000..15aeec0 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..15aeec0 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxhdpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png new file mode 100644 index 0000000..5c060f6 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png new file mode 100644 index 0000000..5c060f6 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png new file mode 100644 index 0000000..4e0e0de Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png new file mode 100644 index 0000000..4e0e0de Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_answer_video_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png new file mode 100644 index 0000000..c6b5be3 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png new file mode 100644 index 0000000..c6b5be3 Binary files /dev/null and b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable-xxxhdpi-v4/ic_call_decline_low.png differ diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg.xml new file mode 100644 index 0000000..1232b4c --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg.xml @@ -0,0 +1,24 @@ + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg_low.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg_low.xml new file mode 100644 index 0000000..72e58ae --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_bg_low.xml @@ -0,0 +1,23 @@ + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_icon_background.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_icon_background.xml new file mode 100644 index 0000000..490a797 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_icon_background.xml @@ -0,0 +1,22 @@ + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_tile_bg.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_tile_bg.xml new file mode 100644 index 0000000..8eee7ef --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/drawable/notification_tile_bg.xml @@ -0,0 +1,22 @@ + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action.xml new file mode 100644 index 0000000..7199c25 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action.xml @@ -0,0 +1,41 @@ + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action_tombstone.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action_tombstone.xml new file mode 100644 index 0000000..7ef38fa --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_action_tombstone.xml @@ -0,0 +1,48 @@ + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_custom_big.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_custom_big.xml new file mode 100644 index 0000000..9e3666e --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_custom_big.xml @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_icon_group.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_icon_group.xml new file mode 100644 index 0000000..8fadd67 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout-v21/notification_template_icon_group.xml @@ -0,0 +1,42 @@ + + + + + + + diff --git a/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/custom_dialog.xml b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/custom_dialog.xml new file mode 100644 index 0000000..47a1b12 --- /dev/null +++ b/Maui_ChartTooltip/Maui_ChartTooltip/obj/Debug/net9.0-android/lp/112/jl/res/layout/custom_dialog.xml @@ -0,0 +1,14 @@ + + + +