Masa.Blazor 0.7.0-alpha.3522

This is a prerelease version of Masa.Blazor.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Masa.Blazor --version 0.7.0-alpha.3522                
NuGet\Install-Package Masa.Blazor -Version 0.7.0-alpha.3522                
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="Masa.Blazor" Version="0.7.0-alpha.3522" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Masa.Blazor --version 0.7.0-alpha.3522                
#r "nuget: Masa.Blazor, 0.7.0-alpha.3522"                
#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.
// Install Masa.Blazor as a Cake Addin
#addin nuget:?package=Masa.Blazor&version=0.7.0-alpha.3522&prerelease

// Install Masa.Blazor as a Cake Tool
#tool nuget:?package=Masa.Blazor&version=0.7.0-alpha.3522&prerelease                

<p align="center"> <a href="https://blazor.masastack.com" target="_blank"> <img alt="MASA Blazor Logo" width="150" src="./imgs/logo.png"> </a> </p>

<h1 align="center">MASA Blazor</h1>

<div align="center">

A set of standard basic component libraries based on Material design specifications and BlazorComponent interaction capabilities

MASA.Blazor .NET Nuget Nuget

</div>

English| 简体中文

What is MASA Blazor?

Provide a standard basic component library based on Material design specifications and BlazorComponent's interactive capabilities. Provides preset components for standard scenarios such as layout, frame standard, Loading, and global exception handling. Starting from more practical scenarios, to meet the needs of more users and scenarios, and to minimize the time cost of developers. Shorten the development cycle and improve development efficiency. And provide a set of examples of Web solutions - MASA Blazor Pro has a variety of common scenes and preset layouts and other exciting content.

Why choose MASA Blazor?

MASA Blazor is based on the Material design specification, and each component is carefully designed, with modularity, responsiveness and excellent performance. MASA Blazor is regularly maintained and upgraded by a professional full-time technical team, efficient response speed, diversified solutions, long-term support, and enterprise-level support. At present, it has been used in several well-known companies, and the follow-up MASA Stack product series will continue to be used. In addition to ensuring the quality of the project, it can also continue to add new components and functions. In addition to providing developers with many mid- and Taiwan-based open source projects, MASA Stack, one of its most basic components, MASA Blazor, also hopes to be the most practical component library.

Feature

  • Rich components: Contains the basic components of Vuetify 1:1 restoration, as well as many practical preset components and deep integration functions of .Net, including three linkages of Url, breadcrumbs, navigation, advanced search, i18n, etc.
  • UI design language: modern design style, excellent UI multi-end experience design
  • Professional example: MASA Blazor Pro provides preset layouts for a variety of common scenarios
  • Easy to get started: rich and detailed getting started documents, free video tutorials (in production)
  • Active community encouragement: users participate in real-time interaction, make contributions to join us, and build the most open open source community
  • Long-term support: full-time team maintenance, long-term support, and enterprise-level support
  • Choice of well-known companies: This technology framework has been chosen by many well-known companies, and the MASA Stack product line will continue to be used in the future, and new functions will continue to be added

Stats

Alt

Getting started

Development environment setup

Install Template

dotnet new --install Masa.Template

Create Project

  • Blazor Server
dotnet new masabp -o Masa.Test
  • Blazor WebAssembly
dotnet new masabp --mode Wasm -o Masa.TestWasm
  • Blazor RCL
dotnet new masabp --mode ServerAndWasm -o Masa.TestRcl

Go to the Server project directory

cd Masa.Test

Run

dotnet run

Existing project

  • Install Nuget package
dotnet add package Masa.Blazor
  • Add Masa.Blazor related services to Startup.ConfigureServices:
services.AddMasaBlazor();
  • Introduce styles, fonts, scripts in wwwroot/index.html(WebAssembly) or Pages/_Host.cshtml(Server):
<html lang="en">
    <head>
        
        <link href="_content/Masa.Blazor/css/masa-blazor.min.css" rel="stylesheet">
        
        <link href="https://cdn.jsdelivr.net/npm/@("@mdi")/font@7.1.96/css/materialdesignicons.min.css" rel="stylesheet">
        <link href="https://fonts.googleapis.com/css?family=Material+Icons" rel="stylesheet">
        <link href="https://use.fontawesome.com/releases/v5.0.13/css/all.css" rel="stylesheet">
    </head>
    <body>
        
        <script src="_content/BlazorComponent/js/blazor-component.js"></script>
    </body>
</html>
  • Add the namespace to the _Imports.razor file:
@using Masa.Blazor
@using BlazorComponent
  • Modify the Shared/MainLayout.razor file to make MApp the root element:
<MApp>
    //Other layout content
</MApp>

See more :https://blazor.masastack.com/

Local development

Development environment setup

Clone code

git clone --recursive https://github.com/masastack/MASA.Blazor.git
cd MASA.Blazor
git submodule foreach git checkout main

Run doc server

cd Doc/Masa.Blazor.Doc.Server
dotnet run

Visit

Recommended use chrome or edge to visit http://localhost:5000/

Supported browsers

chromefirefoxedgeieSafarioper

Mobile devices

iosAndriod

Chrome Firefox Safari Microsoft Edge
iOS Supported Supported Supported Supported
Android Supported Supported N/A Supported

Desktop devices

macOSlinuxwindows

Chrome Firefox Safari Opera Microsoft Edge Internet Explorer
Mac Supported Supported Supported Supported N/A N/A
Linux Supported Supported N/A N/A N/A N/A
Windows Supported Supported Not supported Supported Supported Supported, IE11+

Due to WebAssembly restriction, Blazor WebAssembly doesn't support IE browser, but Blazor Server supports IE 11† with additional polyfills. See official documentation

How to contribute

  1. Fork & Clone
  2. Create Feature_xxx branch
  3. Commit with commit message, like feat:add MButton
  4. Create Pull Request

Contributors

Thanks to all the friends who have contributed to this project.

<a href="https://github.com/masastack/Masa.Blazor/graphs/contributors"> <img src="https://contrib.rocks/image?repo=BlazorComponent/Masa.Blazor" /> </a>

Interactive

QQ group WX public account WX Customer Service
masa.blazor-qq masa.blazor-weixin masa.blazor-weixin

Development team

The Digital Flash technical team is an efficient, stable and innovative team. The team adheres to the original intention of enriching the Blazor ecosystem, and it is the pursuit of the Digital Flash technical team to continue to work hard to bring a better experience to the developers. Thank you for your support and use.

Code of conduct

This project adopts the code of conduct defined in the "Contributors Convention" to clarify the expected behavior of our community. For more information, see MASA Stack Community Code of Conduct.

License

Masa.Blazor

Copyright (c) 2021-present Masa.Blazor

Product Compatible and additional computed target framework versions.
.NET 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (9)

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

Package Downloads
Masa.Blazor.Doc

Package Description

Masa.Blazor.Doc.CLI

Package Description

MASA.Blazor.Experimental.Components

Experimental components about MASA.Blazor

CurrencyComponents

Package Description

ThingsGateway.Components

Package Description

GitHub repositories (6)

Showing the top 5 popular GitHub repositories that depend on Masa.Blazor:

