TUnit.Playwright 0.85.0

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package TUnit.Playwright --version 0.85.0
                    
NuGet\Install-Package TUnit.Playwright -Version 0.85.0
                    
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="TUnit.Playwright" Version="0.85.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TUnit.Playwright" Version="0.85.0" />
                    
Directory.Packages.props
<PackageReference Include="TUnit.Playwright" />
                    
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 TUnit.Playwright --version 0.85.0
                    
#r "nuget: TUnit.Playwright, 0.85.0"
                    
#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 TUnit.Playwright@0.85.0
                    
#: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=TUnit.Playwright&version=0.85.0
                    
Install as a Cake Addin
#tool nuget:?package=TUnit.Playwright&version=0.85.0
                    
Install as a Cake Tool

alternate text is missing from this package README image

🚀 The Modern Testing Framework for .NET

TUnit is a modern testing framework for .NET that uses source-generated tests, parallel execution by default, and Native AOT support. Built on Microsoft.Testing.Platform, it's faster than traditional reflection-based frameworks and gives you more control over how your tests run.

<div align="center">

thomhurst%2FTUnit | Trendshift

Codacy BadgeGitHub Repo stars GitHub Issues or Pull Requests GitHub Sponsors nuget NuGet Downloads GitHub Workflow Status (with event) GitHub last commit (branch) License

</div>

Why TUnit?

Feature Traditional Frameworks TUnit
Test Discovery ❌ Runtime reflection Compile-time generation
Execution Speed ❌ Sequential by default Parallel by default
Modern .NET ⚠️ Limited AOT support Native AOT & trimming
Test Dependencies ❌ Not supported [DependsOn] chains
Resource Management ❌ Manual lifecycle Automatic cleanup

Parallel by Default - Tests run concurrently with dependency management

Compile-Time Discovery - Test structure is known before runtime

Modern .NET Ready - Native AOT, trimming, and latest .NET features

Extensible - Customize data sources, attributes, and test behavior


<div align="center">

Documentation

New to TUnit? Start with the Getting Started Guide

Migrating? See the Migration Guides

Learn more: Data-Driven Testing, Test Dependencies, Parallelism Control

</div>


Quick Start

dotnet new install TUnit.Templates
dotnet new TUnit -n "MyTestProject"

Manual Installation

dotnet add package TUnit --prerelease

📖 Complete Documentation & Guides

Key Features

<table> <tr> <td width="50%">

Performance

  • Source-generated tests (no reflection)
  • Parallel execution by default
  • Native AOT & trimming support
  • Optimized for speed

</td> <td width="50%">

Test Control

  • Test dependencies with [DependsOn]
  • Parallel limits & custom scheduling
  • Built-in analyzers & compile-time checks
  • Custom attributes & extensible conditions

</td> </tr> <tr> <td>

Data & Assertions

  • Multiple data sources ([Arguments], [Matrix], [ClassData])
  • Fluent async assertions
  • Retry logic & conditional execution
  • Test metadata & context

</td> <td>

Developer Tools

  • Full dependency injection support
  • Lifecycle hooks
  • IDE integration (VS, Rider, VS Code)
  • Documentation & examples

</td> </tr> </table>

Simple Test Example

[Test]
public async Task User_Creation_Should_Set_Timestamp()
{
    // Arrange
    var userService = new UserService();

    // Act
    var user = await userService.CreateUserAsync("john.doe@example.com");

    // Assert - TUnit's fluent assertions
    await Assert.That(user.CreatedAt)
        .IsEqualTo(DateTime.Now)
        .Within(TimeSpan.FromMinutes(1));

    await Assert.That(user.Email)
        .IsEqualTo("john.doe@example.com");
}

Data-Driven Testing

[Test]
[Arguments("user1@test.com", "ValidPassword123")]
[Arguments("user2@test.com", "AnotherPassword456")]
[Arguments("admin@test.com", "AdminPass789")]
public async Task User_Login_Should_Succeed(string email, string password)
{
    var result = await authService.LoginAsync(email, password);
    await Assert.That(result.IsSuccess).IsTrue();
}

// Matrix testing - tests all combinations
[Test]
[MatrixDataSource]
public async Task Database_Operations_Work(
    [Matrix("Create", "Update", "Delete")] string operation,
    [Matrix("User", "Product", "Order")] string entity)
{
    await Assert.That(await ExecuteOperation(operation, entity))
        .IsTrue();
}

Advanced Test Orchestration

