Soenneker.Extensions.Enumerable 4.0.570

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 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.575 1,138 11/21/2025
4.0.574 135 11/20/2025
4.0.573 2,049 11/20/2025
4.0.572 19,401 11/11/2025
4.0.571 31,866 11/3/2025
4.0.570 20,800 10/30/2025
4.0.569 1,581 10/30/2025
3.0.567 40,528 10/16/2025
3.0.566 86,267 9/9/2025
3.0.565 32,325 9/3/2025
3.0.564 3,407 9/3/2025
3.0.563 184 9/3/2025
3.0.562 55,331 8/11/2025
3.0.561 7,680 8/11/2025
3.0.560 533 8/11/2025
3.0.559 38,262 8/5/2025
3.0.558 40,670 7/8/2025
3.0.557 41,090 6/27/2025
3.0.556 3,431 6/27/2025
3.0.555 340 6/27/2025
3.0.554 46,438 6/10/2025
3.0.553 32,977 5/27/2025
3.0.552 2,189 5/27/2025
3.0.551 1,819 5/27/2025
3.0.550 31,658 5/23/2025
3.0.549 3,547 5/23/2025
3.0.548 3,445 5/22/2025
3.0.547 30,354 5/14/2025
3.0.546 18,352 5/8/2025
3.0.545 2,793 5/7/2025
3.0.544 366 5/7/2025
3.0.543 25,782 5/5/2025
3.0.542 2,951 5/5/2025
3.0.541 5,350 5/5/2025
3.0.540 206 5/5/2025
3.0.539 37,253 4/8/2025
3.0.538 4,032 4/8/2025
3.0.537 821 4/8/2025
3.0.536 4,153 4/8/2025
3.0.535 240 4/8/2025
3.0.534 6,467 4/8/2025
3.0.533 967 4/8/2025
3.0.532 10,321 4/8/2025
3.0.531 12,602 4/8/2025
3.0.530 2,692 4/7/2025
3.0.529 6,284 4/7/2025
3.0.528 2,116 4/7/2025
3.0.527 5,199 4/7/2025
3.0.526 14,107 4/7/2025
3.0.525 4,053 4/7/2025
3.0.524 961 4/7/2025
3.0.523 16,315 4/7/2025
3.0.522 3,095 4/7/2025
3.0.521 5,459 4/6/2025
3.0.520 371 4/6/2025
3.0.519 2,543 4/6/2025
3.0.518 3,069 4/6/2025
3.0.517 3,732 4/6/2025
3.0.516 172 4/6/2025
3.0.515 626 4/6/2025
3.0.514 189 4/6/2025
3.0.513 775 4/5/2025
3.0.512 4,981 4/5/2025
3.0.511 2,479 4/5/2025
3.0.510 1,855 4/5/2025
3.0.509 271 4/5/2025
3.0.508 352 4/5/2025
3.0.507 423 4/5/2025
3.0.506 4,637 4/4/2025
3.0.505 200 4/4/2025
3.0.504 4,903 4/4/2025
3.0.503 60,751 4/4/2025
3.0.502 14,301 4/1/2025
3.0.501 7,884 4/1/2025
3.0.500 11,221 3/31/2025
3.0.499 4,895 3/31/2025
3.0.498 11,216 3/31/2025
3.0.497 13,769 3/29/2025
3.0.496 3,642 3/29/2025
3.0.495 11,381 3/27/2025
3.0.494 7,275 3/25/2025
3.0.493 2,741 3/25/2025
3.0.492 18,479 3/21/2025
3.0.491 17,275 3/18/2025
3.0.490 8,576 3/18/2025
3.0.489 12,880 3/15/2025
3.0.488 4,061 3/15/2025
3.0.487 14,489 3/12/2025
3.0.486 5,344 3/12/2025
3.0.485 776 3/12/2025
3.0.484 5,381 3/11/2025
3.0.483 586 3/11/2025
3.0.482 2,133 3/11/2025
3.0.481 4,047 3/11/2025
3.0.480 5,823 3/11/2025
3.0.479 5,232 3/11/2025
3.0.478 3,509 3/11/2025
3.0.477 20,852 3/7/2025
3.0.476 6,216 3/7/2025
3.0.475 12,291 3/2/2025
3.0.474 4,673 3/2/2025
3.0.473 1,140 3/2/2025
3.0.472 8,880 3/2/2025
3.0.471 8,366 3/1/2025
3.0.470 381 3/1/2025
3.0.469 7,944 3/1/2025
3.0.468 177 3/1/2025
3.0.467 2,862 3/1/2025
3.0.466 21,435 2/26/2025
3.0.465 1,913 2/25/2025
3.0.464 5,322 2/25/2025
3.0.463 3,436 2/25/2025
3.0.462 1,757 2/25/2025
3.0.461 20,101 2/23/2025
3.0.460 3,517 2/22/2025
3.0.459 15,957 2/22/2025
3.0.458 4,715 2/22/2025
3.0.457 5,771 2/22/2025
3.0.456 905 2/21/2025
3.0.455 9,119 2/21/2025
3.0.454 20,001 2/19/2025
3.0.453 8,005 2/18/2025
3.0.452 1,777 2/18/2025
3.0.451 691 2/18/2025
3.0.450 9,767 2/18/2025
3.0.449 174 2/18/2025
3.0.448 22,548 2/14/2025
3.0.447 2,337 2/14/2025
3.0.446 6,620 2/13/2025
3.0.445 8,021 2/13/2025
3.0.444 8,904 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,396 2/11/2025
3.0.437 4,683 2/11/2025
3.0.436 713 2/11/2025
3.0.435 4,440 2/10/2025
3.0.434 179 2/10/2025
3.0.433 2,928 2/10/2025
3.0.432 181 2/10/2025
3.0.431 23,608 2/9/2025
3.0.430 13,426 2/9/2025
3.0.429 594 2/9/2025
3.0.428 458 2/8/2025
3.0.427 350 2/8/2025
3.0.426 446 2/8/2025
3.0.425 14,550 2/8/2025
3.0.424 4,696 2/7/2025
3.0.423 3,463 2/7/2025
3.0.422 3,834 2/7/2025
3.0.421 186 2/7/2025
3.0.420 639 2/7/2025
3.0.419 188 2/7/2025
3.0.418 3,425 2/7/2025
3.0.417 173 2/7/2025
3.0.416 24,474 2/7/2025
3.0.415 12,375 2/5/2025
3.0.414 1,414 2/5/2025
3.0.413 2,079 2/5/2025
3.0.412 427 2/5/2025
3.0.411 4,410 2/5/2025
3.0.410 9,619 2/5/2025
3.0.409 20,336 1/28/2025
3.0.408 1,492 1/28/2025
3.0.407 455 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,161 1/27/2025
3.0.401 177 1/27/2025
3.0.400 11,168 1/26/2025
3.0.399 2,265 1/26/2025
3.0.398 1,748 1/26/2025
3.0.397 961 1/26/2025
3.0.396 421 1/26/2025
3.0.395 4,825 1/25/2025
3.0.394 10,585 1/25/2025
3.0.393 7,925 1/25/2025
3.0.392 807 1/25/2025
3.0.391 19,769 1/24/2025
3.0.390 3,735 1/24/2025
3.0.389 6,568 1/24/2025
3.0.388 7,508 1/24/2025
3.0.387 1,729 1/23/2025
3.0.386 2,047 1/23/2025
3.0.385 253 1/23/2025
3.0.384 17,507 1/22/2025
3.0.383 2,226 1/21/2025
3.0.382 624 1/21/2025
3.0.381 2,089 1/21/2025
3.0.380 2,024 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 182 1/21/2025
3.0.375 11,161 1/21/2025
3.0.374 3,125 1/21/2025
3.0.373 2,461 1/21/2025
3.0.372 4,903 1/21/2025
3.0.371 326 1/20/2025
3.0.370 12,556 1/20/2025
3.0.369 437 1/20/2025
3.0.368 2,636 1/20/2025
3.0.367 164 1/20/2025
3.0.366 2,304 1/20/2025
3.0.365 195 1/20/2025
3.0.364 7,967 1/19/2025
3.0.363 12,211 1/19/2025
3.0.362 11,750 1/19/2025
3.0.361 4,016 1/19/2025
3.0.360 1,106 1/19/2025
3.0.359 6,703 1/18/2025
3.0.358 221 1/18/2025
3.0.357 6,502 1/18/2025
3.0.356 502 1/18/2025
3.0.355 1,844 1/18/2025
3.0.354 11,736 1/17/2025
3.0.353 229 1/17/2025
3.0.352 15,479 1/16/2025
3.0.351 8,443 1/16/2025
3.0.350 1,567 1/16/2025
3.0.349 9,395 1/15/2025
3.0.348 8,138 1/15/2025
3.0.347 6,787 1/15/2025
3.0.346 7,161 1/15/2025
3.0.345 4,223 1/15/2025
3.0.344 5,908 1/15/2025
3.0.343 1,725 1/15/2025
3.0.342 5,041 1/14/2025
3.0.341 909 1/14/2025
3.0.340 236 1/14/2025
3.0.339 7,622 1/14/2025
3.0.338 1,932 1/14/2025
3.0.337 167 1/14/2025
3.0.336 1,979 1/14/2025
3.0.335 703 1/14/2025
3.0.334 13,856 1/13/2025
3.0.333 3,007 1/13/2025
3.0.332 5,806 1/13/2025
3.0.331 11,872 1/11/2025
3.0.330 4,932 1/11/2025
3.0.329 4,753 1/10/2025
3.0.328 10,245 1/10/2025
3.0.327 187 1/10/2025
3.0.326 932 1/10/2025
3.0.325 174 1/10/2025
3.0.324 179 1/10/2025
3.0.323 16,608 1/3/2025
3.0.322 1,796 1/3/2025
3.0.321 2,258 1/3/2025
3.0.320 721 1/3/2025
3.0.319 2,674 1/3/2025
3.0.318 6,003 1/2/2025
3.0.317 195 1/2/2025
3.0.316 4,016 1/2/2025
3.0.315 195 1/2/2025
3.0.314 5,599 1/2/2025
3.0.313 199 1/2/2025
3.0.312 17,927 1/1/2025
3.0.311 191 1/1/2025
3.0.310 273 12/31/2024
3.0.309 205 12/31/2024
3.0.308 6,652 12/31/2024
3.0.307 189 12/31/2024
3.0.306 318 12/31/2024
3.0.305 1,167 12/31/2024
3.0.304 191 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,269 12/31/2024
3.0.299 1,644 12/31/2024
3.0.298 5,691 12/31/2024
3.0.297 4,614 12/31/2024
3.0.296 184 12/31/2024
3.0.295 179 12/31/2024
3.0.294 21,286 12/28/2024
3.0.293 3,564 12/28/2024
3.0.292 2,081 12/28/2024
3.0.291 2,459 12/27/2024
3.0.290 15,381 12/24/2024
3.0.289 3,243 12/24/2024
3.0.288 3,066 12/24/2024
3.0.287 4,396 12/24/2024
3.0.286 4,632 12/24/2024
3.0.285 3,762 12/24/2024
3.0.284 2,995 12/24/2024
3.0.283 2,328 12/23/2024
3.0.282 5,290 12/23/2024
3.0.281 6,105 12/23/2024
3.0.280 2,390 12/23/2024
3.0.279 7,028 12/23/2024
3.0.278 541 12/23/2024
3.0.277 6,469 12/22/2024
3.0.276 10,392 12/22/2024
3.0.275 10,292 12/22/2024
3.0.274 14,074 12/21/2024
3.0.273 846 12/21/2024
3.0.272 6,791 12/21/2024
3.0.271 9,099 12/21/2024
3.0.270 1,737 12/21/2024
3.0.269 10,699 12/20/2024
3.0.268 20,814 12/18/2024
3.0.267 279 12/18/2024
3.0.266 13,322 12/17/2024
3.0.265 11,176 12/17/2024
3.0.264 645 12/16/2024
3.0.263 1,911 12/16/2024
3.0.262 14,490 12/10/2024
3.0.261 4,045 12/9/2024
3.0.260 6,624 12/9/2024
3.0.259 4,567 12/9/2024
3.0.258 12,974 12/6/2024
3.0.257 2,288 12/6/2024
3.0.256 4,017 12/6/2024
3.0.255 12,596 12/6/2024
3.0.254 326 12/6/2024
3.0.253 576 12/6/2024
3.0.252 1,558 12/6/2024
3.0.251 10,200 12/6/2024
3.0.250 201 12/6/2024
3.0.249 198 12/6/2024
3.0.248 7,703 12/5/2024
3.0.247 7,847 12/5/2024
3.0.246 5,596 12/5/2024
3.0.245 7,533 12/5/2024
3.0.244 1,070 12/5/2024
3.0.243 825 12/5/2024
3.0.242 9,253 12/4/2024
3.0.241 739 12/4/2024
3.0.240 1,956 12/4/2024
3.0.239 6,326 12/4/2024
3.0.238 6,800 12/3/2024
3.0.237 4,995 12/3/2024
3.0.236 6,916 12/3/2024
3.0.235 6,219 12/3/2024
3.0.234 8,559 12/2/2024
3.0.233 7,011 12/2/2024
3.0.232 4,232 12/2/2024
3.0.231 784 12/2/2024
3.0.230 7,778 12/1/2024
3.0.229 1,201 12/1/2024
3.0.228 5,711 12/1/2024
3.0.227 7,301 12/1/2024
3.0.226 7,776 11/29/2024
3.0.225 14,079 11/21/2024
3.0.224 10,956 11/20/2024
3.0.223 1,096 11/20/2024
3.0.222 1,913 11/20/2024
3.0.221 980 11/19/2024
3.0.220 9,555 11/19/2024
3.0.219 3,807 11/19/2024
3.0.218 184 11/19/2024
3.0.217 6,255 11/19/2024
3.0.216 172 11/19/2024
3.0.215 18,715 11/14/2024
3.0.214 2,095 11/14/2024
3.0.213 7,101 11/14/2024
3.0.212 1,597 11/14/2024
3.0.211 975 11/14/2024
3.0.210 7,568 11/14/2024
3.0.209 182 11/14/2024
3.0.208 6,254 11/14/2024
3.0.207 343 11/14/2024
2.1.206 21,494 11/13/2024
2.1.205 8,699 11/13/2024
2.1.204 20,394 11/9/2024
2.1.203 1,337 11/9/2024
2.1.202 3,698 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,181 11/8/2024
2.1.197 435 11/8/2024
2.1.196 7,591 11/8/2024
2.1.195 10,073 11/8/2024
2.1.194 23,102 11/1/2024
2.1.192 16,582 10/29/2024
2.1.191 17,465 10/28/2024
2.1.190 11,000 10/26/2024
2.1.189 17,386 10/22/2024
2.1.188 2,479 10/22/2024
2.1.187 1,915 10/22/2024
2.1.186 14,934 10/17/2024
2.1.185 10,798 10/15/2024
2.1.184 4,144 10/14/2024
2.1.183 11,978 10/11/2024
2.1.182 1,558 10/11/2024
2.1.181 907 10/11/2024
2.1.180 19,104 10/9/2024
2.1.179 1,552 10/8/2024
2.1.178 9,321 10/8/2024
2.1.177 1,436 10/8/2024
2.1.176 21,735 10/3/2024
2.1.175 6,578 10/3/2024
2.1.174 15,823 10/2/2024
2.1.173 4,744 10/2/2024
2.1.172 11,423 10/1/2024
2.1.171 2,829 10/1/2024
2.1.170 4,709 10/1/2024
2.1.169 13,225 9/29/2024
2.1.168 3,705 9/29/2024
2.1.167 2,748 9/29/2024
2.1.166 15,812 9/27/2024
2.1.165 8,937 9/27/2024
2.1.164 177 9/27/2024
2.1.163 502 9/27/2024
2.1.162 188 9/27/2024
2.1.161 13,232 9/26/2024
2.1.160 12,999 9/26/2024
2.1.159 11,810 9/26/2024
2.1.158 11,962 9/23/2024
2.1.157 5,468 9/23/2024
2.1.156 3,210 9/23/2024
2.1.155 3,305 9/23/2024
2.1.154 10,960 9/23/2024
2.1.153 1,268 9/23/2024
2.1.152 1,460 9/23/2024
2.1.151 166 9/23/2024
2.1.150 3,672 9/23/2024
2.1.149 20,301 9/17/2024
2.1.148 181 9/17/2024
2.1.147 667 9/17/2024
2.1.146 7,856 9/17/2024
2.1.145 6,698 9/17/2024
2.1.144 8,970 9/17/2024
2.1.143 190 9/17/2024
2.1.142 804 9/17/2024
2.1.141 1,883 9/17/2024
2.1.140 21,467 9/16/2024
2.1.139 12,069 9/12/2024
2.1.138 8,316 9/11/2024
2.1.137 4,993 9/11/2024
2.1.136 9,307 9/11/2024
2.1.135 7,516 9/11/2024
2.1.134 17,568 9/10/2024
2.1.133 3,712 9/10/2024
2.1.132 5,840 9/9/2024
2.1.131 6,064 9/9/2024
2.1.130 3,698 9/9/2024
2.1.129 1,914 9/9/2024
2.1.128 187 9/9/2024
2.1.127 178 9/9/2024
2.1.126 186 9/9/2024
2.1.125 26,759 9/6/2024
2.1.124 10,563 9/6/2024
2.1.123 5,452 9/5/2024
2.1.122 3,201 9/5/2024
2.1.121 6,604 9/5/2024
2.1.120 3,500 9/5/2024
2.1.119 189 9/5/2024
2.1.118 2,646 9/5/2024
2.1.117 9,467 9/5/2024
2.1.116 2,119 9/4/2024
2.1.115 19,630 9/3/2024
2.1.114 1,900 9/3/2024
2.1.113 8,128 9/3/2024
2.1.112 15,705 8/29/2024
2.1.111 11,153 8/26/2024
2.1.110 11,120 8/21/2024
2.1.109 6,441 8/21/2024
2.1.108 702 8/20/2024
2.1.107 7,894 8/20/2024
2.1.106 186 8/20/2024
2.1.105 7,897 8/20/2024
2.1.104 4,623 8/20/2024
2.1.103 14,997 8/15/2024
2.1.102 13,246 8/13/2024
2.1.101 12,704 8/6/2024
2.1.100 15,751 8/1/2024
2.1.99 972 8/1/2024
2.1.98 15,109 7/25/2024
2.1.97 1,912 7/25/2024
2.1.96 1,749 7/25/2024
2.1.95 1,149 7/24/2024
2.1.94 364 7/24/2024
2.1.93 16,641 7/20/2024
2.1.92 13,443 7/14/2024
2.1.91 3,773 7/14/2024
2.1.90 11,516 7/10/2024
2.1.89 372 7/10/2024
2.1.88 3,498 7/10/2024
2.1.87 3,120 7/10/2024
2.1.86 385 7/10/2024
2.1.85 379 7/10/2024
2.1.83 3,547 7/10/2024
2.1.82 4,967 7/9/2024
2.1.80 1,384 7/9/2024
2.1.79 1,608 7/9/2024
2.1.78 12,976 7/9/2024
2.1.77 5,239 7/9/2024
2.1.76 18,773 7/9/2024
2.1.75 200 7/9/2024
2.1.74 215 7/8/2024
2.1.73 192 7/8/2024
2.1.72 4,049 7/8/2024
2.1.71 185 7/8/2024
2.1.70 11,745 7/8/2024
2.1.69 3,926 7/7/2024
2.1.68 4,445 7/7/2024
2.1.67 1,073 7/7/2024
2.1.66 2,222 7/7/2024
2.1.65 5,105 7/7/2024
2.1.64 4,452 7/7/2024
2.1.63 192 7/7/2024
2.1.62 6,152 7/5/2024
2.1.61 122,859 5/25/2024
2.1.60 187 5/25/2024
2.1.59 847 5/25/2024
2.1.58 23,202 5/22/2024
2.1.57 203 5/22/2024
2.1.56 18,923 5/17/2024
2.1.55 26,759 4/30/2024
2.1.54 26,272 4/28/2024
2.1.53 188 4/28/2024
2.1.52 1,127 4/27/2024
2.1.51 190 4/27/2024
2.1.50 40,873 4/12/2024
2.1.49 2,196 4/12/2024
2.1.48 207 4/12/2024
2.1.47 62,771 3/18/2024
2.1.46 14,134 3/13/2024
2.1.45 3,610 3/13/2024
2.1.44 96,493 2/21/2024
2.1.43 4,167 2/21/2024
2.1.42 192 2/21/2024
2.1.41 33,359 2/16/2024
2.1.40 940 2/16/2024
2.1.39 36,277 2/9/2024
2.1.38 28,385 2/6/2024
2.1.37 207 2/6/2024
2.1.36 92,794 1/15/2024
2.1.35 1,280 1/15/2024
2.1.34 36,793 1/5/2024
2.1.33 3,461 1/5/2024
2.1.32 18,719 12/27/2023
2.1.31 1,799 12/27/2023
2.1.30 1,561 12/27/2023
2.1.29 11,352 12/25/2023
2.1.28 2,041 12/25/2023
2.1.27 881 12/25/2023
2.1.26 15,078 12/23/2023
2.1.25 225 12/23/2023
2.1.24 1,105 12/23/2023
2.1.23 29,212 12/9/2023
2.1.22 1,779 12/9/2023
2.1.21 379 12/9/2023
2.1.20 2,784 12/9/2023
2.1.19 15,452 12/4/2023
2.1.18 1,170 12/4/2023
2.1.17 8,144 11/26/2023
2.1.16 7,514 11/23/2023
2.1.15 558 11/23/2023
2.1.14 1,490 11/23/2023
2.1.13 13,647 11/19/2023
2.1.12 193 11/19/2023
2.1.11 1,781 11/18/2023
2.1.10 4,849 11/18/2023
2.1.9 2,659 11/18/2023
2.1.8 5,221 11/17/2023
2.1.7 1,373 11/17/2023
2.1.6 2,646 11/17/2023
2.1.5 1,338 11/17/2023
2.1.4 999 11/16/2023
2.1.3 296 11/16/2023
2.0.52 1,822 11/15/2023
2.0.51 3,694 11/15/2023
2.0.2 199 11/16/2023
2.0.1 220 11/16/2023
1.0.50 5,694 11/11/2023
1.0.49 203 11/11/2023
1.0.48 180 11/11/2023
1.0.47 1,759 11/9/2023
1.0.46 199 11/9/2023
1.0.45 7,097 11/6/2023
1.0.44 2,900 11/3/2023
1.0.43 2,374 11/2/2023
1.0.42 2,639 11/1/2023
1.0.41 9,984 10/18/2023
1.0.40 3,847 10/17/2023
1.0.39 1,731 10/16/2023
1.0.38 3,470 10/13/2023
1.0.37 236 10/13/2023
1.0.36 8,244 9/19/2023
1.0.35 2,730 9/18/2023
1.0.34 204 9/18/2023
1.0.33 10,155 8/30/2023
1.0.32 3,485 8/29/2023
1.0.31 5,550 8/24/2023
1.0.30 228 8/24/2023
1.0.29 5,237 8/17/2023
1.0.28 261 8/17/2023
1.0.27 9,546 8/7/2023
1.0.26 258 8/7/2023
1.0.25 9,797 7/10/2023
1.0.24 15,153 7/7/2023
1.0.23 262 7/7/2023
1.0.22 11,970 6/28/2023
1.0.21 55,683 5/24/2023
1.0.20 1,500 5/24/2023
1.0.19 569 5/23/2023
1.0.18 291 5/31/2023
1.0.17 3,349 5/23/2023
1.0.16 3,373 5/22/2023
1.0.15 7,654 5/17/2023
1.0.14 290 5/17/2023
1.0.13 6,977 4/28/2023
1.0.12 2,752 4/24/2023
1.0.11 1,233 4/21/2023
1.0.10 5,809 4/12/2023
1.0.9 1,413 4/11/2023
1.0.8 2,709 4/3/2023
1.0.7 342 4/3/2023
1.0.6 494 4/1/2023
1.0.5 2,325 3/23/2023
1.0.3 680 2/28/2023
1.0.2 607 2/16/2023