Soenneker.SmartEnum.Abbreviated 3.0.1216

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