Serilog 3.0.0

dotnet add package Serilog --version 3.0.0
                    
NuGet\Install-Package Serilog -Version 3.0.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="Serilog" Version="3.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Serilog" Version="3.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Serilog" />
                    
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 Serilog --version 3.0.0
                    
#r "nuget: Serilog, 3.0.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Serilog@3.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Serilog&version=3.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Serilog&version=3.0.0
                    
Install as a Cake Tool

Serilog Build status NuGet Version NuGet Downloads Stack Overflow

Serilog is a diagnostic logging library for .NET applications. It is easy to set up, has a clean API, and runs on all recent .NET platforms. While it's useful even in the simplest applications, Serilog's support for structured logging shines when instrumenting complex, distributed, and asynchronous applications and systems.

Serilog

Like many other libraries for .NET, Serilog provides diagnostic logging to files, the console, and many other outputs.

var log = new LoggerConfiguration()
    .WriteTo.Console()
    .WriteTo.File("log.txt")
    .CreateLogger();

log.Information("Hello, Serilog!");

Unlike other logging libraries, Serilog is built from the ground up to record structured event data.

var position = new { Latitude = 25, Longitude = 134 };
var elapsedMs = 34;

log.Information("Processed {@Position} in {Elapsed} ms", position, elapsedMs);

Serilog uses message templates, a simple DSL that extends .NET format strings with named as well as positional parameters. Instead of formatting events immediately into text, Serilog captures the values associated with each named parameter.

The example above records two properties, Position and Elapsed, in the log event. The @ operator in front of Position tells Serilog to serialize the object passed in, rather than convert it using ToString(). Serilog's deep and rich support for structured event data opens up a huge range of diagnostic possibilities not available when using traditional loggers.

Rendered into JSON format for example, these properties appear alongside the timestamp, level, and message like:

{"Position": {"Latitude": 25, "Longitude": 134}, "Elapsed": 34}

Back-ends that are capable of recording structured event data make log searches and analysis possible without log parsing or regular expressions.

Supporting structured data doesn't mean giving up text: when Serilog writes events to files or the console, the template and properties are rendered into friendly human-readable text just like a traditional logging library would produce:

09:14:22 [INF] Processed {"Latitude": 25, "Longitude": 134} in 34 ms.

Upgrading from Serilog 1.x? Check out the 2.0 Upgrade Guide and Release Notes.

Features

  • Community-backed and actively developed
  • Format-based logging API with familiar levels like Debug, Information, Warning, Error, and so-on
  • Discoverable C# configuration syntax and optional XML or JSON configuration support
  • Efficient when enabled, extremely low overhead when a logging level is switched off
  • Best-in-class .NET Core support, including rich integration with ASP.NET Core
  • Support for a comprehensive range of sinks, including files, the console, on-premises and cloud-based log servers, databases, and message queues
  • Sophisticated enrichment of log events with contextual information, including scoped (LogContext) properties, thread and process identifiers, and domain-specific correlation ids such as HttpRequestId
  • Zero-shared-state Logger objects, with an optional global static Log class
  • Format-agnostic logging pipeline that can emit events in plain text, JSON, in-memory LogEvent objects (including Rx pipelines) and other formats

Getting started

Serilog is installed from NuGet. To view log events, one or more sinks need to be installed as well, here we'll use the pretty-printing console sink, and a rolling file set:

dotnet add package Serilog
dotnet add package Serilog.Sinks.Console
dotnet add package Serilog.Sinks.File

The simplest way to set up Serilog is using the static Log class. A LoggerConfiguration is used to create and assign the default logger.

using Serilog;

public class Program
{
    public static void Main()
    {
        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Information()
            .WriteTo.Console()
            .WriteTo.File("log.txt",
                rollingInterval: RollingInterval.Day,
                rollOnFileSizeLimit: true)
            .CreateLogger();

        Log.Information("Hello, Serilog!");

        Log.CloseAndFlush();
    }
}

Find more, including a runnable example application, under the Getting Started topic in the documentation.

Getting help

To learn more about Serilog, check out the documentation - you'll find information there on the most common scenarios. If Serilog isn't working the way you expect, you may find the troubleshooting guide useful.

