Soenneker.Extensions.Enumerable 4.0.575

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 4.0.575
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 4.0.575
                    
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="4.0.575" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Extensions.Enumerable" Version="4.0.575" />
                    
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 4.0.575
                    
#r "nuget: Soenneker.Extensions.Enumerable, 4.0.575"
                    
#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@4.0.575
                    
#: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=4.0.575
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=4.0.575
                    
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 net10.0 is compatible.  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
4.0.575 5,670 11/21/2025
4.0.574 448 11/20/2025
4.0.573 4,123 11/20/2025
4.0.572 23,803 11/11/2025
4.0.571 31,871 11/3/2025
4.0.570 20,808 10/30/2025
4.0.569 1,585 10/30/2025
3.0.567 40,615 10/16/2025
3.0.566 86,322 9/9/2025
3.0.565 32,330 9/3/2025
3.0.564 3,408 9/3/2025
3.0.563 188 9/3/2025
3.0.562 55,341 8/11/2025
3.0.561 7,682 8/11/2025
3.0.560 536 8/11/2025
3.0.559 38,266 8/5/2025
3.0.558 40,962 7/8/2025
3.0.557 41,092 6/27/2025
3.0.556 3,434 6/27/2025
3.0.555 342 6/27/2025
3.0.554 46,449 6/10/2025
3.0.553 32,981 5/27/2025
3.0.552 2,190 5/27/2025
3.0.551 1,819 5/27/2025
3.0.550 31,658 5/23/2025
3.0.549 3,549 5/23/2025
3.0.548 3,446 5/22/2025
3.0.547 30,375 5/14/2025
3.0.546 18,362 5/8/2025
3.0.545 2,794 5/7/2025
3.0.544 367 5/7/2025
3.0.543 25,785 5/5/2025
3.0.542 2,953 5/5/2025
3.0.541 5,352 5/5/2025
3.0.540 208 5/5/2025
3.0.539 37,275 4/8/2025
3.0.538 4,032 4/8/2025
3.0.537 824 4/8/2025
3.0.536 4,155 4/8/2025
3.0.535 241 4/8/2025
3.0.534 6,467 4/8/2025
3.0.533 969 4/8/2025
3.0.532 10,322 4/8/2025
3.0.531 12,602 4/8/2025
3.0.530 2,694 4/7/2025
3.0.529 6,286 4/7/2025
3.0.528 2,119 4/7/2025
3.0.527 5,199 4/7/2025
3.0.526 14,108 4/7/2025
3.0.525 4,056 4/7/2025
3.0.524 965 4/7/2025
3.0.523 16,318 4/7/2025
3.0.522 3,095 4/7/2025
3.0.521 5,459 4/6/2025
3.0.520 374 4/6/2025
3.0.519 2,544 4/6/2025
3.0.518 3,069 4/6/2025
3.0.517 3,733 4/6/2025
3.0.516 173 4/6/2025
3.0.515 627 4/6/2025
3.0.514 191 4/6/2025
3.0.513 777 4/5/2025
3.0.512 4,983 4/5/2025
3.0.511 2,481 4/5/2025
3.0.510 1,856 4/5/2025
3.0.509 272 4/5/2025
3.0.508 352 4/5/2025
3.0.507 423 4/5/2025
3.0.506 4,638 4/4/2025
3.0.505 202 4/4/2025
3.0.504 4,906 4/4/2025
3.0.503 60,753 4/4/2025
3.0.502 14,302 4/1/2025
3.0.501 7,894 4/1/2025
3.0.500 11,224 3/31/2025
3.0.499 4,895 3/31/2025
3.0.498 11,218 3/31/2025
3.0.497 13,771 3/29/2025
3.0.496 3,643 3/29/2025
3.0.495 11,382 3/27/2025
3.0.494 7,277 3/25/2025
3.0.493 2,742 3/25/2025
3.0.492 18,481 3/21/2025
3.0.491 17,284 3/18/2025
3.0.490 8,580 3/18/2025
3.0.489 12,880 3/15/2025
3.0.488 4,062 3/15/2025
3.0.487 14,492 3/12/2025
3.0.486 5,348 3/12/2025
3.0.485 776 3/12/2025
3.0.484 5,383 3/11/2025
3.0.483 587 3/11/2025
3.0.482 2,133 3/11/2025
3.0.481 4,049 3/11/2025
3.0.480 5,831 3/11/2025
3.0.479 5,232 3/11/2025
3.0.478 3,509 3/11/2025
3.0.477 20,856 3/7/2025
3.0.476 6,216 3/7/2025
3.0.475 12,291 3/2/2025
3.0.474 4,675 3/2/2025
3.0.473 1,142 3/2/2025
3.0.472 8,882 3/2/2025
3.0.471 8,374 3/1/2025
3.0.470 382 3/1/2025
3.0.469 7,944 3/1/2025
3.0.468 178 3/1/2025
3.0.467 2,862 3/1/2025
3.0.466 21,441 2/26/2025
3.0.465 1,914 2/25/2025
3.0.464 5,324 2/25/2025
3.0.463 3,437 2/25/2025
3.0.462 1,757 2/25/2025
3.0.461 20,110 2/23/2025
3.0.460 3,518 2/22/2025
3.0.459 15,959 2/22/2025
3.0.458 4,715 2/22/2025
3.0.457 5,772 2/22/2025
3.0.456 905 2/21/2025
3.0.455 9,120 2/21/2025
3.0.454 20,004 2/19/2025
3.0.453 8,006 2/18/2025
3.0.452 1,780 2/18/2025
3.0.451 694 2/18/2025
3.0.450 9,768 2/18/2025
3.0.449 178 2/18/2025
3.0.448 22,582 2/14/2025
3.0.447 2,338 2/14/2025
3.0.446 6,621 2/13/2025
3.0.445 8,025 2/13/2025
3.0.444 8,905 2/12/2025
3.0.443 2,814 2/12/2025
3.0.442 1,199 2/12/2025
3.0.441 3,724 2/12/2025
3.0.440 1,181 2/12/2025
3.0.439 830 2/11/2025
3.0.438 13,400 2/11/2025
3.0.437 4,683 2/11/2025
3.0.436 714 2/11/2025
3.0.435 4,442 2/10/2025
3.0.434 181 2/10/2025
3.0.433 2,928 2/10/2025
3.0.432 183 2/10/2025
3.0.431 23,609 2/9/2025
3.0.430 13,426 2/9/2025
3.0.429 596 2/9/2025
3.0.428 458 2/8/2025
3.0.427 352 2/8/2025
3.0.426 447 2/8/2025
3.0.425 14,552 2/8/2025
3.0.424 4,697 2/7/2025
3.0.423 3,464 2/7/2025
3.0.422 3,835 2/7/2025
3.0.421 187 2/7/2025
3.0.420 641 2/7/2025
3.0.419 188 2/7/2025
3.0.418 3,427 2/7/2025
3.0.417 174 2/7/2025
3.0.416 24,474 2/7/2025
3.0.415 12,375 2/5/2025
3.0.414 1,417 2/5/2025
3.0.413 2,080 2/5/2025
3.0.412 427 2/5/2025
3.0.411 4,410 2/5/2025
3.0.410 9,620 2/5/2025
3.0.409 20,338 1/28/2025
3.0.408 1,492 1/28/2025
3.0.407 457 1/28/2025
3.0.406 4,873 1/28/2025
3.0.405 10,418 1/27/2025
3.0.404 2,722 1/27/2025
3.0.403 167 1/27/2025
3.0.402 10,162 1/27/2025
3.0.401 177 1/27/2025
3.0.400 11,172 1/26/2025
3.0.399 2,265 1/26/2025
3.0.398 1,750 1/26/2025
3.0.397 962 1/26/2025
3.0.396 421 1/26/2025
3.0.395 4,827 1/25/2025
3.0.394 10,595 1/25/2025
3.0.393 7,926 1/25/2025
3.0.392 807 1/25/2025
3.0.391 19,779 1/24/2025
3.0.390 3,741 1/24/2025
3.0.389 6,572 1/24/2025
3.0.388 7,510 1/24/2025
3.0.387 1,730 1/23/2025
3.0.386 2,049 1/23/2025
3.0.385 254 1/23/2025
3.0.384 17,511 1/22/2025
3.0.383 2,227 1/21/2025
3.0.382 624 1/21/2025
3.0.381 2,091 1/21/2025
3.0.380 2,025 1/21/2025
3.0.379 2,254 1/21/2025
3.0.378 1,709 1/21/2025
3.0.377 2,385 1/21/2025
3.0.376 184 1/21/2025
3.0.375 11,161 1/21/2025
3.0.374 3,126 1/21/2025
3.0.373 2,462 1/21/2025
3.0.372 4,910 1/21/2025
3.0.371 329 1/20/2025
3.0.370 12,563 1/20/2025
3.0.369 438 1/20/2025
3.0.368 2,636 1/20/2025
3.0.367 165 1/20/2025
3.0.366 2,305 1/20/2025
3.0.365 195 1/20/2025
3.0.364 7,968 1/19/2025
3.0.363 12,211 1/19/2025
3.0.362 11,750 1/19/2025
3.0.361 4,018 1/19/2025
3.0.360 1,107 1/19/2025
3.0.359 6,703 1/18/2025
3.0.358 224 1/18/2025
3.0.357 6,504 1/18/2025
3.0.356 503 1/18/2025
3.0.355 1,848 1/18/2025
3.0.354 11,738 1/17/2025
3.0.353 229 1/17/2025
3.0.352 15,486 1/16/2025
3.0.351 8,446 1/16/2025
3.0.350 1,567 1/16/2025
3.0.349 9,398 1/15/2025
3.0.348 8,141 1/15/2025
3.0.347 6,788 1/15/2025
3.0.346 7,167 1/15/2025
3.0.345 4,224 1/15/2025
3.0.344 5,908 1/15/2025
3.0.343 1,725 1/15/2025
3.0.342 5,043 1/14/2025
3.0.341 909 1/14/2025
3.0.340 236 1/14/2025
3.0.339 7,623 1/14/2025
3.0.338 1,934 1/14/2025
3.0.337 167 1/14/2025
3.0.336 1,981 1/14/2025
3.0.335 704 1/14/2025
3.0.334 13,858 1/13/2025
3.0.333 3,008 1/13/2025
3.0.332 5,808 1/13/2025
3.0.331 11,873 1/11/2025
3.0.330 4,932 1/11/2025
3.0.329 4,753 1/10/2025
3.0.328 10,254 1/10/2025
3.0.327 187 1/10/2025
3.0.326 933 1/10/2025
3.0.325 176 1/10/2025
3.0.324 181 1/10/2025
3.0.323 16,609 1/3/2025
3.0.322 1,796 1/3/2025
3.0.321 2,260 1/3/2025
3.0.320 723 1/3/2025
3.0.319 2,674 1/3/2025
3.0.318 6,006 1/2/2025
3.0.317 197 1/2/2025
3.0.316 4,019 1/2/2025
3.0.315 197 1/2/2025
3.0.314 5,602 1/2/2025
3.0.313 200 1/2/2025
3.0.312 17,928 1/1/2025
3.0.311 192 1/1/2025
3.0.310 274 12/31/2024
3.0.309 206 12/31/2024
3.0.308 6,652 12/31/2024
3.0.307 191 12/31/2024
3.0.306 319 12/31/2024
3.0.305 1,168 12/31/2024
3.0.304 193 12/31/2024
3.0.303 1,871 12/31/2024
3.0.302 670 12/31/2024
3.0.301 11,686 12/31/2024
3.0.300 8,270 12/31/2024
3.0.299 1,645 12/31/2024
3.0.298 5,692 12/31/2024
3.0.297 4,617 12/31/2024
3.0.296 186 12/31/2024
3.0.295 181 12/31/2024
3.0.294 21,288 12/28/2024
3.0.293 3,566 12/28/2024
3.0.292 2,082 12/28/2024
3.0.291 2,460 12/27/2024
3.0.290 15,390 12/24/2024
3.0.289 3,243 12/24/2024
3.0.288 3,068 12/24/2024
3.0.287 4,397 12/24/2024
3.0.286 4,632 12/24/2024
3.0.285 3,764 12/24/2024
3.0.284 2,996 12/24/2024
3.0.283 2,330 12/23/2024
3.0.282 5,290 12/23/2024
3.0.281 6,105 12/23/2024
3.0.280 2,392 12/23/2024
3.0.279 7,029 12/23/2024
3.0.278 542 12/23/2024
3.0.277 6,472 12/22/2024
3.0.276 10,393 12/22/2024
3.0.275 10,296 12/22/2024
3.0.274 14,075 12/21/2024
3.0.273 849 12/21/2024
3.0.272 6,792 12/21/2024
3.0.271 9,100 12/21/2024
3.0.270 1,738 12/21/2024
3.0.269 10,700 12/20/2024
3.0.268 20,815 12/18/2024
3.0.267 280 12/18/2024
3.0.266 13,325 12/17/2024
3.0.265 11,178 12/17/2024
3.0.264 647 12/16/2024
3.0.263 1,913 12/16/2024
3.0.262 14,493 12/10/2024
3.0.261 4,051 12/9/2024
3.0.260 6,624 12/9/2024
3.0.259 4,569 12/9/2024
3.0.258 12,976 12/6/2024
3.0.257 2,288 12/6/2024
3.0.256 4,017 12/6/2024
3.0.255 12,600 12/6/2024
3.0.254 328 12/6/2024
3.0.253 576 12/6/2024
3.0.252 1,559 12/6/2024
3.0.251 10,201 12/6/2024
3.0.250 204 12/6/2024
3.0.249 198 12/6/2024
3.0.248 7,704 12/5/2024
3.0.247 7,851 12/5/2024
3.0.246 5,597 12/5/2024
3.0.245 7,535 12/5/2024
3.0.244 1,070 12/5/2024
3.0.243 828 12/5/2024
3.0.242 9,256 12/4/2024
3.0.241 740 12/4/2024
3.0.240 1,958 12/4/2024
3.0.239 6,328 12/4/2024
3.0.238 6,800 12/3/2024
3.0.237 4,995 12/3/2024
3.0.236 6,917 12/3/2024
3.0.235 6,221 12/3/2024
3.0.234 8,560 12/2/2024
3.0.233 7,012 12/2/2024
3.0.232 4,233 12/2/2024
3.0.231 786 12/2/2024
3.0.230 7,779 12/1/2024
3.0.229 1,202 12/1/2024
3.0.228 5,712 12/1/2024
3.0.227 7,304 12/1/2024
3.0.226 7,777 11/29/2024
3.0.225 14,101 11/21/2024
3.0.224 10,958 11/20/2024
3.0.223 1,098 11/20/2024
3.0.222 1,913 11/20/2024
3.0.221 981 11/19/2024
3.0.220 9,556 11/19/2024
3.0.219 3,807 11/19/2024
3.0.218 184 11/19/2024
3.0.217 6,257 11/19/2024
3.0.216 173 11/19/2024
3.0.215 18,719 11/14/2024
3.0.214 2,095 11/14/2024
3.0.213 7,103 11/14/2024
3.0.212 1,601 11/14/2024
3.0.211 976 11/14/2024
3.0.210 7,568 11/14/2024
3.0.209 183 11/14/2024
3.0.208 6,258 11/14/2024
3.0.207 344 11/14/2024
2.1.206 21,522 11/13/2024
2.1.205 8,715 11/13/2024
2.1.204 20,399 11/9/2024
2.1.203 1,338 11/9/2024
2.1.202 3,700 11/9/2024
2.1.201 2,110 11/8/2024
2.1.200 1,739 11/8/2024
2.1.199 175 11/8/2024
2.1.198 3,182 11/8/2024
2.1.197 435 11/8/2024
2.1.196 7,596 11/8/2024
2.1.195 10,074 11/8/2024
2.1.194 23,103 11/1/2024
2.1.192 16,583 10/29/2024
2.1.191 17,466 10/28/2024
2.1.190 11,001 10/26/2024
2.1.189 17,390 10/22/2024
2.1.188 2,480 10/22/2024
2.1.187 1,915 10/22/2024
2.1.186 14,935 10/17/2024
2.1.185 10,798 10/15/2024
2.1.184 4,146 10/14/2024
2.1.183 11,982 10/11/2024
2.1.182 1,560 10/11/2024
2.1.181 909 10/11/2024
2.1.180 19,104 10/9/2024
2.1.179 1,554 10/8/2024
2.1.178 9,323 10/8/2024
2.1.177 1,437 10/8/2024
2.1.176 21,758 10/3/2024
2.1.175 6,581 10/3/2024
2.1.174 15,824 10/2/2024
2.1.173 4,745 10/2/2024
2.1.172 11,424 10/1/2024
2.1.171 2,831 10/1/2024
2.1.170 4,719 10/1/2024
2.1.169 13,241 9/29/2024
2.1.168 3,706 9/29/2024
2.1.167 2,749 9/29/2024
2.1.166 15,824 9/27/2024
2.1.165 8,937 9/27/2024
2.1.164 178 9/27/2024
2.1.163 503 9/27/2024
2.1.162 189 9/27/2024
2.1.161 13,233 9/26/2024
2.1.160 13,006 9/26/2024
2.1.159 11,816 9/26/2024
2.1.158 11,962 9/23/2024
2.1.157 5,469 9/23/2024
2.1.156 3,211 9/23/2024
2.1.155 3,313 9/23/2024
2.1.154 10,965 9/23/2024
2.1.153 1,269 9/23/2024
2.1.152 1,460 9/23/2024
2.1.151 168 9/23/2024
2.1.150 3,674 9/23/2024
2.1.149 20,308 9/17/2024
2.1.148 181 9/17/2024
2.1.147 670 9/17/2024
2.1.146 7,856 9/17/2024
2.1.145 6,700 9/17/2024
2.1.144 8,972 9/17/2024
2.1.143 191 9/17/2024
2.1.142 804 9/17/2024
2.1.141 1,883 9/17/2024
2.1.140 21,470 9/16/2024
2.1.139 12,075 9/12/2024
2.1.138 8,316 9/11/2024
2.1.137 4,993 9/11/2024
2.1.136 9,313 9/11/2024
2.1.135 7,523 9/11/2024
2.1.134 17,574 9/10/2024
2.1.133 3,712 9/10/2024
2.1.132 5,840 9/9/2024
2.1.131 6,066 9/9/2024
2.1.130 3,698 9/9/2024
2.1.129 1,916 9/9/2024
2.1.128 188 9/9/2024
2.1.127 178 9/9/2024
2.1.126 187 9/9/2024
2.1.125 26,765 9/6/2024
2.1.124 10,565 9/6/2024
2.1.123 5,452 9/5/2024
2.1.122 3,202 9/5/2024
2.1.121 6,605 9/5/2024
2.1.120 3,501 9/5/2024
2.1.119 190 9/5/2024
2.1.118 2,649 9/5/2024
2.1.117 9,469 9/5/2024
2.1.116 2,119 9/4/2024
2.1.115 19,632 9/3/2024
2.1.114 1,900 9/3/2024
2.1.113 8,131 9/3/2024
2.1.112 15,709 8/29/2024
2.1.111 11,158 8/26/2024
2.1.110 11,120 8/21/2024
2.1.109 6,446 8/21/2024
2.1.108 703 8/20/2024
2.1.107 7,894 8/20/2024
2.1.106 188 8/20/2024
2.1.105 7,897 8/20/2024
2.1.104 4,624 8/20/2024
2.1.103 14,998 8/15/2024
2.1.102 13,247 8/13/2024
2.1.101 12,704 8/6/2024
2.1.100 15,755 8/1/2024
2.1.99 972 8/1/2024
2.1.98 15,112 7/25/2024
2.1.97 1,912 7/25/2024
2.1.96 1,750 7/25/2024
2.1.95 1,152 7/24/2024
2.1.94 364 7/24/2024
2.1.93 16,649 7/20/2024
2.1.92 13,444 7/14/2024
2.1.91 3,773 7/14/2024
2.1.90 11,522 7/10/2024
2.1.89 373 7/10/2024
2.1.88 3,498 7/10/2024
2.1.87 3,121 7/10/2024
2.1.86 387 7/10/2024
2.1.85 380 7/10/2024
2.1.83 3,549 7/10/2024
2.1.82 4,969 7/9/2024
2.1.80 1,385 7/9/2024
2.1.79 1,609 7/9/2024
2.1.78 12,976 7/9/2024
2.1.77 5,240 7/9/2024
2.1.76 18,884 7/9/2024
2.1.75 200 7/9/2024
2.1.74 216 7/8/2024
2.1.73 193 7/8/2024
2.1.72 4,050 7/8/2024
2.1.71 185 7/8/2024
2.1.70 11,746 7/8/2024
2.1.69 3,928 7/7/2024
2.1.68 4,446 7/7/2024
2.1.67 1,074 7/7/2024
2.1.66 2,226 7/7/2024
2.1.65 5,105 7/7/2024
2.1.64 4,454 7/7/2024
2.1.63 194 7/7/2024
2.1.62 6,154 7/5/2024
2.1.61 122,880 5/25/2024
2.1.60 192 5/25/2024
2.1.59 848 5/25/2024
2.1.58 23,203 5/22/2024
2.1.57 205 5/22/2024
2.1.56 18,929 5/17/2024
2.1.55 26,765 4/30/2024
2.1.54 26,276 4/28/2024
2.1.53 190 4/28/2024
2.1.52 1,130 4/27/2024
2.1.51 190 4/27/2024
2.1.50 40,887 4/12/2024
2.1.49 2,196 4/12/2024
2.1.48 208 4/12/2024
2.1.47 62,800 3/18/2024
2.1.46 14,146 3/13/2024
2.1.45 3,611 3/13/2024
2.1.44 96,514 2/21/2024
2.1.43 4,172 2/21/2024
2.1.42 192 2/21/2024
2.1.41 33,379 2/16/2024
2.1.40 940 2/16/2024
2.1.39 36,295 2/9/2024
2.1.38 28,399 2/6/2024
2.1.37 209 2/6/2024
2.1.36 92,839 1/15/2024
2.1.35 1,281 1/15/2024
2.1.34 36,809 1/5/2024
2.1.33 3,462 1/5/2024
2.1.32 18,720 12/27/2023
2.1.31 1,799 12/27/2023
2.1.30 1,562 12/27/2023
2.1.29 11,358 12/25/2023
2.1.28 2,047 12/25/2023
2.1.27 882 12/25/2023
2.1.26 15,082 12/23/2023
2.1.25 226 12/23/2023
2.1.24 1,105 12/23/2023
2.1.23 29,212 12/9/2023
2.1.22 1,781 12/9/2023
2.1.21 379 12/9/2023
2.1.20 2,786 12/9/2023
2.1.19 15,454 12/4/2023
2.1.18 1,170 12/4/2023
2.1.17 8,145 11/26/2023
2.1.16 7,519 11/23/2023
2.1.15 559 11/23/2023
2.1.14 1,491 11/23/2023
2.1.13 13,649 11/19/2023
2.1.12 194 11/19/2023
2.1.11 1,782 11/18/2023
2.1.10 4,856 11/18/2023
2.1.9 2,659 11/18/2023
2.1.8 5,222 11/17/2023
2.1.7 1,374 11/17/2023
2.1.6 2,647 11/17/2023
2.1.5 1,338 11/17/2023
2.1.4 1,000 11/16/2023
2.1.3 299 11/16/2023
2.0.52 1,822 11/15/2023
2.0.51 3,696 11/15/2023
2.0.2 200 11/16/2023
2.0.1 220 11/16/2023
1.0.50 5,695 11/11/2023
1.0.49 204 11/11/2023
1.0.48 180 11/11/2023
1.0.47 1,761 11/9/2023
1.0.46 201 11/9/2023
1.0.45 7,103 11/6/2023
1.0.44 2,901 11/3/2023
1.0.43 2,376 11/2/2023
1.0.42 2,640 11/1/2023
1.0.41 9,985 10/18/2023
1.0.40 3,847 10/17/2023
1.0.39 1,734 10/16/2023
1.0.38 3,470 10/13/2023
1.0.37 237 10/13/2023
1.0.36 8,244 9/19/2023
1.0.35 2,730 9/18/2023
1.0.34 206 9/18/2023
1.0.33 10,161 8/30/2023
1.0.32 3,486 8/29/2023
1.0.31 5,551 8/24/2023
1.0.30 229 8/24/2023
1.0.29 5,243 8/17/2023
1.0.28 263 8/17/2023
1.0.27 9,547 8/7/2023
1.0.26 258 8/7/2023
1.0.25 9,797 7/10/2023
1.0.24 15,158 7/7/2023
1.0.23 262 7/7/2023
1.0.22 11,970 6/28/2023
1.0.21 55,693 5/24/2023
1.0.20 1,503 5/24/2023
1.0.19 570 5/23/2023
1.0.18 293 5/31/2023
1.0.17 3,350 5/23/2023
1.0.16 3,373 5/22/2023
1.0.15 7,655 5/17/2023
1.0.14 291 5/17/2023
1.0.13 6,978 4/28/2023
1.0.12 2,755 4/24/2023
1.0.11 1,234 4/21/2023
1.0.10 5,809 4/12/2023
1.0.9 1,414 4/11/2023
1.0.8 2,710 4/3/2023
1.0.7 342 4/3/2023
1.0.6 495 4/1/2023
1.0.5 2,327 3/23/2023
1.0.3 683 2/28/2023
1.0.2 608 2/16/2023