Soenneker.SmartEnum.Abbreviated 3.0.768

Prefix Reserved
dotnet add package Soenneker.SmartEnum.Abbreviated --version 3.0.768                
NuGet\Install-Package Soenneker.SmartEnum.Abbreviated -Version 3.0.768                
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.768" />                
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.768                
#r "nuget: Soenneker.SmartEnum.Abbreviated, 3.0.768"                
#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.768

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

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. 
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.768 120 12/24/2024
3.0.767 111 12/24/2024
3.0.766 40 12/24/2024
3.0.765 72 12/24/2024
3.0.764 37 12/24/2024
3.0.763 56 12/24/2024
3.0.762 58 12/24/2024
3.0.761 74 12/24/2024
3.0.760 78 12/24/2024
3.0.759 39 12/24/2024
3.0.758 32 12/24/2024
3.0.757 83 12/24/2024
3.0.756 34 12/24/2024
3.0.755 78 12/24/2024
3.0.754 48 12/23/2024
3.0.753 126 12/23/2024
3.0.752 63 12/23/2024
3.0.751 148 12/23/2024
3.0.750 132 12/23/2024
3.0.749 62 12/23/2024
3.0.748 60 12/23/2024
3.0.747 185 12/23/2024
3.0.746 61 12/23/2024
3.0.745 86 12/23/2024
3.0.744 63 12/23/2024
3.0.743 112 12/22/2024
3.0.742 147 12/22/2024
3.0.741 60 12/22/2024
3.0.740 145 12/22/2024
3.0.739 174 12/22/2024
3.0.738 175 12/22/2024
3.0.737 71 12/22/2024
3.0.736 102 12/22/2024
3.0.735 60 12/22/2024
3.0.734 138 12/22/2024
3.0.733 61 12/22/2024
3.0.732 65 12/22/2024
3.0.731 141 12/21/2024
3.0.730 62 12/21/2024
3.0.729 79 12/21/2024
3.0.728 69 12/21/2024
3.0.727 97 12/21/2024
3.0.726 67 12/21/2024
3.0.725 166 12/21/2024
3.0.724 58 12/21/2024
3.0.723 103 12/21/2024
3.0.722 72 12/21/2024
3.0.721 86 12/21/2024
3.0.720 68 12/21/2024
3.0.719 119 12/21/2024
3.0.718 106 12/21/2024
3.0.717 65 12/21/2024
3.0.716 185 12/20/2024
3.0.715 67 12/20/2024
3.0.714 74 12/20/2024
3.0.713 116 12/20/2024
3.0.712 132 12/20/2024
3.0.711 140 12/20/2024
3.0.710 112 12/20/2024
3.0.709 137 12/20/2024
3.0.708 142 12/19/2024
3.0.707 144 12/19/2024
3.0.706 117 12/19/2024
3.0.705 60 12/19/2024
3.0.704 119 12/19/2024
3.0.703 79 12/18/2024
3.0.702 63 12/18/2024
3.0.701 124 12/18/2024
3.0.700 165 12/17/2024
3.0.699 124 12/17/2024
3.0.698 98 12/17/2024
3.0.697 100 12/16/2024
3.0.696 71 12/16/2024
3.0.695 143 12/16/2024
3.0.694 222 12/10/2024
3.0.693 134 12/10/2024
3.0.692 142 12/10/2024
3.0.691 88 12/10/2024
3.0.690 131 12/9/2024
3.0.689 59 12/9/2024
3.0.688 139 12/9/2024
3.0.687 117 12/9/2024
3.0.686 52 12/9/2024
3.0.685 126 12/9/2024
3.0.684 102 12/9/2024
3.0.683 189 12/7/2024
3.0.682 87 12/6/2024
3.0.681 96 12/6/2024
3.0.680 104 12/6/2024
3.0.679 64 12/6/2024
3.0.677 117 12/6/2024
3.0.676 122 12/6/2024
3.0.675 207 12/6/2024
3.0.674 76 12/6/2024
3.0.673 110 12/6/2024
3.0.672 168 12/6/2024
3.0.671 69 12/6/2024
3.0.670 144 12/6/2024
3.0.669 138 12/6/2024
3.0.668 70 12/6/2024
3.0.667 112 12/6/2024
3.0.666 75 12/6/2024
3.0.665 70 12/6/2024
3.0.664 128 12/6/2024
3.0.663 166 12/6/2024
3.0.662 69 12/6/2024
3.0.661 120 12/5/2024
3.0.660 143 12/5/2024
3.0.659 203 12/5/2024
3.0.658 72 12/5/2024
3.0.657 92 12/5/2024
3.0.656 73 12/5/2024
3.0.655 135 12/5/2024
3.0.654 115 12/5/2024
3.0.653 129 12/5/2024
3.0.652 73 12/5/2024
3.0.651 155 12/5/2024
3.0.650 71 12/5/2024
3.0.649 145 12/4/2024
3.0.648 66 12/4/2024
3.0.647 98 12/4/2024
3.0.646 70 12/4/2024
3.0.645 136 12/4/2024
3.0.644 139 12/4/2024
3.0.643 66 12/4/2024
3.0.642 171 12/4/2024
3.0.641 78 12/4/2024
3.0.640 132 12/4/2024
3.0.639 114 12/3/2024
3.0.638 144 12/3/2024
3.0.637 72 12/3/2024
3.0.636 120 12/3/2024
3.0.635 73 12/3/2024
3.0.634 137 12/3/2024
3.0.633 69 12/3/2024
3.0.632 140 12/3/2024
3.0.631 67 12/3/2024
3.0.630 108 12/3/2024
3.0.629 68 12/3/2024
3.0.628 112 12/3/2024
3.0.627 64 12/3/2024
3.0.626 67 12/2/2024
3.0.625 160 12/2/2024
3.0.624 130 12/2/2024
3.0.623 82 12/2/2024
3.0.622 65 12/2/2024
3.0.621 138 12/2/2024
3.0.620 111 12/2/2024
3.0.619 70 12/2/2024
3.0.618 145 12/1/2024
3.0.617 72 12/1/2024
3.0.616 153 12/1/2024
3.0.615 65 12/1/2024
3.0.614 119 12/1/2024
3.0.613 64 12/1/2024
3.0.612 222 11/29/2024
3.0.611 86 11/29/2024
3.0.610 136 11/29/2024
3.0.609 72 11/29/2024
3.0.608 193 11/21/2024
3.0.607 141 11/21/2024
3.0.606 78 11/21/2024
3.0.605 173 11/20/2024
3.0.604 146 11/20/2024
3.0.603 151 11/20/2024
3.0.602 109 11/20/2024
3.0.601 109 11/20/2024
3.0.600 75 11/20/2024
3.0.598 145 11/20/2024
3.0.597 82 11/20/2024
3.0.595 149 11/19/2024
3.0.594 121 11/19/2024
3.0.593 76 11/19/2024
3.0.592 125 11/19/2024
3.0.591 74 11/19/2024
3.0.590 71 11/19/2024
3.0.589 212 11/19/2024
3.0.588 66 11/19/2024
3.0.587 166 11/19/2024
3.0.586 68 11/19/2024
3.0.585 75 11/19/2024
3.0.584 111 11/19/2024
3.0.583 192 11/15/2024
3.0.582 123 11/14/2024
3.0.581 74 11/14/2024
3.0.580 77 11/14/2024
3.0.579 114 11/14/2024
3.0.578 82 11/14/2024
3.0.577 143 11/14/2024
3.0.576 77 11/14/2024
3.0.575 177 11/14/2024
3.0.574 154 11/14/2024
3.0.573 72 11/14/2024
3.0.572 179 11/14/2024
3.0.571 75 11/14/2024
3.0.570 112 11/14/2024
3.0.569 79 11/14/2024
3.0.568 146 11/14/2024
3.0.567 73 11/14/2024
3.0.566 125 11/14/2024
3.0.565 77 11/14/2024
2.1.564 236 11/13/2024
2.1.563 124 11/13/2024
2.1.562 166 11/13/2024
2.1.561 77 11/13/2024
2.1.560 127 11/13/2024
2.1.559 80 11/13/2024
2.1.558 181 11/13/2024
2.1.557 76 11/13/2024
2.1.556 154 11/12/2024
2.1.555 73 11/12/2024
2.1.554 558 11/9/2024
2.1.553 96 11/9/2024
2.1.552 171 11/9/2024
2.1.551 138 11/9/2024
2.1.550 76 11/9/2024
2.1.549 176 11/9/2024
2.1.548 133 11/8/2024
2.1.547 75 11/8/2024
2.1.546 97 11/8/2024
2.1.545 90 11/8/2024
2.1.544 76 11/8/2024
2.1.543 211 11/8/2024
2.1.542 78 11/8/2024
2.1.541 77 11/8/2024
2.1.540 169 11/8/2024
2.1.539 75 11/8/2024
2.1.538 164 11/8/2024
2.1.537 74 11/8/2024
2.1.536 222 11/6/2024
2.1.535 297 11/1/2024
2.1.534 173 11/1/2024
2.1.533 73 11/1/2024
2.1.532 252 10/29/2024
2.1.531 129 10/29/2024
2.1.530 109 10/29/2024
2.1.529 147 10/29/2024
2.1.527 213 10/29/2024
2.1.526 165 10/29/2024
2.1.525 168 10/29/2024
2.1.524 209 10/28/2024
2.1.523 73 10/28/2024
2.1.522 366 10/26/2024
2.1.521 113 10/26/2024
2.1.520 138 10/26/2024
2.1.519 246 10/22/2024
2.1.518 90 10/22/2024
2.1.517 195 10/22/2024
2.1.516 79 10/22/2024
2.1.515 150 10/22/2024
2.1.514 65 10/22/2024
2.1.513 166 10/22/2024
2.1.512 264 10/18/2024
2.1.511 135 10/17/2024
2.1.510 82 10/17/2024
2.1.509 164 10/17/2024
2.1.508 223 10/15/2024
2.1.507 115 10/15/2024
2.1.506 77 10/15/2024
2.1.505 109 10/14/2024
2.1.504 195 10/12/2024
2.1.503 111 10/12/2024
2.1.502 132 10/11/2024
2.1.501 105 10/11/2024
2.1.500 113 10/11/2024
2.1.499 84 10/11/2024
2.1.498 167 10/9/2024
2.1.497 116 10/9/2024
2.1.496 129 10/9/2024
2.1.495 83 10/9/2024
2.1.493 109 10/9/2024
2.1.492 104 10/8/2024
2.1.491 125 10/8/2024
2.1.490 98 10/8/2024
2.1.489 203 10/8/2024
2.1.488 86 10/8/2024
2.1.487 112 10/8/2024
2.1.486 85 10/8/2024
2.1.485 261 10/7/2024
2.1.484 134 10/3/2024
2.1.483 78 10/3/2024
2.1.482 105 10/3/2024
2.1.481 105 10/3/2024
2.1.480 78 10/3/2024
2.1.479 98 10/3/2024
2.1.478 75 10/3/2024
2.1.477 107 10/3/2024
2.1.476 119 10/2/2024
2.1.475 108 10/2/2024
2.1.474 96 10/2/2024
2.1.473 78 10/2/2024
2.1.472 110 10/2/2024
2.1.471 88 10/2/2024
2.1.470 111 10/1/2024
2.1.469 198 10/1/2024
2.1.468 106 10/1/2024
2.1.467 74 10/1/2024
2.1.466 98 10/1/2024
2.1.465 78 10/1/2024
2.1.464 118 10/1/2024
2.1.463 101 9/30/2024
2.1.462 112 9/29/2024
2.1.461 110 9/29/2024
2.1.460 126 9/29/2024
2.1.459 88 9/29/2024
2.1.458 116 9/29/2024
2.1.457 79 9/29/2024
2.1.456 151 9/27/2024
2.1.455 95 9/27/2024
2.1.454 121 9/27/2024
2.1.453 81 9/27/2024
2.1.452 105 9/27/2024
2.1.451 92 9/27/2024
2.1.450 109 9/27/2024
2.1.449 77 9/27/2024
2.1.448 83 9/27/2024
2.1.447 77 9/27/2024
2.1.446 101 9/27/2024
2.1.445 104 9/26/2024
2.1.444 107 9/26/2024
2.1.443 85 9/26/2024
2.1.442 119 9/26/2024
2.1.441 105 9/26/2024
2.1.440 95 9/26/2024
2.1.439 101 9/26/2024
2.1.438 81 9/26/2024
2.1.437 102 9/26/2024
2.1.436 244 9/26/2024
2.1.435 79 9/26/2024
2.1.434 167 9/23/2024
2.1.433 99 9/23/2024
2.1.432 114 9/23/2024
2.1.431 81 9/23/2024
2.1.430 119 9/23/2024
2.1.429 115 9/23/2024
2.1.428 103 9/23/2024
2.1.427 138 9/23/2024
2.1.426 115 9/23/2024
2.1.425 82 9/23/2024
2.1.424 87 9/23/2024
2.1.423 101 9/23/2024
2.1.422 85 9/23/2024
2.1.421 137 9/23/2024
2.1.420 81 9/23/2024
2.1.419 121 9/18/2024
2.1.418 95 9/18/2024
2.1.417 139 9/18/2024
2.1.416 99 9/18/2024
2.1.415 105 9/18/2024
2.1.414 101 9/17/2024
2.1.413 91 9/17/2024
2.1.412 87 9/17/2024
2.1.411 98 9/17/2024
2.1.410 99 9/17/2024
2.1.409 82 9/17/2024
2.1.408 92 9/17/2024
2.1.407 91 9/17/2024
2.1.406 83 9/17/2024
2.1.405 85 9/17/2024
2.1.404 97 9/17/2024
2.1.403 85 9/17/2024
2.1.402 294 9/17/2024
2.1.401 131 9/16/2024
2.1.400 99 9/16/2024
2.1.399 110 9/16/2024
2.1.398 89 9/16/2024
2.1.397 171 9/12/2024
2.1.396 110 9/12/2024
2.1.395 126 9/12/2024
2.1.394 129 9/12/2024
2.1.393 94 9/12/2024
2.1.392 117 9/12/2024
2.1.391 97 9/11/2024
2.1.390 119 9/11/2024
2.1.389 93 9/11/2024
2.1.388 135 9/11/2024
2.1.387 124 9/11/2024
2.1.386 90 9/11/2024
2.1.385 96 9/11/2024
2.1.383 114 9/11/2024
2.1.382 126 9/11/2024
2.1.381 124 9/11/2024
2.1.380 160 9/11/2024
2.1.379 124 9/10/2024
2.1.378 103 9/10/2024
2.1.377 134 9/10/2024
2.1.376 115 9/10/2024
2.1.375 95 9/10/2024
2.1.374 105 9/10/2024
2.1.373 99 9/10/2024
2.1.372 126 9/10/2024
2.1.371 115 9/10/2024
2.1.370 112 9/10/2024
2.1.369 95 9/10/2024
2.1.368 122 9/9/2024
2.1.367 88 9/9/2024
2.1.366 121 9/9/2024
2.1.365 126 9/9/2024
2.1.363 112 9/9/2024
2.1.362 105 9/9/2024
2.1.361 121 9/9/2024
2.1.360 104 9/9/2024
2.1.358 99 9/9/2024
2.1.357 94 9/9/2024
2.1.356 94 9/9/2024
2.1.355 121 9/9/2024
2.1.354 80 9/9/2024
2.1.353 178 9/7/2024
2.1.352 102 9/7/2024
2.1.351 92 9/7/2024
2.1.350 111 9/7/2024
2.1.349 104 9/6/2024
2.1.348 120 9/6/2024
2.1.347 117 9/6/2024
2.1.346 101 9/6/2024
2.1.345 109 9/6/2024
2.1.344 93 9/6/2024
2.1.343 175 9/5/2024
2.1.342 86 9/5/2024
2.1.341 92 9/5/2024
2.1.340 121 9/5/2024
2.1.339 93 9/5/2024
2.1.338 130 9/5/2024
2.1.337 94 9/5/2024
2.1.336 92 9/5/2024
2.1.335 104 9/5/2024
2.1.334 100 9/5/2024
2.1.333 123 9/5/2024
2.1.332 92 9/5/2024
2.1.331 121 9/4/2024
2.1.330 100 9/4/2024
2.1.329 181 9/4/2024
2.1.328 118 9/3/2024
2.1.327 92 9/3/2024
2.1.326 108 9/3/2024
2.1.325 112 9/3/2024
2.1.324 93 9/3/2024
2.1.323 116 9/3/2024
2.1.322 83 9/3/2024
2.1.321 94 9/3/2024
2.1.320 92 9/3/2024
2.1.319 122 8/29/2024
2.1.318 72 8/29/2024
2.1.317 89 8/29/2024
2.1.316 70 8/29/2024
2.1.315 201 8/26/2024
2.1.314 106 8/26/2024
2.1.313 89 8/26/2024
2.1.312 110 8/26/2024
2.1.311 228 8/21/2024
2.1.310 124 8/21/2024
2.1.309 112 8/21/2024
2.1.308 104 8/21/2024
2.1.307 107 8/21/2024
2.1.306 96 8/21/2024
2.1.305 135 8/20/2024
2.1.304 113 8/20/2024
2.1.303 126 8/20/2024
2.1.302 108 8/20/2024
2.1.301 146 8/20/2024
2.1.300 102 8/20/2024
2.1.299 109 8/20/2024
2.1.298 108 8/20/2024
2.1.297 101 8/20/2024
2.1.296 130 8/20/2024
2.1.295 131 8/20/2024
2.1.294 115 8/19/2024
2.1.293 101 8/19/2024
2.1.292 191 8/15/2024
2.1.291 122 8/15/2024
2.1.290 129 8/15/2024
2.1.289 101 8/15/2024
2.1.288 140 8/14/2024
2.1.287 106 8/14/2024
2.1.286 100 8/14/2024
2.1.285 126 8/13/2024
2.1.284 119 8/7/2024
2.1.283 97 8/7/2024
2.1.282 90 8/7/2024
2.1.281 87 8/7/2024
2.1.280 101 8/6/2024
2.1.279 86 8/6/2024
2.1.278 217 8/1/2024
2.1.277 96 8/1/2024
2.1.276 86 8/1/2024
2.1.275 96 8/1/2024
2.1.274 77 8/1/2024
2.1.273 261 7/25/2024
2.1.272 71 7/25/2024
2.1.271 68 7/25/2024
2.1.270 67 7/25/2024
2.1.269 77 7/25/2024
2.1.268 122 7/25/2024
2.1.267 52 7/25/2024
2.1.266 78 7/25/2024
2.1.265 68 7/25/2024
2.1.264 59 7/25/2024
2.1.263 99 7/24/2024
2.1.262 97 7/24/2024
2.1.260 197 7/20/2024
2.1.259 110 7/20/2024
2.1.258 99 7/20/2024
2.1.257 246 7/14/2024
2.1.256 101 7/14/2024
2.1.255 91 7/14/2024
2.1.254 86 7/14/2024
2.1.253 106 7/14/2024
2.1.252 87 7/14/2024
2.1.251 98 7/14/2024
2.1.250 117 7/13/2024
2.1.249 131 7/10/2024
2.1.248 92 7/10/2024
2.1.247 98 7/10/2024
2.1.246 108 7/10/2024
2.1.245 105 7/10/2024
2.1.244 98 7/10/2024
2.1.243 88 7/10/2024
2.1.242 92 7/10/2024
2.1.241 104 7/10/2024
2.1.240 99 7/10/2024
2.1.239 75 7/10/2024
2.1.238 91 7/10/2024
2.1.237 88 7/10/2024
2.1.236 90 7/10/2024
2.1.235 88 7/10/2024
2.1.234 120 7/10/2024
2.1.232 105 7/10/2024
2.1.231 94 7/10/2024
2.1.230 119 7/9/2024
2.1.229 96 7/9/2024
2.1.227 81 7/9/2024
2.1.226 79 7/9/2024
2.1.225 98 7/9/2024
2.1.224 113 7/9/2024
2.1.223 102 7/9/2024
2.1.222 86 7/9/2024
2.1.221 109 7/9/2024
2.1.220 95 7/9/2024
2.1.219 100 7/9/2024
2.1.218 80 7/9/2024
2.1.217 98 7/9/2024
2.1.216 97 7/9/2024
2.1.215 128 7/9/2024
2.1.214 92 7/9/2024
2.1.213 99 7/8/2024
2.1.212 101 7/8/2024
2.1.211 98 7/8/2024
2.1.210 130 7/8/2024
2.1.209 96 7/8/2024
2.1.208 127 7/8/2024
2.1.207 111 7/8/2024
2.1.206 83 7/8/2024
2.1.205 111 7/8/2024
2.1.204 109 7/7/2024
2.1.203 116 7/7/2024
2.1.202 99 7/7/2024
2.1.201 113 7/7/2024
2.1.200 99 7/7/2024
2.1.199 135 7/7/2024
2.1.198 113 7/7/2024
2.1.197 151 7/3/2024
2.1.196 104 7/3/2024
2.1.195 120 7/3/2024
2.1.194 119 7/3/2024
2.1.193 108 7/3/2024
2.1.192 104 7/3/2024
2.1.191 100 7/3/2024
2.1.190 120 7/3/2024
2.1.189 242 6/27/2024
2.1.188 102 6/27/2024
2.1.187 103 6/27/2024
2.1.186 116 6/22/2024
2.1.185 107 6/22/2024
2.1.184 116 6/22/2024
2.1.183 161 6/16/2024
2.1.182 105 6/15/2024
2.1.181 103 6/15/2024
2.1.180 106 6/15/2024
2.1.179 111 6/15/2024
2.1.178 86 6/15/2024
2.1.177 107 6/15/2024
2.1.176 91 6/15/2024
2.1.175 115 6/15/2024
2.1.174 108 6/15/2024
2.1.173 108 6/14/2024
2.1.172 89 6/14/2024
2.1.171 109 6/14/2024
2.1.170 149 6/4/2024
2.1.169 112 6/4/2024
2.1.168 155 6/2/2024
2.1.167 111 6/1/2024
2.1.166 108 6/1/2024
2.1.165 109 6/1/2024
2.1.164 104 6/1/2024
2.1.163 117 6/1/2024
2.1.162 122 6/1/2024
2.1.161 93 6/1/2024
2.1.160 96 6/1/2024
2.1.159 115 6/1/2024
2.1.158 112 5/31/2024
2.1.157 106 5/31/2024
2.1.156 118 5/31/2024
2.1.155 102 5/31/2024
2.1.154 98 5/31/2024
2.1.153 139 5/29/2024
2.1.152 103 5/29/2024
2.1.151 104 5/29/2024
2.1.150 101 5/29/2024
2.1.149 95 5/29/2024
2.1.148 156 5/28/2024
2.1.147 107 5/28/2024
2.1.146 100 5/28/2024
2.1.145 102 5/28/2024
2.1.144 100 5/28/2024
2.1.143 83 5/28/2024
2.1.142 94 5/27/2024
2.1.141 92 5/27/2024
2.1.140 101 5/27/2024
2.1.139 105 5/27/2024
2.1.138 103 5/27/2024
2.1.137 86 5/27/2024
2.1.136 91 5/26/2024
2.1.135 124 5/26/2024
2.1.134 101 5/26/2024
2.1.133 109 5/26/2024
2.1.132 105 5/26/2024
2.1.131 111 5/26/2024
2.1.130 101 5/26/2024
2.1.129 93 5/26/2024
2.1.128 118 5/25/2024
2.1.127 92 5/25/2024
2.1.126 97 5/25/2024
2.1.125 93 5/25/2024
2.1.124 93 5/25/2024
2.1.123 91 5/25/2024
2.1.122 118 5/25/2024
2.1.121 95 5/25/2024
2.1.120 103 5/25/2024
2.1.119 98 5/25/2024
2.1.118 122 5/25/2024
2.1.117 123 5/23/2024
2.1.116 95 5/23/2024
2.1.115 96 5/23/2024
2.1.114 90 5/23/2024
2.1.113 114 5/23/2024
2.1.112 98 5/23/2024
2.1.111 96 5/23/2024
2.1.110 117 5/23/2024
2.1.109 95 5/23/2024
2.1.108 112 5/22/2024
2.1.107 92 5/22/2024
2.1.106 113 5/22/2024
2.1.105 95 5/22/2024
2.1.104 110 5/22/2024
2.1.103 94 5/22/2024
2.1.102 94 5/22/2024
2.1.101 108 5/22/2024
2.1.100 115 5/18/2024
2.1.99 106 5/18/2024
2.1.98 118 5/18/2024
2.1.97 97 5/18/2024
2.1.96 109 5/18/2024
2.1.95 104 5/18/2024
2.1.94 117 5/17/2024
2.1.93 116 5/17/2024
2.1.92 125 5/17/2024
2.1.91 106 5/17/2024
2.1.90 114 5/17/2024
2.1.89 109 5/17/2024
2.1.88 140 5/16/2024
2.1.87 111 5/16/2024
2.1.86 103 5/16/2024
2.1.85 113 5/15/2024
2.1.84 103 5/15/2024
2.1.83 115 5/15/2024
2.1.82 125 5/15/2024
2.1.81 104 5/15/2024
2.1.80 120 5/13/2024
2.1.79 95 5/13/2024
2.1.78 95 5/13/2024
2.1.77 93 5/13/2024
2.1.76 161 4/30/2024
2.1.75 118 4/30/2024
2.1.74 111 4/30/2024
2.1.73 105 4/30/2024
2.1.72 119 4/30/2024
2.1.71 96 4/29/2024
2.1.70 94 4/29/2024
2.1.69 117 4/29/2024
2.1.68 99 4/29/2024
2.1.67 93 4/29/2024
2.1.66 98 4/29/2024
2.1.65 104 4/28/2024
2.1.64 94 4/28/2024
2.1.63 112 4/28/2024
2.1.62 93 4/28/2024
2.1.61 95 4/28/2024
2.1.60 105 4/28/2024
2.1.59 114 4/28/2024
2.1.58 89 4/28/2024
2.1.57 104 4/28/2024
2.1.56 91 4/28/2024
2.1.55 107 4/28/2024
2.1.54 93 4/28/2024
2.1.53 106 4/28/2024
2.1.52 97 4/28/2024
2.1.51 105 4/27/2024
2.1.50 200 4/20/2024
2.1.49 115 4/20/2024
2.1.48 122 4/19/2024
2.1.47 104 4/19/2024
2.1.46 102 4/19/2024
2.1.45 86 4/19/2024
2.1.44 107 4/19/2024
2.1.43 125 4/19/2024
2.1.42 109 4/19/2024
2.1.41 117 4/18/2024
2.1.40 182 4/13/2024
2.1.39 115 4/13/2024
2.1.38 114 4/13/2024
2.1.37 121 4/13/2024
2.1.36 100 4/13/2024
2.1.35 117 4/12/2024
2.1.34 109 4/12/2024
2.1.33 99 4/12/2024
2.1.32 122 4/12/2024
2.1.31 101 4/12/2024
2.1.30 113 4/12/2024
2.1.29 111 4/12/2024
2.1.28 134 4/12/2024
2.1.27 92 4/12/2024
2.1.26 102 4/12/2024
2.1.25 101 4/12/2024
2.1.24 107 4/12/2024
2.1.23 127 4/11/2024
2.1.22 102 4/11/2024
2.1.21 129 4/10/2024
2.1.20 108 4/10/2024
2.1.19 116 4/10/2024
2.1.18 115 4/10/2024
2.1.17 103 4/10/2024
2.1.16 109 4/10/2024
2.1.15 103 4/10/2024
2.1.14 260 4/3/2024
2.1.13 101 4/2/2024
2.1.12 94 4/2/2024
2.1.11 89 4/2/2024
2.1.10 95 4/2/2024
2.1.9 78 4/2/2024
2.1.8 95 4/1/2024
2.1.7 94 4/1/2024
2.1.6 88 4/1/2024
2.1.5 107 3/31/2024
2.1.4 107 3/30/2024
2.1.3 97 3/30/2024
2.1.2 104 3/27/2024