Soenneker.SmartEnum.Abbreviated 3.0.1150

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