Soenneker.Extensions.Enumerable 3.0.565

Prefix Reserved
dotnet add package Soenneker.Extensions.Enumerable --version 3.0.565
                    
NuGet\Install-Package Soenneker.Extensions.Enumerable -Version 3.0.565
                    
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.565" />
                    
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.565" />
                    
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.565
                    
#r "nuget: Soenneker.Extensions.Enumerable, 3.0.565"
                    
#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.565
                    
#: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.565
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Extensions.Enumerable&version=3.0.565
                    
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 (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
3.0.565 3,928 9/3/2025
3.0.564 1,075 9/3/2025
3.0.563 31 9/3/2025
3.0.562 25,747 8/11/2025
3.0.561 3,496 8/11/2025
3.0.560 276 8/11/2025
3.0.559 18,665 8/5/2025
3.0.558 17,301 7/8/2025
3.0.557 26,671 6/27/2025
3.0.556 2,126 6/27/2025
3.0.555 220 6/27/2025
3.0.554 29,133 6/10/2025
3.0.553 21,148 5/27/2025
3.0.552 1,372 5/27/2025
3.0.551 1,136 5/27/2025
3.0.550 19,587 5/23/2025
3.0.549 2,168 5/23/2025
3.0.548 2,172 5/22/2025
3.0.547 18,759 5/14/2025
3.0.546 11,781 5/8/2025
3.0.545 1,741 5/7/2025
3.0.544 258 5/7/2025
3.0.543 16,543 5/5/2025
3.0.542 1,841 5/5/2025
3.0.541 3,371 5/5/2025
3.0.540 153 5/5/2025
3.0.539 23,588 4/8/2025
3.0.538 2,477 4/8/2025
3.0.537 551 4/8/2025
3.0.536 2,586 4/8/2025
3.0.535 181 4/8/2025
3.0.534 3,957 4/8/2025
3.0.533 663 4/8/2025
3.0.532 6,191 4/8/2025
3.0.531 7,342 4/8/2025
3.0.530 1,632 4/7/2025
3.0.529 3,688 4/7/2025
3.0.528 1,281 4/7/2025
3.0.527 3,095 4/7/2025
3.0.526 8,170 4/7/2025
3.0.525 2,423 4/7/2025
3.0.524 631 4/7/2025
3.0.523 9,318 4/7/2025
3.0.522 1,926 4/7/2025
3.0.521 3,308 4/6/2025
3.0.520 265 4/6/2025
3.0.519 1,517 4/6/2025
3.0.518 1,891 4/6/2025
3.0.517 2,236 4/6/2025
3.0.516 122 4/6/2025
3.0.515 402 4/6/2025
3.0.514 132 4/6/2025
3.0.513 497 4/5/2025
3.0.512 3,129 4/5/2025
3.0.511 1,473 4/5/2025
3.0.510 1,132 4/5/2025
3.0.509 182 4/5/2025
3.0.508 237 4/5/2025
3.0.507 280 4/5/2025
3.0.506 2,903 4/4/2025
3.0.505 145 4/4/2025
3.0.504 3,034 4/4/2025
3.0.503 37,254 4/4/2025
3.0.502 8,268 4/1/2025
3.0.501 4,548 4/1/2025
3.0.500 6,459 3/31/2025
3.0.499 2,846 3/31/2025
3.0.498 6,518 3/31/2025
3.0.497 7,842 3/29/2025
3.0.496 2,095 3/29/2025
3.0.495 6,508 3/27/2025
3.0.494 4,385 3/25/2025
3.0.493 1,761 3/25/2025
3.0.492 10,620 3/21/2025
3.0.491 10,760 3/18/2025
3.0.490 4,936 3/18/2025
3.0.489 7,378 3/15/2025
3.0.488 2,307 3/15/2025
3.0.487 8,368 3/12/2025
3.0.486 3,153 3/12/2025
3.0.485 526 3/12/2025
3.0.484 3,155 3/11/2025
3.0.483 400 3/11/2025
3.0.482 1,290 3/11/2025
3.0.481 2,358 3/11/2025
3.0.480 3,503 3/11/2025
3.0.479 3,209 3/11/2025
3.0.478 2,035 3/11/2025
3.0.477 12,339 3/7/2025
3.0.476 3,677 3/7/2025
3.0.475 7,441 3/2/2025
3.0.474 2,719 3/2/2025
3.0.473 684 3/2/2025
3.0.472 5,178 3/2/2025
3.0.471 4,742 3/1/2025
3.0.470 254 3/1/2025
3.0.469 4,491 3/1/2025
3.0.468 123 3/1/2025
3.0.467 1,675 3/1/2025
3.0.466 12,738 2/26/2025
3.0.465 1,136 2/25/2025
3.0.464 3,105 2/25/2025
3.0.463 2,034 2/25/2025
3.0.462 1,039 2/25/2025
3.0.461 11,667 2/23/2025
3.0.460 2,107 2/22/2025
3.0.459 9,301 2/22/2025
3.0.458 2,707 2/22/2025
3.0.457 3,272 2/22/2025
3.0.456 545 2/21/2025
3.0.455 5,251 2/21/2025
3.0.454 11,563 2/19/2025
3.0.453 4,866 2/18/2025
3.0.452 1,071 2/18/2025
3.0.451 440 2/18/2025
3.0.450 5,729 2/18/2025
3.0.449 121 2/18/2025
3.0.448 13,375 2/14/2025
3.0.447 1,401 2/14/2025
3.0.446 3,854 2/13/2025
3.0.445 4,719 2/13/2025
3.0.444 5,440 2/12/2025
3.0.443 1,697 2/12/2025
3.0.442 750 2/12/2025
3.0.441 2,142 2/12/2025
3.0.440 758 2/12/2025
3.0.439 521 2/11/2025
3.0.438 7,875 2/11/2025
3.0.437 2,677 2/11/2025
3.0.436 465 2/11/2025
3.0.435 2,613 2/10/2025
3.0.434 133 2/10/2025
3.0.433 1,774 2/10/2025
3.0.432 136 2/10/2025
3.0.431 13,802 2/9/2025
3.0.430 7,994 2/9/2025
3.0.429 375 2/9/2025
3.0.428 287 2/8/2025
3.0.427 236 2/8/2025
3.0.426 298 2/8/2025
3.0.425 8,302 2/8/2025
3.0.424 2,738 2/7/2025
3.0.423 1,941 2/7/2025
3.0.422 2,478 2/7/2025
3.0.421 131 2/7/2025
3.0.420 429 2/7/2025
3.0.419 129 2/7/2025
3.0.418 1,994 2/7/2025
3.0.417 129 2/7/2025
3.0.416 14,599 2/7/2025
3.0.415 7,172 2/5/2025
3.0.414 857 2/5/2025
3.0.413 1,185 2/5/2025
3.0.412 274 2/5/2025
3.0.411 2,554 2/5/2025
3.0.410 5,375 2/5/2025
3.0.409 12,313 1/28/2025
3.0.408 863 1/28/2025
3.0.407 281 1/28/2025
3.0.406 2,661 1/28/2025
3.0.405 5,525 1/27/2025
3.0.404 1,580 1/27/2025
3.0.403 119 1/27/2025
3.0.402 5,391 1/27/2025
3.0.401 115 1/27/2025
3.0.400 6,162 1/26/2025
3.0.399 1,309 1/26/2025
3.0.398 1,007 1/26/2025
3.0.397 556 1/26/2025
3.0.396 273 1/26/2025
3.0.395 2,760 1/25/2025
3.0.394 5,919 1/25/2025
3.0.393 4,314 1/25/2025
3.0.392 462 1/25/2025
3.0.391 10,802 1/24/2025
3.0.390 2,003 1/24/2025
3.0.389 3,507 1/24/2025
3.0.388 4,093 1/24/2025
3.0.387 957 1/23/2025
3.0.386 1,180 1/23/2025
3.0.385 167 1/23/2025
3.0.384 9,617 1/22/2025
3.0.383 1,260 1/21/2025
3.0.382 394 1/21/2025
3.0.381 1,219 1/21/2025
3.0.380 1,183 1/21/2025
3.0.379 1,356 1/21/2025
3.0.378 1,042 1/21/2025
3.0.377 1,387 1/21/2025
3.0.376 130 1/21/2025
3.0.375 6,210 1/21/2025
3.0.374 1,777 1/21/2025
3.0.373 1,531 1/21/2025
3.0.372 2,670 1/21/2025
3.0.371 214 1/20/2025
3.0.370 6,971 1/20/2025
3.0.369 276 1/20/2025
3.0.368 1,467 1/20/2025
3.0.367 119 1/20/2025
3.0.366 1,384 1/20/2025
3.0.365 141 1/20/2025
3.0.364 4,267 1/19/2025
3.0.363 6,656 1/19/2025
3.0.362 6,450 1/19/2025
3.0.361 2,203 1/19/2025
3.0.360 648 1/19/2025
3.0.359 3,655 1/18/2025
3.0.358 163 1/18/2025
3.0.357 3,569 1/18/2025
3.0.356 288 1/18/2025
3.0.355 1,037 1/18/2025
3.0.354 6,413 1/17/2025
3.0.353 156 1/17/2025
3.0.352 8,306 1/16/2025
3.0.351 4,583 1/16/2025
3.0.350 866 1/16/2025
3.0.349 5,169 1/15/2025
3.0.348 4,429 1/15/2025
3.0.347 3,748 1/15/2025
3.0.346 3,947 1/15/2025
3.0.345 2,324 1/15/2025
3.0.344 3,073 1/15/2025
3.0.343 825 1/15/2025
3.0.342 2,469 1/14/2025
3.0.341 436 1/14/2025
3.0.340 153 1/14/2025
3.0.339 3,489 1/14/2025
3.0.338 966 1/14/2025
3.0.337 110 1/14/2025
3.0.336 1,261 1/14/2025
3.0.335 375 1/14/2025
3.0.334 7,146 1/13/2025
3.0.333 1,610 1/13/2025
3.0.332 3,036 1/13/2025
3.0.331 6,102 1/11/2025
3.0.330 2,545 1/11/2025
3.0.329 2,807 1/10/2025
3.0.328 5,597 1/10/2025
3.0.327 135 1/10/2025
3.0.326 534 1/10/2025
3.0.325 126 1/10/2025
3.0.324 130 1/10/2025
3.0.323 9,010 1/3/2025
3.0.322 1,065 1/3/2025
3.0.321 1,336 1/3/2025
3.0.320 433 1/3/2025
3.0.319 1,503 1/3/2025
3.0.318 3,323 1/2/2025
3.0.317 141 1/2/2025
3.0.316 2,305 1/2/2025
3.0.315 148 1/2/2025
3.0.314 3,065 1/2/2025
3.0.313 151 1/2/2025
3.0.312 9,906 1/1/2025
3.0.311 141 1/1/2025
3.0.310 186 12/31/2024
3.0.309 150 12/31/2024
3.0.308 3,597 12/31/2024
3.0.307 139 12/31/2024
3.0.306 216 12/31/2024
3.0.305 711 12/31/2024
3.0.304 144 12/31/2024
3.0.303 1,106 12/31/2024
3.0.302 418 12/31/2024
3.0.301 6,448 12/31/2024
3.0.300 4,556 12/31/2024
3.0.299 1,061 12/31/2024
3.0.298 3,307 12/31/2024
3.0.297 2,514 12/31/2024
3.0.296 136 12/31/2024
3.0.295 142 12/31/2024
3.0.294 11,609 12/28/2024
3.0.293 1,972 12/28/2024
3.0.292 1,135 12/28/2024
3.0.291 1,366 12/27/2024
3.0.290 8,504 12/24/2024
3.0.289 1,865 12/24/2024
3.0.288 1,809 12/24/2024
3.0.287 2,542 12/24/2024
3.0.286 2,728 12/24/2024
3.0.285 2,160 12/24/2024
3.0.284 1,788 12/24/2024
3.0.283 1,416 12/23/2024
3.0.282 2,973 12/23/2024
3.0.281 3,408 12/23/2024
3.0.280 1,357 12/23/2024
3.0.279 3,818 12/23/2024
3.0.278 329 12/23/2024
3.0.277 3,650 12/22/2024
3.0.276 5,768 12/22/2024
3.0.275 5,794 12/22/2024
3.0.274 7,826 12/21/2024
3.0.273 479 12/21/2024
3.0.272 3,848 12/21/2024
3.0.271 4,979 12/21/2024
3.0.270 1,095 12/21/2024
3.0.269 5,948 12/20/2024
3.0.268 11,617 12/18/2024
3.0.267 183 12/18/2024
3.0.266 7,608 12/17/2024
3.0.265 6,169 12/17/2024
3.0.264 404 12/16/2024
3.0.263 1,149 12/16/2024
3.0.262 8,182 12/10/2024
3.0.261 2,297 12/9/2024
3.0.260 3,732 12/9/2024
3.0.259 2,542 12/9/2024
3.0.258 7,055 12/6/2024
3.0.257 1,354 12/6/2024
3.0.256 2,341 12/6/2024
3.0.255 7,173 12/6/2024
3.0.254 228 12/6/2024
3.0.253 366 12/6/2024
3.0.252 1,033 12/6/2024
3.0.251 5,690 12/6/2024
3.0.250 158 12/6/2024
3.0.249 145 12/6/2024
3.0.248 4,521 12/5/2024
3.0.247 4,517 12/5/2024
3.0.246 3,458 12/5/2024
3.0.245 4,122 12/5/2024
3.0.244 621 12/5/2024
3.0.243 538 12/5/2024
3.0.242 5,221 12/4/2024
3.0.241 503 12/4/2024
3.0.240 1,154 12/4/2024
3.0.239 3,636 12/4/2024
3.0.238 3,839 12/3/2024
3.0.237 2,887 12/3/2024
3.0.236 3,650 12/3/2024
3.0.235 3,446 12/3/2024
3.0.234 4,756 12/2/2024
3.0.233 3,921 12/2/2024
3.0.232 2,414 12/2/2024
3.0.231 459 12/2/2024
3.0.230 4,342 12/1/2024
3.0.229 1,025 12/1/2024
3.0.228 3,186 12/1/2024
3.0.227 4,122 12/1/2024
3.0.226 4,329 11/29/2024
3.0.225 7,738 11/21/2024
3.0.224 6,243 11/20/2024
3.0.223 699 11/20/2024
3.0.222 1,178 11/20/2024
3.0.221 599 11/19/2024
3.0.220 5,711 11/19/2024
3.0.219 2,351 11/19/2024
3.0.218 129 11/19/2024
3.0.217 3,857 11/19/2024
3.0.216 122 11/19/2024
3.0.215 10,650 11/14/2024
3.0.214 1,198 11/14/2024
3.0.213 4,136 11/14/2024
3.0.212 1,011 11/14/2024
3.0.211 614 11/14/2024
3.0.210 4,381 11/14/2024
3.0.209 125 11/14/2024
3.0.208 3,480 11/14/2024
3.0.207 218 11/14/2024
2.1.206 12,678 11/13/2024
2.1.205 5,047 11/13/2024
2.1.204 12,161 11/9/2024
2.1.203 875 11/9/2024
2.1.202 2,198 11/9/2024
2.1.201 1,304 11/8/2024
2.1.200 1,109 11/8/2024
2.1.199 133 11/8/2024
2.1.198 1,952 11/8/2024
2.1.197 285 11/8/2024
2.1.196 4,661 11/8/2024
2.1.195 6,075 11/8/2024
2.1.194 13,391 11/1/2024
2.1.192 9,686 10/29/2024
2.1.191 10,424 10/28/2024
2.1.190 6,640 10/26/2024
2.1.189 11,480 10/22/2024
2.1.188 1,516 10/22/2024
2.1.187 1,090 10/22/2024
2.1.186 8,584 10/17/2024
2.1.185 6,239 10/15/2024
2.1.184 2,381 10/14/2024
2.1.183 6,919 10/11/2024
2.1.182 976 10/11/2024
2.1.181 589 10/11/2024
2.1.180 11,129 10/9/2024
2.1.179 942 10/8/2024
2.1.178 5,556 10/8/2024
2.1.177 875 10/8/2024
2.1.176 12,593 10/3/2024
2.1.175 3,765 10/3/2024
2.1.174 9,117 10/2/2024
2.1.173 2,752 10/2/2024
2.1.172 6,708 10/1/2024
2.1.171 1,829 10/1/2024
2.1.170 2,769 10/1/2024
2.1.169 7,777 9/29/2024
2.1.168 2,249 9/29/2024
2.1.167 1,659 9/29/2024
2.1.166 9,526 9/27/2024
2.1.165 5,315 9/27/2024
2.1.164 128 9/27/2024
2.1.163 325 9/27/2024
2.1.162 129 9/27/2024
2.1.161 7,969 9/26/2024
2.1.160 7,613 9/26/2024
2.1.159 7,024 9/26/2024
2.1.158 7,211 9/23/2024
2.1.157 3,339 9/23/2024
2.1.156 1,978 9/23/2024
2.1.155 2,055 9/23/2024
2.1.154 6,591 9/23/2024
2.1.153 757 9/23/2024
2.1.152 917 9/23/2024
2.1.151 117 9/23/2024
2.1.150 2,399 9/23/2024
2.1.149 12,189 9/17/2024
2.1.148 128 9/17/2024
2.1.147 446 9/17/2024
2.1.146 4,867 9/17/2024
2.1.145 4,234 9/17/2024
2.1.144 5,520 9/17/2024
2.1.143 141 9/17/2024
2.1.142 544 9/17/2024
2.1.141 1,273 9/17/2024
2.1.140 13,504 9/16/2024
2.1.139 7,668 9/12/2024
2.1.138 5,172 9/11/2024
2.1.137 3,121 9/11/2024
2.1.136 6,013 9/11/2024
2.1.135 4,954 9/11/2024
2.1.134 11,229 9/10/2024
2.1.133 2,380 9/10/2024
2.1.132 3,774 9/9/2024
2.1.131 4,159 9/9/2024
2.1.130 2,642 9/9/2024
2.1.129 1,271 9/9/2024
2.1.128 128 9/9/2024
2.1.127 136 9/9/2024
2.1.126 132 9/9/2024
2.1.125 16,875 9/6/2024
2.1.124 6,606 9/6/2024
2.1.123 3,429 9/5/2024
2.1.122 2,068 9/5/2024
2.1.121 4,169 9/5/2024
2.1.120 2,282 9/5/2024
2.1.119 133 9/5/2024
2.1.118 1,670 9/5/2024
2.1.117 5,945 9/5/2024
2.1.116 1,430 9/4/2024
2.1.115 12,151 9/3/2024
2.1.114 1,244 9/3/2024
2.1.113 4,982 9/3/2024
2.1.112 9,616 8/29/2024
2.1.111 6,807 8/26/2024
2.1.110 6,763 8/21/2024
2.1.109 3,857 8/21/2024
2.1.108 472 8/20/2024
2.1.107 4,773 8/20/2024
2.1.106 138 8/20/2024
2.1.105 4,859 8/20/2024
2.1.104 2,969 8/20/2024
2.1.103 9,132 8/15/2024
2.1.102 8,252 8/13/2024
2.1.101 7,925 8/6/2024
2.1.100 9,254 8/1/2024
2.1.99 597 8/1/2024
2.1.98 8,736 7/25/2024
2.1.97 1,095 7/25/2024
2.1.96 1,014 7/25/2024
2.1.95 671 7/24/2024
2.1.94 242 7/24/2024
2.1.93 9,804 7/20/2024
2.1.92 8,284 7/14/2024
2.1.91 2,274 7/14/2024
2.1.90 6,881 7/10/2024
2.1.89 259 7/10/2024
2.1.88 2,201 7/10/2024
2.1.87 2,074 7/10/2024
2.1.86 254 7/10/2024
2.1.85 260 7/10/2024
2.1.83 2,153 7/10/2024
2.1.82 3,263 7/9/2024
2.1.80 867 7/9/2024
2.1.79 1,282 7/9/2024
2.1.78 7,768 7/9/2024
2.1.77 3,106 7/9/2024
2.1.76 13,318 7/9/2024
2.1.75 149 7/9/2024
2.1.74 166 7/8/2024
2.1.73 143 7/8/2024
2.1.72 2,547 7/8/2024
2.1.71 126 7/8/2024
2.1.70 6,993 7/8/2024
2.1.69 2,318 7/7/2024
2.1.68 2,621 7/7/2024
2.1.67 702 7/7/2024
2.1.66 1,366 7/7/2024
2.1.65 3,090 7/7/2024
2.1.64 2,754 7/7/2024
2.1.63 136 7/7/2024
2.1.62 3,667 7/5/2024
2.1.61 73,422 5/25/2024
2.1.60 141 5/25/2024
2.1.59 557 5/25/2024
2.1.58 14,055 5/22/2024
2.1.57 144 5/22/2024
2.1.56 11,547 5/17/2024
2.1.55 15,993 4/30/2024
2.1.54 16,022 4/28/2024
2.1.53 142 4/28/2024
2.1.52 708 4/27/2024
2.1.51 133 4/27/2024
2.1.50 25,147 4/12/2024
2.1.49 1,391 4/12/2024
2.1.48 149 4/12/2024
2.1.47 39,561 3/18/2024
2.1.46 8,828 3/13/2024
2.1.45 2,314 3/13/2024
2.1.44 61,395 2/21/2024
2.1.43 2,767 2/21/2024
2.1.42 141 2/21/2024
2.1.41 21,931 2/16/2024
2.1.40 676 2/16/2024
2.1.39 24,003 2/9/2024
2.1.38 19,020 2/6/2024
2.1.37 151 2/6/2024
2.1.36 62,989 1/15/2024
2.1.35 867 1/15/2024
2.1.34 26,224 1/5/2024
2.1.33 2,484 1/5/2024
2.1.32 13,445 12/27/2023
2.1.31 1,373 12/27/2023
2.1.30 1,117 12/27/2023
2.1.29 7,912 12/25/2023
2.1.28 1,461 12/25/2023
2.1.27 717 12/25/2023
2.1.26 10,608 12/23/2023
2.1.25 168 12/23/2023
2.1.24 839 12/23/2023
2.1.23 20,824 12/9/2023
2.1.22 1,377 12/9/2023
2.1.21 278 12/9/2023
2.1.20 1,958 12/9/2023
2.1.19 10,902 12/4/2023
2.1.18 847 12/4/2023
2.1.17 5,483 11/26/2023
2.1.16 5,448 11/23/2023
2.1.15 362 11/23/2023
2.1.14 984 11/23/2023
2.1.13 9,480 11/19/2023
2.1.12 160 11/19/2023
2.1.11 1,218 11/18/2023
2.1.10 3,449 11/18/2023
2.1.9 1,969 11/18/2023
2.1.8 3,714 11/17/2023
2.1.7 1,102 11/17/2023
2.1.6 1,737 11/17/2023
2.1.5 904 11/17/2023
2.1.4 679 11/16/2023
2.1.3 206 11/16/2023
2.0.52 1,272 11/15/2023
2.0.51 2,164 11/15/2023
2.0.2 156 11/16/2023
2.0.1 167 11/16/2023
1.0.50 4,135 11/11/2023
1.0.49 147 11/11/2023
1.0.48 131 11/11/2023
1.0.47 1,363 11/9/2023
1.0.46 152 11/9/2023
1.0.45 5,258 11/6/2023
1.0.44 2,254 11/3/2023
1.0.43 1,838 11/2/2023
1.0.42 1,916 11/1/2023
1.0.41 7,580 10/18/2023
1.0.40 3,050 10/17/2023
1.0.39 1,265 10/16/2023
1.0.38 2,721 10/13/2023
1.0.37 190 10/13/2023
1.0.36 6,202 9/19/2023
1.0.35 2,099 9/18/2023
1.0.34 164 9/18/2023
1.0.33 7,736 8/30/2023
1.0.32 2,748 8/29/2023
1.0.31 4,213 8/24/2023
1.0.30 183 8/24/2023
1.0.29 4,388 8/17/2023
1.0.28 212 8/17/2023
1.0.27 8,080 8/7/2023
1.0.26 211 8/7/2023
1.0.25 8,033 7/10/2023
1.0.24 10,435 7/7/2023
1.0.23 208 7/7/2023
1.0.22 9,390 6/28/2023
1.0.21 44,650 5/24/2023
1.0.20 1,174 5/24/2023
1.0.19 456 5/23/2023
1.0.18 236 5/31/2023
1.0.17 2,803 5/23/2023
1.0.16 2,991 5/22/2023
1.0.15 6,015 5/17/2023
1.0.14 228 5/17/2023
1.0.13 5,650 4/28/2023
1.0.12 2,258 4/24/2023
1.0.11 1,018 4/21/2023
1.0.10 4,534 4/12/2023
1.0.9 1,116 4/11/2023
1.0.8 2,080 4/3/2023
1.0.7 279 4/3/2023
1.0.6 415 4/1/2023
1.0.5 2,086 3/23/2023
1.0.3 595 2/28/2023
1.0.2 501 2/16/2023