Radzen.Blazor 4.13.3

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

Radzen Blazor is a set of 70+ free native Blazor UI controls packed with DataGrid, Scheduler, Charts and robust theming including Material design and Fluent UI.

Radzen Blazor Components

Why choose Radzen Blazor Components?

✨ Free

Radzen Blazor Components are open source and free for commercial use. You can install them from nuget or build your own copy from source.

Paid support is available as part of the Radzen Professional subscription.

💻 Native

The components are implemented in C# and take full advantage of the Blazor framework. They do not depend on or wrap existing JavaScript frameworks or libraries.

Blazor Server and Blazor WebAssembly are fully supported.

🌱 Growing

We add new components and features on a regular basis.

Short development cycle. We release as soon as new stuff is available. No more quarterly releases.

Support exceeding your expectations

💬 Community Support

Everybody is welcome to visit the Radzen Community forum. Join the growing community and participate in the discussions!

🎯 Dedicated Support

The Radzen team monitors the forum threads, but does not guarantee a response to every question. For guaranteed responses you may consider the dedicated support option.

Dedicated support for the Radzen Blazor Components is available as part of the Radzen Professional subscription.

Our flagship product Radzen Blazor Studio provides tons of productivity features for Blazor developers:

  • An industry-leading WYSIWYG Blazor design time canvas
  • Scaffolding a complete CRUD applications from a database
  • Built-in security - authentication and authorization
  • Visual Studio Code and Professional support
  • Deployment to IIS and Azure
  • Dedicated support with 24 hour guaranteed response time

Get started with Radzen Blazor Components

1. Install

Radzen Blazor Components are distributed as a Radzen.Blazor nuget package. You can add them to your project in one of the following ways

  • Install the package from command line by running dotnet add package Radzen.Blazor
  • Add the project from the Visual Nuget Package Manager
  • Manually edit the .csproj file and add a project reference

2. Import the namespace

Open the _Imports.razor file of your Blazor application and add this line @using Radzen.Blazor.

3. Include a theme

Radzen Blazor components come with five free themes: Material, Standard, Default, Dark, Software and Humanistic.

To use a theme

  1. Pick a theme. The online demos allow you to preview the available options via the theme dropdown located in the header. The Material theme is currently selected by default.
  2. Include the theme CSS file in your Blazor application. Open Pages\_Layout.cshtml (Blazor Server .NET 6), Pages\_Host.cshtml (Blazor Server .NET 7) or wwwroot/index.html (Blazor WebAssembly) and include a theme CSS file by adding this snippet
    <link rel="stylesheet" href="_content/Radzen.Blazor/css/material-base.css">
    

To include a different theme (i.e. Standard) just change the name of the CSS file:

<link rel="stylesheet" href="_content/Radzen.Blazor/css/standard-base.css">

4. Include Radzen.Blazor.js

Open Pages\_Layout.cshtml (Blazor Server .NET 6), Pages\_Host.cshtml (Blazor Server .NET 7) or wwwroot/index.html (Blazor WebAssembly) and include this snippet:

<script src="_content/Radzen.Blazor/Radzen.Blazor.js"></script>

5. Use a component

Use any Radzen Blazor component by typing its tag name in a Blazor page e.g.

