EasyNetQ 8.0.0-beta1

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

Build status

NuGet Status Nuget Status Nuget Status

Activity Activity Activity

EasyNetQ Logo

A Nice .NET API for RabbitMQ

Initial development was sponsored by travel industry experts 15below

Goals:

  1. To make working with RabbitMQ on .NET as easy as possible.

To connect to a RabbitMQ broker...

    var bus = RabbitHutch.CreateBus("host=localhost");

To publish a message...

    await bus.PubSub.PublishAsync(message);

To publish a message with 5s delay...

    await bus.Scheduler.FuturePublishAsync(message, TimeSpan.FromSeconds(5));

To subscribe to a message...

    await bus.PubSub.SubscribeAsync<MyMessage>(
        "my_subscription_id", msg => Console.WriteLine(msg.Text)
    );

Remote procedure call...

    var request = new TestRequestMessage {Text = "Hello from the client! "};
    await bus.Rpc.RequestAsync<TestRequestMessage, TestResponseMessage>(request);

RPC server...

    await bus.Rpc.RespondAsync<TestRequestMessage, TestResponseMessage>(request =>
        new TestResponseMessage{ Text = request.Text + " all done!" }
    );

Getting started

Just open EasyNetQ.sln in VisualStudio or Rider and build. All the required dependencies for the solution file to build the software are included.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 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 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (188)

Showing the top 5 NuGet packages that depend on EasyNetQ:

Package Downloads
EasyNetQ.DI.Microsoft

An adaptor to allow EasyNetQ to use Microsoft.Extensions.DependencyInjection as its internal IoC container

Shesha.Framework

Package Description

EasyNetQ.Logging.Microsoft

An adaptor to allow EasyNetQ to use Microsoft.Extensions.Logging

EasyNetQ.DI.Autofac

An adaptor to allow EasyNetQ to use Autofac as its internal IoC container

EasyNetQ.DI.Windsor

An adaptor to allow EasyNetQ to use Castle.Windsor as its internal IoC container

GitHub repositories (9)

Showing the top 9 popular GitHub repositories that depend on EasyNetQ:

