Soenneker.Extensions.Enumerable 3.0.537

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.537
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.537
                    
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.537" />
                    
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.537" />
                    
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.537
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.537"
                    
#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.537
                    
#: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.537
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.537
                    
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 22,254 9/9/2025
3.0.565 18,107 9/3/2025
3.0.564 1,852 9/3/2025
3.0.563 156 9/3/2025
3.0.562 31,184 8/11/2025
3.0.561 4,062 8/11/2025
3.0.560 367 8/11/2025
3.0.559 21,453 8/5/2025
3.0.558 23,943 7/8/2025
3.0.557 29,174 6/27/2025
3.0.556 2,293 6/27/2025
3.0.555 240 6/27/2025
3.0.554 31,992 6/10/2025
3.0.553 23,095 5/27/2025
3.0.552 1,478 5/27/2025
3.0.551 1,250 5/27/2025
3.0.550 21,620 5/23/2025
3.0.549 2,415 5/23/2025
3.0.548 2,367 5/22/2025
3.0.547 20,823 5/14/2025
3.0.546 12,904 5/8/2025
3.0.545 1,925 5/7/2025
3.0.544 282 5/7/2025
3.0.543 18,066 5/5/2025
3.0.542 2,001 5/5/2025
3.0.541 3,653 5/5/2025
3.0.540 171 5/5/2025
3.0.539 25,870 4/8/2025
3.0.538 2,753 4/8/2025
3.0.537 586 4/8/2025
3.0.536 2,859 4/8/2025
3.0.535 203 4/8/2025
3.0.534 4,300 4/8/2025
3.0.533 729 4/8/2025
3.0.532 6,981 4/8/2025
3.0.531 8,201 4/8/2025
3.0.530 1,743 4/7/2025
3.0.529 4,233 4/7/2025
3.0.528 1,415 4/7/2025
3.0.527 3,450 4/7/2025
3.0.526 9,021 4/7/2025
3.0.525 2,645 4/7/2025
3.0.524 658 4/7/2025
3.0.523 10,394 4/7/2025
3.0.522 2,110 4/7/2025
3.0.521 3,607 4/6/2025
3.0.520 290 4/6/2025
3.0.519 1,742 4/6/2025
3.0.518 2,041 4/6/2025
3.0.517 2,485 4/6/2025
3.0.516 143 4/6/2025
3.0.515 426 4/6/2025
3.0.514 152 4/6/2025
3.0.513 518 4/5/2025
3.0.512 3,396 4/5/2025
3.0.511 1,699 4/5/2025
3.0.510 1,242 4/5/2025
3.0.509 198 4/5/2025
3.0.508 262 4/5/2025
3.0.507 299 4/5/2025
3.0.506 3,183 4/4/2025
3.0.505 167 4/4/2025
3.0.504 3,279 4/4/2025
3.0.503 41,651 4/4/2025
3.0.502 9,253 4/1/2025
3.0.501 5,046 4/1/2025
3.0.500 7,212 3/31/2025
3.0.499 3,179 3/31/2025
3.0.498 7,224 3/31/2025
3.0.497 8,792 3/29/2025
3.0.496 2,329 3/29/2025
3.0.495 7,279 3/27/2025
3.0.494 4,877 3/25/2025
3.0.493 1,952 3/25/2025
3.0.492 11,918 3/21/2025
3.0.491 11,871 3/18/2025
3.0.490 5,558 3/18/2025
3.0.489 8,320 3/15/2025
3.0.488 2,568 3/15/2025
3.0.487 9,436 3/12/2025
3.0.486 3,490 3/12/2025
3.0.485 578 3/12/2025
3.0.484 3,550 3/11/2025
3.0.483 416 3/11/2025
3.0.482 1,395 3/11/2025
3.0.481 2,684 3/11/2025
3.0.480 3,981 3/11/2025
3.0.479 3,490 3/11/2025
3.0.478 2,226 3/11/2025
3.0.477 13,756 3/7/2025
3.0.476 4,102 3/7/2025
3.0.475 8,335 3/2/2025
3.0.474 3,058 3/2/2025
3.0.473 734 3/2/2025
3.0.472 5,818 3/2/2025
3.0.471 5,318 3/1/2025
3.0.470 294 3/1/2025
3.0.469 5,082 3/1/2025
3.0.468 138 3/1/2025
3.0.467 1,895 3/1/2025
3.0.466 14,049 2/26/2025
3.0.465 1,262 2/25/2025
3.0.464 3,484 2/25/2025
3.0.463 2,296 2/25/2025
3.0.462 1,151 2/25/2025
3.0.461 13,105 2/23/2025
3.0.460 2,328 2/22/2025
3.0.459 10,439 2/22/2025
3.0.458 3,045 2/22/2025
3.0.457 3,691 2/22/2025
3.0.456 614 2/21/2025
3.0.455 5,792 2/21/2025
3.0.454 13,011 2/19/2025
3.0.453 5,341 2/18/2025
3.0.452 1,191 2/18/2025
3.0.451 488 2/18/2025
3.0.450 6,263 2/18/2025
3.0.449 135 2/18/2025
3.0.448 15,281 2/14/2025
3.0.447 1,547 2/14/2025
3.0.446 4,318 2/13/2025
3.0.445 5,210 2/13/2025
3.0.444 6,010 2/12/2025
3.0.443 1,905 2/12/2025
3.0.442 826 2/12/2025
3.0.441 2,340 2/12/2025
3.0.440 851 2/12/2025
3.0.439 558 2/11/2025
3.0.438 8,850 2/11/2025
3.0.437 3,022 2/11/2025
3.0.436 522 2/11/2025
3.0.435 2,907 2/10/2025
3.0.434 146 2/10/2025
3.0.433 1,983 2/10/2025
3.0.432 154 2/10/2025
3.0.431 15,402 2/9/2025
3.0.430 8,927 2/9/2025
3.0.429 444 2/9/2025
3.0.428 307 2/8/2025
3.0.427 262 2/8/2025
3.0.426 322 2/8/2025
3.0.425 9,519 2/8/2025
3.0.424 3,119 2/7/2025
3.0.423 2,094 2/7/2025
3.0.422 2,606 2/7/2025
3.0.421 138 2/7/2025
3.0.420 460 2/7/2025
3.0.419 151 2/7/2025
3.0.418 2,182 2/7/2025
3.0.417 142 2/7/2025
3.0.416 16,224 2/7/2025
3.0.415 8,077 2/5/2025
3.0.414 942 2/5/2025
3.0.413 1,376 2/5/2025
3.0.412 305 2/5/2025
3.0.411 2,824 2/5/2025
3.0.410 6,158 2/5/2025
3.0.409 13,638 1/28/2025
3.0.408 983 1/28/2025
3.0.407 316 1/28/2025
3.0.406 3,022 1/28/2025
3.0.405 6,343 1/27/2025
3.0.404 1,767 1/27/2025
3.0.403 133 1/27/2025
3.0.402 6,164 1/27/2025
3.0.401 136 1/27/2025
3.0.400 6,958 1/26/2025
3.0.399 1,457 1/26/2025
3.0.398 1,120 1/26/2025
3.0.397 625 1/26/2025
3.0.396 297 1/26/2025
3.0.395 3,065 1/25/2025
3.0.394 6,686 1/25/2025
3.0.393 4,979 1/25/2025
3.0.392 502 1/25/2025
3.0.391 12,311 1/24/2025
3.0.390 2,262 1/24/2025
3.0.389 4,020 1/24/2025
3.0.388 4,599 1/24/2025
3.0.387 1,039 1/23/2025
3.0.386 1,291 1/23/2025
3.0.385 174 1/23/2025
3.0.384 10,969 1/22/2025
3.0.383 1,418 1/21/2025
3.0.382 449 1/21/2025
3.0.381 1,342 1/21/2025
3.0.380 1,324 1/21/2025
3.0.379 1,483 1/21/2025
3.0.378 1,186 1/21/2025
3.0.377 1,587 1/21/2025
3.0.376 148 1/21/2025
3.0.375 7,038 1/21/2025
3.0.374 1,990 1/21/2025
3.0.373 1,678 1/21/2025
3.0.372 2,941 1/21/2025
3.0.371 233 1/20/2025
3.0.370 8,038 1/20/2025
3.0.369 306 1/20/2025
3.0.368 1,654 1/20/2025
3.0.367 132 1/20/2025
3.0.366 1,459 1/20/2025
3.0.365 147 1/20/2025
3.0.364 5,115 1/19/2025
3.0.363 7,425 1/19/2025
3.0.362 7,362 1/19/2025
3.0.361 2,462 1/19/2025
3.0.360 743 1/19/2025
3.0.359 4,214 1/18/2025
3.0.358 181 1/18/2025
3.0.357 4,025 1/18/2025
3.0.356 306 1/18/2025
3.0.355 1,214 1/18/2025
3.0.354 7,352 1/17/2025
3.0.353 171 1/17/2025
3.0.352 9,586 1/16/2025
3.0.351 5,222 1/16/2025
3.0.350 937 1/16/2025
3.0.349 5,937 1/15/2025
3.0.348 5,017 1/15/2025
3.0.347 4,234 1/15/2025
3.0.346 4,493 1/15/2025
3.0.345 2,701 1/15/2025
3.0.344 3,518 1/15/2025
3.0.343 936 1/15/2025
3.0.342 2,947 1/14/2025
3.0.341 515 1/14/2025
3.0.340 160 1/14/2025
3.0.339 4,152 1/14/2025
3.0.338 1,117 1/14/2025
3.0.337 130 1/14/2025
3.0.336 1,391 1/14/2025
3.0.335 432 1/14/2025
3.0.334 8,385 1/13/2025
3.0.333 1,876 1/13/2025
3.0.332 3,533 1/13/2025
3.0.331 7,153 1/11/2025
3.0.330 2,918 1/11/2025
3.0.329 3,161 1/10/2025
3.0.328 6,391 1/10/2025
3.0.327 152 1/10/2025
3.0.326 571 1/10/2025
3.0.325 143 1/10/2025
3.0.324 145 1/10/2025
3.0.323 10,313 1/3/2025
3.0.322 1,204 1/3/2025
3.0.321 1,507 1/3/2025
3.0.320 464 1/3/2025
3.0.319 1,682 1/3/2025
3.0.318 3,799 1/2/2025
3.0.317 158 1/2/2025
3.0.316 2,583 1/2/2025
3.0.315 161 1/2/2025
3.0.314 3,454 1/2/2025
3.0.313 165 1/2/2025
3.0.312 11,296 1/1/2025
3.0.311 157 1/1/2025
3.0.310 207 12/31/2024
3.0.309 167 12/31/2024
3.0.308 4,188 12/31/2024
3.0.307 157 12/31/2024
3.0.306 243 12/31/2024
3.0.305 801 12/31/2024
3.0.304 159 12/31/2024
3.0.303 1,245 12/31/2024
3.0.302 489 12/31/2024
3.0.301 7,293 12/31/2024
3.0.300 5,000 12/31/2024
3.0.299 1,123 12/31/2024
3.0.298 3,641 12/31/2024
3.0.297 2,895 12/31/2024
3.0.296 143 12/31/2024
3.0.295 159 12/31/2024
3.0.294 13,345 12/28/2024
3.0.293 2,249 12/28/2024
3.0.292 1,308 12/28/2024
3.0.291 1,548 12/27/2024
3.0.290 9,705 12/24/2024
3.0.289 2,116 12/24/2024
3.0.288 2,048 12/24/2024
3.0.287 2,895 12/24/2024
3.0.286 3,074 12/24/2024
3.0.285 2,483 12/24/2024
3.0.284 1,992 12/24/2024
3.0.283 1,578 12/23/2024
3.0.282 3,408 12/23/2024
3.0.281 3,872 12/23/2024
3.0.280 1,547 12/23/2024
3.0.279 4,372 12/23/2024
3.0.278 376 12/23/2024
3.0.277 4,073 12/22/2024
3.0.276 6,532 12/22/2024
3.0.275 6,506 12/22/2024
3.0.274 8,790 12/21/2024
3.0.273 547 12/21/2024
3.0.272 4,358 12/21/2024
3.0.271 5,618 12/21/2024
3.0.270 1,176 12/21/2024
3.0.269 6,703 12/20/2024
3.0.268 13,074 12/18/2024
3.0.267 194 12/18/2024
3.0.266 8,259 12/17/2024
3.0.265 7,116 12/17/2024
3.0.264 452 12/16/2024
3.0.263 1,281 12/16/2024
3.0.262 9,220 12/10/2024
3.0.261 2,603 12/9/2024
3.0.260 4,203 12/9/2024
3.0.259 2,903 12/9/2024
3.0.258 8,040 12/6/2024
3.0.257 1,529 12/6/2024
3.0.256 2,680 12/6/2024
3.0.255 8,066 12/6/2024
3.0.254 243 12/6/2024
3.0.253 406 12/6/2024
3.0.252 1,123 12/6/2024
3.0.251 6,448 12/6/2024
3.0.250 176 12/6/2024
3.0.249 152 12/6/2024
3.0.248 5,023 12/5/2024
3.0.247 4,916 12/5/2024
3.0.246 3,798 12/5/2024
3.0.245 4,409 12/5/2024
3.0.244 697 12/5/2024
3.0.243 574 12/5/2024
3.0.242 5,890 12/4/2024
3.0.241 570 12/4/2024
3.0.240 1,280 12/4/2024
3.0.239 3,989 12/4/2024
3.0.238 4,301 12/3/2024
3.0.237 3,226 12/3/2024
3.0.236 4,060 12/3/2024
3.0.235 3,813 12/3/2024
3.0.234 5,341 12/2/2024
3.0.233 4,361 12/2/2024
3.0.232 2,627 12/2/2024
3.0.231 538 12/2/2024
3.0.230 4,809 12/1/2024
3.0.229 1,048 12/1/2024
3.0.228 3,524 12/1/2024
3.0.227 4,600 12/1/2024
3.0.226 4,871 11/29/2024
3.0.225 8,505 11/21/2024
3.0.224 6,973 11/20/2024
3.0.223 722 11/20/2024
3.0.222 1,289 11/20/2024
3.0.221 658 11/19/2024
3.0.220 6,289 11/19/2024
3.0.219 2,603 11/19/2024
3.0.218 145 11/19/2024
3.0.217 4,234 11/19/2024
3.0.216 138 11/19/2024
3.0.215 11,926 11/14/2024
3.0.214 1,319 11/14/2024
3.0.213 4,617 11/14/2024
3.0.212 1,121 11/14/2024
3.0.211 665 11/14/2024
3.0.210 4,898 11/14/2024
3.0.209 144 11/14/2024
3.0.208 3,937 11/14/2024
3.0.207 235 11/14/2024
2.1.206 14,030 11/13/2024
2.1.205 5,543 11/13/2024
2.1.204 13,476 11/9/2024
2.1.203 951 11/9/2024
2.1.202 2,416 11/9/2024
2.1.201 1,424 11/8/2024
2.1.200 1,196 11/8/2024
2.1.199 149 11/8/2024
2.1.198 2,143 11/8/2024
2.1.197 313 11/8/2024
2.1.196 5,211 11/8/2024
2.1.195 6,700 11/8/2024
2.1.194 14,905 11/1/2024
2.1.192 10,800 10/29/2024
2.1.191 11,609 10/28/2024
2.1.190 7,331 10/26/2024
2.1.189 12,454 10/22/2024
2.1.188 1,658 10/22/2024
2.1.187 1,185 10/22/2024
2.1.186 9,701 10/17/2024
2.1.185 7,050 10/15/2024
2.1.184 2,667 10/14/2024
2.1.183 7,773 10/11/2024
2.1.182 1,074 10/11/2024
2.1.181 643 10/11/2024
2.1.180 12,479 10/9/2024
2.1.179 1,036 10/8/2024
2.1.178 6,262 10/8/2024
2.1.177 984 10/8/2024
2.1.176 14,432 10/3/2024
2.1.175 4,262 10/3/2024
2.1.174 10,338 10/2/2024
2.1.173 3,107 10/2/2024
2.1.172 7,620 10/1/2024
2.1.171 1,969 10/1/2024
2.1.170 3,096 10/1/2024
2.1.169 8,802 9/29/2024
2.1.168 2,506 9/29/2024
2.1.167 1,813 9/29/2024
2.1.166 10,654 9/27/2024
2.1.165 5,994 9/27/2024
2.1.164 144 9/27/2024
2.1.163 357 9/27/2024
2.1.162 144 9/27/2024
2.1.161 8,984 9/26/2024
2.1.160 8,532 9/26/2024
2.1.159 7,937 9/26/2024
2.1.158 8,120 9/23/2024
2.1.157 3,732 9/23/2024
2.1.156 2,202 9/23/2024
2.1.155 2,275 9/23/2024
2.1.154 7,453 9/23/2024
2.1.153 847 9/23/2024
2.1.152 1,016 9/23/2024
2.1.151 136 9/23/2024
2.1.150 2,584 9/23/2024
2.1.149 13,807 9/17/2024
2.1.148 146 9/17/2024
2.1.147 475 9/17/2024
2.1.146 5,530 9/17/2024
2.1.145 4,665 9/17/2024
2.1.144 6,178 9/17/2024
2.1.143 157 9/17/2024
2.1.142 575 9/17/2024
2.1.141 1,347 9/17/2024
2.1.140 15,097 9/16/2024
2.1.139 8,451 9/12/2024
2.1.138 5,726 9/11/2024
2.1.137 3,457 9/11/2024
2.1.136 6,619 9/11/2024
2.1.135 5,369 9/11/2024
2.1.134 12,429 9/10/2024
2.1.133 2,631 9/10/2024
2.1.132 4,193 9/9/2024
2.1.131 4,491 9/9/2024
2.1.130 2,779 9/9/2024
2.1.129 1,408 9/9/2024
2.1.128 144 9/9/2024
2.1.127 152 9/9/2024
2.1.126 154 9/9/2024
2.1.125 18,714 9/6/2024
2.1.124 7,306 9/6/2024
2.1.123 3,782 9/5/2024
2.1.122 2,292 9/5/2024
2.1.121 4,674 9/5/2024
2.1.120 2,478 9/5/2024
2.1.119 153 9/5/2024
2.1.118 1,895 9/5/2024
2.1.117 6,570 9/5/2024
2.1.116 1,561 9/4/2024
2.1.115 13,562 9/3/2024
2.1.114 1,335 9/3/2024
2.1.113 5,512 9/3/2024
2.1.112 10,646 8/29/2024
2.1.111 7,583 8/26/2024
2.1.110 7,572 8/21/2024
2.1.109 4,251 8/21/2024
2.1.108 503 8/20/2024
2.1.107 5,313 8/20/2024
2.1.106 155 8/20/2024
2.1.105 5,507 8/20/2024
2.1.104 3,246 8/20/2024
2.1.103 10,266 8/15/2024
2.1.102 9,166 8/13/2024
2.1.101 8,791 8/6/2024
2.1.100 10,417 8/1/2024
2.1.99 641 8/1/2024
2.1.98 9,944 7/25/2024
2.1.97 1,227 7/25/2024
2.1.96 1,100 7/25/2024
2.1.95 742 7/24/2024
2.1.94 260 7/24/2024
2.1.93 11,042 7/20/2024
2.1.92 9,114 7/14/2024
2.1.91 2,499 7/14/2024
2.1.90 7,755 7/10/2024
2.1.89 290 7/10/2024
2.1.88 2,420 7/10/2024
2.1.87 2,273 7/10/2024
2.1.86 276 7/10/2024
2.1.85 281 7/10/2024
2.1.83 2,411 7/10/2024
2.1.82 3,587 7/9/2024
2.1.80 904 7/9/2024
2.1.79 1,325 7/9/2024
2.1.78 8,661 7/9/2024
2.1.77 3,541 7/9/2024
2.1.76 14,540 7/9/2024
2.1.75 165 7/9/2024
2.1.74 183 7/8/2024
2.1.73 149 7/8/2024
2.1.72 2,744 7/8/2024
2.1.71 144 7/8/2024
2.1.70 7,921 7/8/2024
2.1.69 2,592 7/7/2024
2.1.68 2,975 7/7/2024
2.1.67 772 7/7/2024
2.1.66 1,505 7/7/2024
2.1.65 3,447 7/7/2024
2.1.64 3,026 7/7/2024
2.1.63 153 7/7/2024
2.1.62 4,129 7/5/2024
2.1.61 82,254 5/25/2024
2.1.60 160 5/25/2024
2.1.59 625 5/25/2024
2.1.58 15,833 5/22/2024
2.1.57 154 5/22/2024
2.1.56 12,866 5/17/2024
2.1.55 18,164 4/30/2024
2.1.54 18,176 4/28/2024
2.1.53 162 4/28/2024
2.1.52 778 4/27/2024
2.1.51 154 4/27/2024
2.1.50 28,277 4/12/2024
2.1.49 1,533 4/12/2024
2.1.48 171 4/12/2024
2.1.47 43,524 3/18/2024
2.1.46 9,758 3/13/2024
2.1.45 2,557 3/13/2024
2.1.44 67,252 2/21/2024
2.1.43 2,996 2/21/2024
2.1.42 160 2/21/2024
2.1.41 23,810 2/16/2024
2.1.40 723 2/16/2024
2.1.39 26,173 2/9/2024
2.1.38 20,435 2/6/2024
2.1.37 170 2/6/2024
2.1.36 68,089 1/15/2024
2.1.35 930 1/15/2024
2.1.34 28,247 1/5/2024
2.1.33 2,662 1/5/2024
2.1.32 14,460 12/27/2023
2.1.31 1,475 12/27/2023
2.1.30 1,225 12/27/2023
2.1.29 8,502 12/25/2023
2.1.28 1,605 12/25/2023
2.1.27 766 12/25/2023
2.1.26 11,481 12/23/2023
2.1.25 192 12/23/2023
2.1.24 865 12/23/2023
2.1.23 22,543 12/9/2023
2.1.22 1,448 12/9/2023
2.1.21 294 12/9/2023
2.1.20 2,134 12/9/2023
2.1.19 11,781 12/4/2023
2.1.18 915 12/4/2023
2.1.17 5,960 11/26/2023
2.1.16 5,839 11/23/2023
2.1.15 423 11/23/2023
2.1.14 1,031 11/23/2023
2.1.13 10,162 11/19/2023
2.1.12 176 11/19/2023
2.1.11 1,271 11/18/2023
2.1.10 3,674 11/18/2023
2.1.9 2,045 11/18/2023
2.1.8 3,881 11/17/2023
2.1.7 1,123 11/17/2023
2.1.6 1,816 11/17/2023
2.1.5 929 11/17/2023
2.1.4 706 11/16/2023
2.1.3 220 11/16/2023
2.0.52 1,329 11/15/2023
2.0.51 2,334 11/15/2023
2.0.2 166 11/16/2023
2.0.1 183 11/16/2023
1.0.50 4,333 11/11/2023
1.0.49 170 11/11/2023
1.0.48 152 11/11/2023
1.0.47 1,411 11/9/2023
1.0.46 170 11/9/2023
1.0.45 5,491 11/6/2023
1.0.44 2,349 11/3/2023
1.0.43 1,920 11/2/2023
1.0.42 1,988 11/1/2023
1.0.41 7,932 10/18/2023
1.0.40 3,143 10/17/2023
1.0.39 1,317 10/16/2023
1.0.38 2,818 10/13/2023
1.0.37 204 10/13/2023
1.0.36 6,461 9/19/2023
1.0.35 2,176 9/18/2023
1.0.34 177 9/18/2023
1.0.33 8,045 8/30/2023
1.0.32 2,850 8/29/2023
1.0.31 4,427 8/24/2023
1.0.30 205 8/24/2023
1.0.29 4,485 8/17/2023
1.0.28 232 8/17/2023
1.0.27 8,217 8/7/2023
1.0.26 232 8/7/2023
1.0.25 8,177 7/10/2023
1.0.24 11,204 7/7/2023
1.0.23 230 7/7/2023
1.0.22 9,749 6/28/2023
1.0.21 46,243 5/24/2023
1.0.20 1,250 5/24/2023
1.0.19 481 5/23/2023
1.0.18 261 5/31/2023
1.0.17 2,855 5/23/2023
1.0.16 3,034 5/22/2023
1.0.15 6,302 5/17/2023
1.0.14 251 5/17/2023
1.0.13 5,864 4/28/2023
1.0.12 2,352 4/24/2023
1.0.11 1,049 4/21/2023
1.0.10 4,746 4/12/2023
1.0.9 1,178 4/11/2023
1.0.8 2,233 4/3/2023
1.0.7 303 4/3/2023
1.0.6 436 4/1/2023
1.0.5 2,116 3/23/2023
1.0.3 623 2/28/2023
1.0.2 529 2/16/2023