Soenneker.Extensions.Enumerable 4.0.570

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 4.0.570
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 4.0.570
                    
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.570" />
                    
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.570" />
                    
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.570
                    
#r "nuget: Soenneker.Extensions.Enumerable, 4.0.570"
                    
#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.570
                    
#: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.570
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=4.0.570
                    
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.570 3,206 10/30/2025
4.0.569 858 10/30/2025
3.0.567 32,310 10/16/2025
3.0.566 85,792 9/9/2025
3.0.565 32,156 9/3/2025
3.0.564 3,393 9/3/2025
3.0.563 179 9/3/2025
3.0.562 54,938 8/11/2025
3.0.561 7,668 8/11/2025
3.0.560 528 8/11/2025
3.0.559 38,100 8/5/2025
3.0.558 39,643 7/8/2025
3.0.557 40,935 6/27/2025
3.0.556 3,411 6/27/2025
3.0.555 330 6/27/2025
3.0.554 46,281 6/10/2025
3.0.553 32,914 5/27/2025
3.0.552 2,171 5/27/2025
3.0.551 1,808 5/27/2025
3.0.550 31,561 5/23/2025
3.0.549 3,527 5/23/2025
3.0.548 3,427 5/22/2025
3.0.547 30,194 5/14/2025
3.0.546 18,262 5/8/2025
3.0.545 2,768 5/7/2025
3.0.544 355 5/7/2025
3.0.543 25,695 5/5/2025
3.0.542 2,943 5/5/2025
3.0.541 5,314 5/5/2025
3.0.540 201 5/5/2025
3.0.539 37,109 4/8/2025
3.0.538 4,022 4/8/2025
3.0.537 810 4/8/2025
3.0.536 4,141 4/8/2025
3.0.535 232 4/8/2025
3.0.534 6,441 4/8/2025
3.0.533 961 4/8/2025
3.0.532 10,294 4/8/2025
3.0.531 12,532 4/8/2025
3.0.530 2,682 4/7/2025
3.0.529 6,269 4/7/2025
3.0.528 2,106 4/7/2025
3.0.527 5,188 4/7/2025
3.0.526 14,027 4/7/2025
3.0.525 4,041 4/7/2025
3.0.524 950 4/7/2025
3.0.523 16,204 4/7/2025
3.0.522 3,083 4/7/2025
3.0.521 5,418 4/6/2025
3.0.520 363 4/6/2025
3.0.519 2,536 4/6/2025
3.0.518 3,058 4/6/2025
3.0.517 3,726 4/6/2025
3.0.516 165 4/6/2025
3.0.515 621 4/6/2025
3.0.514 182 4/6/2025
3.0.513 771 4/5/2025
3.0.512 4,974 4/5/2025
3.0.511 2,469 4/5/2025
3.0.510 1,849 4/5/2025
3.0.509 263 4/5/2025
3.0.508 345 4/5/2025
3.0.507 418 4/5/2025
3.0.506 4,623 4/4/2025
3.0.505 195 4/4/2025
3.0.504 4,892 4/4/2025
3.0.503 60,517 4/4/2025
3.0.502 14,259 4/1/2025
3.0.501 7,855 4/1/2025
3.0.500 11,171 3/31/2025
3.0.499 4,875 3/31/2025
3.0.498 11,150 3/31/2025
3.0.497 13,708 3/29/2025
3.0.496 3,626 3/29/2025
3.0.495 11,332 3/27/2025
3.0.494 7,239 3/25/2025
3.0.493 2,728 3/25/2025
3.0.492 18,363 3/21/2025
3.0.491 17,199 3/18/2025
3.0.490 8,550 3/18/2025
3.0.489 12,825 3/15/2025
3.0.488 4,050 3/15/2025
3.0.487 14,423 3/12/2025
3.0.486 5,324 3/12/2025
3.0.485 771 3/12/2025
3.0.484 5,354 3/11/2025
3.0.483 575 3/11/2025
3.0.482 2,097 3/11/2025
3.0.481 4,007 3/11/2025
3.0.480 5,811 3/11/2025
3.0.479 5,213 3/11/2025
3.0.478 3,484 3/11/2025
3.0.477 20,767 3/7/2025
3.0.476 6,187 3/7/2025
3.0.475 12,235 3/2/2025
3.0.474 4,644 3/2/2025
3.0.473 1,123 3/2/2025
3.0.472 8,834 3/2/2025
3.0.471 8,308 3/1/2025
3.0.470 375 3/1/2025
3.0.469 7,905 3/1/2025
3.0.468 168 3/1/2025
3.0.467 2,851 3/1/2025
3.0.466 21,295 2/26/2025
3.0.465 1,903 2/25/2025
3.0.464 5,302 2/25/2025
3.0.463 3,419 2/25/2025
3.0.462 1,749 2/25/2025
3.0.461 19,965 2/23/2025
3.0.460 3,495 2/22/2025
3.0.459 15,861 2/22/2025
3.0.458 4,683 2/22/2025
3.0.457 5,742 2/22/2025
3.0.456 898 2/21/2025
3.0.455 9,044 2/21/2025
3.0.454 19,871 2/19/2025
3.0.453 7,965 2/18/2025
3.0.452 1,769 2/18/2025
3.0.451 683 2/18/2025
3.0.450 9,706 2/18/2025
3.0.449 169 2/18/2025
3.0.448 22,360 2/14/2025
3.0.447 2,330 2/14/2025
3.0.446 6,585 2/13/2025
3.0.445 7,988 2/13/2025
3.0.444 8,829 2/12/2025
3.0.443 2,793 2/12/2025
3.0.442 1,192 2/12/2025
3.0.441 3,695 2/12/2025
3.0.440 1,174 2/12/2025
3.0.439 821 2/11/2025
3.0.438 13,350 2/11/2025
3.0.437 4,644 2/11/2025
3.0.436 705 2/11/2025
3.0.435 4,400 2/10/2025
3.0.434 172 2/10/2025
3.0.433 2,922 2/10/2025
3.0.432 173 2/10/2025
3.0.431 23,472 2/9/2025
3.0.430 13,322 2/9/2025
3.0.429 586 2/9/2025
3.0.428 452 2/8/2025
3.0.427 345 2/8/2025
3.0.426 440 2/8/2025
3.0.425 14,469 2/8/2025
3.0.424 4,679 2/7/2025
3.0.423 3,435 2/7/2025
3.0.422 3,795 2/7/2025
3.0.421 180 2/7/2025
3.0.420 623 2/7/2025
3.0.419 181 2/7/2025
3.0.418 3,400 2/7/2025
3.0.417 166 2/7/2025
3.0.416 24,373 2/7/2025
3.0.415 12,298 2/5/2025
3.0.414 1,398 2/5/2025
3.0.413 2,060 2/5/2025
3.0.412 415 2/5/2025
3.0.411 4,393 2/5/2025
3.0.410 9,568 2/5/2025
3.0.409 20,232 1/28/2025
3.0.408 1,485 1/28/2025
3.0.407 446 1/28/2025
3.0.406 4,852 1/28/2025
3.0.405 10,365 1/27/2025
3.0.404 2,701 1/27/2025
3.0.403 160 1/27/2025
3.0.402 10,102 1/27/2025
3.0.401 171 1/27/2025
3.0.400 11,092 1/26/2025
3.0.399 2,248 1/26/2025
3.0.398 1,729 1/26/2025
3.0.397 946 1/26/2025
3.0.396 413 1/26/2025
3.0.395 4,797 1/25/2025
3.0.394 10,525 1/25/2025
3.0.393 7,893 1/25/2025
3.0.392 803 1/25/2025
3.0.391 19,628 1/24/2025
3.0.390 3,703 1/24/2025
3.0.389 6,533 1/24/2025
3.0.388 7,461 1/24/2025
3.0.387 1,721 1/23/2025
3.0.386 2,028 1/23/2025
3.0.385 244 1/23/2025
3.0.384 17,387 1/22/2025
3.0.383 2,214 1/21/2025
3.0.382 619 1/21/2025
3.0.381 2,071 1/21/2025
3.0.380 2,018 1/21/2025
3.0.379 2,249 1/21/2025
3.0.378 1,694 1/21/2025
3.0.377 2,341 1/21/2025
3.0.376 173 1/21/2025
3.0.375 11,090 1/21/2025
3.0.374 3,084 1/21/2025
3.0.373 2,430 1/21/2025
3.0.372 4,894 1/21/2025
3.0.371 321 1/20/2025
3.0.370 12,537 1/20/2025
3.0.369 426 1/20/2025
3.0.368 2,623 1/20/2025
3.0.367 158 1/20/2025
3.0.366 2,262 1/20/2025
3.0.365 188 1/20/2025
3.0.364 7,895 1/19/2025
3.0.363 12,111 1/19/2025
3.0.362 11,679 1/19/2025
3.0.361 3,982 1/19/2025
3.0.360 1,100 1/19/2025
3.0.359 6,676 1/18/2025
3.0.358 213 1/18/2025
3.0.357 6,467 1/18/2025
3.0.356 496 1/18/2025
3.0.355 1,828 1/18/2025
3.0.354 11,711 1/17/2025
3.0.353 221 1/17/2025
3.0.352 15,399 1/16/2025
3.0.351 8,397 1/16/2025
3.0.350 1,538 1/16/2025
3.0.349 9,337 1/15/2025
3.0.348 8,093 1/15/2025
3.0.347 6,750 1/15/2025
3.0.346 7,123 1/15/2025
3.0.345 4,196 1/15/2025
3.0.344 5,865 1/15/2025
3.0.343 1,713 1/15/2025
3.0.342 4,984 1/14/2025
3.0.341 882 1/14/2025
3.0.340 227 1/14/2025
3.0.339 7,537 1/14/2025
3.0.338 1,920 1/14/2025
3.0.337 163 1/14/2025
3.0.336 1,951 1/14/2025
3.0.335 697 1/14/2025
3.0.334 13,791 1/13/2025
3.0.333 2,981 1/13/2025
3.0.332 5,766 1/13/2025
3.0.331 11,798 1/11/2025
3.0.330 4,895 1/11/2025
3.0.329 4,714 1/10/2025
3.0.328 10,178 1/10/2025
3.0.327 180 1/10/2025
3.0.326 922 1/10/2025
3.0.325 169 1/10/2025
3.0.324 171 1/10/2025
3.0.323 16,502 1/3/2025
3.0.322 1,785 1/3/2025
3.0.321 2,246 1/3/2025
3.0.320 716 1/3/2025
3.0.319 2,646 1/3/2025
3.0.318 5,984 1/2/2025
3.0.317 188 1/2/2025
3.0.316 4,000 1/2/2025
3.0.315 190 1/2/2025
3.0.314 5,581 1/2/2025
3.0.313 190 1/2/2025
3.0.312 17,845 1/1/2025
3.0.311 185 1/1/2025
3.0.310 267 12/31/2024
3.0.309 196 12/31/2024
3.0.308 6,595 12/31/2024
3.0.307 184 12/31/2024
3.0.306 312 12/31/2024
3.0.305 1,159 12/31/2024
3.0.304 186 12/31/2024
3.0.303 1,841 12/31/2024
3.0.302 661 12/31/2024
3.0.301 11,641 12/31/2024
3.0.300 8,259 12/31/2024
3.0.299 1,639 12/31/2024
3.0.298 5,656 12/31/2024
3.0.297 4,533 12/31/2024
3.0.296 174 12/31/2024
3.0.295 172 12/31/2024
3.0.294 21,171 12/28/2024
3.0.293 3,544 12/28/2024
3.0.292 2,069 12/28/2024
3.0.291 2,443 12/27/2024
3.0.290 15,290 12/24/2024
3.0.289 3,222 12/24/2024
3.0.288 3,043 12/24/2024
3.0.287 4,365 12/24/2024
3.0.286 4,608 12/24/2024
3.0.285 3,735 12/24/2024
3.0.284 2,970 12/24/2024
3.0.283 2,318 12/23/2024
3.0.282 5,274 12/23/2024
3.0.281 6,086 12/23/2024
3.0.280 2,378 12/23/2024
3.0.279 6,993 12/23/2024
3.0.278 537 12/23/2024
3.0.277 6,453 12/22/2024
3.0.276 10,340 12/22/2024
3.0.275 10,253 12/22/2024
3.0.274 14,002 12/21/2024
3.0.273 838 12/21/2024
3.0.272 6,738 12/21/2024
3.0.271 9,051 12/21/2024
3.0.270 1,731 12/21/2024
3.0.269 10,648 12/20/2024
3.0.268 20,717 12/18/2024
3.0.267 273 12/18/2024
3.0.266 13,063 12/17/2024
3.0.265 11,072 12/17/2024
3.0.264 636 12/16/2024
3.0.263 1,893 12/16/2024
3.0.262 14,422 12/10/2024
3.0.261 4,033 12/9/2024
3.0.260 6,589 12/9/2024
3.0.259 4,550 12/9/2024
3.0.258 12,904 12/6/2024
3.0.257 2,280 12/6/2024
3.0.256 4,003 12/6/2024
3.0.255 12,571 12/6/2024
3.0.254 318 12/6/2024
3.0.253 570 12/6/2024
3.0.252 1,549 12/6/2024
3.0.251 10,172 12/6/2024
3.0.250 194 12/6/2024
3.0.249 189 12/6/2024
3.0.248 7,694 12/5/2024
3.0.247 7,756 12/5/2024
3.0.246 5,586 12/5/2024
3.0.245 7,400 12/5/2024
3.0.244 1,063 12/5/2024
3.0.243 820 12/5/2024
3.0.242 9,205 12/4/2024
3.0.241 733 12/4/2024
3.0.240 1,946 12/4/2024
3.0.239 6,270 12/4/2024
3.0.238 6,769 12/3/2024
3.0.237 4,974 12/3/2024
3.0.236 6,712 12/3/2024
3.0.235 6,180 12/3/2024
3.0.234 8,526 12/2/2024
3.0.233 6,957 12/2/2024
3.0.232 4,220 12/2/2024
3.0.231 773 12/2/2024
3.0.230 7,744 12/1/2024
3.0.229 1,187 12/1/2024
3.0.228 5,659 12/1/2024
3.0.227 7,269 12/1/2024
3.0.226 7,746 11/29/2024
3.0.225 13,164 11/21/2024
3.0.224 10,891 11/20/2024
3.0.223 1,091 11/20/2024
3.0.222 1,904 11/20/2024
3.0.221 975 11/19/2024
3.0.220 9,503 11/19/2024
3.0.219 3,784 11/19/2024
3.0.218 176 11/19/2024
3.0.217 6,231 11/19/2024
3.0.216 167 11/19/2024
3.0.215 18,591 11/14/2024
3.0.214 2,081 11/14/2024
3.0.213 7,058 11/14/2024
3.0.212 1,589 11/14/2024
3.0.211 967 11/14/2024
3.0.210 7,525 11/14/2024
3.0.209 174 11/14/2024
3.0.208 6,214 11/14/2024
3.0.207 337 11/14/2024
2.1.206 21,191 11/13/2024
2.1.205 8,601 11/13/2024
2.1.204 20,332 11/9/2024
2.1.203 1,327 11/9/2024
2.1.202 3,676 11/9/2024
2.1.201 2,102 11/8/2024
2.1.200 1,718 11/8/2024
2.1.199 168 11/8/2024
2.1.198 3,151 11/8/2024
2.1.197 426 11/8/2024
2.1.196 7,555 11/8/2024
2.1.195 10,056 11/8/2024
2.1.194 22,988 11/1/2024
2.1.192 16,537 10/29/2024
2.1.191 17,362 10/28/2024
2.1.190 10,935 10/26/2024
2.1.189 17,327 10/22/2024
2.1.188 2,459 10/22/2024
2.1.187 1,884 10/22/2024
2.1.186 14,866 10/17/2024
2.1.185 10,755 10/15/2024
2.1.184 4,123 10/14/2024
2.1.183 11,915 10/11/2024
2.1.182 1,552 10/11/2024
2.1.181 901 10/11/2024
2.1.180 19,084 10/9/2024
2.1.179 1,545 10/8/2024
2.1.178 9,311 10/8/2024
2.1.177 1,429 10/8/2024
2.1.176 21,617 10/3/2024
2.1.175 6,557 10/3/2024
2.1.174 15,778 10/2/2024
2.1.173 4,735 10/2/2024
2.1.172 11,411 10/1/2024
2.1.171 2,819 10/1/2024
2.1.170 4,702 10/1/2024
2.1.169 13,199 9/29/2024
2.1.168 3,701 9/29/2024
2.1.167 2,738 9/29/2024
2.1.166 15,791 9/27/2024
2.1.165 8,923 9/27/2024
2.1.164 170 9/27/2024
2.1.163 495 9/27/2024
2.1.162 182 9/27/2024
2.1.161 13,211 9/26/2024
2.1.160 12,972 9/26/2024
2.1.159 11,779 9/26/2024
2.1.158 11,933 9/23/2024
2.1.157 5,454 9/23/2024
2.1.156 3,197 9/23/2024
2.1.155 3,299 9/23/2024
2.1.154 10,936 9/23/2024
2.1.153 1,263 9/23/2024
2.1.152 1,449 9/23/2024
2.1.151 160 9/23/2024
2.1.150 3,665 9/23/2024
2.1.149 20,206 9/17/2024
2.1.148 173 9/17/2024
2.1.147 656 9/17/2024
2.1.146 7,840 9/17/2024
2.1.145 6,686 9/17/2024
2.1.144 8,959 9/17/2024
2.1.143 184 9/17/2024
2.1.142 799 9/17/2024
2.1.141 1,871 9/17/2024
2.1.140 21,446 9/16/2024
2.1.139 12,034 9/12/2024
2.1.138 8,297 9/11/2024
2.1.137 4,982 9/11/2024
2.1.136 9,286 9/11/2024
2.1.135 7,498 9/11/2024
2.1.134 17,523 9/10/2024
2.1.133 3,707 9/10/2024
2.1.132 5,811 9/9/2024
2.1.131 6,046 9/9/2024
2.1.130 3,691 9/9/2024
2.1.129 1,904 9/9/2024
2.1.128 176 9/9/2024
2.1.127 165 9/9/2024
2.1.126 179 9/9/2024
2.1.125 26,721 9/6/2024
2.1.124 10,553 9/6/2024
2.1.123 5,442 9/5/2024
2.1.122 3,193 9/5/2024
2.1.121 6,583 9/5/2024
2.1.120 3,488 9/5/2024
2.1.119 180 9/5/2024
2.1.118 2,640 9/5/2024
2.1.117 9,429 9/5/2024
2.1.116 2,112 9/4/2024
2.1.115 19,593 9/3/2024
2.1.114 1,890 9/3/2024
2.1.113 8,120 9/3/2024
2.1.112 15,680 8/29/2024
2.1.111 11,141 8/26/2024
2.1.110 11,088 8/21/2024
2.1.109 6,429 8/21/2024
2.1.108 694 8/20/2024
2.1.107 7,883 8/20/2024
2.1.106 179 8/20/2024
2.1.105 7,887 8/20/2024
2.1.104 4,608 8/20/2024
2.1.103 14,953 8/15/2024
2.1.102 13,228 8/13/2024
2.1.101 12,688 8/6/2024
2.1.100 15,714 8/1/2024
2.1.99 964 8/1/2024
2.1.98 15,074 7/25/2024
2.1.97 1,908 7/25/2024
2.1.96 1,742 7/25/2024
2.1.95 1,139 7/24/2024
2.1.94 357 7/24/2024
2.1.93 16,571 7/20/2024
2.1.92 13,426 7/14/2024
2.1.91 3,761 7/14/2024
2.1.90 11,480 7/10/2024
2.1.89 364 7/10/2024
2.1.88 3,483 7/10/2024
2.1.87 3,106 7/10/2024
2.1.86 379 7/10/2024
2.1.85 373 7/10/2024
2.1.83 3,535 7/10/2024
2.1.82 4,953 7/9/2024
2.1.80 1,371 7/9/2024
2.1.79 1,599 7/9/2024
2.1.78 12,947 7/9/2024
2.1.77 5,230 7/9/2024
2.1.76 18,237 7/9/2024
2.1.75 194 7/9/2024
2.1.74 208 7/8/2024
2.1.73 185 7/8/2024
2.1.72 4,043 7/8/2024
2.1.71 175 7/8/2024
2.1.70 11,717 7/8/2024
2.1.69 3,911 7/7/2024
2.1.68 4,437 7/7/2024
2.1.67 1,066 7/7/2024
2.1.66 2,210 7/7/2024
2.1.65 5,098 7/7/2024
2.1.64 4,440 7/7/2024
2.1.63 185 7/7/2024
2.1.62 6,145 7/5/2024
2.1.61 122,653 5/25/2024
2.1.60 182 5/25/2024
2.1.59 838 5/25/2024
2.1.58 23,170 5/22/2024
2.1.57 197 5/22/2024
2.1.56 18,887 5/17/2024
2.1.55 26,712 4/30/2024
2.1.54 26,202 4/28/2024
2.1.53 180 4/28/2024
2.1.52 1,117 4/27/2024
2.1.51 182 4/27/2024
2.1.50 40,808 4/12/2024
2.1.49 2,190 4/12/2024
2.1.48 200 4/12/2024
2.1.47 62,541 3/18/2024
2.1.46 14,091 3/13/2024
2.1.45 3,590 3/13/2024
2.1.44 96,335 2/21/2024
2.1.43 4,163 2/21/2024
2.1.42 184 2/21/2024
2.1.41 33,281 2/16/2024
2.1.40 932 2/16/2024
2.1.39 36,215 2/9/2024
2.1.38 28,304 2/6/2024
2.1.37 200 2/6/2024
2.1.36 92,668 1/15/2024
2.1.35 1,273 1/15/2024
2.1.34 36,742 1/5/2024
2.1.33 3,452 1/5/2024
2.1.32 18,696 12/27/2023
2.1.31 1,785 12/27/2023
2.1.30 1,556 12/27/2023
2.1.29 11,317 12/25/2023
2.1.28 2,035 12/25/2023
2.1.27 875 12/25/2023
2.1.26 15,058 12/23/2023
2.1.25 218 12/23/2023
2.1.24 1,099 12/23/2023
2.1.23 29,158 12/9/2023
2.1.22 1,767 12/9/2023
2.1.21 373 12/9/2023
2.1.20 2,773 12/9/2023
2.1.19 15,414 12/4/2023
2.1.18 1,165 12/4/2023
2.1.17 8,113 11/26/2023
2.1.16 7,495 11/23/2023
2.1.15 551 11/23/2023
2.1.14 1,479 11/23/2023
2.1.13 13,617 11/19/2023
2.1.12 187 11/19/2023
2.1.11 1,774 11/18/2023
2.1.10 4,845 11/18/2023
2.1.9 2,652 11/18/2023
2.1.8 5,203 11/17/2023
2.1.7 1,368 11/17/2023
2.1.6 2,637 11/17/2023
2.1.5 1,335 11/17/2023
2.1.4 986 11/16/2023
2.1.3 293 11/16/2023
2.0.52 1,813 11/15/2023
2.0.51 3,683 11/15/2023
2.0.2 195 11/16/2023
2.0.1 215 11/16/2023
1.0.50 5,679 11/11/2023
1.0.49 198 11/11/2023
1.0.48 173 11/11/2023
1.0.47 1,752 11/9/2023
1.0.46 195 11/9/2023
1.0.45 7,084 11/6/2023
1.0.44 2,893 11/3/2023
1.0.43 2,356 11/2/2023
1.0.42 2,632 11/1/2023
1.0.41 9,964 10/18/2023
1.0.40 3,840 10/17/2023
1.0.39 1,723 10/16/2023
1.0.38 3,453 10/13/2023
1.0.37 231 10/13/2023
1.0.36 8,231 9/19/2023
1.0.35 2,720 9/18/2023
1.0.34 199 9/18/2023
1.0.33 10,145 8/30/2023
1.0.32 3,475 8/29/2023
1.0.31 5,544 8/24/2023
1.0.30 225 8/24/2023
1.0.29 5,230 8/17/2023
1.0.28 256 8/17/2023
1.0.27 9,540 8/7/2023
1.0.26 252 8/7/2023
1.0.25 9,786 7/10/2023
1.0.24 15,136 7/7/2023
1.0.23 257 7/7/2023
1.0.22 11,959 6/28/2023
1.0.21 55,622 5/24/2023
1.0.20 1,491 5/24/2023
1.0.19 562 5/23/2023
1.0.18 286 5/31/2023
1.0.17 3,331 5/23/2023
1.0.16 3,367 5/22/2023
1.0.15 7,641 5/17/2023
1.0.14 281 5/17/2023
1.0.13 6,967 4/28/2023
1.0.12 2,746 4/24/2023
1.0.11 1,227 4/21/2023
1.0.10 5,793 4/12/2023
1.0.9 1,402 4/11/2023
1.0.8 2,695 4/3/2023
1.0.7 335 4/3/2023
1.0.6 488 4/1/2023
1.0.5 2,318 3/23/2023
1.0.3 672 2/28/2023
1.0.2 599 2/16/2023