Soenneker.Extensions.Enumerable 2.1.62

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Extensions.Enumerable --version 2.1.62
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 2.1.62
                    
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.Extensions.Enumerable" Version="2.1.62" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="2.1.62" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Extensions.Enumerable" />
                    
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.Extensions.Enumerable --version 2.1.62
                    
#r "nuget: Soenneker.Extensions.Enumerable, 2.1.62"
                    
#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.Extensions.Enumerable@2.1.62
                    
#: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.Extensions.Enumerable&version=2.1.62
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=2.1.62
                    
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.Extensions.Enumerable

A collection of helpful enumerable extension methods

Installation

dotnet add package Soenneker.Extensions.Enumerable

Usage

IEnumerable should have IsNullOrEmpty() too

var populatedList = new List<string>{"foo", "bar", "foo"};

populatedList.IsNullOrEmpty() // false

populatedList.Populated() // true
populatedList.None() // false

One call checking for null and contains any elements

List<string>? nullList = null;

nullList.IsNullOrEmpty() // true
nullList.Populated() // false

Duplicate handling

var containsDuplicates = populatedList.ContainsDuplicates(); // true

var deduped = populatedList.RemoveDuplicates(); // {"foo", "bar"}

Recursive flattening

public class Node 
{
    public string Name {get; set;}
    public List<Node> Children {get; set;}
}