Serilog has an active and helpful community who are happy to help point you in the right direction or work through any issues you might encounter. You can get in touch via:

We welcome bug reports and suggestions through our issue tracker here on GitHub.

Contributing

Would you like to help make Serilog even better? We keep a list of issues that are approachable for newcomers under the up-for-grabs label (accessible only when logged into GitHub). Before starting work on a pull request, we suggest commenting on, or raising, an issue on the issue tracker so that we can help and coordinate efforts. For more details check out our contributing guide.

When contributing please keep in mind our Code of Conduct.

Detailed build status

Branch AppVeyor
dev Build status
main Build status

Serilog is copyright © 2013-2020 Serilog Contributors - Provided under the Apache License, Version 2.0. Needle and thread logo a derivative of work by Kenneth Appiah.

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 was computed.  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 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 is compatible.  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.
  • .NETFramework 4.6.2

  • .NETFramework 4.7.1

    • No dependencies.
  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.
  • net5.0

    • No dependencies.
  • net6.0

    • No dependencies.
  • net7.0

    • No dependencies.

NuGet packages (15)

Showing the top 5 NuGet packages that depend on Serilog:

Package Downloads
Serilog.Extensions.Logging

Low-level Serilog provider for Microsoft.Extensions.Logging

Serilog.Sinks.Console

A Serilog sink that writes log events to the console/terminal.

XSockets.Server

The assemblies needed to run a XSockets.NET server

Serilog.Sinks.ApplicationInsights

Serilog event sink that writes to Microsoft Application Insights.

Serilog.Sinks.File

Write Serilog events to text files in plain or JSON format.

GitHub repositories (516)

Showing the top 20 popular GitHub repositories that depend on Serilog:

