Soenneker.Extensions.Enumerable 3.0.463

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.463
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.463
                    
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.463" />
                    
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.463" />
                    
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.463
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.463"
                    
#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.463
                    
#: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.463
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.463
                    
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 (14)

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.558 6,915 7/8/2025
3.0.557 25,922 6/27/2025
3.0.556 2,114 6/27/2025
3.0.555 209 6/27/2025
3.0.554 28,886 6/10/2025
3.0.553 21,123 5/27/2025
3.0.552 1,360 5/27/2025
3.0.551 1,122 5/27/2025
3.0.550 19,492 5/23/2025
3.0.549 2,153 5/23/2025
3.0.548 2,157 5/22/2025
3.0.547 18,617 5/14/2025
3.0.546 11,649 5/8/2025
3.0.545 1,728 5/7/2025
3.0.544 246 5/7/2025
3.0.543 16,518 5/5/2025
3.0.542 1,830 5/5/2025
3.0.541 3,354 5/5/2025
3.0.540 140 5/5/2025
3.0.539 23,501 4/8/2025
3.0.538 2,460 4/8/2025
3.0.537 537 4/8/2025
3.0.536 2,574 4/8/2025
3.0.535 169 4/8/2025
3.0.534 3,941 4/8/2025
3.0.533 650 4/8/2025
3.0.532 6,175 4/8/2025
3.0.531 7,325 4/8/2025
3.0.530 1,620 4/7/2025
3.0.529 3,675 4/7/2025
3.0.528 1,268 4/7/2025
3.0.527 3,082 4/7/2025
3.0.526 8,155 4/7/2025
3.0.525 2,407 4/7/2025
3.0.524 618 4/7/2025
3.0.523 9,292 4/7/2025
3.0.522 1,910 4/7/2025
3.0.521 3,291 4/6/2025
3.0.520 248 4/6/2025
3.0.519 1,506 4/6/2025
3.0.518 1,874 4/6/2025
3.0.517 2,225 4/6/2025
3.0.516 112 4/6/2025
3.0.515 383 4/6/2025
3.0.514 116 4/6/2025
3.0.513 486 4/5/2025
3.0.512 3,114 4/5/2025
3.0.511 1,460 4/5/2025
3.0.510 1,119 4/5/2025
3.0.509 172 4/5/2025
3.0.508 223 4/5/2025
3.0.507 268 4/5/2025
3.0.506 2,890 4/4/2025
3.0.505 129 4/4/2025
3.0.504 3,019 4/4/2025
3.0.503 37,237 4/4/2025
3.0.502 8,252 4/1/2025
3.0.501 4,530 4/1/2025
3.0.500 6,432 3/31/2025
3.0.499 2,831 3/31/2025
3.0.498 6,508 3/31/2025
3.0.497 7,829 3/29/2025
3.0.496 2,082 3/29/2025
3.0.495 6,491 3/27/2025
3.0.494 4,372 3/25/2025
3.0.493 1,749 3/25/2025
3.0.492 10,578 3/21/2025
3.0.491 10,745 3/18/2025
3.0.490 4,922 3/18/2025
3.0.489 7,355 3/15/2025
3.0.488 2,289 3/15/2025
3.0.487 8,347 3/12/2025
3.0.486 3,141 3/12/2025
3.0.485 513 3/12/2025
3.0.484 3,141 3/11/2025
3.0.483 389 3/11/2025
3.0.482 1,277 3/11/2025
3.0.481 2,347 3/11/2025
3.0.480 3,488 3/11/2025
3.0.479 3,196 3/11/2025
3.0.478 2,018 3/11/2025
3.0.477 12,324 3/7/2025
3.0.476 3,667 3/7/2025
3.0.475 7,423 3/2/2025
3.0.474 2,704 3/2/2025
3.0.473 673 3/2/2025
3.0.472 5,167 3/2/2025
3.0.471 4,732 3/1/2025
3.0.470 241 3/1/2025
3.0.469 4,477 3/1/2025
3.0.468 108 3/1/2025
3.0.467 1,662 3/1/2025
3.0.466 12,720 2/26/2025
3.0.465 1,124 2/25/2025
3.0.464 3,092 2/25/2025
3.0.463 2,020 2/25/2025
3.0.462 1,027 2/25/2025
3.0.461 11,651 2/23/2025
3.0.460 2,095 2/22/2025
3.0.459 9,288 2/22/2025
3.0.458 2,692 2/22/2025
3.0.457 3,261 2/22/2025
3.0.456 535 2/21/2025
3.0.455 5,238 2/21/2025
3.0.454 11,550 2/19/2025
3.0.453 4,853 2/18/2025
3.0.452 1,060 2/18/2025
3.0.451 427 2/18/2025
3.0.450 5,714 2/18/2025
3.0.449 112 2/18/2025
3.0.448 12,746 2/14/2025
3.0.447 1,389 2/14/2025
3.0.446 3,841 2/13/2025
3.0.445 4,706 2/13/2025
3.0.444 5,388 2/12/2025
3.0.443 1,686 2/12/2025
3.0.442 740 2/12/2025
3.0.441 2,131 2/12/2025
3.0.440 743 2/12/2025
3.0.439 511 2/11/2025
3.0.438 7,863 2/11/2025
3.0.437 2,658 2/11/2025
3.0.436 454 2/11/2025
3.0.435 2,596 2/10/2025
3.0.434 121 2/10/2025
3.0.433 1,762 2/10/2025
3.0.432 126 2/10/2025
3.0.431 13,780 2/9/2025
3.0.430 7,983 2/9/2025
3.0.429 363 2/9/2025
3.0.428 272 2/8/2025
3.0.427 222 2/8/2025
3.0.426 281 2/8/2025
3.0.425 8,290 2/8/2025
3.0.424 2,725 2/7/2025
3.0.423 1,927 2/7/2025
3.0.422 2,462 2/7/2025
3.0.421 120 2/7/2025
3.0.420 413 2/7/2025
3.0.419 117 2/7/2025
3.0.418 1,978 2/7/2025
3.0.417 115 2/7/2025
3.0.416 14,588 2/7/2025
3.0.415 7,160 2/5/2025
3.0.414 845 2/5/2025
3.0.413 1,175 2/5/2025
3.0.412 260 2/5/2025
3.0.411 2,544 2/5/2025
3.0.410 5,363 2/5/2025
3.0.409 12,299 1/28/2025
3.0.408 850 1/28/2025
3.0.407 268 1/28/2025
3.0.406 2,647 1/28/2025
3.0.405 5,514 1/27/2025
3.0.404 1,569 1/27/2025
3.0.403 108 1/27/2025
3.0.402 5,383 1/27/2025
3.0.401 106 1/27/2025
3.0.400 6,148 1/26/2025
3.0.399 1,299 1/26/2025
3.0.398 994 1/26/2025
3.0.397 547 1/26/2025
3.0.396 263 1/26/2025
3.0.395 2,751 1/25/2025
3.0.394 5,910 1/25/2025
3.0.393 4,298 1/25/2025
3.0.392 450 1/25/2025
3.0.391 10,785 1/24/2025
3.0.390 1,986 1/24/2025
3.0.389 3,493 1/24/2025
3.0.388 4,080 1/24/2025
3.0.387 946 1/23/2025
3.0.386 1,167 1/23/2025
3.0.385 156 1/23/2025
3.0.384 9,601 1/22/2025
3.0.383 1,248 1/21/2025
3.0.382 385 1/21/2025
3.0.381 1,206 1/21/2025
3.0.380 1,168 1/21/2025
3.0.379 1,342 1/21/2025
3.0.378 1,031 1/21/2025
3.0.377 1,377 1/21/2025
3.0.376 115 1/21/2025
3.0.375 6,192 1/21/2025
3.0.374 1,762 1/21/2025
3.0.373 1,519 1/21/2025
3.0.372 2,655 1/21/2025
3.0.371 197 1/20/2025
3.0.370 6,958 1/20/2025
3.0.369 267 1/20/2025
3.0.368 1,453 1/20/2025
3.0.367 109 1/20/2025
3.0.366 1,376 1/20/2025
3.0.365 128 1/20/2025
3.0.364 4,251 1/19/2025
3.0.363 6,643 1/19/2025
3.0.362 6,438 1/19/2025
3.0.361 2,191 1/19/2025
3.0.360 638 1/19/2025
3.0.359 3,643 1/18/2025
3.0.358 149 1/18/2025
3.0.357 3,556 1/18/2025
3.0.356 279 1/18/2025
3.0.355 1,024 1/18/2025
3.0.354 6,400 1/17/2025
3.0.353 142 1/17/2025
3.0.352 8,297 1/16/2025
3.0.351 4,570 1/16/2025
3.0.350 854 1/16/2025
3.0.349 5,157 1/15/2025
3.0.348 4,419 1/15/2025
3.0.347 3,736 1/15/2025
3.0.346 3,936 1/15/2025
3.0.345 2,314 1/15/2025
3.0.344 3,062 1/15/2025
3.0.343 812 1/15/2025
3.0.342 2,458 1/14/2025
3.0.341 425 1/14/2025
3.0.340 139 1/14/2025
3.0.339 3,476 1/14/2025
3.0.338 955 1/14/2025
3.0.337 97 1/14/2025
3.0.336 1,250 1/14/2025
3.0.335 364 1/14/2025
3.0.334 7,134 1/13/2025
3.0.333 1,600 1/13/2025
3.0.332 3,026 1/13/2025
3.0.331 6,089 1/11/2025
3.0.330 2,532 1/11/2025
3.0.329 2,794 1/10/2025
3.0.328 5,584 1/10/2025
3.0.327 125 1/10/2025
3.0.326 523 1/10/2025
3.0.325 115 1/10/2025
3.0.324 121 1/10/2025
3.0.323 8,998 1/3/2025
3.0.322 1,047 1/3/2025
3.0.321 1,319 1/3/2025
3.0.320 424 1/3/2025
3.0.319 1,490 1/3/2025
3.0.318 3,312 1/2/2025
3.0.317 129 1/2/2025
3.0.316 2,295 1/2/2025
3.0.315 136 1/2/2025
3.0.314 3,052 1/2/2025
3.0.313 138 1/2/2025
3.0.312 9,892 1/1/2025
3.0.311 127 1/1/2025
3.0.310 176 12/31/2024
3.0.309 137 12/31/2024
3.0.308 3,585 12/31/2024
3.0.307 129 12/31/2024
3.0.306 202 12/31/2024
3.0.305 700 12/31/2024
3.0.304 132 12/31/2024
3.0.303 1,095 12/31/2024
3.0.302 406 12/31/2024
3.0.301 6,439 12/31/2024
3.0.300 4,539 12/31/2024
3.0.299 1,049 12/31/2024
3.0.298 3,295 12/31/2024
3.0.297 2,504 12/31/2024
3.0.296 123 12/31/2024
3.0.295 132 12/31/2024
3.0.294 11,591 12/28/2024
3.0.293 1,963 12/28/2024
3.0.292 1,123 12/28/2024
3.0.291 1,355 12/27/2024
3.0.290 8,490 12/24/2024
3.0.289 1,853 12/24/2024
3.0.288 1,799 12/24/2024
3.0.287 2,527 12/24/2024
3.0.286 2,718 12/24/2024
3.0.285 2,147 12/24/2024
3.0.284 1,775 12/24/2024
3.0.283 1,405 12/23/2024
3.0.282 2,962 12/23/2024
3.0.281 3,392 12/23/2024
3.0.280 1,346 12/23/2024
3.0.279 3,806 12/23/2024
3.0.278 318 12/23/2024
3.0.277 3,639 12/22/2024
3.0.276 5,757 12/22/2024
3.0.275 5,779 12/22/2024
3.0.274 7,808 12/21/2024
3.0.273 468 12/21/2024
3.0.272 3,834 12/21/2024
3.0.271 4,967 12/21/2024
3.0.270 1,084 12/21/2024
3.0.269 5,938 12/20/2024
3.0.268 11,603 12/18/2024
3.0.267 173 12/18/2024
3.0.266 7,596 12/17/2024
3.0.265 6,155 12/17/2024
3.0.264 393 12/16/2024
3.0.263 1,136 12/16/2024
3.0.262 8,169 12/10/2024
3.0.261 2,281 12/9/2024
3.0.260 3,718 12/9/2024
3.0.259 2,534 12/9/2024
3.0.258 7,044 12/6/2024
3.0.257 1,344 12/6/2024
3.0.256 2,326 12/6/2024
3.0.255 7,156 12/6/2024
3.0.254 217 12/6/2024
3.0.253 354 12/6/2024
3.0.252 1,020 12/6/2024
3.0.251 5,677 12/6/2024
3.0.250 145 12/6/2024
3.0.249 134 12/6/2024
3.0.248 4,511 12/5/2024
3.0.247 4,505 12/5/2024
3.0.246 3,447 12/5/2024
3.0.245 4,110 12/5/2024
3.0.244 610 12/5/2024
3.0.243 529 12/5/2024
3.0.242 5,211 12/4/2024
3.0.241 491 12/4/2024
3.0.240 1,143 12/4/2024
3.0.239 3,624 12/4/2024
3.0.238 3,824 12/3/2024
3.0.237 2,873 12/3/2024
3.0.236 3,638 12/3/2024
3.0.235 3,435 12/3/2024
3.0.234 4,743 12/2/2024
3.0.233 3,905 12/2/2024
3.0.232 2,402 12/2/2024
3.0.231 447 12/2/2024
3.0.230 4,326 12/1/2024
3.0.229 1,007 12/1/2024
3.0.228 3,173 12/1/2024
3.0.227 4,106 12/1/2024
3.0.226 4,315 11/29/2024
3.0.225 7,578 11/21/2024
3.0.224 6,231 11/20/2024
3.0.223 686 11/20/2024
3.0.222 1,169 11/20/2024
3.0.221 590 11/19/2024
3.0.220 5,696 11/19/2024
3.0.219 2,338 11/19/2024
3.0.218 116 11/19/2024
3.0.217 3,844 11/19/2024
3.0.216 110 11/19/2024
3.0.215 10,635 11/14/2024
3.0.214 1,187 11/14/2024
3.0.213 4,121 11/14/2024
3.0.212 996 11/14/2024
3.0.211 594 11/14/2024
3.0.210 4,368 11/14/2024
3.0.209 115 11/14/2024
3.0.208 3,468 11/14/2024
3.0.207 208 11/14/2024
2.1.206 12,528 11/13/2024
2.1.205 5,010 11/13/2024
2.1.204 12,147 11/9/2024
2.1.203 864 11/9/2024
2.1.202 2,185 11/9/2024
2.1.201 1,293 11/8/2024
2.1.200 1,096 11/8/2024
2.1.199 120 11/8/2024
2.1.198 1,924 11/8/2024
2.1.197 273 11/8/2024
2.1.196 4,645 11/8/2024
2.1.195 6,063 11/8/2024
2.1.194 13,368 11/1/2024
2.1.192 9,668 10/29/2024
2.1.191 10,410 10/28/2024
2.1.190 6,627 10/26/2024
2.1.189 11,449 10/22/2024
2.1.188 1,507 10/22/2024
2.1.187 1,081 10/22/2024
2.1.186 8,568 10/17/2024
2.1.185 6,226 10/15/2024
2.1.184 2,370 10/14/2024
2.1.183 6,901 10/11/2024
2.1.182 965 10/11/2024
2.1.181 579 10/11/2024
2.1.180 11,091 10/9/2024
2.1.179 931 10/8/2024
2.1.178 5,546 10/8/2024
2.1.177 866 10/8/2024
2.1.176 12,455 10/3/2024
2.1.175 3,751 10/3/2024
2.1.174 9,105 10/2/2024
2.1.173 2,738 10/2/2024
2.1.172 6,694 10/1/2024
2.1.171 1,816 10/1/2024
2.1.170 2,759 10/1/2024
2.1.169 7,749 9/29/2024
2.1.168 2,235 9/29/2024
2.1.167 1,645 9/29/2024
2.1.166 9,510 9/27/2024
2.1.165 5,302 9/27/2024
2.1.164 118 9/27/2024
2.1.163 313 9/27/2024
2.1.162 118 9/27/2024
2.1.161 7,953 9/26/2024
2.1.160 7,602 9/26/2024
2.1.159 7,004 9/26/2024
2.1.158 7,190 9/23/2024
2.1.157 3,322 9/23/2024
2.1.156 1,965 9/23/2024
2.1.155 2,042 9/23/2024
2.1.154 6,580 9/23/2024
2.1.153 747 9/23/2024
2.1.152 903 9/23/2024
2.1.151 107 9/23/2024
2.1.150 2,388 9/23/2024
2.1.149 12,087 9/17/2024
2.1.148 113 9/17/2024
2.1.147 434 9/17/2024
2.1.146 4,850 9/17/2024
2.1.145 4,222 9/17/2024
2.1.144 5,508 9/17/2024
2.1.143 124 9/17/2024
2.1.142 534 9/17/2024
2.1.141 1,261 9/17/2024
2.1.140 13,439 9/16/2024
2.1.139 7,622 9/12/2024
2.1.138 5,159 9/11/2024
2.1.137 3,110 9/11/2024
2.1.136 6,002 9/11/2024
2.1.135 4,945 9/11/2024
2.1.134 11,216 9/10/2024
2.1.133 2,366 9/10/2024
2.1.132 3,762 9/9/2024
2.1.131 4,143 9/9/2024
2.1.130 2,631 9/9/2024
2.1.129 1,260 9/9/2024
2.1.128 115 9/9/2024
2.1.127 123 9/9/2024
2.1.126 120 9/9/2024
2.1.125 16,858 9/6/2024
2.1.124 6,591 9/6/2024
2.1.123 3,417 9/5/2024
2.1.122 2,059 9/5/2024
2.1.121 4,154 9/5/2024
2.1.120 2,267 9/5/2024
2.1.119 116 9/5/2024
2.1.118 1,659 9/5/2024
2.1.117 5,930 9/5/2024
2.1.116 1,419 9/4/2024
2.1.115 12,131 9/3/2024
2.1.114 1,227 9/3/2024
2.1.113 4,967 9/3/2024
2.1.112 9,598 8/29/2024
2.1.111 6,789 8/26/2024
2.1.110 6,746 8/21/2024
2.1.109 3,839 8/21/2024
2.1.108 460 8/20/2024
2.1.107 4,760 8/20/2024
2.1.106 128 8/20/2024
2.1.105 4,844 8/20/2024
2.1.104 2,958 8/20/2024
2.1.103 9,120 8/15/2024
2.1.102 8,241 8/13/2024
2.1.101 7,910 8/6/2024
2.1.100 9,239 8/1/2024
2.1.99 585 8/1/2024
2.1.98 8,723 7/25/2024
2.1.97 1,083 7/25/2024
2.1.96 1,003 7/25/2024
2.1.95 658 7/24/2024
2.1.94 231 7/24/2024
2.1.93 9,745 7/20/2024
2.1.92 8,273 7/14/2024
2.1.91 2,261 7/14/2024
2.1.90 6,863 7/10/2024
2.1.89 246 7/10/2024
2.1.88 2,186 7/10/2024
2.1.87 2,065 7/10/2024
2.1.86 239 7/10/2024
2.1.85 250 7/10/2024
2.1.83 2,140 7/10/2024
2.1.82 3,250 7/9/2024
2.1.80 856 7/9/2024
2.1.79 1,271 7/9/2024
2.1.78 7,757 7/9/2024
2.1.77 3,093 7/9/2024
2.1.76 12,641 7/9/2024
2.1.75 136 7/9/2024
2.1.74 154 7/8/2024
2.1.73 133 7/8/2024
2.1.72 2,535 7/8/2024
2.1.71 114 7/8/2024
2.1.70 6,984 7/8/2024
2.1.69 2,307 7/7/2024
2.1.68 2,610 7/7/2024
2.1.67 693 7/7/2024
2.1.66 1,354 7/7/2024
2.1.65 3,079 7/7/2024
2.1.64 2,743 7/7/2024
2.1.63 125 7/7/2024
2.1.62 3,655 7/5/2024
2.1.61 73,348 5/25/2024
2.1.60 127 5/25/2024
2.1.59 546 5/25/2024
2.1.58 14,038 5/22/2024
2.1.57 130 5/22/2024
2.1.56 11,535 5/17/2024
2.1.55 15,974 4/30/2024
2.1.54 15,993 4/28/2024
2.1.53 131 4/28/2024
2.1.52 692 4/27/2024
2.1.51 122 4/27/2024
2.1.50 25,130 4/12/2024
2.1.49 1,378 4/12/2024
2.1.48 136 4/12/2024
2.1.47 39,335 3/18/2024
2.1.46 8,815 3/13/2024
2.1.45 2,300 3/13/2024
2.1.44 61,355 2/21/2024
2.1.43 2,759 2/21/2024
2.1.42 132 2/21/2024
2.1.41 21,901 2/16/2024
2.1.40 668 2/16/2024
2.1.39 23,980 2/9/2024
2.1.38 19,000 2/6/2024
2.1.37 139 2/6/2024
2.1.36 62,934 1/15/2024
2.1.35 856 1/15/2024
2.1.34 26,206 1/5/2024
2.1.33 2,471 1/5/2024
2.1.32 13,426 12/27/2023
2.1.31 1,360 12/27/2023
2.1.30 1,106 12/27/2023
2.1.29 7,902 12/25/2023
2.1.28 1,451 12/25/2023
2.1.27 706 12/25/2023
2.1.26 10,590 12/23/2023
2.1.25 156 12/23/2023
2.1.24 828 12/23/2023
2.1.23 20,796 12/9/2023
2.1.22 1,362 12/9/2023
2.1.21 267 12/9/2023
2.1.20 1,949 12/9/2023
2.1.19 10,888 12/4/2023
2.1.18 837 12/4/2023
2.1.17 5,474 11/26/2023
2.1.16 5,436 11/23/2023
2.1.15 354 11/23/2023
2.1.14 973 11/23/2023
2.1.13 9,468 11/19/2023
2.1.12 148 11/19/2023
2.1.11 1,211 11/18/2023
2.1.10 3,441 11/18/2023
2.1.9 1,961 11/18/2023
2.1.8 3,701 11/17/2023
2.1.7 1,092 11/17/2023
2.1.6 1,725 11/17/2023
2.1.5 895 11/17/2023
2.1.4 667 11/16/2023
2.1.3 199 11/16/2023
2.0.52 1,260 11/15/2023
2.0.51 2,153 11/15/2023
2.0.2 145 11/16/2023
2.0.1 156 11/16/2023
1.0.50 4,125 11/11/2023
1.0.49 137 11/11/2023
1.0.48 122 11/11/2023
1.0.47 1,353 11/9/2023
1.0.46 144 11/9/2023
1.0.45 5,246 11/6/2023
1.0.44 2,242 11/3/2023
1.0.43 1,827 11/2/2023
1.0.42 1,901 11/1/2023
1.0.41 7,564 10/18/2023
1.0.40 3,035 10/17/2023
1.0.39 1,256 10/16/2023
1.0.38 2,705 10/13/2023
1.0.37 180 10/13/2023
1.0.36 6,185 9/19/2023
1.0.35 2,084 9/18/2023
1.0.34 152 9/18/2023
1.0.33 7,721 8/30/2023
1.0.32 2,731 8/29/2023
1.0.31 4,193 8/24/2023
1.0.30 164 8/24/2023
1.0.29 4,368 8/17/2023
1.0.28 195 8/17/2023
1.0.27 8,063 8/7/2023
1.0.26 193 8/7/2023
1.0.25 8,014 7/10/2023
1.0.24 10,418 7/7/2023
1.0.23 188 7/7/2023
1.0.22 9,367 6/28/2023
1.0.21 44,609 5/24/2023
1.0.20 1,156 5/24/2023
1.0.19 438 5/23/2023
1.0.18 215 5/31/2023
1.0.17 2,785 5/23/2023
1.0.16 2,970 5/22/2023
1.0.15 5,995 5/17/2023
1.0.14 210 5/17/2023
1.0.13 5,633 4/28/2023
1.0.12 2,240 4/24/2023
1.0.11 999 4/21/2023
1.0.10 4,515 4/12/2023
1.0.9 1,096 4/11/2023
1.0.8 2,059 4/3/2023
1.0.7 263 4/3/2023
1.0.6 395 4/1/2023
1.0.5 2,067 3/23/2023
1.0.3 575 2/28/2023
1.0.2 480 2/16/2023