Soenneker.SmartEnum.Abbreviated 3.0.1117

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.SmartEnum.Abbreviated --version 3.0.1117
                    
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.1117
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Soenneker.SmartEnum.Abbreviated" Version="3.0.1117" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.SmartEnum.Abbreviated" Version="3.0.1117" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.SmartEnum.Abbreviated" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.SmartEnum.Abbreviated --version 3.0.1117
                    
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.1117"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Soenneker.SmartEnum.Abbreviated@3.0.1117
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1117
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1117
                    
Install as a Cake Tool

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.SmartEnum.Abbreviated

A derivative of Ardalis' SmartEnum, adding support for abbreviations

Installation

dotnet add package Soenneker.SmartEnum.Abbreviated

Usage

The AbbreviatedSmartEnum class is an abstract base class that extends the SmartEnum class from Ardalis' library. It provides additional functionality for working with abbreviated enum values.

To create an abbreviated SmartEnum, you need to derive a new class from AbbreviatedSmartEnum<TEnum>.

public class LanguageType : AbbreviatedSmartEnum<LanguageType>
{
    public static readonly LanguageType English = new(nameof(English), 1, "EN");
    public static readonly LanguageType Spanish = new(nameof(Spanish), 2, "ES");
    public static readonly LanguageType French = new(nameof(French), 3, "FR");

    private LanguageType(string name, int value, string abbreviation)
        : base(name, value, abbreviation)
    {
    }
}

and how you use your new SmartEnum:

string abbreviated = LanguageType.English.Abbreviation; // "EN"

// Get the enum value for the "EN" abbreviation
LanguageType english = LanguageType.FromAbbreviation("EN");

// Try to get the enum value for the "ES" abbreviation (case-insensitive)
if (LanguageType.TryFromAbbreviation("es", ignoreCase: true, out LanguageType spanish))
{
    // spanish will be the LanguageType.Spanish value
}

The IgnoreCase and StaticIgnoreCase properties allow you to control whether the abbreviation matching is case-sensitive or case-insensitive, either for a specific instance or globally across all instances of the derived enum class.

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Soenneker.SmartEnum.Abbreviated:

Package Downloads
Soenneker.SmartEnum.AbbreviatedDescriptive

A derivative of AbbreviatedSmartEnum adding support for descriptions

Soenneker.Json.Converters.AbbreviatedSmartEnum

