From 3e03b589deb897cf70aba8b4605950f96e7c5d81 Mon Sep 17 00:00:00 2001 From: Naveenkumar S Date: Thu, 24 Jul 2025 18:17:43 +0530 Subject: [PATCH] updated getting started demo --- GettingStarted/GettingStarted.sln | 27 - GettingStarted/GettingStarted/App.xaml.cs | 12 - GettingStarted/GettingStarted/MainPage.xaml | 75 - .../GettingStarted/MainPage.xaml.cs | 30 - .../Platforms/Android/MainActivity.cs | 11 - .../Resources/Images/dotnet_bot.png | Bin 69811 -> 0 bytes .../App.xaml | 4 +- NavigationDrawerGettingStarted/App.xaml.cs | 15 + .../AppShell.xaml | 7 +- .../AppShell.xaml.cs | 2 +- NavigationDrawerGettingStarted/MainPage.xaml | 83 + .../MainPage.xaml.cs | 28 + .../MauiProgram.cs | 6 +- .../NavigationDrawerGettingStarted.csproj | 22 +- ...NavigationDrawerGettingStarted.csproj.user | 33 + .../NavigationDrawerGettingStarted.sln | 25 + .../Platforms/Android/AndroidManifest.xml | 0 .../Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 2 +- .../Android/Resources/values/colors.xml | 0 .../Platforms/MacCatalyst}/AppDelegate.cs | 2 +- .../Platforms/MacCatalyst/Entitlements.plist | 0 .../Platforms/MacCatalyst/Info.plist | 0 .../Platforms/MacCatalyst}/Program.cs | 2 +- .../Platforms/Tizen/Main.cs | 4 +- .../Platforms/Tizen/tizen-manifest.xml | 4 +- .../Platforms/Windows/App.xaml | 4 +- .../Platforms/Windows/App.xaml.cs | 2 +- .../Platforms/Windows/Package.appxmanifest | 2 +- .../Platforms/Windows/app.manifest | 2 +- .../Platforms/iOS}/AppDelegate.cs | 2 +- .../Platforms/iOS/Info.plist | 0 .../Platforms/iOS}/Program.cs | 2 +- .../iOS/Resources/PrivacyInfo.xcprivacy | 51 + .../Properties/launchSettings.json | 2 +- .../Resources/AppIcon/appicon.svg | 0 .../Resources/AppIcon/appiconfg.svg | 0 .../Resources/Fonts/FluentUI.cs | 7921 +++++++++++++++++ .../Resources/Fonts/OpenSans-Regular.ttf | Bin 107184 -> 107280 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 111056 -> 111164 bytes .../Resources/Images/dotnet_bot.png | Bin 0 -> 93437 bytes .../Resources/Images/hamburgericon.png | Bin .../Resources/Images/user.png | Bin .../Resources/Raw/AboutAssets.txt | 2 +- .../Resources/Splash/splash.svg | 0 .../Resources/Styles/Colors.xaml | 0 .../Resources/Styles/Styles.xaml | 29 +- README.md | 338 +- gettingstarted.png | Bin 0 -> 28378 bytes 49 files changed, 8540 insertions(+), 222 deletions(-) delete mode 100644 GettingStarted/GettingStarted.sln delete mode 100644 GettingStarted/GettingStarted/App.xaml.cs delete mode 100644 GettingStarted/GettingStarted/MainPage.xaml delete mode 100644 GettingStarted/GettingStarted/MainPage.xaml.cs delete mode 100644 GettingStarted/GettingStarted/Platforms/Android/MainActivity.cs delete mode 100644 GettingStarted/GettingStarted/Resources/Images/dotnet_bot.png rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/App.xaml (81%) create mode 100644 NavigationDrawerGettingStarted/App.xaml.cs rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/AppShell.xaml (63%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/AppShell.xaml.cs (75%) create mode 100644 NavigationDrawerGettingStarted/MainPage.xaml create mode 100644 NavigationDrawerGettingStarted/MainPage.xaml.cs rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/MauiProgram.cs (83%) rename GettingStarted/GettingStarted/GettingStarted.csproj => NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj (82%) create mode 100644 NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj.user create mode 100644 NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.sln rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Android/AndroidManifest.xml (100%) create mode 100644 NavigationDrawerGettingStarted/Platforms/Android/MainActivity.cs rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Android/MainApplication.cs (89%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Android/Resources/values/colors.xml (100%) rename {GettingStarted/GettingStarted/Platforms/iOS => NavigationDrawerGettingStarted/Platforms/MacCatalyst}/AppDelegate.cs (83%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/MacCatalyst/Entitlements.plist (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/MacCatalyst/Info.plist (100%) rename {GettingStarted/GettingStarted/Platforms/iOS => NavigationDrawerGettingStarted/Platforms/MacCatalyst}/Program.cs (90%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Tizen/Main.cs (89%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Tizen/tizen-manifest.xml (75%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Windows/App.xaml (65%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Windows/App.xaml.cs (94%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Windows/Package.appxmanifest (92%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/Windows/app.manifest (88%) rename {GettingStarted/GettingStarted/Platforms/MacCatalyst => NavigationDrawerGettingStarted/Platforms/iOS}/AppDelegate.cs (83%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Platforms/iOS/Info.plist (100%) rename {GettingStarted/GettingStarted/Platforms/MacCatalyst => NavigationDrawerGettingStarted/Platforms/iOS}/Program.cs (90%) create mode 100644 NavigationDrawerGettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Properties/launchSettings.json (70%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/AppIcon/appicon.svg (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/AppIcon/appiconfg.svg (100%) create mode 100644 NavigationDrawerGettingStarted/Resources/Fonts/FluentUI.cs rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Fonts/OpenSans-Regular.ttf (94%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Fonts/OpenSans-Semibold.ttf (95%) create mode 100644 NavigationDrawerGettingStarted/Resources/Images/dotnet_bot.png rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Images/hamburgericon.png (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Images/user.png (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Raw/AboutAssets.txt (86%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Splash/splash.svg (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Styles/Colors.xaml (100%) rename {GettingStarted/GettingStarted => NavigationDrawerGettingStarted}/Resources/Styles/Styles.xaml (93%) create mode 100644 gettingstarted.png diff --git a/GettingStarted/GettingStarted.sln b/GettingStarted/GettingStarted.sln deleted file mode 100644 index 181594d..0000000 --- a/GettingStarted/GettingStarted.sln +++ /dev/null @@ -1,27 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.34309.116 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GettingStarted", "GettingStarted\GettingStarted.csproj", "{3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Debug|Any CPU.Deploy.0 = Debug|Any CPU - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Release|Any CPU.Build.0 = Release|Any CPU - {3905C7E2-B0FF-4909-B0D9-C66433EDCC9D}.Release|Any CPU.Deploy.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {A0F7A2DC-B60B-4963-93FD-C16E625C0C6D} - EndGlobalSection -EndGlobal diff --git a/GettingStarted/GettingStarted/App.xaml.cs b/GettingStarted/GettingStarted/App.xaml.cs deleted file mode 100644 index 9758931..0000000 --- a/GettingStarted/GettingStarted/App.xaml.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace GettingStarted -{ - public partial class App : Application - { - public App() - { - InitializeComponent(); - - MainPage = new AppShell(); - } - } -} diff --git a/GettingStarted/GettingStarted/MainPage.xaml b/GettingStarted/GettingStarted/MainPage.xaml deleted file mode 100644 index e50de3e..0000000 --- a/GettingStarted/GettingStarted/MainPage.xaml +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/GettingStarted/GettingStarted/MainPage.xaml.cs b/GettingStarted/GettingStarted/MainPage.xaml.cs deleted file mode 100644 index 2ef368e..0000000 --- a/GettingStarted/GettingStarted/MainPage.xaml.cs +++ /dev/null @@ -1,30 +0,0 @@ -namespace GettingStarted -{ - public partial class MainPage : ContentPage - { - public MainPage() - { - InitializeComponent(); - List list = new List(); - list.Add("Home"); - list.Add("Profile"); - list.Add("Inbox"); - list.Add("Out box"); - list.Add("Sent"); - list.Add("Draft"); - listView.ItemsSource = list; - } - - private void hamburgerButton_Clicked(object sender, EventArgs e) - { - navigationDrawer.ToggleDrawer(); - } - - private void listView_ItemSelected(object sender, SelectedItemChangedEventArgs e) - { - // Your codes here - navigationDrawer.ToggleDrawer(); - } - } - -} diff --git a/GettingStarted/GettingStarted/Platforms/Android/MainActivity.cs b/GettingStarted/GettingStarted/Platforms/Android/MainActivity.cs deleted file mode 100644 index 5b4c051..0000000 --- a/GettingStarted/GettingStarted/Platforms/Android/MainActivity.cs +++ /dev/null @@ -1,11 +0,0 @@ -using Android.App; -using Android.Content.PM; -using Android.OS; - -namespace GettingStarted -{ - [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)] - public class MainActivity : MauiAppCompatActivity - { - } -} diff --git a/GettingStarted/GettingStarted/Resources/Images/dotnet_bot.png b/GettingStarted/GettingStarted/Resources/Images/dotnet_bot.png deleted file mode 100644 index f93ce025a8aadac29138413514bef90c11d892d9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 69811 zcmbSyWmr^i@aO`9r1TPs2-3SCAt9Yo(rgjJ(v2V;iok+|Ahk3SlDovxg4Dv&AfPNE zAgQzJD<*ZW6sQTX6BuG8LrW0RRAexMM;}?c==}y}SMQ>pSeLm78XX*vb`!=a=>xzKRK$R5CJdE-kb8z+RJjisi8 z9l}1;KMbm4J)?VRs%DX3_7kCEC&Qp;uN-0^4~Hrs&1G%1dEiLpzy~y%@*D>GLKZQA zQzKF9P{4_)gpD$(5xH~R!{vsgpJMvQQ zzD+z}t1Rf(Czs1U{`+k|Jk) zk)IO8uUeFjUf#Z{bi6{!g;)WQDx`DizTcDt-w&|-))udl0vxFGe39aKm#_T0P~?1* zY%)>gpsi-o!Ei{Ne#lI*Q&dO-VNi@K8Z}XBDy&9CUm`(0L8tUFG?I4U#MGbO(`GF8c~P~JO+@^3F~UA znFr19_PqK}lOhT)E7>YZ|1V1Q|1fNOvaI?)%LcES7|kL7-+)q*WB4CDzg~LY`2WTN zfgpb*`LM>m5>HxV1{<~s5z^7tSnTf7ec5@M_w$hydvsIJD1^R|$c-m)Gv4~CMm0Ni z<-FESt~~Yx{D0y$Na{YX6B&RYC3X_d-QfW!^kDjfDjy~_ezr?%tg@^mb4fL>W#>3I3#mZEqMsjS)fblwM$E^o5h6i!;Qi|lMSeB-+znC(NHfr3RgEYMDZEsY?$10X z`C>b3v^F@)rAjw75q^iGovcEYv(4!KOF8O7(t3S<;7=+N^X^TCgwtricHt{Rs5$`h z7O98EwM#rE(pK|E_{!xYD}5M#d`y;zk-psPxZeU`QTykre`fEV%aDU21dwAj1SoUEd8?a`DvF8YME;-81TR;kDlmeHTU?_O$+M} z8dlLdP9#BG_mywt7K?Bhq~2|*L1v)!w8z0A8i3k+mCR3a8gn;_{uIg7YB4JwfdQY= zEqlO%MBjzDDnD?pBu#e$J6msNqp2(kYTqS|3eL;8zvDfx35;;o^=WDf2(9g&vS&rm zyBL=~=MSMc0DO^Jb#wP#&l_eA`V(~Ho0x3FYcRmbKMqsf;ce}-vEEkF(eYi?{_I_c zl#JJH%Hj&^o|OuUJ8tg>*B;NN+_qisrW#n2&ugcYUg_ovf}O1nFabmd{rXPpS_0*a zx88Lnlu!a-g5wgjx}Q=spYA#CrSn2rF?v96T9W1XuET|xl)Hm2)wo=t%=!%xb=Tqh z{yYGySo(MCH6fa#k2V|^B4+;Hk>J&Br%nZjg16NHtw|jr9#NYQ>iJ{3&cTja8Q73f zk~DGvtPWN!4T(a7302VGli=9GPsv@M!)``^<}osPo58NzoI7~`GRuS?%Mu8{v!=`_ z4fioSR-NL7@EJI=e3!ZGNBRuvZx%V=*(!E1}5pH{T9Gx~7_AFqC7>r502ie+n8%D%NrS(AvAkV9UuSb}WZCc-sKo;S1EXWN zYk4E9q3-bT<+(3^rk zpPay{$6yXy-Qmc;4Q4|< zB~SVE$C887uAS!y783c?063scQpkxdl*4Z6xxLp44;QNZRpX>ISyz8erzt0KT;W?J zMTG0XWp?<}vaKl*VDpnljWBAhA057NcS5jV9f!8l+QbWg-U2*Oyt7ej2mUPS>&2Ok zeI&-UgI?S1k>7~!9kNH_0LuhhuD#lE19Uxa+OJV9L=T@QwC+jBvLi&&g%2=^Or^(6Q`?sSG=0J460+0q! z9F-C2m{ywgSuq#AVnVH6^5frc_2!!j3fl9`U?3ooVkby07_5sflg>Gc44M9_bu4)t z)g*?!o4|$w$bR}G4i|<=Fwsn_3HJ-k6P%AbO3?l$7eC`V-}fTG5xGBhEhf+WPV7UDu1te_TF>UjI0QInV!HK4*9-yqA+66NgcE zQ;)Fx{@H}TNFI?|RlL zAr$}3#=3PfW0bbdm~9*Hh_o^kGUc(3W;f2{-7GG|6l*bXsuyPo$Yk)@I!Bw{U|YqX zDV{2R_^D)I+Ept3^JiY@{+Pl3sK@t#qk>T1=ljWrYah5@-r@VFC-<_GP9&XejNf~U zW>SPYe16fVjNLr?7wc!p6!p8lv?r38DB;g6qO1?e&-;GQ&T6l09gt|0={Nen2yI`i znc)$01wF5wfVC@(voMRO3xiUiJxstA_E0xwV>5?$#dh*Y)g6}vi($C?<;Ny#%(TU^ zd=n(HaT8Qa#pRqcba;0~b}A!>;^fI(i%S8gM8@0v`iIh+06Ha7SRJ!gjk$%&)knx) zz)QC#i?}8s(f@YEt7!?vMoyZPWuD_eTbk6hoUR)LKtA4!Y}j6THAZ&u!ton+3g z({k>(7(ZPXbis7O#YC;vPp>z-scE?gIZeVg^g5PERW83={`zs03dyVJcNvD$?Afl1 ze;6UnY|IdH-|0}=-VS|eT+8y{SI&e_Sq8HfG};N&WLL_1w)JQK)0YefX^WGdhmv1j zXjK;%*(dY_ce19qf!_KM_j5yyGfaf7RNkFVmn2EOSvO~Ve6&9+%4;o6ZgYQU10D0PV?SqyB1X z8CPG^*6owG#S=)=6?n(Q_5n-?Y`RF@DTyf6kxcz8cOBW(CgPumIeUB`)=3!V{CFBp z31fmH%Q`wb^4Z<@Ne6t&V*ZLI!n7JGDfRo^rqP?AEw}e4QYMHPN$V9dMG1~d{h37I z>mGQAY`f?Y#1Z$f;R9Xs0z65|dfi*Z6!xu;1H_0>S zcDsXdx1UR&FJD}JvCgN5#gxfE7nu7puKC@9M9tKcZAG8mT@^V5VOlQ-l( z-}t_uK@&yg?!%57Kee;T#@qsQZYhN~8;vV}F2T77`Dr|moKZD$&+qBb7tf;{ws0>9 zt>m{(AxNSe`+tR^lBD?agqY^4*s1jU=l6zSdDidVS4nZ!=_==I|GD&LzAy?5iW?FM zfbvR`%1YlfQui^UR}SNsf&Ltep`uA17GZINND-ykjbG<~uYt<9!6Bnj4ylXSd#>BfXn_u zE3v0!BNOR$#S9vcM5$UrY2moqsnGDvwT<403=+nj?N|By`#pB68VbH z?tF@3;QT7WnA}Xwd@9|ia*KMAT7y!5SpFLgiT*~R9|3tsaU}kLyi)u3Pm7JFF6O!d z@sa#(t-w35&<9OZ(fmlqH~yG!LVkHyT1S9|r$X97LEu zIZ6q~htvxr4L;r=+37)Q1zAWJg%S8GYMWy^savRo!BRvnwx`Q-pj(qAvt$VvE3BP2p7wCuhDg}wBH%)0bCJ$_11 z8ZHbOwRQ*Mf;knmr~W$ozD5XJZyz;3rvK4E$)8}sdo4Y6szKU zh~)bCzK0SoKb=|iML-Z7p3H!6dxvK#FZihoVPZE#ZoQ}tIqlTHabI7a?Ov+j zf0brF_4QFZ)T5%g+8gn~^ZMYKm|@ZfiJj+vY5DmP{2grRvL-%E&}}faz7Bki37x)y z_szRcUO(-r@KOi*YjvzVS^To=S|4CZqvg z1h0C$Gge*ST{ECgm@xnncU#)-F+!aa>ner)Sgq>nQA!RORh z#?&K{#5bK&i#|z!4}bR%)}qhZ$sG$*Atdz|t82+!Zc^~d6p_SfmrOMoWF=o>*B=jJ z>T{32+f(#+zh!QidqeQU%5o#5P+qViEzKYzv$m`g|IRsW--88;Q?v2+$4qqTZ_34T ze~B!^IR1`HgX%%kr_E|RP6)Nq8IhY*(>Jz7(owzf;vg)nzQ4Zg?vr$}-+lG|YxQ$w z(WMqs6a{H@6h^tV1zcE773UP|SbpRlKO=~Jv6NH^rbz*_5)Bc!R%qN@%qlB>`n$_z=s6RIM>dUzC$^i8+ z1j)iikJ3LiR0$i|=_Mwi{-D*0te&Gx>wuG81Z_jUG&4}ySpgEQ2Jh&xKMPB(FSxy& zr^LtcYOiP|^PL7B?>TP4x)mSP?VHzY;Pp=iLt&3Vv`Si%oW-w*oOe5UV0hj{M-UBs(aljpA&xbg{H4x4C|eBD&W^PAUG_lX$eCecSp}sEwX-x5L?y{! zXyfCB$)|&dQQtx}O)TwPq*4q#`nc{LnsOMQRbRoI>q@_}?NEjJWG*8TRXxzgL^t6{ zi-PE(nxqRgM&YZhG6*3K)eHQKMh=5X+F3z9kR1n&6KP5TMAq{?- z;?-ivZ47rcnZ5g)$zB+g{W8&3?Bq3lY~Q;EdZ*FSMDnRFS4dlA?LDkLclht~{+l~- z+C?JN2^{X1-?E>5;~ zutp!BQ>2rp0cjYZS-ow_S4La9bFR1E2gr*l7<@l#dR_w_$bJ}J>MK5-vFGP(+_w6A zdZ;`ga^W>TD_YAD>5$gwfQ6#)dg%moun&o z@oqY>I!L=UMMgmNB>$WEyRoVcqOXzmYe&gR*^PGYh-?=!o6k?&1Vk;lkmWie6_Atl ztlAoJ8&4fLo41D*A5wI5G*52UaIKj6oY^vXf07ZdFx~Y?23yG z@}E?P4?g?F7wykvFtV)CT`w2Ye79goeSX9AmF;kqDXR8_)1O^`STeHN$<(vbmzg_B zt8BH5P5xofVa|NX+oed_TRcO8{BIhOO&oXsGoY6KL)+0u!er>)MW2hDn-dEg~u@n$I?8B}zpT zEPoM&rho$;qS-y$Dr?j-=fk9EUZ8wBq_ED5qc)!AM@{F+893!-AI;$_-p}8DxY>N% zmb-a2{E-kuZp~^!rw-f99s&jHDdY>8o7u3&;8(4C^l0#ILvR7nhfD*a6_HEStEnHB z#fl*BB;>2v*%>mJC5TC8S?E%4Q?I)5l;R1>uz~CnpyE9H1TS z;VP*(1sNMNjPt`ok|yo~ZdA@~DhT^zDd>XQL);E$2K_Q!I=fc0nT0rAxZ{5;FQe|d zr~o2UQkz^Rr*F#6n(&P6;ELSk(8z4X-T5JVGQKB0&ih}$f6vtyX}m^~Tp`OV6^WO*L2z*qX+u2ZdHRquotGt@ z?{0zfl58byjtdX zxSiM8>0aCQ@8bFlr`;`YXftyA*63=M8C-?2cGD}-U*tY>NEn54aJ>1MfQNY!6&<$r zAw|YqwM*xHj-@CUDQl7hxD89lJ+O-3CpvN@kDV^UWOQ}nhJNKM2ld)VMX{Z#BVWCW zeqxJm3&tLfNkUAZx*w_gO$VukX$V=~`LPXR$|V=?zRdmjZ2~n?`fI*f24=@JJU4^E zw4^N>^_5Sx<>LjaJN$~=t=+L6u&fj{8`SKVn5XSr?`s)q`>gyPjjRlP^dm>J4nZq% zr}JSAbO=q!L7z+{DGUv?%OSqIQT4Mzok0$&H?f6Gxm!bXlz-7&m~4MUB+s(V^Xn#3M zkOP=Qf8A6j7FWq+q-OkTJBanp@%@Acq{bZoo}9-`-)^6<5z716z~N~Q>>;1}yonKA z7d~Fb+G5>no=8I3zDa1(+gga`y3ItkOpgLqQieqd!-B+bNn~ihW6@jzDfAu{ zN)Uv?>cINXC@)&Y?O&-V+gC+4R)ED`ouCSEGG3DD4T>JY)7lP-4cS z=inLl^PU(P!PfY2GA=W5o1#CWK^bySO`xaUuvFGy=O-i>-)c2&I1ADI)_~=Cu`nnV zjnOMhE$<__2uzUB? zre(URM5Dn6c0JMl?B^nx+S_&)!}P*-Lzd={`-(2EDw{cn(WTEe`eNa4 zq|mqBW7;GgwRm<~M5XJeX!fYR>;Awu*@c;=ETpHQyu>?iGVcfnO{LWjBv$wpyK2|EqYGtV1WeWlhf3~yZw5hTn=0?Ys$DbE`6fz`ft6Hydqt$Xu z;Iz54>x{>lf!Uy(@?EADB@C4ymPYbzYNdle-u3Artbt1Y1JyHDfdsl{;a$y?<|IMu z9{Ajc(Eh9Rgs2+h!b-=^`45Outu6<40neKQ>msk?W8o*O&7MIC2gzF^0%xcyjYmt* zRp867&_e1k$3g1mDz5>}bGo9t$=F^;RJ=6Qh$Hq%3H0k^+BoB3~araGtBtz+2PfF0|1>hLlekn;cr zgSM(A)^Wl9c&+0?5h-G|?9;%bu|fD0YdjE__Io%pzjNOz4p;yDH1XvlgI85Q?Rb9t z%H278lk0w&@RZgBR|)v1d@H;O1M3WltuY-?{VW}H7N3Qwz)bw?2`XR3P{}ZL?(8g^ z8@7p%F4;avnKX3(FL&ZArXhYWSQqhn%xJ?!)?&U7EPt(sY&=%cZ|w`{{-(Ug+^iJF zXRir!(%>U;ycImT;kgw}(U9rzxJV07(|^KdgBlXvXoq(xvh{m_0Eyl{IFInyw#z2wC#WAp3Jdmx1HP{s5oHSKpog zD*Yl&e2FQ^qEFKGk(BqR(J+**BiYfA04vTAh} z*ERAxlzw2Z?;rMKRrulif!4+ZsnvI#aCYG?tlI{SSeHHu*QnqsYL4EbqM6W(P6HF} z#y_3A3}zobV!arZlRqQ5&#pg7o$-cCi%~yUogE|KL=a#St9H39%qI=n^jJn)*1yg; zY+3teT#%CwP3(L_-taV!#<5z$mP(I?jk7SlHh|aWxVYoU^-Z<-I%vea6XdWFr6RyI zT&gI9F4wKJJ#=$%`SxSkmSYfJ;$gVPd{#$qp7v^r>Dq^80;UvANpL5Hb}}WxrD)8F zfB(uQ3DUl(C1P3s_)9#eg6lXkfh_TWhPL$q^Z*%xD1>yeYkq z)EhiZ7*D!V`-p4~$GAt2e0S(G3Mc7g_yt_1f1`ouT4t0*9j!|dL}*8MJ-~NyI^`MT zYrSO-{bk~Rgt`*f#^TDY{hUI{-3EJ^Zik99f9Jg28?VRI$<~EqGs-RYMOM$Nxa-vq6HB>Pr`Y;6CtqBCDE;uz^FW^XCH>s3SdsCz z{#U%8J5|u*P4F-~q+9PRGp|%i@WK4wTDqQ0z*s_jhtq^}E9lE3;-`lhzL1O>Azb?c z{C!$}X~4@t?Jb$FF49^Sh`wRDrHA`dIWfcq2v+|J?TdmR<=BO;>J-GG*8qPYCT@gp@Nzfc?n@TJW%3P<3VfCU^vV9Zo=FM%vTK$`~^(I}t`q%#NHxUfP z_f#O+ta4n)FaE9+)8ZtIXbu4BQ8Xq4tATR};T?*a?lEQ1_O@t^OnN-^2XyGLMbnsn~_8 zgn*ZHuS91|Gesr-`mmLW`PJZ;IV);@cdgM_$TWH|qyobT5&X!prpGPIi?A<{u4q=7 z$V(AEN_VF4VmbCih;8Q-|4sZZxd43C4D6ThF#Q}Y|EchC^rg?Q=UW5!u)YisCjIf_py}tuHONc5-b#Z$br5|b6A{TV*(m(y4L)&g zAdbz%EZn7-%f^Z=kB~mCCFN5{25rd@IDH$e`@p0vLZDM~l35IzhszOrRc9f-U@`WW zHVc1X$V`M|-s09V8o6YrH{7>IxfWYc48T`))DMAS(j+#oTwhn-8OIG9eiU4XkL&nJ z>)Xd96F#wj|4>-+* zT(uO`H>vCG#_hCqNr{HPaddGt6Od)h`u#f>lXZ0?CBGqE#b_Fu{^DA{sK!2T2qAX7 z+sc-cj;k%cM#crUnV3~g8CI?Wv`=yK^3pbjw3W_k!f$e!K&*Tp50tRSjbt2i-n_NX zfm3vN^co&0Y?qCJKS6Zr{+>G===8ICo+oPO7>ZBq>VfTJ16~w;PEYqz|1l%Od{tqCe?dZ<8S zGxj1S3Px_+| zTf!CzPE#Wm>5YlOZtlntYF_l)mQ7GV?xRLqO!#ug-Tb++n8dXWP{S88`rpUaml3xy z?cw(2i5q`5lE}GFrCOd2U2Pol^sZhP9C7N0p^k^qDjD07Yu%=LgNH z;1|y^Dt>2{7+A!13$4-mz3@7`!^$~c!hOM}&V|u0+uVfs)J^C zH#?z0aSRN=zOYh*^e8TXWV9zzirZe5i(Pg zZ%$-KX<1B91V=RG*GzRgi93KrXduJtmXb(={gI7Ak&F2BU<&VXNwp;O@TxWnob9Gw z=9}~@w?~|9MT8)d+D3-`6k7v+BrC8hT1D{$3MO-^A_3Pm4qXr@ z0Nb}{Swv`1e-9U)7u4`QkYUI0f^Dl(+qRdfKmsq!hb-c76ABF&ILFTS-$&`S;wErS zd@&C1D$Kfm!Wb6mMc7?0w&S;u6Mh+SB`o_QS$vaP>z?g~?+3xyz`f%7TU%{Wy~#f8 zYnOrdu78}dd5my^H%HQ?-;GXrNrmY{6qS3bX9e8P5tTJG9R$#e?aDOnmGn$&^ry#(bjC$71sCD^l#BfQ+Y${xj81;9frzrzhhF z3-VN`>6z%~IS4k<-fz{Bn3sLqGMe5xjsuq=rfUt@G$ z>CdqqHDENwhgTQ%^7E6ExYpJ$e~6!rROotdNL5ckQ(0(MzvPl}KkE^Y#`)-~Pc!8k zMKwg$eyPA#D+CmdUjo(9=BUypM@D_}C~07ZA{tM3{25*LX0AZo{_-~dCMm3eY>&!B zq+PvTb8RUuV?A|h{#|(qec;gyyyYG7fD&|F)V9;=CN+wVMn!1#Z-Mzmy(k0m(CcWq zq#H^kQ6h-gU-H?Tz<;x5a}Ix~Ph8-0%vc3wQ!9E-n6qQjGd#33aQBUU)U3?5!Q0Up zF`TpUx?unlTu$S6pgbL6)?2YzVdbHw^vCY6o0q1{rc{7r;$=$xKu4d*+Iz%^hxwv@Ut@Pfk01t+t9$Q&e>^aM}p$G=qbm+UCT5{>3 zFW5Ud?<%u|@%QI)H0IposM`d|M3{kDtou?c{W?g7)px8T>xIClkh4MxA^mY)G3;im zo2zSP`!F7&ge+}!OBNBF74Z`J#f&yh|5VRHnTnsc=q^R&p%R-E9p+y1qQ4GTg|WtT zsZSc?2CyqP7p)DO1xMlBc^TZarwuOH8%A)=ant$LH?d2lrG$5pwN4rje)ygVOqaa- zS<=wQV$B+TZ3dXNP+hNX7yt;YzSYK@2G`xLtCk02BU#uz^9XFj-6!>k>UG5)oC?g>$S~j|7DO1 zI!f0PUWviKM|~0lotz}(n4&Ul`h`^5&awq#hKdTWEkomtWlZfl#>H&VlgBot8a}u8 zjAlINEOIiQ?zE1YP!ttgiT!jMN6>=D+gApj?k|dG1m)Nx`sR=P!VyXxU^oI+Qt|}G zl)>hC(}Z_Z$Y$Q~ZM_{y4VVJVQh$&u33L}a&8eG8WEB+4I3s7P%9)jGZ;ZH+n?K7;dC2f>eW@ zDBq0&*1Bz+gC#`g@XE9~idpmc+3;&GZ<`jtKeF;^cQ3u;8|l=;3W zyT0u0SzcaQg5WRZKl-&V{%wTfcTcILh@*4$83MFa`rWX2_)yJ+cHVm{qnb+d1@p6= z3!P;65Bl%+o0y^>JXkiHzg2=pk1IsoY2gcusY3S04Y?S;YES5xoen(VAOrbMhB?u{ zaqV32>5KF8OzunHpZfrRR?vw5hN_+yrhK~U^`XlR~rA{CIJ;=0q@qsN1cM;e%b9Gk&*<<+xfvc8_tYK0?5I~~8Q^{(k z9#7=3Dx#~W;`~{&htZ7k!KZIGZXo&lSG(P$t(MM`h3p(-ug@+TI6f`obF7-ZHLE0) zkB_B;iO%qI@7wpBzNQv^ZMF>SbF^aNoYj1X2UKRbKz|2sxJ7ES^;ge^jJnMVC_k zFt~0?^WlspSn@QKrT#AqO+RUcIZ-~&sGa?P%u)y`x-PmjQnz2d1jmP+<}txhUM=WB zeLl>L9~pWJVWUaAL=P5a?~>b)TO$y*MRuDYb?dz^dlYGq1J;;{xc2U(XTUo+qudnS z6NHA%&-wP2!0V)lk|!-v^ea=n*7BEdBkOgcmyZgCfAcx`+(@3o2kAiCm=02_6hx>k zg@^H9QAsqQ+2IVr9K5>gy)ZWeGyunAzZh62QqU&VHur3=iO1o*>>1(Oe{6lN!n#mZ zk}S9~y7j)n48{Kob#Q#hLX=X2$5NDn2w*>QaA9;)OH1I-00%H1nB^35gNX>wZc|r@ zl)p}`3SojMuYc?Ue7*YgVhhCK&Jp%*BG*}Tbx4nuOv!6=Ttm6R;|)E|?RG`r>y7>? zT_PqU+W)6@%eNOLi5tzPfzH8*($?KJ=zq5Iw!z)H)z1NV!BptCCQuSwO~1Lj&woDl z)q^Vn9C!GUd54DPdtv1-@}!T^$2U;NO~GLCs)!~&WH?7UxiyLTHg&W50Jzy_li}`9 zMpO8`bX%|)P-Ahq=z%Nv;aee4+k6D{dDAOY6#UI3vfU3A$%$PTrm4LfLTRMlf~3Ez zyUGe>S2ItxjhMB>)w^Kl-}-y|27gIuv$9NOW3#9laaEoszl#6bkU)1`DHm1uarP}; z8E;4AD~r(N;xXHg!FsP*$)4o{-&>jA+gQtZ%?qurtDt3xrzxehQM<0ZF^4G)i&?+n zwLO&Is^i!h$u|eeM0F&>O@XtEHX|omR|aZU!SC|6DZBKtJhTI^lch}cOTDUtdT?Ov zEPUw;DgPT1P}bkRd`RR}bPTG9E!h~N1~+9vrxg4iPN`Xa%a081i+`IwYJw{?S2gAQ z$BDcq?b$#?8mXauOLw@OTB`5w(nK`MD^(^7S-{#0uEW#DYYtnnz`?l49C?0 z4ETN3;NIPE8S+XqYIYSn%Dj2hDQ z_le1^mmC}k2jTeB)a#(VbJaGZfpcV==Lx;fSR52jdvXJY3#m~rskj?*W2c%HS~S;N zc;6W#Wn2wPhF|RAVg9c-7)Km8h^8OwYcdLie77>jj{Q(e*<5yx*jLP-;!dJ;pn-aD zsuwTQ@l%dq;gOB^y!%)D;vn4PyNKTkUN21A{6_01ap}Id{OEhwWaasJwNr1Jv>R>^s+ij2^Xb|o?UCf}Mf`tMX_xV-Beo)+*>2T*|E^3I zwmKZYVt)!00GGVI?gx{lo}Ak*dR>Y~Jh(LZXoo5OV-xUt`b#=_=hcmuxWIzi42TJf zZ2Ze!N=Xg^+=RvB`tI6f1!Ma?JHjn!v@K2iYM3z#O$9A3;y7wGv4WB6ev+pu1I_l$ z!vwCLB(BfBg&@#lrH#p! z;PXKg4eHGK-66u+Cd4!JQ)IFZfbCDC%atbGQ3fPr{!E43!BYRUI=*G(toB@$xI?h( zxRngKm8`4|_YZ>1?Bxp(LvKJC^toRYAUZ-eN}g-wx4mWMnN9+w>KS5&;8d_e7IY!x z895K7A(uue9qtzlOXJ$099&buOT47(!;cjkDWCJzkw5j%#lpCQmeEqZc97QXwZ`ps z-*!>DmLD3SUiB`uSsc`!tt-?n?DNGgK|zEVG7nLo>RHon-kR6K9)jwWs<0ri)Q&0w z+ZOgIYxuRPm!pLiwRs%8;l4q)#WW>0w)W%CafmvQ5981Mir;C`Bm`bX-GdQ_voEtc z-w4Gj9N;Mm+~7-E*wZr!{PE7rf~+SH4$BI5? z>vva}nDIaLC{VM_a~KUX`Tpj3s<{Qv&ZO-qwK7J%jPLO{ubflZ@m@qvN zz&+1+a8FgPFq;~VsUXD_PAg&dKQi51=2@mryOr<}Z*1~Zg>1wNAoxab$F&kQz;h3Mh@E{R!iXkSeS(( za6cRViM;V%E_TO|zYfl98jY?vrg!LV@~-4ZF#p=2y1Fgz=_JQ5zo^LVsjNzzg3L(a zFDb!PC&R8A*HS~KZ$b&=FwXm@EWhtrHmqC~o$hNi-%`1!-1z(zt3d3l;{yc@w4*(q zMj+wku9kT;0C*#f+-@=SXNThafqd}wHLONB+iSQg@aFN8ji$4kcZ09>L+v{!^G=5> z)H)dPB`OBUZwDFOR+?Sz1JdlMdoa?0Qm7g6W%r)OnX@*T)8So}KJ0J!8=t^0IT4S6 zd`@!?{0WW@5`VO3CEI5EF3PP>>kL2CN#*@38|SU3_(X=T(9;T{WutIcr)2zySHICK zt_f~lbj1B#Pu56VErrBFb{BY?UB3066T`knauu30MG=3-k0f1LU;3r;{w6H}H zTb#hh)5%8+m^Iv8lDY$I-7Kh&8rBT|XnB{kQ#sI43;dT*bM9aB3ifHi(`w@`QDgq$ zP0%O6l%hzbJB*2@ou07tjwm+#r>+CiVlHu{9Cw(hbulms3~MM?rrF$hVud6Y9$=YKSLFLhHIuV@Fx>SHocX6)8e#P zO*@ZV7Huo`%H3$hXCxjbs62fa%Mk!cKv>04QB8h^K^|QRqX)+P7A^NZ=2-yyOZ$V=&Eg9cNq>& zdidN*Gl`Jw6!!?*rz!7t_vN!U>6~juoUZ~gZ$LLuCI%&Op&aohc>oRg7DtcuJn#z(8Xn`)Q(RBkr#EXOxXt#6wt2+1*)Wys(;2@m2trU$yJ_O zm`p>Tou)S`;iN6wVXqKC3jR4e>Hz8D0K83JE)oI_Ir=|?>j@w$i^3*~-D1XjeVf>3 z$4*RxZTLrnVMn;quoYt_O9T5wjD3Qz0(zGb75>az>7sqYGLu!3K*cg|@3R*sYf zUXn=946__?vOvA&Mi4AJB0zD{Xj;S`aK-qLC_~C0Hhd?GmcN0ZS0#$Lj_KW=NjeOT zSZ}MLgKty3(qxt1G^SdX47~}qZ4R@}_Z=T;DuPv90fs=Y)|_t|Tt0-b4>tL=?%IhL zM=+KG+i^H$BxMsY_nW-f#_jhsnuUMjys468 zV`Mv(p9|TFId=F@_h}!gJsQR{4nzJzqKgBQ#WOqlwPD;6#nnla2O+p_vnd1SEcNTM zi~eRbtciI8Lmu>32zMD6#xkGWo(_Re2rR zqxoa2sD>{J8`)jk>k}G&v;$6reO2A^mw$gPNQnDgmcR~+NDEeUtHxQ^ganiVRr+(w zr*6fC8jdETH0#+tYgpsn`2B&lwLnyDh8TB6`p-OYb;12nZ0dYWJP*@WkZ7lJv;3wTCgexvj+Y0=lXjWf)opuLHAlC=vqak-_kbgt_%MQL%0dca|oNb|*pUfIhr1nLFLY?auzR zM|1d6?(ItQFXZ9Diw;`EMOS852DC>m@HeC+t!T#o@x#8r$LbOA&cZ8G*OHP)Ws{K4 zkwMGiX+?fRnBDun297)U!EtE^rVjY-12(M1=EiMT+i3BsXUjZwL7GI|2#l!zfw{l$vI@xTD@9>j8 zu#-;ih0etRR^~C+RL$2i-pWw&`xTf8D1s?1E)Y@Xa<;yj(`653qKqmG{2FBP>+ws2 zG_Nzvg=1Ttu1UJ`k?8Q|xW$P2;qDgzbe|w5VG)^ft1Pb|el^E7f^p7E8UC6R`n!pU zbf^degoZ$pBorc9ajJn=IMCe{a*tFfDGa|v@Wc4D9$zgSV0P5V*#Hq^4nB&Gh8QZ}bEzwsri%=t&JoO_wvb5xL{Lrm2mpj@rm~n$2 z=MS@e4Z}YEXm(Pm6=Owez_?fubQr&(nXub1bC*V`zjx2Z)z#D}DpFy~tT=u6K98^# zRGsK}K_ulYIU4!6lJ2;{k=r}bY{c`r3gyCvdo+8xjik{w&rD z!>R;TA_G)SUU*F5!TimKk_AP1wM6BHWG_Ia)V-?YroJu195Jtd8Pqh0qY#X7ItEa2 z%FIf`pnT$Zp`oB1>+j&kr|Y^Aj-4UxtM;_))4d9+c!hLCJ3xmKWqdxA;XlP&hrU`< z2Eb%OzLEBrvH}j(OO)-gw`rg+O*~!;PGyXqczJ(4^Yi}H=k4u9i%AFl$ELDsApYvd z8pv$aU2f1LqETk8M_>YLR`!JZ1Ihzlg08j`&&-WXE1X(G*-ChOB=@PdwvRanUBo}a zJrse^XZDVdk9HrNJAzvvp)2=~z8bEK->_O<4OxEtQt$`e{5OwNrET^^&KJ6!OpsC> zvh1(Up%@`eKyiE-y{6NaULKoP4nmyoj|XrH?pm1+Ga_8}BW)X0Ta;^Lk^sJHIsX^% zRit54_Zs`s&?T&G^W%#=U`2C3i4-mT9jUIT13bJFsT*oM4L@uE14a5=2hJ_yx z1DFv>5aG!Ae*PJZx{|8oVJU!VabT^!k^#qJ0^5d{+z|A=ER$~VhU;&2t?wG&z_WOEvArv*$g*XQ)4zlvtR$D7_F}Vh1)pLPcljJ?$CjbwveHLzkX4A-% zYcuJy`)alON}dazRnQAH9E$6C+!o!ftnvYkoU}MlG}j}y`I~&Vt}mfbvw^p2_Wx7Y z{D?Pp6yePWI6*5|aR5pS(faL+Zj`yw)L!dQnNNf}z!Hn{kLF{m36P%0aVDu9e>v&4 z`_@fF{wRp8RPWv;t{f!bh2h21w_J5K6wtKDIPjby$A#E<2LZ(P)33O}tNDtIKgB)p za;MltcO9yiiwJebF+fk7zSow#7{yJ=*voIy&GFntOJ{aO+N{h93h6N8EBE6ee17XN z3Czt~jQEg;SJGf((p9-+9t9F_+v3Uiy&{#i-U26uHwFI_Mf;R{-wyXIQ8Hq_e~l; ztMBhj6FSr^V=L?er&|4n6S%Wlhnb@fYb!zLGrwa%I7=G5#!|?11^^5~UM$@zW?YH=N=q;arcOFVF0WPF(m3^xa7 z>TwhMgZp(JKyS1(+H*P?VlEfZ!9lGfgj*7WVmP$pqWv1j@wF-)xNh#cOwsyuO{w>} zzsGCOMrga>o>!box8;P6A}zLAr(K+FC{yLbm3R$sdh$q*4m{3sum`RlI;Ob%EUDb| zz$x+NY5rT5?dw$yJ%ZPdsxvielW@yLF>LMCN{YA5?u(D&x#8p#l$R4IwPV^eYk#N( zi}+{gW>mZXzkH03zx@L0NrDWf>nzs3h0 z@a{9pb@4xEKIXURO*;>yL{97XdVH}hCit`co??)78g;Mo`>{6sS%mTJ+)fPTiI9%A z^4yf|{DvPwzb48oUQILUC{XB6$RAAaf$!I^(9PMYe%Y_ittJQCn8zl^%c0cytX>gF z5bIC^opl%h-ZOrZj+hKIKR|$RVjm!Pt7o#_^Pk+e!n0+zpuWSWw?C%M?(_!#@bRVv6ppur!v`&czdGz{X0KPrL0Wzl zv68Ld{o)J$wUs96{KoJeABioqwk%MG$uU>G?V*h}(FGH2?iEa*e9;Oj7r=C5aT z%siAV+~*h$w78P(bC+5Jr0)^l#ui^=5Th?b(juJAP*1gc3%^F8qR>!Kac2x$nD#Ck1W>4>Uz<7(G{RmkS~jKnILNlu7Pc(l3La z#X-8(G)PPLa6Y9h(9S2vOTe1F@VG7nMZhFzY|%g-53r#g2ky^`M(@ww%AuajL>F$o zOJ~F@!EC;HM`5_V0E4;<2rG5|+RD(RG9WbI`SunYl8hd7H`q;nJrqT><;w?ldg?Fs zehzwN<;Z+P@84f_P@qCY{+rcburWOlk*&2GuU?x~V6f)Y6XyHl%Lt6UxtgWII1ML- z##{&8SFtL%`e06Y|G)inQ3kD znjA-yOLAx5k9PlI5zj0~k)`DiId6ZReP31inh45b%IuwjVrvT+GiPTGc)1Xqz0Ml4+vt$_ zPbm97AGR-x5lsus1b>VEwiN#P?C}ZlTh3*Va!twGTI(-91)xEq^fa zdzUCD^icnHkowdEW1lE;_Nlxw;6CUY%78v|%+@du0hquqtGZZ``MmBCZLO;lJL87` zZNC>zIpOnrAP)93%-w36q!zDV%T;ROx?`#)=2wD0AYw;7b#4Snwn|u&X*$dm5;N@N zE!M9g!#Jekp`M_IwI*I-KA9~QcCWX8qV#6pe0*r^@9?dopw zt@FYm?0vaXC@-Z~VZh#oW!85f-&fxf|G~sG2)oImD`Oq7@J##xZoM7Yjow?heH5HP zV{@;z{;|c^DZOKG&&_-0w+Y73*<`XyP&z>9xn9_|DstS(tBhS{ldNk{AA4OZ&S&u$ z$_J6e#z<_RKm6Xb`Q>e=mnS3P5pHG_{q{{3g||-`Qo`!|3t3|$YnJNOn*Yjvq%?HE zr}u?{YG=L!Z+1zr0Y~@iO6NCyzSKRoa16ffBYs+BQ`eh!n^f8?g&e%qSwfx)7Cs3cfy%%%!mn$YY1X1Cq zoycbp#f*%{j(XH8 uDz$8=4J3KBpR#)!GoApHdEnWEb$4h_h^)5AN5gM#OAQM53-5++Vc{$YPseWO!rO<+xJ*CwHE&uf>gn9y;^zDOxeDU-Aq<5UXd45E+McY>+K4a1dE_=nT{rZRqvl9tUP9WLwiug!N} zQsmQK;;Kzvtl5!{w2Q4VgR7j!4Ro_~6Mj^7M4?n+33Au5C>O!OP_zhp_Jv~=oH8(* z*UEn%T_2kMU#`=0z;up%{(yJ;oT*@TDeB&l|BCDpuX5t}`1}gK5YyXJ8v6FVzc2s^ z>+ZB`Vd^Re$Y_GxvqwUFspCFVk5B@)O1h`Jgs7p2dgonI7YIYBXcJp6^pbQYWACOE zI7wzsjuWi1-t-nf_36O$swfJDnN&pu+xnpQqqBCx#O62xJN&78Fb%YuaV1sL+4v+v z-n_eYMgYuo3F-F~Nn!Qnfw>?Z5H@OJl<#%=1E=`jPR9gs%zHTzqX}=%T!Am)I48525=;&o-wT9&kO+Xv=Bit>rHY zBo#h_gkIOoHlB~BZ|ck0KhHrGF}fW`X(WqM+)dxCeDt>OiTr0QHCHeh2jgGtc7=oe zLEPlg1a3p%BLQ(ig-kYZ3>`P9D|la`YT5PkO#@Y}{_xqz_q5PWv*3?SOrnwQfe7hj zZG)0i((0m;0iSvA-!50MFN=9|?-nM=E7J@8+AONJ{po}bkKf)@3VC`D8>#+FMQb_` z<(Q-jP)k6roD(THH^g>U!AKz?*xVWORMUh^&!QnTTl zn+6iDuy+o6yf3dXlmI1}tKr%oymdBF1;x{^j$Gr?Pp%vCTj46uFWNScz1!zLbS>t@ zxmkvi1=WMJXZ^Z!_&i*5?bhz(N>5d+n>YG(rmIsjf&qR{Hj4QK(sIRcr~eXi41I>+ zC1{AwBxTm+J#he-DJY%GH+248S969IC+VhxxFEvL-=apwwbz%3FNniaw}#+uuD` z<6?Zg*Z?hXqN?B=n81CFKfOJ`XT-ozj%eEOPH|8AtP6{RZ*ZyY4O|G53a#Il=>63yJ0o{sy^t>OP-kM@3yqjio7 z{?jPb0H>+fs*bcp_wcFk;7X40G8H)lfd)~0lo1P_4>$X zAEcxzUh@5&dOEmf_~mh-Di)sy=MdsZ)1SWb?Fy%e4LdU5*TA>pTXn~fVSy7 z-Q|rx9S5DXRauNY4v(fM8EW}&eTvJxvzj4647935OV~v6y43#8jw{5@q!bk5FeVYR zrL*-)E*tg9Z`q?u*K3?4;JTmpgcRX-`W%uRvYZ#4ap0aEoq-R5&JvcDQxjlFEa`2) zq0ta}OtRxXWH=*Uk40Wln`9gwKwvT>fUS(2MQd7m0%2V04H6exoe;zN9j1cYW{G=Iwn3irkMUejG+d# zUm6b+L`oISz<7g8UDZ8pXaGr_decpOCj*4hID01Y=BuTeOqe*tvukXQp`iqS%5q9@L*9g{rp1CY%hH$E<@iwD)VXd9yh>|v`5KF!L?9m>*Q z6u!fP0L2{ERMVt-4bM&T-K_TntEsy#ijGjWFCF94Di9Zg8+X$fQAG_^%+ZiT8N?5x)?8k&1#S|glq6}qRM%J!9@mG>0oh_q>+HXKts;Au-MFW|u=k zVr4M7Md`3I;N7T}J#TBfxDT2I{@#U8_)F45?2k zxF_R%Jjo08v*lCDI2x-s%D9Y3iZDL{UZHe+P|@!lsfAE5mAO!2Z05jzZ`IV?{+eNA zbNII;(8tF|&9}U{hc?u0y3LT!uj=gwD~F35k6sSnK`(J+g4_dd`lw_e!_|~0RdK!Q zv&lOH#WsqHRlXJRQ!x7GKP2S^C=ZqsnF1Sv8BnKw7`!M2%og0!Z8LTP#6>{qB482a zo@m_}G0Rf8H>R#+J^bbNY)wt75E_MCkVA4RQ{M6t|8Dp4Q$xE19rnOrs3tphKR|%` zn!%Jw*1@hOYJK4*tf2s3w^X($M9(}C0ZY4-!Z{e`$dcs&^Z_rHc4qFHP=^&nU2Wd# zEqg4DAE(?W3v%Vjwv7oCBgqYn$C#M${*;%e?LLeyK^aJOOO-(1`-UFcXDPC!sHYc* z6*l%CLf%yQ4)^d)+QxeNc+ckawW<+#iK^`p!kxr1Rebe+OyG+i`yEnhM|%VPullE{ zSxqv5>ypoeo&(H9N^_sS+DP2Qs^U)miJ$M@+p7q)Tg%~{at|VGWP>rBa3ZjItt#FG zy)K);LxA40#2U%hVbY~t8YLL;F|my;?yasLz}{bz6f1?CV_ImtyuC* zIL)6wKQ#5^vA6FlkVdb_uYgSF?iGua8<=!8h8A{8qXzwK_yOISw{M^hSgvMP`tAN1 z>KE(+53o@RFpKg(eR%$|iN%I0@$LR>+nlBX8Pqlo9OJHmtS*OHwgKjaaw=8BTK&wx zy`Xb0`vn*AnGWj!oQ|*iF6o#2Ql98FnmM@(qP>7m&o|Y z*{i8dtc3kUn5*z;lI20kkuGxSh;(?Ki#`4PTEV^MsB2H}`82YXr<480ZkxXgxk`K+ z$xJAd@?q@H<{kNtw`a$?HZdzc71h~ddFkT!?_U`Z^<70%yIWIm=e=}s(ktPAfMe1< zJs;Gufw=C?hRX{UqHlhhF_t&OwAv~M7m~1^`0w~PM}1_}<5U6hH7F9d2XwTa?c4Y9 zs~I#NoRxbQ@s_^81FA?NG$xRI2PmSkJ!ZRDpXjj%ce#CwuN`0FD3i&j+PBs=t~A?& zbg3x7ak}4)h&O6`73}KcNcq|(=jtQ(iDG3I~O~K zbL8WCyZ`S_=jr=z@eE)mVErwK6D~8ChzHhDi7&rfeXc8u^Kz1JTqb>E0?#h`>~2k^ zaNtD!df5`m;&*?f=Bis!rGv3s0veyJ8%R5NB zNzghR6XAFM#40oqM_ec~=6EU{LThc#{RnEk7M*LN)0l#>fkOy_zJ`e8Rakt{{#Z^x zFL9c#p(N;rwG@hzxn7wc)Lx2st-ex~nk{lL={xkYp^Ypk|6GOu*w_|xsy z+x;8Pe%h~c*-wvO?w)<>IDa)U`TOOmv)?~vRs4~UmTYyDSJrO2;s12ouT!IF%2}2KB!zdztHw`Ez9>x9zL}uq_ ze{IT%fD#KC%CVgBzB?;%kg#-7R{>BK%I~n`eLcBg3y<$LEif*UX1`qR! z)qbW^qbs`n;-hrmE$@=~tt^-KdaTfWe6^Sqe&p-yeP(<^lg!^1+ByCC=-XPj=VlDk z(;7w!1_%}vD6M@RhjT%sbo zsDv>*xtW_?B_vT}$WnxYwCE-Aw^W(oTMla?0`q?DAadb@l(D=@6OJIqI(h0P zj<;l{!a_>`=dbEq2*so-cmJ@n!?cdgQ_=?t@<*@(VK){vq2o z7iYXxZw9V~EqdA2j1WdfLNhAkiStcAYqSZa4nL#ba?)~^Lg%{uj`grS-RA+0q4a(a zSGDQcE!91=(#ePKt_*z01bLj1Y+BB`vq0XTT?{^OLRkj1PK(D;R0%Q3k!2C>rdRd5 z+D+SVv_#eVVrsn*Uh!EmL#8?_eCgu0hP4zYQD(QCBvCKJ*RCnR%?Po)c0vWU!pfmC z>F`Z8BXJ5&wJQnw5gIU=;B>ElnhsiyYm#GVPJ;|9)TOJdX~>v+@VnABz8{5ZLk}0@ zWtm@(W?@-0kS5GuehSf2*p8$eA7~s3)?T49GA1TAor|{nrh6x+TkS{>xMr zf-auyHkgrk7N_|AHP2D*sL6GedwTiOIqM8s-;jaq%aJ|9w@Q%{Y|U>j|G)yarr>mG zw*}AIRqjj@8>(yLQ-nfV6fVv22jMT5J+0rN@DBpcvnZD&Oeyw7!hB;s4kmK;<@KDT z?mg>dN$t3l?XmK%;_TJr+30{1im*ezyuAJL>m`)B4$j9T*|<>^=W%ZN$R5oKb77cE zX9W5`pw4LE9`@Iql;?$Eu@{T4RonC-3=b5?VO6|M+pt&$*nrjADkEe6{_)0B zb|4hSe?_920eTI}C6k+T^^x#|K(K)(lRc8%a_F^%JoJVv2mBWCuR+yKjRu+TQwJIF zEUE838$CZEb#B`phj!D^@3s^-=c5#*S3XJ2Ree#5Mj4PmUx#EcG3?Y4Dsmhc_g7pG zUL@Gv1s2>Mgl{V}B+H{LCRP7}adb7+GM*5MMElmu9#8~t41>y#bKW=kcM3>Q_u8in zguDM>B?)~JO)|G^EJt~adN&stB?92Jdw?-wijx)iuoU%*8{b|E|1<_6H2KeMWU+{e zXZ-w2QBft5AS1MBgJ@@IZx#FAt2{D({~mMVKFQQMJicxzT~MSaF9f+PqN6{s<@gJJ zBiszky8DZbJwEeV{iE{#G(2OKiBA9IUf|qlD7~vSlQeTV_fK;1WOUbdOZ|g}^RASm zahaj9!SPP?pN)8z&@UNkfC&$<=`!5bf3ENJ&NUB?WA?&#Y6jbMVlxbX*EY!SKeP&? z*kWHYXc|mLuzRY5w>9k9t?cLx*Km2ET3|Dvd0PE7_Wjbs`o2}E2FFV>Zg!!fR;5AY zEWUINr4g2*Q3xCBwNPCaFHc3yTy?NQMaJ?$kA@~r=WoZgzGgaGHdFZ9Epc&5udmi_ zP)uR!QuvVGkGqb@5r;)^F}Fm9BY2n3>2F0K&&`cLrb|cQ{R$teO3_cl!IZO6J?1%= zt?pe67djr$9dLWh0wY~%C`-Eodky(HJ`hY1?&T$vaKj42w4hKvtLQ@pq07=K`32th z`X~Bl0GvFNYR2?e%lI<%Xtz!KkarC%wB5Iuyv1#ZSMB9(mtbm9E`Rpcs^CuDg$ub; zpCX{R9&U1T!^QG1oP3-ug#!rnXzJ>t!EQY1VecM*ovdBj9AjMVSZk;<7-Nvb>I(ePZ>p>MAcEatOh>(LtQ`dM=d$46YS@suhL^3 zla@xtKU*(vpwzXcT~ubc{CE`)X}}tJP5l%fg9Y>~Y3pn5JtcdlWhFhGyqg*ccFYcAf!lWR>oMm`OT4y)7UF&-lb)@1rDfl8}WN`h# zP;>#AH-kS(Vc5K8V(Hf5V+KvGlmtZ~e;}shsUQ*?+YWq(4M?;q-58J{7&fNwlU+W0 zRN0A=KHR!Jesjs^P##-&vSj}F+0>PmW&91DpUxG20}t8wSmQt>dq!Xgxri2bbj4|8 zuK(E`6WKmQJT0tqi~Y4fPunWL$`-URvrUmH?z>^DDA^h~7>D$LFx91bH5PZo0fsPt zZ@BLuGm%B%Q{d;NLc>RcV<5YR{IzC5??f0>-P*F6tH z6(d4tN{d~BDT>8Hp+#vhYBqaea(UMhU1~NV@ol{0@f~t6LtVGV*rVsa%IN@X>(ZI~ z!nZ*9i!F(_$mpx?cfH*}nV~eoF!|yxbc5nt*uU;Dl#RJ{pYFa^au#mYn^~$ibs#(g>KyEYPYL|LpLZ`zAMK#Jk3aO$mhi5PMf$?RQ;inVk(c?{f zZ)s5h_IqniwhEnetx8>MO-L3QD-vA`_ermz<{$l#rSK*7@4TMyJ1XOlJ2^=`V3}Gg z#xs`7@59_5+u%gzN8Qe}i_opz%J@nhD+_++rTV9|ty@ZSLhck?rUUbet6*?oYb3J7B?WFD$X2fX^L*g#*YT;2ymgz-)xsTW3b85q%mT_v z(dBaSU<0UO?4vs^;`W<2dReiTpPt`6Z(A4~=`l`KkEw)WjAaCD(pt`+1yl6CM=h$h zowQ5hXGmM{duv3D=hY~yBPYW?u?PPW`~B#_xm2e2Px$M5g>hbPv(Z==MlRYSk7Se! z2-W}*uEO^15=6D(jC$f^X{tJ|K43RIn+IOeF~gZybTDa+oqxM`)pkO%vkzkqj~hr z@;;12QW<_{7o)ST{6`K^`lSr|ELoqLV}7GR5)ir za{OC|JgAdc-+9s^8(3G(2yFAP7)VjX()_2!i+>)8qxumzjcPM`(_s#9EH(5FwPnFze?Lni|4QOFM8@REc$U}h`Wad-Qg|CK4 zCI*fsknA$J4VZ*B^;Vhr@1i%l)P*k|o6bsueb6_NaR4*Fa0fq%-Q9SGCO$d$&(iiM zlui<-zNtk!;F4pxxyOv3lZ$i$j#CICTYY4Q84;#sU|A5 z&)(L#7(AI{AX@lzKCiG0;NnJ4hi_D`wM{vjA5Rio6RA*j+7xQQKVqN97;VE$Xc`8- zck=lxdF1Kz`hUcFx0{9$_y&Cv*Z3fiU3KH)
FP@;w?B{&oSrEpCdNP#e_!eXjz`4~vS>AFH!jPh&ijUqycXd93b_H->5uJP91-E8m*P zk@m=|<8MPn7aC)qbA9)Q?|5ti!%rD6U9&OtQA89xMoCb7|8u+|kqvoPlFbWCU1Y_cA8sk5j|Y7en`AJ) zLn9u?i9`IkI^gpM!C&X1wmbq1bsKrt^aTgX&R$khaV{-TvaYrk+}ALKP$|Z1dI0Ob z&9B%3o}l@t+r0z7e6QwqRch0Q|4%dPt0l-I`IRarj1ER|&V>=0);lDR+e2K?$bJLv zQO%z5KJ@lB;P`+4*9i!{nE7gVg}}ApdSf;@>TB8C?8XE8mqoE2cbv}Zi;ZrQmwU}B z1Z5H_Z}Y*|?*n>5uc(~}^9e(7+ zVzSc65#q$h1iuF~aB|35&k?r_;|cFV*f%dbl6MkMh>z`~2M_f0EZ* zqW15cH8k#D6-mNWJQwv_-p1z-`?dj-l~UJ@%$C0JgZr=Ej@5!9lA3EPmkI&tTkAzd z-$4&RTm+MxSvd}|3cl&Ct zL^&13+f#u`SiZ@iFk!QRn>Crz$DYIQt4@CwapG7B91<>Ec*+$^$0^VNCZ23fxE#7P z9UChN=PW+n>7#_qUY+B8;Pl2roy6OsoH?BEl?G?K>G4BY+T-_uZPJ^AZpkpwE<>jk z%ierPUQ4}Ex1jZWJf2O7lI-Ezvs?CIha=WqAa3dhj&*minvmbxy&)o&!8hbu*Xv-# z`9PALu7v}7b-92Ii-+}Y{h_u$M6ls6XXE+-{; zc8k7ul+*JMMl^kQGn&xUMXqbt9F}C#(>Le>9CiR%PE#$2@QM1&mAo)@7osythIj5qy*Z7Pj5r_{t zBex)PVCy0R!iG>_ZyS_oeOX6`d=4znE{~<8$Jp?HxcVGbus1BHY*P1H4~1WMpAE1S z<$L}(L8ug0TSWQuHg@g`+fBWsJ8yM*^u#r@qv>r zn(YmN>a>Yq1AbCM_IG-A+^=^`)YJy8qU5^t8B}!d-r+|F8W5Ab$%2c#=@x|?)+Xc1 zA8h{>W}Oz_kZ;~J0jZ7Tyko(tkn~l}=xUo(y?T2{Z`Ff^N9($nG)9-7PZfuP-rwLa z=f*b_g&Z{H=}P`}JlNX4sdx5=LOq?Fz9dIhfFb?LrL84)Hgaf>E4_pOU&$gv#eWIW z<)4(NGhy$1|FBKf>i(&Czy3O?d1ja{^6y@oFeYeUc3|t9+cAHS!R$ItD5FyVn2&id zZF4mbh;%U0njH|q#F_klQ66h2z4C+!Bimq4h%M_0W z!w+i2sa7s-_Gz?eX76gqZr?t=5s9Js(l}U#(v;ngJrrSakZOCR;J>6xk+EuW%OO7| zCD0*DYSTl%r9`8e{cp$@X6!Y!UUG{*UZ* zRJ+t3TCIfO%)usP7ABLO6IK8fowljZPXJ3GPvB6p1I z?9+-b5?6P*c_)}3>1D3KA-gn@VXNcebNgiD2Rmx<=8kjKM%IukXgmp@H8N#HK zGoEUz()b0O^>i6rNF0Ij$X-d+%thbwEgzH=X57^3pFg^#i3|`V;x-h)G&5F z8Drg0a!OkqY2XyFwR2jImxkpFM_#;ExiT%pB{rfAk zll~rdi3d$3SUQ~K7c6DGwTFt4rvs(dARI^ih^fi4`m@JVI!d3N&#qo+9CDR*9ZVHh zujNoz%Y^V@KaZ{kdhk09K-3^QgaRw0MtRoK!a9&r7mxd+7~0>H74#fM*dBG$DbOMw zaT_VFG~M;?I@Og%*BqEr$4V{f_auN_Sr3}?_g z2LYn&fLg~O9e(e2qKWU|-+hYVv_jl00HrtYL<_PeQrrC%!S;6$#M3RZA(8=9yuPjB z|5M0#Ye3d>eWUv3)Aq4nD)!kdreLGjxM)=ZKOI8oj5&#$v~xF@19vQg&)5f?0wl|u zh$oxhu=hW}j7F1wc?-BaVuBmw#HptyvMaIv9%G{2-Ygv{wu}0Y#;>9hEo8;qoMJ`# zRq!U%z&tfnG2Y~{^!^=_JecPkM@WRb47`zbDXeuZ6*t zgXV+8?S_Xyq2Uz$2g&&{(vO=h*G_FPs%T2^JniO|%gy=>`+^ z0ePF0><0{uQAzwqR!MV2c~!_EK{yc!-m^#J^OR&iGOyP%0@gnZE@#&vQfr8 z@ZlPCu4NAZJ$P8U>vLF_B%W108|EJVV{tf`q^rQ{JnIm++6?zb-1`!ruN>F0VYcqy z;5S5~D)D-6+in*oow5VfMc%1T$1hpT-fg}@96qU1V97ixrg3VH7x%16F7h>`&Ta28 z8p-Fo{$?D1%d2!efNM#leD96F zadJZa-{aHh1A%z2Ojz80yPu(imFuC-LE`Xu=ZZ*UOT{J~<*@TwQHb6SM}^<$gy23A zjCHZBw|Tck3(%V_Sy^=cBa1G0z`&5W^>C>kY6-{{AOzoNw0$xAqh%cJ)B}Mf^7x`y z;Vu^;&r8hiQJ!)E z347PG3rcFR#^jN0ql>C4VO9gHPbNJdi*_m1fG;##f_xlH5#k<}d#e+p5^We8U3TxE z^1?jSrc&a|b@$dVVBWod(XWzS^!xb~b*Ho~^8FoW4Hh`;>9u*I0ZrwoZ@cG7hrKLGO(9HJ?t#i5F>Cm|(;C0TyWcH3!rt~$wir!K<&n@(O zuOJDZ!x8E_@&#(WemV`m-9o{y#h=U!>w^MVPMs9do)j60oOqF15ONhW6Px(Y_mBcSDvS z0~@%Jc_uYZ`~g>L=yIQ6#m<8E_OaR7VPapwj2omanVZHj(-j7AW9LX&1;l{ z)NgnhK}ValoAh0(&05{y6-Dv z9ERm;4f9nQqy_ASiU>{n!;%TJ=)m>dnPoP$Tu^eA=p2FKE0PIr+q%r?$8+YeVPU^0 z(^6)cJNSsVu|f7p#CO82OF9SdZ>1m*UPpUtZBm$clV*K*&<77!QJuq9R;au)^x^Py z&Sum$A3m*#ON=@}(l>2$Dt+5fh$MItDIm@9FKWK%!L!~Jz!lp4UIuTCqk}#cdi{Tf zq>E-QVcMAnEDUd70yM+5rwb+WXwSeiYddtpsGB?C~cTRi6;P@Z^ zqv*WD+4|csZf|PErl?U#^oOG8w6|J`6ElguM~$NPrc@C{?LC6TD7E+AB}$7@RLxe6 zqSZI=|G6$#+X8cb=D#Gk8lJ*WF$=ldPf@7r&^ z_nwElW{oOQ7jRu)k_Q7{|NnC`Kq?3J9%qAakM_nn_CAENjT0d)e!EL$drZh|I9xpQ z_y$8K=L=Qs*1GGjym?)hNpYHkw+@&V))oQR$tO-47vX)OTY_*ieT5a0@veO|3B8=q za}ch6Q`U+xy? z?tl7;p<4bpFqY>poLEBfnw~qllg&KDGQrFTA&=O^SY_HfWSiF(a3{hSY-4524hm>v zYshNitFZUhUa--Veim+y71~1(uhf+O_p<`cQ%bI#rvwXP#~alNVJX1U;-pu6EzOJy zJ~JkVlEoiN)o&8D>Pt>Lr;AOe6_+(>eR$9S5%ji$;f{(Kr9p!=HT-m3=n1sQhc7gCa#3QEJ zRoE~FTy;es?rO00!YqXhI+~yOVXo7zCBKJc$0c3Vi5qdlwsiY`xl`FI27Rb%QV|u$ zmWa98p{0EU90`j6iNiHG;!b+Xh994)Ia(>4?$>w!{n77f;o0`R+``0Sm9aC)`#j35 z{$hF9u|)XKm-J~epz?T64DQ@M{qXMrzhgQuSM?`rMh-QY9hL%kGmk&07TDzvS$ebJ zGX!6>oO*G8ZFY}m2SNnK(s7A)YM4fV?Z~+F>Y_2EF#+6*6lEOM19`wA0}0& zCUL0KluOwl;QAjUujOe-X3FbF`-I@iKry9|WRx&5ywBH~v)aA_3>Y!K+Vt=tMG zZLELWi@lTHyuUQP=5ccP>Ad^zVf)eQD@v!%t1kn{lWi}b)R3i#Ex=oh&&a_iDK zprTFe&%M))x|-T%T-3hqR>_;+MxE*pS~m-Pe(>u()O%jqEw4%3hmU#cbiL{6Q|^rT z`qS;jC`uGfM1jFtqAODlG1=-!ck9)4m|3(e@qzC6Z2DKPd*xH?QK(4$9~#*d`5E+q zOA-v9_)X~@RcBHS3cH+{MYP@Ho z@Py*zbLX#Dk$^{sEfp>j2>$!E)MqiI_RhFekcm%i8^S*Ssw<5_`mvtY580c)@di5VqB6<2I8KlUYfE^ZbDh}g5`X&p z&&##D{dM;T>e`{1-nWb|(3Sq~{&u;r#IxJ*q&LncL=J&%=|>5XA=p=Cu9_L) zD+9%YIo-E%081!sQooB!UtR!fi~ph8qA>R3R918UvfxDohl#Y3qB&maZWo)ub-W?% zhvYyX*?mwq>9AG6iy8Q0^fb{g_%hO~Wjp*q;Gh73b`&Y$&mQ4SXWZP}_p+9h;6Mg{ z^g+t|v-B^UTZcEayXdTt3k?Hs7QObk9BT)vf3o<>Tf58)c6xaq_<%) z@`!u=_RYes+zFIPlmNf59lwgDQ6vF#?=M!B@eIiFK!;FUR~?1Yaqtte!kf*)&{=wl zsC>4Ad`ome^Inp-&wP2|Uj~-bunKs{@!A6)kI+HA2-`+(HroNA zNEC$++LjzzqK5ZVCo;~Y;Cc`{${K@=!NfG2Bl1AekfjefDQZoLPvo}KA4#}*gE-1> zFmHG{vFMzc{*|@1;YQq*xVtyFwqGAAUt2dY0B$dY&54|^)oTs-phnIWGSmUQOm1Hn zj<{j+Zp(u?l^Ir*EUsqN=t^@*eR@wx%#Dk29G>eF*ivTfML14W)*OnYL|REC?CT#sDLI5)yt(e@ji_ccCnf;) zwhJQBd;>WsVqlpRN0h4*%JT2KCA~^cGb6?RjFg}yB5sw`C#tPSkZY$`8YP$czeR0anGL8F1FBT2-F!>gypIz+ZnoXS1_<@pW$ZH*yZCyKp zZO9w-<`C-))l)0?7_uB3Ht^=`O3iBk(@@l=_yr{QRo%xLyntoZU3 z@EVg&9wTGfq(PEu%7!>L_L{*E**8e3P9t@w%sD`H#S zERxYLjALr|$ISV$;ck=fwaR^=Z*;>?K>Svo>9_tT<5!sF^ghr-W7O8DtsfZgK?gdT z6XV+$Gqj{>-y0{&(}!?$CST^wgzYaP4Ngrw4pnzfc&`DFK@M!m9@Rhi#W5;gJJGdv%N)p}v zll3x*P5QEO&JwKoXZc0zd86~gXN)BQwxS+^cbhV{EfX?5>*acCHgI=V1G{fld~)rh z0`BgkmNIF92X}+`;2yY}W*gGEDw%fj@2B%oWlN^fi**x?Gh3!n&amfl`3!Jj4k!UJ zsTs57+?Vtp6;7o*JxUwS`p<6pT8)~9=+*{|$t4f6t;-3vQiupBA;vfehy(Y4#ggto zZqfG+pev^pyf`c`B>2WVA=9b9LEKfCr;1us1jAP`#mr)^3oVU@M-G`@qR932T+Nk1 z@JJ#tNkHi=?&$k{j|$NFyZ4c=vh{$T1oB4qz3#*dUk_P)HTYM~eBpV$S;e~9$C>NI zg7aB4rlh3m;0``U9Z3o|jj$xk{Ivh`ok#E38CVXRI#j8yv1C&v+~Hs5;{$E^3}dPL z*?L><;lt!OIR@-7Ew@QY1)@lA`>IoqU`+Jg;&Ri>=b#T`MBIe^D-3WN&2xkU)Zk}` zTp0^(vq;3+S;Xn-xzb{)PM^tB$!|PFOh9h00Lx-mQ<0B@i;x0Ktsai^R6ZzXOzmZt z!9qioG4>Ojr}jVI(?!GZ2a^!ZbAL9-V)T5If!t0DNgWyRjRPr%`QmMR4Et;#)DQ`y z$-P4sm)Mi`o~T(^dA}Eku>aF4TnZ@-ulddK>k&Tx;*LQ0P)2_n36pC@j*>x0GrNjC z-01h>Ma%sIT!S9OMr_nJ0;pzSYuMEw^rITIB;T!>K*rZ_ADmLnid_G!Bj1@he2}VA zl5KhkB~KFA!^}alC5wcI; z@%w@)Z-8#+BO2DIJy`p=>eWfpMX>u=bHE~ z`gF*2uXnBA%~oeGh^&FQRQ$GrZ~f4TC}N_w+C*OTFk7|Gy>O3?Y7ulFJhZzaZ0)yi z^#z;>Ay*c4u;1<_!Yxa4=P%<2E}du)XabpS-*h({cBCc}%1=x|M01FL7302hBr{?x z^1U<6Qv|P}2z~mGQ{FBK^R@S6qClqeB)Vr~T(Jw~PzJ^~4Em^X!5GO+%1eXQqA%~* zcqi(&>ikDrtZKd20oxZcpd#F%1!@eu=v=RV#hSG`%nTSWKYW9(WyKAM`6pa;-zrJu z-4W--iq^y+45iKc2dY#3@_Z2M4KuoSPTc0F?o1yO&0t%wx7M>WxjmTITl4J+7#%IE zPe0a&7Im+f-`=Qw^|2|{@}~V;O5`lsUC|5?a9pi`9iPre>b1_vJcHVf|B|6V@@M$~ z5~RPv-mSEUT#fA)9S10B_oX6V^<+xt`+xC5&gb+#z)D5-0WE$_` zk-T5IMc1=CHa%~jc7NwevDR~~GW#IGIM(dCw%Qe`x8tcE;%+a3FN7lp%?uS@Qs4;8 z#AQ3%ffs_qBqMv3Yh zdwXlxIx-T}#_?hZ9K>x&D(ULYL*MS7B&YcP^_k90T1%f;d<<1c6w4Vo5OUwBaMp%EM{qk z&x!Xs{1rn5;O?Qk2_qQwZt555&U@MLqFYo{oz=BSkg zn{>sQN&stOH@>P?=&^~N|8ZS`Vzp>W%CR7wp0oA&$=3}cPc2`45>94{}DFJy} zO#fV)txEOja!hpf?$O&((*XHQ+S|hOMK>dweYS^5;MIdUCUma7RJz(wjc7`M^ET^d z@wum3mC?^aWLd1c1}H8(Mt7CT<^_zXq5Q)W16mKSRNV2;OP;Z@_Ss8_S<+=J=X2}H zBX)j{&>{c&A2jpM%3B7P4h?qK2et~4BAdwTXA(HdRTIs%UJcnZad;D_i^Tu1j!zDp%|k*w!1Y?(Wje4!s*}h zf5*ea0>SGwj(XUQ1`_OD2CQuI{P9jEKRnUVCuBAyIN3%eGjN`&N>BXp4-ZQ4ux@Sp zk6TFm$Ih{Kn`{$+3SNqv(x##>H2&lGY(X93JvK%6Dbb9AkVuAY^vS#bXJv^#^84`5 zl}GP@L|UtTfg?6T&+fn*Vsk+%8+#+Xk?y`872!YLSU<{~LVE{pbBQuc>H=?c%-^mA zQ3)`6;{e2eBa!WBd{-s&?}EtIt-kNb84_*Q0K^8UO(Y5P>rf1Su8b#b0`gGxw$0Mp`~LO^V;1}o_- zi`+ZVw^G$BPDeCMbl0dgoU+a35hp;1@1la~o$(Qs8$>k0M-EK7(!ay!%y}DWff(Cf zD0Q5oREF`g)kxo0YYTf-6->(#iUr};a!-2wy1--kc%R;;mKv8a3=T0|eA0j{W)LQp|-!gQM#k;&q2~Ci=UMWW%+{ub5x~DT<`7*lh6S* zGUP|^8ww6+rY|>dIAt6q+Gx{Yh~u%3$V<8Byp4Ao%jUp81C~&tDueT9@<&WT2p`p7 z^LjD?{WTDkO=(orO-xE%(_rzia6=cPwUDqKU6K;%b4X7PVnqSExkzr}Qj!kO=znse zv>?F7!$7#~q`)>#Kop=P#M3ccA{>(-w97?C9|1mKJ>I0DO}?~BKG_|!eDimMy)z^r|;{%q*DqKtq0iH;X+Jjr29 zYvSpBK#8TRv%@j7hT@!cNeOp}8y99P~Xp*>>;t zn@*gmp-v;(etu6cOajJlf0Y($B47ZW_C5Cp&Lr5I-6nMOA*Y2N^NImKs-+Tl(CJh5 zEmf@b6P0xEq`tmN-W5!bl8A~*7%63VvlJ)MGpQq$5Odhno(^mc3)AaLj$;|Okn+_@mr3r>wV8l6@pcd zlDCHEH*T{s8hV?&vicB?`a+3spXqBTz#qV7INRAxEgUN|%)vvUU{vLtc$hJbOF-{q zGyKDhJip179sWpVI>^0yK5%xg^#0evkg&BG$#s`o#^y8O=Fyp7RgGNFdevJLcA93Y zu=41lS$jrTBTT=aYDdn?aEIhOf+5o$4@pfTEn~TXVc?=9bvy%Y&DT2VfLHb^ zt^(>+cU}f2#y-2p3(X{YM5fS25fF7Eb)tv@dI{koMhCpcybCj*Q4i^;>eAQhylLT4 zz~1hk^8;uBHmb}7%oJ_Q?>*D?dXFzQ$kV^#tN-+ky_MADgkVAQ=Qo_~_j8WTYdq*X8h8%kakAX$m;T z`SF{-Xa>}H_=dS|Y9gX3?FVLy7RU&flRn)S{N{mH6g%0A7N@|Cy{eV1d|BD;UZbFy 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 diff --git a/GettingStarted/GettingStarted/App.xaml b/NavigationDrawerGettingStarted/App.xaml similarity index 81% rename from GettingStarted/GettingStarted/App.xaml rename to NavigationDrawerGettingStarted/App.xaml index 1343b9c..dc4a7cb 100644 --- a/GettingStarted/GettingStarted/App.xaml +++ b/NavigationDrawerGettingStarted/App.xaml @@ -1,8 +1,8 @@  + xmlns:local="clr-namespace:NavigationDrawerGettingStarted" + x:Class="NavigationDrawerGettingStarted.App"> diff --git a/NavigationDrawerGettingStarted/App.xaml.cs b/NavigationDrawerGettingStarted/App.xaml.cs new file mode 100644 index 0000000..ac3e87a --- /dev/null +++ b/NavigationDrawerGettingStarted/App.xaml.cs @@ -0,0 +1,15 @@ +namespace NavigationDrawerGettingStarted +{ + 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/GettingStarted/GettingStarted/AppShell.xaml b/NavigationDrawerGettingStarted/AppShell.xaml similarity index 63% rename from GettingStarted/GettingStarted/AppShell.xaml rename to NavigationDrawerGettingStarted/AppShell.xaml index 4fceb8c..bba0691 100644 --- a/GettingStarted/GettingStarted/AppShell.xaml +++ b/NavigationDrawerGettingStarted/AppShell.xaml @@ -1,11 +1,10 @@ + xmlns:local="clr-namespace:NavigationDrawerGettingStarted" + Title="NavigationDrawerGettingStarted"> + + + + + + + + + + + + + + + Home + Profile + Inbox + Outbox + Sent + Draft + + + + + + + + + + + + + + + + + + + + + diff --git a/NavigationDrawerGettingStarted/MainPage.xaml.cs b/NavigationDrawerGettingStarted/MainPage.xaml.cs new file mode 100644 index 0000000..366f375 --- /dev/null +++ b/NavigationDrawerGettingStarted/MainPage.xaml.cs @@ -0,0 +1,28 @@ + +namespace NavigationDrawerGettingStarted +{ + public partial class MainPage : ContentPage + { + public MainPage() + { + InitializeComponent(); + } + + private void hamburgerButton_Clicked(object sender, EventArgs e) + { + navigationDrawer.ToggleDrawer(); + } + + private void collectionView_SelectionChanged(object sender, SelectionChangedEventArgs e) + { + + if (e.CurrentSelection.FirstOrDefault() is string selectedItem) + { + headerLabel.Text = selectedItem; + contentLabel.Text = $"{selectedItem} Content"; + navigationDrawer.ToggleDrawer(); + } + } + } + +} diff --git a/GettingStarted/GettingStarted/MauiProgram.cs b/NavigationDrawerGettingStarted/MauiProgram.cs similarity index 83% rename from GettingStarted/GettingStarted/MauiProgram.cs rename to NavigationDrawerGettingStarted/MauiProgram.cs index 79f1f44..5abc20c 100644 --- a/GettingStarted/GettingStarted/MauiProgram.cs +++ b/NavigationDrawerGettingStarted/MauiProgram.cs @@ -1,7 +1,7 @@ -using Syncfusion.Maui.Core.Hosting; -using Microsoft.Extensions.Logging; +using Microsoft.Extensions.Logging; +using Syncfusion.Maui.Core.Hosting; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { public static class MauiProgram { diff --git a/GettingStarted/GettingStarted/GettingStarted.csproj b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj similarity index 82% rename from GettingStarted/GettingStarted/GettingStarted.csproj rename to NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj index ce2beea..c59ab18 100644 --- a/GettingStarted/GettingStarted/GettingStarted.csproj +++ b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj @@ -4,7 +4,7 @@ net9.0-android;net9.0-ios;net9.0-maccatalyst $(TargetFrameworks);net9.0-windows10.0.19041.0 - + Exe - GettingStarted + NavigationDrawerGettingStarted true true enable enable - GettingStarted + NavigationDrawerGettingStarted - com.companyname.gettingstarted + com.companyname.navigationdrawergettingstarted 1.0 1 - 11.0 - 13.1 + + None + + 15.0 + 15.0 21.0 10.0.17763.0 10.0.17763.0 @@ -56,16 +59,9 @@ - - - - - - - diff --git a/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj.user b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj.user new file mode 100644 index 0000000..256f9ae --- /dev/null +++ b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.csproj.user @@ -0,0 +1,33 @@ + + + + False + net9.0-android + Pixel 5 - API 34 (Android 14.0 - API 34) + Emulator + pixel_5_-_api_34 + + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + Designer + + + \ No newline at end of file diff --git a/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.sln b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.sln new file mode 100644 index 0000000..c5caa73 --- /dev/null +++ b/NavigationDrawerGettingStarted/NavigationDrawerGettingStarted.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.13.35931.197 d17.13 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NavigationDrawerGettingStarted", "NavigationDrawerGettingStarted.csproj", "{6A866306-A851-43D2-8DF2-659779DAF346}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6A866306-A851-43D2-8DF2-659779DAF346}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6A866306-A851-43D2-8DF2-659779DAF346}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6A866306-A851-43D2-8DF2-659779DAF346}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6A866306-A851-43D2-8DF2-659779DAF346}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {E55A95C4-8688-45B0-A578-8158B7ED3187} + EndGlobalSection +EndGlobal diff --git a/GettingStarted/GettingStarted/Platforms/Android/AndroidManifest.xml b/NavigationDrawerGettingStarted/Platforms/Android/AndroidManifest.xml similarity index 100% rename from GettingStarted/GettingStarted/Platforms/Android/AndroidManifest.xml rename to NavigationDrawerGettingStarted/Platforms/Android/AndroidManifest.xml diff --git a/NavigationDrawerGettingStarted/Platforms/Android/MainActivity.cs b/NavigationDrawerGettingStarted/Platforms/Android/MainActivity.cs new file mode 100644 index 0000000..b8ebdcf --- /dev/null +++ b/NavigationDrawerGettingStarted/Platforms/Android/MainActivity.cs @@ -0,0 +1,11 @@ +using Android.App; +using Android.Content.PM; +using Android.OS; + +namespace NavigationDrawerGettingStarted +{ + [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/GettingStarted/GettingStarted/Platforms/Android/MainApplication.cs b/NavigationDrawerGettingStarted/Platforms/Android/MainApplication.cs similarity index 89% rename from GettingStarted/GettingStarted/Platforms/Android/MainApplication.cs rename to NavigationDrawerGettingStarted/Platforms/Android/MainApplication.cs index 8f5a22b..e0e542f 100644 --- a/GettingStarted/GettingStarted/Platforms/Android/MainApplication.cs +++ b/NavigationDrawerGettingStarted/Platforms/Android/MainApplication.cs @@ -1,7 +1,7 @@ using Android.App; using Android.Runtime; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { [Application] public class MainApplication : MauiApplication diff --git a/GettingStarted/GettingStarted/Platforms/Android/Resources/values/colors.xml b/NavigationDrawerGettingStarted/Platforms/Android/Resources/values/colors.xml similarity index 100% rename from GettingStarted/GettingStarted/Platforms/Android/Resources/values/colors.xml rename to NavigationDrawerGettingStarted/Platforms/Android/Resources/values/colors.xml diff --git a/GettingStarted/GettingStarted/Platforms/iOS/AppDelegate.cs b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/AppDelegate.cs similarity index 83% rename from GettingStarted/GettingStarted/Platforms/iOS/AppDelegate.cs rename to NavigationDrawerGettingStarted/Platforms/MacCatalyst/AppDelegate.cs index b2e5b73..1716189 100644 --- a/GettingStarted/GettingStarted/Platforms/iOS/AppDelegate.cs +++ b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/AppDelegate.cs @@ -1,6 +1,6 @@ using Foundation; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { [Register("AppDelegate")] public class AppDelegate : MauiUIApplicationDelegate diff --git a/GettingStarted/GettingStarted/Platforms/MacCatalyst/Entitlements.plist b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/Entitlements.plist similarity index 100% rename from GettingStarted/GettingStarted/Platforms/MacCatalyst/Entitlements.plist rename to NavigationDrawerGettingStarted/Platforms/MacCatalyst/Entitlements.plist diff --git a/GettingStarted/GettingStarted/Platforms/MacCatalyst/Info.plist b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/Info.plist similarity index 100% rename from GettingStarted/GettingStarted/Platforms/MacCatalyst/Info.plist rename to NavigationDrawerGettingStarted/Platforms/MacCatalyst/Info.plist diff --git a/GettingStarted/GettingStarted/Platforms/iOS/Program.cs b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/Program.cs similarity index 90% rename from GettingStarted/GettingStarted/Platforms/iOS/Program.cs rename to NavigationDrawerGettingStarted/Platforms/MacCatalyst/Program.cs index 664fc13..65e4762 100644 --- a/GettingStarted/GettingStarted/Platforms/iOS/Program.cs +++ b/NavigationDrawerGettingStarted/Platforms/MacCatalyst/Program.cs @@ -1,7 +1,7 @@ using ObjCRuntime; using UIKit; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { public class Program { diff --git a/GettingStarted/GettingStarted/Platforms/Tizen/Main.cs b/NavigationDrawerGettingStarted/Platforms/Tizen/Main.cs similarity index 89% rename from GettingStarted/GettingStarted/Platforms/Tizen/Main.cs rename to NavigationDrawerGettingStarted/Platforms/Tizen/Main.cs index 0b9da5b..7d15733 100644 --- a/GettingStarted/GettingStarted/Platforms/Tizen/Main.cs +++ b/NavigationDrawerGettingStarted/Platforms/Tizen/Main.cs @@ -1,8 +1,8 @@ +using System; using Microsoft.Maui; using Microsoft.Maui.Hosting; -using System; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { internal class Program : MauiApplication { diff --git a/GettingStarted/GettingStarted/Platforms/Tizen/tizen-manifest.xml b/NavigationDrawerGettingStarted/Platforms/Tizen/tizen-manifest.xml similarity index 75% rename from GettingStarted/GettingStarted/Platforms/Tizen/tizen-manifest.xml rename to NavigationDrawerGettingStarted/Platforms/Tizen/tizen-manifest.xml index 2a100e3..96d6c83 100644 --- a/GettingStarted/GettingStarted/Platforms/Tizen/tizen-manifest.xml +++ b/NavigationDrawerGettingStarted/Platforms/Tizen/tizen-manifest.xml @@ -1,7 +1,7 @@  - + - + maui-appicon-placeholder diff --git a/GettingStarted/GettingStarted/Platforms/Windows/App.xaml b/NavigationDrawerGettingStarted/Platforms/Windows/App.xaml similarity index 65% rename from GettingStarted/GettingStarted/Platforms/Windows/App.xaml rename to NavigationDrawerGettingStarted/Platforms/Windows/App.xaml index 6cc1e90..31c6f4e 100644 --- a/GettingStarted/GettingStarted/Platforms/Windows/App.xaml +++ b/NavigationDrawerGettingStarted/Platforms/Windows/App.xaml @@ -1,8 +1,8 @@  + xmlns:local="using:NavigationDrawerGettingStarted.WinUI"> diff --git a/GettingStarted/GettingStarted/Platforms/Windows/App.xaml.cs b/NavigationDrawerGettingStarted/Platforms/Windows/App.xaml.cs similarity index 94% rename from GettingStarted/GettingStarted/Platforms/Windows/App.xaml.cs rename to NavigationDrawerGettingStarted/Platforms/Windows/App.xaml.cs index 5b1a284..aaaff58 100644 --- a/GettingStarted/GettingStarted/Platforms/Windows/App.xaml.cs +++ b/NavigationDrawerGettingStarted/Platforms/Windows/App.xaml.cs @@ -3,7 +3,7 @@ // To learn more about WinUI, the WinUI project structure, // and more about our project templates, see: http://aka.ms/winui-project-info. -namespace GettingStarted.WinUI +namespace NavigationDrawerGettingStarted.WinUI { /// /// Provides application-specific behavior to supplement the default Application class. diff --git a/GettingStarted/GettingStarted/Platforms/Windows/Package.appxmanifest b/NavigationDrawerGettingStarted/Platforms/Windows/Package.appxmanifest similarity index 92% rename from GettingStarted/GettingStarted/Platforms/Windows/Package.appxmanifest rename to NavigationDrawerGettingStarted/Platforms/Windows/Package.appxmanifest index 3a46933..b2c35b7 100644 --- a/GettingStarted/GettingStarted/Platforms/Windows/Package.appxmanifest +++ b/NavigationDrawerGettingStarted/Platforms/Windows/Package.appxmanifest @@ -8,7 +8,7 @@ - + $placeholder$ diff --git a/GettingStarted/GettingStarted/Platforms/Windows/app.manifest b/NavigationDrawerGettingStarted/Platforms/Windows/app.manifest similarity index 88% rename from GettingStarted/GettingStarted/Platforms/Windows/app.manifest rename to NavigationDrawerGettingStarted/Platforms/Windows/app.manifest index 1ab4ba7..770b8c8 100644 --- a/GettingStarted/GettingStarted/Platforms/Windows/app.manifest +++ b/NavigationDrawerGettingStarted/Platforms/Windows/app.manifest @@ -1,6 +1,6 @@ - + diff --git a/GettingStarted/GettingStarted/Platforms/MacCatalyst/AppDelegate.cs b/NavigationDrawerGettingStarted/Platforms/iOS/AppDelegate.cs similarity index 83% rename from GettingStarted/GettingStarted/Platforms/MacCatalyst/AppDelegate.cs rename to NavigationDrawerGettingStarted/Platforms/iOS/AppDelegate.cs index b2e5b73..1716189 100644 --- a/GettingStarted/GettingStarted/Platforms/MacCatalyst/AppDelegate.cs +++ b/NavigationDrawerGettingStarted/Platforms/iOS/AppDelegate.cs @@ -1,6 +1,6 @@ using Foundation; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { [Register("AppDelegate")] public class AppDelegate : MauiUIApplicationDelegate diff --git a/GettingStarted/GettingStarted/Platforms/iOS/Info.plist b/NavigationDrawerGettingStarted/Platforms/iOS/Info.plist similarity index 100% rename from GettingStarted/GettingStarted/Platforms/iOS/Info.plist rename to NavigationDrawerGettingStarted/Platforms/iOS/Info.plist diff --git a/GettingStarted/GettingStarted/Platforms/MacCatalyst/Program.cs b/NavigationDrawerGettingStarted/Platforms/iOS/Program.cs similarity index 90% rename from GettingStarted/GettingStarted/Platforms/MacCatalyst/Program.cs rename to NavigationDrawerGettingStarted/Platforms/iOS/Program.cs index 664fc13..65e4762 100644 --- a/GettingStarted/GettingStarted/Platforms/MacCatalyst/Program.cs +++ b/NavigationDrawerGettingStarted/Platforms/iOS/Program.cs @@ -1,7 +1,7 @@ using ObjCRuntime; using UIKit; -namespace GettingStarted +namespace NavigationDrawerGettingStarted { public class Program { diff --git a/NavigationDrawerGettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy b/NavigationDrawerGettingStarted/Platforms/iOS/Resources/PrivacyInfo.xcprivacy new file mode 100644 index 0000000..24ab3b4 --- /dev/null +++ b/NavigationDrawerGettingStarted/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/GettingStarted/GettingStarted/Properties/launchSettings.json b/NavigationDrawerGettingStarted/Properties/launchSettings.json similarity index 70% rename from GettingStarted/GettingStarted/Properties/launchSettings.json rename to NavigationDrawerGettingStarted/Properties/launchSettings.json index edf8aad..4f85793 100644 --- a/GettingStarted/GettingStarted/Properties/launchSettings.json +++ b/NavigationDrawerGettingStarted/Properties/launchSettings.json @@ -1,7 +1,7 @@ { "profiles": { "Windows Machine": { - "commandName": "MsixPackage", + "commandName": "Project", "nativeDebugging": false } } diff --git a/GettingStarted/GettingStarted/Resources/AppIcon/appicon.svg b/NavigationDrawerGettingStarted/Resources/AppIcon/appicon.svg similarity index 100% rename from GettingStarted/GettingStarted/Resources/AppIcon/appicon.svg rename to NavigationDrawerGettingStarted/Resources/AppIcon/appicon.svg diff --git a/GettingStarted/GettingStarted/Resources/AppIcon/appiconfg.svg b/NavigationDrawerGettingStarted/Resources/AppIcon/appiconfg.svg similarity index 100% rename from GettingStarted/GettingStarted/Resources/AppIcon/appiconfg.svg rename to NavigationDrawerGettingStarted/Resources/AppIcon/appiconfg.svg diff --git a/NavigationDrawerGettingStarted/Resources/Fonts/FluentUI.cs b/NavigationDrawerGettingStarted/Resources/Fonts/FluentUI.cs new file mode 100644 index 0000000..f12cac6 --- /dev/null +++ b/NavigationDrawerGettingStarted/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/GettingStarted/GettingStarted/Resources/Fonts/OpenSans-Regular.ttf b/NavigationDrawerGettingStarted/Resources/Fonts/OpenSans-Regular.ttf similarity index 94% rename from GettingStarted/GettingStarted/Resources/Fonts/OpenSans-Regular.ttf rename to NavigationDrawerGettingStarted/Resources/Fonts/OpenSans-Regular.ttf index 9ab655d2b28b5fa796a6124a4ee59826501fc4f2..cd3efca13aabdc1e36e6ef1b088bec3fbf44409a 100644 GIT binary patch delta 4095 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 delta 4062 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 U7$oyz{;Qe@vV))&VxWZ%*-qU_l!WeZ^}Ercv5 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 no_f$sF*|XQ$v!ADa4)J~#!36;z5D4?h0*9d0 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 B!ax83 diff --git a/NavigationDrawerGettingStarted/Resources/Images/dotnet_bot.png b/NavigationDrawerGettingStarted/Resources/Images/dotnet_bot.png new file mode 100644 index 0000000000000000000000000000000000000000..1d1b981ee1ab520412db1299de0df05882d23d3e GIT binary patch literal 93437 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 literal 0 HcmV?d00001 diff --git a/GettingStarted/GettingStarted/Resources/Images/hamburgericon.png b/NavigationDrawerGettingStarted/Resources/Images/hamburgericon.png similarity index 100% rename from GettingStarted/GettingStarted/Resources/Images/hamburgericon.png rename to NavigationDrawerGettingStarted/Resources/Images/hamburgericon.png diff --git a/GettingStarted/GettingStarted/Resources/Images/user.png b/NavigationDrawerGettingStarted/Resources/Images/user.png similarity index 100% rename from GettingStarted/GettingStarted/Resources/Images/user.png rename to NavigationDrawerGettingStarted/Resources/Images/user.png diff --git a/GettingStarted/GettingStarted/Resources/Raw/AboutAssets.txt b/NavigationDrawerGettingStarted/Resources/Raw/AboutAssets.txt similarity index 86% rename from GettingStarted/GettingStarted/Resources/Raw/AboutAssets.txt rename to NavigationDrawerGettingStarted/Resources/Raw/AboutAssets.txt index 15d6244..89dc758 100644 --- a/GettingStarted/GettingStarted/Resources/Raw/AboutAssets.txt +++ b/NavigationDrawerGettingStarted/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/GettingStarted/GettingStarted/Resources/Splash/splash.svg b/NavigationDrawerGettingStarted/Resources/Splash/splash.svg similarity index 100% rename from GettingStarted/GettingStarted/Resources/Splash/splash.svg rename to NavigationDrawerGettingStarted/Resources/Splash/splash.svg diff --git a/GettingStarted/GettingStarted/Resources/Styles/Colors.xaml b/NavigationDrawerGettingStarted/Resources/Styles/Colors.xaml similarity index 100% rename from GettingStarted/GettingStarted/Resources/Styles/Colors.xaml rename to NavigationDrawerGettingStarted/Resources/Styles/Colors.xaml diff --git a/GettingStarted/GettingStarted/Resources/Styles/Styles.xaml b/NavigationDrawerGettingStarted/Resources/Styles/Styles.xaml similarity index 93% rename from GettingStarted/GettingStarted/Resources/Styles/Styles.xaml rename to NavigationDrawerGettingStarted/Resources/Styles/Styles.xaml index e0d36bb..86f574d 100644 --- a/GettingStarted/GettingStarted/Resources/Styles/Styles.xaml +++ b/NavigationDrawerGettingStarted/Resources/Styles/Styles.xaml @@ -136,6 +136,7 @@ + + +