Soenneker.Extensions.Enumerable 3.0.513

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 3.0.513
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.513
                    
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="3.0.513" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="3.0.513" />
                    
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 3.0.513
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.513"
                    
#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@3.0.513
                    
#: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=3.0.513
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.513
                    
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 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.  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 26,461 9/9/2025
3.0.565 20,936 9/3/2025
3.0.564 2,122 9/3/2025
3.0.563 158 9/3/2025
3.0.562 35,755 8/11/2025
3.0.561 4,858 8/11/2025
3.0.560 413 8/11/2025
3.0.559 24,750 8/5/2025
3.0.558 25,946 7/8/2025
3.0.557 30,978 6/27/2025
3.0.556 2,467 6/27/2025
3.0.555 250 6/27/2025
3.0.554 33,894 6/10/2025
3.0.553 24,360 5/27/2025
3.0.552 1,561 5/27/2025
3.0.551 1,309 5/27/2025
3.0.550 23,039 5/23/2025
3.0.549 2,578 5/23/2025
3.0.548 2,529 5/22/2025
3.0.547 22,298 5/14/2025
3.0.546 13,743 5/8/2025
3.0.545 2,043 5/7/2025
3.0.544 300 5/7/2025
3.0.543 19,268 5/5/2025
3.0.542 2,117 5/5/2025
3.0.541 3,818 5/5/2025
3.0.540 174 5/5/2025
3.0.539 27,686 4/8/2025
3.0.538 2,918 4/8/2025
3.0.537 622 4/8/2025
3.0.536 3,043 4/8/2025
3.0.535 206 4/8/2025
3.0.534 4,657 4/8/2025
3.0.533 754 4/8/2025
3.0.532 7,425 4/8/2025
3.0.531 8,863 4/8/2025
3.0.530 1,814 4/7/2025
3.0.529 4,428 4/7/2025
3.0.528 1,528 4/7/2025
3.0.527 3,680 4/7/2025
3.0.526 9,786 4/7/2025
3.0.525 2,872 4/7/2025
3.0.524 706 4/7/2025
3.0.523 11,313 4/7/2025
3.0.522 2,302 4/7/2025
3.0.521 3,898 4/6/2025
3.0.520 303 4/6/2025
3.0.519 1,906 4/6/2025
3.0.518 2,159 4/6/2025
3.0.517 2,710 4/6/2025
3.0.516 146 4/6/2025
3.0.515 473 4/6/2025
3.0.514 155 4/6/2025
3.0.513 568 4/5/2025
3.0.512 3,571 4/5/2025
3.0.511 1,790 4/5/2025
3.0.510 1,374 4/5/2025
3.0.509 215 4/5/2025
3.0.508 272 4/5/2025
3.0.507 336 4/5/2025
3.0.506 3,304 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,592 4/4/2025
3.0.503 44,408 4/4/2025
3.0.502 9,964 4/1/2025
3.0.501 5,446 4/1/2025
3.0.500 7,833 3/31/2025
3.0.499 3,441 3/31/2025
3.0.498 7,783 3/31/2025
3.0.497 9,574 3/29/2025
3.0.496 2,509 3/29/2025
3.0.495 7,936 3/27/2025
3.0.494 5,182 3/25/2025
3.0.493 2,049 3/25/2025
3.0.492 12,852 3/21/2025
3.0.491 12,655 3/18/2025
3.0.490 5,976 3/18/2025
3.0.489 9,026 3/15/2025
3.0.488 2,774 3/15/2025
3.0.487 10,173 3/12/2025
3.0.486 3,730 3/12/2025
3.0.485 613 3/12/2025
3.0.484 3,776 3/11/2025
3.0.483 451 3/11/2025
3.0.482 1,488 3/11/2025
3.0.481 2,823 3/11/2025
3.0.480 4,236 3/11/2025
3.0.479 3,691 3/11/2025
3.0.478 2,445 3/11/2025
3.0.477 14,839 3/7/2025
3.0.476 4,414 3/7/2025
3.0.475 8,982 3/2/2025
3.0.474 3,266 3/2/2025
3.0.473 796 3/2/2025
3.0.472 6,257 3/2/2025
3.0.471 5,767 3/1/2025
3.0.470 308 3/1/2025
3.0.469 5,587 3/1/2025
3.0.468 140 3/1/2025
3.0.467 2,025 3/1/2025
3.0.466 15,170 2/26/2025
3.0.465 1,358 2/25/2025
3.0.464 3,782 2/25/2025
3.0.463 2,424 2/25/2025
3.0.462 1,251 2/25/2025
3.0.461 14,168 2/23/2025
3.0.460 2,476 2/22/2025
3.0.459 11,252 2/22/2025
3.0.458 3,320 2/22/2025
3.0.457 4,022 2/22/2025
3.0.456 684 2/21/2025
3.0.455 6,348 2/21/2025
3.0.454 14,090 2/19/2025
3.0.453 5,737 2/18/2025
3.0.452 1,249 2/18/2025
3.0.451 521 2/18/2025
3.0.450 6,787 2/18/2025
3.0.449 138 2/18/2025
3.0.448 16,483 2/14/2025
3.0.447 1,667 2/14/2025
3.0.446 4,666 2/13/2025
3.0.445 5,710 2/13/2025
3.0.444 6,426 2/12/2025
3.0.443 2,042 2/12/2025
3.0.442 891 2/12/2025
3.0.441 2,538 2/12/2025
3.0.440 875 2/12/2025
3.0.439 592 2/11/2025
3.0.438 9,507 2/11/2025
3.0.437 3,264 2/11/2025
3.0.436 533 2/11/2025
3.0.435 3,063 2/10/2025
3.0.434 150 2/10/2025
3.0.433 2,099 2/10/2025
3.0.432 156 2/10/2025
3.0.431 16,831 2/9/2025
3.0.430 9,596 2/9/2025
3.0.429 469 2/9/2025
3.0.428 322 2/8/2025
3.0.427 276 2/8/2025
3.0.426 331 2/8/2025
3.0.425 10,351 2/8/2025
3.0.424 3,343 2/7/2025
3.0.423 2,309 2/7/2025
3.0.422 2,756 2/7/2025
3.0.421 141 2/7/2025
3.0.420 471 2/7/2025
3.0.419 154 2/7/2025
3.0.418 2,368 2/7/2025
3.0.417 144 2/7/2025
3.0.416 17,404 2/7/2025
3.0.415 8,711 2/5/2025
3.0.414 1,017 2/5/2025
3.0.413 1,465 2/5/2025
3.0.412 331 2/5/2025
3.0.411 3,061 2/5/2025
3.0.410 6,570 2/5/2025
3.0.409 14,690 1/28/2025
3.0.408 1,050 1/28/2025
3.0.407 324 1/28/2025
3.0.406 3,364 1/28/2025
3.0.405 6,961 1/27/2025
3.0.404 1,895 1/27/2025
3.0.403 135 1/27/2025
3.0.402 6,813 1/27/2025
3.0.401 139 1/27/2025
3.0.400 7,614 1/26/2025
3.0.399 1,578 1/26/2025
3.0.398 1,204 1/26/2025
3.0.397 666 1/26/2025
3.0.396 307 1/26/2025
3.0.395 3,275 1/25/2025
3.0.394 7,318 1/25/2025
3.0.393 5,389 1/25/2025
3.0.392 540 1/25/2025
3.0.391 13,460 1/24/2025
3.0.390 2,514 1/24/2025
3.0.389 4,457 1/24/2025
3.0.388 4,987 1/24/2025
3.0.387 1,139 1/23/2025
3.0.386 1,435 1/23/2025
3.0.385 177 1/23/2025
3.0.384 11,972 1/22/2025
3.0.383 1,532 1/21/2025
3.0.382 474 1/21/2025
3.0.381 1,441 1/21/2025
3.0.380 1,432 1/21/2025
3.0.379 1,638 1/21/2025
3.0.378 1,236 1/21/2025
3.0.377 1,677 1/21/2025
3.0.376 151 1/21/2025
3.0.375 7,796 1/21/2025
3.0.374 2,130 1/21/2025
3.0.373 1,814 1/21/2025
3.0.372 3,335 1/21/2025
3.0.371 239 1/20/2025
3.0.370 8,625 1/20/2025
3.0.369 329 1/20/2025
3.0.368 1,830 1/20/2025
3.0.367 136 1/20/2025
3.0.366 1,571 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,408 1/19/2025
3.0.363 8,312 1/19/2025
3.0.362 8,067 1/19/2025
3.0.361 2,733 1/19/2025
3.0.360 810 1/19/2025
3.0.359 4,528 1/18/2025
3.0.358 183 1/18/2025
3.0.357 4,353 1/18/2025
3.0.356 309 1/18/2025
3.0.355 1,284 1/18/2025
3.0.354 7,999 1/17/2025
3.0.353 179 1/17/2025
3.0.352 10,483 1/16/2025
3.0.351 5,681 1/16/2025
3.0.350 987 1/16/2025
3.0.349 6,370 1/15/2025
3.0.348 5,562 1/15/2025
3.0.347 4,555 1/15/2025
3.0.346 5,020 1/15/2025
3.0.345 2,910 1/15/2025
3.0.344 3,864 1/15/2025
3.0.343 1,046 1/15/2025
3.0.342 3,212 1/14/2025
3.0.341 566 1/14/2025
3.0.340 171 1/14/2025
3.0.339 4,646 1/14/2025
3.0.338 1,211 1/14/2025
3.0.337 133 1/14/2025
3.0.336 1,432 1/14/2025
3.0.335 466 1/14/2025
3.0.334 9,334 1/13/2025
3.0.333 2,046 1/13/2025
3.0.332 3,851 1/13/2025
3.0.331 7,967 1/11/2025
3.0.330 3,216 1/11/2025
3.0.329 3,420 1/10/2025
3.0.328 6,935 1/10/2025
3.0.327 154 1/10/2025
3.0.326 679 1/10/2025
3.0.325 146 1/10/2025
3.0.324 147 1/10/2025
3.0.323 11,260 1/3/2025
3.0.322 1,271 1/3/2025
3.0.321 1,643 1/3/2025
3.0.320 493 1/3/2025
3.0.319 1,826 1/3/2025
3.0.318 4,096 1/2/2025
3.0.317 162 1/2/2025
3.0.316 2,862 1/2/2025
3.0.315 165 1/2/2025
3.0.314 3,733 1/2/2025
3.0.313 168 1/2/2025
3.0.312 12,265 1/1/2025
3.0.311 159 1/1/2025
3.0.310 227 12/31/2024
3.0.309 169 12/31/2024
3.0.308 4,489 12/31/2024
3.0.307 159 12/31/2024
3.0.306 251 12/31/2024
3.0.305 855 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,304 12/31/2024
3.0.302 509 12/31/2024
3.0.301 7,917 12/31/2024
3.0.300 5,688 12/31/2024
3.0.299 1,317 12/31/2024
3.0.298 4,006 12/31/2024
3.0.297 3,093 12/31/2024
3.0.296 148 12/31/2024
3.0.295 161 12/31/2024
3.0.294 14,539 12/28/2024
3.0.293 2,452 12/28/2024
3.0.292 1,407 12/28/2024
3.0.291 1,659 12/27/2024
3.0.290 10,579 12/24/2024
3.0.289 2,304 12/24/2024
3.0.288 2,144 12/24/2024
3.0.287 3,096 12/24/2024
3.0.286 3,284 12/24/2024
3.0.285 2,639 12/24/2024
3.0.284 2,146 12/24/2024
3.0.283 1,661 12/23/2024
3.0.282 3,659 12/23/2024
3.0.281 4,289 12/23/2024
3.0.280 1,637 12/23/2024
3.0.279 4,826 12/23/2024
3.0.278 402 12/23/2024
3.0.277 4,490 12/22/2024
3.0.276 7,213 12/22/2024
3.0.275 7,006 12/22/2024
3.0.274 9,647 12/21/2024
3.0.273 600 12/21/2024
3.0.272 4,666 12/21/2024
3.0.271 6,394 12/21/2024
3.0.270 1,241 12/21/2024
3.0.269 7,407 12/20/2024
3.0.268 14,241 12/18/2024
3.0.267 197 12/18/2024
3.0.266 8,879 12/17/2024
3.0.265 7,626 12/17/2024
3.0.264 490 12/16/2024
3.0.263 1,354 12/16/2024
3.0.262 9,950 12/10/2024
3.0.261 2,833 12/9/2024
3.0.260 4,566 12/9/2024
3.0.259 3,207 12/9/2024
3.0.258 8,790 12/6/2024
3.0.257 1,660 12/6/2024
3.0.256 2,917 12/6/2024
3.0.255 8,806 12/6/2024
3.0.254 245 12/6/2024
3.0.253 417 12/6/2024
3.0.252 1,188 12/6/2024
3.0.251 7,091 12/6/2024
3.0.250 179 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,510 12/5/2024
3.0.247 5,406 12/5/2024
3.0.246 4,093 12/5/2024
3.0.245 5,043 12/5/2024
3.0.244 737 12/5/2024
3.0.243 597 12/5/2024
3.0.242 6,420 12/4/2024
3.0.241 575 12/4/2024
3.0.240 1,372 12/4/2024
3.0.239 4,226 12/4/2024
3.0.238 4,737 12/3/2024
3.0.237 3,490 12/3/2024
3.0.236 4,198 12/3/2024
3.0.235 4,245 12/3/2024
3.0.234 5,836 12/2/2024
3.0.233 4,919 12/2/2024
3.0.232 2,898 12/2/2024
3.0.231 570 12/2/2024
3.0.230 5,237 12/1/2024
3.0.229 1,075 12/1/2024
3.0.228 3,951 12/1/2024
3.0.227 5,033 12/1/2024
3.0.226 5,329 11/29/2024
3.0.225 9,134 11/21/2024
3.0.224 7,610 11/20/2024
3.0.223 789 11/20/2024
3.0.222 1,365 11/20/2024
3.0.221 700 11/19/2024
3.0.220 6,751 11/19/2024
3.0.219 2,767 11/19/2024
3.0.218 150 11/19/2024
3.0.217 4,584 11/19/2024
3.0.216 141 11/19/2024
3.0.215 13,005 11/14/2024
3.0.214 1,454 11/14/2024
3.0.213 4,990 11/14/2024
3.0.212 1,202 11/14/2024
3.0.211 706 11/14/2024
3.0.210 5,311 11/14/2024
3.0.209 148 11/14/2024
3.0.208 4,380 11/14/2024
3.0.207 245 11/14/2024
2.1.206 15,047 11/13/2024
2.1.205 6,040 11/13/2024
2.1.204 14,620 11/9/2024
2.1.203 990 11/9/2024
2.1.202 2,628 11/9/2024
2.1.201 1,511 11/8/2024
2.1.200 1,235 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,277 11/8/2024
2.1.197 323 11/8/2024
2.1.196 5,548 11/8/2024
2.1.195 7,275 11/8/2024
2.1.194 16,294 11/1/2024
2.1.192 11,623 10/29/2024
2.1.191 12,517 10/28/2024
2.1.190 7,913 10/26/2024
2.1.189 13,215 10/22/2024
2.1.188 1,747 10/22/2024
2.1.187 1,300 10/22/2024
2.1.186 10,532 10/17/2024
2.1.185 7,610 10/15/2024
2.1.184 2,923 10/14/2024
2.1.183 8,394 10/11/2024
2.1.182 1,109 10/11/2024
2.1.181 684 10/11/2024
2.1.180 13,652 10/9/2024
2.1.179 1,094 10/8/2024
2.1.178 6,776 10/8/2024
2.1.177 1,017 10/8/2024
2.1.176 15,664 10/3/2024
2.1.175 4,617 10/3/2024
2.1.174 11,254 10/2/2024
2.1.173 3,435 10/2/2024
2.1.172 8,290 10/1/2024
2.1.171 2,104 10/1/2024
2.1.170 3,356 10/1/2024
2.1.169 9,592 9/29/2024
2.1.168 2,736 9/29/2024
2.1.167 1,989 9/29/2024
2.1.166 11,562 9/27/2024
2.1.165 6,465 9/27/2024
2.1.164 147 9/27/2024
2.1.163 380 9/27/2024
2.1.162 148 9/27/2024
2.1.161 9,722 9/26/2024
2.1.160 9,271 9/26/2024
2.1.159 8,564 9/26/2024
2.1.158 8,775 9/23/2024
2.1.157 4,036 9/23/2024
2.1.156 2,357 9/23/2024
2.1.155 2,413 9/23/2024
2.1.154 8,133 9/23/2024
2.1.153 943 9/23/2024
2.1.152 1,102 9/23/2024
2.1.151 139 9/23/2024
2.1.150 2,757 9/23/2024
2.1.149 14,945 9/17/2024
2.1.148 149 9/17/2024
2.1.147 503 9/17/2024
2.1.146 5,815 9/17/2024
2.1.145 4,925 9/17/2024
2.1.144 6,691 9/17/2024
2.1.143 159 9/17/2024
2.1.142 609 9/17/2024
2.1.141 1,432 9/17/2024
2.1.140 16,171 9/16/2024
2.1.139 9,080 9/12/2024
2.1.138 6,211 9/11/2024
2.1.137 3,658 9/11/2024
2.1.136 7,111 9/11/2024
2.1.135 5,751 9/11/2024
2.1.134 13,387 9/10/2024
2.1.133 2,758 9/10/2024
2.1.132 4,354 9/9/2024
2.1.131 4,698 9/9/2024
2.1.130 2,954 9/9/2024
2.1.129 1,447 9/9/2024
2.1.128 147 9/9/2024
2.1.127 154 9/9/2024
2.1.126 156 9/9/2024
2.1.125 20,201 9/6/2024
2.1.124 7,930 9/6/2024
2.1.123 4,065 9/5/2024
2.1.122 2,396 9/5/2024
2.1.121 5,017 9/5/2024
2.1.120 2,630 9/5/2024
2.1.119 155 9/5/2024
2.1.118 2,018 9/5/2024
2.1.117 7,173 9/5/2024
2.1.116 1,620 9/4/2024
2.1.115 14,749 9/3/2024
2.1.114 1,431 9/3/2024
2.1.113 6,120 9/3/2024
2.1.112 11,727 8/29/2024
2.1.111 8,284 8/26/2024
2.1.110 8,210 8/21/2024
2.1.109 4,633 8/21/2024
2.1.108 529 8/20/2024
2.1.107 5,869 8/20/2024
2.1.106 158 8/20/2024
2.1.105 5,899 8/20/2024
2.1.104 3,514 8/20/2024
2.1.103 11,221 8/15/2024
2.1.102 10,006 8/13/2024
2.1.101 9,431 8/6/2024
2.1.100 11,387 8/1/2024
2.1.99 700 8/1/2024
2.1.98 10,897 7/25/2024
2.1.97 1,323 7/25/2024
2.1.96 1,200 7/25/2024
2.1.95 789 7/24/2024
2.1.94 291 7/24/2024
2.1.93 12,027 7/20/2024
2.1.92 10,012 7/14/2024
2.1.91 2,732 7/14/2024
2.1.90 8,489 7/10/2024
2.1.89 300 7/10/2024
2.1.88 2,604 7/10/2024
2.1.87 2,459 7/10/2024
2.1.86 309 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,701 7/10/2024
2.1.82 3,766 7/9/2024
2.1.80 1,035 7/9/2024
2.1.79 1,348 7/9/2024
2.1.78 9,350 7/9/2024
2.1.77 3,869 7/9/2024
2.1.76 15,050 7/9/2024
2.1.75 167 7/9/2024
2.1.74 185 7/8/2024
2.1.73 152 7/8/2024
2.1.72 2,931 7/8/2024
2.1.71 147 7/8/2024
2.1.70 8,584 7/8/2024
2.1.69 2,813 7/7/2024
2.1.68 3,259 7/7/2024
2.1.67 814 7/7/2024
2.1.66 1,638 7/7/2024
2.1.65 3,699 7/7/2024
2.1.64 3,331 7/7/2024
2.1.63 157 7/7/2024
2.1.62 4,558 7/5/2024
2.1.61 90,395 5/25/2024
2.1.60 162 5/25/2024
2.1.59 644 5/25/2024
2.1.58 17,409 5/22/2024
2.1.57 158 5/22/2024
2.1.56 14,152 5/17/2024
2.1.55 20,063 4/30/2024
2.1.54 19,695 4/28/2024
2.1.53 164 4/28/2024
2.1.52 817 4/27/2024
2.1.51 156 4/27/2024
2.1.50 30,675 4/12/2024
2.1.49 1,646 4/12/2024
2.1.48 174 4/12/2024
2.1.47 46,773 3/18/2024
2.1.46 10,491 3/13/2024
2.1.45 2,731 3/13/2024
2.1.44 72,798 2/21/2024
2.1.43 3,213 2/21/2024
2.1.42 163 2/21/2024
2.1.41 25,647 2/16/2024
2.1.40 777 2/16/2024
2.1.39 28,265 2/9/2024
2.1.38 22,068 2/6/2024
2.1.37 173 2/6/2024
2.1.36 73,175 1/15/2024
2.1.35 1,021 1/15/2024
2.1.34 29,799 1/5/2024
2.1.33 2,821 1/5/2024
2.1.32 15,193 12/27/2023
2.1.31 1,546 12/27/2023
2.1.30 1,267 12/27/2023
2.1.29 9,021 12/25/2023
2.1.28 1,662 12/25/2023
2.1.27 768 12/25/2023
2.1.26 12,117 12/23/2023
2.1.25 194 12/23/2023
2.1.24 903 12/23/2023
2.1.23 23,574 12/9/2023
2.1.22 1,514 12/9/2023
2.1.21 296 12/9/2023
2.1.20 2,282 12/9/2023
2.1.19 12,380 12/4/2023
2.1.18 948 12/4/2023
2.1.17 6,313 11/26/2023
2.1.16 6,140 11/23/2023
2.1.15 424 11/23/2023
2.1.14 1,117 11/23/2023
2.1.13 10,817 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,352 11/18/2023
2.1.10 3,889 11/18/2023
2.1.9 2,133 11/18/2023
2.1.8 4,161 11/17/2023
2.1.7 1,125 11/17/2023
2.1.6 2,014 11/17/2023
2.1.5 1,043 11/17/2023
2.1.4 774 11/16/2023
2.1.3 220 11/16/2023
2.0.52 1,450 11/15/2023
2.0.51 2,771 11/15/2023
2.0.2 167 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,526 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,458 11/9/2023
1.0.46 172 11/9/2023
1.0.45 5,780 11/6/2023
1.0.44 2,421 11/3/2023
1.0.43 1,973 11/2/2023
1.0.42 2,149 11/1/2023
1.0.41 8,291 10/18/2023
1.0.40 3,246 10/17/2023
1.0.39 1,391 10/16/2023
1.0.38 2,909 10/13/2023
1.0.37 205 10/13/2023
1.0.36 6,736 9/19/2023
1.0.35 2,287 9/18/2023
1.0.34 178 9/18/2023
1.0.33 8,376 8/30/2023
1.0.32 2,963 8/29/2023
1.0.31 4,557 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,511 8/17/2023
1.0.28 234 8/17/2023
1.0.27 8,272 8/7/2023
1.0.26 233 8/7/2023
1.0.25 8,209 7/10/2023
1.0.24 12,272 7/7/2023
1.0.23 230 7/7/2023
1.0.22 10,132 6/28/2023
1.0.21 47,661 5/24/2023
1.0.20 1,286 5/24/2023
1.0.19 482 5/23/2023
1.0.18 262 5/31/2023
1.0.17 2,941 5/23/2023
1.0.16 3,054 5/22/2023
1.0.15 6,420 5/17/2023
1.0.14 251 5/17/2023
1.0.13 5,945 4/28/2023
1.0.12 2,386 4/24/2023
1.0.11 1,065 4/21/2023
1.0.10 4,907 4/12/2023
1.0.9 1,199 4/11/2023
1.0.8 2,276 4/3/2023
1.0.7 303 4/3/2023
1.0.6 438 4/1/2023
1.0.5 2,144 3/23/2023
1.0.3 623 2/28/2023
1.0.2 530 2/16/2023