Repository Stars
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
SkyChenSky/Sikiro
整合了社区主流开源框架(CAP、SkyAPM、WebAPIClient、Chloe等)的微服务项目示例
henriquelourente/Domain-Driven-Design-Sample
ASP.NET Core sample with DDD concepts
asc-lab/better-code-with-ddd
This repository contains code that accompanies presentation ASC LAB team gave at meetup about “Creating better code with Domain Driven Design”.
LeonKou/NetPro
🌈An enhanced version with clean architecture of asp.netcore,efficiently manage startup,Support for netcore3.1/6.0
DavidChild/Bitter.Core.Orm.NetCore
bitter.core is a high-performance and easy-to-use netcore / netframework orm framework. I think you'll love it. designed for development and efficiency. efficiency, high performance and high stability are always the pursuit of programmers. bittercore was born for that. you want to be lazy, even lazier! simple, more simple! controllable, more controllable! please use it bitter.Core .
EasyNetQ/EasyNetQ.Management.Client
EasyNetQ.Management.Client is a .NET client for the RabbitMQ RESTful management API
oncemi/OnceMi.Framework
基于.NET 7和Vue 2开发的企业级前后端分离权限管理开发框架(后台管理系统),具有组织管理、角色管理、用户管理、菜单管理、授权管理、计划任务、文件管理等功能。支持国内外多种流行数据库,支持IdentityServer4认证中心。
netcorebcn/quiz
Example real time quiz application with .NET Core, React, DDD, Event Sourcing, Docker and built-in infrastructure for CI/CD with k8s, jenkins and helm
Version Downloads Last Updated
8.1.0 577 1/20/2026
8.0.1 14,373 12/29/2025
8.0.0-beta99 59,613 3/7/2025
8.0.0-beta98 88,008 6/12/2024
8.0.0-beta97 360 6/7/2024
8.0.0-beta96 40,974 3/15/2024
8.0.0-beta95 13,018 10/22/2023
8.0.0-beta94 19,192 6/18/2023
8.0.0-beta93 2,746 6/17/2023
8.0.0-beta92 2,906 6/17/2023
8.0.0-beta91 2,893 6/11/2023
8.0.0-beta90 3,303 5/8/2023
8.0.0-beta9 3,408 3/21/2023
8.0.0-beta8 7,669 2/20/2023
8.0.0-beta6 3,733 1/29/2023
8.0.0-beta5 3,534 1/20/2023
8.0.0-beta4 3,022 1/5/2023
8.0.0-beta3 3,088 12/29/2022
8.0.0-beta2 2,987 12/16/2022
8.0.0-beta10 2,891 3/21/2023
8.0.0-beta1 3,331 12/15/2022
8.0.0-alpha9 2,866 12/14/2022
8.0.0-alpha8 3,126 11/30/2022
8.0.0-alpha7 3,698 11/12/2022
8.0.0-alpha6 2,958 10/29/2022
8.0.0-alpha5 2,900 10/5/2022
8.0.0-alpha4 2,910 10/1/2022
8.0.0-alpha3 2,866 9/26/2022
8.0.0-alpha2 3,049 9/21/2022
8.0.0-alpha1 2,844 9/19/2022
7.8.0 4,918,730 12/16/2023
7.7.0 267,816 11/19/2023
7.6.0 219,371 10/12/2023
7.5.5 1,208,361 7/20/2023
7.5.4 5,429 7/19/2023
7.5.3 198,333 6/15/2023
7.5.2 358,645 5/14/2023
7.5.1 49,522 5/4/2023
7.5.0 212,428 3/25/2023
7.4.3 562,406 2/3/2023
7.4.1 69,722 1/31/2023
7.4.0 70,166 1/29/2023
7.3.12 85,841 1/23/2023
7.3.11 7,906 1/22/2023
7.3.10 73,750 1/19/2023
7.3.9 105,649 1/17/2023
7.3.8 130,056 1/4/2023
7.3.7 90,617 12/22/2022
7.3.6 20,261 12/19/2022
7.3.5 150,283 11/30/2022
7.3.4 7,712 11/30/2022
7.3.3 76,505 11/24/2022
7.3.2 78,118 11/15/2022
7.3.1 12,996 11/12/2022
7.3.0 249,622 10/29/2022
7.3.0-alpha3 2,777 10/15/2022
7.3.0-alpha2 2,409 10/15/2022
7.3.0-alpha0 1,665 10/15/2022
7.2.1 122,444 10/9/2022
7.2.1-alpha1 2,779 10/6/2022
7.2.0 175,636 9/17/2022
7.2.0-alpha1 2,923 9/15/2022
7.0.4 224,282 9/7/2022
7.0.3 10,727 9/5/2022
7.0.3-alpha1 2,854 9/5/2022
7.0.2 10,279 9/5/2022
7.0.1 67,067 8/27/2022
7.0.0 372,321 7/23/2022
7.0.0-rc5 5,704 6/28/2022
7.0.0-rc4 2,816 6/27/2022
7.0.0-rc3 3,777 6/20/2022
7.0.0-rc2 4,691 6/9/2022
7.0.0-rc1 2,799 6/9/2022
7.0.0-beta9 2,965 6/8/2022
7.0.0-beta7 2,953 6/5/2022
7.0.0-beta6 3,961 5/24/2022
7.0.0-beta5 14,975 11/18/2021
7.0.0-beta4 6,954 11/9/2021
7.0.0-beta3 2,801 11/6/2021
7.0.0-beta2 8,904 9/29/2021
7.0.0-beta1 6,655 9/13/2021
7.0.0-alpha9 16,804 8/25/2021
7.0.0-alpha8 3,934 8/25/2021
7.0.0-alpha7 2,832 8/25/2021
7.0.0-alpha6 2,963 8/16/2021
7.0.0-alpha5 2,799 8/16/2021
7.0.0-alpha4 6,427 1/20/2021
7.0.0-alpha3 3,402 12/31/2020
7.0.0-alpha2 3,316 12/28/2020
7.0.0-alpha1 2,601 12/28/2020
6.5.2 1,634,741 6/20/2022
6.4.1 127,388 5/22/2022
6.4.0-alpha0096 4,039 12/6/2020
6.4.0-alpha0095 3,299 12/6/2020
6.4.0-alpha0094 3,570 12/6/2020
6.4.0-alpha.99 549 12/26/2020
6.4.0-alpha.97 965 12/9/2020
6.3.1 5,496,538 11/28/2020
6.3.0 98,373 11/22/2020
6.2.0 155,479 11/15/2020
6.1.0 133,753 11/10/2020
6.0.3 12,355 11/9/2020
6.0.2 9,458 11/6/2020
6.0.1 33,659 11/1/2020
5.6.0 1,102,729 10/10/2020
5.5.0 57,919 10/5/2020
5.4.1 66,652 10/4/2020
5.4.0 41,139 10/1/2020
5.3.0-alpha0079 56,609 6/16/2020
5.3.0-alpha0078 3,603 6/15/2020
5.3.0-alpha0077 3,812 6/15/2020
5.3.0-alpha0076 3,636 6/15/2020
5.3.0-alpha0075 3,657 6/14/2020
5.3.0-alpha0074 3,843 6/12/2020
5.3.0-alpha0073 3,646 6/12/2020
5.3.0-alpha0072 3,682 6/11/2020
5.3.0-alpha0070 4,228 6/7/2020
5.2.2 134,361 9/4/2020
5.2.1 125,460 9/3/2020
5.2.0 834,593 6/7/2020
5.2.0-alpha0073 3,882 5/26/2020
5.2.0-alpha0072 3,811 5/25/2020
5.2.0-alpha0071 3,843 5/25/2020
5.2.0-alpha0070 3,659 5/24/2020
5.2.0-alpha0069 3,752 5/24/2020
5.2.0-alpha0066 3,763 5/21/2020
5.2.0-alpha0065 3,808 5/20/2020
5.2.0-alpha0064 3,852 5/17/2020
5.2.0-alpha0057 3,715 5/10/2020
5.2.0-alpha0056 4,029 5/8/2020
5.1.2 2,210,599 5/24/2020
5.1.0-alpha0055 4,320 5/3/2020
5.1.0-alpha0054 3,827 5/3/2020
5.1.0-alpha0053 3,834 4/30/2020
4.1.0-alpha0014 4,583 4/29/2020
4.1.0-alpha0013 3,831 4/24/2020
4.1.0-alpha0005 3,753 4/20/2020
4.1.0-alpha0004 3,716 4/18/2020
4.1.0-alpha0001 3,693 4/17/2020
4.0.8 156,979 4/28/2020
4.0.7 14,707 4/27/2020
4.0.6 12,649 4/24/2020
4.0.5 24,090 4/22/2020
4.0.4 8,264 4/21/2020
4.0.3 9,126 4/20/2020
4.0.2 7,396 4/20/2020
4.0.1 23,733 4/20/2020
4.0.0 20,649 4/18/2020
3.8.0 442,499 4/17/2020
3.8.0-alpha0048 4,300 2/28/2020
3.8.0-alpha0042 5,822 2/13/2020
3.8.0-alpha0041 5,371 1/8/2020
3.8.0-alpha0040 4,277 9/26/2019
3.8.0-alpha0039 2,404 9/25/2019
3.7.1 2,078,199 9/25/2019
3.7.0 97,560 9/23/2019
3.7.0-alpha0038 5,709 8/3/2019
3.7.0-alpha0037 5,118 8/1/2019
3.6.0 583,418 7/17/2019
3.6.0-alpha0036 6,191 6/4/2019
3.6.0-alpha0035 5,107 6/2/2019
3.6.0-alpha0034 5,066 6/2/2019
3.6.0-alpha0033 5,127 6/2/2019
3.6.0-alpha0031 5,456 5/4/2019
3.5.2 75,751 7/11/2019
3.5.1 411,223 6/2/2019
3.5.0 73,545 5/2/2019
3.5.0-alpha0036 5,779 4/10/2019
3.5.0-alpha0031 5,311 3/25/2019
3.5.0-alpha0030 5,094 3/21/2019
3.5.0-alpha0029 5,455 3/19/2019
3.5.0-alpha0027 5,087 3/18/2019
3.5.0-alpha0026 5,047 3/18/2019
3.5.0-alpha0025 5,071 3/17/2019
3.5.0-alpha0024 5,129 3/16/2019
3.5.0-alpha0021 5,141 3/15/2019
3.5.0-alpha0020 5,066 3/14/2019
3.5.0-alpha0019 5,177 3/14/2019
3.5.0-alpha0018 5,138 3/14/2019
3.5.0-alpha0013 5,137 3/14/2019
3.4.5 434,538 3/21/2019
3.4.4 20,890 3/16/2019
3.4.3 11,337 3/14/2019
3.4.2 7,539 3/13/2019
3.4.1 13,939 3/12/2019
3.4.0 178,613 2/19/2019
3.4.0-alpha0022 5,529 1/27/2019
3.4.0-alpha0021 5,222 1/25/2019
3.4.0-alpha0020 5,364 12/21/2018
3.4.0-alpha0019 5,384 12/6/2018
3.4.0-alpha0018 5,526 11/21/2018
3.4.0-alpha0017 5,277 11/20/2018
3.4.0-alpha0016 5,261 11/5/2018
3.4.0-alpha0015 5,332 11/2/2018
3.4.0-alpha0011 5,298 11/1/2018
3.4.0-alpha0010 7,277 10/3/2018
3.4.0-alpha0009 5,391 9/16/2018
3.4.0-alpha0008 5,519 9/1/2018
3.4.0-alpha0007 5,389 8/29/2018
3.4.0-alpha0006 5,427 8/28/2018
3.4.0-alpha0005 5,385 8/28/2018
3.4.0-alpha0004 5,562 8/23/2018
3.4.0-alpha0003 5,394 8/22/2018
3.4.0-alpha0002 5,671 8/10/2018
3.4.0-alpha0001 5,665 7/30/2018
3.3.9 164,635 1/25/2019
3.3.8 197,209 1/18/2019
3.3.7 97,954 1/5/2019
3.3.6 312,047 12/19/2018
3.3.5 151,446 11/21/2018
3.3.4 31,027 11/20/2018
3.3.3 103,435 11/11/2018
3.3.2 126,706 10/12/2018
3.3.1 463,007 8/28/2018
3.3.0 206,802 7/18/2018
3.3.0-alpha0007 5,556 7/18/2018
3.3.0-alpha0006 5,821 7/17/2018
3.3.0-alpha0005 5,586 7/17/2018
3.3.0-alpha0004 5,784 7/17/2018
3.3.0-alpha0003 5,787 7/15/2018
3.3.0-alpha0001 5,764 7/11/2018
3.2.0 11,794 7/12/2018
3.1.2 12,086 7/11/2018
3.1.1 88,453 7/4/2018
3.1.0 80,488 6/20/2018
3.1.0-alpha0019 5,840 7/4/2018
3.1.0-alpha0017 5,560 7/2/2018
3.1.0-alpha0016 5,511 6/30/2018
3.1.0-alpha0014 5,911 6/26/2018
3.1.0-alpha0011 5,484 6/23/2018
3.1.0-alpha0010 5,712 6/20/2018
3.1.0-alpha0009 5,697 6/20/2018
3.1.0-alpha0008 5,439 6/19/2018
3.1.0-alpha0007 5,719 6/17/2018
3.1.0-alpha0006 5,490 6/14/2018
3.1.0-alpha0005 5,803 6/14/2018
3.1.0-alpha0004 6,117 5/28/2018
3.0.1 9,753 7/4/2018
3.0.0 272,984 5/24/2018
2.4.0-alpha0027 5,905 5/23/2018
2.4.0-alpha0026 5,954 5/23/2018
2.4.0-alpha0025 5,540 5/22/2018
2.4.0-alpha0024 5,748 5/18/2018
2.4.0-alpha0023 5,499 5/16/2018
2.4.0-alpha0022 6,034 5/16/2018
2.4.0-alpha0021 5,893 5/15/2018
2.4.0-alpha0020 5,869 5/15/2018
2.4.0-alpha0019 6,813 4/20/2018
2.4.0-alpha0017 6,008 4/19/2018
2.4.0-alpha0016 5,919 4/13/2018
2.4.0-alpha0015 5,970 4/3/2018
2.4.0-alpha0014 5,841 4/1/2018
2.4.0-alpha0013 6,241 3/30/2018
2.4.0-alpha0009 6,131 2/20/2018
2.4.0-alpha0002 95,682 12/1/2017
2.3.3 688,923 4/24/2018
2.3.1 266,192 2/20/2018
2.3.0 11,821 2/19/2018
2.3.0-alpha0006 6,413 11/21/2017
2.3.0-alpha0005 5,653 11/13/2017
2.3.0-alpha0002 14,972 9/18/2017
2.2.0 1,228,605 11/13/2017
2.2.0-alpha0009 5,806 9/14/2017
2.2.0-alpha0008 5,765 9/11/2017
2.2.0-alpha0007 5,719 9/10/2017
2.2.0-alpha0006 6,033 8/18/2017
2.2.0-alpha0002 5,601 8/18/2017
2.1.0 347,563 8/18/2017
2.1.0-alpha0022 5,696 8/18/2017
2.1.0-alpha0020 5,947 7/24/2017
2.1.0-alpha0018 6,741 7/13/2017
2.1.0-alpha0016 5,649 7/12/2017
2.1.0-alpha0011 7,589 7/11/2017
2.1.0-alpha0005 5,763 7/3/2017
2.1.0-alpha0002 5,669 7/3/2017
2.0.4 174,929 7/24/2017
2.0.4-unstable0013 8,059 6/26/2017
2.0.4-unstable0011 6,745 6/26/2017
2.0.4-unstable0010 7,577 6/11/2017
2.0.4-unstable0009 7,365 6/1/2017
2.0.4-unstable0007 12,451 5/4/2017
2.0.4-unstable0004 7,114 5/1/2017
2.0.4-unstable0003 6,868 5/1/2017
2.0.4-unstable0002 6,957 4/30/2017
2.0.4-unstable0001 6,863 4/27/2017
2.0.4-alpha0038 5,658 7/1/2017
2.0.3-unstable0064 6,667 4/27/2017
2.0.3-unstable0058 9,100 3/28/2017
2.0.3-unstable0057 11,896 3/15/2017
2.0.3-unstable0055 9,574 2/10/2017
1.1.4.506 220,380 7/6/2017
1.1.3.500 16,787 6/28/2017
1.1.2.497 12,283 6/21/2017
1.1.1.494 33,968 5/30/2017
1.1.0.492 25,434 5/4/2017
1.0.4.483 37,235 4/26/2017
1.0.3.481 60,163 4/4/2017
1.0.2.478 44,391 3/15/2017
1.0.1.475 66,567 2/10/2017
1.0.0.469 13,471 2/8/2017
1.0.0 390,391 6/30/2017
0.63.7.467 25,065 2/7/2017
0.63.6.463 15,404 2/7/2017
0.63.6.460 11,648 2/5/2017
0.63.5.454 189,793 10/17/2016
0.63.4.453 16,809 10/10/2016
0.63.3.452 56,712 9/26/2016
0.63.1.451 31,191 9/19/2016
0.63.1.450 16,706 9/11/2016
0.63.0.448 40,464 8/12/2016
0.62.1.445 37,519 8/8/2016
0.62.0.444 11,302 8/8/2016
0.61.1.443 10,922 8/5/2016
0.61.0.442 15,287 8/2/2016
0.60.1.441 10,976 7/31/2016
0.60.0.440 12,620 7/25/2016
0.59.0.439 61,336 7/18/2016
0.59.0.437 10,222 7/18/2016
0.59.0.436 9,769 7/18/2016
0.59.0.434 42,082 6/6/2016
0.58.0.433 60,697 5/2/2016
0.57.2.432 10,287 5/2/2016
0.57.2.431 27,605 4/25/2016
0.57.2.430 11,633 4/20/2016
0.57.1.429 9,840 4/20/2016
0.57.0.428 11,362 4/18/2016
0.56.0.427 47,371 4/1/2016
0.55.1.426 37,096 3/17/2016
0.55.0.425 20,359 3/1/2016
0.54.3.424 64,890 2/2/2016
0.54.2.423 12,662 2/1/2016
0.54.1.421 9,816 2/1/2016
0.54.0.420 10,148 1/28/2016
0.53.6.419 73,942 1/25/2016
0.53.6.418 127,048 1/6/2016
0.53.5.417 10,264 1/6/2016
0.53.5.416 9,912 1/5/2016
0.53.4.415 13,672 12/23/2015
0.53.3.414 45,522 12/9/2015
0.53.2.413 16,828 12/1/2015
0.53.1.412 10,489 11/28/2015
0.53.0.411 34,467 11/19/2015
0.52.0.410 10,115 11/18/2015
0.51.0.409 12,248 11/17/2015
0.51.0.408 9,704 11/17/2015
0.51.0 8,038 11/16/2015
0.50.12.407 39,156 10/22/2015
0.50.12.406 9,729 10/22/2015
0.50.11.404 10,502 10/20/2015
0.50.10.403 16,309 10/10/2015
0.50.9.401 23,739 10/5/2015
0.50.8.400 24,790 9/28/2015
0.50.7.399 28,501 8/18/2015
0.50.6.398 13,220 8/11/2015
0.50.5.397 9,701 8/11/2015
0.50.5.396 9,978 8/11/2015
0.50.4.395 10,268 8/8/2015
0.50.3.394 9,731 8/7/2015
0.50.2.393 13,697 8/1/2015
0.50.1.392 50,973 6/17/2015
0.50.0.391 16,501 6/8/2015
0.49.3.390 15,254 5/20/2015
0.49.2.389 10,741 5/18/2015
0.49.1.388 9,531 5/18/2015
0.49.0.387 11,117 5/17/2015
0.48.1.386 12,126 5/10/2015
0.48.0.385 9,603 5/10/2015
0.47.10.384 11,183 5/8/2015
0.47.10.383 11,866 5/6/2015
0.47.10.382 9,925 5/5/2015
0.47.10.381 18,364 4/27/2015
0.47.10.380 26,431 4/1/2015
0.47.10.379 9,929 4/1/2015
0.47.9.378 15,577 3/31/2015
0.47.9.377 9,670 3/31/2015
0.47.9.376 11,659 3/30/2015
0.47.8.375 9,916 3/28/2015
0.47.7.374 19,792 3/25/2015
0.47.6.373 12,171 3/18/2015
0.47.5.372 10,476 3/17/2015
0.47.4.371 10,249 3/16/2015
0.47.3.370 9,677 3/15/2015
0.47.2.369 9,875 3/12/2015
0.47.1.368 51,915 3/4/2015
0.47.0.367 10,324 3/4/2015
0.46.1.366 10,841 3/3/2015
0.46.0.365 10,194 3/2/2015
0.45.0.364 9,938 3/2/2015
0.44.3.363 11,782 2/24/2015
0.44.2.362 10,071 2/24/2015
0.44.1.361 10,385 2/22/2015
0.44.0.360 26,268 2/18/2015
0.43.1.359 11,321 2/12/2015
0.43.0.358 17,063 2/7/2015
0.42.0.357 9,955 2/5/2015
0.41.0.356 9,825 2/4/2015
0.40.6.355 10,307 2/3/2015
0.40.3.354 10,097 2/2/2015
0.40.3.353 10,882 1/26/2015
0.40.3.352 13,229 1/20/2015
0.40.3.351 9,728 1/19/2015
0.40.2.350 9,911 1/19/2015
0.40.1.349 10,330 1/17/2015
0.40.1.348 11,915 1/15/2015
0.40.1.347 12,129 1/13/2015
0.40.1.346 9,466 1/12/2015
0.40.0.345 9,836 1/9/2015
0.40.0.344 9,588 1/9/2015
0.40.0.343 9,732 1/8/2015
0.40.0.342 9,649 1/8/2015
0.39.6.340 10,394 1/6/2015
0.39.5.339 9,896 1/5/2015
0.39.4.338 10,143 1/1/2015
0.39.4.337 11,030 12/23/2014
0.39.4.336 12,800 12/13/2014
0.39.2.335 9,733 12/12/2014
0.39.2.334 12,589 12/9/2014
0.39.2.333 17,561 12/5/2014
0.39.1.332 10,732 12/3/2014
0.39.1.331 9,792 12/2/2014
0.39.0.330 9,995 12/1/2014
0.38.2.329 10,815 11/26/2014
0.38.2.328 9,706 11/26/2014
0.38.1.327 9,887 11/25/2014
0.38.0.326 10,262 11/22/2014
0.38.0.325 10,030 11/20/2014
0.38.0.324 11,800 11/14/2014
0.37.2.323 11,820 11/14/2014
0.37.2.322 12,046 11/5/2014
0.37.2.321 24,050 10/29/2014
0.37.2.320 10,088 10/29/2014
0.37.2.319 9,671 10/28/2014
0.37.1.318 10,053 10/25/2014
0.37.1.317 25,741 10/16/2014
0.37.1.316 11,425 10/13/2014
0.37.0.315 9,986 10/12/2014
0.36.5.314 10,425 10/11/2014
0.36.5.313 10,041 10/9/2014
0.36.4.312 9,830 10/8/2014
0.36.4.311 9,571 10/8/2014
0.36.4.310 11,968 10/3/2014
0.36.3.309 9,806 10/1/2014
0.36.2.308 10,240 9/28/2014
0.36.1.307 11,122 9/20/2014
0.36.1.306 10,195 9/17/2014
0.36.0.305 15,759 9/15/2014
0.35.6.304 12,765 9/1/2014
0.35.6.303 9,957 8/28/2014
0.35.6.302 13,405 8/16/2014
0.35.6.301 9,705 8/15/2014
0.35.5.300 9,717 8/14/2014
0.35.4.299 9,597 8/14/2014
0.35.4.298 9,880 8/13/2014
0.35.4.297 11,980 8/11/2014
0.35.3.296 9,666 8/10/2014
0.35.3.295 9,819 8/8/2014
0.35.3.294 9,785 8/5/2014
0.35.1.288 11,282 8/1/2014
0.35.1.287 9,697 8/1/2014
0.35.1.286 9,647 8/1/2014
0.35.1.285 13,088 7/29/2014
0.35.1.284 10,527 7/23/2014
0.35.1.283 9,917 7/23/2014
0.35.0.282 10,422 7/22/2014
0.35.0.281 13,639 7/15/2014
0.34.0.280 10,684 7/11/2014
0.34.0.279 30,788 7/9/2014
0.33.2.278 13,220 7/9/2014
0.33.2.277 12,478 7/2/2014
0.33.1.276 11,294 6/24/2014
0.33.1.275 9,925 6/19/2014
0.33.0.274 9,726 6/19/2014
0.33.0.273 10,510 6/16/2014
0.32.3.272 9,978 6/14/2014
0.32.2.271 11,194 6/5/2014
0.32.1.270 10,032 6/1/2014
0.32.1.269 9,606 6/1/2014
0.32.1.268 11,238 5/26/2014
0.32.0.267 9,695 5/23/2014
0.32.0.266 16,951 5/22/2014
0.32.0.265 11,059 5/21/2014
0.32.0.264 9,661 5/21/2014
0.32.0.263 9,831 5/20/2014
0.32.0.262 9,645 5/19/2014
0.31.1.261 9,699 5/19/2014
0.31.1.260 9,678 5/19/2014
0.31.0.259 9,865 5/16/2014
0.30.2.258 9,854 5/15/2014
0.30.2.257 9,868 5/14/2014
0.30.2.254 10,354 5/8/2014
0.30.2.252 24,112 4/30/2014
0.30.2.251 9,686 4/30/2014
0.30.1.250 10,920 4/29/2014
0.30.0.249 9,932 4/28/2014
0.30.0.248 10,210 4/24/2014
0.30.0.247 10,367 4/17/2014
0.29.0.246 10,476 4/16/2014
0.28.5.245 10,632 4/14/2014
0.28.4.242 15,969 4/5/2014
0.28.4.241 9,781 4/4/2014
0.28.4.240 9,864 4/3/2014
0.28.4.232 10,015 3/31/2014
0.28.3.231 9,932 3/27/2014
0.28.3.230 9,784 3/27/2014
0.28.3.229 10,809 3/19/2014
0.28.2.227 10,248 3/14/2014
0.28.2.226 9,838 3/13/2014
0.28.2.225 14,323 3/5/2014
0.28.1.224 9,813 3/4/2014
0.27.5.222 10,396 2/28/2014
0.27.5.221 9,692 2/28/2014
0.27.4.220 10,148 2/26/2014
0.27.3.219 9,884 2/25/2014
0.27.2.218 9,737 2/25/2014
0.27.1.216 13,986 2/14/2014
0.27.0.215 10,829 2/12/2014
0.26.7.214 10,284 2/12/2014
0.26.7.213 9,962 2/11/2014
0.26.7.212 9,768 2/10/2014
0.26.7.211 9,565 2/10/2014
0.26.6.210 9,621 2/10/2014
0.26.5.209 9,876 2/10/2014
0.26.5.208 9,993 2/5/2014
0.26.5.207 9,601 2/4/2014
0.26.4.206 9,610 2/4/2014
0.26.3.204 9,686 2/4/2014
0.26.3.203 9,992 2/3/2014
0.26.3.202 9,367 1/30/2014
0.26.3.198 9,124 1/30/2014
0.26.2.194 13,636 1/23/2014
0.26.1.193 13,003 1/20/2014
0.26.1.191 9,316 1/17/2014
0.26.1.189 9,401 1/16/2014
0.26.1.188 9,249 1/15/2014
0.26.1.187 9,205 1/15/2014
0.26.1.186 16,092 1/13/2014
0.26.1.185 10,299 1/3/2014
0.26.1.184 9,283 1/2/2014
0.26.1.183 9,827 12/20/2013
0.26.0.182 9,210 12/19/2013
0.26.0.181 11,252 12/16/2013
0.25.4.180 9,119 12/16/2013
0.25.4.179 9,079 12/16/2013
0.25.3.178 9,325 12/13/2013
0.25.3.177 9,223 12/13/2013
0.25.3.176 7,610 12/12/2013
0.25.2.174 7,737 12/11/2013
0.25.1.173 7,609 12/10/2013
0.25.0.172 7,609 12/10/2013
0.25.0.171 7,857 12/9/2013
0.24.0.169 36,023 12/9/2013
0.24.0.165 18,461 11/21/2013
0.23.0.163 7,713 11/19/2013
0.22.1.162 7,676 11/19/2013
0.22.0.161 7,600 11/19/2013
0.21.0.159 7,653 11/18/2013
0.20.0.157 7,689 11/15/2013
0.20.0.155 9,847 11/13/2013
0.19.0.154 8,101 11/6/2013
0.18.1.151 7,597 11/5/2013
0.18.1.150 7,580 11/5/2013
0.18.0.149 7,493 11/4/2013
0.17.0.148 7,700 11/1/2013
0.16.0.146 7,720 10/31/2013
0.16.0.145 7,551 10/30/2013
0.16.0.144 7,611 10/29/2013
0.15.3.143 9,901 10/23/2013
0.15.2.142 8,250 10/23/2013
0.15.2.139 10,136 10/21/2013
0.15.2.138 7,659 10/21/2013
0.14.5.132 7,945 10/21/2013
0.14.4.131 7,622 10/21/2013
0.14.4.130 8,215 10/16/2013
0.14.4.128 7,952 10/15/2013
0.14.4.127 7,557 10/15/2013
0.14.4.126 12,251 10/10/2013
0.14.4.124 8,682 10/8/2013
0.14.3.123 8,919 10/3/2013
0.14.2.122 7,682 10/2/2013
0.14.1.121 8,778 9/26/2013
0.14.0.120 7,658 9/24/2013
0.12.4.119 8,444 9/13/2013
0.12.3.117 7,637 9/11/2013
0.12.1.115 7,534 9/10/2013
0.12.0.116 7,545 9/10/2013
0.11.1.114 8,026 9/9/2013
0.11.1.113 9,833 8/30/2013
0.11.1.110 8,510 8/28/2013
0.11.1.109 7,576 8/28/2013
0.11.1.108 8,065 8/21/2013
0.11.1.105 7,798 8/14/2013
0.11.1.104 8,446 8/13/2013
0.11.1.101 7,978 8/2/2013
0.11.1.100 8,411 7/23/2013
0.11.1.98 7,855 7/19/2013
0.11.1.97 8,746 7/8/2013
0.11.0.96 7,801 7/8/2013
0.11.0.95 7,972 7/2/2013
0.11.0.93 7,944 6/26/2013
0.10.1.92 8,862 6/13/2013
0.10.1.91 7,692 6/12/2013
0.10.1.90 8,237 6/5/2013
0.10.1.89 9,147 5/31/2013
0.10.0.88 9,817 5/29/2013
0.10.0.87 7,996 5/24/2013
0.10.0.86 7,883 5/22/2013
0.10.0.85 7,662 5/21/2013
0.10.0.84 7,979 5/10/2013
0.10.0.82 8,409 5/7/2013
0.10.0.81 8,293 4/25/2013
0.10.0.80 9,235 4/12/2013
0.10.0.79 9,116 3/20/2013
0.10.0.78 7,611 3/20/2013
0.10.0.77 7,617 3/20/2013
0.9.2.76 10,629 3/19/2013
0.9.2.75 9,236 3/4/2013
0.9.2.74 7,877 2/28/2013
0.9.2.73 7,886 2/25/2013
0.9.2.72 8,333 2/5/2013
0.9.2.70 7,990 2/5/2013
0.9.2.68 17,113 1/10/2013
0.9.2.66 8,503 12/17/2012
0.9.2.65 9,503 12/13/2012
0.9.2.64 7,881 12/12/2012
0.9.2.63 7,893 12/12/2012
0.9.2.62 7,930 12/10/2012
0.9.1.60 8,068 12/8/2012
0.9.1.59 7,999 12/6/2012
0.9.1.55 7,773 12/6/2012
0.9.1.54 7,874 12/3/2012
0.9.1.52 8,428 11/21/2012
0.9.0.51 7,926 11/21/2012
0.9.0.50 7,856 11/20/2012
0.9.0.49 7,774 11/20/2012
0.9.0.48 7,824 11/20/2012
0.9.0.47 8,153 11/16/2012
0.9.0.46 7,808 11/16/2012
0.9.0.45 7,737 11/14/2012
0.9.0.44 7,775 11/13/2012
0.9.0.42 7,696 11/13/2012
0.8.4.41 10,437 11/12/2012
0.8.3.40 7,696 11/9/2012
0.8.2.39 7,823 11/6/2012
0.8.2.38 7,796 11/6/2012
0.8.1.37 11,470 10/8/2012
0.8.0.36 7,744 10/5/2012
0.7.2.35 7,935 10/3/2012
0.7.2.34 7,666 10/2/2012
0.7.1.33 7,883 10/1/2012
0.7.1.32 7,649 9/27/2012
0.7.1.31 7,669 9/26/2012
0.7.1.30 7,704 9/26/2012
0.7.0.29 7,687 9/25/2012
0.7.0.28 7,791 9/25/2012
0.7.0.27 7,702 9/25/2012
0.7.0.26 7,627 9/25/2012
0.7.0.25 7,770 9/25/2012
0.6.4.24 7,818 9/25/2012
0.6.3.23 7,667 9/21/2012
0.6.3.21 7,631 9/19/2012
0.6.3.20 7,925 9/10/2012
0.6.3.19 7,684 9/10/2012
0.6.3.17 7,725 8/31/2012
0.6.3.16 7,695 8/30/2012
0.6.3.15 7,713 8/23/2012
0.6.3.13 7,972 8/7/2012
0.6.3.12 10,721 7/25/2012
0.6.3.11 7,795 7/13/2012
0.6.3.10 7,897 7/12/2012
0.6.3.9 7,657 7/11/2012
0.6.3.8 7,712 7/6/2012
0.6.3.7 7,611 7/4/2012
0.6.3.6 7,589 7/3/2012
0.6.3 7,631 7/2/2012
0.6.0.1 7,751 5/29/2012
0.3.0 7,865 4/30/2012
0.2.0 21,516 12/1/2011