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.
#addin nuget:?package=EasyNetQ&version=8.0.0-beta99&prerelease
                    
Install EasyNetQ as a Cake Addin
#tool nuget:?package=EasyNetQ&version=8.0.0-beta99&prerelease
                    
Install EasyNetQ 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 (190)

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.DI.Autofac

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

EasyNetQ.Logging.Microsoft

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

EasyNetQ.DI.Windsor

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

GitHub repositories (10)

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

Repository Stars
desenvolvedor-io/dev-store
A microservices e-commerce reference application built with ASP.NET 6
revoframework/Revo
Event Sourcing, CQRS and DDD framework for C#/.NET Core.
SkyChenSky/Sikiro
整合了社区主流开源框架(CAP、SkyAPM、WebAPIClient、Chloe等)的微服务项目示例
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”.
henriquelourente/Domain-Driven-Design-Sample
ASP.NET Core sample with DDD concepts
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 17,075 3/7/2025
8.0.0-beta98 68,647 6/12/2024
8.0.0-beta97 241 6/7/2024
8.0.0-beta96 16,867 3/15/2024
8.0.0-beta95 11,932 10/22/2023
8.0.0-beta94 14,694 6/18/2023
8.0.0-beta93 2,462 6/17/2023
8.0.0-beta92 2,557 6/17/2023
8.0.0-beta91 2,572 6/11/2023
8.0.0-beta90 2,978 5/8/2023
8.0.0-beta9 3,098 3/21/2023
8.0.0-beta8 7,027 2/20/2023
8.0.0-beta6 3,411 1/29/2023
8.0.0-beta5 3,263 1/20/2023
8.0.0-beta4 2,732 1/5/2023
8.0.0-beta3 2,734 12/29/2022
8.0.0-beta2 2,697 12/16/2022
8.0.0-beta10 2,612 3/21/2023
8.0.0-beta1 2,474 12/15/2022
8.0.0-alpha9 2,557 12/14/2022
8.0.0-alpha8 2,775 11/30/2022
8.0.0-alpha7 3,257 11/12/2022
8.0.0-alpha6 2,625 10/29/2022
8.0.0-alpha5 2,592 10/5/2022
8.0.0-alpha4 2,584 10/1/2022
8.0.0-alpha3 2,574 9/26/2022
8.0.0-alpha2 2,720 9/21/2022
8.0.0-alpha1 2,544 9/19/2022
7.8.0 2,616,301 12/16/2023
7.7.0 225,186 11/19/2023
7.6.0 183,504 10/12/2023
7.5.5 803,453 7/20/2023
7.5.4 3,849 7/19/2023
7.5.3 175,305 6/15/2023
7.5.2 322,750 5/14/2023
7.5.1 42,193 5/4/2023
7.5.0 185,809 3/25/2023
7.4.3 475,667 2/3/2023
7.4.1 63,848 1/31/2023
7.4.0 54,285 1/29/2023
7.3.12 79,420 1/23/2023
7.3.11 6,573 1/22/2023
7.3.10 69,590 1/19/2023
7.3.9 97,779 1/17/2023
7.3.8 120,680 1/4/2023
7.3.7 62,838 12/22/2022
7.3.6 17,785 12/19/2022
7.3.5 129,522 11/30/2022
7.3.4 6,218 11/30/2022
7.3.3 71,955 11/24/2022
7.3.2 72,512 11/15/2022
7.3.1 11,343 11/12/2022
7.3.0 241,575 10/29/2022
7.3.0-alpha3 2,447 10/15/2022
7.3.0-alpha2 2,176 10/15/2022
7.3.0-alpha0 1,511 10/15/2022
7.2.1 113,136 10/9/2022
7.2.1-alpha1 2,437 10/6/2022
7.2.0 160,223 9/17/2022
7.2.0-alpha1 2,645 9/15/2022
7.0.4 213,572 9/7/2022
7.0.3 9,307 9/5/2022
7.0.3-alpha1 2,520 9/5/2022
7.0.2 8,859 9/5/2022
7.0.1 61,198 8/27/2022
7.0.0 358,329 7/23/2022
7.0.0-rc5 5,398 6/28/2022
7.0.0-rc4 2,524 6/27/2022
7.0.0-rc3 3,426 6/20/2022
7.0.0-rc2 4,381 6/9/2022
7.0.0-rc1 2,476 6/9/2022
7.0.0-beta9 2,603 6/8/2022
7.0.0-beta7 2,605 6/5/2022
7.0.0-beta6 3,590 5/24/2022
7.0.0-beta5 14,476 11/18/2021
7.0.0-beta4 6,622 11/9/2021
7.0.0-beta3 2,471 11/6/2021
7.0.0-beta2 7,932 9/29/2021
7.0.0-beta1 6,306 9/13/2021
7.0.0-alpha9 16,493 8/25/2021
7.0.0-alpha8 3,601 8/25/2021
7.0.0-alpha7 2,516 8/25/2021
7.0.0-alpha6 2,620 8/16/2021
7.0.0-alpha5 2,478 8/16/2021
7.0.0-alpha4 6,100 1/20/2021
7.0.0-alpha3 3,084 12/31/2020
7.0.0-alpha2 2,988 12/28/2020
7.0.0-alpha1 2,438 12/28/2020
6.5.2 1,340,710 6/20/2022
6.4.1 116,088 5/22/2022
6.4.0-alpha0096 3,682 12/6/2020
6.4.0-alpha0095 2,983 12/6/2020
6.4.0-alpha0094 3,235 12/6/2020
6.4.0-alpha.99 401 12/26/2020
6.4.0-alpha.97 832 12/9/2020
6.3.1 5,036,730 11/28/2020
6.3.0 92,009 11/22/2020
6.2.0 151,917 11/15/2020
6.1.0 129,733 11/10/2020
6.0.3 11,006 11/9/2020
6.0.2 7,975 11/6/2020
6.0.1 30,081 11/1/2020
5.6.0 981,412 10/10/2020
5.5.0 53,610 10/5/2020
5.4.1 64,457 10/4/2020
5.4.0 36,314 10/1/2020
5.3.0-alpha0079 54,474 6/16/2020
5.3.0-alpha0078 3,279 6/15/2020
5.3.0-alpha0077 3,434 6/15/2020
5.3.0-alpha0076 3,330 6/15/2020
5.3.0-alpha0075 3,339 6/14/2020
5.3.0-alpha0074 3,538 6/12/2020
5.3.0-alpha0073 3,335 6/12/2020
5.3.0-alpha0072 3,323 6/11/2020
5.3.0-alpha0070 3,900 6/7/2020
5.2.2 126,987 9/4/2020
5.2.1 123,652 9/3/2020
5.2.0 790,706 6/7/2020
5.2.0-alpha0073 3,544 5/26/2020
5.2.0-alpha0072 3,446 5/25/2020
5.2.0-alpha0071 3,467 5/25/2020
5.2.0-alpha0070 3,367 5/24/2020
5.2.0-alpha0069 3,408 5/24/2020
5.2.0-alpha0066 3,448 5/21/2020
5.2.0-alpha0065 3,496 5/20/2020
5.2.0-alpha0064 3,528 5/17/2020
5.2.0-alpha0057 3,385 5/10/2020
5.2.0-alpha0056 3,709 5/8/2020
5.1.2 2,069,122 5/24/2020
5.1.0-alpha0055 4,023 5/3/2020
5.1.0-alpha0054 3,465 5/3/2020
5.1.0-alpha0053 3,516 4/30/2020
4.1.0-alpha0014 3,994 4/29/2020
4.1.0-alpha0013 3,490 4/24/2020
4.1.0-alpha0005 3,407 4/20/2020
4.1.0-alpha0004 3,393 4/18/2020
4.1.0-alpha0001 3,382 4/17/2020
4.0.8 155,481 4/28/2020
4.0.7 13,426 4/27/2020
4.0.6 11,298 4/24/2020
4.0.5 21,792 4/22/2020
4.0.4 6,943 4/21/2020
4.0.3 7,864 4/20/2020
4.0.2 6,088 4/20/2020
4.0.1 22,281 4/20/2020
4.0.0 17,598 4/18/2020
3.8.0 434,420 4/17/2020
3.8.0-alpha0048 3,986 2/28/2020
3.8.0-alpha0042 4,645 2/13/2020
3.8.0-alpha0041 5,180 1/8/2020
3.8.0-alpha0040 4,104 9/26/2019
3.8.0-alpha0039 2,247 9/25/2019
3.7.1 2,001,891 9/25/2019
3.7.0 94,821 9/23/2019
3.7.0-alpha0038 5,523 8/3/2019
3.7.0-alpha0037 4,956 8/1/2019
3.6.0 558,453 7/17/2019
3.6.0-alpha0036 6,010 6/4/2019
3.6.0-alpha0035 4,947 6/2/2019
3.6.0-alpha0034 4,883 6/2/2019
3.6.0-alpha0033 4,950 6/2/2019
3.6.0-alpha0031 5,272 5/4/2019
3.5.2 74,044 7/11/2019
3.5.1 385,728 6/2/2019
3.5.0 71,744 5/2/2019
3.5.0-alpha0036 5,610 4/10/2019
3.5.0-alpha0031 5,140 3/25/2019
3.5.0-alpha0030 4,916 3/21/2019
3.5.0-alpha0029 5,272 3/19/2019
3.5.0-alpha0027 4,890 3/18/2019
3.5.0-alpha0026 4,884 3/18/2019
3.5.0-alpha0025 4,900 3/17/2019
3.5.0-alpha0024 4,948 3/16/2019
3.5.0-alpha0021 4,961 3/15/2019
3.5.0-alpha0020 4,886 3/14/2019
3.5.0-alpha0019 4,974 3/14/2019
3.5.0-alpha0018 4,957 3/14/2019
3.5.0-alpha0013 4,956 3/14/2019
3.4.5 430,771 3/21/2019
3.4.4 19,768 3/16/2019
3.4.3 10,131 3/14/2019
3.4.2 6,320 3/13/2019
3.4.1 12,783 3/12/2019
3.4.0 175,725 2/19/2019
3.4.0-alpha0022 5,349 1/27/2019
3.4.0-alpha0021 5,010 1/25/2019
3.4.0-alpha0020 5,176 12/21/2018
3.4.0-alpha0019 5,194 12/6/2018
3.4.0-alpha0018 5,347 11/21/2018
3.4.0-alpha0017 5,087 11/20/2018
3.4.0-alpha0016 5,115 11/5/2018
3.4.0-alpha0015 5,158 11/2/2018
3.4.0-alpha0011 5,124 11/1/2018
3.4.0-alpha0010 7,092 10/3/2018
3.4.0-alpha0009 5,226 9/16/2018
3.4.0-alpha0008 5,339 9/1/2018
3.4.0-alpha0007 5,216 8/29/2018
3.4.0-alpha0006 5,241 8/28/2018
3.4.0-alpha0005 5,195 8/28/2018
3.4.0-alpha0004 5,379 8/23/2018
3.4.0-alpha0003 5,214 8/22/2018
3.4.0-alpha0002 5,507 8/10/2018
3.4.0-alpha0001 5,405 7/30/2018
3.3.9 161,531 1/25/2019
3.3.8 195,691 1/18/2019
3.3.7 96,047 1/5/2019
3.3.6 295,315 12/19/2018
3.3.5 147,163 11/21/2018
3.3.4 29,930 11/20/2018
3.3.3 101,389 11/11/2018
3.3.2 120,451 10/12/2018
3.3.1 449,093 8/28/2018
3.3.0 204,456 7/18/2018
3.3.0-alpha0007 5,304 7/18/2018
3.3.0-alpha0006 5,462 7/17/2018
3.3.0-alpha0005 5,351 7/17/2018
3.3.0-alpha0004 5,436 7/17/2018
3.3.0-alpha0003 5,434 7/15/2018
3.3.0-alpha0001 5,412 7/11/2018
3.2.0 10,356 7/12/2018
3.1.2 10,879 7/11/2018
3.1.1 82,059 7/4/2018
3.1.0 78,103 6/20/2018
3.1.0-alpha0019 5,498 7/4/2018
3.1.0-alpha0017 5,293 7/2/2018
3.1.0-alpha0016 5,249 6/30/2018
3.1.0-alpha0014 5,545 6/26/2018
3.1.0-alpha0011 5,238 6/23/2018
3.1.0-alpha0010 5,387 6/20/2018
3.1.0-alpha0009 5,359 6/20/2018
3.1.0-alpha0008 5,182 6/19/2018
3.1.0-alpha0007 5,390 6/17/2018
3.1.0-alpha0006 5,243 6/14/2018
3.1.0-alpha0005 5,453 6/14/2018
3.1.0-alpha0004 5,770 5/28/2018
3.0.1 8,550 7/4/2018
3.0.0 265,595 5/24/2018
2.4.0-alpha0027 5,536 5/23/2018
2.4.0-alpha0026 5,601 5/23/2018
2.4.0-alpha0025 5,279 5/22/2018
2.4.0-alpha0024 5,401 5/18/2018
2.4.0-alpha0023 5,247 5/16/2018
2.4.0-alpha0022 5,675 5/16/2018
2.4.0-alpha0021 5,567 5/15/2018
2.4.0-alpha0020 5,527 5/15/2018
2.4.0-alpha0019 6,462 4/20/2018
2.4.0-alpha0017 5,647 4/19/2018
2.4.0-alpha0016 5,561 4/13/2018
2.4.0-alpha0015 5,576 4/3/2018
2.4.0-alpha0014 5,506 4/1/2018
2.4.0-alpha0013 5,826 3/30/2018
2.4.0-alpha0009 5,796 2/20/2018
2.4.0-alpha0002 80,416 12/1/2017
2.3.3 667,161 4/24/2018
2.3.1 255,367 2/20/2018
2.3.0 10,316 2/19/2018
2.3.0-alpha0006 6,170 11/21/2017
2.3.0-alpha0005 5,386 11/13/2017
2.3.0-alpha0002 13,634 9/18/2017
2.2.0 1,157,580 11/13/2017
2.2.0-alpha0009 5,524 9/14/2017
2.2.0-alpha0008 5,477 9/11/2017
2.2.0-alpha0007 5,362 9/10/2017
2.2.0-alpha0006 5,772 8/18/2017
2.2.0-alpha0002 5,330 8/18/2017
2.1.0 304,897 8/18/2017
2.1.0-alpha0022 5,407 8/18/2017
2.1.0-alpha0020 5,643 7/24/2017
2.1.0-alpha0018 6,464 7/13/2017
2.1.0-alpha0016 5,388 7/12/2017
2.1.0-alpha0011 7,306 7/11/2017
2.1.0-alpha0005 5,491 7/3/2017
2.1.0-alpha0002 5,419 7/3/2017
2.0.4 166,445 7/24/2017
2.0.4-unstable0013 7,619 6/26/2017
2.0.4-unstable0011 6,363 6/26/2017
2.0.4-unstable0010 7,187 6/11/2017
2.0.4-unstable0009 6,952 6/1/2017
2.0.4-unstable0007 11,630 5/4/2017
2.0.4-unstable0004 6,684 5/1/2017
2.0.4-unstable0003 6,465 5/1/2017
2.0.4-unstable0002 6,556 4/30/2017
2.0.4-unstable0001 6,501 4/27/2017
2.0.4-alpha0038 5,391 7/1/2017
2.0.3-unstable0064 6,279 4/27/2017
2.0.3-unstable0058 8,703 3/28/2017
2.0.3-unstable0057 11,536 3/15/2017
2.0.3-unstable0055 9,105 2/10/2017
1.1.4.506 209,079 7/6/2017
1.1.3.500 15,509 6/28/2017
1.1.2.497 10,963 6/21/2017
1.1.1.494 32,286 5/30/2017
1.1.0.492 22,057 5/4/2017
1.0.4.483 35,856 4/26/2017
1.0.3.481 54,682 4/4/2017
1.0.2.478 40,337 3/15/2017
1.0.1.475 61,953 2/10/2017
1.0.0.469 11,949 2/8/2017
1.0.0 367,621 6/30/2017
0.63.7.467 22,578 2/7/2017
0.63.6.463 13,959 2/7/2017
0.63.6.460 10,205 2/5/2017
0.63.5.454 181,544 10/17/2016
0.63.4.453 15,327 10/10/2016
0.63.3.452 51,346 9/26/2016
0.63.1.451 29,706 9/19/2016
0.63.1.450 15,004 9/11/2016
0.63.0.448 38,839 8/12/2016
0.62.1.445 36,131 8/8/2016
0.62.0.444 9,878 8/8/2016
0.61.1.443 9,627 8/5/2016
0.61.0.442 13,964 8/2/2016
0.60.1.441 9,672 7/31/2016
0.60.0.440 11,335 7/25/2016
0.59.0.439 57,048 7/18/2016
0.59.0.437 8,943 7/18/2016
0.59.0.436 8,503 7/18/2016
0.59.0.434 40,665 6/6/2016
0.58.0.433 59,118 5/2/2016
0.57.2.432 9,002 5/2/2016
0.57.2.431 25,761 4/25/2016
0.57.2.430 10,350 4/20/2016
0.57.1.429 8,574 4/20/2016
0.57.0.428 9,950 4/18/2016
0.56.0.427 46,075 4/1/2016
0.55.1.426 35,540 3/17/2016
0.55.0.425 18,908 3/1/2016
0.54.3.424 63,284 2/2/2016
0.54.2.423 11,354 2/1/2016
0.54.1.421 8,551 2/1/2016
0.54.0.420 8,860 1/28/2016
0.53.6.419 70,159 1/25/2016
0.53.6.418 124,935 1/6/2016
0.53.5.417 8,980 1/6/2016
0.53.5.416 8,664 1/5/2016
0.53.4.415 12,377 12/23/2015
0.53.3.414 43,911 12/9/2015
0.53.2.413 14,969 12/1/2015
0.53.1.412 9,243 11/28/2015
0.53.0.411 31,825 11/19/2015
0.52.0.410 8,845 11/18/2015
0.51.0.409 10,977 11/17/2015
0.51.0.408 8,429 11/17/2015
0.51.0 6,849 11/16/2015
0.50.12.407 34,858 10/22/2015
0.50.12.406 8,473 10/22/2015
0.50.11.404 9,248 10/20/2015
0.50.10.403 14,357 10/10/2015
0.50.9.401 20,632 10/5/2015
0.50.8.400 21,116 9/28/2015
0.50.7.399 26,827 8/18/2015
0.50.6.398 11,933 8/11/2015
0.50.5.397 8,432 8/11/2015
0.50.5.396 8,709 8/11/2015
0.50.4.395 9,003 8/8/2015
0.50.3.394 8,482 8/7/2015
0.50.2.393 12,353 8/1/2015
0.50.1.392 40,596 6/17/2015
0.50.0.391 15,134 6/8/2015
0.49.3.390 13,852 5/20/2015
0.49.2.389 9,401 5/18/2015
0.49.1.388 8,274 5/18/2015
0.49.0.387 9,858 5/17/2015
0.48.1.386 10,845 5/10/2015
0.48.0.385 8,322 5/10/2015
0.47.10.384 9,901 5/8/2015
0.47.10.383 8,704 5/6/2015
0.47.10.382 8,652 5/5/2015
0.47.10.381 17,082 4/27/2015
0.47.10.380 23,073 4/1/2015
0.47.10.379 8,671 4/1/2015
0.47.9.378 13,602 3/31/2015
0.47.9.377 8,372 3/31/2015
0.47.9.376 10,108 3/30/2015
0.47.8.375 8,631 3/28/2015
0.47.7.374 18,461 3/25/2015
0.47.6.373 10,887 3/18/2015
0.47.5.372 9,253 3/17/2015
0.47.4.371 8,991 3/16/2015
0.47.3.370 8,385 3/15/2015
0.47.2.369 8,602 3/12/2015
0.47.1.368 36,716 3/4/2015
0.47.0.367 9,067 3/4/2015
0.46.1.366 9,591 3/3/2015
0.46.0.365 8,946 3/2/2015
0.45.0.364 8,665 3/2/2015
0.44.3.363 10,453 2/24/2015
0.44.2.362 8,838 2/24/2015
0.44.1.361 9,145 2/22/2015
0.44.0.360 25,012 2/18/2015
0.43.1.359 10,050 2/12/2015
0.43.0.358 13,865 2/7/2015
0.42.0.357 8,692 2/5/2015
0.41.0.356 8,554 2/4/2015
0.40.6.355 9,056 2/3/2015
0.40.3.354 8,849 2/2/2015
0.40.3.353 9,637 1/26/2015
0.40.3.352 11,974 1/20/2015
0.40.3.351 8,482 1/19/2015
0.40.2.350 8,639 1/19/2015
0.40.1.349 9,027 1/17/2015
0.40.1.348 10,678 1/15/2015
0.40.1.347 10,743 1/13/2015
0.40.1.346 8,219 1/12/2015
0.40.0.345 8,596 1/9/2015
0.40.0.344 8,330 1/9/2015
0.40.0.343 8,460 1/8/2015
0.40.0.342 8,377 1/8/2015
0.39.6.340 9,129 1/6/2015
0.39.5.339 8,625 1/5/2015
0.39.4.338 8,883 1/1/2015
0.39.4.337 9,766 12/23/2014
0.39.4.336 11,517 12/13/2014
0.39.2.335 8,487 12/12/2014
0.39.2.334 11,309 12/9/2014
0.39.2.333 15,988 12/5/2014
0.39.1.332 9,433 12/3/2014
0.39.1.331 8,523 12/2/2014
0.39.0.330 8,747 12/1/2014
0.38.2.329 9,565 11/26/2014
0.38.2.328 8,450 11/26/2014
0.38.1.327 8,614 11/25/2014
0.38.0.326 9,010 11/22/2014
0.38.0.325 8,777 11/20/2014
0.38.0.324 10,546 11/14/2014
0.37.2.323 10,434 11/14/2014
0.37.2.322 10,739 11/5/2014
0.37.2.321 21,825 10/29/2014
0.37.2.320 8,865 10/29/2014
0.37.2.319 8,426 10/28/2014
0.37.1.318 8,776 10/25/2014
0.37.1.317 22,698 10/16/2014
0.37.1.316 10,133 10/13/2014
0.37.0.315 8,730 10/12/2014
0.36.5.314 9,163 10/11/2014
0.36.5.313 8,763 10/9/2014
0.36.4.312 8,584 10/8/2014
0.36.4.311 8,322 10/8/2014
0.36.4.310 10,704 10/3/2014
0.36.3.309 8,542 10/1/2014
0.36.2.308 8,998 9/28/2014
0.36.1.307 9,830 9/20/2014
0.36.1.306 8,942 9/17/2014
0.36.0.305 14,501 9/15/2014
0.35.6.304 11,431 9/1/2014
0.35.6.303 8,686 8/28/2014
0.35.6.302 10,215 8/16/2014
0.35.6.301 8,427 8/15/2014
0.35.5.300 8,436 8/14/2014
0.35.4.299 8,328 8/14/2014
0.35.4.298 8,646 8/13/2014
0.35.4.297 10,673 8/11/2014
0.35.3.296 8,429 8/10/2014
0.35.3.295 8,551 8/8/2014
0.35.3.294 8,554 8/5/2014
0.35.1.288 10,021 8/1/2014
0.35.1.287 8,445 8/1/2014
0.35.1.286 8,378 8/1/2014
0.35.1.285 9,893 7/29/2014
0.35.1.284 9,253 7/23/2014
0.35.1.283 8,660 7/23/2014
0.35.0.282 9,177 7/22/2014
0.35.0.281 12,236 7/15/2014
0.34.0.280 9,416 7/11/2014
0.34.0.279 29,390 7/9/2014
0.33.2.278 11,981 7/9/2014
0.33.2.277 11,059 7/2/2014
0.33.1.276 10,026 6/24/2014
0.33.1.275 8,668 6/19/2014
0.33.0.274 8,459 6/19/2014
0.33.0.273 9,263 6/16/2014
0.32.3.272 8,713 6/14/2014
0.32.2.271 9,930 6/5/2014
0.32.1.270 8,800 6/1/2014
0.32.1.269 8,348 6/1/2014
0.32.1.268 9,894 5/26/2014
0.32.0.267 8,428 5/23/2014
0.32.0.266 15,677 5/22/2014
0.32.0.265 9,491 5/21/2014
0.32.0.264 8,393 5/21/2014
0.32.0.263 8,563 5/20/2014
0.32.0.262 8,390 5/19/2014
0.31.1.261 8,435 5/19/2014
0.31.1.260 8,406 5/19/2014
0.31.0.259 8,614 5/16/2014
0.30.2.258 8,578 5/15/2014
0.30.2.257 8,589 5/14/2014
0.30.2.254 9,082 5/8/2014
0.30.2.252 22,849 4/30/2014
0.30.2.251 8,427 4/30/2014
0.30.1.250 9,662 4/29/2014
0.30.0.249 8,687 4/28/2014
0.30.0.248 8,953 4/24/2014
0.30.0.247 9,118 4/17/2014
0.29.0.246 9,152 4/16/2014
0.28.5.245 9,361 4/14/2014
0.28.4.242 12,453 4/5/2014
0.28.4.241 8,502 4/4/2014
0.28.4.240 8,582 4/3/2014
0.28.4.232 8,744 3/31/2014
0.28.3.231 8,679 3/27/2014
0.28.3.230 8,517 3/27/2014
0.28.3.229 9,552 3/19/2014
0.28.2.227 8,990 3/14/2014
0.28.2.226 8,573 3/13/2014
0.28.2.225 13,032 3/5/2014
0.28.1.224 8,555 3/4/2014
0.27.5.222 9,127 2/28/2014
0.27.5.221 8,426 2/28/2014
0.27.4.220 8,883 2/26/2014
0.27.3.219 8,619 2/25/2014
0.27.2.218 8,470 2/25/2014
0.27.1.216 12,365 2/14/2014
0.27.0.215 9,567 2/12/2014
0.26.7.214 9,004 2/12/2014
0.26.7.213 8,726 2/11/2014
0.26.7.212 8,504 2/10/2014
0.26.7.211 8,287 2/10/2014
0.26.6.210 8,342 2/10/2014
0.26.5.209 8,590 2/10/2014
0.26.5.208 8,724 2/5/2014
0.26.5.207 8,368 2/4/2014
0.26.4.206 8,329 2/4/2014
0.26.3.204 8,420 2/4/2014
0.26.3.203 8,682 2/3/2014
0.26.3.202 8,121 1/30/2014
0.26.3.198 7,875 1/30/2014
0.26.2.194 12,354 1/23/2014
0.26.1.193 11,751 1/20/2014
0.26.1.191 8,091 1/17/2014
0.26.1.189 8,149 1/16/2014
0.26.1.188 7,985 1/15/2014
0.26.1.187 7,950 1/15/2014
0.26.1.186 14,855 1/13/2014
0.26.1.185 9,044 1/3/2014
0.26.1.184 8,020 1/2/2014
0.26.1.183 8,602 12/20/2013
0.26.0.182 7,962 12/19/2013
0.26.0.181 10,008 12/16/2013
0.25.4.180 7,875 12/16/2013
0.25.4.179 7,844 12/16/2013
0.25.3.178 8,086 12/13/2013
0.25.3.177 7,981 12/13/2013
0.25.3.176 6,433 12/12/2013
0.25.2.174 6,552 12/11/2013
0.25.1.173 6,431 12/10/2013
0.25.0.172 6,433 12/10/2013
0.25.0.171 6,670 12/9/2013
0.24.0.169 34,837 12/9/2013
0.24.0.165 15,345 11/21/2013
0.23.0.163 6,532 11/19/2013
0.22.1.162 6,468 11/19/2013
0.22.0.161 6,413 11/19/2013
0.21.0.159 6,459 11/18/2013
0.20.0.157 6,500 11/15/2013
0.20.0.155 8,543 11/13/2013
0.19.0.154 6,913 11/6/2013
0.18.1.151 6,426 11/5/2013
0.18.1.150 6,399 11/5/2013
0.18.0.149 6,317 11/4/2013
0.17.0.148 6,518 11/1/2013
0.16.0.146 6,526 10/31/2013
0.16.0.145 6,365 10/30/2013
0.16.0.144 6,421 10/29/2013
0.15.3.143 8,716 10/23/2013
0.15.2.142 6,921 10/23/2013
0.15.2.139 8,906 10/21/2013
0.15.2.138 6,465 10/21/2013
0.14.5.132 6,755 10/21/2013
0.14.4.131 6,423 10/21/2013
0.14.4.130 7,028 10/16/2013
0.14.4.128 6,742 10/15/2013
0.14.4.127 6,365 10/15/2013
0.14.4.126 9,003 10/10/2013
0.14.4.124 7,405 10/8/2013
0.14.3.123 7,733 10/3/2013
0.14.2.122 6,481 10/2/2013
0.14.1.121 7,578 9/26/2013
0.14.0.120 6,486 9/24/2013
0.12.4.119 7,254 9/13/2013
0.12.3.117 6,429 9/11/2013
0.12.1.115 6,334 9/10/2013
0.12.0.116 6,359 9/10/2013
0.11.1.114 6,841 9/9/2013
0.11.1.113 8,543 8/30/2013
0.11.1.110 7,319 8/28/2013
0.11.1.109 6,392 8/28/2013
0.11.1.108 6,861 8/21/2013
0.11.1.105 6,600 8/14/2013
0.11.1.104 7,260 8/13/2013
0.11.1.101 6,772 8/2/2013
0.11.1.100 7,225 7/23/2013
0.11.1.98 6,661 7/19/2013
0.11.1.97 7,534 7/8/2013
0.11.0.96 6,584 7/8/2013
0.11.0.95 6,762 7/2/2013
0.11.0.93 6,766 6/26/2013
0.10.1.92 7,625 6/13/2013
0.10.1.91 6,473 6/12/2013
0.10.1.90 7,033 6/5/2013
0.10.1.89 7,956 5/31/2013
0.10.0.88 6,658 5/29/2013
0.10.0.87 6,802 5/24/2013
0.10.0.86 6,695 5/22/2013
0.10.0.85 6,432 5/21/2013
0.10.0.84 6,799 5/10/2013
0.10.0.82 7,204 5/7/2013
0.10.0.81 7,110 4/25/2013
0.10.0.80 8,021 4/12/2013
0.10.0.79 7,900 3/20/2013
0.10.0.78 6,407 3/20/2013
0.10.0.77 6,407 3/20/2013
0.9.2.76 9,402 3/19/2013
0.9.2.75 8,045 3/4/2013
0.9.2.74 6,681 2/28/2013
0.9.2.73 6,679 2/25/2013
0.9.2.72 7,134 2/5/2013
0.9.2.70 6,793 2/5/2013
0.9.2.68 15,730 1/10/2013
0.9.2.66 7,301 12/17/2012
0.9.2.65 8,240 12/13/2012
0.9.2.64 6,671 12/12/2012
0.9.2.63 6,679 12/12/2012
0.9.2.62 6,709 12/10/2012
0.9.1.60 6,879 12/8/2012
0.9.1.59 6,792 12/6/2012
0.9.1.55 6,569 12/6/2012
0.9.1.54 6,684 12/3/2012
0.9.1.52 7,219 11/21/2012
0.9.0.51 6,714 11/21/2012
0.9.0.50 6,654 11/20/2012
0.9.0.49 6,569 11/20/2012
0.9.0.48 6,632 11/20/2012
0.9.0.47 6,944 11/16/2012
0.9.0.46 6,618 11/16/2012
0.9.0.45 6,555 11/14/2012
0.9.0.44 6,597 11/13/2012
0.9.0.42 6,501 11/13/2012
0.8.4.41 9,233 11/12/2012
0.8.3.40 6,482 11/9/2012
0.8.2.39 6,605 11/6/2012
0.8.2.38 6,607 11/6/2012
0.8.1.37 10,260 10/8/2012
0.8.0.36 6,543 10/5/2012
0.7.2.35 6,735 10/3/2012
0.7.2.34 6,459 10/2/2012
0.7.1.33 6,690 10/1/2012
0.7.1.32 6,452 9/27/2012
0.7.1.31 6,467 9/26/2012
0.7.1.30 6,488 9/26/2012
0.7.0.29 6,493 9/25/2012
0.7.0.28 6,571 9/25/2012
0.7.0.27 6,500 9/25/2012
0.7.0.26 6,432 9/25/2012
0.7.0.25 6,574 9/25/2012
0.6.4.24 6,595 9/25/2012
0.6.3.23 6,470 9/21/2012
0.6.3.21 6,401 9/19/2012
0.6.3.20 6,716 9/10/2012
0.6.3.19 6,486 9/10/2012
0.6.3.17 6,524 8/31/2012
0.6.3.16 6,502 8/30/2012
0.6.3.15 6,517 8/23/2012
0.6.3.13 6,767 8/7/2012
0.6.3.12 9,274 7/25/2012
0.6.3.11 6,602 7/13/2012
0.6.3.10 6,689 7/12/2012
0.6.3.9 6,461 7/11/2012
0.6.3.8 6,519 7/6/2012
0.6.3.7 6,413 7/4/2012
0.6.3.6 6,414 7/3/2012
0.6.3 6,444 7/2/2012
0.6.0.1 6,556 5/29/2012
0.3.0 6,669 4/30/2012
0.2.0 17,163 12/1/2011