Soenneker.SmartEnum.Abbreviated 3.0.1192

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