Repository Stars
netchx/netch
A simple proxy client
abpframework/abp
Open-source web application framework for ASP.NET Core! Offers an opinionated architecture to build enterprise software solutions with best practices on top of the .NET. Provides the fundamental infrastructure, cross-cutting-concern implementations, startup templates, application modules, UI themes, tooling and documentation.
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
reactiveui/refit
The automatic type-safe REST library for .NET Core, Xamarin and .NET. Heavily inspired by Square's Retrofit library, Refit turns your REST API into a live interface.
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
ThreeMammals/Ocelot
.NET API Gateway
RayWangQvQ/BiliBiliToolPro
B 站(bilibili)自动任务工具,支持docker、青龙、k8s等多种部署方式。敏感肌也能用。
microsoft/ailab
Experience, Learn and Code the latest breakthrough innovations with Microsoft AI
subhra74/xdm
Powerfull download accelerator and video downloader
btcpayserver/btcpayserver
Accept Bitcoin payments. Free, open-source & self-hosted, Bitcoin payment processor.
quartznet/quartznet
Quartz Enterprise Scheduler .NET
fullstackhero/dotnet-starter-kit
Production Grade Cloud-Ready .NET 9 Starter Kit (Web API + Blazor Client) with Multitenancy Support, and Clean/Modular Architecture that saves roughly 200+ Development Hours! All Batteries Included.
kurrent-io/KurrentDB
KurrentDB is a database that's engineered for modern software applications and event-driven architectures. Its event-native design simplifies data modeling and preserves data integrity while the integrated streaming engine solves distributed messaging challenges and ensures data consistency.
win-acme/win-acme
A simple ACME client for Windows (for use with Let's Encrypt et al.)
ServiceStack/ServiceStack
Thoughtfully architected, obscenely fast, thoroughly enjoyable web services for all
beeradmoore/dlss-swapper
anjoy8/Blog.Core
💖 ASP.NET Core 8.0 全家桶教程,前后端分离后端接口,vue教程姊妹篇,官方文档:
umbraco/Umbraco-CMS
Umbraco is a free and open source .NET content management system helping you deliver delightful digital experiences.
Sophia-Community/SophiApp
:zap: The most powerful open source tweaker on GitHub for fine-tuning Windows 10 & Windows 11
ZGGSONG/STranslate
A ready-to-go translation ocr tool developed with WPF/WPF 开发的一款即用即走的翻译、OCR工具
Version Downloads Last Updated
3.0.0 2 11/10/2025
2.10.1-dev-01285 0 3/6/2021
2.10.1-dev-01265 1 3/6/2021
2.10.1-dev-01256 1 3/6/2021
2.10.1-dev-01249 1 3/6/2021
2.10.1-dev-01248 1 3/6/2021
2.10.0 211 3/6/2021
2.10.0-dev-01245 1 3/6/2021
2.10.0-dev-01240 0 3/6/2021
2.10.0-dev-01226 0 3/6/2021
2.10.0-dev-01221 0 3/6/2021
2.10.0-dev-01219 0 3/6/2021
2.10.0-dev-01213 0 3/6/2021
2.10.0-dev-01211 0 3/6/2021
2.10.0-dev-01191 0 3/6/2021
2.10.0-dev-01187 0 3/6/2021
2.9.1-dev-01177 0 3/6/2021
2.9.1-dev-01172 1 3/6/2021
2.9.1-dev-01169 0 3/6/2021
2.9.1-dev-01167 0 3/6/2021
2.9.1-dev-01166 0 3/6/2021
2.9.1-dev-01165 0 3/6/2021
2.9.1-dev-01154 1 3/6/2021
2.9.1-dev-01151 1 3/6/2021
2.9.1-dev-01149 1 3/6/2021
2.9.1-dev-01148 0 3/6/2021
2.9.1-dev-01141 1 3/6/2021
2.9.1-dev-01138 1 3/6/2021
2.9.0 32,485 3/6/2021
2.9.0-dev-01133 1 3/6/2021
2.9.0-dev-01124 0 3/6/2021
2.9.0-dev-01119 1 3/6/2021
2.9.0-dev-01116 0 3/6/2021
2.9.0-dev-01102 0 3/6/2021
2.9.0-dev-01099 0 3/6/2021
2.9.0-dev-01098 0 3/6/2021
2.9.0-dev-01091 0 3/6/2021
2.8.1-dev-01090 0 3/6/2021
2.8.1-dev-01086 0 3/6/2021
2.8.1-dev-01085 0 3/6/2021
2.8.1-dev-01063 0 3/6/2021
2.8.1-dev-01058 1 3/6/2021
2.8.1-dev-01054 1 3/6/2021
2.8.1-dev-01052 0 3/6/2021
2.8.1-dev-01049 0 3/6/2021
2.8.1-dev-01048 1 3/6/2021
2.8.1-dev-01047 0 3/6/2021
2.8.0 37,571 3/6/2021
2.8.0-dev-01042 0 3/6/2021
2.7.2-dev-01041 0 3/6/2021
2.7.2-dev-01033 0 3/6/2021
2.7.2-dev-01032 0 3/6/2021
2.7.2-dev-01030 0 3/6/2021
2.7.2-dev-01027 1 3/6/2021
2.7.2-dev-01024 1 3/6/2021
2.7.2-dev-01023 0 3/6/2021
2.7.2-dev-01017 0 3/6/2021
2.7.2-dev-01013 0 3/6/2021
2.7.2-dev-01010 0 3/6/2021
2.7.2-dev-01005 0 3/6/2021
2.7.1 9,474 3/6/2021
2.7.1-dev-01000 0 3/6/2021
2.7.1-dev-00993 1 3/6/2021
2.7.1-dev-00990 0 3/6/2021
2.7.1-dev-00985 0 3/6/2021
2.7.1-dev-00983 1 3/6/2021
2.7.1-dev-00980 0 3/6/2021
2.7.1-dev-00972 0 3/6/2021
2.7.1-dev-00967 0 3/6/2021
2.7.1-dev-00963 0 3/6/2021
2.7.1-dev-00960 1 3/6/2021
2.7.1-dev-00956 0 3/6/2021
2.7.1-dev-00950 1 3/6/2021
2.6.1-dev-00948 0 3/6/2021
2.6.1-dev-00938 0 3/6/2021
2.6.1-dev-00936 0 3/6/2021
2.6.0 32 3/6/2021
2.6.0-dev-00932 0 3/6/2021
2.6.0-dev-00929 0 3/6/2021
2.6.0-dev-00925 0 3/6/2021
2.6.0-dev-00923 0 3/6/2021
2.6.0-dev-00922 0 3/6/2021
2.6.0-dev-00919 0 3/6/2021
2.6.0-dev-00915 0 3/6/2021
2.6.0-dev-00911 0 3/6/2021
2.6.0-dev-00904 1 3/6/2021
2.6.0-dev-00902 1 3/6/2021
2.6.0-dev-00894 4 3/6/2021
2.6.0-dev-00892 1 3/6/2021
2.5.1-dev-00890 0 3/6/2021
2.5.1-dev-00886 0 3/6/2021
2.5.1-dev-00873 3 3/6/2021
2.5.1-dev-00869 1 3/6/2021
2.5.1-dev-00863 0 3/6/2021
2.5.1-dev-00862 1 3/6/2021
2.5.1-dev-00859 2 3/6/2021
2.5.0 37,703 3/6/2021
2.5.0-dev-00855 0 3/6/2021
2.5.0-dev-00853 0 3/6/2021
2.5.0-dev-00848 0 3/6/2021
2.5.0-dev-00842 1 3/6/2021
2.5.0-dev-00841 1 3/6/2021
2.5.0-dev-00839 0 3/6/2021
2.5.0-dev-00833 0 3/6/2021
2.5.0-dev-00822 0 3/6/2021
2.5.0-dev-00820 1 3/6/2021
2.5.0-dev-00817 1 3/6/2021
2.5.0-dev-00814 0 3/6/2021
2.5.0-dev-00812 0 3/6/2021
2.4.1-dev-00811 0 3/6/2021
2.4.1-dev-00805 0 3/6/2021
2.4.1-dev-00801 1 3/6/2021
2.4.1-dev-00799 1 3/6/2021
2.4.1-dev-00796 0 3/6/2021
2.4.0 105 3/6/2021
2.4.0-dev-00771 1 3/6/2021
2.4.0-dev-00769 0 3/6/2021
2.4.0-dev-00767 0 3/6/2021
2.4.0-dev-00766 1 3/6/2021
2.4.0-dev-00760 0 3/6/2021
2.4.0-dev-00757 0 3/6/2021
2.4.0-dev-00755 0 3/6/2021
2.4.0-dev-00750 2 3/6/2021
2.4.0-dev-00746 2 3/6/2021
2.4.0-dev-00739 0 3/6/2021
2.4.0-dev-00736 2 3/6/2021
2.4.0-dev-00733 0 3/6/2021
2.4.0-dev-00730 1 3/6/2021
2.4.0-dev-00728 0 3/6/2021
2.4.0-dev-00723 0 3/6/2021
2.3.0 37,759 3/6/2021
2.3.0-dev-00719 0 3/6/2021
2.3.0-dev-00711 1 3/6/2021
2.3.0-dev-00707 0 3/6/2021
2.3.0-dev-00705 0 3/6/2021
2.3.0-dev-00704 0 3/6/2021
2.2.1 23 3/6/2021
2.2.1-dev-00697 0 3/6/2021
2.2.0 3 3/6/2021
2.2.0-dev-00693 0 3/6/2021
2.2.0-dev-00690 0 3/6/2021
2.2.0-dev-00688 0 3/6/2021
2.1.1-dev-00686 0 3/6/2021
2.1.1-dev-00680 0 3/6/2021
2.1.0 21 3/6/2021
2.1.0-dev-00674 0 3/6/2021
2.1.0-dev-00670 0 3/6/2021
2.1.0-dev-00668 0 3/6/2021
2.1.0-dev-00666 0 3/6/2021
2.0.1-dev-00665 1 3/6/2021
2.0.0 37,660 3/6/2021
2.0.0-rc-640 0 3/6/2021
2.0.0-rc-634 0 3/6/2021
2.0.0-rc-633 0 3/6/2021
2.0.0-rc-628 0 3/6/2021
2.0.0-rc-622 0 3/6/2021
2.0.0-rc-621 0 3/6/2021
2.0.0-rc-619 1 3/6/2021
2.0.0-rc-618 0 3/6/2021
2.0.0-rc-606 1 3/6/2021
2.0.0-rc-602 1 3/6/2021
2.0.0-rc-600 0 3/6/2021
2.0.0-rc-598 0 3/6/2021
2.0.0-rc-596 0 3/6/2021
2.0.0-rc-594 0 3/6/2021
2.0.0-rc-587 0 3/6/2021
2.0.0-rc-577 0 3/6/2021
2.0.0-rc-576 0 3/6/2021
2.0.0-rc-573 0 3/6/2021
2.0.0-rc-563 0 3/6/2021
2.0.0-rc-556 2 3/6/2021
2.0.0-beta-541 0 3/6/2021
2.0.0-beta-537 1 3/6/2021
2.0.0-beta-533 0 3/6/2021
2.0.0-beta-531 1 3/6/2021
2.0.0-beta-530 0 3/6/2021
2.0.0-beta-523 0 3/6/2021
2.0.0-beta-521 0 3/6/2021
2.0.0-beta-519 1 3/6/2021
2.0.0-beta-516 0 3/6/2021
2.0.0-beta-513 1 3/6/2021
2.0.0-beta-511 0 3/6/2021
2.0.0-beta-509 0 3/6/2021
2.0.0-beta-507 0 3/6/2021
2.0.0-beta-505 0 3/6/2021
2.0.0-beta-502 0 3/6/2021
2.0.0-beta-499 0 3/6/2021
2.0.0-beta-495 0 3/6/2021
2.0.0-beta-494 0 3/6/2021
2.0.0-beta-493 0 3/6/2021
2.0.0-beta-487 1 3/6/2021
2.0.0-beta-486 0 3/6/2021
2.0.0-beta-479 1 3/6/2021
2.0.0-beta-478 0 3/6/2021
2.0.0-beta-465 1 3/6/2021
2.0.0-beta-456 0 3/6/2021
2.0.0-beta-450 1 3/6/2021
2.0.0-beta-449 1 3/6/2021
2.0.0-beta-432 0 3/6/2021
2.0.0-beta-423 0 3/6/2021
2.0.0-beta-418 0 3/6/2021
2.0.0-beta-416 0 3/6/2021
2.0.0-beta-403 496 12/3/2015
2.0.0-beta-395 386 11/23/2015
1.5.14 10,648 11/13/2015
1.5.13 120 11/13/2015
1.5.12 11,019 10/21/2015
1.5.11 22,262 9/9/2015
1.5.10 4,945 9/3/2015
1.5.9 25,348 7/20/2015
1.5.8 4,691 7/15/2015
1.5.7 19,137 6/11/2015
1.5.6 15,777 5/17/2015
1.5.5 11,805 4/28/2015
1.5.1 15,865 4/9/2015
1.4.214 1,497 4/7/2015
1.4.204 14,067 3/7/2015
1.4.196 3,662 2/22/2015
1.4.182 1,560 2/15/2015
1.4.168 3,780 2/8/2015
1.4.155 1,576 2/1/2015
1.4.154 94 2/1/2015
1.4.152 96 2/1/2015
1.4.139 2,441 1/23/2015
1.4.128 1,093 1/17/2015
1.4.126 99 1/17/2015
1.4.118 1,451 1/13/2015
1.4.113 3,135 1/6/2015
1.4.102 1,712 12/21/2014
1.4.99 1,076 12/18/2014
1.4.97 167 12/18/2014
1.4.95 356 12/16/2014
1.4.76 3,843 12/8/2014
1.4.75 161 12/7/2014
1.4.39 2,026 11/26/2014
1.4.34 749 11/24/2014
1.4.28 218 11/24/2014
1.4.27 283 11/23/2014
1.4.23 323 11/21/2014
1.4.22 261 11/21/2014
1.4.21 209 11/21/2014
1.4.18 1,201 11/18/2014
1.4.17 387 11/18/2014
1.4.16 390 11/18/2014
1.4.15 2,909 11/4/2014
1.4.14 5,948 10/23/2014
1.4.13 108 10/23/2014
1.4.12 3,790 10/12/2014
1.4.11 1,973 10/8/2014
1.4.10 1,738 9/26/2014
1.4.9 1,802 9/17/2014
1.4.8 1,713 9/11/2014
1.4.7 2,195 9/1/2014
1.4.6 270 8/31/2014
1.4.5 577 8/27/2014
1.4.4 180 8/27/2014
1.4.3 583 8/25/2014
1.4.2 203 8/23/2014
1.4.1 675 8/23/2014
1.3.43 5,705 8/4/2014
1.3.42 339 7/30/2014
1.3.41 591 7/28/2014
1.3.40 167 7/26/2014
1.3.39 384 7/25/2014
1.3.38 116 7/25/2014
1.3.37 115 7/25/2014
1.3.36 610 7/20/2014
1.3.35 387 7/17/2014
1.3.34 1,283 7/6/2014
1.3.33 688 6/30/2014
1.3.30 878 6/19/2014
1.3.29 141 6/19/2014
1.3.28 122 6/19/2014
1.3.27 163 6/18/2014
1.3.26 1,213 6/18/2014
1.3.25 1,236 6/9/2014
1.3.24 1,383 5/21/2014
1.3.23 248 5/20/2014
1.3.20 341 5/18/2014
1.3.19 131 5/17/2014
1.3.18 132 5/17/2014
1.3.17 265 5/17/2014
1.3.16 123 5/17/2014
1.3.15 401 5/16/2014
1.3.14 119 5/16/2014
1.3.13 171 5/16/2014
1.3.12 206 5/14/2014
1.3.7 916 5/11/2014
1.3.6 237 5/9/2014
1.3.5 328 5/6/2014
1.3.4 304 5/4/2014
1.3.3 891 4/28/2014
1.3.1 388 4/26/2014
1.2.53 185 4/26/2014
1.2.52 254 4/24/2014
1.2.51 462 4/18/2014
1.2.50 118 4/18/2014
1.2.49 140 4/17/2014
1.2.48 347 4/14/2014
1.2.47 218 4/14/2014
1.2.45 182 4/13/2014
1.2.44 369 4/9/2014
1.2.41 554 4/7/2014
1.2.40 121 4/7/2014
1.2.39 713 3/29/2014
1.2.38 116 3/29/2014
1.2.37 133 3/29/2014
1.2.29 466 3/16/2014
1.2.27 161 3/14/2014
1.2.26 181 3/12/2014
1.2.25 761 2/20/2014
1.2.8 307 2/12/2014
1.2.7 657 1/13/2014
1.2.6 133 1/13/2014
1.2.5 156 1/10/2014
1.2.4 421 12/16/2013
1.2.3 907 11/30/2013
1.1.2 418 11/24/2013
1.1.1 1,299 11/23/2013
1.0.3 899 11/1/2013
1.0.2 658 10/14/2013
1.0.1 258 10/10/2013
0.9.5 180 10/7/2013
0.9.4 802 9/14/2013
0.9.3 145 9/12/2013
0.9.2 191 9/3/2013
0.9.1 312 8/24/2013
0.8.5 311 7/22/2013
0.8.4 148 7/20/2013
0.8.3 173 7/13/2013
0.8.2 159 7/11/2013
0.8.1 149 7/9/2013
0.7.2 148 7/6/2013
0.6.5 228 7/4/2013
0.6.4 184 7/3/2013
0.6.3 159 6/28/2013
0.6.1 241 6/13/2013
0.5.5 137 6/12/2013
0.5.4 179 6/4/2013
0.5.3 175 5/30/2013
0.5.2 143 5/27/2013
0.5.1 137 5/26/2013
0.4.3 136 5/25/2013
0.3.2 169 5/19/2013
0.3.1 130 5/19/2013
0.2.11 202 5/14/2013
0.2.10 142 5/13/2013
0.2.9 143 5/10/2013
0.2.8 139 5/9/2013
0.2.4 202 4/29/2013
0.2.3 158 4/23/2013
0.2.2 176 4/8/2013
0.2.1 134 4/8/2013
0.1.18 178 4/6/2013
0.1.17 136 4/4/2013
0.1.16 138 4/3/2013
0.1.12 144 4/1/2013
0.1.11 150 3/30/2013
0.1.10 169 3/27/2013
0.1.9 136 3/26/2013
0.1.8 135 3/24/2013
0.1.7 137 3/23/2013
0.1.6 245 3/23/2013