Soenneker.Extensions.Enumerable 3.0.214

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.214
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.214
                    
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.214" />
                    
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.214" />
                    
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.214
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.214"
                    
#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.214
                    
#: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.214
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.214
                    
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 was computed.  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 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 8,799 7/8/2025
3.0.557 26,542 6/27/2025
3.0.556 2,116 6/27/2025
3.0.555 211 6/27/2025
3.0.554 28,916 6/10/2025
3.0.553 21,138 5/27/2025
3.0.552 1,364 5/27/2025
3.0.551 1,127 5/27/2025
3.0.550 19,508 5/23/2025
3.0.549 2,160 5/23/2025
3.0.548 2,161 5/22/2025
3.0.547 18,635 5/14/2025
3.0.546 11,679 5/8/2025
3.0.545 1,732 5/7/2025
3.0.544 250 5/7/2025
3.0.543 16,525 5/5/2025
3.0.542 1,833 5/5/2025
3.0.541 3,358 5/5/2025
3.0.540 144 5/5/2025
3.0.539 23,508 4/8/2025
3.0.538 2,467 4/8/2025
3.0.537 542 4/8/2025
3.0.536 2,578 4/8/2025
3.0.535 172 4/8/2025
3.0.534 3,946 4/8/2025
3.0.533 655 4/8/2025
3.0.532 6,179 4/8/2025
3.0.531 7,329 4/8/2025
3.0.530 1,624 4/7/2025
3.0.529 3,678 4/7/2025
3.0.528 1,271 4/7/2025
3.0.527 3,084 4/7/2025
3.0.526 8,158 4/7/2025
3.0.525 2,412 4/7/2025
3.0.524 622 4/7/2025
3.0.523 9,299 4/7/2025
3.0.522 1,916 4/7/2025
3.0.521 3,296 4/6/2025
3.0.520 254 4/6/2025
3.0.519 1,509 4/6/2025
3.0.518 1,879 4/6/2025
3.0.517 2,228 4/6/2025
3.0.516 115 4/6/2025
3.0.515 390 4/6/2025
3.0.514 122 4/6/2025
3.0.513 489 4/5/2025
3.0.512 3,118 4/5/2025
3.0.511 1,464 4/5/2025
3.0.510 1,124 4/5/2025
3.0.509 175 4/5/2025
3.0.508 227 4/5/2025
3.0.507 272 4/5/2025
3.0.506 2,895 4/4/2025
3.0.505 133 4/4/2025
3.0.504 3,024 4/4/2025
3.0.503 37,243 4/4/2025
3.0.502 8,256 4/1/2025
3.0.501 4,534 4/1/2025
3.0.500 6,436 3/31/2025
3.0.499 2,837 3/31/2025
3.0.498 6,511 3/31/2025
3.0.497 7,835 3/29/2025
3.0.496 2,085 3/29/2025
3.0.495 6,496 3/27/2025
3.0.494 4,377 3/25/2025
3.0.493 1,752 3/25/2025
3.0.492 10,584 3/21/2025
3.0.491 10,749 3/18/2025
3.0.490 4,925 3/18/2025
3.0.489 7,360 3/15/2025
3.0.488 2,293 3/15/2025
3.0.487 8,353 3/12/2025
3.0.486 3,145 3/12/2025
3.0.485 516 3/12/2025
3.0.484 3,143 3/11/2025
3.0.483 393 3/11/2025
3.0.482 1,282 3/11/2025
3.0.481 2,350 3/11/2025
3.0.480 3,491 3/11/2025
3.0.479 3,199 3/11/2025
3.0.478 2,020 3/11/2025
3.0.477 12,327 3/7/2025
3.0.476 3,670 3/7/2025
3.0.475 7,428 3/2/2025
3.0.474 2,707 3/2/2025
3.0.473 676 3/2/2025
3.0.472 5,170 3/2/2025
3.0.471 4,734 3/1/2025
3.0.470 244 3/1/2025
3.0.469 4,482 3/1/2025
3.0.468 114 3/1/2025
3.0.467 1,666 3/1/2025
3.0.466 12,724 2/26/2025
3.0.465 1,128 2/25/2025
3.0.464 3,095 2/25/2025
3.0.463 2,023 2/25/2025
3.0.462 1,030 2/25/2025
3.0.461 11,655 2/23/2025
3.0.460 2,099 2/22/2025
3.0.459 9,292 2/22/2025
3.0.458 2,698 2/22/2025
3.0.457 3,263 2/22/2025
3.0.456 537 2/21/2025
3.0.455 5,241 2/21/2025
3.0.454 11,552 2/19/2025
3.0.453 4,856 2/18/2025
3.0.452 1,063 2/18/2025
3.0.451 431 2/18/2025
3.0.450 5,720 2/18/2025
3.0.449 114 2/18/2025
3.0.448 12,768 2/14/2025
3.0.447 1,393 2/14/2025
3.0.446 3,844 2/13/2025
3.0.445 4,708 2/13/2025
3.0.444 5,396 2/12/2025
3.0.443 1,689 2/12/2025
3.0.442 742 2/12/2025
3.0.441 2,133 2/12/2025
3.0.440 748 2/12/2025
3.0.439 514 2/11/2025
3.0.438 7,867 2/11/2025
3.0.437 2,663 2/11/2025
3.0.436 456 2/11/2025
3.0.435 2,600 2/10/2025
3.0.434 124 2/10/2025
3.0.433 1,765 2/10/2025
3.0.432 128 2/10/2025
3.0.431 13,784 2/9/2025
3.0.430 7,986 2/9/2025
3.0.429 366 2/9/2025
3.0.428 276 2/8/2025
3.0.427 225 2/8/2025
3.0.426 285 2/8/2025
3.0.425 8,294 2/8/2025
3.0.424 2,729 2/7/2025
3.0.423 1,930 2/7/2025
3.0.422 2,466 2/7/2025
3.0.421 123 2/7/2025
3.0.420 417 2/7/2025
3.0.419 121 2/7/2025
3.0.418 1,981 2/7/2025
3.0.417 119 2/7/2025
3.0.416 14,591 2/7/2025
3.0.415 7,163 2/5/2025
3.0.414 848 2/5/2025
3.0.413 1,177 2/5/2025
3.0.412 266 2/5/2025
3.0.411 2,547 2/5/2025
3.0.410 5,367 2/5/2025
3.0.409 12,304 1/28/2025
3.0.408 852 1/28/2025
3.0.407 273 1/28/2025
3.0.406 2,651 1/28/2025
3.0.405 5,517 1/27/2025
3.0.404 1,571 1/27/2025
3.0.403 111 1/27/2025
3.0.402 5,385 1/27/2025
3.0.401 108 1/27/2025
3.0.400 6,152 1/26/2025
3.0.399 1,302 1/26/2025
3.0.398 998 1/26/2025
3.0.397 549 1/26/2025
3.0.396 267 1/26/2025
3.0.395 2,754 1/25/2025
3.0.394 5,912 1/25/2025
3.0.393 4,303 1/25/2025
3.0.392 454 1/25/2025
3.0.391 10,790 1/24/2025
3.0.390 1,990 1/24/2025
3.0.389 3,496 1/24/2025
3.0.388 4,085 1/24/2025
3.0.387 948 1/23/2025
3.0.386 1,172 1/23/2025
3.0.385 158 1/23/2025
3.0.384 9,605 1/22/2025
3.0.383 1,252 1/21/2025
3.0.382 388 1/21/2025
3.0.381 1,211 1/21/2025
3.0.380 1,174 1/21/2025
3.0.379 1,345 1/21/2025
3.0.378 1,033 1/21/2025
3.0.377 1,380 1/21/2025
3.0.376 121 1/21/2025
3.0.375 6,200 1/21/2025
3.0.374 1,767 1/21/2025
3.0.373 1,523 1/21/2025
3.0.372 2,659 1/21/2025
3.0.371 202 1/20/2025
3.0.370 6,963 1/20/2025
3.0.369 270 1/20/2025
3.0.368 1,459 1/20/2025
3.0.367 113 1/20/2025
3.0.366 1,378 1/20/2025
3.0.365 131 1/20/2025
3.0.364 4,256 1/19/2025
3.0.363 6,647 1/19/2025
3.0.362 6,442 1/19/2025
3.0.361 2,194 1/19/2025
3.0.360 641 1/19/2025
3.0.359 3,647 1/18/2025
3.0.358 154 1/18/2025
3.0.357 3,560 1/18/2025
3.0.356 282 1/18/2025
3.0.355 1,028 1/18/2025
3.0.354 6,402 1/17/2025
3.0.353 146 1/17/2025
3.0.352 8,299 1/16/2025
3.0.351 4,574 1/16/2025
3.0.350 859 1/16/2025
3.0.349 5,160 1/15/2025
3.0.348 4,422 1/15/2025
3.0.347 3,740 1/15/2025
3.0.346 3,939 1/15/2025
3.0.345 2,316 1/15/2025
3.0.344 3,066 1/15/2025
3.0.343 816 1/15/2025
3.0.342 2,461 1/14/2025
3.0.341 429 1/14/2025
3.0.340 144 1/14/2025
3.0.339 3,479 1/14/2025
3.0.338 958 1/14/2025
3.0.337 101 1/14/2025
3.0.336 1,253 1/14/2025
3.0.335 367 1/14/2025
3.0.334 7,138 1/13/2025
3.0.333 1,603 1/13/2025
3.0.332 3,029 1/13/2025
3.0.331 6,093 1/11/2025
3.0.330 2,536 1/11/2025
3.0.329 2,797 1/10/2025
3.0.328 5,586 1/10/2025
3.0.327 129 1/10/2025
3.0.326 525 1/10/2025
3.0.325 118 1/10/2025
3.0.324 123 1/10/2025
3.0.323 9,002 1/3/2025
3.0.322 1,049 1/3/2025
3.0.321 1,323 1/3/2025
3.0.320 427 1/3/2025
3.0.319 1,494 1/3/2025
3.0.318 3,314 1/2/2025
3.0.317 132 1/2/2025
3.0.316 2,298 1/2/2025
3.0.315 139 1/2/2025
3.0.314 3,055 1/2/2025
3.0.313 141 1/2/2025
3.0.312 9,896 1/1/2025
3.0.311 132 1/1/2025
3.0.310 180 12/31/2024
3.0.309 143 12/31/2024
3.0.308 3,588 12/31/2024
3.0.307 132 12/31/2024
3.0.306 206 12/31/2024
3.0.305 704 12/31/2024
3.0.304 136 12/31/2024
3.0.303 1,099 12/31/2024
3.0.302 410 12/31/2024
3.0.301 6,441 12/31/2024
3.0.300 4,542 12/31/2024
3.0.299 1,053 12/31/2024
3.0.298 3,298 12/31/2024
3.0.297 2,507 12/31/2024
3.0.296 128 12/31/2024
3.0.295 135 12/31/2024
3.0.294 11,596 12/28/2024
3.0.293 1,965 12/28/2024
3.0.292 1,126 12/28/2024
3.0.291 1,358 12/27/2024
3.0.290 8,494 12/24/2024
3.0.289 1,856 12/24/2024
3.0.288 1,800 12/24/2024
3.0.287 2,530 12/24/2024
3.0.286 2,722 12/24/2024
3.0.285 2,150 12/24/2024
3.0.284 1,780 12/24/2024
3.0.283 1,407 12/23/2024
3.0.282 2,965 12/23/2024
3.0.281 3,398 12/23/2024
3.0.280 1,348 12/23/2024
3.0.279 3,809 12/23/2024
3.0.278 320 12/23/2024
3.0.277 3,643 12/22/2024
3.0.276 5,762 12/22/2024
3.0.275 5,783 12/22/2024
3.0.274 7,812 12/21/2024
3.0.273 471 12/21/2024
3.0.272 3,838 12/21/2024
3.0.271 4,970 12/21/2024
3.0.270 1,086 12/21/2024
3.0.269 5,940 12/20/2024
3.0.268 11,607 12/18/2024
3.0.267 178 12/18/2024
3.0.266 7,600 12/17/2024
3.0.265 6,160 12/17/2024
3.0.264 395 12/16/2024
3.0.263 1,140 12/16/2024
3.0.262 8,173 12/10/2024
3.0.261 2,286 12/9/2024
3.0.260 3,723 12/9/2024
3.0.259 2,536 12/9/2024
3.0.258 7,047 12/6/2024
3.0.257 1,347 12/6/2024
3.0.256 2,329 12/6/2024
3.0.255 7,160 12/6/2024
3.0.254 220 12/6/2024
3.0.253 356 12/6/2024
3.0.252 1,023 12/6/2024
3.0.251 5,680 12/6/2024
3.0.250 148 12/6/2024
3.0.249 137 12/6/2024
3.0.248 4,514 12/5/2024
3.0.247 4,510 12/5/2024
3.0.246 3,450 12/5/2024
3.0.245 4,115 12/5/2024
3.0.244 613 12/5/2024
3.0.243 531 12/5/2024
3.0.242 5,214 12/4/2024
3.0.241 494 12/4/2024
3.0.240 1,148 12/4/2024
3.0.239 3,628 12/4/2024
3.0.238 3,829 12/3/2024
3.0.237 2,876 12/3/2024
3.0.236 3,642 12/3/2024
3.0.235 3,437 12/3/2024
3.0.234 4,746 12/2/2024
3.0.233 3,911 12/2/2024
3.0.232 2,405 12/2/2024
3.0.231 452 12/2/2024
3.0.230 4,330 12/1/2024
3.0.229 1,012 12/1/2024
3.0.228 3,176 12/1/2024
3.0.227 4,109 12/1/2024
3.0.226 4,317 11/29/2024
3.0.225 7,582 11/21/2024
3.0.224 6,234 11/20/2024
3.0.223 691 11/20/2024
3.0.222 1,172 11/20/2024
3.0.221 593 11/19/2024
3.0.220 5,700 11/19/2024
3.0.219 2,341 11/19/2024
3.0.218 120 11/19/2024
3.0.217 3,848 11/19/2024
3.0.216 112 11/19/2024
3.0.215 10,637 11/14/2024
3.0.214 1,190 11/14/2024
3.0.213 4,125 11/14/2024
3.0.212 999 11/14/2024
3.0.211 598 11/14/2024
3.0.210 4,372 11/14/2024
3.0.209 118 11/14/2024
3.0.208 3,471 11/14/2024
3.0.207 210 11/14/2024
2.1.206 12,553 11/13/2024
2.1.205 5,016 11/13/2024
2.1.204 12,150 11/9/2024
2.1.203 867 11/9/2024
2.1.202 2,189 11/9/2024
2.1.201 1,296 11/8/2024
2.1.200 1,100 11/8/2024
2.1.199 124 11/8/2024
2.1.198 1,933 11/8/2024
2.1.197 276 11/8/2024
2.1.196 4,650 11/8/2024
2.1.195 6,066 11/8/2024
2.1.194 13,371 11/1/2024
2.1.192 9,671 10/29/2024
2.1.191 10,414 10/28/2024
2.1.190 6,631 10/26/2024
2.1.189 11,453 10/22/2024
2.1.188 1,509 10/22/2024
2.1.187 1,083 10/22/2024
2.1.186 8,571 10/17/2024
2.1.185 6,229 10/15/2024
2.1.184 2,373 10/14/2024
2.1.183 6,906 10/11/2024
2.1.182 968 10/11/2024
2.1.181 582 10/11/2024
2.1.180 11,110 10/9/2024
2.1.179 934 10/8/2024
2.1.178 5,549 10/8/2024
2.1.177 868 10/8/2024
2.1.176 12,463 10/3/2024
2.1.175 3,756 10/3/2024
2.1.174 9,107 10/2/2024
2.1.173 2,743 10/2/2024
2.1.172 6,697 10/1/2024
2.1.171 1,820 10/1/2024
2.1.170 2,762 10/1/2024
2.1.169 7,753 9/29/2024
2.1.168 2,239 9/29/2024
2.1.167 1,651 9/29/2024
2.1.166 9,514 9/27/2024
2.1.165 5,304 9/27/2024
2.1.164 121 9/27/2024
2.1.163 317 9/27/2024
2.1.162 120 9/27/2024
2.1.161 7,960 9/26/2024
2.1.160 7,605 9/26/2024
2.1.159 7,009 9/26/2024
2.1.158 7,193 9/23/2024
2.1.157 3,327 9/23/2024
2.1.156 1,968 9/23/2024
2.1.155 2,044 9/23/2024
2.1.154 6,583 9/23/2024
2.1.153 750 9/23/2024
2.1.152 905 9/23/2024
2.1.151 109 9/23/2024
2.1.150 2,392 9/23/2024
2.1.149 12,093 9/17/2024
2.1.148 119 9/17/2024
2.1.147 439 9/17/2024
2.1.146 4,853 9/17/2024
2.1.145 4,225 9/17/2024
2.1.144 5,510 9/17/2024
2.1.143 129 9/17/2024
2.1.142 536 9/17/2024
2.1.141 1,264 9/17/2024
2.1.140 13,447 9/16/2024
2.1.139 7,634 9/12/2024
2.1.138 5,162 9/11/2024
2.1.137 3,112 9/11/2024
2.1.136 6,004 9/11/2024
2.1.135 4,947 9/11/2024
2.1.134 11,218 9/10/2024
2.1.133 2,370 9/10/2024
2.1.132 3,766 9/9/2024
2.1.131 4,149 9/9/2024
2.1.130 2,634 9/9/2024
2.1.129 1,264 9/9/2024
2.1.128 120 9/9/2024
2.1.127 127 9/9/2024
2.1.126 124 9/9/2024
2.1.125 16,860 9/6/2024
2.1.124 6,595 9/6/2024
2.1.123 3,419 9/5/2024
2.1.122 2,061 9/5/2024
2.1.121 4,157 9/5/2024
2.1.120 2,270 9/5/2024
2.1.119 121 9/5/2024
2.1.118 1,662 9/5/2024
2.1.117 5,936 9/5/2024
2.1.116 1,422 9/4/2024
2.1.115 12,134 9/3/2024
2.1.114 1,231 9/3/2024
2.1.113 4,972 9/3/2024
2.1.112 9,606 8/29/2024
2.1.111 6,798 8/26/2024
2.1.110 6,752 8/21/2024
2.1.109 3,843 8/21/2024
2.1.108 463 8/20/2024
2.1.107 4,762 8/20/2024
2.1.106 130 8/20/2024
2.1.105 4,847 8/20/2024
2.1.104 2,962 8/20/2024
2.1.103 9,123 8/15/2024
2.1.102 8,245 8/13/2024
2.1.101 7,913 8/6/2024
2.1.100 9,243 8/1/2024
2.1.99 590 8/1/2024
2.1.98 8,728 7/25/2024
2.1.97 1,086 7/25/2024
2.1.96 1,007 7/25/2024
2.1.95 662 7/24/2024
2.1.94 234 7/24/2024
2.1.93 9,769 7/20/2024
2.1.92 8,276 7/14/2024
2.1.91 2,263 7/14/2024
2.1.90 6,873 7/10/2024
2.1.89 249 7/10/2024
2.1.88 2,192 7/10/2024
2.1.87 2,068 7/10/2024
2.1.86 244 7/10/2024
2.1.85 254 7/10/2024
2.1.83 2,145 7/10/2024
2.1.82 3,254 7/9/2024
2.1.80 858 7/9/2024
2.1.79 1,273 7/9/2024
2.1.78 7,760 7/9/2024
2.1.77 3,098 7/9/2024
2.1.76 12,704 7/9/2024
2.1.75 139 7/9/2024
2.1.74 157 7/8/2024
2.1.73 136 7/8/2024
2.1.72 2,540 7/8/2024
2.1.71 117 7/8/2024
2.1.70 6,986 7/8/2024
2.1.69 2,309 7/7/2024
2.1.68 2,613 7/7/2024
2.1.67 695 7/7/2024
2.1.66 1,359 7/7/2024
2.1.65 3,082 7/7/2024
2.1.64 2,747 7/7/2024
2.1.63 127 7/7/2024
2.1.62 3,659 7/5/2024
2.1.61 73,353 5/25/2024
2.1.60 133 5/25/2024
2.1.59 548 5/25/2024
2.1.58 14,040 5/22/2024
2.1.57 134 5/22/2024
2.1.56 11,540 5/17/2024
2.1.55 15,978 4/30/2024
2.1.54 16,001 4/28/2024
2.1.53 133 4/28/2024
2.1.52 696 4/27/2024
2.1.51 124 4/27/2024
2.1.50 25,135 4/12/2024
2.1.49 1,381 4/12/2024
2.1.48 140 4/12/2024
2.1.47 39,368 3/18/2024
2.1.46 8,818 3/13/2024
2.1.45 2,304 3/13/2024
2.1.44 61,361 2/21/2024
2.1.43 2,761 2/21/2024
2.1.42 134 2/21/2024
2.1.41 21,905 2/16/2024
2.1.40 671 2/16/2024
2.1.39 23,982 2/9/2024
2.1.38 19,006 2/6/2024
2.1.37 143 2/6/2024
2.1.36 62,941 1/15/2024
2.1.35 858 1/15/2024
2.1.34 26,209 1/5/2024
2.1.33 2,475 1/5/2024
2.1.32 13,429 12/27/2023
2.1.31 1,364 12/27/2023
2.1.30 1,108 12/27/2023
2.1.29 7,906 12/25/2023
2.1.28 1,456 12/25/2023
2.1.27 709 12/25/2023
2.1.26 10,597 12/23/2023
2.1.25 160 12/23/2023
2.1.24 831 12/23/2023
2.1.23 20,808 12/9/2023
2.1.22 1,364 12/9/2023
2.1.21 270 12/9/2023
2.1.20 1,952 12/9/2023
2.1.19 10,892 12/4/2023
2.1.18 840 12/4/2023
2.1.17 5,476 11/26/2023
2.1.16 5,438 11/23/2023
2.1.15 356 11/23/2023
2.1.14 978 11/23/2023
2.1.13 9,472 11/19/2023
2.1.12 150 11/19/2023
2.1.11 1,214 11/18/2023
2.1.10 3,443 11/18/2023
2.1.9 1,964 11/18/2023
2.1.8 3,708 11/17/2023
2.1.7 1,096 11/17/2023
2.1.6 1,729 11/17/2023
2.1.5 898 11/17/2023
2.1.4 670 11/16/2023
2.1.3 201 11/16/2023
2.0.52 1,263 11/15/2023
2.0.51 2,157 11/15/2023
2.0.2 149 11/16/2023
2.0.1 160 11/16/2023
1.0.50 4,128 11/11/2023
1.0.49 140 11/11/2023
1.0.48 126 11/11/2023
1.0.47 1,357 11/9/2023
1.0.46 147 11/9/2023
1.0.45 5,250 11/6/2023
1.0.44 2,245 11/3/2023
1.0.43 1,831 11/2/2023
1.0.42 1,904 11/1/2023
1.0.41 7,568 10/18/2023
1.0.40 3,038 10/17/2023
1.0.39 1,258 10/16/2023
1.0.38 2,707 10/13/2023
1.0.37 184 10/13/2023
1.0.36 6,190 9/19/2023
1.0.35 2,089 9/18/2023
1.0.34 158 9/18/2023
1.0.33 7,724 8/30/2023
1.0.32 2,735 8/29/2023
1.0.31 4,198 8/24/2023
1.0.30 168 8/24/2023
1.0.29 4,373 8/17/2023
1.0.28 199 8/17/2023
1.0.27 8,068 8/7/2023
1.0.26 198 8/7/2023
1.0.25 8,018 7/10/2023
1.0.24 10,423 7/7/2023
1.0.23 193 7/7/2023
1.0.22 9,373 6/28/2023
1.0.21 44,613 5/24/2023
1.0.20 1,160 5/24/2023
1.0.19 442 5/23/2023
1.0.18 221 5/31/2023
1.0.17 2,790 5/23/2023
1.0.16 2,974 5/22/2023
1.0.15 6,000 5/17/2023
1.0.14 215 5/17/2023
1.0.13 5,637 4/28/2023
1.0.12 2,245 4/24/2023
1.0.11 1,004 4/21/2023
1.0.10 4,520 4/12/2023
1.0.9 1,102 4/11/2023
1.0.8 2,063 4/3/2023
1.0.7 266 4/3/2023
1.0.6 399 4/1/2023
1.0.5 2,071 3/23/2023
1.0.3 581 2/28/2023
1.0.2 486 2/16/2023