Repository Stars
masastack/MASA.Blazor
Blazor UI component library based on Material Design. Support Blazor Server, Blazor WebAssembly and MAUI Blazor.
Yu-Core/SwashbucklerDiary
侠客日记是一个开源、跨平台的本地日记app,使用MAUI Blazor 构建。"SwashbucklerDiary" is an open source cross-platform local diary app using MAUI Blazor .
masalabs/MASA.EShop
A sample .NET Core distributed application based on eShopOnDapr, powered by MASA.Framework,Dapr.
239573049/ChatGpt.Desktop
ChatGpt Dekstop support Android,IOS,Mac,Linux,Win,Web
MicroSugarDeveloperOrg/Avalonia.WebView
Version Downloads Last updated
1.7.4 50 9/26/2024
1.7.3 157 9/19/2024
1.7.2 201 9/9/2024
1.7.1 193 9/4/2024
1.7.0 155 9/2/2024
1.7.0-rc.3 56 8/28/2024
1.7.0-rc.2 54 8/26/2024
1.7.0-rc.1 78 8/19/2024
1.7.0-beta.5 130 8/12/2024
1.7.0-beta.4 60 8/9/2024
1.7.0-beta.3 60 7/26/2024
1.7.0-beta.2 44 7/24/2024
1.7.0-beta.1 495 7/19/2024
1.6.8 427 8/9/2024
1.6.7 144 8/5/2024
1.6.6 415 7/18/2024
1.6.5 263 7/16/2024
1.6.4 237 7/12/2024
1.6.3 207 7/11/2024
1.6.2 235 7/10/2024
1.6.1 306 7/4/2024
1.6.0 714 7/2/2024
1.6.0-beta.7 54 7/1/2024
1.6.0-beta.6 69 6/27/2024
1.6.0-beta.5 71 6/26/2024
1.6.0-beta.4 78 6/17/2024
1.6.0-beta.3 56 6/13/2024
1.6.0-beta.2 137 5/31/2024
1.6.0-beta.1 60 5/31/2024
1.5.5 672 6/3/2024
1.5.4 136 6/3/2024
1.5.3 252 5/29/2024
1.5.2 409 5/21/2024
1.5.1 721 5/10/2024
1.5.0 600 5/7/2024
1.5.0-beta.3 67 5/6/2024
1.5.0-beta.2 58 4/29/2024
1.5.0-beta.1 185 4/25/2024
1.4.2 827 4/22/2024
1.4.1 239 4/17/2024
1.4.0 375 4/7/2024
1.4.0-beta.5 84 4/2/2024
1.4.0-beta.4 72 3/28/2024
1.4.0-beta.3 76 3/18/2024
1.4.0-beta.2 75 3/1/2024
1.4.0-beta.1 157 2/1/2024
1.3.4 2,690 1/26/2024
1.3.3 373 1/25/2024
1.3.2 1,107 1/9/2024
1.3.1 966 12/29/2023
1.3.0 507 12/28/2023
1.3.0-beta.7 86 12/27/2023
1.3.0-beta.6 279 12/26/2023
1.3.0-beta.5 145 12/22/2023
1.3.0-beta.4 98 12/18/2023
1.3.0-beta.3 187 12/5/2023
1.3.0-beta.2 145 11/29/2023
1.2.2 1,503 11/13/2023
1.2.1 316 11/10/2023
1.2.0 284 11/7/2023
1.1.1 1,043 10/23/2023
1.1.0 1,194 10/11/2023
1.0.4 2,380 9/7/2023
1.0.3 1,730 8/28/2023
1.0.2 3,066 8/18/2023
1.0.1 2,990 7/27/2023
1.0.0 3,252 7/17/2023
1.0.0-rc.6 508 7/6/2023
1.0.0-rc.5 340 6/29/2023
1.0.0-rc.4 834 6/15/2023
1.0.0-rc.3 438 6/2/2023
1.0.0-rc.2 2,943 5/15/2023
1.0.0-rc.1 1,754 4/27/2023
1.0.0-preview.19 122 4/27/2023
1.0.0-preview.18 338 4/26/2023
1.0.0-preview.17 2,073 4/23/2023
1.0.0-preview.16 335 4/19/2023
1.0.0-preview.15 618 4/14/2023
1.0.0-preview.14 357 4/12/2023
1.0.0-preview.13 218 4/10/2023
1.0.0-preview.12 813 4/3/2023
1.0.0-preview.11 1,056 3/27/2023
1.0.0-preview.10 776 3/22/2023
1.0.0-preview.9 433 3/18/2023
1.0.0-preview.8 829 3/10/2023
1.0.0-preview.7 520 3/3/2023
1.0.0-preview.6 665 2/28/2023
1.0.0-preview.5 149 2/28/2023
1.0.0-preview.4 444 2/21/2023
1.0.0-preview.3 794 2/13/2023
1.0.0-preview.2 2,015 2/3/2023
1.0.0-preview.1 271 1/17/2023
0.7.0-alpha.6179 76 9/18/2023
0.7.0-alpha.6178 73 9/18/2023
0.7.0-alpha.6177 79 9/18/2023
0.7.0-alpha.6119 97 9/13/2023
0.7.0-alpha.6118 84 9/13/2023
0.7.0-alpha.6107 92 9/13/2023
0.7.0-alpha.6096 79 9/12/2023
0.7.0-alpha.6095 84 9/12/2023
0.7.0-alpha.6094 85 9/12/2023
0.7.0-alpha.6041 95 9/8/2023
0.7.0-alpha.6040 94 9/8/2023
0.7.0-alpha.6025 87 9/7/2023
0.7.0-alpha.6021 87 9/7/2023
0.7.0-alpha.6012 75 9/7/2023
0.7.0-alpha.6011 85 9/7/2023
0.7.0-alpha.5956 84 9/4/2023
0.7.0-alpha.5926 80 9/1/2023
0.7.0-alpha.5897 92 8/30/2023
0.7.0-alpha.5872 85 8/29/2023
0.7.0-alpha.5870 87 8/29/2023
0.7.0-alpha.5857 82 8/28/2023
0.7.0-alpha.5847 83 8/28/2023
0.7.0-alpha.5731 82 8/22/2023
0.7.0-alpha.5699 74 8/18/2023
0.7.0-alpha.5682 68 8/18/2023
0.7.0-alpha.5681 70 8/18/2023
0.7.0-alpha.5650 81 8/16/2023
0.7.0-alpha.5644 92 8/15/2023
0.7.0-alpha.5642 80 8/15/2023
0.7.0-alpha.5641 92 8/15/2023
0.7.0-alpha.5620 87 8/14/2023
0.7.0-alpha.5619 89 8/14/2023
0.7.0-alpha.5618 90 8/14/2023
0.7.0-alpha.5617 87 8/14/2023
0.7.0-alpha.5611 90 8/11/2023
0.7.0-alpha.5609 94 8/11/2023
0.7.0-alpha.5608 92 8/11/2023
0.7.0-alpha.5607 93 8/11/2023
0.7.0-alpha.5606 90 8/11/2023
0.7.0-alpha.5581 84 8/9/2023
0.7.0-alpha.5492 92 8/3/2023
0.7.0-alpha.5482 85 8/3/2023
0.7.0-alpha.5435 95 8/1/2023
0.7.0-alpha.5372 74 7/27/2023
0.7.0-alpha.5365 82 7/26/2023
0.7.0-alpha.5363 87 7/26/2023
0.7.0-alpha.5362 88 7/26/2023
0.7.0-alpha.5344 101 7/25/2023
0.7.0-alpha.5321 96 7/24/2023
0.7.0-alpha.5320 101 7/24/2023
0.7.0-alpha.5319 103 7/24/2023
0.7.0-alpha.5292 97 7/20/2023
0.7.0-alpha.5236 100 7/17/2023
0.7.0-alpha.5160 98 7/13/2023
0.7.0-alpha.5142 94 7/12/2023
0.7.0-alpha.5139 99 7/12/2023
0.7.0-alpha.5124 102 7/11/2023
0.7.0-alpha.5070 70 7/7/2023
0.7.0-alpha.5061 91 7/7/2023
0.7.0-alpha.5056 90 7/6/2023
0.7.0-alpha.5049 86 7/6/2023
0.7.0-alpha.5013 94 7/5/2023
0.7.0-alpha.4994 95 7/4/2023
0.7.0-alpha.4992 92 7/4/2023
0.7.0-alpha.4991 91 7/4/2023
0.7.0-alpha.4963 90 7/3/2023
0.7.0-alpha.4962 93 7/3/2023
0.7.0-alpha.4959 99 7/3/2023
0.7.0-alpha.4926 93 6/30/2023
0.7.0-alpha.4919 88 6/30/2023
0.7.0-alpha.4883 82 6/27/2023
0.7.0-alpha.4882 72 6/27/2023
0.7.0-alpha.4881 81 6/27/2023
0.7.0-alpha.4847 82 6/25/2023
0.7.0-alpha.4804 79 6/20/2023
0.7.0-alpha.4802 81 6/20/2023
0.7.0-alpha.4798 83 6/20/2023
0.7.0-alpha.4797 91 6/20/2023
0.7.0-alpha.4796 88 6/20/2023
0.7.0-alpha.4790 81 6/19/2023
0.7.0-alpha.4736 85 6/16/2023
0.7.0-alpha.4709 82 6/15/2023
0.7.0-alpha.4695 79 6/15/2023
0.7.0-alpha.4639 84 6/12/2023
0.7.0-alpha.4569 82 6/9/2023
0.7.0-alpha.4527 95 6/8/2023
0.7.0-alpha.4503 83 6/7/2023
0.7.0-alpha.4502 85 6/7/2023
0.7.0-alpha.4442 80 6/5/2023
0.7.0-alpha.4441 88 6/5/2023
0.7.0-alpha.4391 83 6/1/2023
0.7.0-alpha.4390 79 6/1/2023
0.7.0-alpha.4389 86 6/1/2023
0.7.0-alpha.4366 93 5/31/2023
0.7.0-alpha.4365 88 5/31/2023
0.7.0-alpha.4363 81 5/31/2023
0.7.0-alpha.4332 81 5/29/2023
0.7.0-alpha.4331 83 5/29/2023
0.7.0-alpha.4329 78 5/26/2023
0.7.0-alpha.4310 97 5/26/2023
0.7.0-alpha.4303 77 5/26/2023
0.7.0-alpha.4262 83 5/24/2023
0.7.0-alpha.4261 88 5/24/2023
0.7.0-alpha.4260 83 5/24/2023
0.7.0-alpha.4158 108 5/19/2023
0.7.0-alpha.4156 99 5/19/2023
0.7.0-alpha.4117 100 5/15/2023
0.7.0-alpha.4108 101 5/15/2023
0.7.0-alpha.3987 92 5/5/2023
0.7.0-alpha.3986 89 5/5/2023
0.7.0-alpha.3965 123 5/4/2023
0.7.0-alpha.3932 101 4/28/2023
0.7.0-alpha.3930 91 4/28/2023
0.7.0-alpha.3929 107 4/28/2023
0.7.0-alpha.3923 98 4/28/2023
0.7.0-alpha.3917 102 4/27/2023
0.7.0-alpha.3915 100 4/27/2023
0.7.0-alpha.3914 98 4/27/2023
0.7.0-alpha.3896 105 4/27/2023
0.7.0-alpha.3895 97 4/27/2023
0.7.0-alpha.3889 117 4/27/2023
0.7.0-alpha.3880 106 4/26/2023
0.7.0-alpha.3875 99 4/26/2023
0.7.0-alpha.3869 95 4/26/2023
0.7.0-alpha.3865 100 4/26/2023
0.7.0-alpha.3852 100 4/26/2023
0.7.0-alpha.3850 109 4/26/2023
0.7.0-alpha.3848 108 4/26/2023
0.7.0-alpha.3841 104 4/26/2023
0.7.0-alpha.3830 120 4/25/2023
0.7.0-alpha.3800 114 4/24/2023
0.7.0-alpha.3767 107 4/23/2023
0.7.0-alpha.3766 111 4/23/2023
0.7.0-alpha.3763 114 4/23/2023
0.7.0-alpha.3757 94 4/21/2023
0.7.0-alpha.3756 108 4/21/2023
0.7.0-alpha.3736 115 4/21/2023
0.7.0-alpha.3734 115 4/21/2023
0.7.0-alpha.3723 118 4/20/2023
0.7.0-alpha.3719 121 4/20/2023
0.7.0-alpha.3690 117 4/19/2023
0.7.0-alpha.3682 130 4/19/2023
0.7.0-alpha.3672 104 4/19/2023
0.7.0-alpha.3671 105 4/19/2023
0.7.0-alpha.3668 106 4/19/2023
0.7.0-alpha.3666 120 4/19/2023
0.7.0-alpha.3575 120 4/14/2023
0.7.0-alpha.3574 128 4/14/2023
0.7.0-alpha.3570 120 4/14/2023
0.7.0-alpha.3569 117 4/14/2023
0.7.0-alpha.3558 114 4/14/2023
0.7.0-alpha.3531 122 4/13/2023
0.7.0-alpha.3522 121 4/13/2023
0.7.0-alpha.3477 126 4/12/2023
0.7.0-alpha.3462 121 4/12/2023
0.7.0-alpha.3460 137 4/12/2023
0.7.0-alpha.3434 127 4/12/2023
0.7.0-alpha.3429 115 4/11/2023
0.7.0-alpha.3415 135 4/11/2023
0.7.0-alpha.3398 116 4/10/2023
0.7.0-alpha.3382 120 4/10/2023
0.7.0-alpha.3380 135 4/10/2023
0.7.0-alpha.3379 128 4/10/2023
0.7.0-alpha.3376 144 4/10/2023
0.7.0-alpha.3373 131 4/10/2023
0.7.0-alpha.3372 134 4/10/2023
0.7.0-alpha.3370 133 4/10/2023
0.7.0-alpha.3348 128 4/7/2023
0.7.0-alpha.3339 153 4/7/2023
0.7.0-alpha.3330 121 4/6/2023
0.7.0-alpha.3329 110 4/6/2023
0.7.0-alpha.3317 113 4/6/2023
0.7.0-alpha.3313 140 4/6/2023
0.7.0-alpha.3310 123 4/6/2023
0.7.0-alpha.3308 146 4/6/2023
0.7.0-alpha.3304 140 4/6/2023
0.7.0-alpha.3292 124 4/5/2023
0.7.0-alpha.3281 152 4/4/2023
0.7.0-alpha.3278 117 4/4/2023
0.7.0-alpha.3236 114 4/3/2023
0.7.0-alpha.3235 141 4/3/2023
0.7.0-alpha.3230 125 4/3/2023
0.7.0-alpha.3228 129 4/3/2023
0.7.0-alpha.3227 122 4/3/2023
0.7.0-alpha.3226 148 4/3/2023
0.7.0-alpha.3222 142 4/1/2023
0.7.0-alpha.3219 126 3/31/2023
0.7.0-alpha.3217 142 3/31/2023
0.7.0-alpha.3214 143 3/31/2023
0.7.0-alpha.3207 152 3/31/2023
0.7.0-alpha.3204 155 3/31/2023
0.7.0-alpha.3186 130 3/31/2023
0.7.0-alpha.3164 127 3/30/2023
0.7.0-alpha.3152 117 3/30/2023
0.7.0-alpha.3129 138 3/29/2023
0.7.0-alpha.3127 137 3/29/2023
0.7.0-alpha.3124 145 3/29/2023
0.7.0-alpha.3112 129 3/29/2023
0.7.0-alpha.3074 138 3/28/2023
0.7.0-alpha.3073 139 3/28/2023
0.7.0-alpha.3064 157 3/28/2023
0.7.0-alpha.3062 149 3/28/2023
0.7.0-alpha.3060 147 3/27/2023
0.7.0-alpha.3057 138 3/27/2023
0.7.0-alpha.3055 164 3/27/2023
0.7.0-alpha.3047 156 3/27/2023
0.7.0-alpha.3042 162 3/27/2023
0.7.0-alpha.3041 139 3/27/2023
0.7.0-alpha.3037 135 3/27/2023
0.7.0-alpha.3036 136 3/27/2023
0.7.0-alpha.3034 147 3/27/2023
0.7.0-alpha.3032 141 3/27/2023
0.7.0-alpha.3031 129 3/27/2023
0.7.0-alpha.3004 144 3/24/2023
0.7.0-alpha.2994 150 3/23/2023
0.7.0-alpha.2986 155 3/23/2023
0.7.0-alpha.2978 181 3/23/2023
0.7.0-alpha.2916 137 3/21/2023
0.7.0-alpha.2907 127 3/21/2023
0.7.0-alpha.2871 144 3/20/2023
0.7.0-alpha.2847 172 3/18/2023
0.7.0-alpha.2836 157 3/17/2023
0.7.0-alpha.2801 138 3/17/2023
0.7.0-alpha.2799 127 3/16/2023
0.7.0-alpha.2798 125 3/16/2023
0.7.0-alpha.2797 118 3/16/2023
0.7.0-alpha.2795 116 3/16/2023
0.7.0-alpha.2787 114 3/16/2023
0.7.0-alpha.2769 125 3/16/2023
0.7.0-alpha.2741 130 3/15/2023
0.7.0-alpha.2733 139 3/14/2023
0.7.0-alpha.2712 119 3/14/2023
0.7.0-alpha.2711 115 3/14/2023
0.7.0-alpha.2705 123 3/14/2023
0.7.0-alpha.2699 118 3/13/2023
0.7.0-alpha.2698 115 3/13/2023
0.7.0-alpha.2697 130 3/13/2023
0.7.0-alpha.2695 117 3/13/2023
0.7.0-alpha.2680 118 3/10/2023
0.7.0-alpha.2650 119 3/10/2023
0.7.0-alpha.2648 116 3/10/2023
0.7.0-alpha.2641 116 3/9/2023
0.7.0-alpha.2640 124 3/9/2023
0.7.0-alpha.2635 131 3/9/2023
0.7.0-alpha.2634 134 3/9/2023
0.7.0-alpha.2629 126 3/9/2023
0.7.0-alpha.2617 123 3/8/2023
0.7.0-alpha.2616 120 3/8/2023
0.7.0-alpha.2614 125 3/8/2023
0.7.0-alpha.2602 108 3/7/2023
0.7.0-alpha.2590 109 3/7/2023
0.7.0-alpha.2589 124 3/7/2023
0.7.0-alpha.2588 123 3/7/2023
0.7.0-alpha.2533 135 3/3/2023
0.7.0-alpha.2529 137 3/3/2023
0.7.0-alpha.2528 129 3/3/2023
0.7.0-alpha.2454 134 2/28/2023
0.7.0-alpha.2445 150 2/28/2023
0.7.0-alpha.2439 127 2/28/2023
0.7.0-alpha.2435 131 2/28/2023
0.7.0-alpha.2429 136 2/28/2023
0.7.0-alpha.2390 135 2/26/2023
0.7.0-alpha.2360 137 2/24/2023
0.7.0-alpha.2296 138 2/22/2023
0.7.0-alpha.2205 122 2/16/2023
0.7.0-alpha.2192 124 2/15/2023
0.7.0-alpha.2157 135 2/14/2023
0.7.0-alpha.2149 127 2/14/2023
0.7.0-alpha.2062 134 2/13/2023
0.7.0-alpha.2058 133 2/13/2023
0.7.0-alpha.2025 129 2/10/2023
0.7.0-alpha.2007 125 2/9/2023
0.7.0-alpha.2005 127 2/8/2023
0.7.0-alpha.2002 152 2/8/2023
0.7.0-alpha.2001 140 2/8/2023
0.7.0-alpha.2000 128 2/8/2023
0.7.0-alpha.1999 132 2/8/2023
0.7.0-alpha.1998 134 2/8/2023
0.7.0-alpha.1971 140 2/5/2023
0.7.0-alpha.1964 141 2/3/2023
0.7.0-alpha.1961 145 2/3/2023
0.7.0-alpha.1960 137 2/3/2023
0.7.0-alpha.1958 132 2/3/2023
0.7.0-alpha.1957 126 2/3/2023
0.7.0-alpha.1956 135 2/3/2023
0.7.0-alpha.1954 141 2/3/2023
0.7.0-alpha.1945 154 2/2/2023
0.7.0-alpha.1944 159 2/2/2023
0.7.0-alpha.1911 152 1/30/2023
0.7.0-alpha.1904 151 1/29/2023
0.7.0-alpha.1903 158 1/29/2023
0.7.0-alpha.1902 169 1/29/2023
0.7.0-alpha.1899 157 1/29/2023
0.7.0-alpha.1897 153 1/20/2023
0.7.0-alpha.1893 143 1/17/2023
0.7.0-alpha.1891 141 1/17/2023
0.7.0-alpha.1882 145 1/17/2023
0.7.0-alpha.1879 135 1/17/2023
0.7.0-alpha.1865 188 1/16/2023
0.7.0-alpha.1864 147 1/16/2023
0.7.0-alpha.1860 158 1/16/2023
0.7.0-alpha.1856 211 1/15/2023
0.7.0-alpha.1846 184 1/15/2023
0.7.0-alpha.1844 209 1/15/2023
0.7.0-alpha.1840 162 1/15/2023
0.7.0-alpha.1827 146 1/14/2023
0.7.0-alpha.1826 157 1/14/2023
0.7.0-alpha.1804 454 1/14/2023
0.7.0-alpha.1798 164 1/13/2023
0.7.0-alpha.1797 127 1/13/2023
0.7.0-alpha.1794 221 1/13/2023
0.7.0-alpha.1787 140 1/13/2023
0.7.0-alpha.1777 136 1/13/2023
0.7.0-alpha.1761 245 1/12/2023
0.7.0-alpha.1744 151 1/11/2023
0.7.0-alpha.1733 196 1/11/2023
0.7.0-alpha.1726 345 1/11/2023
0.7.0-alpha.1725 188 1/11/2023
0.7.0-alpha.1717 161 1/11/2023
0.7.0-alpha.1712 192 1/11/2023
0.7.0-alpha.1709 166 1/11/2023
0.7.0-alpha.1699 153 1/11/2023
0.7.0-alpha.1697 158 1/11/2023
0.7.0-alpha.1696 152 1/10/2023
0.7.0-alpha.1661 189 1/10/2023
0.7.0-alpha.1655 159 1/9/2023
0.7.0-alpha.1634 165 1/9/2023
0.7.0-alpha.1632 165 1/9/2023
0.7.0-alpha.1611 200 1/6/2023
0.7.0-alpha.1559 303 1/5/2023
0.7.0-alpha.1549 180 1/4/2023
0.7.0-alpha.1544 184 1/4/2023
0.7.0-alpha.1541 237 1/4/2023
0.7.0-alpha.1513 173 1/3/2023
0.7.0-alpha.1512 180 1/3/2023
0.7.0-alpha.1511 168 1/3/2023
0.7.0-alpha.1500 167 1/3/2023
0.7.0-alpha.1409 1,147 12/27/2022
0.7.0-alpha.1406 136 12/27/2022
0.7.0-alpha.1402 140 12/27/2022
0.7.0-alpha.1400 138 12/26/2022
0.7.0-alpha.1399 141 12/26/2022
0.7.0-alpha.1397 149 12/26/2022
0.7.0-alpha.1154 228 12/14/2022
0.7.0-alpha.1122 145 12/12/2022
0.7.0-alpha.1114 146 12/12/2022
0.7.0-alpha.1096 155 12/8/2022
0.7.0-alpha.1044 293 12/6/2022
0.7.0-alpha.1036 141 12/6/2022
0.7.0-alpha.973 175 12/2/2022
0.7.0-alpha.972 146 12/2/2022
0.7.0-alpha.961 145 12/1/2022
0.7.0-alpha.937 179 11/30/2022
0.7.0-alpha.913 168 11/28/2022
0.7.0-alpha.900 154 11/25/2022
0.7.0-alpha.896 133 11/25/2022
0.7.0-alpha.888 137 11/24/2022
0.7.0-alpha.883 137 11/23/2022
0.7.0-alpha.882 148 11/23/2022
0.7.0-alpha.879 153 11/23/2022
0.7.0-alpha.873 151 11/22/2022
0.7.0-alpha.868 143 11/21/2022
0.7.0-alpha.864 132 11/21/2022
0.7.0-alpha.861 146 11/21/2022
0.7.0-alpha.858 142 11/21/2022
0.7.0-alpha.856 138 11/21/2022
0.7.0-alpha.855 157 11/21/2022
0.7.0-alpha.852 143 11/18/2022
0.7.0-alpha.851 143 11/18/2022
0.7.0-alpha.849 139 11/18/2022
0.7.0-alpha.842 137 11/17/2022
0.7.0-alpha.838 142 11/17/2022
0.7.0-alpha.835 146 11/17/2022
0.7.0-alpha.833 146 11/17/2022
0.7.0-alpha.832 150 11/17/2022
0.7.0-alpha.831 150 11/17/2022
0.7.0-alpha.829 144 11/16/2022
0.7.0-alpha.820 138 11/16/2022
0.7.0-alpha.812 155 11/16/2022
0.7.0-alpha.802 133 11/15/2022
0.7.0-alpha.800 142 11/15/2022
0.7.0-alpha.799 132 11/15/2022
0.7.0-alpha.798 134 11/15/2022
0.6.2 1,615 4/11/2023
0.6.1 142 4/11/2023
0.6.0 5,721 11/3/2022
0.6.0-rc.9 412 10/28/2022
0.6.0-rc.8 1,030 10/25/2022
0.6.0-rc.7 1,040 10/11/2022
0.6.0-rc.6 356 9/29/2022
0.6.0-rc.4 211 9/23/2022
0.6.0-rc.3 219 9/20/2022
0.6.0-rc.2 305 9/16/2022
0.6.0-preview.6 299 9/8/2022
0.6.0-preview.5 842 8/29/2022
0.6.0-preview.4 353 8/18/2022
0.6.0-preview.3 594 8/8/2022
0.6.0-preview.2 189 8/4/2022
0.6.0-preview.1 205 8/1/2022
0.5.0 5,394 7/29/2022
0.5.0-rc.7 178 7/28/2022
0.5.0-rc.6 390 7/19/2022
0.5.0-rc.5 275 7/13/2022
0.5.0-rc.4 164 7/12/2022
0.5.0-rc.3 194 7/11/2022
0.5.0-rc.2 237 7/8/2022
0.5.0-rc.1 164 7/7/2022
0.5.0-preview.5 401 6/30/2022
0.5.0-preview.4 208 6/27/2022
0.5.0-preview.3 495 6/21/2022
0.5.0-preview.2 275 6/14/2022
0.5.0-preview.1 208 6/10/2022
0.4.0 2,095 5/31/2022
0.4.0-rc.3 354 5/24/2022
0.4.0-rc.2 190 5/19/2022
0.4.0-rc.1 255 5/19/2022
0.4.0-preview.22 220 5/12/2022 0.4.0-preview.22 is deprecated because it is no longer maintained.
0.4.0-preview.21 187 5/12/2022 0.4.0-preview.21 is deprecated because it is no longer maintained.
0.4.0-preview.4 236 5/12/2022
0.4.0-preview.3 162 5/12/2022
0.4.0-preview.2 167 5/11/2022
0.4.0-preview.1 424 4/2/2022
0.3.11407 2,338 4/6/2022
0.3.0 3,096 2/25/2022
0.3.0-rc.28 196 1/25/2022
0.3.0-rc.26 174 1/24/2022
0.3.0-rc.24 184 1/24/2022
0.3.0-rc.23 182 1/24/2022
0.3.0-rc.22 186 1/24/2022
0.3.0-rc.21 197 1/24/2022
0.3.0-rc.20 182 1/23/2022
0.3.0-rc.19 179 1/22/2022
0.3.0-rc.17 171 1/22/2022
0.3.0-rc.16 188 1/21/2022
0.3.0-rc.14 176 1/21/2022
0.3.0-rc.13 180 1/21/2022
0.3.0-rc.12 186 1/21/2022
0.3.0-rc.11 172 1/21/2022
0.3.0-rc.10 184 1/21/2022
0.3.0-rc.9 177 1/20/2022
0.3.0-rc.8 182 1/17/2022
0.3.0-rc.7 174 1/17/2022
0.3.0-rc.6 186 1/14/2022
0.3.0-rc.5 180 1/13/2022
0.3.0-rc.3 184 12/30/2021
0.3.0-rc.2 218 12/28/2021
0.3.0-alpha.795 147 11/15/2022
0.3.0-alpha.793 143 11/15/2022
0.3.0-alpha.551 118 11/2/2022
0.3.0-alpha.550 118 11/2/2022
0.3.0-alpha.505 129 10/31/2022
0.3.0-alpha.481 122 10/31/2022
0.3.0-alpha.467 129 10/28/2022
0.3.0-alpha.456 147 10/27/2022
0.3.0-alpha.420 123 10/26/2022
0.3.0-alpha.415 136 10/25/2022
0.3.0-alpha.410 124 10/25/2022
0.3.0-alpha.407 121 10/25/2022
0.2.15401 944 9/26/2022
0.2.15400 920 9/26/2022
0.2.15352 928 9/23/2022
0.2.15312 936 9/21/2022
0.2.15296 928 9/20/2022
0.2.15295 952 9/20/2022
0.2.15288 935 9/20/2022
0.2.15286 947 9/20/2022
0.2.15281 919 9/20/2022
0.2.15275 944 9/19/2022
0.2.15273 916 9/19/2022
0.2.15257 973 9/19/2022
0.2.15241 955 9/16/2022
0.2.15240 904 9/16/2022
0.2.15237 947 9/16/2022
0.2.15232 974 9/16/2022
0.2.15231 972 9/16/2022
0.2.15230 939 9/16/2022
0.2.15229 930 9/16/2022
0.2.15210 1,026 9/15/2022
0.2.15196 1,015 9/14/2022
0.2.15184 930 9/13/2022
0.2.15140 922 9/8/2022
0.2.14958 924 8/30/2022
0.2.14948 983 8/29/2022
0.2.14946 957 8/29/2022
0.2.14940 969 8/29/2022
0.2.14939 962 8/29/2022
0.2.14934 952 8/29/2022
0.2.14837 961 8/19/2022
0.2.14822 966 8/18/2022
0.2.14816 932 8/18/2022
0.2.14805 971 8/18/2022
0.2.14781 948 8/17/2022
0.2.14746 951 8/16/2022
0.2.14734 948 8/16/2022
0.2.14541 971 8/11/2022
0.2.14496 944 8/10/2022
0.2.14421 952 8/8/2022
0.2.14363 962 8/5/2022
0.2.14323 997 8/3/2022
0.2.14262 949 8/3/2022
0.2.14189 973 8/1/2022
0.2.14171 1,000 8/1/2022
0.2.14169 1,012 8/1/2022
0.2.14163 999 7/29/2022
0.2.14072 963 7/27/2022
0.2.14007 967 7/22/2022
0.2.13863 1,003 7/18/2022
0.2.13821 970 7/15/2022
0.2.13819 999 7/15/2022
0.2.13795 998 7/14/2022
0.2.13777 994 7/14/2022
0.2.13776 987 7/14/2022
0.2.13741 965 7/12/2022
0.2.13740 977 7/12/2022
0.2.13724 993 7/11/2022
0.2.13717 1,004 7/11/2022
0.2.13705 972 7/8/2022
0.2.13703 982 7/8/2022
0.2.13687 1,017 7/8/2022
0.2.13675 1,006 7/8/2022
0.2.13672 968 7/7/2022
0.2.13665 976 7/7/2022
0.2.13627 973 7/6/2022
0.2.13626 1,001 7/6/2022
0.2.13620 998 7/6/2022
0.2.13594 976 7/5/2022
0.2.13593 973 7/5/2022
0.2.13573 992 7/5/2022
0.2.13564 980 7/4/2022
0.2.13561 979 7/4/2022
0.2.13560 1,012 7/4/2022
0.2.13555 995 7/4/2022
0.2.13549 1,008 7/4/2022
0.2.13491 1,004 6/30/2022
0.2.13488 1,008 6/30/2022
0.2.13487 994 6/30/2022
0.2.13486 974 6/30/2022
0.2.13482 1,006 6/30/2022
0.2.13481 993 6/30/2022
0.2.13480 995 6/30/2022
0.2.13479 980 6/30/2022
0.2.13476 989 6/30/2022
0.2.13474 977 6/30/2022
0.2.13472 994 6/30/2022
0.2.13471 968 6/30/2022
0.2.13470 1,007 6/30/2022
0.2.13469 1,017 6/30/2022
0.2.13461 986 6/30/2022
0.2.13458 986 6/30/2022
0.2.13453 995 6/30/2022
0.2.13449 979 6/29/2022
0.2.13447 1,010 6/29/2022
0.2.13438 971 6/29/2022
0.2.13417 958 6/29/2022
0.2.13414 990 6/29/2022
0.2.13413 990 6/28/2022
0.2.13404 986 6/28/2022
0.2.13399 1,000 6/28/2022
0.2.13398 1,015 6/28/2022
0.2.13387 975 6/27/2022
0.2.13382 1,004 6/27/2022
0.2.13377 1,004 6/27/2022
0.2.13356 1,009 6/24/2022
0.2.13330 1,026 6/24/2022
0.2.13310 1,012 6/23/2022
0.2.13294 1,004 6/23/2022
0.2.13291 1,008 6/23/2022
0.2.13290 986 6/23/2022
0.2.13286 1,019 6/23/2022
0.2.13214 993 6/21/2022
0.2.13211 1,015 6/21/2022
0.2.12942 967 6/14/2022
0.2.12901 981 6/10/2022
0.2.12871 1,020 6/8/2022
0.2.12848 1,022 6/7/2022
0.2.12846 1,000 6/6/2022
0.2.12794 1,029 6/1/2022
0.2.12793 1,030 6/1/2022
0.2.12694 1,024 5/30/2022
0.2.12507 1,015 5/19/2022
0.2.12495 1,046 5/18/2022
0.2.12494 1,024 5/18/2022
0.2.12492 1,041 5/18/2022
0.2.12478 1,018 5/18/2022
0.2.12476 1,001 5/18/2022
0.2.12468 1,040 5/17/2022
0.2.12453 1,028 5/17/2022
0.2.12452 999 5/17/2022
0.2.12450 1,039 5/17/2022
0.2.12437 1,042 5/17/2022
0.2.12435 1,037 5/17/2022
0.2.12433 1,011 5/17/2022
0.2.12431 1,008 5/17/2022
0.2.12407 1,019 5/16/2022
0.2.12395 1,033 5/16/2022
0.2.12340 1,029 5/13/2022
0.2.12339 1,042 5/13/2022
0.2.12324 1,032 5/12/2022
0.2.12323 1,000 5/12/2022
0.2.12309 1,021 5/11/2022
0.2.12277 1,056 5/10/2022
0.2.12265 1,321 5/10/2022
0.2.12261 987 5/10/2022
0.2.12240 1,328 5/9/2022
0.2.12238 1,025 5/9/2022
0.2.12237 1,035 5/9/2022
0.2.12228 1,050 5/9/2022
0.2.12227 1,017 5/9/2022
0.2.12173 1,031 5/7/2022
0.2.12129 1,008 5/6/2022
0.2.12121 1,374 5/6/2022
0.2.12120 1,012 5/6/2022
0.2.12057 1,034 4/29/2022
0.2.12051 1,029 4/28/2022
0.2.12050 1,075 4/28/2022
0.2.12019 1,028 4/28/2022
0.2.12018 1,033 4/28/2022
0.2.12017 1,032 4/28/2022
0.2.12016 2,076 4/28/2022
0.2.12005 2,154 4/27/2022
0.2.11993 2,139 4/27/2022
0.2.11989 2,089 4/27/2022
0.2.11975 2,100 4/27/2022
0.2.11974 2,155 4/27/2022
0.2.11962 2,127 4/26/2022
0.2.11934 2,113 4/26/2022
0.2.11933 2,114 4/26/2022
0.2.11923 2,084 4/25/2022
0.2.11907 1,942 4/25/2022
0.2.11906 1,980 4/25/2022
0.2.11903 1,976 4/25/2022
0.2.11902 1,951 4/25/2022
0.2.11869 1,965 4/24/2022
0.2.11852 1,883 4/22/2022
0.2.11799 1,965 4/21/2022
0.2.11763 1,934 4/19/2022
0.2.11740 1,922 4/19/2022
0.2.11701 1,964 4/18/2022
0.2.11698 1,971 4/18/2022
0.2.11681 1,985 4/16/2022
0.2.11568 1,936 4/14/2022
0.2.11507 2,046 4/12/2022
0.2.11501 1,968 4/12/2022
0.2.11476 1,947 4/11/2022
0.2.11472 1,964 4/10/2022
0.2.11396 1,929 4/6/2022
0.2.11395 1,919 4/6/2022
0.2.11364 1,919 4/2/2022
0.2.11356 1,957 4/1/2022
0.2.11355 1,929 4/1/2022
0.2.11354 1,900 4/1/2022
0.2.11350 1,915 4/1/2022
0.2.11329 1,964 4/1/2022
0.2.11327 1,955 4/1/2022
0.2.11326 1,972 4/1/2022
0.2.11323 1,900 4/1/2022
0.2.11320 1,918 3/31/2022
0.2.11319 1,944 3/31/2022
0.2.11281 1,952 3/31/2022
0.2.11268 1,948 3/30/2022
0.2.11267 1,969 3/30/2022
0.2.11259 1,986 3/30/2022
0.2.11257 1,881 3/30/2022
0.2.11211 1,838 3/29/2022
0.2.11205 1,913 3/29/2022
0.2.11202 1,956 3/29/2022
0.2.11197 1,922 3/28/2022
0.2.11195 1,896 3/28/2022
0.2.11194 1,905 3/28/2022
0.2.11190 1,878 3/28/2022
0.2.11174 1,918 3/28/2022
0.2.11170 1,888 3/28/2022
0.2.11169 1,865 3/28/2022
0.2.11123 1,864 3/23/2022
0.2.11120 1,867 3/23/2022
0.2.11092 1,892 3/23/2022
0.2.11091 1,867 3/23/2022
0.2.11090 1,922 3/23/2022
0.2.11087 1,904 3/23/2022
0.2.11059 1,921 3/22/2022
0.2.11057 1,915 3/22/2022
0.2.10900 1,936 3/7/2022
0.2.10893 1,949 3/7/2022
0.2.10846 1,880 3/3/2022
0.2.10844 1,841 3/3/2022
0.2.10829 1,991 3/3/2022
0.2.10739 1,939 2/28/2022
0.2.10649 6,421 2/24/2022
0.2.10628 1,922 2/23/2022
0.2.10602 1,731 2/23/2022
0.2.10600 1,800 2/23/2022
0.2.10574 1,745 2/23/2022
0.2.10494 1,761 2/22/2022
0.2.10426 1,739 2/18/2022
0.2.10424 1,765 2/18/2022
0.2.10395 1,701 2/17/2022
0.2.10377 1,734 2/16/2022
0.2.10375 1,813 2/16/2022
0.2.10367 1,747 2/16/2022
0.2.10365 1,806 2/16/2022
0.2.10349 1,837 2/15/2022
0.2.10329 1,794 2/15/2022
0.2.10323 1,694 2/14/2022
0.2.10321 1,752 2/14/2022
0.2.10317 1,760 2/14/2022
0.2.10312 1,796 2/14/2022
0.2.10303 1,913 2/14/2022
0.2.10288 1,773 2/11/2022
0.2.10287 1,772 2/11/2022
0.2.10286 1,692 2/11/2022
0.2.10285 1,772 2/11/2022
0.2.10283 1,738 2/11/2022
0.2.10277 1,878 2/9/2022
0.2.10275 1,759 2/9/2022
0.2.10273 1,848 2/9/2022
0.2.10268 1,846 2/9/2022
0.2.10261 1,813 2/9/2022
0.2.10256 1,865 2/9/2022
0.2.10254 1,801 2/9/2022
0.2.10245 1,823 1/31/2022
0.2.10244 1,834 1/31/2022
0.2.10243 1,846 1/31/2022
0.2.10240 1,867 1/25/2022
0.2.10232 1,752 1/24/2022
0.2.10220 1,793 1/24/2022
0.2.10217 4,409 1/24/2022
0.2.10212 1,804 1/24/2022
0.2.10210 1,773 1/24/2022
0.2.10208 1,748 1/24/2022
0.2.10206 1,732 1/24/2022
0.2.10204 1,801 1/24/2022
0.2.10194 1,769 1/22/2022
0.2.10192 1,797 1/22/2022
0.2.10190 1,793 1/22/2022
0.2.10172 1,791 1/22/2022
0.2.10118 1,776 1/21/2022
0.2.10097 1,778 1/20/2022
0.2.10091 1,744 1/20/2022
0.2.10073 1,768 1/19/2022
0.2.10068 1,824 1/19/2022
0.2.10064 1,769 1/19/2022
0.2.10061 1,763 1/19/2022
0.2.10057 1,862 1/19/2022
0.2.10039 1,775 1/19/2022
0.2.10037 1,798 1/19/2022
0.2.10022 1,790 1/18/2022
0.2.10021 1,793 1/18/2022
0.2.10020 1,799 1/18/2022
0.2.10018 1,779 1/18/2022
0.2.10005 1,922 1/18/2022
0.2.10002 1,847 1/18/2022
0.2.9994 1,801 1/18/2022
0.2.9992 1,832 1/18/2022
0.2.9985 1,846 1/18/2022
0.2.9982 1,856 1/18/2022
0.2.9981 1,846 1/17/2022
0.2.9977 1,742 1/17/2022
0.2.9973 1,787 1/17/2022
0.2.9971 1,804 1/17/2022
0.2.9961 1,776 1/17/2022
0.2.9959 1,800 1/17/2022
0.2.9956 1,740 1/17/2022
0.2.9952 1,809 1/17/2022
0.2.9950 1,799 1/17/2022
0.2.9943 1,739 1/17/2022
0.2.9941 1,765 1/17/2022
0.2.9940 1,833 1/17/2022
0.2.9934 1,774 1/17/2022
0.2.9932 1,786 1/17/2022
0.2.9929 1,862 1/17/2022
0.2.9899 1,810 1/14/2022
0.2.9889 1,811 1/13/2022
0.2.9886 1,833 1/13/2022
0.2.9856 1,859 1/13/2022
0.2.9854 1,832 1/13/2022
0.2.9835 1,850 1/12/2022
0.2.9801 1,863 1/11/2022
0.2.9798 1,794 1/11/2022
0.2.9797 1,525 1/10/2022
0.2.9794 1,531 1/10/2022
0.2.9782 1,547 1/10/2022
0.2.9775 1,518 1/10/2022
0.2.9771 1,482 1/10/2022
0.2.9736 1,584 1/7/2022
0.2.9735 1,606 1/7/2022
0.2.9679 1,558 1/6/2022
0.2.9664 1,641 1/6/2022
0.2.9642 1,541 1/5/2022
0.2.9627 1,505 1/5/2022
0.2.9623 1,606 1/5/2022
0.2.9617 1,517 1/5/2022
0.2.9606 1,522 1/4/2022
0.2.9599 1,550 1/4/2022
0.2.9595 1,517 1/4/2022
0.2.9578 1,471 1/4/2022
0.2.9566 1,581 1/4/2022
0.2.9545 1,542 12/31/2021
0.2.9533 1,499 12/31/2021
0.2.9525 1,476 12/31/2021
0.2.9513 1,501 12/31/2021
0.2.9476 1,727 12/30/2021
0.2.9442 1,564 12/29/2021
0.2.9441 1,491 12/29/2021
0.2.9411 1,481 12/29/2021
0.2.9386 1,517 12/29/2021
0.2.9384 1,510 12/29/2021
0.2.9382 1,499 12/29/2021
0.2.9381 1,547 12/29/2021
0.2.9377 1,536 12/28/2021
0.2.9374 1,520 12/28/2021
0.2.9370 1,538 12/28/2021
0.2.9369 1,485 12/28/2021
0.2.9367 1,507 12/28/2021
0.2.9351 1,520 12/28/2021
0.2.9347 1,484 12/28/2021
0.2.9346 1,493 12/28/2021
0.2.9337 1,537 12/28/2021
0.2.9331 1,540 12/28/2021
0.2.9323 1,523 12/27/2021
0.2.9322 1,555 12/27/2021
0.2.9320 1,663 12/27/2021
0.2.9319 1,578 12/27/2021
0.2.9318 1,581 12/27/2021
0.2.9312 1,602 12/27/2021
0.2.9308 1,625 12/27/2021
0.2.9295 1,575 12/27/2021
0.2.9291 1,566 12/27/2021
0.2.9283 1,560 12/27/2021
0.2.9282 1,601 12/27/2021
0.2.9228 1,529 12/24/2021
0.2.9225 1,515 12/23/2021
0.2.9221 1,538 12/23/2021
0.2.9217 1,610 12/23/2021
0.2.9216 1,526 12/23/2021
0.2.9202 1,557 12/23/2021
0.2.9198 1,544 12/23/2021
0.2.9197 1,515 12/23/2021
0.2.9187 1,599 12/23/2021
0.2.9182 1,518 12/22/2021
0.2.9180 1,495 12/22/2021
0.2.9163 1,577 12/22/2021
0.2.9155 1,538 12/22/2021
0.2.9154 1,487 12/22/2021
0.2.9140 1,567 12/21/2021
0.2.9116 1,538 12/21/2021
0.2.9098 1,556 12/20/2021
0.2.9095 1,571 12/17/2021
0.2.9094 1,544 12/17/2021
0.2.9086 1,450 12/17/2021
0.2.9083 1,488 12/17/2021
0.2.9079 1,509 12/17/2021
0.2.9075 1,502 12/17/2021
0.2.9061 1,572 12/16/2021
0.2.9049 1,474 12/16/2021
0.2.9046 1,503 12/16/2021
0.2.9036 1,594 12/15/2021
0.2.9035 1,542 12/15/2021
0.2.9034 1,511 12/15/2021
0.2.9016 1,524 12/14/2021
0.2.9009 1,512 12/14/2021
0.2.9006 1,554 12/14/2021
0.2.8987 1,602 12/13/2021
0.2.8984 1,541 12/13/2021
0.2.8980 1,807 12/13/2021
0.2.8977 1,614 12/12/2021
0.2.8965 1,599 12/10/2021
0.2.8964 1,531 12/10/2021
0.2.8963 1,266 12/10/2021
0.2.8962 1,565 12/10/2021
0.2.8961 1,516 12/10/2021
0.2.8960 1,567 12/10/2021
0.2.8959 1,581 12/10/2021
0.2.8958 1,554 12/10/2021
0.2.8952 1,561 12/10/2021
0.2.8864 1,577 12/9/2021
0.2.8809 1,607 12/7/2021
0.2.8768 1,551 12/7/2021
0.2.8764 1,571 12/7/2021
0.2.8762 1,563 12/7/2021
0.2.8760 1,521 12/7/2021
0.2.8759 1,559 12/7/2021
0.2.8633 1,978 12/3/2021
0.2.8603 1,513 12/3/2021
0.2.8567 1,480 12/2/2021
0.2.8566 1,552 12/2/2021
0.2.8553 1,532 12/2/2021
0.2.8542 1,564 12/2/2021
0.2.8538 1,501 12/2/2021
0.2.8495 1,520 12/1/2021
0.2.8494 1,536 12/1/2021
0.2.8470 1,585 12/1/2021
0.2.8390 1,230 11/30/2021
0.2.8383 1,258 11/30/2021
0.2.8187 2,448 11/26/2021
0.2.8146 3,536 11/26/2021
0.2.8145 2,510 11/26/2021
0.2.8139 2,731 11/25/2021
0.2.8120 3,945 11/25/2021
0.2.8118 5,305 11/24/2021
0.2.8096 4,999 11/24/2021
0.2.8078 258 11/23/2021
0.2.8071 241 11/23/2021
0.2.8069 260 11/23/2021
0.2.8065 251 11/23/2021
0.2.8046 268 11/23/2021
0.2.8044 245 11/23/2021
0.2.8036 281 11/22/2021
0.2.8033 251 11/22/2021
0.2.8032 249 11/22/2021
0.2.8031 259 11/22/2021
0.2.8029 264 11/22/2021
0.2.8028 245 11/22/2021
0.2.8024 247 11/22/2021
0.2.8022 260 11/22/2021
0.2.8020 264 11/22/2021
0.2.8019 268 11/22/2021
0.2.8018 284 11/22/2021
0.2.8017 315 11/22/2021
0.2.8016 362 11/22/2021
0.2.8015 372 11/22/2021
0.2.8012 400 11/22/2021
0.2.8006 289 11/19/2021
0.2.8004 295 11/19/2021
0.2.8002 278 11/19/2021
0.2.7996 322 11/19/2021
0.2.7992 331 11/19/2021
0.2.7990 263 11/19/2021
0.2.7988 307 11/19/2021
0.2.7974 310 11/19/2021
0.2.7972 264 11/19/2021
0.2.7968 285 11/18/2021
0.2.7937 322 11/18/2021
0.2.7933 263 11/18/2021
0.2.7931 274 11/18/2021
0.2.7923 283 11/17/2021
0.2.7915 293 11/17/2021
0.2.7912 268 11/17/2021
0.2.7901 308 11/17/2021
0.2.7882 302 11/16/2021
0.2.7876 284 11/16/2021
0.2.7869 329 11/16/2021
0.2.7861 291 11/15/2021
0.2.7853 277 11/15/2021
0.2.7843 296 11/15/2021
0.2.7821 274 11/12/2021
0.2.7811 293 11/12/2021
0.2.7808 292 11/12/2021
0.2.7803 272 11/12/2021
0.2.7802 274 11/12/2021
0.2.7801 272 11/12/2021
0.2.7800 277 11/12/2021
0.2.7789 267 11/11/2021
0.2.7751 238 11/9/2021
0.2.7730 263 11/9/2021
0.2.7727 267 11/9/2021
0.2.7689 213 11/8/2021
0.2.7667 271 11/5/2021
0.2.7641 269 11/4/2021
0.2.7625 230 11/3/2021
0.2.7583 255 11/2/2021
0.2.7580 212 11/1/2021
0.2.7541 254 10/29/2021
0.2.7415 269 10/25/2021
0.2.7399 221 10/22/2021
0.2.7394 237 10/22/2021
0.2.7391 276 10/22/2021
0.2.7369 256 10/20/2021
0.2.7339 252 10/20/2021
0.2.7336 248 10/20/2021
0.2.7332 225 10/20/2021
0.2.7319 224 10/19/2021
0.2.7317 232 10/19/2021
0.2.7316 225 10/19/2021
0.2.7307 216 10/19/2021
0.2.7304 205 10/19/2021
0.2.7302 215 10/18/2021
0.2.7292 254 10/18/2021
0.2.7219 231 10/12/2021
0.2.7197 250 10/11/2021
0.2.7194 249 10/11/2021
0.2.7192 300 10/11/2021
0.2.7183 254 10/9/2021
0.2.7161 259 10/9/2021
0.2.7158 275 10/9/2021
0.2.7157 296 10/9/2021
0.2.7149 251 10/8/2021
0.2.7134 215 10/8/2021
0.2.7121 213 9/30/2021
0.2.7110 233 9/30/2021
0.2.7054 263 9/28/2021
0.2.6901 229 9/26/2021
0.2.6894 232 9/26/2021
0.2.6887 253 9/26/2021
0.2.6884 292 9/26/2021
0.2.6883 322 9/26/2021
0.2.6847 240 9/22/2021
0.2.6662 232 9/18/2021
0.2.6661 233 9/18/2021
0.2.6577 234 9/17/2021
0.2.6573 237 9/17/2021
0.2.6572 249 9/17/2021
0.2.6561 8,855 9/16/2021
0.2.6552 240 9/17/2021
0.2.6547 226 9/17/2021
0.2.6544 223 9/17/2021
0.2.5758 239 9/6/2021
0.2.5757 219 9/6/2021
0.2.5756 214 9/6/2021
0.2.5410 455 8/26/2021
0.2.5408 437 8/26/2021
0.2.5395 223 8/26/2021
0.2.5394 220 8/26/2021
0.2.5393 220 8/25/2021
0.2.5117 288 8/21/2021
0.2.5116 220 8/21/2021
0.2.5115 209 8/21/2021
0.2.4935 1,509 8/18/2021
0.2.4635 253 8/12/2021
0.2.4574 240 8/12/2021
0.2.4523 270 8/11/2021
0.2.4517 240 8/11/2021
0.2.4505 219 8/11/2021
0.2.4503 217 8/11/2021
0.2.4489 229 8/11/2021
0.2.4482 230 8/11/2021
0.2.4476 225 8/11/2021
0.2.4475 228 8/11/2021
0.2.4458 1,626 8/10/2021
0.2.4447 229 8/10/2021
0.2.4426 259 8/10/2021
0.2.4425 244 8/10/2021
0.2.4424 242 8/10/2021
0.2.4312 257 8/9/2021
0.2.4275 245 8/6/2021
0.2.4271 248 8/6/2021
0.2.4259 283 8/6/2021
0.2.4253 280 8/6/2021
0.2.4201 252 8/5/2021
0.2.4161 257 8/5/2021
0.2.4158 263 8/5/2021
0.2.4151 240 8/5/2021
0.2.4064 262 8/3/2021
0.2.4023 235 8/2/2021
0.2.4009 228 8/2/2021
0.2.4008 229 8/2/2021
0.2.4004 229 8/2/2021
0.2.3964 6,594 8/2/2021
0.2.3958 234 8/2/2021
0.2.3954 239 8/2/2021
0.2.3885 322 7/31/2021
0.2.3880 257 7/31/2021
0.2.3850 310 7/31/2021
0.2.3838 338 7/31/2021
0.2.3832 339 7/31/2021
0.2.3829 346 7/31/2021
0.2.3782 267 7/30/2021
0.2.3768 273 7/30/2021
0.2.3760 280 7/30/2021
0.2.3752 245 7/30/2021
0.2.3750 251 7/29/2021
0.2.3734 250 7/29/2021
0.2.3717 431 7/29/2021
0.2.3716 249 7/29/2021
0.2.3710 252 7/29/2021
0.2.397 861 10/25/2022
0.2.396 866 10/24/2022
0.2.395 843 10/24/2022
0.2.392 871 10/24/2022
0.2.385 850 10/21/2022
0.2.373 875 10/21/2022
0.2.368 926 10/20/2022
0.2.357 883 10/20/2022
0.2.345 887 10/19/2022
0.2.317 855 10/18/2022
0.2.316 883 10/18/2022
0.2.315 893 10/18/2022
0.2.313 868 10/18/2022
0.2.312 895 10/18/2022
0.2.311 883 10/18/2022
0.2.299 865 10/17/2022
0.2.297 902 10/17/2022
0.2.296 910 10/17/2022
0.2.295 879 10/17/2022
0.2.288 875 10/17/2022
0.2.259 899 10/13/2022
0.2.258 937 10/13/2022
0.2.194 905 10/11/2022
0.2.175 149 10/11/2022
0.2.173 899 10/10/2022
0.2.169 900 10/10/2022
0.2.155 954 10/10/2022
0.2.60 1,849 3/22/2022
0.2.59 1,897 3/22/2022
0.2.58 1,826 3/22/2022
0.2.57 1,846 3/21/2022
0.2.56 1,928 3/18/2022
0.2.55 1,905 3/18/2022
0.2.53 1,884 3/18/2022
0.2.52 1,916 3/18/2022
0.2.50 1,915 3/18/2022
0.2.49 1,857 3/17/2022
0.2.48 1,870 3/17/2022
0.2.47 1,922 3/17/2022
0.2.44 1,964 3/17/2022
0.2.43 1,877 3/16/2022
0.2.42 1,877 3/16/2022
0.2.41 1,898 3/11/2022
0.2.40 1,193 3/11/2022
0.2.39 1,197 3/10/2022
0.2.38 1,929 3/10/2022
0.2.37 1,169 3/10/2022
0.2.36 1,196 3/9/2022
0.2.35 1,202 3/9/2022
0.2.31 1,242 3/9/2022
0.2.30 1,181 3/8/2022
0.2.29 1,956 3/8/2022
0.2.27 1,952 3/8/2022
0.2.25 1,862 3/8/2022
0.2.20 1,845 3/7/2022
0.2.17 1,945 3/7/2022
0.2.14 1,878 3/3/2022
0.2.11 1,785 2/16/2022
0.2.10 1,757 2/12/2022
0.2.7 1,900 2/16/2022
0.2.3 1,836 2/14/2022
0.2.1 1,780 2/12/2022
0.1.0.3681 295 7/29/2021
0.1.0.3642 323 7/28/2021
0.1.0.3513 255 7/26/2021
0.1.0.3323 277 7/21/2021
0.1.0.3246 612 7/20/2021
0.1.0.3169 236 7/19/2021
0.1.0.3037 268 7/16/2021
0.1.0.3036 271 7/16/2021
0.1.0.3035 306 7/16/2021
0.1.0.3034 308 7/16/2021
0.1.0.3030 230 7/16/2021
0.1.0.2852 254 7/9/2021
0.1.0.2849 247 7/9/2021
0.1.0.345 437 7/9/2021