Soenneker.SmartEnum.Abbreviated 3.0.602

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

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

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.608 65 11/21/2024
3.0.607 70 11/21/2024
3.0.606 37 11/21/2024
3.0.605 95 11/20/2024
3.0.604 88 11/20/2024
3.0.603 92 11/20/2024
3.0.602 67 11/20/2024
3.0.601 64 11/20/2024
3.0.600 37 11/20/2024
3.0.598 92 11/20/2024
3.0.597 34 11/20/2024
3.0.595 96 11/19/2024
3.0.594 72 11/19/2024
3.0.593 32 11/19/2024
3.0.592 88 11/19/2024
3.0.591 35 11/19/2024
3.0.590 35 11/19/2024
3.0.589 161 11/19/2024
3.0.588 32 11/19/2024
3.0.587 114 11/19/2024
3.0.586 33 11/19/2024
3.0.585 37 11/19/2024
3.0.584 61 11/19/2024
3.0.583 185 11/15/2024
3.0.582 114 11/14/2024
3.0.581 65 11/14/2024
3.0.580 70 11/14/2024
3.0.579 107 11/14/2024
3.0.578 73 11/14/2024
3.0.577 134 11/14/2024
3.0.576 70 11/14/2024
3.0.575 170 11/14/2024
3.0.574 147 11/14/2024
3.0.573 63 11/14/2024
3.0.572 168 11/14/2024
3.0.571 62 11/14/2024
3.0.570 99 11/14/2024
3.0.569 64 11/14/2024
3.0.568 133 11/14/2024
3.0.567 62 11/14/2024
3.0.566 114 11/14/2024
3.0.565 66 11/14/2024
2.1.564 220 11/13/2024
2.1.563 113 11/13/2024
2.1.562 153 11/13/2024
2.1.561 64 11/13/2024
2.1.560 116 11/13/2024
2.1.559 69 11/13/2024
2.1.558 170 11/13/2024
2.1.557 63 11/13/2024
2.1.556 141 11/12/2024
2.1.555 60 11/12/2024
2.1.554 350 11/9/2024
2.1.553 89 11/9/2024
2.1.552 162 11/9/2024
2.1.551 131 11/9/2024
2.1.550 69 11/9/2024
2.1.549 167 11/9/2024
2.1.548 124 11/8/2024
2.1.547 66 11/8/2024
2.1.546 90 11/8/2024
2.1.545 83 11/8/2024
2.1.544 69 11/8/2024
2.1.543 204 11/8/2024
2.1.542 69 11/8/2024
2.1.541 70 11/8/2024
2.1.540 162 11/8/2024
2.1.539 68 11/8/2024
2.1.538 155 11/8/2024
2.1.537 67 11/8/2024
2.1.536 214 11/6/2024
2.1.535 290 11/1/2024
2.1.534 166 11/1/2024
2.1.533 65 11/1/2024
2.1.532 245 10/29/2024
2.1.531 122 10/29/2024
2.1.530 100 10/29/2024
2.1.529 142 10/29/2024
2.1.527 203 10/29/2024
2.1.526 158 10/29/2024
2.1.525 159 10/29/2024
2.1.524 204 10/28/2024
2.1.523 66 10/28/2024
2.1.522 355 10/26/2024
2.1.521 108 10/26/2024
2.1.520 131 10/26/2024
2.1.519 242 10/22/2024
2.1.518 84 10/22/2024
2.1.517 191 10/22/2024
2.1.516 75 10/22/2024
2.1.515 146 10/22/2024
2.1.514 61 10/22/2024
2.1.513 158 10/22/2024
2.1.512 260 10/18/2024
2.1.511 129 10/17/2024
2.1.510 74 10/17/2024
2.1.509 160 10/17/2024
2.1.508 216 10/15/2024
2.1.507 108 10/15/2024
2.1.506 73 10/15/2024
2.1.505 105 10/14/2024
2.1.504 191 10/12/2024
2.1.503 107 10/12/2024
2.1.502 126 10/11/2024
2.1.501 101 10/11/2024
2.1.500 109 10/11/2024
2.1.499 78 10/11/2024
2.1.498 159 10/9/2024
2.1.497 112 10/9/2024
2.1.496 123 10/9/2024
2.1.495 78 10/9/2024
2.1.493 105 10/9/2024
2.1.492 100 10/8/2024
2.1.491 121 10/8/2024
2.1.490 92 10/8/2024
2.1.489 197 10/8/2024
2.1.488 82 10/8/2024
2.1.487 106 10/8/2024
2.1.486 79 10/8/2024
2.1.485 257 10/7/2024
2.1.484 130 10/3/2024
2.1.483 74 10/3/2024
2.1.482 101 10/3/2024
2.1.481 99 10/3/2024
2.1.480 74 10/3/2024
2.1.479 94 10/3/2024
2.1.478 69 10/3/2024
2.1.477 103 10/3/2024
2.1.476 111 10/2/2024
2.1.475 100 10/2/2024
2.1.474 84 10/2/2024
2.1.473 74 10/2/2024
2.1.472 106 10/2/2024
2.1.471 82 10/2/2024
2.1.470 103 10/1/2024
2.1.469 192 10/1/2024
2.1.468 102 10/1/2024
2.1.467 70 10/1/2024
2.1.466 94 10/1/2024
2.1.465 74 10/1/2024
2.1.464 114 10/1/2024
2.1.463 93 9/30/2024
2.1.462 108 9/29/2024
2.1.461 104 9/29/2024
2.1.460 118 9/29/2024
2.1.459 80 9/29/2024
2.1.458 112 9/29/2024
2.1.457 73 9/29/2024
2.1.456 145 9/27/2024
2.1.455 91 9/27/2024
2.1.454 113 9/27/2024
2.1.453 77 9/27/2024
2.1.452 101 9/27/2024
2.1.451 84 9/27/2024
2.1.450 105 9/27/2024
2.1.449 71 9/27/2024
2.1.448 79 9/27/2024
2.1.447 71 9/27/2024
2.1.446 95 9/27/2024
2.1.445 100 9/26/2024
2.1.444 103 9/26/2024
2.1.443 79 9/26/2024
2.1.442 115 9/26/2024
2.1.441 99 9/26/2024
2.1.440 91 9/26/2024
2.1.439 95 9/26/2024
2.1.438 77 9/26/2024
2.1.437 88 9/26/2024
2.1.436 235 9/26/2024
2.1.435 73 9/26/2024
2.1.434 159 9/23/2024
2.1.433 93 9/23/2024
2.1.432 106 9/23/2024
2.1.431 77 9/23/2024
2.1.430 113 9/23/2024
2.1.429 109 9/23/2024
2.1.428 94 9/23/2024
2.1.427 128 9/23/2024
2.1.426 109 9/23/2024
2.1.425 71 9/23/2024
2.1.424 83 9/23/2024
2.1.423 95 9/23/2024
2.1.422 79 9/23/2024
2.1.421 133 9/23/2024
2.1.420 77 9/23/2024
2.1.419 117 9/18/2024
2.1.418 91 9/18/2024
2.1.417 135 9/18/2024
2.1.416 95 9/18/2024
2.1.415 101 9/18/2024
2.1.414 97 9/17/2024
2.1.413 87 9/17/2024
2.1.412 83 9/17/2024
2.1.411 94 9/17/2024
2.1.410 95 9/17/2024
2.1.409 78 9/17/2024
2.1.408 88 9/17/2024
2.1.407 87 9/17/2024
2.1.406 79 9/17/2024
2.1.405 79 9/17/2024
2.1.404 91 9/17/2024
2.1.403 78 9/17/2024
2.1.402 290 9/17/2024
2.1.401 124 9/16/2024
2.1.400 93 9/16/2024
2.1.399 106 9/16/2024
2.1.398 82 9/16/2024
2.1.397 167 9/12/2024
2.1.396 106 9/12/2024
2.1.395 122 9/12/2024
2.1.394 125 9/12/2024
2.1.393 90 9/12/2024
2.1.392 113 9/12/2024
2.1.391 93 9/11/2024
2.1.390 115 9/11/2024
2.1.389 89 9/11/2024
2.1.388 131 9/11/2024
2.1.387 120 9/11/2024
2.1.386 86 9/11/2024
2.1.385 92 9/11/2024
2.1.383 110 9/11/2024
2.1.382 122 9/11/2024
2.1.381 120 9/11/2024
2.1.380 156 9/11/2024
2.1.379 118 9/10/2024
2.1.378 97 9/10/2024
2.1.377 130 9/10/2024
2.1.376 111 9/10/2024
2.1.375 91 9/10/2024
2.1.374 101 9/10/2024
2.1.373 93 9/10/2024
2.1.372 122 9/10/2024
2.1.371 109 9/10/2024
2.1.370 108 9/10/2024
2.1.369 89 9/10/2024
2.1.368 118 9/9/2024
2.1.367 84 9/9/2024
2.1.366 115 9/9/2024
2.1.365 122 9/9/2024
2.1.363 108 9/9/2024
2.1.362 101 9/9/2024
2.1.361 115 9/9/2024
2.1.360 93 9/9/2024
2.1.358 95 9/9/2024
2.1.357 90 9/9/2024
2.1.356 90 9/9/2024
2.1.355 117 9/9/2024
2.1.354 76 9/9/2024
2.1.353 174 9/7/2024
2.1.352 96 9/7/2024
2.1.351 88 9/7/2024
2.1.350 105 9/7/2024
2.1.349 100 9/6/2024
2.1.348 114 9/6/2024
2.1.347 111 9/6/2024
2.1.346 97 9/6/2024
2.1.345 105 9/6/2024
2.1.344 89 9/6/2024
2.1.343 171 9/5/2024
2.1.342 82 9/5/2024
2.1.341 88 9/5/2024
2.1.340 117 9/5/2024
2.1.339 89 9/5/2024
2.1.338 124 9/5/2024
2.1.337 88 9/5/2024
2.1.336 88 9/5/2024
2.1.335 100 9/5/2024
2.1.334 96 9/5/2024
2.1.333 111 9/5/2024
2.1.332 88 9/5/2024
2.1.331 115 9/4/2024
2.1.330 94 9/4/2024
2.1.329 177 9/4/2024
2.1.328 112 9/3/2024
2.1.327 88 9/3/2024
2.1.326 102 9/3/2024
2.1.325 106 9/3/2024
2.1.324 89 9/3/2024
2.1.323 112 9/3/2024
2.1.322 79 9/3/2024
2.1.321 90 9/3/2024
2.1.320 88 9/3/2024
2.1.319 118 8/29/2024
2.1.318 68 8/29/2024
2.1.317 85 8/29/2024
2.1.316 66 8/29/2024
2.1.315 197 8/26/2024
2.1.314 102 8/26/2024
2.1.313 85 8/26/2024
2.1.312 106 8/26/2024
2.1.311 224 8/21/2024
2.1.310 120 8/21/2024
2.1.309 108 8/21/2024
2.1.308 100 8/21/2024
2.1.307 101 8/21/2024
2.1.306 90 8/21/2024
2.1.305 131 8/20/2024
2.1.304 109 8/20/2024
2.1.303 122 8/20/2024
2.1.302 104 8/20/2024
2.1.301 142 8/20/2024
2.1.300 98 8/20/2024
2.1.299 105 8/20/2024
2.1.298 102 8/20/2024
2.1.297 97 8/20/2024
2.1.296 124 8/20/2024
2.1.295 127 8/20/2024
2.1.294 109 8/19/2024
2.1.293 97 8/19/2024
2.1.292 187 8/15/2024
2.1.291 116 8/15/2024
2.1.290 125 8/15/2024
2.1.289 97 8/15/2024
2.1.288 133 8/14/2024
2.1.287 102 8/14/2024
2.1.286 96 8/14/2024
2.1.285 122 8/13/2024
2.1.284 113 8/7/2024
2.1.283 91 8/7/2024
2.1.282 85 8/7/2024
2.1.281 83 8/7/2024
2.1.280 96 8/6/2024
2.1.279 82 8/6/2024
2.1.278 213 8/1/2024
2.1.277 87 8/1/2024
2.1.276 80 8/1/2024
2.1.275 90 8/1/2024
2.1.274 73 8/1/2024
2.1.273 257 7/25/2024
2.1.272 69 7/25/2024
2.1.271 66 7/25/2024
2.1.270 61 7/25/2024
2.1.269 73 7/25/2024
2.1.268 120 7/25/2024
2.1.267 50 7/25/2024
2.1.266 74 7/25/2024
2.1.265 57 7/25/2024
2.1.264 54 7/25/2024
2.1.263 95 7/24/2024
2.1.262 95 7/24/2024
2.1.260 193 7/20/2024
2.1.259 104 7/20/2024
2.1.258 93 7/20/2024
2.1.257 240 7/14/2024
2.1.256 97 7/14/2024
2.1.255 87 7/14/2024
2.1.254 80 7/14/2024
2.1.253 102 7/14/2024
2.1.252 83 7/14/2024
2.1.251 94 7/14/2024
2.1.250 111 7/13/2024
2.1.249 127 7/10/2024
2.1.248 88 7/10/2024
2.1.247 92 7/10/2024
2.1.246 100 7/10/2024
2.1.245 101 7/10/2024
2.1.244 94 7/10/2024
2.1.243 84 7/10/2024
2.1.242 88 7/10/2024
2.1.241 98 7/10/2024
2.1.240 93 7/10/2024
2.1.239 69 7/10/2024
2.1.238 81 7/10/2024
2.1.237 84 7/10/2024
2.1.236 86 7/10/2024
2.1.235 84 7/10/2024
2.1.234 114 7/10/2024
2.1.232 101 7/10/2024
2.1.231 88 7/10/2024
2.1.230 115 7/9/2024
2.1.229 88 7/9/2024
2.1.227 75 7/9/2024
2.1.226 71 7/9/2024
2.1.225 92 7/9/2024
2.1.224 109 7/9/2024
2.1.223 98 7/9/2024
2.1.222 82 7/9/2024
2.1.221 103 7/9/2024
2.1.220 89 7/9/2024
2.1.219 96 7/9/2024
2.1.218 74 7/9/2024
2.1.217 94 7/9/2024
2.1.216 89 7/9/2024
2.1.215 122 7/9/2024
2.1.214 88 7/9/2024
2.1.213 93 7/8/2024
2.1.212 97 7/8/2024
2.1.211 92 7/8/2024
2.1.210 122 7/8/2024
2.1.209 92 7/8/2024
2.1.208 123 7/8/2024
2.1.207 107 7/8/2024
2.1.206 79 7/8/2024
2.1.205 107 7/8/2024
2.1.204 100 7/7/2024
2.1.203 111 7/7/2024
2.1.202 92 7/7/2024
2.1.201 106 7/7/2024
2.1.200 94 7/7/2024
2.1.199 128 7/7/2024
2.1.198 108 7/7/2024
2.1.197 146 7/3/2024
2.1.196 98 7/3/2024
2.1.195 113 7/3/2024
2.1.194 115 7/3/2024
2.1.193 104 7/3/2024
2.1.192 100 7/3/2024
2.1.191 94 7/3/2024
2.1.190 110 7/3/2024
2.1.189 236 6/27/2024
2.1.188 96 6/27/2024
2.1.187 99 6/27/2024
2.1.186 110 6/22/2024
2.1.185 101 6/22/2024
2.1.184 105 6/22/2024
2.1.183 155 6/16/2024
2.1.182 99 6/15/2024
2.1.181 97 6/15/2024
2.1.180 102 6/15/2024
2.1.179 103 6/15/2024
2.1.178 82 6/15/2024
2.1.177 102 6/15/2024
2.1.176 87 6/15/2024
2.1.175 109 6/15/2024
2.1.174 102 6/15/2024
2.1.173 103 6/14/2024
2.1.172 85 6/14/2024
2.1.171 103 6/14/2024
2.1.170 145 6/4/2024
2.1.169 108 6/4/2024
2.1.168 149 6/2/2024
2.1.167 107 6/1/2024
2.1.166 102 6/1/2024
2.1.165 101 6/1/2024
2.1.164 95 6/1/2024
2.1.163 113 6/1/2024
2.1.162 116 6/1/2024
2.1.161 89 6/1/2024
2.1.160 90 6/1/2024
2.1.159 109 6/1/2024
2.1.158 106 5/31/2024
2.1.157 102 5/31/2024
2.1.156 110 5/31/2024
2.1.155 98 5/31/2024
2.1.154 94 5/31/2024
2.1.153 135 5/29/2024
2.1.152 99 5/29/2024
2.1.151 99 5/29/2024
2.1.150 96 5/29/2024
2.1.149 91 5/29/2024
2.1.148 150 5/28/2024
2.1.147 95 5/28/2024
2.1.146 94 5/28/2024
2.1.145 94 5/28/2024
2.1.144 96 5/28/2024
2.1.143 79 5/28/2024
2.1.142 88 5/27/2024
2.1.141 86 5/27/2024
2.1.140 94 5/27/2024
2.1.139 99 5/27/2024
2.1.138 99 5/27/2024
2.1.137 82 5/27/2024
2.1.136 87 5/26/2024
2.1.135 120 5/26/2024
2.1.134 95 5/26/2024
2.1.133 103 5/26/2024
2.1.132 101 5/26/2024
2.1.131 103 5/26/2024
2.1.130 93 5/26/2024
2.1.129 89 5/26/2024
2.1.128 114 5/25/2024
2.1.127 86 5/25/2024
2.1.126 93 5/25/2024
2.1.125 89 5/25/2024
2.1.124 89 5/25/2024
2.1.123 85 5/25/2024
2.1.122 112 5/25/2024
2.1.121 91 5/25/2024
2.1.120 99 5/25/2024
2.1.119 91 5/25/2024
2.1.118 115 5/25/2024
2.1.117 119 5/23/2024
2.1.116 89 5/23/2024
2.1.115 92 5/23/2024
2.1.114 84 5/23/2024
2.1.113 108 5/23/2024
2.1.112 90 5/23/2024
2.1.111 89 5/23/2024
2.1.110 113 5/23/2024
2.1.109 89 5/23/2024
2.1.108 106 5/22/2024
2.1.107 88 5/22/2024
2.1.106 107 5/22/2024
2.1.105 89 5/22/2024
2.1.104 102 5/22/2024
2.1.103 87 5/22/2024
2.1.102 86 5/22/2024
2.1.101 102 5/22/2024
2.1.100 111 5/18/2024
2.1.99 102 5/18/2024
2.1.98 112 5/18/2024
2.1.97 93 5/18/2024
2.1.96 101 5/18/2024
2.1.95 100 5/18/2024
2.1.94 111 5/17/2024
2.1.93 110 5/17/2024
2.1.92 119 5/17/2024
2.1.91 100 5/17/2024
2.1.90 110 5/17/2024
2.1.89 105 5/17/2024
2.1.88 136 5/16/2024
2.1.87 105 5/16/2024
2.1.86 99 5/16/2024
2.1.85 109 5/15/2024
2.1.84 99 5/15/2024
2.1.83 109 5/15/2024
2.1.82 121 5/15/2024
2.1.81 98 5/15/2024
2.1.80 116 5/13/2024
2.1.79 91 5/13/2024
2.1.78 89 5/13/2024
2.1.77 89 5/13/2024
2.1.76 159 4/30/2024
2.1.75 114 4/30/2024
2.1.74 109 4/30/2024
2.1.73 103 4/30/2024
2.1.72 117 4/30/2024
2.1.71 94 4/29/2024
2.1.70 86 4/29/2024
2.1.69 115 4/29/2024
2.1.68 95 4/29/2024
2.1.67 91 4/29/2024
2.1.66 95 4/29/2024
2.1.65 95 4/28/2024
2.1.64 87 4/28/2024
2.1.63 105 4/28/2024
2.1.62 88 4/28/2024
2.1.61 92 4/28/2024
2.1.60 100 4/28/2024
2.1.59 111 4/28/2024
2.1.58 84 4/28/2024
2.1.57 101 4/28/2024
2.1.56 89 4/28/2024
2.1.55 105 4/28/2024
2.1.54 89 4/28/2024
2.1.53 104 4/28/2024
2.1.52 93 4/28/2024
2.1.51 101 4/27/2024
2.1.50 198 4/20/2024
2.1.49 113 4/20/2024
2.1.48 118 4/19/2024
2.1.47 96 4/19/2024
2.1.46 100 4/19/2024
2.1.45 84 4/19/2024
2.1.44 103 4/19/2024
2.1.43 123 4/19/2024
2.1.42 101 4/19/2024
2.1.41 109 4/18/2024
2.1.40 176 4/13/2024
2.1.39 113 4/13/2024
2.1.38 112 4/13/2024
2.1.37 109 4/13/2024
2.1.36 96 4/13/2024
2.1.35 113 4/12/2024
2.1.34 105 4/12/2024
2.1.33 91 4/12/2024
2.1.32 118 4/12/2024
2.1.31 99 4/12/2024
2.1.30 111 4/12/2024
2.1.29 107 4/12/2024
2.1.28 130 4/12/2024
2.1.27 88 4/12/2024
2.1.26 100 4/12/2024
2.1.25 99 4/12/2024
2.1.24 103 4/12/2024
2.1.23 125 4/11/2024
2.1.22 100 4/11/2024
2.1.21 127 4/10/2024
2.1.20 106 4/10/2024
2.1.19 106 4/10/2024
2.1.18 111 4/10/2024
2.1.17 99 4/10/2024
2.1.16 107 4/10/2024
2.1.15 101 4/10/2024
2.1.14 258 4/3/2024
2.1.13 97 4/2/2024
2.1.12 92 4/2/2024
2.1.11 87 4/2/2024
2.1.10 93 4/2/2024
2.1.9 76 4/2/2024
2.1.8 93 4/1/2024
2.1.7 92 4/1/2024
2.1.6 86 4/1/2024
2.1.5 105 3/31/2024
2.1.4 105 3/30/2024
2.1.3 93 3/30/2024
2.1.2 102 3/27/2024