Masa.Blazor 0.7.0-alpha.851

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.851                
NuGet\Install-Package Masa.Blazor -Version 0.7.0-alpha.851                
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.851" />                
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.851                
#r "nuget: Masa.Blazor, 0.7.0-alpha.851"                
#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.851&prerelease

// Install Masa.Blazor as a Cake Tool
#tool nuget:?package=Masa.Blazor&version=0.7.0-alpha.851&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@5.x/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/BlazorComponent/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/BlazorComponent/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 (5)

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
CnGal/CnGalWebSite
CnGal是一个非营利性的,立志于收集整理国内制作组创作的中文Galgame/AVG的介绍、攻略、评测、感想等内容的资料性质的网站。
Version Downloads Last updated
1.8.0-rc.3 9 11/21/2024
1.8.0-rc.2 40 11/19/2024
1.8.0-rc.1 71 11/13/2024
1.7.8 347 11/1/2024
1.7.7 300 10/23/2024
1.7.6 116 10/22/2024
1.7.5 175 10/16/2024
1.7.4 318 9/26/2024
1.7.3 295 9/19/2024
1.7.2 253 9/9/2024
1.7.1 285 9/4/2024
1.7.0 250 9/2/2024
1.7.0-rc.3 63 8/28/2024
1.7.0-rc.2 60 8/26/2024
1.7.0-rc.1 87 8/19/2024
1.7.0-beta.5 141 8/12/2024
1.7.0-beta.4 68 8/9/2024
1.7.0-beta.3 70 7/26/2024
1.7.0-beta.2 53 7/24/2024
1.7.0-beta.1 718 7/19/2024
1.6.9 97 10/16/2024
1.6.8 498 8/9/2024
1.6.7 164 8/5/2024
1.6.6 460 7/18/2024
1.6.5 293 7/16/2024
1.6.4 253 7/12/2024
1.6.3 237 7/11/2024
1.6.2 266 7/10/2024
1.6.1 321 7/4/2024
1.6.0 1,057 7/2/2024
1.6.0-beta.7 61 7/1/2024
1.6.0-beta.6 75 6/27/2024
1.6.0-beta.5 78 6/26/2024
1.6.0-beta.4 85 6/17/2024
1.6.0-beta.3 63 6/13/2024
1.6.0-beta.2 145 5/31/2024
1.6.0-beta.1 66 5/31/2024
1.5.5 874 6/3/2024
1.5.4 143 6/3/2024
1.5.3 265 5/29/2024
1.5.2 444 5/21/2024
1.5.1 842 5/10/2024
1.5.0 694 5/7/2024
1.5.0-beta.3 77 5/6/2024
1.5.0-beta.2 68 4/29/2024
1.5.0-beta.1 227 4/25/2024
1.4.2 890 4/22/2024
1.4.1 247 4/17/2024
1.4.0 397 4/7/2024
1.4.0-beta.5 143 4/2/2024
1.4.0-beta.4 83 3/28/2024
1.4.0-beta.3 88 3/18/2024
1.4.0-beta.2 84 3/1/2024
1.4.0-beta.1 165 2/1/2024
1.3.4 2,769 1/26/2024
1.3.3 383 1/25/2024
1.3.2 1,128 1/9/2024
1.3.1 979 12/29/2023
1.3.0 523 12/28/2023
1.3.0-beta.7 95 12/27/2023
1.3.0-beta.6 286 12/26/2023
1.3.0-beta.5 157 12/22/2023
1.3.0-beta.4 104 12/18/2023
1.3.0-beta.3 201 12/5/2023
1.3.0-beta.2 154 11/29/2023
1.2.2 1,536 11/13/2023
1.2.1 327 11/10/2023
1.2.0 296 11/7/2023
1.1.1 1,059 10/23/2023
1.1.0 1,220 10/11/2023
1.0.4 2,439 9/7/2023
1.0.3 1,835 8/28/2023
1.0.2 3,229 8/18/2023
1.0.1 3,092 7/27/2023
1.0.0 3,379 7/17/2023
1.0.0-rc.6 517 7/6/2023
1.0.0-rc.5 352 6/29/2023
1.0.0-rc.4 859 6/15/2023
1.0.0-rc.3 457 6/2/2023
1.0.0-rc.2 3,089 5/15/2023
1.0.0-rc.1 1,773 4/27/2023
1.0.0-preview.19 130 4/27/2023
1.0.0-preview.18 347 4/26/2023
1.0.0-preview.17 2,092 4/23/2023
1.0.0-preview.16 344 4/19/2023
1.0.0-preview.15 638 4/14/2023
1.0.0-preview.14 367 4/12/2023
1.0.0-preview.13 227 4/10/2023
1.0.0-preview.12 823 4/3/2023
1.0.0-preview.11 1,066 3/27/2023
1.0.0-preview.10 788 3/22/2023
1.0.0-preview.9 442 3/18/2023
1.0.0-preview.8 841 3/10/2023
1.0.0-preview.7 529 3/3/2023
1.0.0-preview.6 673 2/28/2023
1.0.0-preview.5 165 2/28/2023
1.0.0-preview.4 454 2/21/2023
1.0.0-preview.3 805 2/13/2023
1.0.0-preview.2 2,113 2/3/2023
1.0.0-preview.1 279 1/17/2023
0.7.0-alpha.6179 84 9/18/2023
0.7.0-alpha.6178 88 9/18/2023
0.7.0-alpha.6177 90 9/18/2023
0.7.0-alpha.6119 106 9/13/2023
0.7.0-alpha.6118 97 9/13/2023
0.7.0-alpha.6107 104 9/13/2023
0.7.0-alpha.6096 93 9/12/2023
0.7.0-alpha.6095 94 9/12/2023
0.7.0-alpha.6094 98 9/12/2023
0.7.0-alpha.6041 112 9/8/2023
0.7.0-alpha.6040 106 9/8/2023
0.7.0-alpha.6025 97 9/7/2023
0.7.0-alpha.6021 101 9/7/2023
0.7.0-alpha.6012 86 9/7/2023
0.7.0-alpha.6011 95 9/7/2023
0.7.0-alpha.5956 98 9/4/2023
0.7.0-alpha.5926 91 9/1/2023
0.7.0-alpha.5897 101 8/30/2023
0.7.0-alpha.5872 94 8/29/2023
0.7.0-alpha.5870 96 8/29/2023
0.7.0-alpha.5857 91 8/28/2023
0.7.0-alpha.5847 92 8/28/2023
0.7.0-alpha.5731 91 8/22/2023
0.7.0-alpha.5699 83 8/18/2023
0.7.0-alpha.5682 77 8/18/2023
0.7.0-alpha.5681 78 8/18/2023
0.7.0-alpha.5650 90 8/16/2023
0.7.0-alpha.5644 101 8/15/2023
0.7.0-alpha.5642 95 8/15/2023
0.7.0-alpha.5641 100 8/15/2023
0.7.0-alpha.5620 97 8/14/2023
0.7.0-alpha.5619 99 8/14/2023
0.7.0-alpha.5618 99 8/14/2023
0.7.0-alpha.5617 96 8/14/2023
0.7.0-alpha.5611 99 8/11/2023
0.7.0-alpha.5609 104 8/11/2023
0.7.0-alpha.5608 102 8/11/2023
0.7.0-alpha.5607 110 8/11/2023
0.7.0-alpha.5606 101 8/11/2023
0.7.0-alpha.5581 94 8/9/2023
0.7.0-alpha.5492 103 8/3/2023
0.7.0-alpha.5482 94 8/3/2023
0.7.0-alpha.5435 104 8/1/2023
0.7.0-alpha.5372 86 7/27/2023
0.7.0-alpha.5365 91 7/26/2023
0.7.0-alpha.5363 96 7/26/2023
0.7.0-alpha.5362 97 7/26/2023
0.7.0-alpha.5344 110 7/25/2023
0.7.0-alpha.5321 106 7/24/2023
0.7.0-alpha.5320 111 7/24/2023
0.7.0-alpha.5319 123 7/24/2023
0.7.0-alpha.5292 110 7/20/2023
0.7.0-alpha.5236 113 7/17/2023
0.7.0-alpha.5160 108 7/13/2023
0.7.0-alpha.5142 103 7/12/2023
0.7.0-alpha.5139 108 7/12/2023
0.7.0-alpha.5124 110 7/11/2023
0.7.0-alpha.5070 79 7/7/2023
0.7.0-alpha.5061 100 7/7/2023
0.7.0-alpha.5056 99 7/6/2023
0.7.0-alpha.5049 96 7/6/2023
0.7.0-alpha.5013 103 7/5/2023
0.7.0-alpha.4994 104 7/4/2023
0.7.0-alpha.4992 102 7/4/2023
0.7.0-alpha.4991 99 7/4/2023
0.7.0-alpha.4963 99 7/3/2023
0.7.0-alpha.4962 101 7/3/2023
0.7.0-alpha.4959 108 7/3/2023
0.7.0-alpha.4926 102 6/30/2023
0.7.0-alpha.4919 98 6/30/2023
0.7.0-alpha.4883 91 6/27/2023
0.7.0-alpha.4882 81 6/27/2023
0.7.0-alpha.4881 89 6/27/2023
0.7.0-alpha.4847 91 6/25/2023
0.7.0-alpha.4804 88 6/20/2023
0.7.0-alpha.4802 96 6/20/2023
0.7.0-alpha.4798 91 6/20/2023
0.7.0-alpha.4797 101 6/20/2023
0.7.0-alpha.4796 98 6/20/2023
0.7.0-alpha.4790 90 6/19/2023
0.7.0-alpha.4736 93 6/16/2023
0.7.0-alpha.4709 92 6/15/2023
0.7.0-alpha.4695 89 6/15/2023
0.7.0-alpha.4639 94 6/12/2023
0.7.0-alpha.4569 96 6/9/2023
0.7.0-alpha.4527 105 6/8/2023
0.7.0-alpha.4503 94 6/7/2023
0.7.0-alpha.4502 96 6/7/2023
0.7.0-alpha.4442 90 6/5/2023
0.7.0-alpha.4441 97 6/5/2023
0.7.0-alpha.4391 93 6/1/2023
0.7.0-alpha.4390 89 6/1/2023
0.7.0-alpha.4389 96 6/1/2023
0.7.0-alpha.4366 102 5/31/2023
0.7.0-alpha.4365 97 5/31/2023
0.7.0-alpha.4363 90 5/31/2023
0.7.0-alpha.4332 91 5/29/2023
0.7.0-alpha.4331 92 5/29/2023
0.7.0-alpha.4329 88 5/26/2023
0.7.0-alpha.4310 105 5/26/2023
0.7.0-alpha.4303 86 5/26/2023
0.7.0-alpha.4262 92 5/24/2023
0.7.0-alpha.4261 97 5/24/2023
0.7.0-alpha.4260 92 5/24/2023
0.7.0-alpha.4158 116 5/19/2023
0.7.0-alpha.4156 108 5/19/2023
0.7.0-alpha.4117 109 5/15/2023
0.7.0-alpha.4108 109 5/15/2023
0.7.0-alpha.3987 101 5/5/2023
0.7.0-alpha.3986 97 5/5/2023
0.7.0-alpha.3965 133 5/4/2023
0.7.0-alpha.3932 110 4/28/2023
0.7.0-alpha.3930 100 4/28/2023
0.7.0-alpha.3929 117 4/28/2023
0.7.0-alpha.3923 107 4/28/2023
0.7.0-alpha.3917 111 4/27/2023
0.7.0-alpha.3915 110 4/27/2023
0.7.0-alpha.3914 107 4/27/2023
0.7.0-alpha.3896 114 4/27/2023
0.7.0-alpha.3895 107 4/27/2023
0.7.0-alpha.3889 126 4/27/2023
0.7.0-alpha.3880 115 4/26/2023
0.7.0-alpha.3875 108 4/26/2023
0.7.0-alpha.3869 105 4/26/2023
0.7.0-alpha.3865 109 4/26/2023
0.7.0-alpha.3852 110 4/26/2023
0.7.0-alpha.3850 118 4/26/2023
0.7.0-alpha.3848 118 4/26/2023
0.7.0-alpha.3841 114 4/26/2023
0.7.0-alpha.3830 129 4/25/2023
0.7.0-alpha.3800 123 4/24/2023
0.7.0-alpha.3767 118 4/23/2023
0.7.0-alpha.3766 119 4/23/2023
0.7.0-alpha.3763 123 4/23/2023
0.7.0-alpha.3757 103 4/21/2023
0.7.0-alpha.3756 117 4/21/2023
0.7.0-alpha.3736 125 4/21/2023
0.7.0-alpha.3734 124 4/21/2023
0.7.0-alpha.3723 128 4/20/2023
0.7.0-alpha.3719 130 4/20/2023
0.7.0-alpha.3690 126 4/19/2023
0.7.0-alpha.3682 138 4/19/2023
0.7.0-alpha.3672 112 4/19/2023
0.7.0-alpha.3671 114 4/19/2023
0.7.0-alpha.3668 114 4/19/2023
0.7.0-alpha.3666 128 4/19/2023
0.7.0-alpha.3575 128 4/14/2023
0.7.0-alpha.3574 136 4/14/2023
0.7.0-alpha.3570 129 4/14/2023
0.7.0-alpha.3569 125 4/14/2023
0.7.0-alpha.3558 124 4/14/2023
0.7.0-alpha.3531 130 4/13/2023
0.7.0-alpha.3522 130 4/13/2023
0.7.0-alpha.3477 135 4/12/2023
0.7.0-alpha.3462 129 4/12/2023
0.7.0-alpha.3460 146 4/12/2023
0.7.0-alpha.3434 136 4/12/2023
0.7.0-alpha.3429 124 4/11/2023
0.7.0-alpha.3415 144 4/11/2023
0.7.0-alpha.3398 125 4/10/2023
0.7.0-alpha.3382 128 4/10/2023
0.7.0-alpha.3380 144 4/10/2023
0.7.0-alpha.3379 136 4/10/2023
0.7.0-alpha.3376 152 4/10/2023
0.7.0-alpha.3373 141 4/10/2023
0.7.0-alpha.3372 144 4/10/2023
0.7.0-alpha.3370 142 4/10/2023
0.7.0-alpha.3348 138 4/7/2023
0.7.0-alpha.3339 163 4/7/2023
0.7.0-alpha.3330 130 4/6/2023
0.7.0-alpha.3329 118 4/6/2023
0.7.0-alpha.3317 123 4/6/2023
0.7.0-alpha.3313 148 4/6/2023
0.7.0-alpha.3310 133 4/6/2023
0.7.0-alpha.3308 154 4/6/2023
0.7.0-alpha.3304 149 4/6/2023
0.7.0-alpha.3292 133 4/5/2023
0.7.0-alpha.3281 160 4/4/2023
0.7.0-alpha.3278 127 4/4/2023
0.7.0-alpha.3236 123 4/3/2023
0.7.0-alpha.3235 150 4/3/2023
0.7.0-alpha.3230 134 4/3/2023
0.7.0-alpha.3228 138 4/3/2023
0.7.0-alpha.3227 132 4/3/2023
0.7.0-alpha.3226 157 4/3/2023
0.7.0-alpha.3222 150 4/1/2023
0.7.0-alpha.3219 135 3/31/2023
0.7.0-alpha.3217 151 3/31/2023
0.7.0-alpha.3214 152 3/31/2023
0.7.0-alpha.3207 160 3/31/2023
0.7.0-alpha.3204 164 3/31/2023
0.7.0-alpha.3186 138 3/31/2023
0.7.0-alpha.3164 136 3/30/2023
0.7.0-alpha.3152 126 3/30/2023
0.7.0-alpha.3129 147 3/29/2023
0.7.0-alpha.3127 148 3/29/2023
0.7.0-alpha.3124 154 3/29/2023
0.7.0-alpha.3112 139 3/29/2023
0.7.0-alpha.3074 148 3/28/2023
0.7.0-alpha.3073 149 3/28/2023
0.7.0-alpha.3064 167 3/28/2023
0.7.0-alpha.3062 159 3/28/2023
0.7.0-alpha.3060 157 3/27/2023
0.7.0-alpha.3057 148 3/27/2023
0.7.0-alpha.3055 174 3/27/2023
0.7.0-alpha.3047 167 3/27/2023
0.7.0-alpha.3042 171 3/27/2023
0.7.0-alpha.3041 148 3/27/2023
0.7.0-alpha.3037 145 3/27/2023
0.7.0-alpha.3036 145 3/27/2023
0.7.0-alpha.3034 156 3/27/2023
0.7.0-alpha.3032 149 3/27/2023
0.7.0-alpha.3031 138 3/27/2023
0.7.0-alpha.3004 152 3/24/2023
0.7.0-alpha.2994 159 3/23/2023
0.7.0-alpha.2986 163 3/23/2023
0.7.0-alpha.2978 189 3/23/2023
0.7.0-alpha.2916 147 3/21/2023
0.7.0-alpha.2907 135 3/21/2023
0.7.0-alpha.2871 152 3/20/2023
0.7.0-alpha.2847 180 3/18/2023
0.7.0-alpha.2836 166 3/17/2023
0.7.0-alpha.2801 148 3/17/2023
0.7.0-alpha.2799 135 3/16/2023
0.7.0-alpha.2798 135 3/16/2023
0.7.0-alpha.2797 127 3/16/2023
0.7.0-alpha.2795 124 3/16/2023
0.7.0-alpha.2787 122 3/16/2023
0.7.0-alpha.2769 135 3/16/2023
0.7.0-alpha.2741 138 3/15/2023
0.7.0-alpha.2733 148 3/14/2023
0.7.0-alpha.2712 128 3/14/2023
0.7.0-alpha.2711 124 3/14/2023
0.7.0-alpha.2705 132 3/14/2023
0.7.0-alpha.2699 126 3/13/2023
0.7.0-alpha.2698 123 3/13/2023
0.7.0-alpha.2697 139 3/13/2023
0.7.0-alpha.2695 127 3/13/2023
0.7.0-alpha.2680 127 3/10/2023
0.7.0-alpha.2650 128 3/10/2023
0.7.0-alpha.2648 124 3/10/2023
0.7.0-alpha.2641 125 3/9/2023
0.7.0-alpha.2640 134 3/9/2023
0.7.0-alpha.2635 140 3/9/2023
0.7.0-alpha.2634 143 3/9/2023
0.7.0-alpha.2629 135 3/9/2023
0.7.0-alpha.2617 132 3/8/2023
0.7.0-alpha.2616 130 3/8/2023
0.7.0-alpha.2614 133 3/8/2023
0.7.0-alpha.2602 118 3/7/2023
0.7.0-alpha.2590 118 3/7/2023
0.7.0-alpha.2589 134 3/7/2023
0.7.0-alpha.2588 133 3/7/2023
0.7.0-alpha.2533 144 3/3/2023
0.7.0-alpha.2529 146 3/3/2023
0.7.0-alpha.2528 138 3/3/2023
0.7.0-alpha.2454 143 2/28/2023
0.7.0-alpha.2445 166 2/28/2023
0.7.0-alpha.2439 136 2/28/2023
0.7.0-alpha.2435 140 2/28/2023
0.7.0-alpha.2429 146 2/28/2023
0.7.0-alpha.2390 144 2/26/2023
0.7.0-alpha.2360 146 2/24/2023
0.7.0-alpha.2296 147 2/22/2023
0.7.0-alpha.2205 132 2/16/2023
0.7.0-alpha.2192 133 2/15/2023
0.7.0-alpha.2157 151 2/14/2023
0.7.0-alpha.2149 136 2/14/2023
0.7.0-alpha.2062 144 2/13/2023
0.7.0-alpha.2058 142 2/13/2023
0.7.0-alpha.2025 138 2/10/2023
0.7.0-alpha.2007 133 2/9/2023
0.7.0-alpha.2005 135 2/8/2023
0.7.0-alpha.2002 161 2/8/2023
0.7.0-alpha.2001 149 2/8/2023
0.7.0-alpha.2000 137 2/8/2023
0.7.0-alpha.1999 141 2/8/2023
0.7.0-alpha.1998 143 2/8/2023
0.7.0-alpha.1971 149 2/5/2023
0.7.0-alpha.1964 150 2/3/2023
0.7.0-alpha.1961 153 2/3/2023
0.7.0-alpha.1960 145 2/3/2023
0.7.0-alpha.1958 141 2/3/2023
0.7.0-alpha.1957 136 2/3/2023
0.7.0-alpha.1956 143 2/3/2023
0.7.0-alpha.1954 149 2/3/2023
0.7.0-alpha.1945 163 2/2/2023
0.7.0-alpha.1944 168 2/2/2023
0.7.0-alpha.1911 160 1/30/2023
0.7.0-alpha.1904 159 1/29/2023
0.7.0-alpha.1903 167 1/29/2023
0.7.0-alpha.1902 177 1/29/2023
0.7.0-alpha.1899 165 1/29/2023
0.7.0-alpha.1897 161 1/20/2023
0.7.0-alpha.1893 152 1/17/2023
0.7.0-alpha.1891 149 1/17/2023
0.7.0-alpha.1882 154 1/17/2023
0.7.0-alpha.1879 144 1/17/2023
0.7.0-alpha.1865 196 1/16/2023
0.7.0-alpha.1864 156 1/16/2023
0.7.0-alpha.1860 167 1/16/2023
0.7.0-alpha.1856 220 1/15/2023
0.7.0-alpha.1846 194 1/15/2023
0.7.0-alpha.1844 218 1/15/2023
0.7.0-alpha.1840 171 1/15/2023
0.7.0-alpha.1827 155 1/14/2023
0.7.0-alpha.1826 166 1/14/2023
0.7.0-alpha.1804 471 1/14/2023
0.7.0-alpha.1798 173 1/13/2023
0.7.0-alpha.1797 135 1/13/2023
0.7.0-alpha.1794 231 1/13/2023
0.7.0-alpha.1787 151 1/13/2023
0.7.0-alpha.1777 145 1/13/2023
0.7.0-alpha.1761 253 1/12/2023
0.7.0-alpha.1744 160 1/11/2023
0.7.0-alpha.1733 208 1/11/2023
0.7.0-alpha.1726 359 1/11/2023
0.7.0-alpha.1725 197 1/11/2023
0.7.0-alpha.1717 170 1/11/2023
0.7.0-alpha.1712 201 1/11/2023
0.7.0-alpha.1709 175 1/11/2023
0.7.0-alpha.1699 163 1/11/2023
0.7.0-alpha.1697 167 1/11/2023
0.7.0-alpha.1696 162 1/10/2023
0.7.0-alpha.1661 198 1/10/2023
0.7.0-alpha.1655 168 1/9/2023
0.7.0-alpha.1634 174 1/9/2023
0.7.0-alpha.1632 174 1/9/2023
0.7.0-alpha.1611 208 1/6/2023
0.7.0-alpha.1559 313 1/5/2023
0.7.0-alpha.1549 189 1/4/2023
0.7.0-alpha.1544 193 1/4/2023
0.7.0-alpha.1541 246 1/4/2023
0.7.0-alpha.1513 183 1/3/2023
0.7.0-alpha.1512 190 1/3/2023
0.7.0-alpha.1511 177 1/3/2023
0.7.0-alpha.1500 177 1/3/2023
0.7.0-alpha.1409 1,156 12/27/2022
0.7.0-alpha.1406 144 12/27/2022
0.7.0-alpha.1402 150 12/27/2022
0.7.0-alpha.1400 147 12/26/2022
0.7.0-alpha.1399 150 12/26/2022
0.7.0-alpha.1397 158 12/26/2022
0.7.0-alpha.1154 241 12/14/2022
0.7.0-alpha.1122 154 12/12/2022
0.7.0-alpha.1114 156 12/12/2022
0.7.0-alpha.1096 165 12/8/2022
0.7.0-alpha.1044 302 12/6/2022
0.7.0-alpha.1036 150 12/6/2022
0.7.0-alpha.973 185 12/2/2022
0.7.0-alpha.972 156 12/2/2022
0.7.0-alpha.961 154 12/1/2022
0.7.0-alpha.937 190 11/30/2022
0.7.0-alpha.913 179 11/28/2022
0.7.0-alpha.900 163 11/25/2022
0.7.0-alpha.896 145 11/25/2022
0.7.0-alpha.888 148 11/24/2022
0.7.0-alpha.883 147 11/23/2022
0.7.0-alpha.882 157 11/23/2022
0.7.0-alpha.879 164 11/23/2022
0.7.0-alpha.873 167 11/22/2022
0.7.0-alpha.868 154 11/21/2022
0.7.0-alpha.864 142 11/21/2022
0.7.0-alpha.861 157 11/21/2022
0.7.0-alpha.858 153 11/21/2022
0.7.0-alpha.856 150 11/21/2022
0.7.0-alpha.855 166 11/21/2022
0.7.0-alpha.852 154 11/18/2022
0.7.0-alpha.851 152 11/18/2022
0.7.0-alpha.849 149 11/18/2022
0.7.0-alpha.842 146 11/17/2022
0.7.0-alpha.838 152 11/17/2022
0.7.0-alpha.835 156 11/17/2022
0.7.0-alpha.833 156 11/17/2022
0.7.0-alpha.832 161 11/17/2022
0.7.0-alpha.831 160 11/17/2022
0.7.0-alpha.829 154 11/16/2022
0.7.0-alpha.820 148 11/16/2022
0.7.0-alpha.812 166 11/16/2022
0.7.0-alpha.802 149 11/15/2022
0.7.0-alpha.800 151 11/15/2022
0.7.0-alpha.799 143 11/15/2022
0.7.0-alpha.798 144 11/15/2022
0.6.2 1,735 4/11/2023
0.6.1 149 4/11/2023
0.6.0 5,859 11/3/2022
0.6.0-rc.9 423 10/28/2022
0.6.0-rc.8 1,072 10/25/2022
0.6.0-rc.7 1,052 10/11/2022
0.6.0-rc.6 366 9/29/2022
0.6.0-rc.4 219 9/23/2022
0.6.0-rc.3 227 9/20/2022
0.6.0-rc.2 313 9/16/2022
0.6.0-preview.6 308 9/8/2022
0.6.0-preview.5 853 8/29/2022
0.6.0-preview.4 361 8/18/2022
0.6.0-preview.3 604 8/8/2022
0.6.0-preview.2 198 8/4/2022
0.6.0-preview.1 212 8/1/2022
0.5.0 5,494 7/29/2022
0.5.0-rc.7 186 7/28/2022
0.5.0-rc.6 399 7/19/2022
0.5.0-rc.5 283 7/13/2022
0.5.0-rc.4 173 7/12/2022
0.5.0-rc.3 202 7/11/2022
0.5.0-rc.2 244 7/8/2022
0.5.0-rc.1 171 7/7/2022
0.5.0-preview.5 409 6/30/2022
0.5.0-preview.4 217 6/27/2022
0.5.0-preview.3 503 6/21/2022
0.5.0-preview.2 284 6/14/2022
0.5.0-preview.1 215 6/10/2022
0.4.0 2,116 5/31/2022
0.4.0-rc.3 362 5/24/2022
0.4.0-rc.2 197 5/19/2022
0.4.0-rc.1 263 5/19/2022
0.4.0-preview.22 228 5/12/2022 0.4.0-preview.22 is deprecated because it is no longer maintained.
0.4.0-preview.21 196 5/12/2022 0.4.0-preview.21 is deprecated because it is no longer maintained.
0.4.0-preview.4 245 5/12/2022
0.4.0-preview.3 169 5/12/2022
0.4.0-preview.2 176 5/11/2022
0.4.0-preview.1 432 4/2/2022
0.3.11407 2,353 4/6/2022
0.3.0 3,108 2/25/2022
0.3.0-rc.28 202 1/25/2022
0.3.0-rc.26 180 1/24/2022
0.3.0-rc.24 189 1/24/2022
0.3.0-rc.23 190 1/24/2022
0.3.0-rc.22 195 1/24/2022
0.3.0-rc.21 203 1/24/2022
0.3.0-rc.20 187 1/23/2022
0.3.0-rc.19 185 1/22/2022
0.3.0-rc.17 177 1/22/2022
0.3.0-rc.16 195 1/21/2022
0.3.0-rc.14 182 1/21/2022
0.3.0-rc.13 193 1/21/2022
0.3.0-rc.12 191 1/21/2022
0.3.0-rc.11 178 1/21/2022
0.3.0-rc.10 190 1/21/2022
0.3.0-rc.9 183 1/20/2022
0.3.0-rc.8 188 1/17/2022
0.3.0-rc.7 180 1/17/2022
0.3.0-rc.6 193 1/14/2022
0.3.0-rc.5 187 1/13/2022
0.3.0-rc.3 190 12/30/2021
0.3.0-rc.2 223 12/28/2021
0.3.0-alpha.795 157 11/15/2022
0.3.0-alpha.793 152 11/15/2022
0.3.0-alpha.551 125 11/2/2022
0.3.0-alpha.550 126 11/2/2022
0.3.0-alpha.505 137 10/31/2022
0.3.0-alpha.481 129 10/31/2022
0.3.0-alpha.467 136 10/28/2022
0.3.0-alpha.456 155 10/27/2022
0.3.0-alpha.420 132 10/26/2022
0.3.0-alpha.415 144 10/25/2022
0.3.0-alpha.410 132 10/25/2022
0.3.0-alpha.407 128 10/25/2022
0.2.15401 953 9/26/2022
0.2.15400 930 9/26/2022
0.2.15352 946 9/23/2022
0.2.15312 944 9/21/2022
0.2.15296 941 9/20/2022
0.2.15295 969 9/20/2022
0.2.15288 952 9/20/2022
0.2.15286 955 9/20/2022
0.2.15281 932 9/20/2022
0.2.15275 953 9/19/2022
0.2.15273 936 9/19/2022
0.2.15257 980 9/19/2022
0.2.15241 963 9/16/2022
0.2.15240 913 9/16/2022
0.2.15237 955 9/16/2022
0.2.15232 981 9/16/2022
0.2.15231 980 9/16/2022
0.2.15230 947 9/16/2022
0.2.15229 938 9/16/2022
0.2.15210 1,044 9/15/2022
0.2.15196 1,031 9/14/2022
0.2.15184 937 9/13/2022
0.2.15140 946 9/8/2022
0.2.14958 941 8/30/2022
0.2.14948 990 8/29/2022
0.2.14946 965 8/29/2022
0.2.14940 977 8/29/2022
0.2.14939 975 8/29/2022
0.2.14934 960 8/29/2022
0.2.14837 970 8/19/2022
0.2.14822 986 8/18/2022
0.2.14816 940 8/18/2022
0.2.14805 980 8/18/2022
0.2.14781 960 8/17/2022
0.2.14746 958 8/16/2022
0.2.14734 955 8/16/2022
0.2.14541 979 8/11/2022
0.2.14496 952 8/10/2022
0.2.14421 959 8/8/2022
0.2.14363 970 8/5/2022
0.2.14323 1,004 8/3/2022
0.2.14262 957 8/3/2022
0.2.14189 990 8/1/2022
0.2.14171 1,009 8/1/2022
0.2.14169 1,020 8/1/2022
0.2.14163 1,006 7/29/2022
0.2.14072 976 7/27/2022
0.2.14007 976 7/22/2022
0.2.13863 1,011 7/18/2022
0.2.13821 978 7/15/2022
0.2.13819 1,007 7/15/2022
0.2.13795 1,017 7/14/2022
0.2.13777 1,003 7/14/2022
0.2.13776 995 7/14/2022
0.2.13741 972 7/12/2022
0.2.13740 985 7/12/2022
0.2.13724 1,001 7/11/2022
0.2.13717 1,012 7/11/2022
0.2.13705 981 7/8/2022
0.2.13703 991 7/8/2022
0.2.13687 1,025 7/8/2022
0.2.13675 1,016 7/8/2022
0.2.13672 984 7/7/2022
0.2.13665 984 7/7/2022
0.2.13627 981 7/6/2022
0.2.13626 1,009 7/6/2022
0.2.13620 1,006 7/6/2022
0.2.13594 984 7/5/2022
0.2.13593 981 7/5/2022
0.2.13573 1,000 7/5/2022
0.2.13564 989 7/4/2022
0.2.13561 986 7/4/2022
0.2.13560 1,019 7/4/2022
0.2.13555 1,012 7/4/2022
0.2.13549 1,016 7/4/2022
0.2.13491 1,011 6/30/2022
0.2.13488 1,015 6/30/2022
0.2.13487 1,000 6/30/2022
0.2.13486 982 6/30/2022
0.2.13482 1,013 6/30/2022
0.2.13481 1,000 6/30/2022
0.2.13480 1,002 6/30/2022
0.2.13479 990 6/30/2022
0.2.13476 997 6/30/2022
0.2.13474 985 6/30/2022
0.2.13472 1,002 6/30/2022
0.2.13471 975 6/30/2022
0.2.13470 1,015 6/30/2022
0.2.13469 1,024 6/30/2022
0.2.13461 995 6/30/2022
0.2.13458 993 6/30/2022
0.2.13453 1,005 6/30/2022
0.2.13449 987 6/29/2022
0.2.13447 1,017 6/29/2022
0.2.13438 979 6/29/2022
0.2.13417 966 6/29/2022
0.2.13414 999 6/29/2022
0.2.13413 999 6/28/2022
0.2.13404 995 6/28/2022
0.2.13399 1,010 6/28/2022
0.2.13398 1,023 6/28/2022
0.2.13387 983 6/27/2022
0.2.13382 1,017 6/27/2022
0.2.13377 1,011 6/27/2022
0.2.13356 1,025 6/24/2022
0.2.13330 1,033 6/24/2022
0.2.13310 1,019 6/23/2022
0.2.13294 1,011 6/23/2022
0.2.13291 1,016 6/23/2022
0.2.13290 995 6/23/2022
0.2.13286 1,026 6/23/2022
0.2.13214 1,001 6/21/2022
0.2.13211 1,023 6/21/2022
0.2.12942 976 6/14/2022
0.2.12901 988 6/10/2022
0.2.12871 1,028 6/8/2022
0.2.12848 1,030 6/7/2022
0.2.12846 1,009 6/6/2022
0.2.12794 1,036 6/1/2022
0.2.12793 1,050 6/1/2022
0.2.12694 1,032 5/30/2022
0.2.12507 1,032 5/19/2022
0.2.12495 1,054 5/18/2022
0.2.12494 1,031 5/18/2022
0.2.12492 1,049 5/18/2022
0.2.12478 1,034 5/18/2022
0.2.12476 1,009 5/18/2022
0.2.12468 1,057 5/17/2022
0.2.12453 1,035 5/17/2022
0.2.12452 1,021 5/17/2022
0.2.12450 1,047 5/17/2022
0.2.12437 1,050 5/17/2022
0.2.12435 1,048 5/17/2022
0.2.12433 1,030 5/17/2022
0.2.12431 1,016 5/17/2022
0.2.12407 1,034 5/16/2022
0.2.12395 1,043 5/16/2022
0.2.12340 1,036 5/13/2022
0.2.12339 1,050 5/13/2022
0.2.12324 1,039 5/12/2022
0.2.12323 1,008 5/12/2022
0.2.12309 1,029 5/11/2022
0.2.12277 1,065 5/10/2022
0.2.12265 1,330 5/10/2022
0.2.12261 996 5/10/2022
0.2.12240 1,346 5/9/2022
0.2.12238 1,043 5/9/2022
0.2.12237 1,052 5/9/2022
0.2.12228 1,059 5/9/2022
0.2.12227 1,026 5/9/2022
0.2.12173 1,042 5/7/2022
0.2.12129 1,017 5/6/2022
0.2.12121 1,382 5/6/2022
0.2.12120 1,020 5/6/2022
0.2.12057 1,043 4/29/2022
0.2.12051 1,038 4/28/2022
0.2.12050 1,083 4/28/2022
0.2.12019 1,036 4/28/2022
0.2.12018 1,040 4/28/2022
0.2.12017 1,039 4/28/2022
0.2.12016 2,081 4/28/2022
0.2.12005 2,161 4/27/2022
0.2.11993 2,145 4/27/2022
0.2.11989 2,094 4/27/2022
0.2.11975 2,105 4/27/2022
0.2.11974 2,161 4/27/2022
0.2.11962 2,132 4/26/2022
0.2.11934 2,119 4/26/2022
0.2.11933 2,119 4/26/2022
0.2.11923 2,089 4/25/2022
0.2.11907 1,947 4/25/2022
0.2.11906 1,986 4/25/2022
0.2.11903 1,983 4/25/2022
0.2.11902 1,958 4/25/2022
0.2.11869 1,971 4/24/2022
0.2.11852 1,888 4/22/2022
0.2.11799 1,973 4/21/2022
0.2.11763 1,939 4/19/2022
0.2.11740 1,929 4/19/2022
0.2.11701 1,971 4/18/2022
0.2.11698 1,977 4/18/2022
0.2.11681 1,990 4/16/2022
0.2.11568 1,946 4/14/2022
0.2.11507 2,052 4/12/2022
0.2.11501 1,974 4/12/2022
0.2.11476 1,952 4/11/2022
0.2.11472 1,970 4/10/2022
0.2.11396 1,935 4/6/2022
0.2.11395 1,925 4/6/2022
0.2.11364 1,930 4/2/2022
0.2.11356 1,962 4/1/2022
0.2.11355 1,944 4/1/2022
0.2.11354 1,925 4/1/2022
0.2.11350 1,933 4/1/2022
0.2.11329 1,988 4/1/2022
0.2.11327 1,961 4/1/2022
0.2.11326 1,978 4/1/2022
0.2.11323 1,906 4/1/2022
0.2.11320 1,933 3/31/2022
0.2.11319 1,949 3/31/2022
0.2.11281 1,957 3/31/2022
0.2.11268 1,953 3/30/2022
0.2.11267 1,975 3/30/2022
0.2.11259 1,991 3/30/2022
0.2.11257 1,888 3/30/2022
0.2.11211 1,844 3/29/2022
0.2.11205 1,918 3/29/2022
0.2.11202 1,962 3/29/2022
0.2.11197 1,929 3/28/2022
0.2.11195 1,902 3/28/2022
0.2.11194 1,917 3/28/2022
0.2.11190 1,891 3/28/2022
0.2.11174 1,926 3/28/2022
0.2.11170 1,895 3/28/2022
0.2.11169 1,880 3/28/2022
0.2.11123 1,869 3/23/2022
0.2.11120 1,874 3/23/2022
0.2.11092 1,897 3/23/2022
0.2.11091 1,875 3/23/2022
0.2.11090 1,930 3/23/2022
0.2.11087 1,908 3/23/2022
0.2.11059 1,928 3/22/2022
0.2.11057 1,919 3/22/2022
0.2.10900 1,954 3/7/2022
0.2.10893 1,962 3/7/2022
0.2.10846 1,886 3/3/2022
0.2.10844 1,858 3/3/2022
0.2.10829 1,996 3/3/2022
0.2.10739 1,945 2/28/2022
0.2.10649 6,473 2/24/2022
0.2.10628 1,928 2/23/2022
0.2.10602 1,751 2/23/2022
0.2.10600 1,807 2/23/2022
0.2.10574 1,757 2/23/2022
0.2.10494 1,769 2/22/2022
0.2.10426 1,744 2/18/2022
0.2.10424 1,769 2/18/2022
0.2.10395 1,716 2/17/2022
0.2.10377 1,740 2/16/2022
0.2.10375 1,819 2/16/2022
0.2.10367 1,753 2/16/2022
0.2.10365 1,810 2/16/2022
0.2.10349 1,843 2/15/2022
0.2.10329 1,798 2/15/2022
0.2.10323 1,699 2/14/2022
0.2.10321 1,756 2/14/2022
0.2.10317 1,765 2/14/2022
0.2.10312 1,800 2/14/2022
0.2.10303 1,918 2/14/2022
0.2.10288 1,776 2/11/2022
0.2.10287 1,775 2/11/2022
0.2.10286 1,695 2/11/2022
0.2.10285 1,777 2/11/2022
0.2.10283 1,744 2/11/2022
0.2.10277 1,882 2/9/2022
0.2.10275 1,763 2/9/2022
0.2.10273 1,852 2/9/2022
0.2.10268 1,850 2/9/2022
0.2.10261 1,818 2/9/2022
0.2.10256 1,871 2/9/2022
0.2.10254 1,805 2/9/2022
0.2.10245 1,829 1/31/2022
0.2.10244 1,839 1/31/2022
0.2.10243 1,851 1/31/2022
0.2.10240 1,871 1/25/2022
0.2.10232 1,756 1/24/2022
0.2.10220 1,798 1/24/2022
0.2.10217 4,424 1/24/2022
0.2.10212 1,808 1/24/2022
0.2.10210 1,777 1/24/2022
0.2.10208 1,754 1/24/2022
0.2.10206 1,739 1/24/2022
0.2.10204 1,806 1/24/2022
0.2.10194 1,774 1/22/2022
0.2.10192 1,802 1/22/2022
0.2.10190 1,797 1/22/2022
0.2.10172 1,794 1/22/2022
0.2.10118 1,780 1/21/2022
0.2.10097 1,782 1/20/2022
0.2.10091 1,749 1/20/2022
0.2.10073 1,772 1/19/2022
0.2.10068 1,828 1/19/2022
0.2.10064 1,773 1/19/2022
0.2.10061 1,784 1/19/2022
0.2.10057 1,867 1/19/2022
0.2.10039 1,779 1/19/2022
0.2.10037 1,801 1/19/2022
0.2.10022 1,795 1/18/2022
0.2.10021 1,796 1/18/2022
0.2.10020 1,802 1/18/2022
0.2.10018 1,783 1/18/2022
0.2.10005 1,925 1/18/2022
0.2.10002 1,851 1/18/2022
0.2.9994 1,805 1/18/2022
0.2.9992 1,836 1/18/2022
0.2.9985 1,850 1/18/2022
0.2.9982 1,860 1/18/2022
0.2.9981 1,859 1/17/2022
0.2.9977 1,745 1/17/2022
0.2.9973 1,800 1/17/2022
0.2.9971 1,809 1/17/2022
0.2.9961 1,780 1/17/2022
0.2.9959 1,805 1/17/2022
0.2.9956 1,753 1/17/2022
0.2.9952 1,820 1/17/2022
0.2.9950 1,813 1/17/2022
0.2.9943 1,753 1/17/2022
0.2.9941 1,779 1/17/2022
0.2.9940 1,837 1/17/2022
0.2.9934 1,778 1/17/2022
0.2.9932 1,791 1/17/2022
0.2.9929 1,866 1/17/2022
0.2.9899 1,814 1/14/2022
0.2.9889 1,824 1/13/2022
0.2.9886 1,838 1/13/2022
0.2.9856 1,874 1/13/2022
0.2.9854 1,835 1/13/2022
0.2.9835 1,854 1/12/2022
0.2.9801 1,867 1/11/2022
0.2.9798 1,798 1/11/2022
0.2.9797 1,529 1/10/2022
0.2.9794 1,536 1/10/2022
0.2.9782 1,550 1/10/2022
0.2.9775 1,523 1/10/2022
0.2.9771 1,485 1/10/2022
0.2.9736 1,588 1/7/2022
0.2.9735 1,609 1/7/2022
0.2.9679 1,562 1/6/2022
0.2.9664 1,645 1/6/2022
0.2.9642 1,546 1/5/2022
0.2.9627 1,510 1/5/2022
0.2.9623 1,610 1/5/2022
0.2.9617 1,521 1/5/2022
0.2.9606 1,532 1/4/2022
0.2.9599 1,554 1/4/2022
0.2.9595 1,521 1/4/2022
0.2.9578 1,476 1/4/2022
0.2.9566 1,612 1/4/2022
0.2.9545 1,547 12/31/2021
0.2.9533 1,504 12/31/2021
0.2.9525 1,479 12/31/2021
0.2.9513 1,506 12/31/2021
0.2.9476 1,741 12/30/2021
0.2.9442 1,577 12/29/2021
0.2.9441 1,495 12/29/2021
0.2.9411 1,486 12/29/2021
0.2.9386 1,522 12/29/2021
0.2.9384 1,514 12/29/2021
0.2.9382 1,512 12/29/2021
0.2.9381 1,561 12/29/2021
0.2.9377 1,540 12/28/2021
0.2.9374 1,525 12/28/2021
0.2.9370 1,554 12/28/2021
0.2.9369 1,490 12/28/2021
0.2.9367 1,518 12/28/2021
0.2.9351 1,524 12/28/2021
0.2.9347 1,487 12/28/2021
0.2.9346 1,509 12/28/2021
0.2.9337 1,542 12/28/2021
0.2.9331 1,545 12/28/2021
0.2.9323 1,528 12/27/2021
0.2.9322 1,559 12/27/2021
0.2.9320 1,666 12/27/2021
0.2.9319 1,582 12/27/2021
0.2.9318 1,585 12/27/2021
0.2.9312 1,612 12/27/2021
0.2.9308 1,628 12/27/2021
0.2.9295 1,585 12/27/2021
0.2.9291 1,569 12/27/2021
0.2.9283 1,565 12/27/2021
0.2.9282 1,605 12/27/2021
0.2.9228 1,533 12/24/2021
0.2.9225 1,519 12/23/2021
0.2.9221 1,552 12/23/2021
0.2.9217 1,614 12/23/2021
0.2.9216 1,530 12/23/2021
0.2.9202 1,567 12/23/2021
0.2.9198 1,549 12/23/2021
0.2.9197 1,520 12/23/2021
0.2.9187 1,603 12/23/2021
0.2.9182 1,523 12/22/2021
0.2.9180 1,499 12/22/2021
0.2.9163 1,582 12/22/2021
0.2.9155 1,542 12/22/2021
0.2.9154 1,510 12/22/2021
0.2.9140 1,571 12/21/2021
0.2.9116 1,541 12/21/2021
0.2.9098 1,560 12/20/2021
0.2.9095 1,575 12/17/2021
0.2.9094 1,549 12/17/2021
0.2.9086 1,455 12/17/2021
0.2.9083 1,505 12/17/2021
0.2.9079 1,513 12/17/2021
0.2.9075 1,526 12/17/2021
0.2.9061 1,586 12/16/2021
0.2.9049 1,479 12/16/2021
0.2.9046 1,508 12/16/2021
0.2.9036 1,598 12/15/2021
0.2.9035 1,554 12/15/2021
0.2.9034 1,515 12/15/2021
0.2.9016 1,536 12/14/2021
0.2.9009 1,515 12/14/2021
0.2.9006 1,558 12/14/2021
0.2.8987 1,606 12/13/2021
0.2.8984 1,548 12/13/2021
0.2.8980 1,811 12/13/2021
0.2.8977 1,634 12/12/2021
0.2.8965 1,603 12/10/2021
0.2.8964 1,535 12/10/2021
0.2.8963 1,269 12/10/2021
0.2.8962 1,568 12/10/2021
0.2.8961 1,521 12/10/2021
0.2.8960 1,572 12/10/2021
0.2.8959 1,594 12/10/2021
0.2.8958 1,557 12/10/2021
0.2.8952 1,574 12/10/2021
0.2.8864 1,582 12/9/2021
0.2.8809 1,612 12/7/2021
0.2.8768 1,555 12/7/2021
0.2.8764 1,576 12/7/2021
0.2.8762 1,566 12/7/2021
0.2.8760 1,533 12/7/2021
0.2.8759 1,563 12/7/2021
0.2.8633 1,982 12/3/2021
0.2.8603 1,518 12/3/2021
0.2.8567 1,485 12/2/2021
0.2.8566 1,557 12/2/2021
0.2.8553 1,545 12/2/2021
0.2.8542 1,568 12/2/2021
0.2.8538 1,515 12/2/2021
0.2.8495 1,524 12/1/2021
0.2.8494 1,540 12/1/2021
0.2.8470 1,599 12/1/2021
0.2.8390 1,244 11/30/2021
0.2.8383 1,272 11/30/2021
0.2.8187 2,458 11/26/2021
0.2.8146 3,550 11/26/2021
0.2.8145 2,525 11/26/2021
0.2.8139 2,745 11/25/2021
0.2.8120 3,959 11/25/2021
0.2.8118 5,311 11/24/2021
0.2.8096 5,013 11/24/2021
0.2.8078 280 11/23/2021
0.2.8071 256 11/23/2021
0.2.8069 275 11/23/2021
0.2.8065 267 11/23/2021
0.2.8046 287 11/23/2021
0.2.8044 261 11/23/2021
0.2.8036 296 11/22/2021
0.2.8033 271 11/22/2021
0.2.8032 265 11/22/2021
0.2.8031 273 11/22/2021
0.2.8029 280 11/22/2021
0.2.8028 261 11/22/2021
0.2.8024 262 11/22/2021
0.2.8022 275 11/22/2021
0.2.8020 280 11/22/2021
0.2.8019 283 11/22/2021
0.2.8018 299 11/22/2021
0.2.8017 330 11/22/2021
0.2.8016 377 11/22/2021
0.2.8015 389 11/22/2021
0.2.8012 416 11/22/2021
0.2.8006 305 11/19/2021
0.2.8004 310 11/19/2021
0.2.8002 293 11/19/2021
0.2.7996 336 11/19/2021
0.2.7992 345 11/19/2021
0.2.7990 279 11/19/2021
0.2.7988 323 11/19/2021
0.2.7974 326 11/19/2021
0.2.7972 278 11/19/2021
0.2.7968 301 11/18/2021
0.2.7937 338 11/18/2021
0.2.7933 278 11/18/2021
0.2.7931 289 11/18/2021
0.2.7923 299 11/17/2021
0.2.7915 308 11/17/2021
0.2.7912 285 11/17/2021
0.2.7901 323 11/17/2021
0.2.7882 317 11/16/2021
0.2.7876 300 11/16/2021
0.2.7869 344 11/16/2021
0.2.7861 315 11/15/2021
0.2.7853 292 11/15/2021
0.2.7843 313 11/15/2021
0.2.7821 289 11/12/2021
0.2.7811 307 11/12/2021
0.2.7808 308 11/12/2021
0.2.7803 288 11/12/2021
0.2.7802 289 11/12/2021
0.2.7801 287 11/12/2021
0.2.7800 293 11/12/2021
0.2.7789 281 11/11/2021
0.2.7751 245 11/9/2021
0.2.7730 269 11/9/2021
0.2.7727 274 11/9/2021
0.2.7689 218 11/8/2021
0.2.7667 278 11/5/2021
0.2.7641 276 11/4/2021
0.2.7625 237 11/3/2021
0.2.7583 261 11/2/2021
0.2.7580 219 11/1/2021
0.2.7541 260 10/29/2021
0.2.7415 276 10/25/2021
0.2.7399 227 10/22/2021
0.2.7394 243 10/22/2021
0.2.7391 282 10/22/2021
0.2.7369 261 10/20/2021
0.2.7339 258 10/20/2021
0.2.7336 254 10/20/2021
0.2.7332 232 10/20/2021
0.2.7319 229 10/19/2021
0.2.7317 238 10/19/2021
0.2.7316 231 10/19/2021
0.2.7307 223 10/19/2021
0.2.7304 210 10/19/2021
0.2.7302 221 10/18/2021
0.2.7292 261 10/18/2021
0.2.7219 244 10/12/2021
0.2.7197 256 10/11/2021
0.2.7194 255 10/11/2021
0.2.7192 307 10/11/2021
0.2.7183 260 10/9/2021
0.2.7161 266 10/9/2021
0.2.7158 280 10/9/2021
0.2.7157 302 10/9/2021
0.2.7149 258 10/8/2021
0.2.7134 221 10/8/2021
0.2.7121 218 9/30/2021
0.2.7110 239 9/30/2021
0.2.7054 269 9/28/2021
0.2.6901 235 9/26/2021
0.2.6894 239 9/26/2021
0.2.6887 260 9/26/2021
0.2.6884 303 9/26/2021
0.2.6883 328 9/26/2021
0.2.6847 247 9/22/2021
0.2.6662 238 9/18/2021
0.2.6661 239 9/18/2021
0.2.6577 241 9/17/2021
0.2.6573 242 9/17/2021
0.2.6572 254 9/17/2021
0.2.6561 8,861 9/16/2021
0.2.6552 246 9/17/2021
0.2.6547 231 9/17/2021
0.2.6544 230 9/17/2021
0.2.5758 246 9/6/2021
0.2.5757 225 9/6/2021
0.2.5756 220 9/6/2021
0.2.5410 460 8/26/2021
0.2.5408 443 8/26/2021
0.2.5395 229 8/26/2021
0.2.5394 226 8/26/2021
0.2.5393 226 8/25/2021
0.2.5117 294 8/21/2021
0.2.5116 227 8/21/2021
0.2.5115 214 8/21/2021
0.2.4935 1,516 8/18/2021
0.2.4635 259 8/12/2021
0.2.4574 245 8/12/2021
0.2.4523 276 8/11/2021
0.2.4517 246 8/11/2021
0.2.4505 225 8/11/2021
0.2.4503 223 8/11/2021
0.2.4489 236 8/11/2021
0.2.4482 236 8/11/2021
0.2.4476 231 8/11/2021
0.2.4475 234 8/11/2021
0.2.4458 1,632 8/10/2021
0.2.4447 235 8/10/2021
0.2.4426 266 8/10/2021
0.2.4425 251 8/10/2021
0.2.4424 249 8/10/2021
0.2.4312 262 8/9/2021
0.2.4275 251 8/6/2021
0.2.4271 254 8/6/2021
0.2.4259 292 8/6/2021
0.2.4253 286 8/6/2021
0.2.4201 258 8/5/2021
0.2.4161 263 8/5/2021
0.2.4158 269 8/5/2021
0.2.4151 249 8/5/2021
0.2.4064 270 8/3/2021
0.2.4023 241 8/2/2021
0.2.4009 234 8/2/2021
0.2.4008 236 8/2/2021
0.2.4004 236 8/2/2021
0.2.3964 6,600 8/2/2021
0.2.3958 242 8/2/2021
0.2.3954 246 8/2/2021
0.2.3885 335 7/31/2021
0.2.3880 263 7/31/2021
0.2.3850 317 7/31/2021
0.2.3838 344 7/31/2021
0.2.3832 346 7/31/2021
0.2.3829 352 7/31/2021
0.2.3782 276 7/30/2021
0.2.3768 280 7/30/2021
0.2.3760 286 7/30/2021
0.2.3752 253 7/30/2021
0.2.3750 257 7/29/2021
0.2.3734 263 7/29/2021
0.2.3717 437 7/29/2021
0.2.3716 256 7/29/2021
0.2.3710 258 7/29/2021
0.2.397 870 10/25/2022
0.2.396 874 10/24/2022
0.2.395 851 10/24/2022
0.2.392 878 10/24/2022
0.2.385 858 10/21/2022
0.2.373 883 10/21/2022
0.2.368 933 10/20/2022
0.2.357 891 10/20/2022
0.2.345 895 10/19/2022
0.2.317 864 10/18/2022
0.2.316 890 10/18/2022
0.2.315 901 10/18/2022
0.2.313 875 10/18/2022
0.2.312 902 10/18/2022
0.2.311 892 10/18/2022
0.2.299 874 10/17/2022
0.2.297 916 10/17/2022
0.2.296 919 10/17/2022
0.2.295 886 10/17/2022
0.2.288 884 10/17/2022
0.2.259 907 10/13/2022
0.2.258 944 10/13/2022
0.2.194 922 10/11/2022
0.2.175 157 10/11/2022
0.2.173 908 10/10/2022
0.2.169 910 10/10/2022
0.2.155 962 10/10/2022
0.2.60 1,857 3/22/2022
0.2.59 1,909 3/22/2022
0.2.58 1,834 3/22/2022
0.2.57 1,854 3/21/2022
0.2.56 1,934 3/18/2022
0.2.55 1,911 3/18/2022
0.2.53 1,893 3/18/2022
0.2.52 1,922 3/18/2022
0.2.50 1,929 3/18/2022
0.2.49 1,864 3/17/2022
0.2.48 1,888 3/17/2022
0.2.47 1,929 3/17/2022
0.2.44 1,969 3/17/2022
0.2.43 1,883 3/16/2022
0.2.42 1,883 3/16/2022
0.2.41 1,903 3/11/2022
0.2.40 1,199 3/11/2022
0.2.39 1,204 3/10/2022
0.2.38 1,935 3/10/2022
0.2.37 1,176 3/10/2022
0.2.36 1,201 3/9/2022
0.2.35 1,208 3/9/2022
0.2.31 1,250 3/9/2022
0.2.30 1,189 3/8/2022
0.2.29 1,962 3/8/2022
0.2.27 1,963 3/8/2022
0.2.25 1,868 3/8/2022
0.2.20 1,860 3/7/2022
0.2.17 1,956 3/7/2022
0.2.14 1,903 3/3/2022
0.2.11 1,790 2/16/2022
0.2.10 1,761 2/12/2022
0.2.7 1,913 2/16/2022
0.2.3 1,840 2/14/2022
0.2.1 1,785 2/12/2022
0.1.0.3681 304 7/29/2021
0.1.0.3642 329 7/28/2021
0.1.0.3513 262 7/26/2021
0.1.0.3323 284 7/21/2021
0.1.0.3246 618 7/20/2021
0.1.0.3169 241 7/19/2021
0.1.0.3037 274 7/16/2021
0.1.0.3036 278 7/16/2021
0.1.0.3035 311 7/16/2021
0.1.0.3034 316 7/16/2021
0.1.0.3030 238 7/16/2021
0.1.0.2852 260 7/9/2021
0.1.0.2849 252 7/9/2021
0.1.0.345 451 7/9/2021