Soenneker.Extensions.Enumerable 2.1.171

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.171
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 2.1.171
                    
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.171" />
                    
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.171" />
                    
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.171
                    
#r "nuget: Soenneker.Extensions.Enumerable, 2.1.171"
                    
#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.171
                    
#: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.171
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=2.1.171
                    
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 24,997 9/9/2025
3.0.565 20,474 9/3/2025
3.0.564 2,101 9/3/2025
3.0.563 158 9/3/2025
3.0.562 34,981 8/11/2025
3.0.561 4,713 8/11/2025
3.0.560 410 8/11/2025
3.0.559 24,141 8/5/2025
3.0.558 25,429 7/8/2025
3.0.557 30,368 6/27/2025
3.0.556 2,374 6/27/2025
3.0.555 249 6/27/2025
3.0.554 33,220 6/10/2025
3.0.553 23,944 5/27/2025
3.0.552 1,543 5/27/2025
3.0.551 1,294 5/27/2025
3.0.550 22,581 5/23/2025
3.0.549 2,505 5/23/2025
3.0.548 2,451 5/22/2025
3.0.547 21,734 5/14/2025
3.0.546 13,469 5/8/2025
3.0.545 2,020 5/7/2025
3.0.544 293 5/7/2025
3.0.543 18,911 5/5/2025
3.0.542 2,085 5/5/2025
3.0.541 3,774 5/5/2025
3.0.540 173 5/5/2025
3.0.539 27,112 4/8/2025
3.0.538 2,888 4/8/2025
3.0.537 616 4/8/2025
3.0.536 2,969 4/8/2025
3.0.535 205 4/8/2025
3.0.534 4,536 4/8/2025
3.0.533 751 4/8/2025
3.0.532 7,324 4/8/2025
3.0.531 8,692 4/8/2025
3.0.530 1,808 4/7/2025
3.0.529 4,400 4/7/2025
3.0.528 1,514 4/7/2025
3.0.527 3,628 4/7/2025
3.0.526 9,504 4/7/2025
3.0.525 2,854 4/7/2025
3.0.524 698 4/7/2025
3.0.523 10,958 4/7/2025
3.0.522 2,214 4/7/2025
3.0.521 3,838 4/6/2025
3.0.520 303 4/6/2025
3.0.519 1,883 4/6/2025
3.0.518 2,138 4/6/2025
3.0.517 2,637 4/6/2025
3.0.516 146 4/6/2025
3.0.515 466 4/6/2025
3.0.514 155 4/6/2025
3.0.513 568 4/5/2025
3.0.512 3,551 4/5/2025
3.0.511 1,773 4/5/2025
3.0.510 1,343 4/5/2025
3.0.509 215 4/5/2025
3.0.508 269 4/5/2025
3.0.507 330 4/5/2025
3.0.506 3,285 4/4/2025
3.0.505 170 4/4/2025
3.0.504 3,464 4/4/2025
3.0.503 43,367 4/4/2025
3.0.502 9,714 4/1/2025
3.0.501 5,319 4/1/2025
3.0.500 7,621 3/31/2025
3.0.499 3,345 3/31/2025
3.0.498 7,597 3/31/2025
3.0.497 9,330 3/29/2025
3.0.496 2,427 3/29/2025
3.0.495 7,713 3/27/2025
3.0.494 5,106 3/25/2025
3.0.493 2,040 3/25/2025
3.0.492 12,576 3/21/2025
3.0.491 12,462 3/18/2025
3.0.490 5,866 3/18/2025
3.0.489 8,869 3/15/2025
3.0.488 2,726 3/15/2025
3.0.487 10,038 3/12/2025
3.0.486 3,686 3/12/2025
3.0.485 612 3/12/2025
3.0.484 3,729 3/11/2025
3.0.483 448 3/11/2025
3.0.482 1,464 3/11/2025
3.0.481 2,823 3/11/2025
3.0.480 4,188 3/11/2025
3.0.479 3,621 3/11/2025
3.0.478 2,389 3/11/2025
3.0.477 14,615 3/7/2025
3.0.476 4,323 3/7/2025
3.0.475 8,811 3/2/2025
3.0.474 3,239 3/2/2025
3.0.473 787 3/2/2025
3.0.472 6,139 3/2/2025
3.0.471 5,669 3/1/2025
3.0.470 308 3/1/2025
3.0.469 5,427 3/1/2025
3.0.468 140 3/1/2025
3.0.467 2,020 3/1/2025
3.0.466 14,870 2/26/2025
3.0.465 1,317 2/25/2025
3.0.464 3,697 2/25/2025
3.0.463 2,415 2/25/2025
3.0.462 1,237 2/25/2025
3.0.461 13,905 2/23/2025
3.0.460 2,459 2/22/2025
3.0.459 11,077 2/22/2025
3.0.458 3,224 2/22/2025
3.0.457 3,997 2/22/2025
3.0.456 680 2/21/2025
3.0.455 6,222 2/21/2025
3.0.454 13,864 2/19/2025
3.0.453 5,685 2/18/2025
3.0.452 1,238 2/18/2025
3.0.451 514 2/18/2025
3.0.450 6,602 2/18/2025
3.0.449 137 2/18/2025
3.0.448 16,153 2/14/2025
3.0.447 1,647 2/14/2025
3.0.446 4,580 2/13/2025
3.0.445 5,585 2/13/2025
3.0.444 6,310 2/12/2025
3.0.443 2,021 2/12/2025
3.0.442 885 2/12/2025
3.0.441 2,487 2/12/2025
3.0.440 875 2/12/2025
3.0.439 591 2/11/2025
3.0.438 9,419 2/11/2025
3.0.437 3,224 2/11/2025
3.0.436 530 2/11/2025
3.0.435 3,039 2/10/2025
3.0.434 149 2/10/2025
3.0.433 2,090 2/10/2025
3.0.432 156 2/10/2025
3.0.431 16,601 2/9/2025
3.0.430 9,394 2/9/2025
3.0.429 469 2/9/2025
3.0.428 319 2/8/2025
3.0.427 276 2/8/2025
3.0.426 331 2/8/2025
3.0.425 10,139 2/8/2025
3.0.424 3,329 2/7/2025
3.0.423 2,289 2/7/2025
3.0.422 2,750 2/7/2025
3.0.421 141 2/7/2025
3.0.420 470 2/7/2025
3.0.419 153 2/7/2025
3.0.418 2,341 2/7/2025
3.0.417 144 2/7/2025
3.0.416 17,131 2/7/2025
3.0.415 8,610 2/5/2025
3.0.414 1,011 2/5/2025
3.0.413 1,462 2/5/2025
3.0.412 331 2/5/2025
3.0.411 3,051 2/5/2025
3.0.410 6,530 2/5/2025
3.0.409 14,486 1/28/2025
3.0.408 1,018 1/28/2025
3.0.407 321 1/28/2025
3.0.406 3,274 1/28/2025
3.0.405 6,823 1/27/2025
3.0.404 1,884 1/27/2025
3.0.403 135 1/27/2025
3.0.402 6,606 1/27/2025
3.0.401 139 1/27/2025
3.0.400 7,456 1/26/2025
3.0.399 1,548 1/26/2025
3.0.398 1,197 1/26/2025
3.0.397 660 1/26/2025
3.0.396 304 1/26/2025
3.0.395 3,250 1/25/2025
3.0.394 7,143 1/25/2025
3.0.393 5,315 1/25/2025
3.0.392 540 1/25/2025
3.0.391 13,164 1/24/2025
3.0.390 2,448 1/24/2025
3.0.389 4,358 1/24/2025
3.0.388 4,854 1/24/2025
3.0.387 1,135 1/23/2025
3.0.386 1,432 1/23/2025
3.0.385 177 1/23/2025
3.0.384 11,732 1/22/2025
3.0.383 1,502 1/21/2025
3.0.382 474 1/21/2025
3.0.381 1,415 1/21/2025
3.0.380 1,407 1/21/2025
3.0.379 1,625 1/21/2025
3.0.378 1,233 1/21/2025
3.0.377 1,673 1/21/2025
3.0.376 151 1/21/2025
3.0.375 7,588 1/21/2025
3.0.374 2,101 1/21/2025
3.0.373 1,793 1/21/2025
3.0.372 3,206 1/21/2025
3.0.371 239 1/20/2025
3.0.370 8,473 1/20/2025
3.0.369 329 1/20/2025
3.0.368 1,814 1/20/2025
3.0.367 135 1/20/2025
3.0.366 1,570 1/20/2025
3.0.365 149 1/20/2025
3.0.364 5,396 1/19/2025
3.0.363 8,014 1/19/2025
3.0.362 7,893 1/19/2025
3.0.361 2,663 1/19/2025
3.0.360 806 1/19/2025
3.0.359 4,468 1/18/2025
3.0.358 183 1/18/2025
3.0.357 4,287 1/18/2025
3.0.356 309 1/18/2025
3.0.355 1,280 1/18/2025
3.0.354 7,841 1/17/2025
3.0.353 179 1/17/2025
3.0.352 10,335 1/16/2025
3.0.351 5,588 1/16/2025
3.0.350 987 1/16/2025
3.0.349 6,312 1/15/2025
3.0.348 5,425 1/15/2025
3.0.347 4,493 1/15/2025
3.0.346 4,886 1/15/2025
3.0.345 2,899 1/15/2025
3.0.344 3,779 1/15/2025
3.0.343 1,046 1/15/2025
3.0.342 3,180 1/14/2025
3.0.341 563 1/14/2025
3.0.340 171 1/14/2025
3.0.339 4,538 1/14/2025
3.0.338 1,166 1/14/2025
3.0.337 132 1/14/2025
3.0.336 1,417 1/14/2025
3.0.335 466 1/14/2025
3.0.334 9,147 1/13/2025
3.0.333 1,980 1/13/2025
3.0.332 3,803 1/13/2025
3.0.331 7,754 1/11/2025
3.0.330 3,115 1/11/2025
3.0.329 3,377 1/10/2025
3.0.328 6,807 1/10/2025
3.0.327 154 1/10/2025
3.0.326 669 1/10/2025
3.0.325 145 1/10/2025
3.0.324 147 1/10/2025
3.0.323 11,035 1/3/2025
3.0.322 1,268 1/3/2025
3.0.321 1,600 1/3/2025
3.0.320 487 1/3/2025
3.0.319 1,799 1/3/2025
3.0.318 4,013 1/2/2025
3.0.317 161 1/2/2025
3.0.316 2,749 1/2/2025
3.0.315 165 1/2/2025
3.0.314 3,644 1/2/2025
3.0.313 168 1/2/2025
3.0.312 12,018 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,467 12/31/2024
3.0.307 159 12/31/2024
3.0.306 251 12/31/2024
3.0.305 852 12/31/2024
3.0.304 162 12/31/2024
3.0.303 1,298 12/31/2024
3.0.302 508 12/31/2024
3.0.301 7,709 12/31/2024
3.0.300 5,482 12/31/2024
3.0.299 1,282 12/31/2024
3.0.298 3,881 12/31/2024
3.0.297 3,086 12/31/2024
3.0.296 147 12/31/2024
3.0.295 161 12/31/2024
3.0.294 14,206 12/28/2024
3.0.293 2,393 12/28/2024
3.0.292 1,404 12/28/2024
3.0.291 1,649 12/27/2024
3.0.290 10,376 12/24/2024
3.0.289 2,261 12/24/2024
3.0.288 2,122 12/24/2024
3.0.287 3,064 12/24/2024
3.0.286 3,220 12/24/2024
3.0.285 2,614 12/24/2024
3.0.284 2,086 12/24/2024
3.0.283 1,655 12/23/2024
3.0.282 3,620 12/23/2024
3.0.281 4,241 12/23/2024
3.0.280 1,629 12/23/2024
3.0.279 4,715 12/23/2024
3.0.278 399 12/23/2024
3.0.277 4,450 12/22/2024
3.0.276 7,002 12/22/2024
3.0.275 6,932 12/22/2024
3.0.274 9,354 12/21/2024
3.0.273 599 12/21/2024
3.0.272 4,661 12/21/2024
3.0.271 6,123 12/21/2024
3.0.270 1,236 12/21/2024
3.0.269 7,240 12/20/2024
3.0.268 13,972 12/18/2024
3.0.267 196 12/18/2024
3.0.266 8,710 12/17/2024
3.0.265 7,597 12/17/2024
3.0.264 487 12/16/2024
3.0.263 1,345 12/16/2024
3.0.262 9,812 12/10/2024
3.0.261 2,798 12/9/2024
3.0.260 4,506 12/9/2024
3.0.259 3,134 12/9/2024
3.0.258 8,629 12/6/2024
3.0.257 1,649 12/6/2024
3.0.256 2,896 12/6/2024
3.0.255 8,630 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 6,920 12/6/2024
3.0.250 179 12/6/2024
3.0.249 155 12/6/2024
3.0.248 5,419 12/5/2024
3.0.247 5,292 12/5/2024
3.0.246 4,016 12/5/2024
3.0.245 4,676 12/5/2024
3.0.244 728 12/5/2024
3.0.243 594 12/5/2024
3.0.242 6,345 12/4/2024
3.0.241 575 12/4/2024
3.0.240 1,350 12/4/2024
3.0.239 4,179 12/4/2024
3.0.238 4,620 12/3/2024
3.0.237 3,429 12/3/2024
3.0.236 4,140 12/3/2024
3.0.235 4,032 12/3/2024
3.0.234 5,747 12/2/2024
3.0.233 4,638 12/2/2024
3.0.232 2,811 12/2/2024
3.0.231 568 12/2/2024
3.0.230 5,136 12/1/2024
3.0.229 1,071 12/1/2024
3.0.228 3,845 12/1/2024
3.0.227 4,933 12/1/2024
3.0.226 5,217 11/29/2024
3.0.225 8,975 11/21/2024
3.0.224 7,489 11/20/2024
3.0.223 788 11/20/2024
3.0.222 1,363 11/20/2024
3.0.221 697 11/19/2024
3.0.220 6,687 11/19/2024
3.0.219 2,756 11/19/2024
3.0.218 149 11/19/2024
3.0.217 4,486 11/19/2024
3.0.216 141 11/19/2024
3.0.215 12,763 11/14/2024
3.0.214 1,443 11/14/2024
3.0.213 4,878 11/14/2024
3.0.212 1,199 11/14/2024
3.0.211 700 11/14/2024
3.0.210 5,189 11/14/2024
3.0.209 147 11/14/2024
3.0.208 4,255 11/14/2024
3.0.207 245 11/14/2024
2.1.206 14,858 11/13/2024
2.1.205 5,903 11/13/2024
2.1.204 14,355 11/9/2024
2.1.203 988 11/9/2024
2.1.202 2,527 11/9/2024
2.1.201 1,510 11/8/2024
2.1.200 1,231 11/8/2024
2.1.199 152 11/8/2024
2.1.198 2,276 11/8/2024
2.1.197 323 11/8/2024
2.1.196 5,507 11/8/2024
2.1.195 7,115 11/8/2024
2.1.194 15,985 11/1/2024
2.1.192 11,383 10/29/2024
2.1.191 12,250 10/28/2024
2.1.190 7,718 10/26/2024
2.1.189 12,971 10/22/2024
2.1.188 1,742 10/22/2024
2.1.187 1,282 10/22/2024
2.1.186 10,242 10/17/2024
2.1.185 7,436 10/15/2024
2.1.184 2,826 10/14/2024
2.1.183 8,193 10/11/2024
2.1.182 1,101 10/11/2024
2.1.181 667 10/11/2024
2.1.180 13,275 10/9/2024
2.1.179 1,071 10/8/2024
2.1.178 6,591 10/8/2024
2.1.177 1,017 10/8/2024
2.1.176 15,280 10/3/2024
2.1.175 4,493 10/3/2024
2.1.174 10,950 10/2/2024
2.1.173 3,323 10/2/2024
2.1.172 8,092 10/1/2024
2.1.171 2,098 10/1/2024
2.1.170 3,224 10/1/2024
2.1.169 9,329 9/29/2024
2.1.168 2,680 9/29/2024
2.1.167 1,910 9/29/2024
2.1.166 11,267 9/27/2024
2.1.165 6,303 9/27/2024
2.1.164 146 9/27/2024
2.1.163 380 9/27/2024
2.1.162 147 9/27/2024
2.1.161 9,472 9/26/2024
2.1.160 9,033 9/26/2024
2.1.159 8,341 9/26/2024
2.1.158 8,542 9/23/2024
2.1.157 3,912 9/23/2024
2.1.156 2,322 9/23/2024
2.1.155 2,383 9/23/2024
2.1.154 7,872 9/23/2024
2.1.153 929 9/23/2024
2.1.152 1,102 9/23/2024
2.1.151 138 9/23/2024
2.1.150 2,742 9/23/2024
2.1.149 14,562 9/17/2024
2.1.148 149 9/17/2024
2.1.147 492 9/17/2024
2.1.146 5,773 9/17/2024
2.1.145 4,900 9/17/2024
2.1.144 6,614 9/17/2024
2.1.143 159 9/17/2024
2.1.142 597 9/17/2024
2.1.141 1,421 9/17/2024
2.1.140 15,855 9/16/2024
2.1.139 8,863 9/12/2024
2.1.138 6,080 9/11/2024
2.1.137 3,570 9/11/2024
2.1.136 6,899 9/11/2024
2.1.135 5,642 9/11/2024
2.1.134 13,004 9/10/2024
2.1.133 2,730 9/10/2024
2.1.132 4,286 9/9/2024
2.1.131 4,669 9/9/2024
2.1.130 2,848 9/9/2024
2.1.129 1,439 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 19,821 9/6/2024
2.1.124 7,755 9/6/2024
2.1.123 3,982 9/5/2024
2.1.122 2,380 9/5/2024
2.1.121 4,899 9/5/2024
2.1.120 2,586 9/5/2024
2.1.119 155 9/5/2024
2.1.118 2,010 9/5/2024
2.1.117 6,966 9/5/2024
2.1.116 1,604 9/4/2024
2.1.115 14,454 9/3/2024
2.1.114 1,427 9/3/2024
2.1.113 5,758 9/3/2024
2.1.112 11,235 8/29/2024
2.1.111 8,080 8/26/2024
2.1.110 8,026 8/21/2024
2.1.109 4,494 8/21/2024
2.1.108 524 8/20/2024
2.1.107 5,677 8/20/2024
2.1.106 157 8/20/2024
2.1.105 5,779 8/20/2024
2.1.104 3,486 8/20/2024
2.1.103 10,867 8/15/2024
2.1.102 9,730 8/13/2024
2.1.101 9,193 8/6/2024
2.1.100 11,078 8/1/2024
2.1.99 675 8/1/2024
2.1.98 10,627 7/25/2024
2.1.97 1,303 7/25/2024
2.1.96 1,186 7/25/2024
2.1.95 782 7/24/2024
2.1.94 277 7/24/2024
2.1.93 11,717 7/20/2024
2.1.92 9,687 7/14/2024
2.1.91 2,634 7/14/2024
2.1.90 8,259 7/10/2024
2.1.89 300 7/10/2024
2.1.88 2,548 7/10/2024
2.1.87 2,422 7/10/2024
2.1.86 309 7/10/2024
2.1.85 315 7/10/2024
2.1.83 2,561 7/10/2024
2.1.82 3,730 7/9/2024
2.1.80 1,026 7/9/2024
2.1.79 1,344 7/9/2024
2.1.78 9,069 7/9/2024
2.1.77 3,739 7/9/2024
2.1.76 14,916 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,864 7/8/2024
2.1.71 146 7/8/2024
2.1.70 8,452 7/8/2024
2.1.69 2,745 7/7/2024
2.1.68 3,153 7/7/2024
2.1.67 814 7/7/2024
2.1.66 1,603 7/7/2024
2.1.65 3,631 7/7/2024
2.1.64 3,278 7/7/2024
2.1.63 156 7/7/2024
2.1.62 4,417 7/5/2024
2.1.61 87,635 5/25/2024
2.1.60 162 5/25/2024
2.1.59 644 5/25/2024
2.1.58 16,872 5/22/2024
2.1.57 157 5/22/2024
2.1.56 13,750 5/17/2024
2.1.55 19,469 4/30/2024
2.1.54 19,305 4/28/2024
2.1.53 164 4/28/2024
2.1.52 809 4/27/2024
2.1.51 156 4/27/2024
2.1.50 30,075 4/12/2024
2.1.49 1,638 4/12/2024
2.1.48 174 4/12/2024
2.1.47 46,408 3/18/2024
2.1.46 10,456 3/13/2024
2.1.45 2,698 3/13/2024
2.1.44 72,208 2/21/2024
2.1.43 3,181 2/21/2024
2.1.42 162 2/21/2024
2.1.41 25,361 2/16/2024
2.1.40 757 2/16/2024
2.1.39 28,004 2/9/2024
2.1.38 21,855 2/6/2024
2.1.37 172 2/6/2024
2.1.36 72,415 1/15/2024
2.1.35 1,008 1/15/2024
2.1.34 29,539 1/5/2024
2.1.33 2,768 1/5/2024
2.1.32 15,023 12/27/2023
2.1.31 1,523 12/27/2023
2.1.30 1,267 12/27/2023
2.1.29 8,956 12/25/2023
2.1.28 1,641 12/25/2023
2.1.27 768 12/25/2023
2.1.26 12,015 12/23/2023
2.1.25 194 12/23/2023
2.1.24 903 12/23/2023
2.1.23 23,415 12/9/2023
2.1.22 1,513 12/9/2023
2.1.21 296 12/9/2023
2.1.20 2,269 12/9/2023
2.1.19 12,247 12/4/2023
2.1.18 948 12/4/2023
2.1.17 6,257 11/26/2023
2.1.16 6,078 11/23/2023
2.1.15 424 11/23/2023
2.1.14 1,113 11/23/2023
2.1.13 10,705 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,352 11/18/2023
2.1.10 3,864 11/18/2023
2.1.9 2,125 11/18/2023
2.1.8 4,146 11/17/2023
2.1.7 1,124 11/17/2023
2.1.6 2,010 11/17/2023
2.1.5 1,041 11/17/2023
2.1.4 774 11/16/2023
2.1.3 220 11/16/2023
2.0.52 1,444 11/15/2023
2.0.51 2,722 11/15/2023
2.0.2 167 11/16/2023
2.0.1 184 11/16/2023
1.0.50 4,508 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,457 11/9/2023
1.0.46 170 11/9/2023
1.0.45 5,779 11/6/2023
1.0.44 2,408 11/3/2023
1.0.43 1,969 11/2/2023
1.0.42 2,143 11/1/2023
1.0.41 8,277 10/18/2023
1.0.40 3,239 10/17/2023
1.0.39 1,391 10/16/2023
1.0.38 2,905 10/13/2023
1.0.37 204 10/13/2023
1.0.36 6,717 9/19/2023
1.0.35 2,279 9/18/2023
1.0.34 177 9/18/2023
1.0.33 8,376 8/30/2023
1.0.32 2,959 8/29/2023
1.0.31 4,552 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,510 8/17/2023
1.0.28 234 8/17/2023
1.0.27 8,269 8/7/2023
1.0.26 232 8/7/2023
1.0.25 8,207 7/10/2023
1.0.24 12,262 7/7/2023
1.0.23 230 7/7/2023
1.0.22 10,132 6/28/2023
1.0.21 47,607 5/24/2023
1.0.20 1,281 5/24/2023
1.0.19 482 5/23/2023
1.0.18 262 5/31/2023
1.0.17 2,931 5/23/2023
1.0.16 3,054 5/22/2023
1.0.15 6,413 5/17/2023
1.0.14 251 5/17/2023
1.0.13 5,944 4/28/2023
1.0.12 2,383 4/24/2023
1.0.11 1,064 4/21/2023
1.0.10 4,890 4/12/2023
1.0.9 1,199 4/11/2023
1.0.8 2,272 4/3/2023
1.0.7 303 4/3/2023
1.0.6 437 4/1/2023
1.0.5 2,144 3/23/2023
1.0.3 623 2/28/2023
1.0.2 529 2/16/2023