[Before(Class)]
public static async Task SetupDatabase(ClassHookContext context)
{
    await DatabaseHelper.InitializeAsync();
}

[Test, DisplayName("Register a new account")]
[MethodDataSource(nameof(GetTestUsers))]
public async Task Register_User(string username, string password)
{
    // Test implementation
}

[Test, DependsOn(nameof(Register_User))]
[Retry(3)] // Retry on failure
public async Task Login_With_Registered_User(string username, string password)
{
    // This test runs after Register_User completes
}

[Test]
[ParallelLimit<LoadTestParallelLimit>] // Custom parallel control
[Repeat(100)] // Run 100 times
public async Task Load_Test_Homepage()
{
    // Performance testing
}

// Custom attributes
[Test, WindowsOnly, RetryOnHttpError(5)]
public async Task Windows_Specific_Feature()
{
    // Platform-specific test with custom retry logic
}

public class LoadTestParallelLimit : IParallelLimit
{
    public int Limit => 10; // Limit to 10 concurrent executions
}

Custom Test Control

// Custom conditional execution
public class WindowsOnlyAttribute : SkipAttribute
{
    public WindowsOnlyAttribute() : base("Windows only test") { }

    public override Task<bool> ShouldSkip(TestContext testContext)
        => Task.FromResult(!OperatingSystem.IsWindows());
}

// Custom retry logic
public class RetryOnHttpErrorAttribute : RetryAttribute
{
    public RetryOnHttpErrorAttribute(int times) : base(times) { }

    public override Task<bool> ShouldRetry(TestInformation testInformation,
        Exception exception, int currentRetryCount)
        => Task.FromResult(exception is HttpRequestException { StatusCode: HttpStatusCode.ServiceUnavailable });
}

Common Use Cases

<table> <tr> <td width="33%">

Unit Testing

[Test]
[Arguments(1, 2, 3)]
[Arguments(5, 10, 15)]
public async Task Calculate_Sum(int a, int b, int expected)
{
    await Assert.That(Calculator.Add(a, b))
        .IsEqualTo(expected);
}

</td> <td width="33%">

Integration Testing

[Test, DependsOn(nameof(CreateUser))]
public async Task Login_After_Registration()
{
    // Runs after CreateUser completes
    var result = await authService.Login(user);
    await Assert.That(result.IsSuccess).IsTrue();
}

</td> <td width="33%">

Load Testing

[Test]
[ParallelLimit<LoadTestLimit>]
[Repeat(1000)]
public async Task API_Handles_Concurrent_Requests()
{
    await Assert.That(await httpClient.GetAsync("/api/health"))
        .HasStatusCode(HttpStatusCode.OK);
}

</td> </tr> </table>

What Makes TUnit Different?

Compile-Time Test Discovery

Tests are discovered at build time, not runtime. This means faster discovery, better IDE integration, and more predictable resource management.

Parallel by Default

Tests run in parallel by default. Use [DependsOn] to chain tests together, and [ParallelLimit] to control resource usage.

Extensible

The DataSourceGenerator<T> pattern and custom attribute system let you extend TUnit without modifying the framework.

Community & Ecosystem

<div align="center">

Downloads Contributors Discussions

</div>

Resources

IDE Support

TUnit works with all major .NET IDEs:

Visual Studio (2022 17.13+)

Fully supported - No additional configuration needed for latest versions

⚙️ Earlier versions: Enable "Use testing platform server mode" in Tools > Manage Preview Features

JetBrains Rider

Fully supported

⚙️ Setup: Enable "Testing Platform support" in Settings > Build, Execution, Deployment > Unit Testing > Testing Platform

Visual Studio Code

Fully supported

⚙️ Setup: Install C# Dev Kit and enable "Use Testing Platform Protocol"

Command Line

Full CLI support - Works with dotnet test, dotnet run, and direct executable execution

Package Options

Package Use Case
TUnit Start here - Complete testing framework (includes Core + Engine + Assertions)
TUnit.Core Test libraries and shared components (no execution engine)
TUnit.Engine Test execution engine and adapter (for test projects)
TUnit.Assertions Standalone assertions (works with any test framework)
TUnit.Playwright Playwright integration with automatic lifecycle management

Migration from Other Frameworks

Coming from NUnit or xUnit? TUnit uses familiar syntax with some additions:

// TUnit test with dependency management and retries
[Test]
[Arguments("value1")]
[Arguments("value2")]
[Retry(3)]
[ParallelLimit<CustomLimit>]
public async Task Modern_TUnit_Test(string value) { }

