EasyNetQ.DI.Autofac 8.0.0-beta5

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

Showing the top 1 NuGet packages that depend on EasyNetQ.DI.Autofac:

Package Downloads
PlutoStudio.Framework.RabbitMQ

PlutoStudio framework 是由 Pluto Studio 基于PlutoStudio所开发的一系列Api及框架。

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
8.0.0-beta96 177 3/15/2024
8.0.0-beta95 310 10/22/2023
8.0.0-beta94 230 6/18/2023
8.0.0-beta93 211 6/17/2023
8.0.0-beta92 211 6/17/2023
8.0.0-beta91 212 6/11/2023
8.0.0-beta90 215 5/8/2023
8.0.0-beta9 227 3/21/2023
8.0.0-beta8 231 2/20/2023
8.0.0-beta6 245 1/29/2023
8.0.0-beta5 249 1/20/2023
8.0.0-beta4 268 1/5/2023
8.0.0-beta3 252 12/29/2022
8.0.0-beta2 253 12/16/2022
8.0.0-beta10 205 3/21/2023
8.0.0-beta1 241 12/15/2022
8.0.0-alpha9 229 12/14/2022
8.0.0-alpha8 251 11/30/2022
8.0.0-alpha7 253 11/12/2022
8.0.0-alpha6 245 10/29/2022
8.0.0-alpha5 204 10/5/2022
8.0.0-alpha4 285 10/1/2022
8.0.0-alpha3 305 9/26/2022
8.0.0-alpha2 271 9/21/2022
8.0.0-alpha1 315 9/19/2022
7.8.0 71,419 12/16/2023
7.7.0 1,757 11/19/2023
7.6.0 4,119 10/12/2023
7.5.5 3,480 7/20/2023
7.5.4 238 7/19/2023
7.5.3 11,157 6/15/2023
7.5.2 6,405 5/14/2023
7.5.1 722 5/4/2023
7.5.0 3,445 3/25/2023
7.4.3 17,476 2/3/2023
7.4.1 835 1/31/2023
7.4.0 937 1/29/2023
7.3.12 642 1/23/2023
7.3.11 613 1/22/2023
7.3.10 592 1/19/2023
7.3.9 26,849 1/17/2023
7.3.8 1,054 1/4/2023
7.3.7 787 12/22/2022
7.3.6 834 12/19/2022
7.3.5 939 11/30/2022
7.3.4 644 11/30/2022
7.3.3 834 11/24/2022
7.3.2 9,958 11/15/2022
7.3.1 727 11/12/2022
7.3.0 14,958 10/29/2022
7.3.0-alpha3 242 10/15/2022
7.2.1 1,189 10/9/2022
7.2.1-alpha1 244 10/6/2022
7.2.0 7,597 9/17/2022
7.2.0-alpha1 309 9/15/2022
7.1.1-alpha1 306 9/14/2022
7.1.0 864 9/13/2022
7.0.4 2,909 9/7/2022
7.0.3 701 9/5/2022
7.0.3-alpha1 226 9/5/2022
7.0.2 773 9/5/2022
7.0.1 987 8/27/2022
7.0.0 3,469 7/23/2022
7.0.0-rc5 242 6/28/2022
7.0.0-rc4 271 6/27/2022
7.0.0-rc3 259 6/20/2022
7.0.0-rc2 264 6/9/2022
7.0.0-rc1 260 6/9/2022
7.0.0-beta9 275 6/8/2022
7.0.0-beta7 287 6/5/2022
7.0.0-beta6 261 5/24/2022
7.0.0-beta5 397 11/18/2021
7.0.0-beta4 331 11/9/2021
7.0.0-beta3 393 11/6/2021
7.0.0-beta2 372 9/29/2021
7.0.0-beta1 372 9/13/2021
7.0.0-alpha9 340 8/25/2021
7.0.0-alpha8 342 8/25/2021
7.0.0-alpha7 332 8/25/2021
7.0.0-alpha6 340 8/16/2021
7.0.0-alpha5 348 8/16/2021
7.0.0-alpha4 1,064 1/20/2021
7.0.0-alpha3 643 12/31/2020
7.0.0-alpha2 621 12/28/2020
6.5.2 34,110 6/20/2022
6.4.1 4,512 5/22/2022
6.4.0-alpha0096 784 12/6/2020
6.4.0-alpha0095 669 12/6/2020
6.4.0-alpha0094 664 12/6/2020
6.4.0-alpha.99 312 12/26/2020
6.4.0-alpha.97 322 12/9/2020
6.3.1 136,712 11/28/2020
6.3.0 10,285 11/22/2020
6.2.0 1,552 11/15/2020
6.1.0 1,767 11/10/2020
6.0.3 1,080 11/9/2020
6.0.2 1,112 11/6/2020
6.0.1 1,698 11/1/2020
5.6.0 3,880 10/10/2020
5.5.0 3,991 10/5/2020
5.4.1 1,147 10/4/2020
5.4.0 1,220 10/1/2020
5.3.0-alpha0079 750 6/16/2020
5.3.0-alpha0078 669 6/15/2020
5.3.0-alpha0077 702 6/15/2020
5.3.0-alpha0076 718 6/15/2020
5.3.0-alpha0075 694 6/14/2020
5.3.0-alpha0074 741 6/12/2020
5.3.0-alpha0073 751 6/12/2020
5.3.0-alpha0072 740 6/11/2020
5.3.0-alpha0070 764 6/7/2020
5.2.2 1,463 9/4/2020
5.2.1 113,096 9/3/2020
5.2.0 71,200 6/7/2020
5.2.0-alpha0073 743 5/26/2020
5.2.0-alpha0072 789 5/25/2020
5.2.0-alpha0071 729 5/25/2020
5.2.0-alpha0070 755 5/24/2020
5.2.0-alpha0069 781 5/24/2020
5.2.0-alpha0066 690 5/21/2020
5.2.0-alpha0065 742 5/20/2020
5.2.0-alpha0064 793 5/17/2020
5.2.0-alpha0057 770 5/10/2020
5.2.0-alpha0056 718 5/8/2020
5.1.2 3,363 5/24/2020
5.1.1 1,363 5/10/2020
5.1.0 1,187 5/7/2020
5.1.0-alpha0055 746 5/3/2020
5.1.0-alpha0054 815 5/3/2020
5.1.0-alpha0053 750 4/30/2020
5.0.5 1,402 5/4/2020
5.0.4 4,531 5/3/2020
5.0.3 1,263 5/2/2020
5.0.2 1,203 5/2/2020
5.0.1 1,184 5/2/2020
5.0.0 1,332 4/29/2020
4.1.0-alpha0014 739 4/29/2020
4.1.0-alpha0013 700 4/24/2020
4.1.0-alpha0005 766 4/20/2020
4.1.0-alpha0004 741 4/18/2020
4.1.0-alpha0001 740 4/17/2020
4.0.9 1,204 4/29/2020
4.0.8 1,330 4/28/2020
4.0.7 1,236 4/27/2020
4.0.6 1,387 4/24/2020
4.0.5 1,312 4/22/2020
4.0.4 1,222 4/21/2020
4.0.3 1,299 4/20/2020
4.0.2 1,199 4/20/2020
4.0.1 1,225 4/20/2020
4.0.0 1,269 4/18/2020
3.8.0 1,722 4/17/2020
3.8.0-alpha0048 867 2/28/2020
3.8.0-alpha0042 1,732 2/13/2020
3.8.0-alpha0041 2,989 1/8/2020
3.8.0-alpha0040 857 9/26/2019
3.8.0-alpha0039 787 9/25/2019
3.7.1 64,737 9/25/2019
3.7.0 1,471 9/23/2019
3.7.0-alpha0038 974 8/3/2019
3.7.0-alpha0037 853 8/1/2019
3.6.0 16,233 7/17/2019
3.6.0-alpha0036 943 6/4/2019
3.6.0-alpha0035 923 6/2/2019
3.6.0-alpha0034 923 6/2/2019
3.6.0-alpha0033 939 6/2/2019
3.6.0-alpha0031 864 5/4/2019
3.5.2 37,430 7/11/2019
3.5.1 4,275 6/2/2019
3.5.0 6,281 5/2/2019
3.5.0-alpha0036 895 4/10/2019
3.5.0-alpha0031 888 3/25/2019
3.5.0-alpha0030 871 3/21/2019
3.5.0-alpha0029 852 3/19/2019
3.5.0-alpha0027 870 3/18/2019
3.5.0-alpha0026 841 3/18/2019
3.5.0-alpha0025 862 3/17/2019
3.5.0-alpha0024 868 3/16/2019
3.5.0-alpha0021 883 3/15/2019
3.5.0-alpha0020 890 3/14/2019
3.5.0-alpha0019 881 3/14/2019
3.5.0-alpha0018 877 3/14/2019
3.5.0-alpha0013 886 3/14/2019
3.4.5 3,898 3/21/2019
3.4.4 1,730 3/16/2019
3.4.3 1,495 3/14/2019
3.4.2 1,467 3/13/2019
3.4.1 1,424 3/12/2019
3.4.0 48,549 2/19/2019
3.4.0-alpha0022 959 1/27/2019
3.4.0-alpha0021 937 1/25/2019
3.4.0-alpha0020 963 12/21/2018
3.4.0-alpha0019 1,030 12/6/2018
3.4.0-alpha0018 997 11/21/2018
3.4.0-alpha0017 1,015 11/20/2018
3.4.0-alpha0016 1,066 11/5/2018
3.4.0-alpha0015 1,068 11/2/2018
3.4.0-alpha0011 1,088 11/1/2018
3.4.0-alpha0010 1,109 10/3/2018
3.4.0-alpha0009 1,105 9/16/2018
3.4.0-alpha0008 1,099 9/1/2018
3.4.0-alpha0007 1,106 8/29/2018
3.4.0-alpha0006 1,130 8/28/2018
3.4.0-alpha0005 1,072 8/28/2018
3.4.0-alpha0004 1,149 8/23/2018
3.4.0-alpha0003 1,127 8/22/2018
3.4.0-alpha0002 1,112 8/10/2018
3.4.0-alpha0001 1,325 7/30/2018
3.3.9 3,953 1/25/2019
3.3.8 1,645 1/18/2019
3.3.7 1,783 1/5/2019
3.3.6 1,784 12/19/2018
3.3.5 1,912 11/21/2018
3.3.4 1,801 11/20/2018
3.3.3 2,141 11/11/2018
3.3.2 2,207 10/12/2018
3.3.1 15,627 8/28/2018
3.3.0 5,077 7/18/2018
3.3.0-alpha0007 1,307 7/18/2018
3.3.0-alpha0006 1,505 7/17/2018
3.3.0-alpha0005 1,495 7/17/2018
3.3.0-alpha0004 1,259 7/17/2018
3.3.0-alpha0003 1,510 7/15/2018
3.3.0-alpha0001 1,513 7/11/2018
3.2.0 2,212 7/12/2018
3.1.2 1,952 7/11/2018
3.1.1 1,941 7/4/2018
3.1.0 3,816 6/20/2018
3.1.0-alpha0019 1,501 7/4/2018
3.1.0-alpha0017 1,367 7/2/2018
3.1.0-alpha0016 1,493 6/30/2018
3.1.0-alpha0014 1,544 6/26/2018
3.1.0-alpha0011 1,324 6/23/2018
3.1.0-alpha0010 1,554 6/20/2018
3.1.0-alpha0009 1,298 6/20/2018
3.1.0-alpha0008 1,316 6/19/2018
3.1.0-alpha0007 1,528 6/17/2018
3.1.0-alpha0006 1,522 6/14/2018
3.1.0-alpha0005 1,508 6/14/2018
3.1.0-alpha0004 1,609 5/28/2018
3.0.1 2,199 7/4/2018
3.0.0 6,242 5/24/2018
2.4.0-alpha0027 1,502 5/23/2018
2.4.0-alpha0026 1,579 5/23/2018
2.4.0-alpha0025 1,495 5/22/2018
2.4.0-alpha0024 1,495 5/18/2018
2.4.0-alpha0023 1,332 5/16/2018
2.4.0-alpha0022 1,634 5/16/2018
2.4.0-alpha0021 1,519 5/15/2018
2.4.0-alpha0020 1,525 5/15/2018
2.4.0-alpha0019 1,608 4/20/2018
2.4.0-alpha0017 1,518 4/19/2018
2.4.0-alpha0016 1,496 4/13/2018
2.4.0-alpha0015 1,491 4/3/2018
2.4.0-alpha0014 1,553 4/1/2018
2.4.0-alpha0013 1,886 3/30/2018
2.4.0-alpha0009 1,530 2/20/2018
2.4.0-alpha0002 1,395 12/1/2017
2.3.3 6,795 4/24/2018
2.3.1 17,691 2/20/2018
2.3.0 2,057 2/19/2018
2.3.0-alpha0006 1,953 11/21/2017
2.3.0-alpha0005 1,313 11/13/2017
2.3.0-alpha0002 1,696 9/18/2017
2.2.0 42,858 11/13/2017
2.2.0-alpha0009 1,357 9/14/2017
2.2.0-alpha0008 1,308 9/11/2017
2.2.0-alpha0007 1,302 9/10/2017
2.2.0-alpha0006 1,347 8/18/2017
2.2.0-alpha0002 1,325 8/18/2017
2.1.0 3,254 8/18/2017
2.1.0-alpha0022 1,291 8/18/2017
2.1.0-alpha0020 1,357 7/24/2017
2.1.0-alpha0018 1,389 7/13/2017
2.1.0-alpha0016 1,341 7/12/2017
2.1.0-alpha0011 1,403 7/11/2017
2.1.0-alpha0005 1,384 7/3/2017
2.1.0-alpha0002 1,365 7/3/2017
2.0.4 2,735 7/24/2017
2.0.4-unstable0013 1,532 6/26/2017
2.0.4-unstable0011 1,453 6/26/2017
2.0.4-unstable0010 1,508 6/11/2017
2.0.4-unstable0009 1,459 6/1/2017
2.0.4-unstable0007 3,210 5/4/2017
2.0.4-unstable0004 1,491 5/1/2017
2.0.4-unstable0003 1,501 5/1/2017
2.0.4-unstable0002 1,505 4/30/2017
2.0.4-unstable0001 1,433 4/27/2017
2.0.4-alpha0038 1,366 7/1/2017
2.0.3-unstable0064 1,405 4/27/2017
2.0.3-unstable0058 1,423 3/28/2017
2.0.3-unstable0057 1,410 3/15/2017
2.0.3-unstable0055 1,639 2/10/2017
2.0.3-unstable0053 1,461 2/9/2017
2.0.3-unstable0052 1,500 2/8/2017
1.1.4.506 2,041 7/6/2017
1.1.3.500 1,997 6/28/2017
1.1.2.497 1,890 6/21/2017
1.1.1.494 2,873 5/30/2017
1.1.0.492 2,048 5/4/2017
1.0.4.483 6,788 4/26/2017
1.0.3.481 1,943 4/4/2017
1.0.2.478 1,994 3/15/2017
1.0.1.475 2,144 2/10/2017
1.0.0.469 1,922 2/8/2017
1.0.0 1,920 6/30/2017
0.63.7.467 2,154 2/7/2017
0.63.6.463 1,915 2/7/2017
0.63.6.460 1,885 2/5/2017
0.63.5.454 2,343 10/17/2016
0.63.4.453 1,956 10/10/2016
0.63.3.452 2,018 9/26/2016
0.63.1.451 2,216 9/19/2016
0.63.1.450 2,015 9/11/2016
0.63.0.448 3,838 8/12/2016
0.62.1.445 2,010 8/8/2016
0.62.0.444 1,998 8/8/2016
0.61.1.443 1,994 8/5/2016
0.61.0.442 2,224 8/2/2016
0.60.1.441 2,098 7/31/2016
0.60.0.440 2,118 7/25/2016
0.59.0.439 2,038 7/18/2016
0.59.0.437 1,956 7/18/2016
0.59.0.436 1,925 7/18/2016
0.59.0.434 2,328 6/6/2016
0.58.0.433 2,240 5/2/2016
0.57.2.432 2,017 5/2/2016
0.57.2.431 2,285 4/25/2016
0.57.2.430 2,032 4/20/2016
0.57.1.429 1,916 4/20/2016
0.57.0.428 1,942 4/18/2016
0.56.0.427 2,191 4/1/2016
0.55.1.426 2,376 3/17/2016
0.55.0.425 3,344 3/1/2016
0.54.3.424 2,358 2/2/2016
0.54.2.423 1,963 2/1/2016
0.54.1.421 1,922 2/1/2016
0.54.0.420 1,984 1/28/2016
0.53.6.419 1,995 1/25/2016
0.53.6.418 2,014 1/6/2016
0.53.5.417 1,958 1/6/2016
0.53.5.416 2,022 1/5/2016
0.53.4.415 2,050 12/23/2015
0.53.3.414 6,467 12/9/2015
0.53.2.413 2,380 12/1/2015
0.53.1.412 2,338 11/28/2015
0.53.0.411 2,159 11/19/2015
0.52.0.410 2,089 11/18/2015
0.51.0.409 2,038 11/17/2015
0.51.0.408 1,992 11/16/2015
0.50.12.407 6,464 10/22/2015
0.50.12.406 2,088 10/22/2015
0.50.11.404 2,035 10/20/2015
0.50.10.403 2,058 10/10/2015
0.50.9.401 2,401 10/5/2015
0.50.8.400 3,268 9/28/2015
0.50.7.399 2,615 8/18/2015
0.50.6.398 2,412 8/11/2015
0.50.5.397 2,474 8/11/2015
0.50.5.396 2,058 8/11/2015
0.50.4.395 2,383 8/8/2015
0.50.3.394 2,393 8/7/2015
0.50.2.393 2,209 8/1/2015
0.50.1.392 2,470 6/17/2015
0.50.0.391 2,236 6/8/2015
0.49.3.390 2,148 5/20/2015
0.49.2.389 2,019 5/18/2015
0.49.1.388 1,993 5/18/2015
0.49.0.387 1,981 5/17/2015
0.48.1.386 2,012 5/10/2015
0.48.0.385 2,021 5/10/2015
0.47.10.384 2,004 5/8/2015
0.47.10.383 2,160 5/6/2015
0.47.10.382 2,113 5/5/2015
0.47.10.381 2,181 4/27/2015
0.47.10.380 2,626 4/1/2015
0.47.10.379 2,123 4/1/2015
0.47.9.378 2,091 3/31/2015
0.47.9.377 2,059 3/31/2015
0.47.9.376 2,108 3/30/2015
0.47.8.375 2,067 3/28/2015
0.47.7.374 2,381 3/25/2015
0.47.6.373 2,818 3/18/2015
0.47.5.372 2,032 3/17/2015
0.47.4.371 2,100 3/16/2015
0.47.3.370 2,107 3/15/2015
0.47.2.369 2,028 3/12/2015
0.47.1.368 2,155 3/4/2015
0.47.0.367 2,113 3/4/2015
0.46.1.366 2,128 3/3/2015
0.46.0.365 2,037 3/2/2015
0.45.0.364 2,251 3/2/2015
0.44.3.363 2,155 2/24/2015
0.44.2.362 2,359 2/24/2015
0.44.1.361 2,484 2/22/2015
0.44.0.360 2,386 2/18/2015
0.43.1.359 2,331 2/12/2015
0.43.0.358 2,110 2/7/2015
0.42.0.357 2,061 2/5/2015
0.41.0.356 2,058 2/4/2015
0.40.6.355 2,092 2/3/2015
0.40.3.354 2,081 2/2/2015
0.40.3.353 2,114 1/26/2015
0.40.3.352 2,129 1/20/2015
0.40.3.351 2,113 1/19/2015
0.40.2.350 2,090 1/19/2015
0.40.1.349 2,115 1/17/2015
0.40.1.348 2,180 1/15/2015
0.40.1.347 2,093 1/13/2015
0.40.1.346 2,105 1/12/2015
0.40.0.345 2,118 1/9/2015
0.40.0.344 2,093 1/9/2015
0.40.0.343 2,113 1/8/2015
0.40.0.342 2,075 1/8/2015
0.39.6.340 2,231 1/6/2015
0.39.5.339 2,099 1/5/2015
0.39.4.338 2,611 1/1/2015
0.39.4.337 2,467 12/23/2014
0.39.4.336 2,406 12/13/2014
0.39.2.335 2,305 12/12/2014
0.39.2.334 2,295 12/9/2014
0.39.2.333 2,296 12/5/2014
0.39.1.332 2,263 12/3/2014
0.39.1.331 2,247 12/2/2014
0.39.0.330 2,217 12/1/2014
0.38.2.329 2,230 11/26/2014
0.38.2.328 2,221 11/26/2014
0.38.1.327 2,173 11/25/2014
0.38.0.326 2,236 11/22/2014
0.38.0.325 2,294 11/20/2014
0.38.0.324 2,303 11/14/2014
0.37.2.323 2,362 11/14/2014
0.37.2.322 2,578 11/5/2014
0.37.2.321 2,188 10/29/2014
0.37.2.320 2,048 10/29/2014
0.37.2.319 2,125 10/28/2014
0.37.1.318 2,152 10/25/2014
0.37.1.317 2,198 10/16/2014
0.37.1.316 2,093 10/13/2014
0.37.0.315 2,194 10/12/2014
0.36.5.314 2,162 10/11/2014
0.36.5.313 2,086 10/9/2014
0.36.4.312 2,060 10/8/2014
0.36.4.311 2,095 10/8/2014
0.36.4.310 2,096 10/3/2014
0.36.3.309 2,172 10/1/2014
0.36.2.308 2,086 9/28/2014
0.36.1.307 2,083 9/20/2014
0.36.1.306 2,105 9/17/2014
0.36.0.305 2,112 9/15/2014
0.35.6.304 2,153 9/1/2014
0.35.6.303 2,111 8/28/2014
0.35.6.302 2,164 8/16/2014
0.35.6.301 2,193 8/15/2014
0.35.5.300 2,106 8/14/2014
0.35.4.299 2,104 8/14/2014
0.35.4.298 2,144 8/13/2014
0.35.4.297 2,129 8/11/2014
0.35.3.296 2,067 8/10/2014
0.35.3.295 2,155 8/8/2014
0.35.3.294 2,069 8/5/2014
0.35.1.288 2,047 8/1/2014
0.35.1.287 2,112 8/1/2014
0.35.1.286 2,103 8/1/2014
0.35.1.285 2,092 7/29/2014
0.35.1.284 2,090 7/23/2014
0.35.1.283 2,082 7/23/2014
0.35.0.282 2,075 7/22/2014
0.35.0.281 2,092 7/15/2014
0.34.0.280 2,385 7/11/2014
0.34.0.279 2,049 7/9/2014
0.33.2.278 2,091 7/9/2014
0.33.2.277 2,076 7/2/2014
0.33.1.276 2,444 6/24/2014
0.33.1.275 2,087 6/19/2014
0.33.0.274 2,116 6/19/2014
0.33.0.273 2,135 6/16/2014
0.32.3.272 2,099 6/14/2014
0.32.2.271 2,181 6/5/2014
0.32.1.270 2,137 6/1/2014
0.32.1.269 2,123 6/1/2014
0.32.1.268 2,092 5/26/2014
0.32.0.267 2,104 5/23/2014
0.32.0.266 2,120 5/22/2014
0.32.0.265 2,096 5/21/2014
0.32.0.264 2,078 5/21/2014
0.32.0.263 2,120 5/20/2014
0.32.0.262 2,156 5/19/2014
0.31.1.261 2,105 5/19/2014
0.31.1.260 2,144 5/19/2014
0.31.0.259 2,156 5/16/2014
0.30.2.258 2,107 5/15/2014
0.30.2.257 2,097 5/14/2014
0.30.2.254 2,186 5/8/2014
0.30.2.252 2,159 4/30/2014
0.30.2.251 2,234 4/30/2014
0.30.1.250 2,131 4/29/2014
0.30.0.249 2,169 4/28/2014
0.30.0.248 2,236 4/24/2014
0.30.0.247 2,159 4/17/2014
0.29.0.246 2,251 4/16/2014
0.28.5.245 2,292 4/14/2014
0.28.4.242 2,246 4/5/2014
0.28.4.241 2,232 4/4/2014
0.28.4.240 2,245 4/3/2014
0.28.4.232 2,226 3/31/2014
0.28.3.231 2,234 3/27/2014
0.28.3.230 2,208 3/27/2014
0.28.3.229 2,193 3/19/2014
0.28.2.227 2,243 3/14/2014
0.28.2.226 2,217 3/13/2014
0.28.2.225 2,179 3/5/2014
0.28.1.224 2,120 3/4/2014
0.27.5.222 2,191 2/28/2014
0.27.5.221 2,229 2/28/2014
0.27.4.220 2,236 2/26/2014
0.27.3.219 2,276 2/25/2014
0.27.2.218 2,156 2/25/2014
0.27.1.216 2,217 2/14/2014
0.27.0.215 2,201 2/12/2014
0.26.7.214 2,206 2/12/2014
0.26.7.213 2,176 2/11/2014
0.26.7.212 2,169 2/10/2014
0.26.7.211 2,199 2/10/2014
0.26.6.210 2,234 2/10/2014
0.26.5.209 2,182 2/10/2014
0.26.5.208 2,159 2/5/2014
0.26.5.207 2,156 2/4/2014
0.26.4.206 2,146 2/4/2014
0.26.3.204 2,157 2/4/2014
0.26.3.203 2,187 2/3/2014