Stripe.net 47.3.0-beta.2

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

Stripe.net

NuGet Build Status Coverage Status

The official Stripe .NET library, supporting .NET Standard 2.0+, .NET Core 3.1+, and .NET Framework 4.6.1+.

Installation

Using the .NET Core command-line interface (CLI) tools:

dotnet add package Stripe.net

Using the NuGet Command Line Interface (CLI):

nuget install Stripe.net

Using the Package Manager Console:

Install-Package Stripe.net

From within Visual Studio:

  1. Open the Solution Explorer.
  2. Right-click on a project within your solution.
  3. Click on Manage NuGet Packages...
  4. Click on the Browse tab and search for "Stripe.net".
  5. Click on the Stripe.net package, select the appropriate version in the right-tab and click Install.

Documentation

For a comprehensive list of examples, check out the API documentation. See video demonstrations covering how to use the library.

Usage

Authentication

Stripe authenticates API requests using your account’s secret key, which you can find in the Stripe Dashboard. By default, secret keys can be used to perform any API request without restriction.

Use StripeConfiguration.ApiKey property to set the secret key.

StripeConfiguration.ApiKey = "sk_test_...";

Creating a resource

The Create method of the service class can be used to create a new resource:

var options = new CustomerCreateOptions
{
    Email = "customer@example.com"
};

var service = new CustomerService();
Customer customer = service.Create(options);

// Newly created customer is returned
Console.WriteLine(customer.Email);

Retrieve a resource

The Retrieve method of the service class can be used to retrieve a resource:

var service = new CustomerService();
Customer customer = service.Get("cus_1234");

Console.WriteLine(customer.Email);

Updating a resource

The Update method of the service class can be used to update a resource:

var options = new CustomerUpdateOptions
{
    Email = "updated-email@example.com"
};

var service = new CustomerService();
Customer customer = service.Update("cus_123", options);

// The updated customer is returned
Console.WriteLine(customer.Email);

Deleting a resource

The Delete method of the service class can be used to delete a resource:

var service = new CustomerService();
Customer customer = service.Delete("cus_123", options);

Listing a resource

The List method on the service class can be used to list resources page-by-page.

NOTE The List method returns only a single page, you have to manually continue the iteration using the StartingAfter parameter.

var service = new CustomerService();
var customers = service.List();

string lastId = null;

// Enumerate the first page of the list
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

customers = service.List(new CustomerListOptions()
{
    StartingAfter = lastId,
});

// Enumerate the subsequent page
foreach (Customer customer in customers)
{
   lastId = customer.Id;
   Console.WriteLine(customer.Email);
}

Listing a resource with auto-pagination

The ListAutoPaging method on the service class can be used to automatically iterate over all pages.

var service = new CustomerService();
var customers = service.ListAutoPaging();

// Enumerate all pages of the list
foreach (Customer customer in customers)
{
   Console.WriteLine(customer.Email);
}

Per-request configuration

All of the service methods accept an optional RequestOptions object. This is used if you want to set an idempotency key, if you are using Stripe Connect, or if you want to pass the secret API key on each method.

var requestOptions = new RequestOptions();
requestOptions.ApiKey = "SECRET API KEY";
requestOptions.IdempotencyKey = "SOME STRING";
requestOptions.StripeAccount = "CONNECTED ACCOUNT ID";

Using a custom HttpClient

You can configure the library with your own custom HttpClient:

StripeConfiguration.StripeClient = new StripeClient(
    apiKey,
    httpClient: new SystemNetHttpClient(httpClient));

Please refer to the Advanced client usage wiki page to see more examples of using custom clients, e.g. for using a proxy server, a custom message handler, etc.

Automatic retries

The library automatically retries requests on intermittent failures like on a connection error, timeout, or on certain API responses like a status 409 Conflict. Idempotency keys are always added to requests to make any such subsequent retries safe.

By default, it will perform up to two retries. That number can be configured with StripeConfiguration.MaxNetworkRetries:

StripeConfiguration.MaxNetworkRetries = 0; // Zero retries

How to use undocumented parameters and properties

stripe-dotnet is a typed library and it supports all public properties or parameters.

Stripe sometimes has beta features which introduce new properties or parameters that are not immediately public. The library does not support these properties or parameters until they are public but there is still an approach that allows you to use them.

Parameters

To pass undocumented parameters to Stripe using stripe-dotnet you need to use the AddExtraParam() method, as shown below:

var options = new CustomerCreateOptions
{
    Email = "jenny.rosen@example.com"
}
options.AddExtraParam("secret_feature_enabled", "true");
options.AddExtraParam("secret_parameter[primary]", "primary value");
options.AddExtraParam("secret_parameter[secondary]", "secondary value");

var service = new CustomerService();
var customer = service.Create(options);
Properties

To retrieve undocumented properties from Stripe using C# you can use an option in the library to return the raw JSON object and return the property. An example of this is shown below:

var service = new CustomerService();
var customer = service.Get("cus_1234");

customer.RawJObject["secret_feature_enabled"];
customer.RawJObject["secret_parameter"]["primary"];
customer.RawJObject["secret_parameter"]["secondary"];

This is only supported on objects returned directly from the Stripe.net SDK. If you are serializing Stripe objects to JSON you will need to handle undocumented properties separately.

Writing a plugin

If you're writing a plugin that uses the library, we'd appreciate it if you identified using StripeConfiguration.AppInfo:

StripeConfiguration.AppInfo = new AppInfo
{
    Name = "MyAwesomePlugin",
    Url = "https://myawesomeplugin.info",
    Version = "1.2.34",
};

This information is passed along when the library makes calls to the Stripe API. Note that while Name is always required, Url and Version are optional.

Telemetry

By default, the library sends telemetry to Stripe regarding request latency and feature usage. These numbers help Stripe improve the overall latency of its API for all users, and improve popular features.

You can disable this behavior if you prefer:

StripeConfiguration.EnableTelemetry = false;

Serializing Stripe resources to JSON

Stripe resources returned from a Stripe .NET library method can be serialized to a JSON string, which will contain all publicly documented fields for that object (see Serialization and RawJObject below):

Newtonsoft Json.NET
using Newtonsoft.Json;

...

var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonConvert.SerializeObject(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }

If you are using .NET 6 or above, you can also use System.Text.Json to serialize the same string value:

