Stripe.net 48.2.0

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

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;

Public Preview SDKs

Stripe has features in the public preview phase that can be accessed via versions of this package that have the -beta.X suffix like 45.1.0-beta.2. We would love for you to try these as we incrementally release new features and improve them based on your feedback.

To install, choose the version that includes support for the preview feature you are interested in by reviewing the releases page and then use it in the version parameter with dotnet add package command:

dotnet add package Stripe.net --version <replace-with-the-version-of-your-choice>

Note There can be breaking changes between two versions of the public preview SDKs without a bump in the major version. Therefore we recommend pinning the package version to a specific 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 public preview SDK.

Some preview features require a name and version to be set in the Stripe-Version header like feature_beta=v3. If your preview feature has this requirement, use the StripeConfiguration.AddBetaVersion function (available only in the public preview SDKs):

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 (124)

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 (24)

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#
bhrugen/Bulky_MVC
VedAstro/VedAstro
A non-profit, open source project to make Vedic Astrology easily available to all.
Librum-Reader/Librum-Server
The Librum server
patrickgod/BlazorEcommerce
Code for the online course "Make an E-Commerce Website with Blazor WebAssembly in .NET 6" on Udemy.
JasonBock/Rocks
A mocking library based on the Compiler APIs (Roslyn + Mocks)
bhrugen/Bulky
bhrugen/Mango_Microservices
rahulsahay19/eCommerce-App
Ecommerce App using .Net Core 3.1 and Angular 9
OrchardCMS/OrchardCore.Commerce
The commerce module for Orchard Core.
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
RemiBou/Toss.Blazor
Experimental project using AspNetCore Blazor
Version Downloads Last updated
48.3.0-beta.1 389 5/28/2025
48.2.0 38,091 5/28/2025
48.2.0-beta.2 2,232 4/30/2025
48.2.0-beta.1 122 4/30/2025
48.1.0 125,244 4/30/2025
48.1.0-beta.4 1,954 4/17/2025
48.1.0-beta.3 1,235 4/10/2025
48.1.0-beta.2 1,462 4/2/2025
48.0.2 62,443 4/15/2025
48.0.1 5,994 4/14/2025
48.0.0 88,203 4/1/2025
47.5.0-beta.1 2,093 3/18/2025
47.4.0 438,616 2/24/2025
47.4.0-beta.1 15,312 2/7/2025
47.3.0 336,234 1/27/2025
47.3.0-beta.3 7,092 1/23/2025
47.3.0-beta.2 568 1/18/2025
47.3.0-beta.1 4,533 1/9/2025
47.2.0 337,743 12/18/2024
47.2.0-beta.3 1,646 12/12/2024
47.2.0-beta.2 573 12/5/2024
47.2.0-beta.1 17,825 11/21/2024
47.1.0 407,470 11/20/2024
47.1.0-beta.3 2,619 11/15/2024
47.1.0-beta.2 1,087 11/7/2024
47.1.0-beta.1 4,115 10/29/2024
47.0.0 376,381 10/29/2024
46.3.0-beta.1 10,277 10/18/2024
46.2.2 19,161 10/29/2024
46.2.1 158,701 10/18/2024
46.2.0 184,322 10/9/2024
46.2.0-beta.3 1,405 10/8/2024
46.1.0 69,568 10/3/2024
46.0.0 31,474 10/1/2024
45.15.0-beta.1 13,092 9/18/2024
45.14.0 435,438 9/18/2024
45.13.0 68,627 9/13/2024
45.12.0 2,937 9/13/2024
45.12.0-beta.1 1,733 9/5/2024
45.11.0 126,297 9/5/2024
45.10.0 121,910 8/29/2024
45.10.0-beta.1 3,268 8/23/2024
45.9.0 75,751 8/23/2024
45.9.0-beta.2 182 8/22/2024
45.9.0-beta.1 4,442 8/15/2024
45.8.0 109,534 8/15/2024
45.8.0-beta.1 2,352 8/12/2024
45.7.0 85,577 8/9/2024
45.7.0-beta.1 4,124 8/1/2024
45.6.0 99,995 8/1/2024
45.6.0-beta.1 5,059 7/25/2024
45.5.0 100,245 7/25/2024
45.4.0 107,948 7/18/2024
45.3.0 157,654 7/11/2024
45.3.0-beta.1 52,105 7/5/2024
45.2.0 103,953 7/5/2024
45.2.0-beta.1 3,401 6/27/2024
45.1.0 118,321 6/27/2024
45.0.0 125,442 6/24/2024
44.13.0 272,656 6/17/2024
44.13.0-beta.1 3,325 6/13/2024
44.12.0 66,379 6/13/2024
44.12.0-beta.1 407 6/6/2024
44.11.0 112,631 6/6/2024
44.11.0-beta.1 2,104 5/30/2024
44.10.0 251,405 5/30/2024
44.10.0-beta.1 6,556 5/23/2024
44.9.0 112,435 5/23/2024
44.9.0-beta.1 2,306 5/16/2024
44.8.0 92,336 5/16/2024
44.7.0 112,946 5/9/2024
44.7.0-beta.1 182 5/9/2024
44.6.0 6,542 5/9/2024
44.6.0-beta.1 1,803 5/2/2024
44.5.0 98,163 5/2/2024
44.5.0-beta.1 6,897 4/25/2024
44.4.0 122,631 4/25/2024
44.4.0-beta.1 1,131 4/18/2024
44.3.0 171,703 4/18/2024
44.2.0 44,497 4/16/2024
44.2.0-beta.1 742 4/12/2024
44.1.0 155,100 4/11/2024
44.0.0 111,195 4/10/2024
43.23.0 74,805 4/9/2024
43.23.0-beta.1 2,600 4/4/2024
43.22.0 88,272 4/4/2024
43.22.0-beta.1 34,663 3/28/2024
43.21.0 112,645 3/28/2024
43.21.0-beta.1 1,188 3/21/2024
43.20.0 217,678 3/21/2024
43.20.0-beta.1 580 3/14/2024
43.19.0 163,681 3/14/2024
43.19.0-beta.1 9,845 3/8/2024
43.18.0 113,394 3/7/2024
43.18.0-beta.1 792 2/29/2024
43.17.0 81,745 2/29/2024
43.17.0-beta.1 9,393 2/22/2024
43.16.0 87,707 2/22/2024
43.16.0-beta.1 4,853 2/16/2024
43.15.0 128,845 2/16/2024
43.15.0-beta.1 1,194 2/8/2024
43.14.0 124,116 2/8/2024
43.14.0-beta.1 1,375 2/2/2024
43.13.0 204,803 2/1/2024
43.13.0-beta.1 1,356 1/26/2024
43.12.0 129,387 1/25/2024
43.12.0-beta.1 3,530 1/18/2024
43.11.0 124,051 1/18/2024
43.11.0-beta.1 411 1/12/2024
43.10.0 76,007 1/12/2024
43.10.0-beta.1 1,522 1/4/2024
43.9.0 113,479 1/4/2024
43.9.0-beta.1 2,214 12/22/2023
43.8.0 99,602 12/22/2023
43.8.0-beta.1 996 12/15/2023
43.7.0 121,479 12/15/2023
43.7.0-beta.1 505 12/8/2023
43.6.0 172,968 12/7/2023
43.6.0-beta.1 592 11/30/2023
43.5.0 81,880 11/30/2023
43.5.0-beta.1 2,704 11/21/2023
43.4.0 263,743 11/21/2023
43.4.0-beta.1 2,790 11/17/2023
43.3.0 103,426 11/17/2023
43.3.0-beta.1 919 11/10/2023
43.2.0 129,403 11/9/2023
43.2.0-beta.1 466 11/2/2023
43.1.0 125,387 11/2/2023
43.1.0-beta.2 1,066 10/26/2023
43.1.0-beta.1 1,377 10/17/2023
43.0.0 322,271 10/16/2023
42.10.0 33,453 10/16/2023
42.10.0-beta.1 1,574 10/11/2023
42.9.0 70,564 10/11/2023
42.9.0-beta.1 2,130 10/5/2023
42.8.0 100,036 10/5/2023
42.8.0-beta.1 1,012 9/29/2023
42.7.0 98,047 9/28/2023
42.7.0-beta.1 8,416 9/22/2023
42.6.0 127,593 9/21/2023
42.6.0-beta.1 4,076 9/15/2023
42.5.0 89,351 9/15/2023
42.5.0-beta.1 2,480 9/7/2023
42.4.0 90,471 9/7/2023
42.4.0-beta.1 1,171 9/1/2023
42.3.0 71,237 8/31/2023
42.2.0 117,796 8/24/2023
42.1.0 67,021 8/17/2023
42.0.0 16,684 8/16/2023
42.0.0-beta.1 191 8/24/2023
41.29.0-beta.1 4,804 8/11/2023
41.28.0 241,301 8/11/2023
41.28.0-beta.1 2,116 8/3/2023
41.27.0 103,433 8/3/2023
41.27.0-beta.1 1,694 7/28/2023
41.26.0 99,930 7/27/2023
41.25.0 119,156 7/20/2023
41.25.0-beta.1 925 7/13/2023
41.24.0 100,858 7/13/2023
41.23.0 119,050 7/6/2023
41.23.0-beta.1 6,449 6/30/2023
41.22.0 91,928 6/29/2023
41.22.0-beta.1 409 6/22/2023
41.21.0 96,761 6/22/2023
41.21.0-beta.2 2,802 6/15/2023
41.21.0-beta.1 463 6/8/2023
41.20.0 196,027 6/8/2023
41.20.0-beta.1 585 6/1/2023
41.19.0 128,040 6/1/2023
41.19.0-beta.1 2,543 5/25/2023
41.18.0 302,805 5/25/2023
41.18.0-beta.1 579 5/19/2023
41.17.0 103,823 5/19/2023
41.17.0-beta.1 1,886 5/11/2023
41.16.0 2,603,086 5/11/2023
41.16.0-beta.1 818 5/5/2023
41.15.0 124,223 5/4/2023
41.15.0-beta.1 743 4/27/2023
41.14.0 153,912 4/27/2023
41.14.0-beta.3 682 4/20/2023
41.14.0-beta.2 1,493 4/13/2023
41.14.0-beta.1 1,333 4/6/2023
41.13.0 413,544 4/6/2023
41.13.0-beta.1 2,600 3/30/2023
41.12.0 139,092 3/30/2023
41.12.0-beta.1 847 3/24/2023
41.11.0 104,236 3/23/2023
41.11.0-beta.1 4,191 3/17/2023
41.10.0 96,813 3/17/2023
41.10.0-beta.1 2,276 3/9/2023
41.9.0 307,894 3/9/2023
41.9.0-beta.1 8,577 3/3/2023
41.8.0 79,633 3/2/2023
41.8.0-beta.2 954 2/24/2023
41.8.0-beta.1 1,891 2/17/2023
41.7.0 210,386 2/16/2023
41.7.0-beta.1 5,845 2/2/2023
41.6.0 275,434 2/2/2023
41.6.0-beta.2 627 1/27/2023
41.6.0-beta.1 1,279 1/19/2023
41.5.0 222,127 1/19/2023
41.5.0-beta.2 448 1/12/2023
41.5.0-beta.1 4,789 1/5/2023
41.4.0 227,300 1/5/2023
41.4.0-beta.1 1,408 12/22/2022
41.3.0 127,842 12/22/2022
41.3.0-beta.2 3,814 12/16/2022
41.3.0-beta.1 4,280 12/8/2022
41.2.0 206,099 12/6/2022
41.1.0 368,649 11/17/2022
41.0.0 35,692 11/16/2022
40.17.0-beta.1 909 11/10/2022
40.16.0 297,425 11/8/2022
40.15.0 252,902 11/3/2022
40.15.0-beta.2 603 11/2/2022
40.15.0-beta.1 4,549 10/22/2022
40.14.0 186,250 10/20/2022
40.14.0-beta.1 1,003 10/14/2022
40.13.0 220,788 10/13/2022
40.13.0-beta.1 2,287 10/7/2022
40.12.0 80,112 10/6/2022
40.12.0-beta.2 296 10/4/2022
40.12.0-beta.1 268 10/4/2022
40.11.0 102,371 9/29/2022
40.11.0-beta.1 971 9/26/2022
40.10.0 109,533 9/22/2022
40.9.0 132,774 9/15/2022
40.8.0 128,082 9/9/2022
40.7.0 83,730 9/6/2022
40.6.0 142,193 8/31/2022
40.5.0 78,223 8/26/2022
40.5.0-beta.1 662 8/26/2022
40.4.0 211,376 8/23/2022
40.4.0-beta.1 771 8/23/2022
40.3.0 158,609 8/19/2022
40.3.0-beta.1 475 8/11/2022
40.2.0 123,487 8/11/2022
40.1.0 66,778 8/9/2022
40.1.0-beta.1 324 8/3/2022
40.0.0 282,554 8/2/2022
39.126.0 545,175 7/26/2022
39.125.0 103,362 7/25/2022
39.125.0-beta.1 385 7/22/2022
39.124.0 156,404 7/18/2022
39.123.0 252,036 7/12/2022
39.123.0-beta.1 1,749 7/7/2022
39.122.0 113,949 7/7/2022
39.121.0 277,997 6/29/2022
39.120.0 98,497 6/23/2022
39.119.0 131,147 6/17/2022
39.119.0-beta.1 432 6/15/2022
39.118.0 138,463 6/9/2022
39.117.0 45,701 6/8/2022
39.116.0 102,521 6/1/2022
39.115.0 97,019 5/26/2022
39.114.0 124,236 5/23/2022
39.113.0 11,589 5/23/2022
39.112.0 36,844 5/20/2022
39.111.0 303,299 5/11/2022
39.110.0 218,098 5/5/2022
39.109.0 8,691 5/5/2022
39.108.0 29,710 5/3/2022
39.107.0 133,798 4/21/2022
39.106.0 338,934 4/20/2022
39.105.0 244,738 4/13/2022
39.104.0 183,470 4/8/2022
39.103.0 195,839 4/1/2022
39.102.0 30,047 3/30/2022
39.101.0 17,849 3/29/2022
39.100.0 67,065 3/25/2022
39.99.0 61,476 3/23/2022
39.98.0 71,282 3/18/2022
39.97.0 197,889 3/11/2022
39.96.0 91,863 3/9/2022
39.95.0 126,149 3/2/2022
39.94.0 7,697 3/2/2022
39.93.0 58,946 2/26/2022
39.92.0 36,453 2/23/2022
39.91.0 479,465 2/16/2022
39.90.0 136,981 2/6/2022
39.89.0 325,675 1/25/2022
39.88.0 93,395 1/20/2022
39.87.0 13,128 1/19/2022
39.86.0 58,246 1/13/2022
39.85.0 32,791 1/12/2022
39.84.0 273,686 12/22/2021
39.83.0 101,002 12/15/2021
39.82.0 65,711 12/9/2021
39.81.0 10,529 12/9/2021
39.80.0 542,463 11/20/2021
39.79.0 20,236 11/17/2021
39.78.1 11,180 11/16/2021
39.78.0 3,496 11/16/2021
39.77.0 45,296 11/11/2021
39.76.0 123,780 11/4/2021
39.75.1 5,739 11/4/2021
39.75.0 143,276 11/1/2021
39.74.0 253,711 10/20/2021
39.73.0 121,269 10/11/2021
39.72.0 7,717 10/11/2021
39.71.0 26,280 10/7/2021
39.70.0 73,810 9/29/2021
39.69.0 66,080 9/24/2021
39.68.0 206,883 9/16/2021
39.67.0 7,012 9/15/2021
39.66.0 128,670 9/2/2021
39.65.0 4,755 9/1/2021
39.64.0 199,209 8/27/2021
39.63.0 241,497 8/11/2021
39.62.0 165,094 7/28/2021
39.61.0 122,172 7/22/2021
39.60.0 19,406 7/21/2021
39.59.0 236,039 7/14/2021
39.58.0 61,586 7/9/2021
39.57.0 95,593 6/30/2021
39.56.1 5,452 6/30/2021
39.56.0 9,076 6/29/2021 39.56.0 is deprecated because it has critical bugs.
39.55.0 42,583 6/25/2021
39.54.0 69,191 6/16/2021
39.53.0 343,252 6/7/2021
39.52.0 32,021 6/4/2021
39.51.0 62,537 6/4/2021
39.50.0 221,567 5/26/2021
39.49.0 87,783 5/20/2021
39.48.0 169,481 5/7/2021
39.47.0 49,658 5/6/2021
39.46.0 4,094 5/5/2021
39.45.0 139,810 4/16/2021
39.44.0 155,387 4/12/2021
39.43.0 137,381 4/3/2021
39.42.0 152,607 3/31/2021
39.41.0 121,738 3/26/2021
39.40.0 175,435 3/22/2021
39.39.0 218,327 3/1/2021
39.38.0 294,411 2/23/2021
39.37.0 86,066 2/18/2021
39.36.0 14,890 2/17/2021
39.35.0 102,743 2/9/2021
39.34.0 135,587 2/3/2021
39.33.0 236,632 1/21/2021
39.32.0 136,814 1/7/2021
39.31.0 273,641 12/16/2020
39.30.0 67,098 12/11/2020
39.29.0 179,209 12/4/2020
39.28.0 207,636 11/24/2020
39.27.0 53,204 11/20/2020
39.26.0 15,055 11/19/2020
39.25.0 26,418 11/18/2020
39.24.0 9,300 11/18/2020
39.23.0 211,356 11/9/2020
39.22.0 45,215 11/4/2020
39.21.0 76,198 10/29/2020
39.20.0 24,985 10/27/2020
39.19.0 37,706 10/26/2020
39.18.0 15,560 10/23/2020
39.17.0 13,811 10/23/2020
39.16.0 121,211 10/14/2020
39.15.0 20,815 10/13/2020
39.14.0 5,113 10/12/2020
39.13.0 23,109 10/9/2020
39.12.0 24,916 10/9/2020
39.11.0 120,163 10/3/2020
39.10.0 39,507 9/30/2020
39.9.0 17,564 9/30/2020
39.8.0 17,735 9/29/2020
39.7.0 45,501 9/25/2020
39.6.0 27,474 9/23/2020
39.5.0 54,462 9/22/2020
39.4.0 111,188 9/13/2020
39.3.0 93,029 9/8/2020
39.2.0 50,075 9/3/2020
39.1.2 49,433 9/1/2020
37.35.0 441,394 8/27/2020
37.34.0 121,977 8/19/2020
37.33.0 40,730 8/18/2020
37.32.0 8,421 8/17/2020
37.31.0 25,269 8/13/2020
37.30.0 74,311 8/7/2020
37.29.0 34,527 8/6/2020
37.28.0 14,362 8/4/2020
37.27.0 77,277 7/29/2020
37.26.0 134,937 7/25/2020
37.25.0 6,110 7/25/2020
37.24.0 22,133 7/22/2020
37.23.0 9,160 7/21/2020
37.22.0 5,363 7/21/2020
37.21.0 10,585 7/21/2020
37.20.0 14,720 7/18/2020
37.19.0 6,892 7/17/2020
37.18.0 84,238 7/15/2020
37.17.0 41,349 7/13/2020
37.16.0 103,776 7/6/2020
37.15.1 37,122 7/3/2020
37.15.0 32,330 7/1/2020
37.14.0 196,614 6/25/2020
37.13.0 40,342 6/23/2020
37.12.0 35,712 6/22/2020
37.11.0 15,732 6/18/2020
37.10.0 88,304 6/11/2020
37.9.0 10,174 6/11/2020
37.8.0 209,683 6/3/2020
37.7.0 4,343 6/3/2020
37.6.0 56,683 5/29/2020
37.5.0 31,204 5/28/2020
37.4.0 149,247 5/22/2020
37.3.0 81,162 5/21/2020
37.2.0 4,365 5/20/2020
37.1.0 68,015 5/19/2020
37.0.0 68,424 5/18/2020
36.12.2 76,139 5/14/2020
36.12.1 4,085 5/14/2020
36.12.0 4,210 5/13/2020
36.11.0 77,226 5/12/2020
36.10.0 17,673 5/11/2020
36.9.0 27,506 5/8/2020
36.8.1 38,950 5/5/2020
36.8.0 30,010 5/1/2020
36.7.0 17,618 4/29/2020
36.6.0 29,879 4/24/2020
36.5.0 23,022 4/22/2020
36.4.0 4,524 4/22/2020
36.3.0 8,840 4/21/2020
36.2.0 20,921 4/18/2020
36.1.0 17,390 4/17/2020
36.0.0 12,529 4/16/2020
35.17.0 32,024 4/14/2020
35.16.0 20,879 4/13/2020
35.15.0 6,398 4/13/2020
35.14.0 15,764 4/10/2020
35.13.0 5,331 4/9/2020
35.12.1 193,131 4/8/2020
35.12.0 52,292 4/3/2020
35.11.1 221,726 3/31/2020
35.11.0 36,541 3/31/2020
35.10.0 52,726 3/26/2020
35.9.0 41,847 3/25/2020
35.8.0 7,729 3/24/2020
35.7.1 6,252 3/23/2020
35.7.0 36,618 3/20/2020
35.6.0 304,310 3/13/2020
35.5.0 7,143 3/12/2020
35.4.0 5,314 3/12/2020
35.3.0 89,593 3/5/2020
35.2.0 4,508 3/4/2020
35.1.0 7,092 3/4/2020
35.0.0 26,648 3/4/2020
34.26.0 111,120 2/24/2020
34.25.0 21,475 2/21/2020
34.24.0 8,983 2/21/2020
34.23.0 124,746 2/17/2020
34.22.0 36,699 2/13/2020
34.21.0 5,428 2/12/2020
34.20.1 10,348 2/12/2020
34.20.0 83,658 2/6/2020
34.19.0 49,433 2/3/2020
34.18.0 55,815 1/31/2020
34.17.0 57,928 1/25/2020
34.16.1 12,361 1/22/2020
34.16.0 42,665 1/17/2020
34.15.0 281,199 1/15/2020
34.14.0 7,124 1/14/2020
34.13.0 59,921 1/10/2020
34.12.0 24,523 1/6/2020
34.11.0 15,578 1/4/2020
34.10.1 9,042 1/3/2020
34.10.0 30,121 12/31/2019
34.9.0 105,154 12/24/2019
34.8.0 33,592 12/21/2019
34.7.0 10,027 12/19/2019
34.6.0 30,525 12/17/2019
34.5.0 58,844 12/13/2019
34.4.0 7,431 12/12/2019
34.3.0 30,740 12/9/2019
34.2.0 4,128 12/9/2019
34.1.0 102,030 12/4/2019
34.0.0 21,339 12/4/2019
33.9.0 46,754 12/2/2019
33.8.0 35,596 11/26/2019
33.7.0 20,593 11/25/2019
33.6.0 19,329 11/22/2019
33.5.0 8,929 11/21/2019
33.4.0 14,312 11/19/2019
33.3.0 74,869 11/8/2019
33.2.0 9,437 11/7/2019
33.1.0 13,747 11/6/2019
33.0.0 27,037 11/6/2019
32.2.0 33,565 11/4/2019
32.1.3 38,746 10/28/2019
32.1.2 8,216 10/25/2019
32.1.1 3,589 10/24/2019
32.1.0 14,792 10/24/2019
32.0.0 22,290 10/19/2019
31.2.0 5,349 10/18/2019
31.1.0 110,471 10/11/2019
31.0.0 5,390 10/10/2019
30.1.0 47,714 10/10/2019
30.0.1 5,621 10/9/2019
30.0.0 37,977 10/9/2019
29.6.0 54,428 10/3/2019
29.5.0 63,445 9/27/2019
29.4.0 21,844 9/26/2019
29.3.0 10,194 9/26/2019
29.2.1 27,961 9/23/2019
29.2.0 38,847 9/19/2019
29.1.0 162,950 9/13/2019
29.0.1 12,530 9/12/2019
29.0.0 92,885 9/10/2019
28.11.0 49,115 9/9/2019
28.10.0 92,812 9/4/2019
28.9.0 21,418 9/3/2019
28.8.0 306,846 8/30/2019
28.7.0 4,847 8/29/2019
28.6.0 174,172 8/27/2019
28.5.0 57,114 8/23/2019
28.4.0 21,508 8/21/2019
28.3.0 17,272 8/20/2019
28.2.0 159,912 8/16/2019
28.1.0 47,998 8/15/2019
28.0.0 57,684 8/14/2019
27.25.1 10,791 8/14/2019
27.24.0 60,110 8/9/2019
27.23.0 9,976 8/8/2019
27.22.0 4,092 8/8/2019
27.21.0 132,852 8/2/2019
27.20.0 30,029 8/1/2019
27.19.0 33,476 7/31/2019
27.18.0 30,520 7/26/2019
27.17.0 13,119 7/25/2019
27.16.1 117,555 7/23/2019
27.16.0 59,082 7/22/2019
27.15.0 97,432 7/19/2019
27.14.0 35,481 7/18/2019
27.13.0 43,768 7/16/2019
27.12.0 5,659 7/15/2019
27.11.0 28,959 7/11/2019
27.10.0 20,578 7/10/2019
27.9.1 37,246 7/10/2019
27.9.0 36,959 7/5/2019
27.8.1 50,346 7/3/2019
27.8.0 8,779 7/2/2019
27.7.0 4,363 7/2/2019
27.6.0 6,176 7/1/2019
27.5.0 11,151 7/1/2019
27.4.0 23,901 6/26/2019
27.3.2 55,444 6/20/2019
27.3.1 24,245 6/18/2019
27.3.0 9,789 6/17/2019
27.2.0 31,026 6/14/2019
27.1.3 10,729 6/12/2019
27.1.2 11,556 6/11/2019
27.1.1 4,081 6/10/2019
27.1.0 4,650 6/10/2019
27.0.0 14,538 6/7/2019
26.1.0 21,809 6/6/2019
26.0.0 127,912 5/24/2019
25.19.1 20,081 5/22/2019
25.19.0 37,880 5/17/2019
25.18.0 18,544 5/14/2019
25.17.0 17,239 5/10/2019
25.16.1 19,115 5/8/2019
25.16.0 12,910 5/6/2019
25.15.0 52,413 5/4/2019
25.14.0 7,008 5/3/2019
25.13.0 25,611 4/30/2019
25.12.0 25,796 4/25/2019
25.11.0 3,896 4/24/2019
25.10.0 38,000 4/23/2019
25.9.0 18,721 4/18/2019
25.8.0 66,591 4/17/2019
25.7.1 4,500 4/16/2019
25.7.0 10,907 4/15/2019
25.6.0 35,636 4/10/2019
25.5.0 3,792 4/9/2019
25.4.0 14,272 4/5/2019
25.3.0 163,439 3/29/2019
25.2.0 28,619 3/25/2019
25.1.0 15,462 3/22/2019
25.0.0 28,483 3/19/2019
24.6.0 14,732 3/19/2019
24.5.0 40,920 3/14/2019
24.4.1 26,727 3/11/2019
24.3.0 40,008 3/7/2019
24.2.0 4,953 3/6/2019
24.1.0 37,837 2/28/2019
24.0.2 169,637 2/20/2019
24.0.1 4,574 2/20/2019
23.2.0 4,268 2/19/2019
23.1.0 6,947 2/18/2019
23.0.0 16,179 2/14/2019
22.9.0 10,785 2/12/2019
22.8.1 42,799 2/4/2019
22.8.0 88,459 1/25/2019
22.7.0 34,462 1/20/2019
22.6.0 7,187 1/18/2019
22.5.0 4,709 1/17/2019
22.4.0 30,609 1/10/2019
22.3.0 40,600 1/9/2019
22.2.0 4,345 1/9/2019
22.1.0 7,151 1/8/2019
22.0.0 11,503 1/7/2019
21.9.0 30,058 1/3/2019
21.8.1 5,262 1/3/2019
21.8.0 43,004 12/27/2018
21.7.1 14,486 12/21/2018
21.7.0 252,487 11/28/2018
21.6.0 13,461 11/27/2018
21.5.0 35,681 11/26/2018
21.4.1 29,424 11/16/2018
21.4.0 9,769 11/14/2018
21.3.0 4,325 11/14/2018
21.2.0 10,725 11/12/2018
21.1.0 11,834 11/9/2018
21.0.0 8,788 11/9/2018
20.4.1 10,539 11/8/2018
20.4.0 21,532 11/5/2018
20.3.0 10,235 10/31/2018
20.2.0 18,743 10/25/2018
20.1.0 20,421 10/23/2018
20.0.0 6,738 10/22/2018
19.10.0 270,584 10/9/2018
19.9.2 40,299 9/28/2018
19.9.1 10,423 9/27/2018
19.9.0 134,408 9/26/2018
19.8.0 17,099 9/24/2018
19.7.0 98,849 9/20/2018
19.6.0 47,844 9/11/2018
19.5.0 22,050 9/6/2018
19.4.0 6,309 9/6/2018
19.3.0 19,146 9/4/2018
19.2.0 27,199 8/29/2018
19.1.0 9,383 8/28/2018
19.0.1 5,643 8/27/2018
18.0.0 28,122 8/23/2018
17.11.0 27,495 8/23/2018
17.10.0 15,499 8/21/2018
17.9.0 15,140 8/16/2018
17.8.0 320,603 8/3/2018
17.7.0 43,631 7/31/2018
17.6.0 32,238 7/27/2018
17.5.0 8,048 7/26/2018
17.4.0 17,689 7/23/2018
17.3.1 85,374 7/16/2018
17.3.0 17,193 7/13/2018
17.2.0 4,609 7/13/2018
17.1.0 6,249 7/12/2018
17.0.0 5,366 7/11/2018
16.16.1 35,182 7/11/2018
16.16.0 17,025 7/6/2018
16.14.0 31,506 6/29/2018
16.13.0 5,448 6/28/2018
16.12.0 45,107 6/20/2018
16.11.0 4,453 6/20/2018
16.10.0 93,680 6/13/2018
16.9.0 17,022 6/12/2018
16.8.0 5,375 6/12/2018
16.7.0 15,947 6/6/2018
16.6.0 4,792 6/6/2018
16.5.0 7,692 6/6/2018
16.4.0 26,574 6/1/2018
16.3.0 49,215 5/23/2018
16.1.0 113,840 5/10/2018
16.0.0 5,928 5/10/2018
15.8.0 13,441 5/8/2018
15.7.0 11,432 5/3/2018
15.6.2 30,948 4/25/2018
15.6.1 81,046 4/19/2018
15.6.0 36,083 4/18/2018
15.5.0 15,118 4/16/2018
15.3.2 195,039 4/9/2018
15.3.1 14,779 4/6/2018
15.3.0 42,367 4/4/2018
15.2.1 58,186 3/27/2018
15.2.0 5,251 3/26/2018
15.1.0 8,993 3/23/2018
15.0.0 27,077 3/21/2018
14.0.0 14,631 3/16/2018
13.5.0 30,341 3/15/2018
13.4.0 9,170 3/13/2018
13.3.1 27,769 3/5/2018
13.3.0 18,177 3/1/2018
13.2.0 9,271 2/27/2018
13.1.0 621,457 2/22/2018
13.0.1 11,385 2/19/2018
13.0.0 32,280 2/13/2018
12.1.0 245,167 1/19/2018
12.0.0 12,188 1/16/2018
11.10.0 69,426 12/26/2017
11.9.0 74,222 11/29/2017
11.8.2 17,252 11/23/2017
11.8.1 14,572 11/23/2017
11.7.1 86,108 10/31/2017
11.7.0 4,639 10/31/2017
11.6.1 22,432 10/24/2017
11.6.0 39,011 10/19/2017
11.5.0 42,063 10/17/2017
11.4.0 7,573 10/13/2017
11.3.0 6,115 10/11/2017
11.2.0 9,328 10/10/2017
11.1.0 4,461 10/10/2017
11.0.0 17,525 10/10/2017
10.4.0 250,382 8/8/2017
10.3.0 59,270 7/14/2017
10.2.0 67,025 6/28/2017
10.1.0 5,514 6/27/2017
10.0.0 57,127 6/6/2017
9.1.0 21,339 6/1/2017
9.0.0 52,496 5/13/2017
8.4.0 21,626 5/5/2017
8.3.0 7,709 5/2/2017
8.2.0 29,554 4/27/2017
8.1.1 15,100 4/19/2017
8.1.0 4,802 4/19/2017
8.0.0 12,077 4/13/2017
7.63.0 3,726 11/17/2020 7.63.0 is deprecated.
7.8.0 49,784 4/6/2017
7.7.0 10,196 4/1/2017
7.6.1 11,739 3/28/2017
7.6.0 22,955 3/17/2017
7.5.0 5,316 3/16/2017
7.4.0 13,712 3/7/2017
7.3.0 32,273 3/3/2017
7.2.0 17,242 2/28/2017
7.1.2 11,338 2/24/2017
7.1.1 6,905 2/23/2017
7.1.0 11,047 2/21/2017
7.0.5 66,436 2/21/2017
7.0.4 46,382 2/11/2017
7.0.3 45,407 1/19/2017
7.0.2 36,270 1/10/2017
7.0.1 21,014 12/25/2016
7.0.0 33,016 12/19/2016
6.13.0 14,904 12/17/2016
6.12.1 5,098 12/16/2016
6.12.0 82,578 11/29/2016
6.11.1 19,772 11/21/2016
6.11.0 10,974 11/8/2016
6.10.0 13,565 10/29/2016
6.9.0 71,622 10/18/2016
6.8.0 31,252 10/4/2016
6.7.0 16,597 9/26/2016
6.6.0 18,893 9/11/2016
6.5.0 29,020 9/1/2016
6.4.0 67,974 8/6/2016
6.3.6 23,081 7/29/2016
6.3.5 18,408 7/6/2016
6.3.4 35,147 6/25/2016
6.3.3 80,643 5/14/2016
6.3.2 41,058 4/25/2016
6.3.1 28,551 4/17/2016
6.3.0 4,707 4/17/2016
6.2.2 13,495 4/12/2016
6.2.1 7,388 4/4/2016
6.2.0 4,722 4/3/2016
6.1.1 4,611 4/1/2016
6.1.0 36,685 3/25/2016
6.0.1 38,427 3/15/2016
6.0.0 14,652 3/10/2016
5.3.0 54,071 2/14/2016
5.2.0 18,840 1/25/2016
5.1.3 11,880 1/8/2016
5.1.2 60,075 12/2/2015
5.1.1 8,983 11/29/2015
5.1.0 7,256 11/28/2015
5.0.1 48,909 11/19/2015
5.0.0 12,823 10/23/2015
4.2.1 18,390 9/13/2015
4.2.0 57,387 7/26/2015
4.1.0 11,251 7/11/2015
4.0.2 9,507 7/3/2015
4.0.1 14,962 7/2/2015
4.0.0 4,744 7/2/2015
3.0.2 11,468 6/17/2015
3.0.1 4,885 6/17/2015
3.0.0 7,237 5/28/2015
2.9.0 90,422 4/12/2015
2.8.0 30,415 3/14/2015
2.7.2 15,747 2/17/2015
2.7.1 5,354 2/17/2015
2.7.0 5,174 2/16/2015
2.6.0 5,570 2/14/2015
2.5.1 11,578 2/7/2015
2.5.0 5,425 1/31/2015
2.4.1 4,834 1/31/2015
2.4.0 5,289 1/25/2015
2.3.5 7,737 1/21/2015
2.3.4 23,817 12/4/2014
2.3.3 26,457 11/3/2014
2.3.2 5,520 10/26/2014
2.3.1 4,932 10/26/2014
2.3.0 12,428 9/4/2014
2.2.6 46,544 7/15/2014
2.2.5 9,452 6/22/2014
2.2.4 5,514 6/17/2014
2.2.3 5,394 6/13/2014
2.2.2 7,815 5/29/2014
2.2.1 4,958 5/28/2014
2.2.0 4,682 5/27/2014
2.1.2 5,424 5/14/2014
2.1.1 5,322 5/13/2014
2.1.0 7,305 4/20/2014
2.0.1 5,675 4/13/2014
2.0.0 5,695 4/5/2014
1.7.7 7,022 3/17/2014
1.7.6 19,749 1/18/2014
1.7.5 5,044 1/12/2014
1.7.4 6,480 12/25/2013
1.7.3 4,643 12/25/2013
1.7.2 4,667 12/24/2013
1.7.1 5,623 12/1/2013
1.7.0 7,409 11/3/2013
1.6.3 6,391 10/19/2013
1.6.2 8,853 8/30/2013
1.6.1 7,882 8/15/2013
1.6.0 4,613 8/10/2013
1.5.7 7,068 7/18/2013
1.5.6 5,335 6/30/2013
1.5.5 19,159 5/27/2013
1.5.4 5,506 5/7/2013
1.5.3 6,220 3/30/2013
1.5.2 4,766 3/26/2013
1.5.1 4,833 3/13/2013
1.5.0 4,836 3/4/2013
1.4.3 4,506 3/4/2013
1.4.2 4,778 3/4/2013
1.4.1 4,826 2/24/2013
1.4.0 4,852 2/12/2013
1.3.1 4,644 2/11/2013
1.3.0 4,617 2/11/2013
1.2.1 4,734 1/24/2013
1.2.0 5,448 12/2/2012
1.1.18 14,165 11/4/2012
1.1.17 5,490 9/7/2012
1.1.16 4,758 9/5/2012
1.1.15 4,560 8/27/2012
1.1.14 4,983 8/4/2012
1.1.13 11,504 6/10/2012
1.1.12 5,008 4/21/2012
1.1.11 5,006 4/8/2012
1.1.10 14,234 3/25/2012
1.1.9 4,637 3/5/2012
1.1.8 4,691 2/26/2012
1.1.7 4,639 2/26/2012
1.1.6 4,847 2/26/2012
0.5.2 23,078 11/28/2015