Audit.WebApi
27.1.1
dotnet add package Audit.WebApi --version 27.1.1
NuGet\Install-Package Audit.WebApi -Version 27.1.1
<PackageReference Include="Audit.WebApi" Version="27.1.1" />
paket add Audit.WebApi --version 27.1.1
#r "nuget: Audit.WebApi, 27.1.1"
// Install Audit.WebApi as a Cake Addin #addin nuget:?package=Audit.WebApi&version=27.1.1 // Install Audit.WebApi as a Cake Tool #tool nuget:?package=Audit.WebApi&version=27.1.1
Audit.WebApi
ASP.NET MVC Web API Audit Extension for Audit.NET library (An extensible framework to audit executing operations in .NET).
Generate Audit Trails for ASP.NET MVC Web API calls. This library provides a configurable infrastructure to log interactions with your Asp.NET (or Asp.NET Core) Web API.
Install
NuGet Package
To install the ASP.NET package run the following command on the Package Manager Console:
PM> Install-Package Audit.WebApi
To install the Asp Net Core package:
PM> Install-Package Audit.WebApi.Core
IMPORTANT NOTE
Previously, it was possible to reference the Audit.WebApi
package for ASP.NET Core MVC.
However, starting from version 23, the Audit.WebApi
package is now exclusively designed for ASP.NET Framework MVC,
whereas the Audit.WebApi.Core
package is exclusively tailored for ASP.NET Core MVC.
Please upgrade your references accordingly.
How it works
This library is implemented as an action filter that intercepts the execution of action methods to generate a detailed audit trail.
For Asp.NET Core, it is also implemented as a Middleware class that can be configured to log requests that does not reach the action filter (i.e. unsolved routes, parsing errors, etc).
Usage
The audit can be enabled in different ways:
- Local Action Filter: Decorating the controllers/actions to be audited with
AuditApi
action filter attribute. - Global Action Filter: Adding the
AuditApiGlobalFilter
action filter as a global filter. This method allows more dynamic configuration of the audit settings. - Middleware (Asp.Net Core): Adding the
AuditMiddleware
to the pipeline. This method allow to audit request that doesn't get to the action filter. - Middleware + Action Filters (Asp.Net Core): Adding the Audit Middleware together with the Global Action Filter (or Local Action Filters). This is the recommended approach.
1- Local Action Filter
Decorate your controller with AuditApiAttribute
:
using Audit.WebApi;
public class UsersController : ApiController
{
[AuditApi]
public IEnumerable<ApplicationUser> Get()
{
//...
}
[AuditApi(EventTypeName = "GetUser",
IncludeHeaders = true, IncludeResponseHeaders = true, IncludeResponseBody = true, IncludeRequestBody = true, IncludeModelState = true)]
public IHttpActionResult Get(string id)
{
//...
}
}
You can also decorate the controller class with the AuditApi
attribute so it will apply to all the actions, for example:
using Audit.WebApi;
[AuditApi(EventTypeName = "{controller}/{action} ({verb})", IncludeResponseBody = true, IncludeRequestBody = true, IncludeModelState = true)]
public class UsersController : ApiController
{
public IEnumerable<ApplicationUser> Get()
{
//...
}
public IHttpActionResult Get(string id)
{
//...
}
}
You can also add the AuditApiAttribute
as a global filter, for example for Asp.NET Core:
using Audit.WebApi;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(_ => _
.Filters.Add(new AuditApiAttribute()));
}
}
Note
For custom configuration it is recommended to use the
AuditApiGlobalFilter
as a global filter. See next section.
2- Global Action Filter
Alternatively, you can add one or more AuditApiGlobalFilter
as global action filters.
This method allows to dynamically change the audit settings as functions of the context, via a fluent API.
Note this action filter cannot be used to statically decorate the controllers.
using Audit.WebApi;
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(mvc =>
{
mvc.AddAuditFilter(config => config
.LogActionIf(d => d.ControllerName == "Orders" && d.ActionName != "GetOrder")
.WithEventType("{verb}.{controller}.{action}")
.IncludeHeaders(ctx => !ctx.ModelState.IsValid)
.IncludeRequestBody()
.IncludeModelState()
.IncludeResponseBody(ctx => ctx.HttpContext.Response.StatusCode == 200));
});
}
3- Middleware
For Asp.NET Core, you can additionally (or alternatively) configure a middleware to be able to log requests that doesn't get into an action filter (i.e. request that cannot be routed, etc).
On your startup Configure
method, call the UseAuditMiddleware()
extension method:
using Audit.WebApi;
public class Startup
{
public void Configure(IApplicationBuilder app)
{
app.UseAuditMiddleware(_ => _
.FilterByRequest(rq => !rq.Path.Value.EndsWith("favicon.ico"))
.WithEventType("{verb}:{url}")
.IncludeHeaders()
.IncludeResponseHeaders()
.IncludeRequestBody()
.IncludeResponseBody());
app.UseMvc();
}
}
Warning
You should call
UseAuditMiddleware()
beforeUseMvc()
, otherwise the middleware will not be able to process MVC actions.
If you only configure the middleware (no audit action filters) but want to ignore actions via [AuditIgnoreAttribute]
, you must
add an action filter to discard the AuditScope
. This is needed because the middleware cannot inspect the
MVC action attributes. You can use the AuditIgnoreActionFilter
for this purpose, adding it to the MVC pipeline like this:
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc(mvc =>
{
mvc.Filters.Add(new AuditIgnoreActionFilter());
});
}
4- Middleware + Action Filters
You can mix the Audit Middleware together with the Global Action Filter (and/or Local Action Filters). Take into account that:
- Middleware will log any request regardless if an MVC action is reached or not.
- If an action is reached, the Action Filter will include specific MVC context info to the Audit Event.
- Only one Audit Event is generated per request, regardless of an action being processed by the Middleware and multiple Action Filters.
- The
AuditIgnore
attribute is handled by the Action Filters, there is no need to add theAuditIgnoreActionFilter
to the MVC filters when using a mixed approach.
Configuration
Output
The audit events are stored using a Data Provider. You can use one of the available data providers or implement your own. Please refer to the data providers section on Audit.NET documentation.
You can setup the data provider to use by registering an instance of an AuditDataProdiver
to the IServiceCollection
on your start-up code, for example:
var dataProvider = new FileDataProvider(cfg => cfg.Directory(@"C:\Logs"));
services.AddSingleton<AuditDataProvider>(dataProvider);
Or, alternatively, you can setup the data provider globally with the static configuration:
Audit.Core.Configuration.DataProvider = new FileDataProvider(cfg => cfg.Directory(@"C:\Logs"));
Or using the fluent API:
Audit.Core.Configuration.Setup()
.UseFileLogProvider(cfg => cfg.Directory(@"C:\Logs"));
Settings (Action Filter)
The AuditApiAttribute
can be configured with the following properties:
- EventTypeName: A string that identifies the event type. Can contain the following placeholders:
- {controller}: replaced with the controller name.
- {action}: replaced with the action method name.
- {verb}: replaced with the HTTP verb used (GET, POST, etc).
- IncludeHeaders: Boolean to indicate whether to include the Http Request Headers or not. Default is false.
- IncludeResponseHeaders: Boolean to indicate whether to include the Http Response Headers or not. Default is false.
- IncludeRequestBody: Boolean to indicate whether to include or exclude the request body from the logs. Default is false. (Check the following note)
- IncludeResponseBody: Boolean to indicate whether to include response body or not. Default is false.
- IncludeResponseBodyFor: Alternative to IncludeResponseBody, to allow conditionally including the response body on the log, when certain Http Status Codes are returned.
- ExcludeResponseBodyFor: Alternative to IncludeResponseBody, to allow conditionally excluding the response body from the log, when certain Http Status Codes are returned.
- IncludeModelState: Boolean to indicate whether to include the Model State info or not. Default is false.
- SerializeActionParameters: Boolean to indicate whether the action arguments should be pre-serialized to the audit event. Default is false.
The AuditApiGlobalFilter
can be configured with the following methods:
- LogActionIf() / LogRequestIf(): A function of the
ContollerActionDescriptor
/HttpRequest
to determine whether the action should be logged or not. - WithEventType(): A string (or a function of the executing context that returns a string) that identifies the event type. Can contain the following placeholders:
- {controller}: replaced with the controller name.
- {action}: replaced with the action method name.
- {verb}: replaced with the HTTP verb used (GET, POST, etc).
- {url}: replaced with the request URL.
- IncludeHeaders(): Boolean (or function of the executing context that returns a boolean) to indicate whether to include the Http Request Headers or not. Default is false.
- IncludeResponseHeaders(): Boolean (or function of the executing context that returns a boolean) to indicate whether to include the Http Response Headers or not. Default is false.
- IncludeRequestBody(): Boolean (or function of the executing context that returns a boolean) to indicate whether to include or exclude the request body from the logs. Default is false. (Check the following note)
- IncludeResponseBody(): Boolean (or function of the executed context that returns a boolean) to indicate whether to include response body or not. Default is false.
- IncludeModelState(): Boolean (or function of the executed context that returns a boolean) to indicate whether to include the Model State info or not. Default is false.
- SerializeActionParameters(): Boolean to indicate whether the action arguments should be pre-serialized to the audit event. Default is false.
To configure the output persistence mechanism please see Event Output Configuration.
NOTE
When IncludeRequestBody is set to true (or when using IncludeRequestBodyFor/ExcludeRequestBodyFor), you must enable rewind on the request body stream, otherwise, the controller won't be able to read the request body since by default, it's a forward-only stream that can be read only once. You can enable rewind on your startup logic with the following code:
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.Use(async (context, next) => { // <----
context.Request.EnableBuffering(); // or .EnableRewind();
await next();
});
app.UseMvc();
}
Settings (Middleware)
- FilterByRequest(): A function of the
HttpRequest
to determine whether the request should be logged or not, by default all requests are logged. - IncludeHeaders(): Boolean (or function of the HTTP context that returns a boolean) to indicate whether to include the Http Request Headers or not. Default is false.
- IncludeResponseHeaders(): Boolean (or function of the HTTP context that returns a boolean) to indicate whether to include the Http Response Headers or not. Default is false.
- IncludeRequestBody(): Boolean (or function of the HTTP context that returns a boolean) to indicate whether to include or exclude the request body from the logs. Default is false. (Check the following note)
- IncludeResponseBody(): Boolean (or a predicate of the HTTP context before execution) to indicate whether to include response body. The predicate is evaluated before action execution. Default is false.
- SkipResponseBodyContent(): Boolean (or a predicate of the HTTP context after execution) to indicate whether to skip or include the response body content. The predicate is evaluated after action execution. Default is false.
- WithEventType(): A string (or a function of the HTTP context that returns a string) that identifies the event type. Can contain the following placeholders (default is "{verb} {url}"):
- {verb}: replaced with the HTTP verb used (GET, POST, etc).
- {url}: replaced with the request URL.
Audit Ignore attribute
To selectively exclude certain controllers, actions, action parameters or action responses, you can decorate them with AuditIgnore
attribute.
For example:
[Route("api/[controller]")]
[AuditApi(EventTypeName = "{controller}/{action}")]
public class AccountController : Controller
{
[HttpGet]
[AuditIgnore]
public IEnumerable<string> GetAccounts()
{
// this action will not be audited
}
[HttpPost]
public IEnumerable<string> PostAccount(string user, [AuditIgnore]string password)
{
// password argument will not be audited
}
[HttpGet]
[return:AuditIgnore]
public IEnumerable<string> GetSecrets()
{
// the return value of this action will not be audited
}
}
Output details
The following table describes the Audit.WebApi output fields:
Action
Field Name | Type | Description |
---|---|---|
TraceId | string | A unique identifier per request |
HttpMethod | string | HTTP method (GET, POST, etc) |
ControllerName | string | The controller name |
ActionName | string | The action name |
FormVariables | Object | Form-data input variables passed to the action |
ActionParameters | Object | The action parameters passed |
UserName | string | Username on the HttpContext Identity |
RequestUrl | string | URL of the request |
IpAddress | string | Client IP address |
ResponseStatusCode | integer | HTTP response status code |
ResponseStatus | string | Response status description |
RequestBody | BodyContent | The request body (optional) |
ResponseBody | BodyContent | The response body (optional) |
Headers | Object | HTTP Request Headers (optional) |
ResponseHeaders | Object | HTTP Response Headers (optional) |
ModelStateValid | boolean | Boolean to indicate if the model is valid |
ModelStateErrors | string | Error description when the model is invalid |
Exception | string | The exception thrown details (if any) |
BodyContent
Field Name | Type | Description |
---|---|---|
Type | string | The body type reported |
Length | long? | The length of the body if reported |
Value | Object | The body content |
Customization
You can access the Audit Scope object for customization from the API controller action by calling the ApiController extension method GetCurrentAuditScope()
.
For example:
[AuditApi]
public class UsersController : ApiController
{
public IHttpActionResult Get(string id)
{
//...
var auditScope = this.GetCurrentAuditScope();
auditScope.Comment("New comment from controller");
auditScope.SetCustomField("TestField", Guid.NewGuid());
//...
}
}
See Audit.NET documentation about Custom Field and Comments for more information.
Output Sample
{
"EventType":"POST Values/Post",
"Environment":{
"UserName":"Federico",
"MachineName":"HP",
"DomainName":"HP",
"CallingMethodName":"WebApiTest.Controllers.ValuesController.Post()",
"AssemblyName":"WebApiTest, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null",
"Culture":"en-US"
},
"StartDate":"2017-03-09T18:03:05.5287603-06:00",
"EndDate":"2017-03-09T18:03:05.5307604-06:00",
"Duration":2,
"Action":{
"TraceId": "0HLFLQP4HGFAF_00000001",
"HttpMethod":"POST",
"ControllerName":"Values",
"ActionName":"Post",
"ActionParameters":{
"value":{
"Id":100,
"Text":"Test"
}
},
"FormVariables":{
},
"RequestUrl":"http://localhost:65080/api/values",
"IpAddress":"127.0.0.1",
"ResponseStatus":"OK",
"ResponseStatusCode":200,
"RequestBody":{
"Type":"application/json",
"Length":27,
"Value":"{ Id: 100, Text: \"Test\" }"
},
"ResponseBody":{
"Type":"SomeObject",
"Value":{
"Id":1795824380,
"Text":"Test"
}
},
"Headers": {
"Connection": "Keep-Alive",
"Accept": "text/html, application/xhtml+xml, image/jxr, */*",
"Accept-Encoding": "gzip, deflate",
"Accept-Language": "en-GB",
"Host": "localhost:37341",
"User-Agent": "Mozilla/5.0, (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0), like, Gecko"
}
}
}
Web API template (dotnet new)
If you are creating an ASP.NET Core Web API project from scratch, you can use the dotnet new template provided on the library Audit.WebApi.Template. This allows to quickly generate an audit-enabled Web API project that can be used as a starting point for your project or as a working example.
To install the template on your system, just type:
dotnet new -i Audit.WebApi.Template
Once you install the template, you should see it on the dotnet new templates list with the name webapiaudit
as follows:
You can now create a new project on the current folder by running:
dotnet new webapiaudit
This will create a new Asp.NET Core project.
You can optionally include Entity Framework Core by adding the -E
parameter
dotnet new webapiaudit -E
Also you can include a service interceptor (using Audit.DynamicProxy) for your service dependencies calls, by adding the -S
parameter
dotnet new webapiaudit -S
To get help about the options:
dotnet new webapiaudit -h
Contribute
If you like this project please contribute in any of the following ways:
- Star this project on GitHub.
- Request a new feature or expose any bug you found by creating a new issue.
- Ask any questions about the library on StackOverflow.
- Subscribe to and use the Gitter Audit.NET channel.
- Support the project by becoming a Backer:
- Spread the word by blogging about it, or sharing it on social networks: <p class="share-buttons"> <a href="https://www.facebook.com/sharer/sharer.php?u=https://nuget.org/packages/Audit.NET/&t=Check+out+Audit.NET" target="_blank"> <img width="24" height="24" alt="Share this package on Facebook" src="https://nuget.org/Content/gallery/img/facebook.svg" / > </a> <a href="https://twitter.com/intent/tweet?url=https://nuget.org/packages/Audit.NET/&text=Check+out+Audit.NET" target="_blank"> <img width="24" height="24" alt="Tweet this package" src="https://nuget.org/Content/gallery/img/twitter.svg" /> </a> </p>
- Make a donation via PayPal
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Audit.NET (>= 27.1.1)
- Microsoft.AspNet.WebApi.Core (>= 5.3.0)
- Microsoft.AspNet.WebApi.Owin (>= 5.3.0)
- System.Text.Json (>= 6.0.10)
NuGet packages (3)
Showing the top 3 NuGet packages that depend on Audit.WebApi:
Package | Downloads |
---|---|
RezisFramework
Package Description |
|
BuildingBlocks.Logging
Componente para geração de logs. |
|
TimCodes.Auditing.Web
Assists in auditing actions |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Audit.WebApi:
Repository | Stars |
---|---|
thepirat000/spleeter-api
Audio separation API using Spleeter from Deezer
|
Version | Downloads | Last updated |
---|---|---|
27.1.1 | 96 | 10/28/2024 |
27.1.0 | 85 | 10/24/2024 |
27.0.3 | 209 | 9/25/2024 |
27.0.2 | 110 | 9/19/2024 |
27.0.1 | 136 | 9/4/2024 |
27.0.0 | 100 | 9/3/2024 |
26.0.1 | 194 | 8/22/2024 |
26.0.0 | 331 | 7/19/2024 |
25.0.7 | 1,357 | 7/4/2024 |
25.0.6 | 464 | 6/24/2024 |
25.0.5 | 653 | 6/18/2024 |
25.0.4 | 2,457 | 3/24/2024 |
25.0.3 | 163 | 3/13/2024 |
25.0.2 | 257 | 3/12/2024 |
25.0.1 | 170 | 2/28/2024 |
25.0.0 | 263 | 2/16/2024 |
24.0.1 | 158 | 2/12/2024 |
24.0.0 | 120 | 2/12/2024 |
23.0.0 | 730 | 12/14/2023 |
22.1.0 | 7,771 | 12/9/2023 |
22.0.2 | 976 | 12/1/2023 |
22.0.1 | 5,674 | 11/16/2023 |
22.0.0 | 385 | 11/14/2023 |
21.1.0 | 13,615 | 10/9/2023 |
21.0.4 | 7,299 | 9/15/2023 |
21.0.3 | 12,086 | 7/9/2023 |
21.0.2 | 258 | 7/6/2023 |
21.0.1 | 19,382 | 5/27/2023 |
21.0.0 | 9,882 | 4/15/2023 |
20.2.4 | 2,767 | 3/27/2023 |
20.2.3 | 8,318 | 3/17/2023 |
20.2.2 | 344 | 3/14/2023 |
20.2.1 | 4,775 | 3/11/2023 |
20.2.0 | 815 | 3/7/2023 |
20.1.6 | 848 | 2/23/2023 |
20.1.5 | 3,565 | 2/9/2023 |
20.1.4 | 15,940 | 1/28/2023 |
20.1.3 | 5,702 | 12/21/2022 |
20.1.2 | 1,383 | 12/14/2022 |
20.1.1 | 368 | 12/12/2022 |
20.1.0 | 606 | 12/4/2022 |
20.0.4 | 2,284 | 11/30/2022 |
20.0.3 | 8,367 | 10/28/2022 |
20.0.2 | 491 | 10/26/2022 |
20.0.1 | 531 | 10/21/2022 |
20.0.0 | 7,852 | 10/1/2022 |
19.4.1 | 11,172 | 9/10/2022 |
19.4.0 | 951 | 9/2/2022 |
19.3.0 | 1,093 | 8/23/2022 |
19.2.2 | 2,936 | 8/11/2022 |
19.2.1 | 2,108 | 8/6/2022 |
19.2.0 | 2,264 | 7/24/2022 |
19.1.4 | 36,098 | 5/23/2022 |
19.1.3 | 635 | 5/22/2022 |
19.1.2 | 654 | 5/18/2022 |
19.1.1 | 1,442 | 4/28/2022 |
19.1.0 | 6,686 | 4/10/2022 |
19.0.7 | 40,082 | 3/13/2022 |
19.0.6 | 877 | 3/7/2022 |
19.0.5 | 8,016 | 1/28/2022 |
19.0.4 | 2,445 | 1/23/2022 |
19.0.3 | 7,954 | 12/14/2021 |
19.0.2 | 513 | 12/11/2021 |
19.0.1 | 8,153 | 11/20/2021 |
19.0.0 | 5,089 | 11/11/2021 |
19.0.0-rc.net60.2 | 172 | 9/26/2021 |
19.0.0-rc.net60.1 | 219 | 9/16/2021 |
18.1.6 | 41,812 | 9/26/2021 |
18.1.5 | 1,741 | 9/7/2021 |
18.1.4 | 581 | 9/6/2021 |
18.1.3 | 6,396 | 8/19/2021 |
18.1.2 | 696 | 8/8/2021 |
18.1.1 | 620 | 8/5/2021 |
18.1.0 | 1,280 | 8/1/2021 |
18.0.1 | 2,974 | 7/30/2021 |
18.0.0 | 4,509 | 7/26/2021 |
17.0.8 | 11,551 | 7/7/2021 |
17.0.7 | 1,014 | 6/16/2021 |
17.0.6 | 2,136 | 6/5/2021 |
17.0.5 | 1,456 | 5/28/2021 |
17.0.4 | 7,287 | 5/4/2021 |
17.0.3 | 673 | 5/1/2021 |
17.0.2 | 20,902 | 4/22/2021 |
17.0.1 | 660 | 4/18/2021 |
17.0.0 | 4,382 | 3/26/2021 |
16.5.6 | 2,522 | 3/25/2021 |
16.5.5 | 1,593 | 3/23/2021 |
16.5.4 | 872 | 3/9/2021 |
16.5.3 | 675 | 2/26/2021 |
16.5.2 | 880 | 2/23/2021 |
16.5.1 | 682 | 2/21/2021 |
16.5.0 | 968 | 2/17/2021 |
16.4.5 | 649 | 2/15/2021 |
16.4.4 | 2,088 | 2/5/2021 |
16.4.3 | 6,102 | 1/27/2021 |
16.4.2 | 820 | 1/22/2021 |
16.4.1 | 711 | 1/21/2021 |
16.4.0 | 2,375 | 1/11/2021 |
16.3.3 | 688 | 1/8/2021 |
16.3.2 | 823 | 1/3/2021 |
16.3.1 | 3,021 | 12/31/2020 |
16.3.0 | 670 | 12/30/2020 |
16.2.1 | 1,382 | 12/27/2020 |
16.2.0 | 10,480 | 10/13/2020 |
16.1.5 | 4,191 | 10/4/2020 |
16.1.4 | 1,837 | 9/17/2020 |
16.1.3 | 1,134 | 9/13/2020 |
16.1.2 | 725 | 9/9/2020 |
16.1.1 | 782 | 9/3/2020 |
16.1.0 | 2,191 | 8/19/2020 |
16.0.3 | 852 | 8/15/2020 |
16.0.2 | 14,682 | 8/9/2020 |
16.0.1 | 881 | 8/8/2020 |
16.0.0 | 795 | 8/7/2020 |
15.3.0 | 24,706 | 7/23/2020 |
15.2.3 | 1,713 | 7/14/2020 |
15.2.2 | 5,878 | 5/19/2020 |
15.2.1 | 7,328 | 5/12/2020 |
15.2.0 | 866 | 5/9/2020 |
15.1.1 | 983 | 5/4/2020 |
15.1.0 | 6,500 | 4/13/2020 |
15.0.5 | 5,903 | 3/18/2020 |
15.0.4 | 4,964 | 2/28/2020 |
15.0.3 | 855 | 2/26/2020 |
15.0.2 | 32,429 | 1/20/2020 |
15.0.1 | 4,439 | 1/10/2020 |
15.0.0 | 3,982 | 12/17/2019 |
14.9.1 | 1,461 | 11/30/2019 |
14.9.0 | 836 | 11/29/2019 |
14.8.1 | 4,562 | 11/26/2019 |
14.8.0 | 2,231 | 11/20/2019 |
14.7.0 | 20,978 | 10/9/2019 |
14.6.6 | 885 | 10/8/2019 |
14.6.5 | 39,290 | 9/27/2019 |
14.6.4 | 1,192 | 9/21/2019 |
14.6.3 | 7,822 | 8/12/2019 |
14.6.2 | 1,269 | 8/3/2019 |
14.6.1 | 913 | 8/3/2019 |
14.6.0 | 1,334 | 7/26/2019 |
14.5.7 | 3,281 | 7/18/2019 |
14.5.6 | 6,054 | 7/10/2019 |
14.5.5 | 1,475 | 7/1/2019 |
14.5.4 | 6,180 | 6/17/2019 |
14.5.3 | 8,289 | 6/5/2019 |
14.5.2 | 1,031 | 5/30/2019 |
14.5.1 | 889 | 5/28/2019 |
14.5.0 | 3,929 | 5/24/2019 |
14.4.0 | 1,727 | 5/22/2019 |
14.3.4 | 1,444 | 5/14/2019 |
14.3.3 | 1,133 | 5/9/2019 |
14.3.2 | 1,108 | 4/30/2019 |
14.3.1 | 1,359 | 4/27/2019 |
14.3.0 | 1,024 | 4/24/2019 |
14.2.3 | 1,004 | 4/17/2019 |
14.2.2 | 971 | 4/10/2019 |
14.2.1 | 1,832 | 4/5/2019 |
14.2.0 | 2,572 | 3/16/2019 |
14.1.1 | 1,269 | 3/8/2019 |
14.1.0 | 2,082 | 2/11/2019 |
14.0.4 | 1,416 | 1/31/2019 |
14.0.3 | 1,507 | 1/22/2019 |
14.0.2 | 17,358 | 12/15/2018 |
14.0.1 | 2,175 | 11/29/2018 |
14.0.0 | 3,820 | 11/19/2018 |
13.3.0 | 1,214 | 11/16/2018 |
13.2.2 | 1,145 | 11/15/2018 |
13.2.1 | 1,187 | 11/13/2018 |
13.2.0 | 2,048 | 10/31/2018 |
13.1.5 | 1,137 | 10/31/2018 |
13.1.4 | 1,198 | 10/25/2018 |
13.1.3 | 1,183 | 10/18/2018 |
13.1.2 | 3,761 | 9/12/2018 |
13.1.1 | 2,457 | 9/11/2018 |
13.1.0 | 1,174 | 9/11/2018 |
13.0.0 | 9,224 | 8/29/2018 |
12.3.6 | 1,252 | 8/29/2018 |
12.3.5 | 1,340 | 8/22/2018 |
12.3.4 | 1,170 | 8/21/2018 |
12.3.3 | 25,941 | 8/21/2018 |
12.3.2 | 1,199 | 8/20/2018 |
12.3.1 | 1,220 | 8/20/2018 |
12.3.0 | 1,162 | 8/20/2018 |
12.2.2 | 1,271 | 8/15/2018 |
12.2.1 | 1,263 | 8/9/2018 |
12.2.0 | 1,249 | 8/8/2018 |
12.1.11 | 1,247 | 7/30/2018 |
12.1.10 | 2,817 | 7/20/2018 |
12.1.9 | 1,338 | 7/10/2018 |
12.1.8 | 1,453 | 7/2/2018 |
12.1.7 | 5,335 | 6/7/2018 |
12.1.6 | 5,309 | 6/4/2018 |
12.1.5 | 1,402 | 6/2/2018 |
12.1.4 | 1,467 | 5/25/2018 |
12.1.3 | 2,151 | 5/16/2018 |
12.1.2 | 1,315 | 5/15/2018 |
12.1.1 | 1,397 | 5/14/2018 |
12.1.0 | 1,338 | 5/9/2018 |
12.0.7 | 1,354 | 5/5/2018 |
12.0.6 | 1,493 | 5/4/2018 |
12.0.5 | 1,503 | 5/3/2018 |
12.0.4 | 1,455 | 4/30/2018 |
12.0.3 | 1,453 | 4/30/2018 |
12.0.2 | 1,333 | 4/27/2018 |
12.0.1 | 1,621 | 4/25/2018 |
12.0.0 | 1,297 | 4/22/2018 |
11.2.0 | 7,966 | 4/11/2018 |
11.1.0 | 3,464 | 4/8/2018 |
11.0.8 | 1,454 | 3/26/2018 |
11.0.7 | 1,369 | 3/20/2018 |
11.0.6 | 4,994 | 3/7/2018 |
11.0.5 | 1,491 | 2/22/2018 |
11.0.4 | 1,506 | 2/14/2018 |
11.0.3 | 1,546 | 2/12/2018 |
11.0.2 | 1,377 | 2/9/2018 |
11.0.1 | 2,450 | 1/29/2018 |
11.0.0 | 3,125 | 1/15/2018 |
10.0.3 | 3,216 | 12/29/2017 |
10.0.2 | 1,324 | 12/26/2017 |
10.0.1 | 1,641 | 12/18/2017 |
10.0.0 | 1,288 | 12/18/2017 |
9.3.0 | 1,449 | 12/17/2017 |
9.2.0 | 1,252 | 12/17/2017 |
9.1.3 | 1,561 | 12/5/2017 |
9.1.2 | 1,616 | 11/27/2017 |
9.1.1 | 2,577 | 11/21/2017 |
9.1.0 | 1,255 | 11/21/2017 |
9.0.1 | 1,325 | 11/11/2017 |
9.0.0 | 1,315 | 11/10/2017 |
8.7.0 | 1,331 | 11/9/2017 |
8.6.0 | 1,327 | 11/9/2017 |
8.5.0 | 4,869 | 10/3/2017 |
8.4.0 | 1,230 | 10/3/2017 |
8.3.1 | 1,589 | 9/8/2017 |
8.3.0 | 1,278 | 9/8/2017 |
8.2.0 | 1,359 | 9/4/2017 |
8.1.0 | 1,472 | 8/22/2017 |
8.0.0 | 1,506 | 8/19/2017 |
7.1.3 | 1,490 | 8/14/2017 |
7.1.2 | 1,353 | 8/2/2017 |
7.1.1 | 1,356 | 7/26/2017 |
7.1.0 | 7,297 | 7/5/2017 |
7.0.9 | 1,481 | 6/28/2017 |
7.0.8 | 1,382 | 6/19/2017 |
7.0.6 | 15,621 | 4/7/2017 |
7.0.5 | 1,650 | 3/21/2017 |
7.0.4 | 1,394 | 3/21/2017 |
7.0.3 | 1,741 | 3/20/2017 |
7.0.2 | 1,421 | 3/13/2017 |
7.0.0 | 1,791 | 3/1/2017 |
6.2.0 | 1,468 | 2/25/2017 |
6.1.0 | 1,654 | 2/14/2017 |
6.0.0 | 1,348 | 2/9/2017 |
5.3.0 | 1,388 | 2/5/2017 |
5.2.0 | 1,514 | 1/26/2017 |
5.1.0 | 1,287 | 1/19/2017 |
5.0.0 | 1,335 | 1/7/2017 |
4.11.0 | 1,286 | 1/5/2017 |
4.10.0 | 1,298 | 12/31/2016 |
4.9.0 | 1,227 | 12/26/2016 |
4.8.0 | 1,449 | 12/17/2016 |
4.7.0 | 1,303 | 12/8/2016 |
4.6.5 | 1,286 | 12/4/2016 |
4.6.4 | 1,307 | 11/25/2016 |
4.6.2 | 2,328 | 11/18/2016 |
4.6.1 | 1,183 | 11/15/2016 |
4.6.0 | 1,263 | 11/11/2016 |
4.5.9 | 1,622 | 11/2/2016 |
4.5.8 | 1,310 | 11/2/2016 |
4.5.7 | 1,320 | 10/26/2016 |
4.5.6 | 1,256 | 10/6/2016 |
4.5.5 | 1,231 | 10/3/2016 |
4.5.4 | 1,225 | 10/2/2016 |
4.5.3 | 1,234 | 9/30/2016 |
4.5.2 | 1,258 | 9/28/2016 |
4.5.1 | 1,210 | 9/28/2016 |
4.5.0 | 1,269 | 9/28/2016 |
4.4.0 | 1,380 | 9/23/2016 |
4.3.0 | 1,388 | 9/22/2016 |
4.2.0 | 1,626 | 9/19/2016 |
4.1.0 | 1,244 | 9/13/2016 |
4.0.1 | 1,221 | 9/9/2016 |
4.0.0 | 1,263 | 9/9/2016 |
3.6.0 | 1,270 | 9/7/2016 |
3.4.0 | 1,254 | 9/7/2016 |
3.3.0 | 1,248 | 9/4/2016 |
3.2.0 | 1,260 | 9/3/2016 |
3.1.0 | 1,258 | 9/2/2016 |
3.0.0 | 1,556 | 8/31/2016 |
2.5.0 | 1,281 | 8/27/2016 |
2.4.0 | 1,873 | 8/26/2016 |