Soenneker.SmartEnum.Abbreviated 3.0.1209

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