System.Text.Json
using System.Text.Json;
...
var service = new CustomerService();
var customer = service.Get("cus_1234");

string output = JsonSerializer.Serialize(customer);
// { "id": "cus_1234", "name": "Jenny Rosen", ... }
ASP.NET

If you are using .NET 6 or have installed the [Microsoft.AspNetCore.Mvc.NewtonsoftJson][https://www.nuget.org/packages/microsoft.aspnetcore.mvc.newtonsoftjson] package, you can return Stripe objects from ASP.NET controller methods:

using System.Text.Json;

public class HomeController : Controller
{
...
    public IActionResult Index()
    {
        return Json(_client.V1.Customers.List());
      // { "data": [{"id": "cus_1234", "name": "Jenny Rosen"}, ...], "has_more": false }
    }
}
Serialization and RawJObject

The RawJObject property is ignored on serialization in both Json.NET and System.Text.Json, which means that if you serialize a SDK response to a JSON string and the deserialize it back into a Stripe object, this property may be null or empty. If you rely on RawJObject you will need to serialize those values separately.

Beta SDKs

Stripe has features in the beta phase that can be accessed via the beta version of this package. We would love for you to try these and share feedback with us before these features reach the stable phase. To install a beta version of Stripe.net use the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <beta version>

Beta versions are appended with -beta.X such as 45.0.0-beta.1. Make sure to choose the version that includes support for the beta you are interested in!

Note There can be breaking changes between beta versions. Therefore we recommend pinning the package version to a specific beta version in your project file. This way you can install the same version each time without breaking changes unless you are intentionally looking for the latest beta version.

We highly recommend keeping an eye on when the beta feature you are interested in goes from beta to stable so that you can move from using a beta version of the SDK to the stable version.

If your beta feature requires a Stripe-Version header to be sent, set the StripeConfiguration.ApiVersion property with the StripeConfiguration.AddBetaVersion function:

Note The ApiVersion can only be set in beta versions of the library.

StripeConfiguration.AddBetaVersion("feature_beta", "v3");

Custom requests

If you would like to send a request to an undocumented API (for example you are in a private beta), or if you prefer to bypass the method definitions in the library and specify your request details directly, you can use the RawRequestAsync method on StripeClient.

StripeClient client = new StripeClient();
StripeResponse response = await client.RawRequestAsync(HttpMethod.Get, "/v1/accounts/acc_123");

// Optionally use Deserialize to convert the response to strongly-typed object.
Account account = client.Deserialize<Account>(response.Content)

Support

New features and bug fixes are released on the latest major version of the Stripe .NET client library. If you are on an older major version, we recommend that you upgrade to the latest in order to use the new features and bug fixes including those for security vulnerabilities. Older major versions of the package will continue to be available for use, but will not be receiving any updates.

Development

Contribution guidelines for this project

.NET 8 is required to build and test Stripe.net SDK, you can install it from get.dot.net.

The test suite depends on stripe-mock, so make sure to fetch and run it from a background terminal (stripe-mock's README also contains instructions for installing via Homebrew and other methods):

go install github.com/stripe/stripe-mock@latest
stripe-mock

Lastly, we use just for running common development tasks. You can also read the justfile and run those commands directly.

Run all tests from the src/StripeTests directory:

just test
# or: dotnet test src

Run some tests, filtering by name:

dotnet test src --filter FullyQualifiedName~InvoiceServiceTest

Run tests for a single target framework:

dotnet test src --framework net8.0

The library uses dotnet-format for code formatting. Code must be formatted before PRs are submitted, otherwise CI will fail. Run the formatter with:

just format
# or: dotnet format src/Stripe.net.sln

For any requests, bug or comments, please open an issue or submit a pull request.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  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 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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 is compatible.  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 (145)

Showing the top 5 NuGet packages that depend on Stripe.net:

Package Downloads
OElite.Common

Package Description

ImmediaC.SimpleCms

ASP.NET Core based CMS

N3O.Umbraco.Payments.Stripe

TODO

Soenneker.Stripe.Client

A .NET typesafe implementation of Stripe's StripeClient

JTigerNova.Web.Lib.Service.ThirdParty

Third Party library of web service functions

GitHub repositories (26)

Showing the top 20 popular GitHub repositories that depend on Stripe.net:

Repository Stars
bitwarden/server
Bitwarden infrastructure/backend (API, database, Docker, etc).
simplcommerce/SimplCommerce
A simple, cross platform, modulith ecommerce system built on .NET
exceptionless/Exceptionless
Exceptionless application
smartstore/Smartstore
A modular, scalable and ultra-fast open-source all-in-one eCommerce platform built on ASP.NET Core 7
grandnode/grandnode2
E-commerce platform built with ASP.NET Core using MongoDB for NoSQL storage
NiclasOlofsson/MiNET
A (not so) basic Minecraft Pocket Edition server written in C#
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
bhrugen/Bulky_MVC
Librum-Reader/Librum-Server
The Librum server
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
bhrugen/Bulky
bhrugen/Mango_Microservices
formcms/formcms
Open-source headless CMS built with ASP.NET Core (C#) and React, featuring REST APIs, GraphQL, and a GrapesJS page designer.
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
TryCatchLearn/Skinet3.1
TryCatchLearn/Skinet-v6
Course repository for the Skinet app created on .Net 5.0 and Angular 11
TryCatchLearn/skinet
DevBetterCom/DevBetterWeb
A simple web application for devBetter
Version Downloads Last Updated
50.2.0-alpha.1 34 12/15/2025
50.1.0-beta.1 2,096 11/18/2025
50.1.0-alpha.4 151 12/4/2025
50.1.0-alpha.3 187 11/24/2025
50.1.0-alpha.2 349 11/20/2025
50.1.0-alpha.1 360 11/18/2025
50.0.0 84,863 11/18/2025
49.3.0-alpha.2 627 11/13/2025
49.3.0-alpha.1 597 11/6/2025
49.2.0 93,559 11/5/2025
49.2.0-beta.1 478 10/29/2025
49.2.0-alpha.2 154 10/30/2025
49.2.0-alpha.1 146 10/29/2025
49.1.0 70,106 10/29/2025
49.1.0-beta.1 4,039 10/1/2025
49.1.0-alpha.4 149 10/23/2025
49.1.0-alpha.3 88 10/17/2025
49.1.0-alpha.2 370 10/9/2025
49.1.0-alpha.1 155 10/1/2025
49.0.0 233,594 9/30/2025
48.6.0-beta.1 9,767 8/27/2025
48.6.0-alpha.2 309 9/17/2025
48.6.0-alpha.1 210 8/27/2025
48.5.0 501,742 8/27/2025
48.5.0-beta.2 1,118 8/8/2025
48.5.0-beta.1 4,019 7/30/2025
48.4.0 301,428 7/30/2025
48.4.0-beta.2 2,970 7/9/2025
48.4.0-beta.1 704 7/1/2025
48.3.0 426,183 7/1/2025
48.3.0-beta.2 356 6/26/2025
48.3.0-beta.1 22,881 5/28/2025
48.2.0 384,302 5/28/2025
48.2.0-beta.2 11,742 4/30/2025
48.2.0-beta.1 198 4/30/2025
48.1.0 382,884 4/30/2025
48.1.0-beta.4 6,673 4/17/2025
48.1.0-beta.3 1,529 4/10/2025
48.1.0-beta.2 7,979 4/2/2025
48.0.2 154,275 4/15/2025
48.0.1 15,244 4/14/2025
48.0.0 247,754 4/1/2025
47.5.0-beta.1 4,982 3/18/2025
47.4.0 901,312 2/24/2025
47.4.0-beta.1 36,952 2/7/2025
47.3.0 548,952 1/27/2025
47.3.0-beta.3 14,411 1/23/2025
47.3.0-beta.2 689 1/18/2025
47.3.0-beta.1 5,862 1/9/2025
47.2.0 540,448 12/18/2024
47.2.0-beta.3 1,814 12/12/2024
47.2.0-beta.2 684 12/5/2024
47.2.0-beta.1 18,809 11/21/2024
47.1.0 619,079 11/20/2024
47.1.0-beta.3 4,975 11/15/2024
47.1.0-beta.2 2,365 11/7/2024
47.1.0-beta.1 4,345 10/29/2024
47.0.0 586,006 10/29/2024
46.3.0-beta.1 15,832 10/18/2024
46.2.2 30,023 10/29/2024
46.2.1 239,188 10/18/2024
46.2.0 230,496 10/9/2024
46.2.0-beta.3 1,478 10/8/2024
46.1.0 86,263 10/3/2024
46.0.0 60,307 10/1/2024
45.15.0-beta.1 15,467 9/18/2024
45.14.0 805,412 9/18/2024
45.13.0 92,616 9/13/2024
45.12.0 7,096 9/13/2024
45.12.0-beta.1 1,813 9/5/2024
45.11.0 160,727 9/5/2024
45.10.0 166,033 8/29/2024
45.10.0-beta.1 3,399 8/23/2024
45.9.0 100,299 8/23/2024
45.9.0-beta.2 235 8/22/2024
45.9.0-beta.1 4,789 8/15/2024
45.8.0 144,844 8/15/2024
45.8.0-beta.1 2,567 8/12/2024
45.7.0 106,069 8/9/2024
45.7.0-beta.1 5,540 8/1/2024
45.6.0 148,140 8/1/2024
45.6.0-beta.1 6,530 7/25/2024
45.5.0 123,617 7/25/2024
45.4.0 157,274 7/18/2024
45.3.0 241,141 7/11/2024
45.3.0-beta.1 83,679 7/5/2024
45.2.0 119,488 7/5/2024
45.2.0-beta.1 3,498 6/27/2024
45.1.0 141,659 6/27/2024
45.0.0 205,829 6/24/2024
44.13.0 375,913 6/17/2024
44.13.0-beta.1 3,393 6/13/2024
44.12.0 78,424 6/13/2024
44.12.0-beta.1 475 6/6/2024
44.11.0 151,745 6/6/2024
44.11.0-beta.1 2,182 5/30/2024
44.10.0 348,179 5/30/2024
44.10.0-beta.1 7,747 5/23/2024
44.9.0 142,266 5/23/2024
44.9.0-beta.1 2,438 5/16/2024
44.8.0 108,734 5/16/2024
44.7.0 146,924 5/9/2024
44.7.0-beta.1 219 5/9/2024
44.6.0 10,429 5/9/2024
44.6.0-beta.1 2,415 5/2/2024
44.5.0 120,265 5/2/2024
44.5.0-beta.1 9,951 4/25/2024
44.4.0 151,001 4/25/2024
44.4.0-beta.1 1,318 4/18/2024
44.3.0 229,796 4/18/2024
44.2.0 54,708 4/16/2024
44.2.0-beta.1 795 4/12/2024
44.1.0 226,312 4/11/2024
44.0.0 230,688 4/10/2024
43.23.0 94,759 4/9/2024
43.23.0-beta.1 3,157 4/4/2024
43.22.0 125,261 4/4/2024
43.22.0-beta.1 34,716 3/28/2024
43.21.0 134,090 3/28/2024
43.21.0-beta.1 1,261 3/21/2024
43.20.0 247,984 3/21/2024
43.20.0-beta.1 640 3/14/2024
43.19.0 186,833 3/14/2024
43.19.0-beta.1 12,273 3/8/2024
43.18.0 140,298 3/7/2024
43.18.0-beta.1 2,308 2/29/2024
43.17.0 106,774 2/29/2024
43.17.0-beta.1 9,932 2/22/2024
43.16.0 102,909 2/22/2024
43.16.0-beta.1 4,960 2/16/2024
43.15.0 154,462 2/16/2024
43.15.0-beta.1 1,299 2/8/2024
43.14.0 164,541 2/8/2024
43.14.0-beta.1 1,615 2/2/2024
43.13.0 257,003 2/1/2024
43.13.0-beta.1 1,422 1/26/2024
43.12.0 155,582 1/25/2024
43.12.0-beta.1 3,589 1/18/2024
43.11.0 151,153 1/18/2024
43.11.0-beta.1 470 1/12/2024
43.10.0 86,999 1/12/2024
43.10.0-beta.1 1,670 1/4/2024
43.9.0 142,371 1/4/2024
43.9.0-beta.1 2,285 12/22/2023
43.8.0 114,592 12/22/2023
43.8.0-beta.1 1,027 12/15/2023
43.7.0 139,275 12/15/2023
43.7.0-beta.1 556 12/8/2023
43.6.0 195,370 12/7/2023
43.6.0-beta.1 679 11/30/2023
43.5.0 93,734 11/30/2023
43.5.0-beta.1 2,823 11/21/2023
43.4.0 292,845 11/21/2023
43.4.0-beta.1 3,267 11/17/2023
43.3.0 128,355 11/17/2023
43.3.0-beta.1 969 11/10/2023
43.2.0 155,678 11/9/2023
43.2.0-beta.1 508 11/2/2023
43.1.0 154,088 11/2/2023
43.1.0-beta.2 1,125 10/26/2023
43.1.0-beta.1 1,486 10/17/2023
43.0.0 380,048 10/16/2023
42.10.0 42,876 10/16/2023
42.10.0-beta.1 2,047 10/11/2023
42.9.0 80,788 10/11/2023
42.9.0-beta.1 2,191 10/5/2023
42.8.0 117,433 10/5/2023
42.8.0-beta.1 1,064 9/29/2023
42.7.0 120,295 9/28/2023
42.7.0-beta.1 10,484 9/22/2023
42.6.0 157,369 9/21/2023
42.6.0-beta.1 4,159 9/15/2023
42.5.0 96,798 9/15/2023
42.5.0-beta.1 3,496 9/7/2023
42.4.0 110,998 9/7/2023
42.4.0-beta.1 1,241 9/1/2023
42.3.0 82,196 8/31/2023
42.2.0 148,325 8/24/2023
42.1.0 80,663 8/17/2023
42.0.0 23,352 8/16/2023
42.0.0-beta.1 255 8/24/2023
41.29.0-beta.1 4,941 8/11/2023
41.28.0 296,400 8/11/2023
41.28.0-beta.1 2,275 8/3/2023
41.27.0 123,130 8/3/2023
41.27.0-beta.1 1,856 7/28/2023
41.26.0 117,303 7/27/2023
41.25.0 128,794 7/20/2023
41.25.0-beta.1 1,084 7/13/2023
41.24.0 108,438 7/13/2023
41.23.0 129,035 7/6/2023
41.23.0-beta.1 7,371 6/30/2023
41.22.0 101,250 6/29/2023
41.22.0-beta.1 498 6/22/2023
41.21.0 148,886 6/22/2023
41.21.0-beta.2 2,901 6/15/2023
41.21.0-beta.1 562 6/8/2023
41.20.0 204,078 6/8/2023
41.20.0-beta.1 747 6/1/2023
41.19.0 139,700 6/1/2023
41.19.0-beta.1 2,967 5/25/2023
41.18.0 383,224 5/25/2023
41.18.0-beta.1 674 5/19/2023
41.17.0 110,629 5/19/2023
41.17.0-beta.1 2,072 5/11/2023
41.16.0 4,714,830 5/11/2023
41.16.0-beta.1 1,335 5/5/2023
41.15.0 144,026 5/4/2023
41.15.0-beta.1 843 4/27/2023
41.14.0 174,386 4/27/2023
41.14.0-beta.3 789 4/20/2023
41.14.0-beta.2 2,000 4/13/2023
41.14.0-beta.1 1,444 4/6/2023
41.13.0 459,475 4/6/2023
41.13.0-beta.1 2,983 3/30/2023
41.12.0 152,249 3/30/2023
41.12.0-beta.1 952 3/24/2023
41.11.0 112,574 3/23/2023
41.11.0-beta.1 5,863 3/17/2023
41.10.0 104,192 3/17/2023
41.10.0-beta.1 2,370 3/9/2023
41.9.0 319,143 3/9/2023
41.9.0-beta.1 8,925 3/3/2023
41.8.0 84,100 3/2/2023
41.8.0-beta.2 1,066 2/24/2023
41.8.0-beta.1 2,014 2/17/2023
41.7.0 229,177 2/16/2023
41.7.0-beta.1 6,244 2/2/2023
41.6.0 302,914 2/2/2023
41.6.0-beta.2 794 1/27/2023
41.6.0-beta.1 1,404 1/19/2023
41.5.0 233,147 1/19/2023
41.5.0-beta.2 536 1/12/2023
41.5.0-beta.1 4,888 1/5/2023
41.4.0 249,063 1/5/2023
41.4.0-beta.1 1,529 12/22/2022
41.3.0 136,477 12/22/2022
41.3.0-beta.2 5,976 12/16/2022
41.3.0-beta.1 4,462 12/8/2022
41.2.0 228,433 12/6/2022
41.1.0 457,941 11/17/2022
41.0.0 60,149 11/16/2022
40.17.0-beta.1 1,110 11/10/2022
40.16.0 331,258 11/8/2022
40.15.0 274,904 11/3/2022
40.15.0-beta.2 696 11/2/2022
40.15.0-beta.1 4,645 10/22/2022
40.14.0 195,688 10/20/2022
40.14.0-beta.1 1,108 10/14/2022
40.13.0 263,048 10/13/2022
40.13.0-beta.1 2,568 10/7/2022
40.12.0 87,251 10/6/2022
40.12.0-beta.2 399 10/4/2022
40.12.0-beta.1 360 10/4/2022
40.11.0 113,117 9/29/2022
40.11.0-beta.1 1,065 9/26/2022
40.10.0 119,495 9/22/2022
40.9.0 150,849 9/15/2022
40.8.0 138,041 9/9/2022
40.7.0 88,802 9/6/2022
40.6.0 162,012 8/31/2022
40.5.0 83,702 8/26/2022
40.5.0-beta.1 769 8/26/2022
40.4.0 221,374 8/23/2022
40.4.0-beta.1 863 8/23/2022
40.3.0 167,269 8/19/2022
40.3.0-beta.1 577 8/11/2022
40.2.0 133,001 8/11/2022
40.1.0 77,840 8/9/2022
40.1.0-beta.1 423 8/3/2022
40.0.0 302,133 8/2/2022
39.126.0 621,237 7/26/2022
39.125.0 110,832 7/25/2022
39.125.0-beta.1 488 7/22/2022
39.124.0 178,885 7/18/2022
39.123.0 277,141 7/12/2022
39.123.0-beta.1 1,846 7/7/2022
39.122.0 120,328 7/7/2022
39.121.0 302,998 6/29/2022
39.120.0 115,403 6/23/2022
39.119.0 141,738 6/17/2022
39.119.0-beta.1 546 6/15/2022
39.118.0 157,093 6/9/2022
39.117.0 49,614 6/8/2022
39.116.0 110,909 6/1/2022
39.115.0 110,024 5/26/2022
39.114.0 136,664 5/23/2022
39.113.0 15,011 5/23/2022
39.112.0 41,196 5/20/2022
39.111.0 324,215 5/11/2022
39.110.0 239,460 5/5/2022
39.109.0 11,831 5/5/2022
39.108.0 33,469 5/3/2022
39.107.0 146,008 4/21/2022
39.106.0 386,323 4/20/2022
39.105.0 267,876 4/13/2022
39.104.0 193,454 4/8/2022
39.103.0 228,565 4/1/2022
39.102.0 34,838 3/30/2022
39.101.0 21,603 3/29/2022
39.100.0 79,578 3/25/2022
39.99.0 67,236 3/23/2022
39.98.0 74,541 3/18/2022
39.97.0 220,373 3/11/2022
39.96.0 96,949 3/9/2022
39.95.0 145,451 3/2/2022
39.94.0 10,824 3/2/2022
39.93.0 62,366 2/26/2022
39.92.0 40,319 2/23/2022
39.91.0 542,933 2/16/2022
39.90.0 151,478 2/6/2022
39.89.0 332,767 1/25/2022
39.88.0 103,850 1/20/2022
39.87.0 16,718 1/19/2022
39.86.0 64,813 1/13/2022
39.85.0 36,295 1/12/2022
39.84.0 300,532 12/22/2021
39.83.0 117,423 12/15/2021
39.82.0 70,185 12/9/2021
39.81.0 14,137 12/9/2021
39.80.0 585,667 11/20/2021
39.79.0 23,943 11/17/2021
39.78.1 14,135 11/16/2021
39.78.0 6,375 11/16/2021
39.77.0 48,775 11/11/2021
39.76.0 127,833 11/4/2021
39.75.1 8,627 11/4/2021
39.75.0 149,245 11/1/2021
39.74.0 260,507 10/20/2021
39.73.0 126,576 10/11/2021
39.72.0 10,862 10/11/2021
39.71.0 29,814 10/7/2021
39.70.0 78,790 9/29/2021
39.69.0 72,970 9/24/2021
39.68.0 230,016 9/16/2021
39.67.0 10,044 9/15/2021
39.66.0 134,618 9/2/2021
39.65.0 7,680 9/1/2021
39.64.0 255,939 8/27/2021
39.63.0 256,309 8/11/2021
39.62.0 175,567 7/28/2021
39.61.0 131,526 7/22/2021
39.60.0 22,360 7/21/2021
39.59.0 247,355 7/14/2021
39.58.0 66,812 7/9/2021
39.57.0 104,891 6/30/2021
39.56.1 8,488 6/30/2021
39.56.0 12,540 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 47,052 6/25/2021
39.54.0 74,208 6/16/2021
39.53.0 359,028 6/7/2021
39.52.0 36,480 6/4/2021
39.51.0 65,486 6/4/2021
39.50.0 226,454 5/26/2021
39.49.0 97,087 5/20/2021
39.48.0 184,657 5/7/2021
39.47.0 52,616 5/6/2021
39.46.0 6,968 5/5/2021
39.45.0 149,016 4/16/2021
39.44.0 170,518 4/12/2021
39.43.0 144,037 4/3/2021
39.42.0 156,516 3/31/2021
39.41.0 127,034 3/26/2021
39.40.0 202,896 3/22/2021
39.39.0 227,388 3/1/2021
39.38.0 302,364 2/23/2021
39.37.0 90,576 2/18/2021
39.36.0 17,784 2/17/2021
39.35.0 106,816 2/9/2021
39.34.0 142,878 2/3/2021
39.33.0 252,190 1/21/2021
39.32.0 145,095 1/7/2021
39.31.0 291,238 12/16/2020
39.30.0 70,013 12/11/2020
39.29.0 183,524 12/4/2020
39.28.0 222,221 11/24/2020
39.27.0 57,066 11/20/2020
39.26.0 17,953 11/19/2020
39.25.0 29,454 11/18/2020
39.24.0 12,303 11/18/2020
39.23.0 225,937 11/9/2020
39.22.0 48,216 11/4/2020
39.21.0 80,945 10/29/2020
39.20.0 28,458 10/27/2020
39.19.0 40,746 10/26/2020
39.18.0 18,484 10/23/2020
39.17.0 17,275 10/23/2020
39.16.0 125,021 10/14/2020
39.15.0 23,832 10/13/2020
39.14.0 8,023 10/12/2020
39.13.0 27,583 10/9/2020
39.12.0 29,509 10/9/2020
39.11.0 126,764 10/3/2020
39.10.0 43,792 9/30/2020
39.9.0 20,617 9/30/2020
39.8.0 21,076 9/29/2020
39.7.0 49,984 9/25/2020
39.6.0 31,272 9/23/2020
39.5.0 59,025 9/22/2020
39.4.0 115,024 9/13/2020
39.3.0 101,784 9/8/2020
39.2.0 53,702 9/3/2020
39.1.2 53,735 9/1/2020
37.35.0 506,098 8/27/2020
37.34.0 128,699 8/19/2020
37.33.0 44,929 8/18/2020
37.32.0 12,064 8/17/2020
37.31.0 29,086 8/13/2020
37.30.0 77,589 8/7/2020
37.29.0 38,198 8/6/2020
37.28.0 17,251 8/4/2020
37.27.0 81,943 7/29/2020
37.26.0 142,390 7/25/2020
37.25.0 8,994 7/25/2020
37.24.0 25,422 7/22/2020
37.23.0 12,096 7/21/2020
37.22.0 8,238 7/21/2020
37.21.0 13,494 7/21/2020
37.20.0 17,827 7/18/2020
37.19.0 9,771 7/17/2020
37.18.0 91,430 7/15/2020
37.17.0 48,162 7/13/2020
37.16.0 106,982 7/6/2020
37.15.1 40,372 7/3/2020
37.15.0 35,653 7/1/2020
37.14.0 206,907 6/25/2020
37.13.0 43,729 6/23/2020
37.12.0 38,635 6/22/2020
37.11.0 18,880 6/18/2020
37.10.0 96,034 6/11/2020
37.9.0 13,059 6/11/2020
37.8.0 232,636 6/3/2020
37.7.0 7,235 6/3/2020
37.6.0 60,099 5/29/2020
37.5.0 34,236 5/28/2020
37.4.0 166,240 5/22/2020
37.3.0 97,713 5/21/2020
37.2.0 7,245 5/20/2020
37.1.0 79,048 5/19/2020
37.0.0 72,085 5/18/2020
36.12.2 81,731 5/14/2020
36.12.1 6,965 5/14/2020
36.12.0 7,086 5/13/2020
36.11.0 87,051 5/12/2020
36.10.0 20,555 5/11/2020
36.9.0 30,723 5/8/2020
36.8.1 41,886 5/5/2020
36.8.0 35,682 5/1/2020
36.7.0 20,524 4/29/2020
36.6.0 32,927 4/24/2020
36.5.0 27,245 4/22/2020
36.4.0 7,412 4/22/2020
36.3.0 11,719 4/21/2020
36.2.0 23,818 4/18/2020
36.1.0 20,269 4/17/2020
36.0.0 16,624 4/16/2020
35.17.0 44,077 4/14/2020
35.16.0 23,816 4/13/2020
35.15.0 9,279 4/13/2020
35.14.0 18,774 4/10/2020
35.13.0 8,205 4/9/2020
35.12.1 203,758 4/8/2020
35.12.0 57,864 4/3/2020
35.11.1 233,909 3/31/2020
35.11.0 39,447 3/31/2020
35.10.0 58,783 3/26/2020
35.9.0 46,375 3/25/2020
35.8.0 10,632 3/24/2020
35.7.1 9,142 3/23/2020
35.7.0 40,671 3/20/2020
35.6.0 317,237 3/13/2020
35.5.0 10,057 3/12/2020
35.4.0 8,192 3/12/2020
35.3.0 96,278 3/5/2020
35.2.0 7,384 3/4/2020
35.1.0 9,945 3/4/2020
35.0.0 29,580 3/4/2020
34.26.0 124,871 2/24/2020
34.25.0 24,670 2/21/2020
34.24.0 11,874 2/21/2020
34.23.0 133,873 2/17/2020
34.22.0 40,392 2/13/2020
34.21.0 8,318 2/12/2020
34.20.1 13,268 2/12/2020
34.20.0 99,749 2/6/2020
34.19.0 52,479 2/3/2020
34.18.0 58,974 1/31/2020
34.17.0 63,027 1/25/2020
34.16.1 15,247 1/22/2020
34.16.0 47,654 1/17/2020
34.15.0 285,441 1/15/2020
34.14.0 10,106 1/14/2020
34.13.0 63,793 1/10/2020
34.12.0 27,590 1/6/2020
34.11.0 18,544 1/4/2020
34.10.1 11,921 1/3/2020
34.10.0 33,336 12/31/2019
34.9.0 114,149 12/24/2019
34.8.0 36,480 12/21/2019
34.7.0 12,915 12/19/2019
34.6.0 35,626 12/17/2019
34.5.0 62,260 12/13/2019
34.4.0 10,327 12/12/2019
34.3.0 34,260 12/9/2019
34.2.0 7,014 12/9/2019
34.1.0 107,108 12/4/2019
34.0.0 24,728 12/4/2019
33.9.0 51,284 12/2/2019
33.8.0 38,733 11/26/2019
33.7.0 24,348 11/25/2019
33.6.0 22,655 11/22/2019
33.5.0 11,806 11/21/2019
33.4.0 17,226 11/19/2019
33.3.0 79,885 11/8/2019
33.2.0 12,436 11/7/2019
33.1.0 16,624 11/6/2019
33.0.0 30,669 11/6/2019
32.2.0 36,484 11/4/2019
32.1.3 41,699 10/28/2019
32.1.2 11,102 10/25/2019
32.1.1 6,460 10/24/2019
32.1.0 17,699 10/24/2019
32.0.0 25,349 10/19/2019
31.2.0 8,396 10/18/2019
31.1.0 122,736 10/11/2019
31.0.0 8,284 10/10/2019
30.1.0 52,585 10/10/2019
30.0.1 8,498 10/9/2019
30.0.0 48,930 10/9/2019
29.6.0 58,282 10/3/2019
29.5.0 66,629 9/27/2019
29.4.0 24,749 9/26/2019
29.3.0 13,339 9/26/2019
29.2.1 34,048 9/23/2019
29.2.0 43,278 9/19/2019
29.1.0 169,719 9/13/2019
29.0.1 15,410 9/12/2019
29.0.0 98,759 9/10/2019
28.11.0 52,387 9/9/2019
28.10.0 98,840 9/4/2019
28.9.0 24,360 9/3/2019
28.8.0 376,066 8/30/2019
28.7.0 7,731 8/29/2019
28.6.0 185,911 8/27/2019
28.5.0 60,754 8/23/2019
28.4.0 24,427 8/21/2019
28.3.0 20,274 8/20/2019
28.2.0 164,046 8/16/2019
28.1.0 51,863 8/15/2019
28.0.0 61,256 8/14/2019
27.25.1 23,397 8/14/2019
27.24.0 65,965 8/9/2019
27.23.0 12,993 8/8/2019
27.22.0 6,984 8/8/2019
27.21.0 145,510 8/2/2019
27.20.0 33,963 8/1/2019
27.19.0 36,943 7/31/2019
27.18.0 33,586 7/26/2019
27.17.0 16,191 7/25/2019
27.16.1 123,168 7/23/2019
27.16.0 61,970 7/22/2019
27.15.0 108,160 7/19/2019
27.14.0 39,812 7/18/2019
27.13.0 50,379 7/16/2019
27.12.0 8,554 7/15/2019
27.11.0 32,124 7/11/2019
27.10.0 23,476 7/10/2019
27.9.1 41,492 7/10/2019
27.9.0 40,383 7/5/2019
27.8.1 54,327 7/3/2019
27.8.0 11,669 7/2/2019
27.7.0 7,247 7/2/2019
27.6.0 9,056 7/1/2019
27.5.0 14,035 7/1/2019
27.4.0 27,440 6/26/2019
27.3.2 61,787 6/20/2019
27.3.1 28,539 6/18/2019
27.3.0 12,861 6/17/2019
27.2.0 36,633 6/14/2019
27.1.3 13,606 6/12/2019
27.1.2 14,624 6/11/2019
27.1.1 6,947 6/10/2019
27.1.0 7,552 6/10/2019
27.0.0 17,575 6/7/2019
26.1.0 25,488 6/6/2019
26.0.0 132,305 5/24/2019
25.19.1 24,283 5/22/2019
25.19.0 40,848 5/17/2019
25.18.0 21,640 5/14/2019
25.17.0 20,158 5/10/2019
25.16.1 22,161 5/8/2019
25.16.0 15,791 5/6/2019
25.15.0 55,590 5/4/2019
25.14.0 9,884 5/3/2019
25.13.0 28,864 4/30/2019
25.12.0 28,732 4/25/2019
25.11.0 6,785 4/24/2019
25.10.0 41,357 4/23/2019
25.9.0 21,731 4/18/2019
25.8.0 69,569 4/17/2019
25.7.1 7,379 4/16/2019
25.7.0 13,779 4/15/2019
25.6.0 39,759 4/10/2019
25.5.0 6,672 4/9/2019
25.4.0 17,295 4/5/2019
25.3.0 169,851 3/29/2019
25.2.0 31,920 3/25/2019
25.1.0 18,539 3/22/2019
25.0.0 31,412 3/19/2019
24.6.0 17,626 3/19/2019
24.5.0 46,266 3/14/2019
24.4.1 29,764 3/11/2019
24.3.0 43,156 3/7/2019
24.2.0 7,847 3/6/2019
24.1.0 41,649 2/28/2019
24.0.2 178,806 2/20/2019
24.0.1 7,453 2/20/2019
23.2.0 7,179 2/19/2019
23.1.0 9,827 2/18/2019
23.0.0 19,090 2/14/2019
22.9.0 13,655 2/12/2019
22.8.1 46,132 2/4/2019
22.8.0 101,703 1/25/2019
22.7.0 37,631 1/20/2019
22.6.0 10,175 1/18/2019
22.5.0 7,669 1/17/2019
22.4.0 33,678 1/10/2019
22.3.0 44,714 1/9/2019
22.2.0 7,322 1/9/2019
22.1.0 10,118 1/8/2019
22.0.0 14,490 1/7/2019
21.9.0 35,671 1/3/2019
21.8.1 8,171 1/3/2019
21.8.0 46,757 12/27/2018
21.7.1 17,963 12/21/2018
21.7.0 272,775 11/28/2018
21.6.0 16,389 11/27/2018
21.5.0 42,290 11/26/2018
21.4.1 32,346 11/16/2018
21.4.0 12,796 11/14/2018
21.3.0 7,215 11/14/2018
21.2.0 13,607 11/12/2018
21.1.0 14,731 11/9/2018
21.0.0 11,697 11/9/2018
20.4.1 13,419 11/8/2018
20.4.0 25,013 11/5/2018
20.3.0 13,156 10/31/2018
20.2.0 21,650 10/25/2018
20.1.0 23,742 10/23/2018
20.0.0 9,715 10/22/2018
19.10.0 279,381 10/9/2018
19.9.2 43,482 9/28/2018
19.9.1 13,460 9/27/2018
19.9.0 137,359 9/26/2018
19.8.0 20,513 9/24/2018
19.7.0 101,934 9/20/2018
19.6.0 53,053 9/11/2018
19.5.0 25,557 9/6/2018
19.4.0 9,201 9/6/2018
19.3.0 22,607 9/4/2018
19.2.0 30,503 8/29/2018
19.1.0 12,265 8/28/2018
19.0.1 8,525 8/27/2018
18.0.0 33,541 8/23/2018
17.11.0 30,431 8/23/2018
17.10.0 18,476 8/21/2018
17.9.0 18,110 8/16/2018
17.8.0 366,457 8/3/2018
17.7.0 47,712 7/31/2018
17.6.0 37,962 7/27/2018
17.5.0 11,006 7/26/2018
17.4.0 20,840 7/23/2018
17.3.1 90,691 7/16/2018
17.3.0 27,292 7/13/2018
17.2.0 7,657 7/13/2018
17.1.0 9,309 7/12/2018
17.0.0 8,400 7/11/2018
16.16.1 38,635 7/11/2018
16.16.0 20,175 7/6/2018
16.14.0 35,183 6/29/2018
16.13.0 8,565 6/28/2018
16.12.0 49,548 6/20/2018
16.11.0 7,531 6/20/2018
16.10.0 110,036 6/13/2018
16.9.0 20,142 6/12/2018
16.8.0 8,434 6/12/2018
16.7.0 18,958 6/6/2018
16.6.0 7,839 6/6/2018
16.5.0 10,784 6/6/2018
16.4.0 30,059 6/1/2018
16.3.0 53,601 5/23/2018
16.1.0 125,063 5/10/2018
16.0.0 9,064 5/10/2018
15.8.0 16,704 5/8/2018
15.7.0 14,586 5/3/2018
15.6.2 34,564 4/25/2018
15.6.1 84,340 4/19/2018
15.6.0 39,163 4/18/2018
15.5.0 18,638 4/16/2018
15.3.2 221,972 4/9/2018
15.3.1 17,818 4/6/2018
15.3.0 45,518 4/4/2018
15.2.1 61,711 3/27/2018
15.2.0 8,354 3/26/2018
15.1.0 12,151 3/23/2018
15.0.0 30,201 3/21/2018
14.0.0 17,693 3/16/2018
13.5.0 36,219 3/15/2018
13.4.0 12,244 3/13/2018
13.3.1 31,750 3/5/2018
13.3.0 21,313 3/1/2018
13.2.0 12,376 2/27/2018
13.1.0 888,789 2/22/2018
13.0.1 14,409 2/19/2018
13.0.0 35,417 2/13/2018
12.1.0 271,683 1/19/2018
12.0.0 15,335 1/16/2018
11.10.0 74,491 12/26/2017
11.9.0 79,504 11/29/2017
11.8.2 20,686 11/23/2017
11.8.1 17,584 11/23/2017
11.7.1 92,178 10/31/2017
11.7.0 7,609 10/31/2017
11.6.1 25,501 10/24/2017
11.6.0 46,670 10/19/2017
11.5.0 45,325 10/17/2017
11.4.0 10,543 10/13/2017
11.3.0 9,069 10/11/2017
11.2.0 12,285 10/10/2017
11.1.0 7,455 10/10/2017
11.0.0 21,232 10/10/2017
10.4.0 259,783 8/8/2017
10.3.0 62,600 7/14/2017
10.2.0 71,056 6/28/2017
10.1.0 8,514 6/27/2017
10.0.0 62,255 6/6/2017
9.1.0 24,395 6/1/2017
9.0.0 55,891 5/13/2017
8.4.0 30,190 5/5/2017
8.3.0 10,708 5/2/2017
8.2.0 32,729 4/27/2017
8.1.1 18,318 4/19/2017
8.1.0 7,843 4/19/2017
8.0.0 15,125 4/13/2017
7.63.0 6,684 11/17/2020 7.63.0 is deprecated.
7.8.0 57,980 4/6/2017
7.7.0 13,190 4/1/2017
7.6.1 14,716 3/28/2017
7.6.0 26,013 3/17/2017
7.5.0 8,309 3/16/2017
7.4.0 16,753 3/7/2017
7.3.0 37,745 3/3/2017
7.2.0 21,329 2/28/2017
7.1.2 14,372 2/24/2017
7.1.1 9,987 2/23/2017
7.1.0 14,027 2/21/2017
7.0.5 69,431 2/21/2017
7.0.4 51,528 2/11/2017
7.0.3 50,502 1/19/2017
7.0.2 39,763 1/10/2017
7.0.1 24,060 12/25/2016
7.0.0 37,133 12/19/2016
6.13.0 17,941 12/17/2016
6.12.1 8,060 12/16/2016
6.12.0 86,387 11/29/2016
6.11.1 23,705 11/21/2016
6.11.0 13,994 11/8/2016
6.10.0 16,541 10/29/2016
6.9.0 75,123 10/18/2016
6.8.0 34,659 10/4/2016
6.7.0 19,567 9/26/2016
6.6.0 22,444 9/11/2016
6.5.0 32,065 9/1/2016
6.4.0 75,571 8/6/2016
6.3.6 26,051 7/29/2016
6.3.5 21,834 7/6/2016
6.3.4 38,167 6/25/2016
6.3.3 85,536 5/14/2016
6.3.2 44,580 4/25/2016
6.3.1 31,677 4/17/2016
6.3.0 7,692 4/17/2016
6.2.2 16,463 4/12/2016
6.2.1 10,375 4/4/2016
6.2.0 7,698 4/3/2016
6.1.1 7,570 4/1/2016
6.1.0 39,753 3/25/2016
6.0.1 44,538 3/15/2016
6.0.0 17,623 3/10/2016
5.3.0 59,870 2/14/2016
5.2.0 21,995 1/25/2016
5.1.3 15,049 1/8/2016
5.1.2 64,586 12/2/2015
5.1.1 12,105 11/29/2015
5.1.0 10,396 11/28/2015
5.0.1 60,772 11/19/2015
5.0.0 16,016 10/23/2015
4.2.1 21,807 9/13/2015
4.2.0 67,476 7/26/2015
4.1.0 14,320 7/11/2015
4.0.2 12,555 7/3/2015
4.0.1 18,443 7/2/2015
4.0.0 7,786 7/2/2015
3.0.2 14,566 6/17/2015
3.0.1 7,921 6/17/2015
3.0.0 10,297 5/28/2015
2.9.0 93,607 4/12/2015
2.8.0 33,498 3/14/2015
2.7.2 19,091 2/17/2015
2.7.1 8,398 2/17/2015
2.7.0 8,217 2/16/2015
2.6.0 8,663 2/14/2015
2.5.1 14,675 2/7/2015
2.5.0 8,503 1/31/2015
2.4.1 7,907 1/31/2015
2.4.0 8,342 1/25/2015
2.3.5 10,848 1/21/2015
2.3.4 27,642 12/4/2014
2.3.3 29,630 11/3/2014
2.3.2 8,583 10/26/2014
2.3.1 8,019 10/26/2014
2.3.0 15,580 9/4/2014
2.2.6 52,887 7/15/2014
2.2.5 12,541 6/22/2014
2.2.4 8,584 6/17/2014
2.2.3 8,438 6/13/2014
2.2.2 10,865 5/29/2014
2.2.1 8,028 5/28/2014
2.2.0 7,731 5/27/2014
2.1.2 8,491 5/14/2014
2.1.1 8,369 5/13/2014
2.1.0 10,383 4/20/2014
2.0.1 8,734 4/13/2014
2.0.0 8,765 4/5/2014
1.7.7 10,081 3/17/2014
1.7.6 22,857 1/18/2014
1.7.5 8,119 1/12/2014
1.7.4 9,545 12/25/2013
1.7.3 7,718 12/25/2013
1.7.2 7,732 12/24/2013
1.7.1 17,338 12/1/2013
1.7.0 10,541 11/3/2013
1.6.3 9,449 10/19/2013
1.6.2 11,841 8/30/2013
1.6.1 10,878 8/15/2013
1.6.0 7,607 8/10/2013
1.5.7 10,047 7/18/2013
1.5.6 8,345 6/30/2013
1.5.5 22,149 5/27/2013
1.5.4 8,482 5/7/2013
1.5.3 9,303 3/30/2013
1.5.2 7,754 3/26/2013
1.5.1 7,824 3/13/2013
1.5.0 7,810 3/4/2013
1.4.3 7,506 3/4/2013
1.4.2 7,787 3/4/2013
1.4.1 7,822 2/24/2013
1.4.0 7,825 2/12/2013
1.3.1 7,629 2/11/2013
1.3.0 7,595 2/11/2013
1.2.1 7,738 1/24/2013
1.2.0 8,462 12/2/2012
1.1.18 17,164 11/4/2012
1.1.17 8,478 9/7/2012
1.1.16 7,750 9/5/2012
1.1.15 7,562 8/27/2012
1.1.14 7,980 8/4/2012
1.1.13 16,293 6/10/2012
1.1.12 8,003 4/21/2012
1.1.11 7,988 4/8/2012
1.1.10 17,708 3/25/2012
1.1.9 7,621 3/5/2012
1.1.8 7,658 2/26/2012
1.1.7 7,605 2/26/2012
1.1.6 7,847 2/26/2012
0.5.2 29,214 11/28/2015