Soenneker.SmartEnum.Abbreviated 3.0.1060

Prefix Reserved
dotnet add package Soenneker.SmartEnum.Abbreviated --version 3.0.1060                
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.1060                
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.1060" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Soenneker.SmartEnum.Abbreviated --version 3.0.1060                
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.1060"                
#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.
// Install Soenneker.SmartEnum.Abbreviated as a Cake Addin
#addin nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1060

// Install Soenneker.SmartEnum.Abbreviated as a Cake Tool
#tool nuget:?package=Soenneker.SmartEnum.Abbreviated&version=3.0.1060                

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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

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

Package Downloads
Soenneker.SmartEnum.AbbreviatedDescriptive

A derivative of AbbreviatedSmartEnum adding support for descriptions

GitHub repositories

This package is not used by any popular GitHub repositories.

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