void Example()
{
    var node = new Node(){ Name = "Node1" };
    node.Children = new List()
    {
        new Node() 
        {
            Name = "Node2"
        }
    }

    List<Node>? children = node.Children.ToFlattenedFromRecursive(c => c.Children);

    // Results in flattened List:
    // { Node1, Node2 }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  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 (15)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.Enumerable:

Package Downloads
Soenneker.Utils.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Utils.String

A utility library for useful String operations

Soenneker.Swashbuckle.Authentication

A middleware implementing basic authentication and RBAC support for Swashbuckle (Swagger)

Soenneker.Utils.Network

A utility library of helpful network related operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.566 17,185 9/9/2025
3.0.565 16,768 9/3/2025
3.0.564 1,684 9/3/2025
3.0.563 136 9/3/2025
3.0.562 29,254 8/11/2025
3.0.561 3,741 8/11/2025
3.0.560 279 8/11/2025
3.0.559 19,992 8/5/2025
3.0.558 22,794 7/8/2025
3.0.557 28,264 6/27/2025
3.0.556 2,225 6/27/2025
3.0.555 224 6/27/2025
3.0.554 30,820 6/10/2025
3.0.553 22,215 5/27/2025
3.0.552 1,437 5/27/2025
3.0.551 1,181 5/27/2025
3.0.550 20,698 5/23/2025
3.0.549 2,319 5/23/2025
3.0.548 2,279 5/22/2025
3.0.547 19,965 5/14/2025
3.0.546 12,420 5/8/2025
3.0.545 1,859 5/7/2025
3.0.544 272 5/7/2025
3.0.543 17,381 5/5/2025
3.0.542 1,938 5/5/2025
3.0.541 3,514 5/5/2025
3.0.540 161 5/5/2025
3.0.539 24,845 4/8/2025
3.0.538 2,648 4/8/2025
3.0.537 573 4/8/2025
3.0.536 2,757 4/8/2025
3.0.535 192 4/8/2025
3.0.534 4,166 4/8/2025
3.0.533 719 4/8/2025
3.0.532 6,657 4/8/2025
3.0.531 7,789 4/8/2025
3.0.530 1,728 4/7/2025
3.0.529 3,974 4/7/2025
3.0.528 1,311 4/7/2025
3.0.527 3,297 4/7/2025
3.0.526 8,730 4/7/2025
3.0.525 2,607 4/7/2025
3.0.524 647 4/7/2025
3.0.523 9,881 4/7/2025
3.0.522 2,015 4/7/2025
3.0.521 3,455 4/6/2025
3.0.520 278 4/6/2025
3.0.519 1,678 4/6/2025
3.0.518 1,958 4/6/2025
3.0.517 2,358 4/6/2025
3.0.516 133 4/6/2025
3.0.515 416 4/6/2025
3.0.514 141 4/6/2025
3.0.513 507 4/5/2025
3.0.512 3,309 4/5/2025
3.0.511 1,611 4/5/2025
3.0.510 1,183 4/5/2025
3.0.509 188 4/5/2025
3.0.508 251 4/5/2025
3.0.507 289 4/5/2025
3.0.506 3,040 4/4/2025
3.0.505 153 4/4/2025
3.0.504 3,194 4/4/2025
3.0.503 39,861 4/4/2025
3.0.502 8,848 4/1/2025
3.0.501 4,820 4/1/2025
3.0.500 6,871 3/31/2025
3.0.499 3,068 3/31/2025
3.0.498 6,948 3/31/2025
3.0.497 8,413 3/29/2025
3.0.496 2,257 3/29/2025
3.0.495 6,954 3/27/2025
3.0.494 4,683 3/25/2025
3.0.493 1,882 3/25/2025
3.0.492 11,404 3/21/2025
3.0.491 11,461 3/18/2025
3.0.490 5,354 3/18/2025
3.0.489 8,001 3/15/2025
3.0.488 2,491 3/15/2025
3.0.487 9,062 3/12/2025
3.0.486 3,336 3/12/2025
3.0.485 562 3/12/2025
3.0.484 3,384 3/11/2025
3.0.483 413 3/11/2025
3.0.482 1,345 3/11/2025
3.0.481 2,596 3/11/2025
3.0.480 3,828 3/11/2025
3.0.479 3,362 3/11/2025
3.0.478 2,180 3/11/2025
3.0.477 13,237 3/7/2025
3.0.476 3,941 3/7/2025
3.0.475 8,036 3/2/2025
3.0.474 2,954 3/2/2025
3.0.473 712 3/2/2025
3.0.472 5,615 3/2/2025
3.0.471 5,151 3/1/2025
3.0.470 266 3/1/2025
3.0.469 4,905 3/1/2025
3.0.468 128 3/1/2025
3.0.467 1,850 3/1/2025
3.0.466 13,514 2/26/2025
3.0.465 1,227 2/25/2025
3.0.464 3,300 2/25/2025
3.0.463 2,222 2/25/2025
3.0.462 1,096 2/25/2025
3.0.461 12,593 2/23/2025
3.0.460 2,262 2/22/2025
3.0.459 10,032 2/22/2025
3.0.458 2,904 2/22/2025
3.0.457 3,522 2/22/2025
3.0.456 590 2/21/2025
3.0.455 5,562 2/21/2025
3.0.454 12,513 2/19/2025
3.0.453 5,166 2/18/2025
3.0.452 1,111 2/18/2025
3.0.451 473 2/18/2025
3.0.450 6,066 2/18/2025
3.0.449 125 2/18/2025
3.0.448 14,751 2/14/2025
3.0.447 1,502 2/14/2025
3.0.446 4,125 2/13/2025
3.0.445 5,044 2/13/2025
3.0.444 5,788 2/12/2025
3.0.443 1,821 2/12/2025
3.0.442 822 2/12/2025
3.0.441 2,274 2/12/2025
3.0.440 817 2/12/2025
3.0.439 545 2/11/2025
3.0.438 8,538 2/11/2025
3.0.437 2,925 2/11/2025
3.0.436 498 2/11/2025
3.0.435 2,797 2/10/2025
3.0.434 136 2/10/2025
3.0.433 1,981 2/10/2025
3.0.432 144 2/10/2025
3.0.431 14,665 2/9/2025
3.0.430 8,515 2/9/2025
3.0.429 408 2/9/2025
3.0.428 301 2/8/2025
3.0.427 249 2/8/2025
3.0.426 312 2/8/2025
3.0.425 9,001 2/8/2025
3.0.424 2,969 2/7/2025
3.0.423 2,036 2/7/2025
3.0.422 2,547 2/7/2025
3.0.421 138 2/7/2025
3.0.420 459 2/7/2025
3.0.419 141 2/7/2025
3.0.418 2,109 2/7/2025
3.0.417 133 2/7/2025
3.0.416 15,600 2/7/2025
3.0.415 7,697 2/5/2025
3.0.414 894 2/5/2025
3.0.413 1,303 2/5/2025
3.0.412 295 2/5/2025
3.0.411 2,715 2/5/2025
3.0.410 5,867 2/5/2025
3.0.409 13,124 1/28/2025
3.0.408 952 1/28/2025
3.0.407 300 1/28/2025
3.0.406 2,856 1/28/2025
3.0.405 6,035 1/27/2025
3.0.404 1,721 1/27/2025
3.0.403 122 1/27/2025
3.0.402 5,811 1/27/2025
3.0.401 125 1/27/2025
3.0.400 6,615 1/26/2025
3.0.399 1,421 1/26/2025
3.0.398 1,068 1/26/2025
3.0.397 601 1/26/2025
3.0.396 289 1/26/2025
3.0.395 2,987 1/25/2025
3.0.394 6,359 1/25/2025
3.0.393 4,785 1/25/2025
3.0.392 491 1/25/2025
3.0.391 11,784 1/24/2025
3.0.390 2,164 1/24/2025
3.0.389 3,807 1/24/2025
3.0.388 4,415 1/24/2025
3.0.387 1,002 1/23/2025
3.0.386 1,245 1/23/2025
3.0.385 173 1/23/2025
3.0.384 10,446 1/22/2025
3.0.383 1,359 1/21/2025
3.0.382 439 1/21/2025
3.0.381 1,303 1/21/2025
3.0.380 1,285 1/21/2025
3.0.379 1,430 1/21/2025
3.0.378 1,155 1/21/2025
3.0.377 1,541 1/21/2025
3.0.376 138 1/21/2025
3.0.375 6,770 1/21/2025
3.0.374 1,937 1/21/2025
3.0.373 1,637 1/21/2025
3.0.372 2,885 1/21/2025
3.0.371 223 1/20/2025
3.0.370 7,588 1/20/2025
3.0.369 296 1/20/2025
3.0.368 1,550 1/20/2025
3.0.367 122 1/20/2025
3.0.366 1,459 1/20/2025
3.0.365 147 1/20/2025
3.0.364 4,799 1/19/2025
3.0.363 7,097 1/19/2025
3.0.362 7,038 1/19/2025
3.0.361 2,391 1/19/2025
3.0.360 715 1/19/2025
3.0.359 4,021 1/18/2025
3.0.358 171 1/18/2025
3.0.357 3,877 1/18/2025
3.0.356 298 1/18/2025
3.0.355 1,193 1/18/2025
3.0.354 6,952 1/17/2025
3.0.353 161 1/17/2025
3.0.352 9,111 1/16/2025
3.0.351 5,018 1/16/2025
3.0.350 930 1/16/2025
3.0.349 5,663 1/15/2025
3.0.348 4,697 1/15/2025
3.0.347 4,050 1/15/2025
3.0.346 4,224 1/15/2025
3.0.345 2,575 1/15/2025
3.0.344 3,266 1/15/2025
3.0.343 880 1/15/2025
3.0.342 2,810 1/14/2025
3.0.341 483 1/14/2025
3.0.340 160 1/14/2025
3.0.339 3,879 1/14/2025
3.0.338 1,057 1/14/2025
3.0.337 120 1/14/2025
3.0.336 1,364 1/14/2025
3.0.335 410 1/14/2025
3.0.334 7,854 1/13/2025
3.0.333 1,810 1/13/2025
3.0.332 3,333 1/13/2025
3.0.331 6,770 1/11/2025
3.0.330 2,783 1/11/2025
3.0.329 3,066 1/10/2025
3.0.328 6,072 1/10/2025
3.0.327 142 1/10/2025
3.0.326 543 1/10/2025
3.0.325 133 1/10/2025
3.0.324 135 1/10/2025
3.0.323 9,818 1/3/2025
3.0.322 1,163 1/3/2025
3.0.321 1,446 1/3/2025
3.0.320 449 1/3/2025
3.0.319 1,605 1/3/2025
3.0.318 3,657 1/2/2025
3.0.317 148 1/2/2025
3.0.316 2,431 1/2/2025
3.0.315 151 1/2/2025
3.0.314 3,306 1/2/2025
3.0.313 155 1/2/2025
3.0.312 10,829 1/1/2025
3.0.311 147 1/1/2025
3.0.310 197 12/31/2024
3.0.309 157 12/31/2024
3.0.308 3,994 12/31/2024
3.0.307 147 12/31/2024
3.0.306 233 12/31/2024
3.0.305 752 12/31/2024
3.0.304 149 12/31/2024
3.0.303 1,197 12/31/2024
3.0.302 426 12/31/2024
3.0.301 6,927 12/31/2024
3.0.300 4,780 12/31/2024
3.0.299 1,101 12/31/2024
3.0.298 3,500 12/31/2024
3.0.297 2,782 12/31/2024
3.0.296 143 12/31/2024
3.0.295 149 12/31/2024
3.0.294 12,606 12/28/2024
3.0.293 2,139 12/28/2024
3.0.292 1,265 12/28/2024
3.0.291 1,484 12/27/2024
3.0.290 9,217 12/24/2024
3.0.289 2,022 12/24/2024
3.0.288 1,937 12/24/2024
3.0.287 2,746 12/24/2024
3.0.286 2,962 12/24/2024
3.0.285 2,332 12/24/2024
3.0.284 1,909 12/24/2024
3.0.283 1,494 12/23/2024
3.0.282 3,233 12/23/2024
3.0.281 3,763 12/23/2024
3.0.280 1,475 12/23/2024
3.0.279 4,123 12/23/2024
3.0.278 366 12/23/2024
3.0.277 3,926 12/22/2024
3.0.276 6,255 12/22/2024
3.0.275 6,267 12/22/2024
3.0.274 8,388 12/21/2024
3.0.273 515 12/21/2024
3.0.272 4,239 12/21/2024
3.0.271 5,321 12/21/2024
3.0.270 1,153 12/21/2024
3.0.269 6,399 12/20/2024
3.0.268 12,536 12/18/2024
3.0.267 193 12/18/2024
3.0.266 8,045 12/17/2024
3.0.265 6,819 12/17/2024
3.0.264 431 12/16/2024
3.0.263 1,260 12/16/2024
3.0.262 8,787 12/10/2024
3.0.261 2,472 12/9/2024
3.0.260 4,023 12/9/2024
3.0.259 2,797 12/9/2024
3.0.258 7,672 12/6/2024
3.0.257 1,470 12/6/2024
3.0.256 2,576 12/6/2024
3.0.255 7,698 12/6/2024
3.0.254 243 12/6/2024
3.0.253 394 12/6/2024
3.0.252 1,111 12/6/2024
3.0.251 6,068 12/6/2024
3.0.250 165 12/6/2024
3.0.249 152 12/6/2024
3.0.248 4,824 12/5/2024
3.0.247 4,723 12/5/2024
3.0.246 3,576 12/5/2024
3.0.245 4,258 12/5/2024
3.0.244 649 12/5/2024
3.0.243 564 12/5/2024
3.0.242 5,636 12/4/2024
3.0.241 553 12/4/2024
3.0.240 1,250 12/4/2024
3.0.239 3,883 12/4/2024
3.0.238 4,017 12/3/2024
3.0.237 3,128 12/3/2024
3.0.236 3,939 12/3/2024
3.0.235 3,634 12/3/2024
3.0.234 5,066 12/2/2024
3.0.233 4,148 12/2/2024
3.0.232 2,516 12/2/2024
3.0.231 488 12/2/2024
3.0.230 4,571 12/1/2024
3.0.229 1,032 12/1/2024
3.0.228 3,337 12/1/2024
3.0.227 4,377 12/1/2024
3.0.226 4,607 11/29/2024
3.0.225 8,161 11/21/2024
3.0.224 6,625 11/20/2024
3.0.223 722 11/20/2024
3.0.222 1,248 11/20/2024
3.0.221 639 11/19/2024
3.0.220 6,018 11/19/2024
3.0.219 2,530 11/19/2024
3.0.218 135 11/19/2024
3.0.217 4,116 11/19/2024
3.0.216 128 11/19/2024
3.0.215 11,274 11/14/2024
3.0.214 1,286 11/14/2024
3.0.213 4,395 11/14/2024
3.0.212 1,069 11/14/2024
3.0.211 634 11/14/2024
3.0.210 4,638 11/14/2024
3.0.209 133 11/14/2024
3.0.208 3,702 11/14/2024
3.0.207 225 11/14/2024
2.1.206 13,504 11/13/2024
2.1.205 5,319 11/13/2024
2.1.204 12,986 11/9/2024
2.1.203 933 11/9/2024
2.1.202 2,329 11/9/2024
2.1.201 1,404 11/8/2024
2.1.200 1,157 11/8/2024
2.1.199 139 11/8/2024
2.1.198 2,084 11/8/2024
2.1.197 303 11/8/2024
2.1.196 4,981 11/8/2024
2.1.195 6,402 11/8/2024
2.1.194 14,092 11/1/2024
2.1.192 10,284 10/29/2024
2.1.191 11,073 10/28/2024
2.1.190 6,974 10/26/2024
2.1.189 11,996 10/22/2024
2.1.188 1,577 10/22/2024
2.1.187 1,136 10/22/2024
2.1.186 9,107 10/17/2024
2.1.185 6,633 10/15/2024
2.1.184 2,520 10/14/2024
2.1.183 7,345 10/11/2024
2.1.182 1,049 10/11/2024
2.1.181 613 10/11/2024
2.1.180 11,756 10/9/2024
2.1.179 997 10/8/2024
2.1.178 5,929 10/8/2024
2.1.177 939 10/8/2024
2.1.176 13,621 10/3/2024
2.1.175 4,026 10/3/2024
2.1.174 9,663 10/2/2024
2.1.173 2,889 10/2/2024
2.1.172 7,174 10/1/2024
2.1.171 1,923 10/1/2024
2.1.170 2,903 10/1/2024
2.1.169 8,292 9/29/2024
2.1.168 2,414 9/29/2024
2.1.167 1,711 9/29/2024
2.1.166 10,105 9/27/2024
2.1.165 5,676 9/27/2024
2.1.164 134 9/27/2024
2.1.163 346 9/27/2024
2.1.162 134 9/27/2024
2.1.161 8,497 9/26/2024
2.1.160 8,088 9/26/2024
2.1.159 7,535 9/26/2024
2.1.158 7,595 9/23/2024
2.1.157 3,595 9/23/2024
2.1.156 2,078 9/23/2024
2.1.155 2,180 9/23/2024
2.1.154 7,010 9/23/2024
2.1.153 802 9/23/2024
2.1.152 964 9/23/2024
2.1.151 125 9/23/2024
2.1.150 2,548 9/23/2024
2.1.149 13,008 9/17/2024
2.1.148 136 9/17/2024
2.1.147 465 9/17/2024
2.1.146 5,300 9/17/2024
2.1.145 4,478 9/17/2024
2.1.144 5,902 9/17/2024
2.1.143 147 9/17/2024
2.1.142 565 9/17/2024
2.1.141 1,324 9/17/2024
2.1.140 14,239 9/16/2024
2.1.139 8,065 9/12/2024
2.1.138 5,430 9/11/2024
2.1.137 3,381 9/11/2024
2.1.136 6,317 9/11/2024
2.1.135 5,146 9/11/2024
2.1.134 11,834 9/10/2024
2.1.133 2,578 9/10/2024
2.1.132 3,989 9/9/2024
2.1.131 4,341 9/9/2024
2.1.130 2,720 9/9/2024
2.1.129 1,353 9/9/2024
2.1.128 134 9/9/2024
2.1.127 141 9/9/2024
2.1.126 144 9/9/2024
2.1.125 17,803 9/6/2024
2.1.124 6,901 9/6/2024
2.1.123 3,619 9/5/2024
2.1.122 2,192 9/5/2024
2.1.121 4,391 9/5/2024
2.1.120 2,377 9/5/2024
2.1.119 142 9/5/2024
2.1.118 1,798 9/5/2024
2.1.117 6,181 9/5/2024
2.1.116 1,516 9/4/2024
2.1.115 12,825 9/3/2024
2.1.114 1,289 9/3/2024
2.1.113 5,259 9/3/2024
2.1.112 10,161 8/29/2024
2.1.111 7,157 8/26/2024
2.1.110 7,237 8/21/2024
2.1.109 4,083 8/21/2024
2.1.108 493 8/20/2024
2.1.107 5,072 8/20/2024
2.1.106 144 8/20/2024
2.1.105 5,257 8/20/2024
2.1.104 3,115 8/20/2024
2.1.103 9,744 8/15/2024
2.1.102 8,680 8/13/2024
2.1.101 8,390 8/6/2024
2.1.100 9,849 8/1/2024
2.1.99 615 8/1/2024
2.1.98 9,345 7/25/2024
2.1.97 1,170 7/25/2024
2.1.96 1,047 7/25/2024
2.1.95 710 7/24/2024
2.1.94 249 7/24/2024
2.1.93 10,403 7/20/2024
2.1.92 8,708 7/14/2024
2.1.91 2,346 7/14/2024
2.1.90 7,389 7/10/2024
2.1.89 280 7/10/2024
2.1.88 2,388 7/10/2024
2.1.87 2,170 7/10/2024
2.1.86 259 7/10/2024
2.1.85 270 7/10/2024
2.1.83 2,266 7/10/2024
2.1.82 3,474 7/9/2024
2.1.80 893 7/9/2024
2.1.79 1,325 7/9/2024
2.1.78 8,217 7/9/2024
2.1.77 3,259 7/9/2024
2.1.76 14,245 7/9/2024
2.1.75 155 7/9/2024
2.1.74 172 7/8/2024
2.1.73 148 7/8/2024
2.1.72 2,619 7/8/2024
2.1.71 134 7/8/2024
2.1.70 7,522 7/8/2024
2.1.69 2,497 7/7/2024
2.1.68 2,839 7/7/2024
2.1.67 753 7/7/2024
2.1.66 1,378 7/7/2024
2.1.65 3,274 7/7/2024
2.1.64 2,911 7/7/2024
2.1.63 143 7/7/2024
2.1.62 3,873 7/5/2024
2.1.61 77,169 5/25/2024
2.1.60 150 5/25/2024
2.1.59 588 5/25/2024
2.1.58 14,720 5/22/2024
2.1.57 154 5/22/2024
2.1.56 12,069 5/17/2024
2.1.55 16,858 4/30/2024
2.1.54 16,858 4/28/2024
2.1.53 152 4/28/2024
2.1.52 742 4/27/2024
2.1.51 144 4/27/2024
2.1.50 26,321 4/12/2024
2.1.49 1,416 4/12/2024
2.1.48 159 4/12/2024
2.1.47 41,330 3/18/2024
2.1.46 9,231 3/13/2024
2.1.45 2,447 3/13/2024
2.1.44 63,844 2/21/2024
2.1.43 2,825 2/21/2024
2.1.42 150 2/21/2024
2.1.41 22,713 2/16/2024
2.1.40 703 2/16/2024
2.1.39 24,826 2/9/2024
2.1.38 19,535 2/6/2024
2.1.37 160 2/6/2024
2.1.36 65,061 1/15/2024
2.1.35 881 1/15/2024
2.1.34 27,027 1/5/2024
2.1.33 2,535 1/5/2024
2.1.32 13,896 12/27/2023
2.1.31 1,392 12/27/2023
2.1.30 1,187 12/27/2023
2.1.29 8,141 12/25/2023
2.1.28 1,480 12/25/2023
2.1.27 724 12/25/2023
2.1.26 10,957 12/23/2023
2.1.25 176 12/23/2023
2.1.24 855 12/23/2023
2.1.23 21,564 12/9/2023
2.1.22 1,410 12/9/2023
2.1.21 283 12/9/2023
2.1.20 2,009 12/9/2023
2.1.19 11,258 12/4/2023
2.1.18 886 12/4/2023
2.1.17 5,661 11/26/2023
2.1.16 5,584 11/23/2023
2.1.15 366 11/23/2023
2.1.14 1,007 11/23/2023
2.1.13 9,792 11/19/2023
2.1.12 166 11/19/2023
2.1.11 1,245 11/18/2023
2.1.10 3,562 11/18/2023
2.1.9 2,013 11/18/2023
2.1.8 3,819 11/17/2023
2.1.7 1,113 11/17/2023
2.1.6 1,791 11/17/2023
2.1.5 919 11/17/2023
2.1.4 695 11/16/2023
2.1.3 210 11/16/2023
2.0.52 1,318 11/15/2023
2.0.51 2,209 11/15/2023
2.0.2 156 11/16/2023
2.0.1 171 11/16/2023
1.0.50 4,253 11/11/2023
1.0.49 149 11/11/2023
1.0.48 142 11/11/2023
1.0.47 1,386 11/9/2023
1.0.46 155 11/9/2023
1.0.45 5,409 11/6/2023
1.0.44 2,314 11/3/2023
1.0.43 1,901 11/2/2023
1.0.42 1,953 11/1/2023
1.0.41 7,776 10/18/2023
1.0.40 3,122 10/17/2023
1.0.39 1,284 10/16/2023
1.0.38 2,799 10/13/2023
1.0.37 194 10/13/2023
1.0.36 6,377 9/19/2023
1.0.35 2,144 9/18/2023
1.0.34 167 9/18/2023
1.0.33 7,925 8/30/2023
1.0.32 2,821 8/29/2023
1.0.31 4,350 8/24/2023
1.0.30 194 8/24/2023
1.0.29 4,475 8/17/2023
1.0.28 221 8/17/2023
1.0.27 8,207 8/7/2023
1.0.26 222 8/7/2023
1.0.25 8,167 7/10/2023
1.0.24 10,811 7/7/2023
1.0.23 220 7/7/2023
1.0.22 9,645 6/28/2023
1.0.21 45,716 5/24/2023
1.0.20 1,219 5/24/2023
1.0.19 471 5/23/2023
1.0.18 251 5/31/2023
1.0.17 2,845 5/23/2023
1.0.16 3,024 5/22/2023
1.0.15 6,175 5/17/2023
1.0.14 241 5/17/2023
1.0.13 5,803 4/28/2023
1.0.12 2,318 4/24/2023
1.0.11 1,033 4/21/2023
1.0.10 4,618 4/12/2023
1.0.9 1,148 4/11/2023
1.0.8 2,151 4/3/2023
1.0.7 293 4/3/2023
1.0.6 426 4/1/2023
1.0.5 2,105 3/23/2023
1.0.3 609 2/28/2023
1.0.2 518 2/16/2023