Soenneker.SmartEnum.Abbreviated 3.0.575

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.575                
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.575                
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.575" />                
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.575                
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.575"                
#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.575

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

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