📖 Need help migrating? Check our Migration Guides for xUnit, NUnit, and MSTest.

Current Status

The API is mostly stable, but may have some changes based on feedback before the v1.0 release.


<div align="center">

Getting Started

# Create a new test project
dotnet new install TUnit.Templates && dotnet new TUnit -n "MyTestProject"

# Or add to existing project
dotnet add package TUnit --prerelease

Learn More: tunit.dev | Get Help: GitHub Discussions | Star on GitHub: github.com/thomhurst/TUnit

</div>

Performance Benchmark

Scenario: Building the test project


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.73GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
Build_TUnit 0.78.0 1.777 s 0.0332 s 0.0341 s 1.765 s
Build_NUnit 4.4.0 1.582 s 0.0152 s 0.0143 s 1.577 s
Build_MSTest 4.0.1 1.667 s 0.0137 s 0.0128 s 1.668 s
Build_xUnit3 3.1.0 1.570 s 0.0101 s 0.0090 s 1.569 s

Scenario: Tests running asynchronous operations and async/await patterns


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
TUnit 0.78.0 452.17 ms 3.388 ms 2.829 ms 452.69 ms
NUnit 4.4.0 565.57 ms 9.621 ms 8.528 ms 567.10 ms
MSTest 4.0.1 578.39 ms 11.254 ms 12.960 ms 574.71 ms
xUnit3 3.1.0 522.50 ms 4.072 ms 3.610 ms 522.72 ms
TUnit_AOT 0.78.0 24.35 ms 0.406 ms 0.380 ms 24.34 ms

Scenario: Parameterized tests with multiple test cases using data attributes


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 3.23GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
TUnit 0.78.0 497.97 ms 9.414 ms 10.073 ms 496.53 ms
NUnit 4.4.0 616.29 ms 8.142 ms 7.218 ms 613.56 ms
MSTest 4.0.1 631.89 ms 8.377 ms 6.995 ms 630.92 ms
xUnit3 3.1.0 549.54 ms 5.447 ms 4.829 ms 548.19 ms
TUnit_AOT 0.78.0 24.02 ms 0.201 ms 0.157 ms 24.04 ms

Scenario: Tests executing massively parallel workloads with CPU-bound, I/O-bound, and mixed operations


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
Intel Xeon Platinum 8370C CPU 2.80GHz (Max: 2.62GHz), 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v4
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v4

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
TUnit 0.78.0 439.78 ms 3.590 ms 2.998 ms 440.24 ms
NUnit 4.4.0 579.16 ms 10.529 ms 9.334 ms 576.13 ms
MSTest 4.0.1 592.15 ms 11.068 ms 9.242 ms 592.37 ms
xUnit3 3.1.0 541.26 ms 3.818 ms 3.385 ms 541.16 ms
TUnit_AOT 0.78.0 29.11 ms 0.289 ms 0.256 ms 29.09 ms

Scenario: Tests with complex parameter combinations creating 25-125 test variations


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.77GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
TUnit 0.78.0 477.67 ms 5.540 ms 5.182 ms 477.54 ms
NUnit 4.4.0 603.24 ms 9.112 ms 7.609 ms 603.63 ms
MSTest 4.0.1 618.86 ms 9.034 ms 7.544 ms 618.20 ms
xUnit3 3.1.0 541.77 ms 4.720 ms 4.184 ms 542.61 ms
TUnit_AOT 0.78.0 28.99 ms 0.374 ms 0.331 ms 28.99 ms

Scenario: Large-scale parameterized tests with 100+ test cases testing framework scalability


BenchmarkDotNet v0.15.4, Linux Ubuntu 24.04.3 LTS (Noble Numbat)
AMD EPYC 7763 2.45GHz, 1 CPU, 4 logical and 2 physical cores
.NET SDK 10.0.100-rc.2.25502.107
  [Host]    : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3
  RyuJitX64 : .NET 10.0.0 (10.0.0-rc.2.25502.107, 10.0.25.50307), X64 RyuJIT x86-64-v3

Job=RyuJitX64  Jit=RyuJit  Platform=X64  
PowerPlanMode=00000000-0000-0000-0000-000000000000  Runtime=.NET 10.0  Concurrent=True  
Server=True  