A System.Text.Json AbbreviatedSmartEnum converter

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.1214 287 9/16/2025
3.0.1213 157 9/10/2025
3.0.1212 164 9/9/2025
3.0.1211 151 9/9/2025
3.0.1210 153 9/9/2025
3.0.1209 196 9/3/2025
3.0.1208 142 9/3/2025
3.0.1207 169 9/3/2025
3.0.1206 158 9/3/2025
3.0.1205 137 9/3/2025
3.0.1204 165 9/3/2025
3.0.1203 168 8/17/2025
3.0.1202 135 8/16/2025
3.0.1201 171 8/11/2025
3.0.1200 160 8/11/2025
3.0.1199 148 8/11/2025
3.0.1198 148 8/11/2025
3.0.1197 127 8/11/2025
3.0.1196 163 8/11/2025
3.0.1195 167 8/11/2025
3.0.1194 150 8/11/2025
3.0.1193 263 8/5/2025
3.0.1192 209 8/5/2025
3.0.1191 108 7/29/2025
3.0.1190 93 7/29/2025
3.0.1189 652 7/9/2025
3.0.1188 173 7/8/2025
3.0.1187 178 7/8/2025
3.0.1186 483 6/28/2025
3.0.1185 101 6/28/2025
3.0.1184 115 6/27/2025
3.0.1183 70 6/27/2025
3.0.1182 123 6/27/2025
3.0.1181 237 6/25/2025
3.0.1180 181 6/24/2025
3.0.1179 596 6/11/2025
3.0.1178 320 6/11/2025
3.0.1177 333 6/11/2025
3.0.1176 322 6/10/2025
3.0.1175 420 6/2/2025
3.0.1174 188 6/2/2025
3.0.1173 297 5/27/2025
3.0.1172 174 5/27/2025
3.0.1171 190 5/27/2025
3.0.1170 154 5/27/2025
3.0.1169 199 5/27/2025
3.0.1168 193 5/25/2025
3.0.1167 131 5/25/2025
3.0.1166 178 5/23/2025
3.0.1165 173 5/23/2025
3.0.1164 175 5/23/2025
3.0.1163 174 5/22/2025
3.0.1162 159 5/22/2025
3.0.1161 171 5/22/2025
3.0.1160 367 5/14/2025
3.0.1159 258 5/14/2025
3.0.1158 268 5/13/2025
3.0.1157 314 5/8/2025
3.0.1156 195 5/8/2025
3.0.1155 187 5/8/2025
3.0.1154 186 5/7/2025
3.0.1153 154 5/7/2025
3.0.1152 156 5/7/2025
3.0.1151 281 5/5/2025
3.0.1150 170 5/5/2025
3.0.1149 152 5/5/2025
3.0.1148 178 5/5/2025
3.0.1147 188 5/5/2025
3.0.1146 209 5/5/2025
3.0.1145 172 5/5/2025
3.0.1144 170 5/5/2025
3.0.1143 167 5/5/2025
3.0.1142 151 5/5/2025
3.0.1141 176 5/5/2025
3.0.1140 150 5/5/2025
3.0.1139 384 4/27/2025
3.0.1138 149 4/27/2025
3.0.1137 133 4/26/2025
3.0.1136 137 4/26/2025
3.0.1135 551 4/9/2025
3.0.1134 229 4/9/2025
3.0.1133 218 4/8/2025
3.0.1132 172 4/8/2025
3.0.1131 212 4/8/2025
3.0.1130 173 4/8/2025
3.0.1128 242 4/8/2025
3.0.1127 277 4/8/2025
3.0.1126 217 4/8/2025
3.0.1125 263 4/8/2025
3.0.1124 177 4/8/2025
3.0.1123 210 4/8/2025
3.0.1122 168 4/8/2025
3.0.1121 237 4/8/2025
3.0.1120 276 4/7/2025
3.0.1119 249 4/7/2025
3.0.1118 285 4/7/2025
3.0.1117 242 4/7/2025
3.0.1116 226 4/7/2025
3.0.1115 222 4/7/2025
3.0.1114 218 4/7/2025
3.0.1113 218 4/6/2025
3.0.1112 170 4/6/2025
3.0.1111 207 4/6/2025
3.0.1110 174 4/6/2025
3.0.1109 210 4/6/2025
3.0.1108 170 4/6/2025
3.0.1107 199 4/6/2025
3.0.1106 152 4/6/2025
3.0.1105 202 4/6/2025
3.0.1104 147 4/6/2025
3.0.1103 148 4/6/2025
3.0.1102 189 4/6/2025
3.0.1101 119 4/6/2025
3.0.1100 124 4/6/2025
3.0.1099 127 4/6/2025
3.0.1098 126 4/6/2025
3.0.1097 124 4/6/2025
3.0.1096 115 4/6/2025
3.0.1095 231 4/5/2025
3.0.1094 135 4/5/2025
3.0.1093 158 4/5/2025
3.0.1092 155 4/5/2025
3.0.1091 157 4/5/2025
3.0.1090 160 4/5/2025
3.0.1089 84 4/5/2025
3.0.1088 105 4/5/2025
3.0.1087 117 4/4/2025
3.0.1086 348 4/4/2025
3.0.1085 248 4/1/2025
3.0.1084 251 4/1/2025
3.0.1083 216 3/31/2025
3.0.1082 260 3/30/2025
3.0.1081 140 3/29/2025
3.0.1080 562 3/25/2025
3.0.1079 525 3/25/2025
3.0.1078 187 3/21/2025
3.0.1077 250 3/18/2025
3.0.1076 231 3/18/2025
3.0.1075 134 3/15/2025
3.0.1074 103 3/15/2025
3.0.1073 252 3/12/2025
3.0.1072 229 3/12/2025
3.0.1071 170 3/12/2025
3.0.1070 226 3/11/2025
3.0.1069 238 3/11/2025
3.0.1068 161 3/11/2025
3.0.1067 235 3/11/2025
3.0.1066 228 3/11/2025
3.0.1065 178 3/11/2025
3.0.1064 236 3/11/2025
3.0.1063 157 3/11/2025
3.0.1062 280 3/7/2025
3.0.1061 272 3/7/2025
3.0.1060 296 3/2/2025
3.0.1059 220 3/2/2025
3.0.1058 131 3/2/2025
3.0.1057 140 3/2/2025
3.0.1056 166 3/1/2025
3.0.1055 164 3/1/2025
3.0.1054 118 3/1/2025
3.0.1053 113 3/1/2025
3.0.1052 112 3/1/2025
3.0.1051 117 3/1/2025
3.0.1050 167 3/1/2025
3.0.1049 106 3/1/2025
3.0.1048 113 3/1/2025
3.0.1047 105 3/1/2025
3.0.1046 148 3/1/2025
3.0.1045 99 3/1/2025
3.0.1044 209 2/25/2025
3.0.1043 170 2/25/2025
3.0.1042 108 2/25/2025
3.0.1041 196 2/25/2025
3.0.1040 172 2/25/2025
3.0.1039 115 2/25/2025
3.0.1038 105 2/25/2025
3.0.1037 178 2/24/2025
3.0.1036 108 2/24/2025
3.0.1035 119 2/24/2025
3.0.1034 173 2/23/2025
3.0.1033 114 2/23/2025
3.0.1032 143 2/22/2025
3.0.1031 118 2/22/2025
3.0.1030 191 2/22/2025
3.0.1029 147 2/22/2025
3.0.1028 114 2/22/2025
3.0.1027 220 2/22/2025
3.0.1026 124 2/22/2025
3.0.1025 113 2/22/2025
3.0.1024 126 2/21/2025
3.0.1023 112 2/21/2025
3.0.1022 254 2/21/2025
3.0.1021 144 2/21/2025
3.0.1020 111 2/21/2025
3.0.1019 337 2/19/2025
3.0.1018 177 2/19/2025
3.0.1017 150 2/19/2025
3.0.1016 120 2/19/2025
3.0.1015 187 2/18/2025
3.0.1014 114 2/18/2025
3.0.1013 356 2/18/2025
3.0.1012 103 2/18/2025
3.0.1011 115 2/18/2025
3.0.1010 124 2/18/2025
3.0.1009 312 2/14/2025
3.0.1008 208 2/14/2025
3.0.1007 118 2/14/2025
3.0.1006 117 2/14/2025
3.0.1005 222 2/13/2025
3.0.1004 253 2/12/2025
3.0.1003 109 2/12/2025
3.0.1002 217 2/12/2025
3.0.1001 168 2/12/2025
3.0.1000 115 2/12/2025
3.0.999 190 2/12/2025
3.0.998 108 2/12/2025
3.0.997 194 2/12/2025
3.0.996 126 2/12/2025
3.0.995 152 2/12/2025
3.0.994 166 2/11/2025
3.0.993 117 2/11/2025
3.0.992 224 2/11/2025
3.0.991 114 2/11/2025
3.0.990 198 2/11/2025
3.0.989 122 2/11/2025
3.0.988 272 2/11/2025
3.0.987 151 2/11/2025
3.0.986 126 2/11/2025
3.0.985 128 2/11/2025
3.0.984 217 2/10/2025
3.0.983 120 2/10/2025
3.0.982 223 2/10/2025
3.0.981 119 2/10/2025
3.0.980 126 2/10/2025
3.0.979 112 2/10/2025
3.0.978 115 2/10/2025
3.0.977 187 2/9/2025
3.0.976 113 2/9/2025
3.0.975 222 2/9/2025
3.0.974 208 2/8/2025
3.0.973 106 2/8/2025
3.0.972 198 2/8/2025
3.0.971 102 2/8/2025
3.0.970 162 2/8/2025
3.0.969 167 2/8/2025
3.0.968 121 2/8/2025
3.0.967 171 2/7/2025
3.0.966 131 2/7/2025
3.0.965 102 2/7/2025
3.0.964 174 2/7/2025
3.0.963 107 2/7/2025
3.0.962 144 2/7/2025
3.0.961 103 2/7/2025
3.0.960 237 2/7/2025
3.0.959 114 2/7/2025
3.0.958 118 2/7/2025
3.0.957 116 2/7/2025
3.0.956 118 2/7/2025
3.0.955 183 2/7/2025
3.0.954 123 2/7/2025
3.0.953 266 2/6/2025
3.0.952 269 2/5/2025
3.0.951 180 2/5/2025
3.0.950 154 2/5/2025
3.0.949 224 2/5/2025
3.0.948 220 2/5/2025
3.0.947 106 2/5/2025
3.0.946 211 2/5/2025
3.0.945 194 2/4/2025
3.0.944 288 1/28/2025
3.0.943 146 1/28/2025
3.0.942 163 1/28/2025
3.0.941 106 1/28/2025
3.0.940 146 1/28/2025
3.0.939 135 1/28/2025
3.0.938 215 1/27/2025
3.0.937 128 1/27/2025
3.0.936 93 1/27/2025
3.0.935 124 1/27/2025
3.0.934 110 1/27/2025
3.0.933 302 1/26/2025
3.0.932 140 1/26/2025
3.0.931 143 1/26/2025
3.0.930 106 1/26/2025
3.0.929 189 1/26/2025
3.0.928 281 1/25/2025
3.0.927 108 1/25/2025
3.0.926 136 1/25/2025
3.0.925 120 1/25/2025
3.0.924 137 1/25/2025
3.0.923 118 1/25/2025
3.0.921 134 1/25/2025
3.0.920 227 1/25/2025
3.0.919 107 1/25/2025
3.0.918 167 1/24/2025
3.0.917 169 1/24/2025
3.0.916 181 1/24/2025
3.0.915 117 1/24/2025
3.0.914 110 1/24/2025
3.0.913 219 1/24/2025
3.0.912 112 1/24/2025
3.0.911 106 1/24/2025
3.0.910 197 1/24/2025
3.0.909 111 1/24/2025
3.0.908 132 1/23/2025
3.0.907 107 1/23/2025
3.0.906 111 1/23/2025
3.0.905 139 1/23/2025
3.0.904 111 1/23/2025
3.0.903 300 1/22/2025
3.0.902 131 1/21/2025
3.0.901 147 1/21/2025
3.0.900 170 1/21/2025
3.0.899 106 1/21/2025
3.0.898 155 1/21/2025
3.0.897 114 1/21/2025
3.0.896 184 1/21/2025
3.0.895 160 1/21/2025
3.0.894 162 1/21/2025
3.0.893 128 1/21/2025
3.0.892 177 1/21/2025
3.0.891 133 1/21/2025
3.0.890 103 1/21/2025
3.0.889 112 1/21/2025
3.0.888 182 1/21/2025
3.0.887 95 1/21/2025
3.0.886 152 1/20/2025
3.0.885 115 1/20/2025
3.0.884 168 1/20/2025
3.0.883 106 1/20/2025
3.0.882 103 1/20/2025
3.0.881 109 1/20/2025
3.0.880 139 1/20/2025
3.0.879 111 1/20/2025
3.0.878 420 1/20/2025
3.0.877 118 1/20/2025
3.0.876 199 1/20/2025
3.0.875 98 1/20/2025
3.0.874 115 1/20/2025
3.0.873 102 1/20/2025
3.0.872 212 1/20/2025
3.0.871 113 1/20/2025
3.0.870 191 1/19/2025
3.0.869 91 1/19/2025
3.0.868 149 1/19/2025
3.0.867 169 1/19/2025
3.0.866 103 1/19/2025
3.0.865 160 1/19/2025
3.0.864 102 1/19/2025
3.0.863 683 1/16/2025
3.0.862 142 1/16/2025
3.0.861 103 1/16/2025
3.0.860 220 1/16/2025
3.0.859 105 1/16/2025
3.0.858 114 1/16/2025
3.0.857 114 1/16/2025
3.0.856 164 1/15/2025
3.0.855 105 1/15/2025
3.0.854 214 1/15/2025
3.0.853 100 1/15/2025
3.0.852 145 1/15/2025
3.0.851 110 1/15/2025
3.0.850 151 1/15/2025
3.0.849 157 1/15/2025
3.0.848 88 1/15/2025
3.0.847 170 1/15/2025
3.0.846 99 1/15/2025
3.0.845 83 1/15/2025
3.0.844 131 1/15/2025
3.0.843 70 1/15/2025
3.0.842 102 1/15/2025
3.0.841 85 1/14/2025
3.0.840 85 1/14/2025
3.0.839 153 1/14/2025
3.0.838 91 1/14/2025
3.0.837 132 1/14/2025
3.0.836 90 1/14/2025
3.0.835 171 1/14/2025
3.0.834 93 1/14/2025
3.0.833 175 1/13/2025
3.0.832 166 1/13/2025
3.0.831 197 1/13/2025
3.0.830 114 1/13/2025
3.0.829 90 1/13/2025
3.0.828 150 1/13/2025
3.0.827 83 1/13/2025
3.0.826 284 1/11/2025
3.0.825 150 1/11/2025
3.0.824 107 1/11/2025
3.0.823 156 1/11/2025
3.0.822 178 1/11/2025
3.0.821 108 1/11/2025
3.0.820 180 1/10/2025
3.0.819 147 1/10/2025
3.0.818 103 1/10/2025
3.0.817 199 1/10/2025
3.0.816 106 1/10/2025
3.0.815 118 1/10/2025
3.0.814 167 1/10/2025
3.0.813 116 1/10/2025
3.0.812 587 1/3/2025
3.0.811 140 1/3/2025
3.0.810 216 1/3/2025
3.0.809 120 1/3/2025
3.0.808 174 1/3/2025
3.0.807 115 1/3/2025
3.0.806 180 1/2/2025
3.0.805 130 1/2/2025
3.0.804 182 1/2/2025
3.0.803 114 1/2/2025
3.0.802 195 1/2/2025
3.0.801 121 1/2/2025
3.0.800 115 1/2/2025
3.0.799 122 1/2/2025
3.0.798 114 1/2/2025
3.0.797 572 1/1/2025
3.0.796 111 1/1/2025
3.0.795 122 12/31/2024
3.0.794 125 12/31/2024
3.0.793 111 12/31/2024
3.0.792 123 12/31/2024
3.0.791 162 12/31/2024
3.0.790 169 12/31/2024
3.0.789 123 12/31/2024
3.0.788 160 12/31/2024
3.0.787 153 12/31/2024
3.0.786 155 12/31/2024
3.0.785 124 12/31/2024
3.0.784 277 12/31/2024
3.0.783 134 12/31/2024
3.0.782 137 12/31/2024
3.0.781 132 12/31/2024
3.0.780 195 12/31/2024
3.0.779 104 12/31/2024
3.0.778 201 12/31/2024
3.0.777 107 12/31/2024
3.0.776 230 12/31/2024
3.0.775 118 12/31/2024
3.0.774 247 12/28/2024
3.0.773 174 12/28/2024
3.0.772 140 12/27/2024
3.0.771 177 12/27/2024
3.0.770 118 12/27/2024
3.0.769 156 12/27/2024
3.0.768 240 12/24/2024
3.0.767 200 12/24/2024
3.0.766 122 12/24/2024
3.0.765 162 12/24/2024
3.0.764 124 12/24/2024
3.0.763 138 12/24/2024
3.0.762 128 12/24/2024
3.0.761 157 12/24/2024
3.0.760 164 12/24/2024
3.0.759 122 12/24/2024
3.0.758 106 12/24/2024
3.0.757 165 12/24/2024
3.0.756 99 12/24/2024
3.0.755 143 12/24/2024
3.0.754 109 12/23/2024
3.0.753 173 12/23/2024
3.0.752 110 12/23/2024
3.0.751 189 12/23/2024
3.0.750 174 12/23/2024
3.0.749 96 12/23/2024
3.0.748 105 12/23/2024
3.0.747 227 12/23/2024
3.0.746 109 12/23/2024
3.0.745 132 12/23/2024
3.0.744 116 12/23/2024
3.0.743 151 12/22/2024
3.0.742 196 12/22/2024
3.0.741 105 12/22/2024
3.0.740 179 12/22/2024
3.0.739 216 12/22/2024
3.0.738 220 12/22/2024
3.0.737 118 12/22/2024
3.0.736 143 12/22/2024
3.0.735 107 12/22/2024
3.0.734 185 12/22/2024
3.0.733 116 12/22/2024
3.0.732 109 12/22/2024
3.0.731 181 12/21/2024
3.0.730 112 12/21/2024
3.0.729 113 12/21/2024
3.0.728 110 12/21/2024
3.0.727 138 12/21/2024
3.0.726 113 12/21/2024
3.0.725 220 12/21/2024
3.0.724 111 12/21/2024
3.0.723 149 12/21/2024
3.0.722 114 12/21/2024
3.0.721 135 12/21/2024
3.0.720 112 12/21/2024
3.0.719 170 12/21/2024
3.0.718 159 12/21/2024
3.0.717 130 12/21/2024
3.0.716 229 12/20/2024
3.0.715 110 12/20/2024
3.0.714 123 12/20/2024
3.0.713 157 12/20/2024
3.0.712 180 12/20/2024
3.0.711 185 12/20/2024
3.0.710 160 12/20/2024
3.0.709 189 12/20/2024
3.0.708 184 12/19/2024
3.0.707 187 12/19/2024
3.0.706 164 12/19/2024
3.0.705 105 12/19/2024
3.0.704 164 12/19/2024
3.0.703 120 12/18/2024
3.0.702 96 12/18/2024
3.0.701 173 12/18/2024
3.0.700 212 12/17/2024
3.0.699 172 12/17/2024
3.0.698 147 12/17/2024
3.0.697 143 12/16/2024
3.0.696 115 12/16/2024
3.0.695 187 12/16/2024
3.0.694 266 12/10/2024
3.0.693 177 12/10/2024
3.0.692 176 12/10/2024
3.0.691 134 12/10/2024
3.0.690 181 12/9/2024
3.0.689 105 12/9/2024
3.0.688 181 12/9/2024
3.0.687 150 12/9/2024
3.0.686 95 12/9/2024
3.0.685 163 12/9/2024
3.0.684 145 12/9/2024
3.0.683 231 12/7/2024
3.0.682 135 12/6/2024
3.0.681 137 12/6/2024
3.0.680 147 12/6/2024
3.0.679 111 12/6/2024
3.0.677 160 12/6/2024
3.0.676 164 12/6/2024
3.0.675 246 12/6/2024
3.0.674 126 12/6/2024
3.0.673 151 12/6/2024
3.0.672 207 12/6/2024
3.0.671 114 12/6/2024
3.0.670 183 12/6/2024
3.0.669 184 12/6/2024
3.0.668 117 12/6/2024
3.0.667 157 12/6/2024
3.0.666 118 12/6/2024
3.0.665 113 12/6/2024
3.0.664 176 12/6/2024
3.0.663 219 12/6/2024
3.0.662 110 12/6/2024
3.0.661 155 12/5/2024
3.0.660 185 12/5/2024
3.0.659 244 12/5/2024
3.0.658 121 12/5/2024
3.0.657 137 12/5/2024
3.0.656 120 12/5/2024
3.0.655 172 12/5/2024
3.0.654 161 12/5/2024
3.0.653 161 12/5/2024
3.0.652 124 12/5/2024
3.0.651 198 12/5/2024
3.0.650 108 12/5/2024
3.0.649 185 12/4/2024
3.0.648 108 12/4/2024
3.0.647 141 12/4/2024
3.0.646 113 12/4/2024
3.0.645 186 12/4/2024
3.0.644 180 12/4/2024
3.0.643 109 12/4/2024
3.0.642 221 12/4/2024
3.0.641 123 12/4/2024
3.0.640 176 12/4/2024
3.0.639 146 12/3/2024
3.0.638 194 12/3/2024
3.0.637 111 12/3/2024
3.0.636 165 12/3/2024
3.0.635 120 12/3/2024
3.0.634 188 12/3/2024
3.0.633 115 12/3/2024
3.0.632 183 12/3/2024
3.0.631 98 12/3/2024
3.0.630 171 12/3/2024
3.0.629 115 12/3/2024
3.0.628 155 12/3/2024
3.0.627 109 12/3/2024
3.0.626 109 12/2/2024
3.0.625 209 12/2/2024
3.0.624 189 12/2/2024
3.0.623 128 12/2/2024
3.0.622 100 12/2/2024
3.0.621 187 12/2/2024
3.0.620 145 12/2/2024
3.0.619 106 12/2/2024
3.0.618 185 12/1/2024
3.0.617 119 12/1/2024
3.0.616 204 12/1/2024
3.0.615 114 12/1/2024
3.0.614 163 12/1/2024
3.0.613 102 12/1/2024
3.0.612 267 11/29/2024
3.0.611 120 11/29/2024
3.0.610 177 11/29/2024
3.0.609 102 11/29/2024
3.0.608 224 11/21/2024
3.0.607 182 11/21/2024
3.0.606 122 11/21/2024
3.0.605 235 11/20/2024
3.0.604 185 11/20/2024
3.0.603 191 11/20/2024
3.0.602 146 11/20/2024
3.0.601 151 11/20/2024
3.0.600 117 11/20/2024
3.0.598 181 11/20/2024
3.0.597 124 11/20/2024
3.0.595 177 11/19/2024
3.0.594 171 11/19/2024
3.0.593 121 11/19/2024
3.0.592 173 11/19/2024
3.0.591 116 11/19/2024
3.0.590 114 11/19/2024
3.0.589 253 11/19/2024
3.0.588 110 11/19/2024
3.0.587 201 11/19/2024
3.0.586 99 11/19/2024
3.0.585 114 11/19/2024
3.0.584 141 11/19/2024
3.0.583 223 11/15/2024
3.0.582 171 11/14/2024
3.0.581 115 11/14/2024
3.0.580 119 11/14/2024
3.0.579 154 11/14/2024
3.0.578 119 11/14/2024
3.0.577 176 11/14/2024
3.0.576 122 11/14/2024
3.0.575 207 11/14/2024
3.0.574 198 11/14/2024
3.0.573 114 11/14/2024
3.0.572 224 11/14/2024
3.0.571 118 11/14/2024
3.0.570 154 11/14/2024
3.0.569 125 11/14/2024
3.0.568 181 11/14/2024
3.0.567 120 11/14/2024
3.0.566 163 11/14/2024
3.0.565 119 11/14/2024
2.1.564 281 11/13/2024
2.1.563 163 11/13/2024
2.1.562 204 11/13/2024
2.1.561 122 11/13/2024
2.1.560 166 11/13/2024
2.1.559 125 11/13/2024
2.1.558 220 11/13/2024
2.1.557 113 11/13/2024
2.1.556 190 11/12/2024
2.1.555 119 11/12/2024
2.1.554 593 11/9/2024
2.1.553 136 11/9/2024
2.1.552 216 11/9/2024
2.1.551 177 11/9/2024
2.1.550 115 11/9/2024
2.1.549 232 11/9/2024
2.1.548 177 11/8/2024
2.1.547 120 11/8/2024
2.1.546 137 11/8/2024
2.1.545 121 11/8/2024
2.1.544 126 11/8/2024
2.1.543 249 11/8/2024
2.1.542 115 11/8/2024
2.1.541 116 11/8/2024
2.1.540 207 11/8/2024
2.1.539 105 11/8/2024
2.1.538 208 11/8/2024
2.1.537 118 11/8/2024
2.1.536 259 11/6/2024
2.1.535 342 11/1/2024
2.1.534 205 11/1/2024
2.1.533 112 11/1/2024
2.1.532 295 10/29/2024
2.1.531 159 10/29/2024
2.1.530 160 10/29/2024
2.1.529 185 10/29/2024
2.1.527 246 10/29/2024
2.1.526 207 10/29/2024
2.1.525 215 10/29/2024
2.1.524 246 10/28/2024
2.1.523 112 10/28/2024
2.1.522 396 10/26/2024
2.1.521 141 10/26/2024
2.1.520 177 10/26/2024
2.1.519 280 10/22/2024
2.1.518 118 10/22/2024
2.1.517 234 10/22/2024
2.1.516 115 10/22/2024
2.1.515 193 10/22/2024
2.1.514 99 10/22/2024
2.1.513 211 10/22/2024
2.1.512 302 10/18/2024
2.1.511 167 10/17/2024
2.1.510 104 10/17/2024
2.1.509 205 10/17/2024
2.1.508 261 10/15/2024
2.1.507 144 10/15/2024
2.1.506 114 10/15/2024
2.1.505 144 10/14/2024
2.1.504 237 10/12/2024
2.1.503 136 10/12/2024
2.1.502 169 10/11/2024
2.1.501 144 10/11/2024
2.1.500 146 10/11/2024
2.1.499 115 10/11/2024
2.1.498 206 10/9/2024
2.1.497 157 10/9/2024
2.1.496 166 10/9/2024
2.1.495 126 10/9/2024
2.1.493 141 10/9/2024
2.1.492 147 10/8/2024
2.1.491 151 10/8/2024
2.1.490 135 10/8/2024
2.1.489 238 10/8/2024
2.1.488 122 10/8/2024
2.1.487 139 10/8/2024
2.1.486 109 10/8/2024
2.1.485 297 10/7/2024
2.1.484 168 10/3/2024
2.1.483 116 10/3/2024
2.1.482 137 10/3/2024
2.1.481 135 10/3/2024
2.1.480 110 10/3/2024
2.1.479 132 10/3/2024
2.1.478 99 10/3/2024
2.1.477 139 10/3/2024
2.1.476 157 10/2/2024
2.1.475 137 10/2/2024
2.1.474 121 10/2/2024
2.1.473 114 10/2/2024
2.1.472 144 10/2/2024
2.1.471 114 10/2/2024
2.1.470 135 10/1/2024
2.1.469 225 10/1/2024
2.1.468 138 10/1/2024
2.1.467 110 10/1/2024
2.1.466 135 10/1/2024
2.1.465 114 10/1/2024
2.1.464 159 10/1/2024
2.1.463 143 9/30/2024
2.1.462 143 9/29/2024
2.1.461 152 9/29/2024
2.1.460 160 9/29/2024
2.1.459 121 9/29/2024
2.1.458 142 9/29/2024
2.1.457 107 9/29/2024
2.1.456 190 9/27/2024
2.1.455 120 9/27/2024
2.1.454 151 9/27/2024
2.1.453 119 9/27/2024
2.1.452 142 9/27/2024
2.1.451 123 9/27/2024
2.1.450 147 9/27/2024
2.1.449 114 9/27/2024
2.1.448 124 9/27/2024
2.1.447 112 9/27/2024
2.1.446 142 9/27/2024
2.1.445 153 9/26/2024
2.1.444 147 9/26/2024
2.1.443 117 9/26/2024
2.1.442 161 9/26/2024
2.1.441 149 9/26/2024
2.1.440 133 9/26/2024
2.1.439 123 9/26/2024
2.1.438 130 9/26/2024
2.1.437 135 9/26/2024
2.1.436 271 9/26/2024
2.1.435 122 9/26/2024
2.1.434 201 9/23/2024
2.1.433 121 9/23/2024
2.1.432 137 9/23/2024
2.1.431 119 9/23/2024
2.1.430 154 9/23/2024
2.1.429 153 9/23/2024
2.1.428 139 9/23/2024
2.1.427 173 9/23/2024
2.1.426 165 9/23/2024
2.1.425 117 9/23/2024
2.1.424 122 9/23/2024
2.1.423 131 9/23/2024
2.1.422 116 9/23/2024
2.1.421 162 9/23/2024
2.1.420 117 9/23/2024
2.1.419 154 9/18/2024
2.1.418 139 9/18/2024
2.1.417 173 9/18/2024
2.1.416 133 9/18/2024
2.1.415 140 9/18/2024
2.1.414 133 9/17/2024
2.1.413 129 9/17/2024
2.1.412 121 9/17/2024
2.1.411 131 9/17/2024
2.1.410 136 9/17/2024
2.1.409 113 9/17/2024
2.1.408 129 9/17/2024
2.1.407 127 9/17/2024
2.1.406 123 9/17/2024
2.1.405 125 9/17/2024
2.1.404 138 9/17/2024
2.1.403 121 9/17/2024
2.1.402 321 9/17/2024
2.1.401 156 9/16/2024
2.1.400 135 9/16/2024
2.1.399 139 9/16/2024
2.1.398 119 9/16/2024
2.1.397 200 9/12/2024
2.1.396 141 9/12/2024
2.1.395 155 9/12/2024
2.1.394 149 9/12/2024
2.1.393 129 9/12/2024
2.1.392 152 9/12/2024
2.1.391 127 9/11/2024
2.1.390 160 9/11/2024
2.1.389 130 9/11/2024
2.1.388 155 9/11/2024
2.1.387 157 9/11/2024
2.1.386 107 9/11/2024
2.1.385 123 9/11/2024
2.1.383 149 9/11/2024
2.1.382 168 9/11/2024
2.1.381 155 9/11/2024
2.1.380 190 9/11/2024
2.1.379 147 9/10/2024
2.1.378 141 9/10/2024
2.1.377 159 9/10/2024
2.1.376 140 9/10/2024
2.1.375 123 9/10/2024
2.1.374 141 9/10/2024
2.1.373 124 9/10/2024
2.1.372 160 9/10/2024
2.1.371 145 9/10/2024
2.1.370 139 9/10/2024
2.1.369 129 9/10/2024
2.1.368 156 9/9/2024
2.1.367 120 9/9/2024
2.1.366 144 9/9/2024
2.1.365 148 9/9/2024
2.1.363 147 9/9/2024
2.1.362 145 9/9/2024
2.1.361 153 9/9/2024
2.1.360 135 9/9/2024
2.1.358 133 9/9/2024
2.1.357 136 9/9/2024
2.1.356 125 9/9/2024
2.1.355 162 9/9/2024
2.1.354 120 9/9/2024
2.1.353 212 9/7/2024
2.1.352 126 9/7/2024
2.1.351 119 9/7/2024
2.1.350 133 9/7/2024
2.1.349 147 9/6/2024
2.1.348 153 9/6/2024
2.1.347 153 9/6/2024
2.1.346 138 9/6/2024
2.1.345 137 9/6/2024
2.1.344 130 9/6/2024
2.1.343 201 9/5/2024
2.1.342 117 9/5/2024
2.1.341 131 9/5/2024
2.1.340 158 9/5/2024
2.1.339 134 9/5/2024
2.1.338 167 9/5/2024
2.1.337 132 9/5/2024
2.1.336 124 9/5/2024
2.1.335 128 9/5/2024
2.1.334 138 9/5/2024
2.1.333 148 9/5/2024
2.1.332 125 9/5/2024
2.1.331 155 9/4/2024
2.1.330 144 9/4/2024
2.1.329 219 9/4/2024
2.1.328 141 9/3/2024
2.1.327 131 9/3/2024
2.1.326 132 9/3/2024
2.1.325 141 9/3/2024
2.1.324 124 9/3/2024
2.1.323 144 9/3/2024
2.1.322 115 9/3/2024
2.1.321 128 9/3/2024
2.1.320 115 9/3/2024
2.1.319 154 8/29/2024
2.1.318 103 8/29/2024
2.1.317 119 8/29/2024
2.1.316 91 8/29/2024
2.1.315 245 8/26/2024
2.1.314 134 8/26/2024
2.1.313 125 8/26/2024
2.1.312 143 8/26/2024
2.1.311 262 8/21/2024
2.1.310 156 8/21/2024
2.1.309 142 8/21/2024
2.1.308 135 8/21/2024
2.1.307 142 8/21/2024
2.1.306 124 8/21/2024
2.1.305 168 8/20/2024
2.1.304 144 8/20/2024
2.1.303 159 8/20/2024
2.1.302 138 8/20/2024
2.1.301 183 8/20/2024
2.1.300 135 8/20/2024
2.1.299 136 8/20/2024
2.1.298 140 8/20/2024
2.1.297 134 8/20/2024
2.1.296 155 8/20/2024
2.1.295 160 8/20/2024
2.1.294 137 8/19/2024
2.1.293 134 8/19/2024
2.1.292 225 8/15/2024
2.1.291 155 8/15/2024
2.1.290 167 8/15/2024
2.1.289 135 8/15/2024
2.1.288 165 8/14/2024
2.1.287 147 8/14/2024
2.1.286 131 8/14/2024
2.1.285 147 8/13/2024
2.1.284 149 8/7/2024
2.1.283 127 8/7/2024
2.1.282 125 8/7/2024
2.1.281 107 8/7/2024
2.1.280 136 8/6/2024
2.1.279 117 8/6/2024
2.1.278 253 8/1/2024
2.1.277 126 8/1/2024
2.1.276 119 8/1/2024
2.1.275 134 8/1/2024
2.1.274 104 8/1/2024
2.1.273 294 7/25/2024
2.1.272 110 7/25/2024
2.1.271 89 7/25/2024
2.1.270 102 7/25/2024
2.1.269 110 7/25/2024
2.1.268 144 7/25/2024
2.1.267 93 7/25/2024
2.1.266 111 7/25/2024
2.1.265 109 7/25/2024
2.1.264 90 7/25/2024
2.1.263 130 7/24/2024
2.1.262 121 7/24/2024
2.1.260 229 7/20/2024
2.1.259 151 7/20/2024
2.1.258 126 7/20/2024
2.1.257 269 7/14/2024
2.1.256 126 7/14/2024
2.1.255 115 7/14/2024
2.1.254 115 7/14/2024
2.1.253 141 7/14/2024
2.1.252 115 7/14/2024
2.1.251 128 7/14/2024
2.1.250 160 7/13/2024
2.1.249 163 7/10/2024
2.1.248 128 7/10/2024
2.1.247 130 7/10/2024
2.1.246 141 7/10/2024
2.1.245 139 7/10/2024
2.1.244 126 7/10/2024
2.1.243 125 7/10/2024
2.1.242 135 7/10/2024
2.1.241 129 7/10/2024
2.1.240 132 7/10/2024
2.1.239 107 7/10/2024
2.1.238 120 7/10/2024
2.1.237 112 7/10/2024
2.1.236 124 7/10/2024
2.1.235 126 7/10/2024
2.1.234 142 7/10/2024
2.1.232 134 7/10/2024
2.1.231 127 7/10/2024
2.1.230 154 7/9/2024
2.1.229 115 7/9/2024
2.1.227 102 7/9/2024
2.1.226 99 7/9/2024
2.1.225 120 7/9/2024
2.1.224 154 7/9/2024
2.1.223 126 7/9/2024
2.1.222 118 7/9/2024
2.1.221 151 7/9/2024
2.1.220 136 7/9/2024
2.1.219 130 7/9/2024
2.1.218 107 7/9/2024
2.1.217 122 7/9/2024
2.1.216 118 7/9/2024
2.1.215 158 7/9/2024
2.1.214 128 7/9/2024
2.1.213 140 7/8/2024
2.1.212 143 7/8/2024
2.1.211 130 7/8/2024
2.1.210 168 7/8/2024
2.1.209 127 7/8/2024
2.1.208 161 7/8/2024
2.1.207 144 7/8/2024
2.1.206 106 7/8/2024
2.1.205 142 7/8/2024
2.1.204 143 7/7/2024
2.1.203 139 7/7/2024
2.1.202 134 7/7/2024
2.1.201 148 7/7/2024
2.1.200 136 7/7/2024
2.1.199 170 7/7/2024
2.1.198 145 7/7/2024
2.1.197 187 7/3/2024
2.1.196 139 7/3/2024
2.1.195 144 7/3/2024
2.1.194 155 7/3/2024
2.1.193 142 7/3/2024
2.1.192 133 7/3/2024
2.1.191 131 7/3/2024
2.1.190 155 7/3/2024
2.1.189 278 6/27/2024
2.1.188 139 6/27/2024
2.1.187 140 6/27/2024
2.1.186 151 6/22/2024
2.1.185 134 6/22/2024
2.1.184 143 6/22/2024
2.1.183 191 6/16/2024
2.1.182 127 6/15/2024
2.1.181 139 6/15/2024
2.1.180 129 6/15/2024
2.1.179 144 6/15/2024
2.1.178 117 6/15/2024
2.1.177 141 6/15/2024
2.1.176 121 6/15/2024
2.1.175 159 6/15/2024
2.1.174 139 6/15/2024
2.1.173 130 6/14/2024
2.1.172 111 6/14/2024
2.1.171 140 6/14/2024
2.1.170 189 6/4/2024
2.1.169 140 6/4/2024
2.1.168 181 6/2/2024
2.1.167 145 6/1/2024
2.1.166 140 6/1/2024
2.1.165 146 6/1/2024
2.1.164 130 6/1/2024
2.1.163 153 6/1/2024
2.1.162 144 6/1/2024
2.1.161 116 6/1/2024
2.1.160 127 6/1/2024
2.1.159 143 6/1/2024
2.1.158 132 5/31/2024
2.1.157 141 5/31/2024
2.1.156 156 5/31/2024
2.1.155 134 5/31/2024
2.1.154 133 5/31/2024
2.1.153 175 5/29/2024
2.1.152 141 5/29/2024
2.1.151 141 5/29/2024
2.1.150 136 5/29/2024
2.1.149 132 5/29/2024
2.1.148 184 5/28/2024
2.1.147 133 5/28/2024
2.1.146 130 5/28/2024
2.1.145 130 5/28/2024
2.1.144 126 5/28/2024
2.1.143 118 5/28/2024
2.1.142 130 5/27/2024
2.1.141 128 5/27/2024
2.1.140 128 5/27/2024
2.1.139 134 5/27/2024
2.1.138 136 5/27/2024
2.1.137 122 5/27/2024
2.1.136 133 5/26/2024
2.1.135 159 5/26/2024
2.1.134 133 5/26/2024
2.1.133 134 5/26/2024
2.1.132 145 5/26/2024
2.1.131 144 5/26/2024
2.1.130 138 5/26/2024
2.1.129 130 5/26/2024
2.1.128 152 5/25/2024
2.1.127 128 5/25/2024
2.1.126 130 5/25/2024
2.1.125 116 5/25/2024
2.1.124 123 5/25/2024
2.1.123 127 5/25/2024
2.1.122 143 5/25/2024
2.1.121 130 5/25/2024
2.1.120 133 5/25/2024
2.1.119 133 5/25/2024
2.1.118 167 5/25/2024
2.1.117 158 5/23/2024
2.1.116 129 5/23/2024
2.1.115 127 5/23/2024
2.1.114 122 5/23/2024
2.1.113 151 5/23/2024
2.1.112 118 5/23/2024
2.1.111 131 5/23/2024
2.1.110 152 5/23/2024
2.1.109 126 5/23/2024
2.1.108 144 5/22/2024
2.1.107 130 5/22/2024
2.1.106 152 5/22/2024
2.1.105 126 5/22/2024
2.1.104 140 5/22/2024
2.1.103 129 5/22/2024
2.1.102 123 5/22/2024
2.1.101 131 5/22/2024
2.1.100 152 5/18/2024
2.1.99 139 5/18/2024
2.1.98 151 5/18/2024
2.1.97 128 5/18/2024
2.1.96 149 5/18/2024
2.1.95 139 5/18/2024
2.1.94 156 5/17/2024
2.1.93 147 5/17/2024
2.1.92 160 5/17/2024
2.1.91 134 5/17/2024
2.1.90 148 5/17/2024
2.1.89 142 5/17/2024
2.1.88 173 5/16/2024
2.1.87 140 5/16/2024
2.1.86 136 5/16/2024
2.1.85 148 5/15/2024
2.1.84 127 5/15/2024
2.1.83 143 5/15/2024
2.1.82 163 5/15/2024
2.1.81 128 5/15/2024
2.1.80 154 5/13/2024
2.1.79 139 5/13/2024
2.1.78 127 5/13/2024
2.1.77 123 5/13/2024
2.1.76 191 4/30/2024
2.1.75 156 4/30/2024
2.1.74 147 4/30/2024
2.1.73 137 4/30/2024
2.1.72 142 4/30/2024
2.1.71 132 4/29/2024
2.1.70 132 4/29/2024
2.1.69 151 4/29/2024
2.1.68 125 4/29/2024
2.1.67 126 4/29/2024
2.1.66 131 4/29/2024
2.1.65 138 4/28/2024
2.1.64 117 4/28/2024
2.1.63 139 4/28/2024
2.1.62 132 4/28/2024
2.1.61 129 4/28/2024
2.1.60 131 4/28/2024
2.1.59 152 4/28/2024
2.1.58 116 4/28/2024
2.1.57 135 4/28/2024
2.1.56 128 4/28/2024
2.1.55 144 4/28/2024
2.1.54 123 4/28/2024
2.1.53 126 4/28/2024
2.1.52 130 4/28/2024
2.1.51 137 4/27/2024
2.1.50 233 4/20/2024
2.1.49 154 4/20/2024
2.1.48 153 4/19/2024
2.1.47 146 4/19/2024
2.1.46 130 4/19/2024
2.1.45 123 4/19/2024
2.1.44 131 4/19/2024
2.1.43 157 4/19/2024
2.1.42 130 4/19/2024
2.1.41 141 4/18/2024
2.1.40 204 4/13/2024
2.1.39 151 4/13/2024
2.1.38 151 4/13/2024
2.1.37 175 4/13/2024
2.1.36 134 4/13/2024
2.1.35 148 4/12/2024
2.1.34 142 4/12/2024
2.1.33 138 4/12/2024
2.1.32 160 4/12/2024
2.1.31 122 4/12/2024
2.1.30 155 4/12/2024
2.1.29 149 4/12/2024
2.1.28 163 4/12/2024
2.1.27 122 4/12/2024
2.1.26 120 4/12/2024
2.1.25 134 4/12/2024
2.1.24 138 4/12/2024
2.1.23 163 4/11/2024
2.1.22 133 4/11/2024
2.1.21 161 4/10/2024
2.1.20 143 4/10/2024
2.1.19 147 4/10/2024
2.1.18 148 4/10/2024
2.1.17 130 4/10/2024
2.1.16 143 4/10/2024
2.1.15 125 4/10/2024
2.1.14 293 4/3/2024
2.1.13 135 4/2/2024
2.1.12 121 4/2/2024
2.1.11 121 4/2/2024
2.1.10 130 4/2/2024
2.1.9 97 4/2/2024
2.1.8 121 4/1/2024
2.1.7 129 4/1/2024
2.1.6 120 4/1/2024
2.1.5 146 3/31/2024
2.1.4 137 3/30/2024
2.1.3 116 3/30/2024
2.1.2 132 3/27/2024