EasyNetQ 8.0.0-beta99

This is a prerelease version of EasyNetQ.
dotnet add package EasyNetQ --version 8.0.0-beta99
                    
NuGet\Install-Package EasyNetQ -Version 8.0.0-beta99
                    
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-beta99" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EasyNetQ" Version="8.0.0-beta99" />
                    
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-beta99
                    
#r "nuget: EasyNetQ, 8.0.0-beta99"
                    
#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-beta99
                    
#: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-beta99&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=EasyNetQ&version=8.0.0-beta99&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:

Important Update

With the release of EasyNetQ v8, the method for connecting to a RabbitMQ broker has changed. The rest of the API remains unchanged.

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

To connect to a RabbitMQ broker in v7...

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

To connect to a RabbitMQ broker in v8...

    var serviceCollection = new ServiceCollection();
    serviceCollection.AddEasyNetQ("host=localhost").UseSystemTextJson();

    using var provider = serviceCollection.BuildServiceProvider();
    var bus = provider.GetRequiredService<IBus>();

To publish a message...

    await bus.PubSub.PublishAsync(message);

To publish a message with a 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 your preferred IDE or code editor and build. All the required dependencies for the solution file to build the software are included.

Contributors

Thanks to all the people who already contributed!

<a href="https://github.com/EasyNetQ/EasyNetQ/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=EasyNetQ/EasyNetQ" /> </a>

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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 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.0.0-beta99 46,181 3/7/2025
8.0.0-beta98 83,413 6/12/2024
8.0.0-beta97 340 6/7/2024
8.0.0-beta96 32,031 3/15/2024
8.0.0-beta95 12,849 10/22/2023
8.0.0-beta94 19,035 6/18/2023
8.0.0-beta93 2,731 6/17/2023
8.0.0-beta92 2,888 6/17/2023
8.0.0-beta91 2,878 6/11/2023
8.0.0-beta90 3,264 5/8/2023
8.0.0-beta9 3,387 3/21/2023
8.0.0-beta8 7,634 2/20/2023
8.0.0-beta6 3,709 1/29/2023
8.0.0-beta5 3,509 1/20/2023
8.0.0-beta4 3,004 1/5/2023
8.0.0-beta3 3,056 12/29/2022
8.0.0-beta2 2,958 12/16/2022
8.0.0-beta10 2,865 3/21/2023
8.0.0-beta1 2,900 12/15/2022
8.0.0-alpha9 2,844 12/14/2022
8.0.0-alpha8 3,100 11/30/2022
8.0.0-alpha7 3,582 11/12/2022
8.0.0-alpha6 2,933 10/29/2022
8.0.0-alpha5 2,872 10/5/2022
8.0.0-alpha4 2,880 10/1/2022
8.0.0-alpha3 2,845 9/26/2022
8.0.0-alpha2 3,024 9/21/2022
8.0.0-alpha1 2,810 9/19/2022
7.8.0 4,208,222 12/16/2023
7.7.0 256,416 11/19/2023
7.6.0 209,192 10/12/2023
7.5.5 1,107,071 7/20/2023
7.5.4 4,444 7/19/2023
7.5.3 192,189 6/15/2023
7.5.2 347,466 5/14/2023
7.5.1 46,065 5/4/2023
7.5.0 199,520 3/25/2023
7.4.3 538,906 2/3/2023
7.4.1 67,603 1/31/2023
7.4.0 64,232 1/29/2023
7.3.12 83,618 1/23/2023
7.3.11 6,920 1/22/2023
7.3.10 70,710 1/19/2023
7.3.9 102,870 1/17/2023
7.3.8 125,262 1/4/2023
7.3.7 81,139 12/22/2022
7.3.6 19,068 12/19/2022
7.3.5 142,228 11/30/2022
7.3.4 6,675 11/30/2022
7.3.3 74,397 11/24/2022
7.3.2 75,682 11/15/2022
7.3.1 11,923 11/12/2022
7.3.0 247,749 10/29/2022
7.3.0-alpha3 2,732 10/15/2022
7.3.0-alpha2 2,375 10/15/2022
7.3.0-alpha0 1,641 10/15/2022
7.2.1 119,652 10/9/2022
7.2.1-alpha1 2,738 10/6/2022
7.2.0 169,597 9/17/2022
7.2.0-alpha1 2,898 9/15/2022
7.0.4 223,074 9/7/2022
7.0.3 9,709 9/5/2022
7.0.3-alpha1 2,814 9/5/2022
7.0.2 9,271 9/5/2022
7.0.1 65,082 8/27/2022
7.0.0 367,304 7/23/2022
7.0.0-rc5 5,668 6/28/2022
7.0.0-rc4 2,787 6/27/2022
7.0.0-rc3 3,747 6/20/2022
7.0.0-rc2 4,658 6/9/2022
7.0.0-rc1 2,767 6/9/2022
7.0.0-beta9 2,936 6/8/2022
7.0.0-beta7 2,909 6/5/2022
7.0.0-beta6 3,937 5/24/2022
7.0.0-beta5 14,932 11/18/2021
7.0.0-beta4 6,916 11/9/2021
7.0.0-beta3 2,773 11/6/2021
7.0.0-beta2 8,659 9/29/2021
7.0.0-beta1 6,622 9/13/2021
7.0.0-alpha9 16,767 8/25/2021
7.0.0-alpha8 3,907 8/25/2021
7.0.0-alpha7 2,801 8/25/2021
7.0.0-alpha6 2,932 8/16/2021
7.0.0-alpha5 2,766 8/16/2021
7.0.0-alpha4 6,388 1/20/2021
7.0.0-alpha3 3,366 12/31/2020
7.0.0-alpha2 3,278 12/28/2020
7.0.0-alpha1 2,568 12/28/2020
6.5.2 1,566,177 6/20/2022
6.4.1 123,998 5/22/2022
6.4.0-alpha0096 3,998 12/6/2020
6.4.0-alpha0095 3,267 12/6/2020
6.4.0-alpha0094 3,520 12/6/2020
6.4.0-alpha.99 509 12/26/2020
6.4.0-alpha.97 930 12/9/2020
6.3.1 5,376,431 11/28/2020
6.3.0 95,788 11/22/2020
6.2.0 154,437 11/15/2020
6.1.0 132,753 11/10/2020
6.0.3 11,377 11/9/2020
6.0.2 8,451 11/6/2020
6.0.1 31,617 11/1/2020
5.6.0 1,067,680 10/10/2020
5.5.0 54,774 10/5/2020
5.4.1 65,624 10/4/2020
5.4.0 39,130 10/1/2020
5.3.0-alpha0079 56,344 6/16/2020
5.3.0-alpha0078 3,554 6/15/2020
5.3.0-alpha0077 3,762 6/15/2020
5.3.0-alpha0076 3,596 6/15/2020
5.3.0-alpha0075 3,619 6/14/2020
5.3.0-alpha0074 3,799 6/12/2020
5.3.0-alpha0073 3,603 6/12/2020
5.3.0-alpha0072 3,643 6/11/2020
5.3.0-alpha0070 4,185 6/7/2020
5.2.2 131,005 9/4/2020
5.2.1 124,423 9/3/2020
5.2.0 822,322 6/7/2020
5.2.0-alpha0073 3,846 5/26/2020
5.2.0-alpha0072 3,770 5/25/2020
5.2.0-alpha0071 3,801 5/25/2020
5.2.0-alpha0070 3,625 5/24/2020
5.2.0-alpha0069 3,713 5/24/2020
5.2.0-alpha0066 3,718 5/21/2020
5.2.0-alpha0065 3,769 5/20/2020
5.2.0-alpha0064 3,818 5/17/2020
5.2.0-alpha0057 3,677 5/10/2020
5.2.0-alpha0056 3,996 5/8/2020
5.1.2 2,206,664 5/24/2020
5.1.0-alpha0055 4,284 5/3/2020
5.1.0-alpha0054 3,792 5/3/2020
5.1.0-alpha0053 3,797 4/30/2020
4.1.0-alpha0014 4,473 4/29/2020
4.1.0-alpha0013 3,794 4/24/2020
4.1.0-alpha0005 3,714 4/20/2020
4.1.0-alpha0004 3,675 4/18/2020
4.1.0-alpha0001 3,656 4/17/2020
4.0.8 155,952 4/28/2020
4.0.7 13,746 4/27/2020
4.0.6 11,661 4/24/2020
4.0.5 22,766 4/22/2020
4.0.4 7,284 4/21/2020
4.0.3 8,152 4/20/2020
4.0.2 6,435 4/20/2020
4.0.1 22,619 4/20/2020
4.0.0 19,216 4/18/2020
3.8.0 439,549 4/17/2020
3.8.0-alpha0048 4,266 2/28/2020
3.8.0-alpha0042 5,413 2/13/2020
3.8.0-alpha0041 5,334 1/8/2020
3.8.0-alpha0040 4,232 9/26/2019
3.8.0-alpha0039 2,366 9/25/2019
3.7.1 2,056,140 9/25/2019
3.7.0 96,300 9/23/2019
3.7.0-alpha0038 5,670 8/3/2019
3.7.0-alpha0037 5,085 8/1/2019
3.6.0 575,685 7/17/2019
3.6.0-alpha0036 6,153 6/4/2019
3.6.0-alpha0035 5,075 6/2/2019
3.6.0-alpha0034 5,029 6/2/2019
3.6.0-alpha0033 5,085 6/2/2019
3.6.0-alpha0031 5,416 5/4/2019
3.5.2 74,715 7/11/2019
3.5.1 404,986 6/2/2019
3.5.0 72,402 5/2/2019
3.5.0-alpha0036 5,739 4/10/2019
3.5.0-alpha0031 5,274 3/25/2019
3.5.0-alpha0030 5,052 3/21/2019
3.5.0-alpha0029 5,419 3/19/2019
3.5.0-alpha0027 5,051 3/18/2019
3.5.0-alpha0026 5,010 3/18/2019
3.5.0-alpha0025 5,034 3/17/2019
3.5.0-alpha0024 5,092 3/16/2019
3.5.0-alpha0021 5,105 3/15/2019
3.5.0-alpha0020 5,025 3/14/2019
3.5.0-alpha0019 5,134 3/14/2019
3.5.0-alpha0018 5,103 3/14/2019
3.5.0-alpha0013 5,095 3/14/2019
3.4.5 433,120 3/21/2019
3.4.4 19,930 3/16/2019
3.4.3 10,325 3/14/2019
3.4.2 6,522 3/13/2019
3.4.1 12,984 3/12/2019
3.4.0 177,382 2/19/2019
3.4.0-alpha0022 5,489 1/27/2019
3.4.0-alpha0021 5,183 1/25/2019
3.4.0-alpha0020 5,324 12/21/2018
3.4.0-alpha0019 5,327 12/6/2018
3.4.0-alpha0018 5,492 11/21/2018
3.4.0-alpha0017 5,224 11/20/2018
3.4.0-alpha0016 5,223 11/5/2018
3.4.0-alpha0015 5,285 11/2/2018
3.4.0-alpha0011 5,256 11/1/2018
3.4.0-alpha0010 7,227 10/3/2018
3.4.0-alpha0009 5,357 9/16/2018
3.4.0-alpha0008 5,482 9/1/2018
3.4.0-alpha0007 5,351 8/29/2018
3.4.0-alpha0006 5,380 8/28/2018
3.4.0-alpha0005 5,333 8/28/2018
3.4.0-alpha0004 5,521 8/23/2018
3.4.0-alpha0003 5,350 8/22/2018
3.4.0-alpha0002 5,634 8/10/2018
3.4.0-alpha0001 5,605 7/30/2018
3.3.9 163,132 1/25/2019
3.3.8 196,066 1/18/2019
3.3.7 96,725 1/5/2019
3.3.6 310,930 12/19/2018
3.3.5 149,740 11/21/2018
3.3.4 30,063 11/20/2018
3.3.3 101,859 11/11/2018
3.3.2 125,305 10/12/2018
3.3.1 458,053 8/28/2018
3.3.0 205,584 7/18/2018
3.3.0-alpha0007 5,499 7/18/2018
3.3.0-alpha0006 5,739 7/17/2018
3.3.0-alpha0005 5,528 7/17/2018
3.3.0-alpha0004 5,683 7/17/2018
3.3.0-alpha0003 5,703 7/15/2018
3.3.0-alpha0001 5,684 7/11/2018
3.2.0 10,742 7/12/2018
3.1.2 11,106 7/11/2018
3.1.1 87,291 7/4/2018
3.1.0 79,396 6/20/2018
3.1.0-alpha0019 5,757 7/4/2018
3.1.0-alpha0017 5,498 7/2/2018
3.1.0-alpha0016 5,444 6/30/2018
3.1.0-alpha0014 5,820 6/26/2018
3.1.0-alpha0011 5,424 6/23/2018
3.1.0-alpha0010 5,634 6/20/2018
3.1.0-alpha0009 5,622 6/20/2018
3.1.0-alpha0008 5,373 6/19/2018
3.1.0-alpha0007 5,637 6/17/2018
3.1.0-alpha0006 5,434 6/14/2018
3.1.0-alpha0005 5,722 6/14/2018
3.1.0-alpha0004 6,040 5/28/2018
3.0.1 8,766 7/4/2018
3.0.0 270,443 5/24/2018
2.4.0-alpha0027 5,822 5/23/2018
2.4.0-alpha0026 5,857 5/23/2018
2.4.0-alpha0025 5,480 5/22/2018
2.4.0-alpha0024 5,660 5/18/2018
2.4.0-alpha0023 5,441 5/16/2018
2.4.0-alpha0022 5,957 5/16/2018
2.4.0-alpha0021 5,813 5/15/2018
2.4.0-alpha0020 5,790 5/15/2018
2.4.0-alpha0019 6,732 4/20/2018
2.4.0-alpha0017 5,924 4/19/2018
2.4.0-alpha0016 5,843 4/13/2018
2.4.0-alpha0015 5,893 4/3/2018
2.4.0-alpha0014 5,756 4/1/2018
2.4.0-alpha0013 6,161 3/30/2018
2.4.0-alpha0009 6,051 2/20/2018
2.4.0-alpha0002 95,543 12/1/2017
2.3.3 681,695 4/24/2018
2.3.1 261,952 2/20/2018
2.3.0 10,811 2/19/2018
2.3.0-alpha0006 6,357 11/21/2017
2.3.0-alpha0005 5,594 11/13/2017
2.3.0-alpha0002 14,877 9/18/2017
2.2.0 1,212,181 11/13/2017
2.2.0-alpha0009 5,743 9/14/2017
2.2.0-alpha0008 5,697 9/11/2017
2.2.0-alpha0007 5,657 9/10/2017
2.2.0-alpha0006 5,972 8/18/2017
2.2.0-alpha0002 5,544 8/18/2017
2.1.0 334,194 8/18/2017
2.1.0-alpha0022 5,634 8/18/2017
2.1.0-alpha0020 5,892 7/24/2017
2.1.0-alpha0018 6,671 7/13/2017
2.1.0-alpha0016 5,586 7/12/2017
2.1.0-alpha0011 7,520 7/11/2017
2.1.0-alpha0005 5,706 7/3/2017
2.1.0-alpha0002 5,605 7/3/2017
2.0.4 171,772 7/24/2017
2.0.4-unstable0013 7,986 6/26/2017
2.0.4-unstable0011 6,682 6/26/2017
2.0.4-unstable0010 7,513 6/11/2017
2.0.4-unstable0009 7,291 6/1/2017
2.0.4-unstable0007 12,105 5/4/2017
2.0.4-unstable0004 7,055 5/1/2017
2.0.4-unstable0003 6,807 5/1/2017
2.0.4-unstable0002 6,897 4/30/2017
2.0.4-unstable0001 6,803 4/27/2017
2.0.4-alpha0038 5,600 7/1/2017
2.0.3-unstable0064 6,600 4/27/2017
2.0.3-unstable0058 9,032 3/28/2017
2.0.3-unstable0057 11,839 3/15/2017
2.0.3-unstable0055 9,491 2/10/2017
1.1.4.506 215,265 7/6/2017
1.1.3.500 15,830 6/28/2017
1.1.2.497 11,323 6/21/2017
1.1.1.494 32,933 5/30/2017
1.1.0.492 22,554 5/4/2017
1.0.4.483 36,273 4/26/2017
1.0.3.481 56,572 4/4/2017
1.0.2.478 41,182 3/15/2017
1.0.1.475 64,931 2/10/2017
1.0.0.469 12,471 2/8/2017
1.0.0 388,618 6/30/2017
0.63.7.467 23,611 2/7/2017
0.63.6.463 14,432 2/7/2017
0.63.6.460 10,691 2/5/2017
0.63.5.454 185,410 10/17/2016
0.63.4.453 15,787 10/10/2016
0.63.3.452 53,584 9/26/2016
0.63.1.451 30,209 9/19/2016
0.63.1.450 15,661 9/11/2016
0.63.0.448 39,409 8/12/2016
0.62.1.445 36,536 8/8/2016
0.62.0.444 10,285 8/8/2016
0.61.1.443 9,960 8/5/2016
0.61.0.442 14,326 8/2/2016
0.60.1.441 10,023 7/31/2016
0.60.0.440 11,662 7/25/2016
0.59.0.439 59,482 7/18/2016
0.59.0.437 9,273 7/18/2016
0.59.0.436 8,803 7/18/2016
0.59.0.434 41,097 6/6/2016
0.58.0.433 59,610 5/2/2016
0.57.2.432 9,330 5/2/2016
0.57.2.431 26,641 4/25/2016
0.57.2.430 10,676 4/20/2016
0.57.1.429 8,888 4/20/2016
0.57.0.428 10,243 4/18/2016
0.56.0.427 46,416 4/1/2016
0.55.1.426 35,950 3/17/2016
0.55.0.425 19,237 3/1/2016
0.54.3.424 63,745 2/2/2016
0.54.2.423 11,699 2/1/2016
0.54.1.421 8,863 2/1/2016
0.54.0.420 9,193 1/28/2016
0.53.6.419 70,845 1/25/2016
0.53.6.418 125,719 1/6/2016
0.53.5.417 9,304 1/6/2016
0.53.5.416 8,962 1/5/2016
0.53.4.415 12,711 12/23/2015
0.53.3.414 44,468 12/9/2015
0.53.2.413 15,695 12/1/2015
0.53.1.412 9,532 11/28/2015
0.53.0.411 32,985 11/19/2015
0.52.0.410 9,159 11/18/2015
0.51.0.409 11,292 11/17/2015
0.51.0.408 8,746 11/17/2015
0.51.0 7,089 11/16/2015
0.50.12.407 35,402 10/22/2015
0.50.12.406 8,780 10/22/2015
0.50.11.404 9,552 10/20/2015
0.50.10.403 15,177 10/10/2015
0.50.9.401 22,359 10/5/2015
0.50.8.400 21,821 9/28/2015
0.50.7.399 27,432 8/18/2015
0.50.6.398 12,258 8/11/2015
0.50.5.397 8,735 8/11/2015
0.50.5.396 9,019 8/11/2015
0.50.4.395 9,296 8/8/2015
0.50.3.394 8,775 8/7/2015
0.50.2.393 12,728 8/1/2015
0.50.1.392 45,732 6/17/2015
0.50.0.391 15,534 6/8/2015
0.49.3.390 14,285 5/20/2015
0.49.2.389 9,769 5/18/2015
0.49.1.388 8,567 5/18/2015
0.49.0.387 10,153 5/17/2015
0.48.1.386 11,167 5/10/2015
0.48.0.385 8,652 5/10/2015
0.47.10.384 10,200 5/8/2015
0.47.10.383 8,989 5/6/2015
0.47.10.382 8,961 5/5/2015
0.47.10.381 17,400 4/27/2015
0.47.10.380 23,519 4/1/2015
0.47.10.379 8,970 4/1/2015
0.47.9.378 14,389 3/31/2015
0.47.9.377 8,715 3/31/2015
0.47.9.376 10,619 3/30/2015
0.47.8.375 8,942 3/28/2015
0.47.7.374 18,770 3/25/2015
0.47.6.373 11,201 3/18/2015
0.47.5.372 9,526 3/17/2015
0.47.4.371 9,289 3/16/2015
0.47.3.370 8,683 3/15/2015
0.47.2.369 8,915 3/12/2015
0.47.1.368 46,638 3/4/2015
0.47.0.367 9,368 3/4/2015
0.46.1.366 9,874 3/3/2015
0.46.0.365 9,238 3/2/2015
0.45.0.364 8,969 3/2/2015
0.44.3.363 10,756 2/24/2015
0.44.2.362 9,105 2/24/2015
0.44.1.361 9,430 2/22/2015
0.44.0.360 25,316 2/18/2015
0.43.1.359 10,367 2/12/2015
0.43.0.358 14,179 2/7/2015
0.42.0.357 8,993 2/5/2015
0.41.0.356 8,875 2/4/2015
0.40.6.355 9,358 2/3/2015
0.40.3.354 9,144 2/2/2015
0.40.3.353 9,928 1/26/2015
0.40.3.352 12,270 1/20/2015
0.40.3.351 8,769 1/19/2015
0.40.2.350 8,956 1/19/2015
0.40.1.349 9,362 1/17/2015
0.40.1.348 10,959 1/15/2015
0.40.1.347 11,161 1/13/2015
0.40.1.346 8,506 1/12/2015
0.40.0.345 8,874 1/9/2015
0.40.0.344 8,630 1/9/2015
0.40.0.343 8,775 1/8/2015
0.40.0.342 8,675 1/8/2015
0.39.6.340 9,433 1/6/2015
0.39.5.339 8,941 1/5/2015
0.39.4.338 9,184 1/1/2015
0.39.4.337 10,062 12/23/2014
0.39.4.336 11,824 12/13/2014
0.39.2.335 8,776 12/12/2014
0.39.2.334 11,627 12/9/2014
0.39.2.333 16,604 12/5/2014
0.39.1.332 9,773 12/3/2014
0.39.1.331 8,821 12/2/2014
0.39.0.330 9,038 12/1/2014
0.38.2.329 9,862 11/26/2014
0.38.2.328 8,739 11/26/2014
0.38.1.327 8,925 11/25/2014
0.38.0.326 9,307 11/22/2014
0.38.0.325 9,067 11/20/2014
0.38.0.324 10,847 11/14/2014
0.37.2.323 10,846 11/14/2014
0.37.2.322 11,051 11/5/2014
0.37.2.321 22,849 10/29/2014
0.37.2.320 9,137 10/29/2014
0.37.2.319 8,724 10/28/2014
0.37.1.318 9,088 10/25/2014
0.37.1.317 24,091 10/16/2014
0.37.1.316 10,462 10/13/2014
0.37.0.315 9,028 10/12/2014
0.36.5.314 9,468 10/11/2014
0.36.5.313 9,080 10/9/2014
0.36.4.312 8,874 10/8/2014
0.36.4.311 8,612 10/8/2014
0.36.4.310 11,014 10/3/2014
0.36.3.309 8,846 10/1/2014
0.36.2.308 9,288 9/28/2014
0.36.1.307 10,152 9/20/2014
0.36.1.306 9,242 9/17/2014
0.36.0.305 14,804 9/15/2014
0.35.6.304 11,799 9/1/2014
0.35.6.303 9,001 8/28/2014
0.35.6.302 10,521 8/16/2014
0.35.6.301 8,733 8/15/2014
0.35.5.300 8,759 8/14/2014
0.35.4.299 8,641 8/14/2014
0.35.4.298 8,931 8/13/2014
0.35.4.297 11,018 8/11/2014
0.35.3.296 8,715 8/10/2014
0.35.3.295 8,865 8/8/2014
0.35.3.294 8,835 8/5/2014
0.35.1.288 10,328 8/1/2014
0.35.1.287 8,745 8/1/2014
0.35.1.286 8,677 8/1/2014
0.35.1.285 10,211 7/29/2014
0.35.1.284 9,571 7/23/2014
0.35.1.283 8,962 7/23/2014
0.35.0.282 9,472 7/22/2014
0.35.0.281 12,661 7/15/2014
0.34.0.280 9,716 7/11/2014
0.34.0.279 29,835 7/9/2014
0.33.2.278 12,266 7/9/2014
0.33.2.277 11,474 7/2/2014
0.33.1.276 10,329 6/24/2014
0.33.1.275 8,973 6/19/2014
0.33.0.274 8,773 6/19/2014
0.33.0.273 9,558 6/16/2014
0.32.3.272 9,024 6/14/2014
0.32.2.271 10,235 6/5/2014
0.32.1.270 9,086 6/1/2014
0.32.1.269 8,649 6/1/2014
0.32.1.268 10,280 5/26/2014
0.32.0.267 8,740 5/23/2014
0.32.0.266 15,988 5/22/2014
0.32.0.265 10,036 5/21/2014
0.32.0.264 8,701 5/21/2014
0.32.0.263 8,864 5/20/2014
0.32.0.262 8,693 5/19/2014
0.31.1.261 8,746 5/19/2014
0.31.1.260 8,726 5/19/2014
0.31.0.259 8,908 5/16/2014
0.30.2.258 8,896 5/15/2014
0.30.2.257 8,902 5/14/2014
0.30.2.254 9,396 5/8/2014
0.30.2.252 23,151 4/30/2014
0.30.2.251 8,722 4/30/2014
0.30.1.250 9,963 4/29/2014
0.30.0.249 8,981 4/28/2014
0.30.0.248 9,252 4/24/2014
0.30.0.247 9,415 4/17/2014
0.29.0.246 9,473 4/16/2014
0.28.5.245 9,667 4/14/2014
0.28.4.242 12,930 4/5/2014
0.28.4.241 8,806 4/4/2014
0.28.4.240 8,906 4/3/2014
0.28.4.232 9,066 3/31/2014
0.28.3.231 8,979 3/27/2014
0.28.3.230 8,833 3/27/2014
0.28.3.229 9,860 3/19/2014
0.28.2.227 9,291 3/14/2014
0.28.2.226 8,886 3/13/2014
0.28.2.225 13,362 3/5/2014
0.28.1.224 8,863 3/4/2014
0.27.5.222 9,441 2/28/2014
0.27.5.221 8,726 2/28/2014
0.27.4.220 9,182 2/26/2014
0.27.3.219 8,929 2/25/2014
0.27.2.218 8,768 2/25/2014
0.27.1.216 12,912 2/14/2014
0.27.0.215 9,870 2/12/2014
0.26.7.214 9,324 2/12/2014
0.26.7.213 9,012 2/11/2014
0.26.7.212 8,818 2/10/2014
0.26.7.211 8,611 2/10/2014
0.26.6.210 8,654 2/10/2014
0.26.5.209 8,921 2/10/2014
0.26.5.208 9,043 2/5/2014
0.26.5.207 8,640 2/4/2014
0.26.4.206 8,654 2/4/2014
0.26.3.204 8,727 2/4/2014
0.26.3.203 9,031 2/3/2014
0.26.3.202 8,414 1/30/2014
0.26.3.198 8,146 1/30/2014
0.26.2.194 12,657 1/23/2014
0.26.1.193 12,050 1/20/2014
0.26.1.191 8,361 1/17/2014
0.26.1.189 8,431 1/16/2014
0.26.1.188 8,298 1/15/2014
0.26.1.187 8,238 1/15/2014
0.26.1.186 15,128 1/13/2014
0.26.1.185 9,329 1/3/2014
0.26.1.184 8,310 1/2/2014
0.26.1.183 8,872 12/20/2013
0.26.0.182 8,255 12/19/2013
0.26.0.181 10,292 12/16/2013
0.25.4.180 8,169 12/16/2013
0.25.4.179 8,121 12/16/2013
0.25.3.178 8,366 12/13/2013
0.25.3.177 8,255 12/13/2013
0.25.3.176 6,659 12/12/2013
0.25.2.174 6,778 12/11/2013
0.25.1.173 6,660 12/10/2013
0.25.0.172 6,659 12/10/2013
0.25.0.171 6,903 12/9/2013
0.24.0.169 35,069 12/9/2013
0.24.0.165 15,579 11/21/2013
0.23.0.163 6,758 11/19/2013
0.22.1.162 6,715 11/19/2013
0.22.0.161 6,646 11/19/2013
0.21.0.159 6,692 11/18/2013
0.20.0.157 6,733 11/15/2013
0.20.0.155 8,863 11/13/2013
0.19.0.154 7,144 11/6/2013
0.18.1.151 6,647 11/5/2013
0.18.1.150 6,628 11/5/2013
0.18.0.149 6,540 11/4/2013
0.17.0.148 6,745 11/1/2013
0.16.0.146 6,768 10/31/2013
0.16.0.145 6,598 10/30/2013
0.16.0.144 6,656 10/29/2013
0.15.3.143 8,951 10/23/2013
0.15.2.142 7,270 10/23/2013
0.15.2.139 9,170 10/21/2013
0.15.2.138 6,704 10/21/2013
0.14.5.132 6,984 10/21/2013
0.14.4.131 6,665 10/21/2013
0.14.4.130 7,261 10/16/2013
0.14.4.128 6,980 10/15/2013
0.14.4.127 6,602 10/15/2013
0.14.4.126 9,351 10/10/2013
0.14.4.124 7,694 10/8/2013
0.14.3.123 7,968 10/3/2013
0.14.2.122 6,724 10/2/2013
0.14.1.121 7,815 9/26/2013
0.14.0.120 6,713 9/24/2013
0.12.4.119 7,488 9/13/2013
0.12.3.117 6,672 9/11/2013
0.12.1.115 6,565 9/10/2013
0.12.0.116 6,589 9/10/2013
0.11.1.114 7,068 9/9/2013
0.11.1.113 8,856 8/30/2013
0.11.1.110 7,559 8/28/2013
0.11.1.109 6,617 8/28/2013
0.11.1.108 7,096 8/21/2013
0.11.1.105 6,842 8/14/2013
0.11.1.104 7,488 8/13/2013
0.11.1.101 7,006 8/2/2013
0.11.1.100 7,452 7/23/2013
0.11.1.98 6,884 7/19/2013
0.11.1.97 7,785 7/8/2013
0.11.0.96 6,843 7/8/2013
0.11.0.95 7,003 7/2/2013
0.11.0.93 6,990 6/26/2013
0.10.1.92 7,902 6/13/2013
0.10.1.91 6,728 6/12/2013
0.10.1.90 7,281 6/5/2013
0.10.1.89 8,196 5/31/2013
0.10.0.88 6,949 5/29/2013
0.10.0.87 7,039 5/24/2013
0.10.0.86 6,931 5/22/2013
0.10.0.85 6,687 5/21/2013
0.10.0.84 7,026 5/10/2013
0.10.0.82 7,449 5/7/2013
0.10.0.81 7,340 4/25/2013
0.10.0.80 8,270 4/12/2013
0.10.0.79 8,165 3/20/2013
0.10.0.78 6,649 3/20/2013
0.10.0.77 6,666 3/20/2013
0.9.2.76 9,648 3/19/2013
0.9.2.75 8,284 3/4/2013
0.9.2.74 6,922 2/28/2013
0.9.2.73 6,920 2/25/2013
0.9.2.72 7,361 2/5/2013
0.9.2.70 7,025 2/5/2013
0.9.2.68 16,147 1/10/2013
0.9.2.66 7,541 12/17/2012
0.9.2.65 8,543 12/13/2012
0.9.2.64 6,921 12/12/2012
0.9.2.63 6,933 12/12/2012
0.9.2.62 6,952 12/10/2012
0.9.1.60 7,116 12/8/2012
0.9.1.59 7,041 12/6/2012
0.9.1.55 6,811 12/6/2012
0.9.1.54 6,919 12/3/2012
0.9.1.52 7,462 11/21/2012
0.9.0.51 6,964 11/21/2012
0.9.0.50 6,896 11/20/2012
0.9.0.49 6,810 11/20/2012
0.9.0.48 6,871 11/20/2012
0.9.0.47 7,194 11/16/2012
0.9.0.46 6,857 11/16/2012
0.9.0.45 6,783 11/14/2012
0.9.0.44 6,817 11/13/2012
0.9.0.42 6,744 11/13/2012
0.8.4.41 9,475 11/12/2012
0.8.3.40 6,733 11/9/2012
0.8.2.39 6,843 11/6/2012
0.8.2.38 6,838 11/6/2012
0.8.1.37 10,503 10/8/2012
0.8.0.36 6,789 10/5/2012
0.7.2.35 6,980 10/3/2012
0.7.2.34 6,703 10/2/2012
0.7.1.33 6,928 10/1/2012
0.7.1.32 6,692 9/27/2012
0.7.1.31 6,708 9/26/2012
0.7.1.30 6,737 9/26/2012
0.7.0.29 6,725 9/25/2012
0.7.0.28 6,823 9/25/2012
0.7.0.27 6,750 9/25/2012
0.7.0.26 6,673 9/25/2012
0.7.0.25 6,817 9/25/2012
0.6.4.24 6,833 9/25/2012
0.6.3.23 6,713 9/21/2012
0.6.3.21 6,669 9/19/2012
0.6.3.20 6,970 9/10/2012
0.6.3.19 6,728 9/10/2012
0.6.3.17 6,763 8/31/2012
0.6.3.16 6,740 8/30/2012
0.6.3.15 6,760 8/23/2012
0.6.3.13 7,010 8/7/2012
0.6.3.12 9,767 7/25/2012
0.6.3.11 6,838 7/13/2012
0.6.3.10 6,941 7/12/2012
0.6.3.9 6,700 7/11/2012
0.6.3.8 6,758 7/6/2012
0.6.3.7 6,646 7/4/2012
0.6.3.6 6,632 7/3/2012
0.6.3 6,682 7/2/2012
0.6.0.1 6,798 5/29/2012
0.3.0 6,918 4/30/2012
0.2.0 19,579 12/1/2011