<RadzenButton Text="Hi"></RadzenButton>
Data-binding a property
<RadzenButton Text=@text />
<RadzenTextBox @bind-Value=@text />
@code {
  string text = "Hi";
}
Handing events
<RadzenButton Click="@ButtonClicked" Text="Hi"></RadzenButton>
@code {
  void ButtonClicked()
  {

  }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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 (80)

Showing the top 5 NuGet packages that depend on Radzen.Blazor:

Package Downloads
Rystem.RepositoryFramework.Web.Components

Rystem.RepositoryFramework allows you to use correctly concepts like repository pattern, CQRS and DDD. You have interfaces for your domains, auto-generated api, auto-generated HttpClient to simplify connection "api to front-end", a functionality for auto-population in memory of your models, a functionality to simulate exceptions and waiting time from external sources to improve your implementation/business test and load test.

FenixAlliance.ACL.Dependencies

Application Component for the Alliance Business Suite.

Elsa.Studio.Core

Core Elsa Studio services.

Service.Extensions.Blazor.Components

Extensions to provide consistent configurations and patterns for your service.

FenixAlliance.ABS.SDK

Application Component for the Alliance Business Suite.

GitHub repositories (13)

Showing the top 13 popular GitHub repositories that depend on Radzen.Blazor:

Repository Stars
oqtane/oqtane.framework
Oqtane is an open-source developer productivity platform for building modern .NET applications that run on Web, Desktop and Mobile.
Webreaper/Damselfly
Damselfly is a server-based Photograph Management app. The goal of Damselfly is to index an extremely large collection of images, and allow easy search and retrieval of those images, using metadata such as the IPTC keyword tags, as well as the folder and file names. Damselfly includes support for object/face detection.
zzzprojects/System.Linq.Dynamic.Core
The .NET Standard / .NET Core version from the System Linq Dynamic functionality.
simpleidserver/SimpleIdServer
OpenID, OAuth 2.0, SCIM2.0, UMA2.0, FAPI, CIBA & OPENBANKING Framework for ASP.NET Core
flyingpie/windows-terminal-quake
Enable Quake-style dropdown for (almost) any application.
CuriousDrive/BlazingChat
BlazingChat is a Blazor WebAssembly app developed by CuriousDrive for the community. This is a sample application for developers who are just getting started with Blazor.
influxdata/influxdb-client-csharp
InfluxDB 2.x C# Client
elsa-workflows/elsa-studio
A modular, extensible dashboard application framework
ADefWebserver/Blazor-Blogs
Simple blogging application written in Microsoft Server Side Blazor
markjprice/apps-services-net8
Repository for the Packt Publishing book titled "Apps and Services with .NET 8" by Mark J. Price
DamianMorozov/OpenTgResearcher
OpenTgResearcher - tool for analyzing Telegram chats and downloading their content
bhrugen/TangyBlazor
suxrobGM/logistics-app
Automate your entire transportation logistics operations with the fleet management system.
Version Downloads Last Updated
7.4.2 0 9/26/2025
7.4.1 1,306 9/24/2025
7.4.0 189 9/24/2025
7.3.6 3,082 9/23/2025
7.3.5 12,165 9/16/2025
7.3.4 10,880 9/11/2025
7.3.3 25,081 9/2/2025
7.3.2 12,453 8/28/2025
7.3.1 17,832 8/26/2025
7.3.0 4,823 8/25/2025
7.2.3 11,372 8/21/2025
7.2.2 12,798 8/18/2025
7.2.1 10,158 8/14/2025
7.2.0 2,931 8/13/2025
7.1.8 13,117 8/11/2025
7.1.7 31,125 8/4/2025
7.1.6 19,866 7/24/2025
7.1.5 39,388 7/10/2025
7.1.4 27,539 7/7/2025
7.1.3 26,771 6/30/2025
7.1.2 25,130 6/23/2025
7.1.1 18,225 6/18/2025
7.1.0 35,714 6/12/2025
7.0.8 42,748 6/5/2025
7.0.7 636,307 5/27/2025
7.0.6 35,062 5/20/2025
7.0.5 25,636 5/15/2025
7.0.4 12,612 5/13/2025
7.0.3 10,563 5/12/2025
7.0.2 19,705 5/8/2025
7.0.1 2,627 5/8/2025
7.0.0 7,216 5/7/2025
6.6.4 46,557 4/29/2025
6.6.3 22,434 4/24/2025
6.6.2 10,218 4/23/2025
6.6.1 28,705 4/15/2025
6.6.0 287,681 4/15/2025
6.5.3 18,415 4/14/2025
6.5.2 11,272 4/11/2025
6.5.1 22,010 4/9/2025
6.5.0 6,630 4/8/2025
6.4.1 9,452 4/7/2025
6.4.0 43,032 3/29/2025
6.3.4 8,910 3/28/2025
6.3.3 12,034 3/26/2025
6.3.2 119,845 3/21/2025
6.3.1 9,000 3/20/2025
6.3.0 16,922 3/18/2025
6.2.10 2,715 3/18/2025
6.2.9 29,320 3/17/2025
6.2.8 9,644 3/17/2025
6.2.7 7,856 3/14/2025
6.2.6 35,945 3/11/2025
6.2.5 13,170 3/10/2025
6.2.4 13,583 3/7/2025
6.2.3 2,800 3/6/2025
6.2.2 6,446 3/6/2025
6.2.1 3,664 3/6/2025
6.2.0 3,282 3/6/2025
6.1.6 83,970 3/4/2025
6.1.5 8,719 3/3/2025
6.1.4 10,225 3/1/2025
6.1.3 1,678 3/1/2025
6.1.2 30,815 2/26/2025
6.1.1 17,118 2/25/2025
6.1.0 6,334 2/24/2025
6.0.20 85,768 2/21/2025
6.0.19 5,837 2/21/2025
6.0.18 6,494 2/20/2025
6.0.17 6,411 2/19/2025
6.0.16 2,402 2/19/2025
6.0.15 7,028 2/19/2025
6.0.14 5,069 2/18/2025
6.0.13 3,577 2/18/2025
6.0.12 4,980 2/18/2025
6.0.11 2,868 2/18/2025
6.0.10 2,294 2/18/2025
6.0.9 6,922 2/17/2025
6.0.8 6,074 2/17/2025
6.0.7 5,677 2/17/2025
6.0.6 12,161 2/14/2025
6.0.5 2,380 2/14/2025
6.0.4 2,136 2/14/2025
6.0.3 2,602 2/14/2025
6.0.2 2,598 2/14/2025
6.0.1 5,851 2/13/2025
6.0.0 3,504 2/13/2025
5.9.9 47,649 2/12/2025
5.9.8 74,161 2/6/2025
5.9.7 40,080 2/3/2025
5.9.6 114,590 1/29/2025
5.9.5 14,763 1/28/2025
5.9.4 5,129 1/27/2025
5.9.3 3,770 1/27/2025
5.9.2 10,689 1/27/2025
5.9.1 3,581 1/26/2025
5.9.0 5,360 1/24/2025
5.8.0 17,924 1/23/2025
5.7.10 30,670 1/20/2025
5.7.9 12,893 1/17/2025
5.7.8 11,825 1/16/2025
5.7.7 1,664 1/16/2025
5.7.6 47,806 1/14/2025
5.7.5 230,777 1/13/2025
5.7.4 30,049 1/10/2025
5.7.3 89,591 1/6/2025
5.7.2 43,166 12/27/2024
5.7.1 129,973 12/19/2024
5.7.0 34,474 12/16/2024
5.6.15 24,877 12/11/2024
5.6.14 8,346 12/10/2024
5.6.13 12,548 12/9/2024
5.6.12 19,090 12/5/2024
5.6.11 11,409 12/3/2024
5.6.10 19,045 11/30/2024
5.6.9 9,374 11/29/2024
5.6.8 5,444 11/28/2024
5.6.7 30,004 11/22/2024
5.6.6 5,241 11/22/2024
5.6.5 25,101 11/20/2024
5.6.4 51,358 11/19/2024
5.6.3 20,834 11/18/2024
5.6.2 2,791 11/18/2024
5.6.1 185,043 11/15/2024
5.6.0 28,583 11/13/2024
5.5.5 39,850 11/6/2024
5.5.4 19,831 11/5/2024
5.5.3 8,044 11/4/2024
5.5.2 20,268 10/31/2024
5.5.1 15,919 10/29/2024
5.5.0 1,490 10/29/2024
5.4.0 9,079 10/28/2024
5.3.5 32,277 10/22/2024
5.3.4 902 10/22/2024
5.3.3 4,901 10/21/2024
5.3.2 1,721 10/21/2024
5.3.1 15,639 10/17/2024
5.3.0 33,640 10/14/2024
5.2.12 53,263 10/10/2024
5.2.11 12,385 10/10/2024
5.2.10 241,930 10/7/2024
5.2.9 17,199 10/3/2024
5.2.8 8,416 10/1/2024
5.2.7 1,698 10/1/2024
5.2.6 2,012 10/1/2024
5.2.5 7,546 9/30/2024
5.2.4 71,443 9/24/2024
5.2.3 905 9/24/2024
5.2.2 31,110 9/19/2024
5.2.1 1,025 9/19/2024
5.2.0 22,958 9/16/2024
5.1.11 23,576 9/11/2024
5.1.10 16,275 9/9/2024
5.1.9 10,125 9/6/2024
5.1.8 19,971 9/3/2024
5.1.7 27,261 9/2/2024
5.1.6 8,135 8/30/2024
5.1.5 12,814 8/29/2024
5.1.4 6,720 8/28/2024
5.1.3 28,755 8/23/2024
5.1.2 7,730 8/22/2024
5.1.1 30,094 8/16/2024
5.1.0 13,816 8/15/2024
5.0.9 20,789 8/12/2024
5.0.8 194,956 8/8/2024
5.0.7 55,769 8/6/2024
5.0.6 16,001 8/1/2024
5.0.5 740 8/1/2024
5.0.4 20,319 7/29/2024
5.0.3 5,769 7/26/2024
5.0.2 20,151 7/24/2024
5.0.1 14,129 7/22/2024
5.0.0 5,298 7/22/2024
4.34.4 86,059 7/19/2024
4.34.3 32,230 7/17/2024
4.34.2 535 7/17/2024
4.34.1 12,563 7/15/2024
4.34.0 26,301 7/11/2024
4.33.3 39,665 7/3/2024
4.33.2 12,726 7/1/2024
4.33.1 14,323 6/28/2024
4.33.0 8,813 6/27/2024
4.32.11 19,521 6/26/2024
4.32.10 13,754 6/24/2024
4.32.9 6,238 6/24/2024
4.32.8 53,441 6/17/2024
4.32.7 53,363 6/12/2024
4.32.6 28,720 6/7/2024
4.32.5 5,864 6/7/2024
4.32.4 36,988 6/4/2024
4.32.3 18,160 5/31/2024
4.32.2 9,227 5/29/2024
4.32.1 27,071 5/24/2024
4.32.0 9,977 5/23/2024
4.31.7 21,223 5/21/2024
4.31.6 7,594 5/20/2024
4.31.5 18,077 5/16/2024
4.31.4 25,887 5/13/2024
4.31.3 24,920 5/8/2024
4.31.2 11,129 5/6/2024
4.31.1 18,075 5/2/2024
4.31.0 7,917 4/30/2024
4.30.3 10,626 4/29/2024
4.30.2 76,085 4/25/2024
4.30.1 9,607 4/24/2024
4.30.0 3,613 4/23/2024
4.29.9 18,839 4/22/2024
4.29.8 47,037 4/18/2024
4.29.7 39,648 4/15/2024
4.29.6 29,800 4/10/2024
4.29.5 4,393 4/9/2024
4.29.4 8,154 4/8/2024
4.29.3 3,601 4/8/2024
4.29.2 30,377 4/4/2024
4.29.1 22,337 3/29/2024
4.29.0 1,470 3/29/2024
4.28.10 6,598 3/28/2024
4.28.9 8,360 3/27/2024
4.28.8 21,025 3/26/2024
4.28.7 1,468 3/26/2024
4.28.6 8,079 3/25/2024
4.28.5 10,216 3/22/2024
4.28.4 9,312 3/21/2024
4.28.3 13,026 3/20/2024
4.28.2 9,751 3/19/2024
4.28.1 5,342 3/18/2024
4.28.0 1,716 3/18/2024
4.27.1 18,801 3/14/2024
4.27.0 3,117 3/14/2024
4.26.1 14,707 3/12/2024
4.26.0 17,198 3/11/2024
4.25.12 38,842 3/7/2024
4.25.11 19,976 3/5/2024
4.25.10 23,152 3/4/2024
4.25.9 21,284 2/29/2024
4.25.8 9,123 2/28/2024
4.25.7 24,595 2/26/2024
4.25.6 11,229 2/23/2024
4.25.5 6,276 2/22/2024
4.25.4 3,338 2/22/2024
4.25.3 16,340 2/21/2024
4.25.2 1,184 2/21/2024
4.25.1 9,437 2/20/2024
4.25.0 1,753 2/20/2024
4.24.7 118,150 2/13/2024
4.24.6 24,320 2/7/2024
4.24.5 37,743 2/1/2024
4.24.4 28,082 1/30/2024
4.24.3 15,753 1/26/2024
4.24.2 39,924 1/22/2024
4.24.1 30,204 1/18/2024
4.24.0 20,319 1/15/2024
4.23.9 11,376 1/12/2024
4.23.8 36,708 1/9/2024
4.23.7 21,606 1/4/2024
4.23.6 14,277 1/4/2024
4.23.5 10,754 1/2/2024
4.23.4 50,225 12/18/2023
4.23.3 18,900 12/14/2023
4.23.2 34,719 12/11/2023
4.23.1 12,695 12/8/2023
4.23.0 7,262 12/7/2023
4.22.1 239,190 11/29/2023
4.22.0 19,768 11/27/2023
4.21.4 22,068 11/23/2023
4.21.3 71,464 11/16/2023
4.21.2 3,038 11/16/2023
4.21.1 16,113 11/14/2023
4.21.0 9,816 11/14/2023
4.20.4 40,849 11/10/2023
4.20.3 2,051 11/9/2023
4.20.2 2,222 11/9/2023
4.20.1 24,414 11/6/2023
4.20.0 21,452 11/2/2023
4.19.1 23,782 10/30/2023
4.19.0 35,586 10/23/2023
4.18.1 76,456 10/18/2023
4.18.0 17,703 10/16/2023
4.17.1 17,810 10/10/2023
4.17.0 8,718 10/9/2023
4.16.4 24,737 10/4/2023
4.16.3 26,702 9/28/2023
4.16.2 26,207 9/22/2023
4.16.1 18,631 9/21/2023
4.16.0 26,627 9/18/2023
4.15.14 33,425 9/13/2023
4.15.13 2,892 9/13/2023
4.15.12 7,650 9/12/2023
4.15.11 21,423 9/7/2023
4.15.10 13,834 9/4/2023
4.15.9 17,034 9/1/2023
4.15.8 18,773 8/29/2023
4.15.7 19,792 8/24/2023
4.15.6 17,532 8/21/2023
4.15.5 10,905 8/18/2023
4.15.4 63,384 8/11/2023
4.15.3 2,034 8/11/2023
4.15.2 3,836 8/10/2023
4.15.1 9,443 8/10/2023
4.15.0 21,332 8/8/2023
4.14.4 49,618 7/31/2023
4.14.3 12,754 7/27/2023
4.14.2 12,457 7/25/2023
4.14.1 21,327 7/19/2023
4.14.0 14,504 7/18/2023
4.13.6 28,485 7/14/2023
4.13.5 71,587 7/3/2023
4.13.4 38,994 6/26/2023
4.13.3 20,183 6/20/2023
4.13.2 37,278 6/15/2023
4.13.1 25,393 6/13/2023
4.13.0 103,514 6/7/2023
4.12.1 10,111 6/5/2023
4.12.0 35,285 5/31/2023
4.11.2 46,342 5/23/2023
4.11.1 40,433 5/16/2023
4.11.0 8,587 5/15/2023
4.10.4 28,395 5/9/2023
4.10.3 17,470 5/4/2023
4.10.2 10,957 5/2/2023
4.10.1 18,450 4/27/2023
4.10.0 33,139 4/20/2023
4.9.2 15,854 4/18/2023
4.9.1 31,384 4/12/2023
4.9.0 2,187 4/12/2023
4.8.4 47,628 4/4/2023
4.8.3 17,222 3/30/2023
4.8.2 13,208 3/27/2023
4.8.1 2,542 3/27/2023
4.8.0 9,466 3/24/2023
4.7.14 7,260 3/23/2023
4.7.13 20,486 3/20/2023
4.7.12 455,720 3/16/2023
4.7.11 15,957 3/14/2023
4.7.10 10,098 3/13/2023
4.7.9 33,662 3/9/2023
4.7.8 17,514 3/7/2023
4.7.7 6,372 3/6/2023
4.7.6 10,437 3/3/2023
4.7.5 13,117 3/2/2023
4.7.4 20,645 2/27/2023
4.7.3 2,381 2/27/2023
4.7.2 12,724 2/23/2023
4.7.1 51,161 2/16/2023
4.7.0 39,704 2/13/2023
4.6.8 12,690 2/9/2023
4.6.7 7,068 2/9/2023
4.6.6 25,156 2/6/2023
4.6.5 14,866 2/1/2023
4.6.4 10,299 1/30/2023
4.6.3 23,910 1/26/2023
4.6.2 16,692 1/23/2023
4.6.1 43,736 1/20/2023
4.6.0 24,543 1/19/2023
4.5.3 11,297 1/16/2023
4.5.2 26,068 1/12/2023
4.5.1 4,048 1/12/2023
4.5.0 14,607 1/9/2023
4.4.9 12,401 1/5/2023
4.4.8 10,302 1/3/2023
4.4.7 44,782 12/19/2022
4.4.6 29,000 12/13/2022
4.4.5 12,548 12/12/2022
4.4.4 14,024 12/8/2022
4.4.3 11,593 12/5/2022
4.4.2 3,742 12/5/2022
4.4.1 20,920 11/30/2022
4.4.0 7,071 11/30/2022
4.3.10 8,474 11/28/2022
4.3.9 5,268 11/28/2022
4.3.8 16,764 11/24/2022
4.3.7 21,988 11/21/2022
4.3.6 30,580 11/16/2022
4.3.5 9,067 11/15/2022
4.3.4 5,985 11/14/2022
4.3.3 2,620 11/14/2022
4.3.2 45,315 11/10/2022
4.3.1 15,813 11/9/2022
4.3.0 4,008 11/8/2022
4.2.3 8,353 11/7/2022
4.2.2 9,934 11/3/2022
4.2.1 5,730 11/2/2022
4.2.0 6,672 10/31/2022
4.1.15 12,919 10/27/2022
4.1.14 9,778 10/24/2022
4.1.13 3,119 10/24/2022
4.1.12 5,692 10/21/2022
4.1.11 4,872 10/21/2022
4.1.10 7,623 10/20/2022
4.1.9 11,732 10/17/2022
4.1.8 11,926 10/13/2022
4.1.7 49,128 10/6/2022
4.1.6 16,978 10/3/2022
4.1.5 8,030 9/29/2022
4.1.4 23,124 9/27/2022
4.1.3 6,591 9/26/2022
4.1.2 3,662 9/26/2022
4.1.1 19,204 9/22/2022
4.1.0 11,973 9/21/2022
4.0.0 28,172 9/15/2022
3.20.12 67,129 9/12/2022
3.20.11 16,045 9/8/2022
3.20.10 43,599 9/5/2022
3.20.9 9,242 9/1/2022
3.20.8 43,831 8/30/2022
3.20.7 6,809 8/29/2022
3.20.6 17,444 8/25/2022
3.20.5 37,350 8/22/2022
3.20.4 12,882 8/17/2022
3.20.3 36,173 8/11/2022
3.20.2 34,765 8/5/2022
3.20.1 4,768 8/4/2022
3.20.0 4,891 8/4/2022
3.19.12 19,288 8/1/2022
3.19.11 14,873 7/28/2022
3.19.10 14,559 7/25/2022
3.19.9 5,401 7/23/2022
3.19.8 7,617 7/21/2022
3.19.7 78,364 7/19/2022
3.19.6 10,501 7/18/2022
3.19.5 68,951 7/14/2022
3.19.4 20,791 7/12/2022
3.19.3 27,753 7/7/2022
3.19.2 38,549 7/4/2022
3.19.1 38,243 6/23/2022
3.19.0 3,160 6/23/2022
3.18.16 41,558 6/16/2022
3.18.15 29,619 6/13/2022
3.18.14 44,683 6/9/2022
3.18.13 122,404 6/2/2022
3.18.12 121,822 5/26/2022
3.18.11 11,064 5/23/2022
3.18.10 118,227 5/19/2022
3.18.9 26,179 5/16/2022
3.18.8 47,427 5/9/2022
3.18.7 19,354 5/2/2022
3.18.6 54,358 4/28/2022
3.18.5 4,642 4/27/2022
3.18.4 60,106 4/21/2022
3.18.3 18,524 4/18/2022
3.18.2 14,273 4/13/2022
3.18.1 7,926 4/11/2022
3.18.0 36,847 4/7/2022
3.17.3 28,680 3/31/2022
3.17.2 12,791 3/28/2022
3.17.1 5,811 3/25/2022
3.17.0 26,229 3/24/2022
3.16.7 13,531 3/21/2022
3.16.6 17,030 3/17/2022
3.16.5 2,181 3/17/2022
3.16.4 2,271 3/17/2022
3.16.3 57,750 3/7/2022
3.16.2 29,698 3/3/2022
3.16.1 11,002 2/28/2022
3.16.0 17,759 2/24/2022
3.15.6 19,627 2/21/2022
3.15.5 19,607 2/18/2022
3.15.4 6,807 2/17/2022
3.15.3 10,212 2/14/2022
3.15.2 15,243 2/11/2022
3.15.1 4,893 2/10/2022
3.15.0 5,322 2/9/2022
3.14.12 9,667 2/4/2022
3.14.11 30,223 2/3/2022
3.14.10 17,780 1/31/2022
3.14.9 4,197 1/29/2022
3.14.8 12,118 1/27/2022
3.14.7 11,888 1/24/2022
3.14.6 45,004 1/20/2022
3.14.5 10,399 1/20/2022
3.14.4 2,594 1/20/2022
3.14.3 2,683 1/20/2022
3.14.2 62,595 1/13/2022
3.14.1 22,152 1/10/2022
3.14.0 10,415 1/6/2022
3.13.12 35,710 12/30/2021
3.13.11 48,848 12/27/2021
3.13.10 6,924 12/23/2021
3.13.9 3,866 12/23/2021
3.13.8 42,260 12/20/2021
3.13.7 48,074 12/16/2021
3.13.6 13,569 12/13/2021
3.13.5 11,715 12/9/2021
3.13.4 12,849 12/6/2021
3.13.3 10,871 12/1/2021
3.13.2 30,108 11/25/2021
3.13.1 13,890 11/24/2021
3.13.0 7,433 11/24/2021
3.12.5 5,596 11/23/2021
3.12.4 2,030 11/23/2021
3.12.3 4,424 11/22/2021
3.12.2 13,403 11/18/2021
3.12.1 13,349 11/15/2021
3.12.0 11,706 11/11/2021
3.11.12 38,783 11/4/2021
3.11.11 18,008 11/1/2021
3.11.10 7,467 10/28/2021
3.11.9 17,797 10/21/2021
3.11.8 5,846 10/19/2021
3.11.7 3,913 10/18/2021
3.11.6 9,005 10/14/2021
3.11.5 2,067 10/14/2021
3.11.4 51,183 10/11/2021
3.11.3 7,510 10/7/2021
3.11.2 10,525 10/5/2021
3.11.1 9,149 9/30/2021
3.11.0 2,424 9/30/2021
3.10.2 15,174 9/27/2021
3.10.1 8,174 9/23/2021
3.10.0 17,354 9/21/2021
3.9.10 29,401 9/16/2021
3.9.9 16,284 9/9/2021
3.9.8 9,864 9/3/2021
3.9.7 12,841 8/31/2021
3.9.6 6,183 8/30/2021
3.9.5 7,498 8/25/2021
3.9.4 3,018 8/25/2021
3.9.3 13,842 8/23/2021
3.9.2 9,893 8/18/2021
3.9.1 2,992 8/18/2021
3.9.0 2,365 8/18/2021
3.8.2 17,474 8/9/2021
3.8.1 11,494 8/3/2021
3.8.0 7,669 7/29/2021
3.7.3 11,973 7/26/2021
3.7.2 8,099 7/21/2021
3.7.1 9,963 7/19/2021
3.7.0 2,258 7/19/2021
3.6.8 18,860 7/13/2021
3.6.7 6,405 7/8/2021
3.6.6 7,434 7/5/2021
3.6.5 2,079 7/5/2021
3.6.4 3,848 7/5/2021
3.6.3 12,737 7/1/2021
3.6.2 5,222 7/1/2021
3.6.1 21,808 6/28/2021
3.6.0 15,574 6/23/2021
3.5.3 51,734 6/17/2021
3.5.2 13,653 6/14/2021
3.5.1 13,472 6/10/2021
3.5.0 11,694 6/7/2021
3.4.2 8,066 6/3/2021
3.4.1 5,348 6/3/2021
3.4.0 2,155 6/3/2021
3.3.2 11,017 5/27/2021
3.3.1 13,254 5/20/2021
3.3.0 6,449 5/18/2021
3.2.9 10,120 5/13/2021
3.2.8 14,624 5/6/2021
3.2.7 24,532 4/26/2021
3.2.6 14,198 4/21/2021
3.2.5 4,451 4/19/2021
3.2.4 3,500 4/19/2021
3.2.3 8,171 4/14/2021
3.2.2 22,327 4/8/2021
3.2.1 5,142 4/6/2021
3.2.0 6,474 4/2/2021
3.1.11 4,314 4/1/2021
3.1.10 7,866 3/29/2021
3.1.9 7,688 3/26/2021
3.1.8 4,408 3/25/2021
3.1.7 9,697 3/22/2021
3.1.6 15,439 3/15/2021
3.1.5 18,583 3/8/2021
3.1.4 9,312 3/4/2021
3.1.3 10,166 3/1/2021
3.1.2 8,031 2/25/2021
3.1.1 25,428 2/22/2021
3.1.0 23,668 2/17/2021
3.0.10 6,400 2/15/2021
3.0.9 11,391 2/11/2021
3.0.8 9,375 2/8/2021
3.0.7 10,540 2/4/2021
3.0.6 7,110 2/2/2021
3.0.5 2,247 2/2/2021
3.0.4 5,405 2/1/2021
3.0.3 5,288 1/28/2021
3.0.2 9,729 1/25/2021
3.0.1 6,326 1/21/2021
3.0.0 7,720 1/19/2021
2.18.16 16,735 1/15/2021
2.18.15 3,202 1/14/2021
2.18.14 2,353 1/14/2021
2.18.13 4,941 1/13/2021
2.18.12 2,835 1/12/2021
2.18.11 2,558 1/12/2021
2.18.10 8,202 1/6/2021
2.18.9 7,838 1/4/2021
2.18.8 25,476 12/23/2020
2.18.7 2,259 12/23/2020
2.18.6 14,584 12/15/2020
2.18.5 3,215 12/14/2020
2.18.4 5,401 12/9/2020
2.18.3 4,202 12/7/2020
2.18.2 6,680 12/3/2020
2.18.1 2,552 11/30/2020
2.18.0 642 11/30/2020
2.17.11 5,029 11/27/2020
2.17.10 5,922 11/24/2020
2.17.9 3,053 11/23/2020
2.17.8 665 11/23/2020
2.17.7 2,219 11/21/2020
2.17.6 533 11/21/2020
2.17.5 759 11/20/2020
2.17.4 1,172 11/20/2020
2.17.3 1,348 11/19/2020
2.17.2 4,265 11/17/2020
2.17.1 6,680 11/16/2020
2.17.0 1,184 11/16/2020
2.16.5 2,356 11/13/2020
2.16.4 623 11/13/2020
2.16.3 2,456 11/12/2020
2.16.2 9,068 11/9/2020
2.16.1 2,766 11/6/2020
2.16.0 1,689 11/5/2020
2.15.21 1,836 11/3/2020
2.15.20 3,291 10/31/2020
2.15.19 6,668 10/27/2020
2.15.18 2,060 10/26/2020
2.15.17 5,188 10/22/2020
2.15.16 1,306 10/21/2020
2.15.15 4,119 10/19/2020
2.15.14 3,270 10/15/2020
2.15.13 532 10/15/2020
2.15.12 4,226 10/13/2020
2.15.11 2,164 10/12/2020
2.15.10 1,864 10/9/2020
2.15.9 1,001 10/8/2020
2.15.8 3,156 10/6/2020
2.15.7 5,051 10/2/2020
2.15.6 1,601 10/1/2020
2.15.5 3,803 9/28/2020
2.15.4 3,751 9/24/2020
2.15.3 536 9/24/2020
2.15.2 477 9/24/2020
2.15.1 437 9/24/2020
2.15.0 785 9/24/2020
2.14.6 1,027 9/23/2020
2.14.5 1,756 9/23/2020
2.14.4 523 9/23/2020
2.14.3 1,780 9/21/2020
2.14.2 541 9/21/2020
2.14.1 1,752 9/18/2020
2.14.0 1,084 9/17/2020
2.13.0 9,083 9/16/2020
2.12.3 4,382 9/14/2020
2.12.2 3,626 9/12/2020
2.12.1 2,677 9/11/2020
2.12.0 4,456 9/10/2020
2.11.19 7,577 9/9/2020
2.11.18 4,812 9/7/2020
2.11.17 7,913 9/2/2020
2.11.16 4,094 8/31/2020
2.11.15 2,420 8/31/2020
2.11.14 12,241 8/25/2020
2.11.13 5,525 8/21/2020
2.11.12 5,560 8/19/2020
2.11.11 4,145 8/18/2020
2.11.10 2,941 8/17/2020
2.11.9 5,767 8/12/2020
2.11.8 5,678 8/10/2020
2.11.7 2,907 8/7/2020
2.11.6 4,221 8/5/2020
2.11.5 2,344 8/5/2020
2.11.4 3,154 8/3/2020
2.11.3 7,232 7/29/2020
2.11.2 24,455 7/29/2020
2.11.1 4,552 7/27/2020
2.11.0 2,558 7/27/2020
2.10.22 3,301 7/27/2020
2.10.21 2,361 7/27/2020
2.10.20 7,364 7/20/2020
2.10.19 5,673 7/16/2020
2.10.18 2,359 7/16/2020
2.10.17 3,018 7/15/2020
2.10.16 5,065 7/13/2020
2.10.15 4,645 7/9/2020
2.10.14 3,089 7/8/2020
2.10.13 2,968 7/7/2020
2.10.12 3,139 7/6/2020
2.10.11 2,893 7/6/2020
2.10.10 4,668 7/1/2020
2.10.9 2,478 7/1/2020
2.10.8 2,660 6/30/2020
2.10.7 5,170 6/25/2020
2.10.6 3,889 6/23/2020
2.10.5 3,636 6/22/2020
2.10.4 2,524 6/22/2020
2.10.3 9,869 6/17/2020
2.10.2 6,845 6/11/2020
2.10.1 2,546 6/11/2020
2.10.0 3,369 6/10/2020
2.9.11 4,212 6/8/2020
2.9.10 6,414 6/2/2020
2.9.9 4,515 6/1/2020
2.9.8 2,924 5/30/2020
2.9.7 3,897 5/28/2020
2.9.6 4,080 5/26/2020
2.9.5 2,437 5/26/2020
2.9.4 3,030 5/25/2020
2.9.3 2,469 5/25/2020
2.9.2 5,164 5/22/2020
2.9.1 4,786 5/20/2020
2.9.0 2,692 5/19/2020
2.8.4 2,968 5/18/2020
2.8.3 2,580 5/18/2020
2.8.2 2,396 5/18/2020
2.8.1 2,896 5/15/2020
2.8.0 3,379 5/14/2020
2.7.3 3,286 5/13/2020
2.7.2 4,483 5/12/2020
2.7.1 3,098 5/11/2020
2.7.0 2,262 5/11/2020
2.6.10 3,442 5/7/2020
2.6.9 3,089 5/6/2020
2.6.8 2,745 5/5/2020
2.6.7 3,185 5/4/2020
2.6.6 4,387 5/1/2020
2.6.5 3,030 4/30/2020
2.6.4 3,979 4/27/2020
2.6.3 4,665 4/23/2020
2.6.2 2,342 4/23/2020
2.6.1 2,821 4/23/2020
2.6.0 4,286 4/22/2020
2.5.11 2,728 4/21/2020
2.5.10 2,895 4/20/2020
2.5.9 3,387 4/16/2020
2.5.8 5,943 4/8/2020
2.5.7 2,756 4/7/2020
2.5.6 2,951 4/6/2020
2.5.5 2,542 4/6/2020
2.5.4 2,418 4/6/2020
2.5.3 2,457 4/6/2020
2.5.2 2,764 4/6/2020
2.5.1 2,640 4/4/2020
2.5.0 2,850 4/3/2020
2.4.6 3,145 4/2/2020
2.4.5 3,801 3/31/2020
2.4.4 3,307 3/27/2020
2.4.3 2,593 3/26/2020
2.4.2 2,706 3/25/2020
2.4.1 3,254 3/23/2020
2.4.0 4,654 3/19/2020
2.3.9 3,224 3/16/2020
2.3.8 3,362 3/12/2020
2.3.7 4,381 3/9/2020
2.3.6 2,515 3/9/2020
2.3.5 2,881 3/6/2020
2.3.4 2,435 3/6/2020
2.3.3 4,082 3/5/2020
2.3.2 2,755 3/3/2020
2.3.1 2,442 3/3/2020
2.3.0 2,493 3/3/2020
2.2.6 2,884 3/2/2020
2.2.5 6,011 2/27/2020
2.2.4 2,511 2/27/2020
2.2.3 2,426 2/26/2020
2.2.2 2,646 2/26/2020
2.2.1 3,767 2/21/2020
2.2.0 2,660 2/20/2020
2.1.23 4,348 2/17/2020
2.1.22 3,775 2/14/2020
2.1.21 2,639 2/13/2020
2.1.20 3,042 2/12/2020
2.1.19 2,766 2/11/2020
2.1.18 3,040 2/7/2020
2.1.17 3,653 2/5/2020
2.1.16 2,808 2/3/2020
2.1.15 2,324 2/3/2020
2.1.14 4,476 1/28/2020
2.1.13 2,526 1/28/2020
2.1.12 2,716 1/27/2020
2.1.11 2,865 1/24/2020
2.1.10 3,520 1/23/2020
2.1.9 3,671 1/18/2020
2.1.8 2,563 1/17/2020
2.1.7 3,818 1/16/2020
2.1.6 6,873 1/15/2020
2.1.5 2,561 1/15/2020
2.1.4 3,037 1/13/2020
2.1.3 3,008 1/11/2020
2.1.2 2,811 1/11/2020
2.1.1 2,604 1/11/2020
2.1.0 2,886 1/9/2020
2.0.13 5,142 12/20/2019
2.0.12 2,946 12/18/2019
2.0.11 2,877 12/17/2019
2.0.10 2,840 12/16/2019
2.0.9 2,768 12/16/2019
2.0.8 2,869 12/13/2019
2.0.7 2,691 12/12/2019
2.0.6 2,603 12/12/2019
2.0.5 2,759 12/12/2019
2.0.4 3,171 12/9/2019
2.0.3 2,646 12/9/2019
2.0.2 3,566 12/5/2019
2.0.1 2,817 12/4/2019
2.0.0 2,913 12/4/2019
1.2.13 4,122 12/3/2019
1.2.12 2,824 12/3/2019
1.2.11 2,701 12/2/2019
1.2.10 2,709 12/2/2019
1.2.9 3,069 11/27/2019
1.2.8 2,645 11/27/2019
1.2.7 2,650 11/26/2019
1.2.6 3,083 11/25/2019
1.2.5 3,264 11/22/2019
1.2.4 2,733 11/21/2019
1.2.3 2,737 11/21/2019
1.2.2 2,551 11/21/2019
1.2.1 2,617 11/20/2019
1.2.0 2,589 11/20/2019
1.1.35 2,733 11/20/2019
1.1.34 2,732 11/19/2019
1.1.33 3,647 11/15/2019
1.1.32 2,575 11/15/2019
1.1.31 2,545 11/15/2019
1.1.30 2,834 11/12/2019
1.1.29 2,885 11/11/2019
1.1.28 2,619 11/11/2019
1.1.27 2,609 11/11/2019
1.1.26 2,840 11/7/2019
1.1.25 2,706 11/6/2019
1.1.24 2,672 11/5/2019
1.1.23 2,567 11/5/2019
1.1.22 2,763 11/4/2019
1.1.21 3,108 10/30/2019
1.1.20 2,644 10/30/2019
1.1.19 2,644 10/29/2019
1.1.18 2,835 10/28/2019
1.1.17 2,784 10/25/2019
1.1.16 2,789 10/24/2019
1.1.15 2,701 10/23/2019
1.1.14 2,584 10/22/2019
1.1.13 2,619 10/22/2019
1.1.12 2,661 10/21/2019
1.1.11 2,814 10/18/2019
1.1.10 2,638 10/17/2019
1.1.9 2,629 10/17/2019
1.1.8 2,600 10/17/2019
1.1.7 2,730 10/16/2019
1.1.6 2,781 10/15/2019
1.1.5 2,730 10/14/2019
1.1.4 2,587 10/13/2019
1.1.3 2,659 10/13/2019
1.1.2 2,620 10/13/2019
1.1.1 2,685 10/11/2019
1.1.0 2,700 10/11/2019
1.0.14 2,676 10/10/2019
1.0.13 2,746 10/9/2019
1.0.12 2,585 10/9/2019
1.0.11 2,719 10/7/2019
1.0.10 2,699 10/5/2019
1.0.9 2,780 10/4/2019
1.0.8 2,692 10/2/2019
1.0.7 2,570 10/2/2019
1.0.6 2,649 10/1/2019
1.0.5 2,601 10/1/2019
1.0.4 2,625 10/1/2019
1.0.3 2,817 9/30/2019
1.0.2 2,878 9/27/2019
1.0.1 2,655 9/25/2019
1.0.0 3,177 9/24/2019
0.0.82 727 9/23/2019
0.0.81 710 9/20/2019
0.0.80 661 9/20/2019
0.0.79 699 9/19/2019
0.0.78 683 9/19/2019
0.0.77 721 9/18/2019
0.0.76 745 9/17/2019
0.0.75 663 9/17/2019
0.0.74 676 9/17/2019
0.0.73 687 9/16/2019
0.0.72 729 9/13/2019
0.0.71 896 9/6/2019
0.0.70 679 9/6/2019
0.0.69 817 9/5/2019
0.0.68 695 9/4/2019
0.0.67 692 9/2/2019
0.0.66 814 8/28/2019
0.0.65 717 8/27/2019
0.0.64 669 8/26/2019
0.0.63 682 8/24/2019
0.0.62 735 8/21/2019
0.0.61 1,009 8/15/2019
0.0.60 780 8/14/2019
0.0.59 691 8/14/2019
0.0.58 699 8/13/2019
0.0.57 682 8/12/2019
0.0.56 731 8/9/2019
0.0.55 722 8/8/2019
0.0.54 695 8/8/2019
0.0.53 669 8/8/2019
0.0.52 680 8/7/2019
0.0.51 669 8/6/2019
0.0.50 673 8/6/2019
0.0.49 906 8/5/2019
0.0.48 666 8/5/2019
0.0.47 757 8/1/2019
0.0.46 726 7/31/2019
0.0.45 705 7/31/2019
0.0.44 717 7/30/2019
0.0.43 822 7/26/2019
0.0.42 752 7/24/2019
0.0.41 739 7/17/2019
0.0.40 698 7/15/2019
0.0.39 656 7/15/2019
0.0.38 678 7/14/2019
0.0.37 722 7/11/2019
0.0.36 684 7/11/2019
0.0.35 721 7/10/2019
0.0.34 873 6/25/2019
0.0.33 667 6/25/2019
0.0.32 692 6/21/2019
0.0.31 733 6/19/2019
0.0.30 689 6/17/2019
0.0.29 804 6/14/2019
0.0.28 670 6/14/2019
0.0.27 680 6/14/2019
0.0.26 676 6/14/2019
0.0.25 698 6/13/2019
0.0.24 2,787 6/6/2019
0.0.23 2,768 6/6/2019
0.0.22 2,801 5/30/2019
0.0.21 2,711 5/28/2019
0.0.20 2,675 5/27/2019
0.0.19 2,737 5/23/2019
0.0.18 2,678 5/22/2019
0.0.17 2,902 5/20/2019
0.0.16 2,808 5/17/2019
0.0.14 2,856 3/29/2019
0.0.13 2,749 3/7/2019
0.0.12 2,829 2/19/2019
0.0.11 2,804 2/19/2019
0.0.10 2,855 2/13/2019
0.0.9 2,798 2/11/2019
0.0.8 3,311 2/6/2019
0.0.6 2,916 1/25/2019
0.0.5 2,764 1/8/2019
0.0.4 3,218 12/13/2018
0.0.3 2,993 11/29/2018
0.0.2 2,810 11/23/2018
0.0.1 7,477 11/19/2018