Method Version Mean Error StdDev Median
TUnit 0.78.0 478.45 ms 5.465 ms 4.844 ms 478.34 ms
NUnit 4.4.0 585.18 ms 10.662 ms 10.471 ms 583.94 ms
MSTest 4.0.1 569.01 ms 11.041 ms 15.114 ms 568.46 ms
xUnit3 3.1.0 508.09 ms 5.421 ms 4.806 ms 508.19 ms
TUnit_AOT 0.78.0 46.62 ms 1.520 ms 4.481 ms 47.06 ms
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 was computed.  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 is compatible.  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 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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.86.0 0 10/30/2025
0.85.1 0 10/29/2025
0.85.0 0 10/29/2025
0.81.7 64 10/29/2025
0.81.0 71 10/29/2025
0.80.0 138 10/28/2025
0.79.0 75 10/28/2025
0.78.0 206 10/28/2025
0.77.10 169 10/27/2025
0.77.3 157 10/27/2025
0.77.0 86 10/26/2025
0.76.26 110 10/26/2025
0.76.18 159 10/25/2025
0.76.11 182 10/25/2025
0.76.7 225 10/24/2025
0.76.0 117 10/24/2025
0.75.30 517 10/23/2025
0.75.11 428 10/22/2025
0.75.5 197 10/22/2025
0.75.4 194 10/22/2025
0.75.0 260 10/21/2025
0.74.2 412 10/20/2025
0.74.0 177 10/20/2025
0.73.19 335 10/18/2025
0.73.14 176 10/17/2025
0.73.11 157 10/17/2025
0.73.4 394 10/16/2025
0.73.0 219 10/16/2025
0.72.0 318 10/15/2025
0.71.4 217 10/14/2025
0.71.0 185 10/14/2025
0.70.7 251 10/14/2025
0.70.4 215 10/14/2025
0.70.2 265 10/13/2025
0.70.0 184 10/13/2025
0.67.19 1,065 10/10/2025
0.67.10 710 10/8/2025
0.67.9 173 10/8/2025
0.67.4 315 10/7/2025
0.67.0 267 10/6/2025
0.66.13 279 10/6/2025
0.66.6 247 10/6/2025
0.66.0 221 10/5/2025
0.64.0 295 10/5/2025
0.63.3 543 10/2/2025
0.63.0 231 10/2/2025
0.61.58 759 9/29/2025
0.61.39 658 9/25/2025
0.61.38 199 9/25/2025
0.61.31 321 9/24/2025
0.61.25 265 9/23/2025
0.61.22 290 9/22/2025
0.61.13 492 9/21/2025
0.61.6 279 9/21/2025
0.61.2 243 9/20/2025
0.60.15 229 9/20/2025
0.60.1 462 9/19/2025
0.59.0 335 9/19/2025
0.58.3 486 9/18/2025
0.58.0 336 9/18/2025
0.57.65 1,070 9/10/2025
0.57.63 263 9/10/2025
0.57.24 1,198 8/30/2025
0.57.1 832 8/21/2025
0.57.0 189 8/21/2025
0.56.50 333 8/20/2025
0.56.44 421 8/18/2025
0.56.35 277 8/17/2025
0.56.5 1,036 8/14/2025
0.55.23 565 8/13/2025
0.55.21 268 8/13/2025
0.55.6 544 8/12/2025
0.55.0 295 8/11/2025
0.53.0 743 8/8/2025
0.52.64 332 8/7/2025
0.52.60 268 8/7/2025
0.52.56 321 8/7/2025
0.52.51 260 8/7/2025
0.52.49 309 8/7/2025
0.52.47 238 8/7/2025
0.52.30 394 8/6/2025
0.52.25 433 8/6/2025
0.52.24 258 8/6/2025
0.52.22 331 8/6/2025
0.52.8 343 8/6/2025
0.52.2 247 8/6/2025
0.52.0 247 8/6/2025
0.50.0 607 8/3/2025
0.25.21 4,183 6/10/2025
0.25.6 371 6/5/2025
0.25.0 290 6/5/2025
0.24.0 2,958 6/1/2025
0.23.5 233 6/1/2025
0.23.0 161 5/31/2025
0.22.31 165 5/30/2025
0.22.24 365 5/28/2025
0.22.20 309 5/27/2025
0.22.12 404 5/25/2025
0.22.10 272 5/25/2025
0.22.6 174 5/24/2025
0.22.0 403 5/22/2025
0.21.16 541 5/21/2025
0.21.13 287 5/20/2025
0.21.7 676 5/20/2025
0.21.1 342 5/19/2025
0.20.18 573 5/19/2025
0.20.16 286 5/18/2025
0.20.11 232 5/18/2025
0.20.4 184 5/17/2025
0.20.0 297 5/15/2025
0.19.148 1,059 5/12/2025
0.19.143 357 5/11/2025
0.19.140 279 5/10/2025
0.19.136 296 5/9/2025
0.19.116 933 5/2/2025
0.19.112 346 5/1/2025
0.19.86 1,399 4/18/2025
0.19.84 264 4/18/2025
0.19.82 387 4/16/2025
0.19.81 278 4/16/2025
0.19.74 606 4/13/2025
0.19.64 512 4/9/2025
0.19.52 455 4/7/2025
0.19.32 920 3/31/2025
0.19.24 404 3/27/2025
0.19.17 329 3/27/2025
0.19.14 248 3/27/2025
0.19.10 231 3/26/2025
0.19.6 529 3/26/2025
0.19.4 617 3/25/2025
0.19.2 573 3/25/2025
0.19.0 543 3/25/2025
0.18.60 357 3/22/2025
0.18.52 340 3/19/2025
0.18.45 293 3/18/2025
0.18.40 382 3/17/2025
0.18.33 383 3/16/2025
0.18.26 315 3/13/2025
0.18.24 233 3/13/2025
0.18.23 202 3/13/2025
0.18.21 251 3/13/2025
0.18.17 285 3/12/2025
0.18.16 217 3/12/2025
0.18.9 401 3/11/2025
0.18.0 286 3/11/2025
0.17.14 430 3/10/2025
0.17.11 281 3/10/2025
0.17.8 293 3/10/2025
0.17.3 362 3/9/2025
0.17.0 253 3/9/2025
0.16.56 343 3/8/2025
0.16.54 268 3/8/2025
0.16.50 276 3/8/2025
0.16.49 167 3/8/2025
0.16.47 267 3/8/2025
0.16.45 244 3/8/2025
0.16.42 234 3/8/2025
0.16.36 419 3/7/2025
0.16.28 487 3/6/2025
0.16.23 426 3/5/2025
0.16.22 293 3/5/2025
0.16.13 543 3/4/2025
0.16.11 328 3/4/2025
0.16.8 347 3/3/2025
0.16.6 269 3/3/2025
0.16.4 233 3/3/2025
0.16.3 184 3/3/2025
0.16.1 217 3/2/2025
0.15.30 426 2/28/2025
0.15.18 210 2/27/2025
0.15.3 401 2/27/2025
0.15.1 163 2/27/2025
0.14.17 182 2/26/2025
0.14.14 158 2/26/2025
0.14.13 160 2/26/2025
0.14.10 1,423 2/24/2025
0.14.6 911 2/22/2025
0.14.0 835 2/21/2025
0.13.25 161 2/20/2025
0.13.23 350 2/20/2025
0.13.20 277 2/19/2025
0.13.18 404 2/18/2025
0.13.15 347 2/18/2025
0.13.13 139 2/18/2025
0.13.9 375 2/17/2025
0.13.3 864 2/16/2025
0.13.0 264 2/15/2025
0.12.25 670 2/15/2025
0.12.23 306 2/14/2025
0.12.21 325 2/14/2025
0.12.17 328 2/13/2025
0.12.14 245 2/13/2025
0.12.13 214 2/13/2025
0.12.11 206 2/13/2025
0.12.6 523 2/12/2025
0.12.0 357 2/11/2025
0.11.0 699 2/8/2025
0.10.33 705 2/8/2025
0.10.28 705 2/6/2025
0.10.26 227 2/5/2025
0.10.24 371 2/5/2025
0.10.19 467 2/4/2025
0.10.6 530 2/3/2025
0.10.4 287 2/3/2025
0.10.1 277 2/2/2025
0.9.11 337 2/1/2025
0.9.8 471 2/1/2025
0.9.6 277 2/1/2025
0.9.2 592 1/31/2025
0.9.0 296 1/30/2025
0.8.12 242 1/29/2025
0.8.8 235 1/29/2025
0.8.7 150 1/29/2025
0.8.4 718 1/28/2025
0.8.2 228 1/28/2025
0.8.0 192 1/27/2025
0.7.24 266 1/27/2025
0.7.22 290 1/27/2025
0.7.19 239 1/26/2025
0.7.15 355 1/26/2025
0.7.9 445 1/24/2025
0.7.3 409 1/23/2025
0.7.0 572 1/23/2025
0.6.159 250 1/21/2025
0.6.156 204 1/21/2025
0.6.154 699 1/20/2025
0.6.151 502 1/19/2025
0.6.145 142 1/19/2025
0.6.143 138 1/19/2025
0.6.139 131 1/19/2025
0.6.137 148 1/18/2025
0.6.131 138 1/18/2025
0.6.127 233 1/18/2025
0.6.123 149 1/18/2025
0.6.121 161 1/17/2025
0.6.119 268 1/17/2025
0.6.117 148 1/16/2025
0.6.100 598 1/14/2025
0.6.89 791 1/12/2025
0.6.86 305 1/11/2025
0.6.81 371 1/10/2025
0.6.76 387 1/10/2025
0.6.72 257 1/10/2025
0.6.71 139 1/10/2025
0.6.62 440 1/9/2025
0.6.60 216 1/9/2025
0.6.59 135 1/9/2025
0.6.57 190 1/9/2025
0.6.55 304 1/9/2025
0.6.52 188 1/9/2025
0.6.51 138 1/9/2025
0.6.48 135 1/9/2025
0.6.43 516 1/8/2025
0.6.33 498 1/5/2025
0.6.15 231 12/30/2024
0.6.14 138 12/30/2024
0.6.11 150 12/29/2024
0.6.0 156 12/26/2024
0.5.32 131 12/24/2024
0.5.28 134 12/23/2024
0.5.22 149 12/20/2024
0.5.18 157 12/20/2024
0.5.15 148 12/19/2024
0.5.14 144 12/19/2024
0.5.6 429 12/16/2024
0.5.4 146 12/16/2024
0.5.1 147 12/16/2024
0.5.0 161 12/16/2024
0.4.105 160 12/12/2024
0.4.99 176 12/11/2024
0.4.95 266 12/10/2024
0.4.92 146 12/9/2024
0.4.86 158 12/7/2024
0.4.83 160 12/7/2024
0.4.74 670 12/4/2024
0.4.73 152 12/4/2024
0.4.71 151 12/4/2024
0.4.63 531 12/3/2024
0.4.60 283 12/3/2024
0.4.59 156 12/3/2024
0.4.56 147 12/2/2024
0.4.54 163 12/2/2024
0.4.51 160 12/2/2024
0.4.49 139 12/2/2024
0.4.45 138 12/1/2024
0.4.43 171 12/1/2024
0.4.31 140 11/30/2024
0.4.26 150 11/30/2024
0.4.14 133 11/29/2024
0.4.10 154 11/28/2024
0.4.1 214 11/24/2024
0.4.0 129 11/24/2024
0.3.43 159 11/22/2024
0.3.34 231 11/19/2024
0.3.31 219 11/18/2024
0.3.30 171 11/18/2024
0.3.29 156 11/18/2024
0.3.25 150 11/17/2024
0.3.20 151 11/17/2024
0.3.14 141 11/17/2024
0.3.12 156 11/16/2024
0.3.3 142 11/16/2024
0.3.0 159 11/16/2024
0.2.212 225 11/11/2024
0.2.210 161 11/11/2024
0.2.208 166 11/11/2024
0.2.206 164 11/11/2024
0.2.202 140 11/9/2024
0.2.195 148 11/6/2024
0.2.193 149 11/5/2024
0.2.191 133 11/5/2024
0.2.187 1,379 11/4/2024
0.2.185 132 11/4/2024
0.2.181 168 11/2/2024
0.2.180 147 11/2/2024
0.2.176 452 11/1/2024
0.2.175 187 11/1/2024
0.2.169 409 10/31/2024
0.2.168 188 10/31/2024
0.2.167 270 10/31/2024
0.2.164 319 10/31/2024
0.2.161 237 10/31/2024
0.2.145 400 10/30/2024
0.2.141 154 10/30/2024
0.2.131 188 10/29/2024
0.2.128 157 10/29/2024
0.2.126 158 10/29/2024
0.2.120 163 10/29/2024
0.2.119 151 10/29/2024
0.2.112 232 10/29/2024
0.2.107 202 10/29/2024
0.2.106 167 10/29/2024
0.2.105 178 10/29/2024
0.2.103 175 10/29/2024
0.2.100 178 10/29/2024
0.2.86 156 10/29/2024
0.2.85 149 10/28/2024
0.2.82 153 10/28/2024
0.2.80 194 10/28/2024