PdfPig 0.1.2-alpha002

This is a prerelease version of PdfPig.
There is a newer version of this package available.
See the version list below for details.
dotnet add package PdfPig --version 0.1.2-alpha002
                    
NuGet\Install-Package PdfPig -Version 0.1.2-alpha002
                    
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="PdfPig" Version="0.1.2-alpha002" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="PdfPig" Version="0.1.2-alpha002" />
                    
Directory.Packages.props
<PackageReference Include="PdfPig" />
                    
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 PdfPig --version 0.1.2-alpha002
                    
#r "nuget: PdfPig, 0.1.2-alpha002"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=PdfPig&version=0.1.2-alpha002&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=PdfPig&version=0.1.2-alpha002&prerelease
                    
Install as a Cake Tool

PdfPig

This project allows users to read and extract text and other content from PDF files. In addition the library can be used to create simple PDF documents containing text and geometrical shapes.

This project aims to port PDFBox to C#.

Get Started

The simplest usage at this stage is to open a document, reading the words from every page:

using (PdfDocument document = PdfDocument.Open(@"C:\Documents\document.pdf"))
{
    for (var i = 0; i < document.NumberOfPages; i++)
    {
        // This starts at 1 rather than 0.
        var page = document.GetPage(i + 1);

        foreach (var word in page.GetWords())
        {
            Console.WriteLine(word.Text);
        }
    }
}

New in v0.0.5 - To create documents use the class PdfDocumentBuilder. Though they are deprecated within the PDF specification the Standard 14 fonts provide a quick way to get started:

PdfDocumentBuilder builder = new PdfDocumentBuilder();

PdfPageBuilder page = builder.AddPage(PageSize.A4);

// Fonts must be registered with the document builder prior to use to prevent duplication.
PdfDocumentBuilder.AddedFont font = builder.AddStandard14Font(Standard14Font.Helvetica);

page.AddText("Hello World!", 12, new PdfPoint(25, 520), font);

byte[] documentBytes = builder.Build();

File.WriteAllBytes(@"C:\git\newPdf.pdf");

Each font must be registered with the PdfDocumentBuilder prior to use enable pages to share the font resources. Currently only Standard 14 fonts and TrueType fonts (.ttf) are supported.

Usage

The PdfDocument class provides access to the contents of a document loaded either from file or passed in as bytes. To open from a file use the PdfDocument.Open static method:

using UglyToad.PdfPig;
using UglyToad.PdfPig.Content;

using (PdfDocument document = PdfDocument.Open(@"C:\my-file.pdf"))
{
    int pageCount = document.NumberOfPages;

    Page page = document.GetPage(1);

    decimal widthInPoints = page.Width;
    decimal heightInPoints = page.Height;

    string text = page.Text;
}

The document contains the version of the PDF specification it complies with, accessed by document.Version:

decimal version = document.Version;

Document Creation

New in v0.0.5 - The PdfDocumentBuilder creates a new document with no pages or content. First, for text content, a font must be registered with the builder. Currently this supports Standard 14 fonts provided by Adobe by default and TrueType format fonts.

To add a Standard 14 font use:

public AddedFont AddStandard14Font(Standard14Font type)

Or for a TrueType font use:

AddedFont AddTrueTypeFont(IReadOnlyList<byte> fontFileBytes)

Passing in the bytes of a TrueType file (.ttf). You can check the suitability of a TrueType file for embedding in a PDF document using:

bool CanUseTrueTypeFont(IReadOnlyList<byte> fontFileBytes, out IReadOnlyList<string> reasons)

Which provides a list of reasons why the font cannot be used if the check fails. You should check the license for a TrueType font prior to use, since the compressed font file is embedded in, and distributed with, the resultant document.

The AddedFont class represents a key to the font stored on the document builder. This must be provided when adding text content to pages. To add a page to a document use:

PdfPageBuilder AddPage(PageSize size, bool isPortrait = true)

This creates a new PdfPageBuilder with the specified size. The first added page is page number 1, then 2, then 3, etc. The page builder supports adding text, drawing lines and rectangles and measuring the size of text prior to drawing.

To draw lines and rectangles use the methods:

void DrawLine(PdfPoint from, PdfPoint to, decimal lineWidth = 1)
void DrawRectangle(PdfPoint position, decimal width, decimal height, decimal lineWidth = 1)

The line width can be varied and defaults to 1. Rectangles are unfilled and the fill color cannot be changed at present.

To write text to the page you must have a reference to an AddedFont from the methods on PdfDocumentBuilder as described above. You can then draw the text to the page using:

IReadOnlyList<Letter> AddText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Where position is the baseline of the text to draw. Currently only ASCII text is supported. You can also measure the resulting size of text prior to drawing using the method:

IReadOnlyList<Letter> MeasureText(string text, decimal fontSize, PdfPoint position, PdfDocumentBuilder.AddedFont font)

Which does not change the state of the page, unlike AddText.

Changing the RGB color of text, lines and rectangles is supported using:

void SetStrokeColor(byte r, byte g, byte b)
void SetTextAndFillColor(byte r, byte g, byte b)

Which take RGB values between 0 and 255. The color will remain active for all operations called after these methods until reset is called using:

void ResetColor()

Which resets the color for stroke, fill and text drawing to black.

Document Information

The PdfDocument provides access to the document metadata as DocumentInformation defined in the PDF file. These tend not to be provided therefore most of these entries will be null:

PdfDocument document = PdfDocument.Open(fileName);

// The name of the program used to convert this document to PDF.
string producer = document.Information.Producer;

// The title given to the document
string title = document.Information.Title;
// etc...

Document Structure

New in 0.0.3 the document now has a Structure member:

UglyToad.PdfPig.Structure structure = document.Structure;

This provides access to tokenized PDF document content:

Catalog catalog = structure.Catalog;
DictionaryToken pagesDictionary = catalog.PagesDictionary;

Page

The Page contains the page width and height in points as well as mapping to the PageSize enum:

PageSize size = Page.Size;

bool isA4 = size == PageSize.A4;

Page provides access to the text of the page:

string text = page.Text;

There is a new (0.0.3) method which provides access to the words. This uses basic heuristics and is not reliable or well-tested:

IEnumerable<Word> words = page.GetWords();

You can also (0.0.6) access the raw operations used in the page's content stream for drawing graphics and content on the page:

IReadOnlyList<IGraphicsStateOperation> operations = page.Operations;

There is also an early access (0.0.3) API for retrieving the raw bytes of PDF image objects per page:

IEnumerable<XObjectImage> images = page.ExperimentalAccess.GetRawImages();

This API will be changed in future releases.

Letter

Due to the way a PDF is structured internally the page text may not be a readable representation of the text as it appears in the document. Since PDF is a presentation format, text can be drawn in any order, not necessarily reading order. This means spaces may be missing or words may be in unexpected positions in the text.

To help users resolve actual text order on the page, the Page file provides access to a list of the letters:

IReadOnlyList<Letter> letters = page.Letters;

Credit

This project wouldn't be possible without the work done by the PDFBox team and the Apache Foundation.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net45 is compatible.  net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 is compatible.  net463 was computed.  net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (66)

Showing the top 5 NuGet packages that depend on PdfPig:

Package Downloads
Microsoft.KernelMemory.Core

The package contains the core logic and abstractions of Kernel Memory, not including extensions.

OrchardCore.Application.Cms.Core.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with TheAdmin theme but without any front-end Themes.

Tabula

Extract tables from PDF files (port of tabula-java using PdfPig).

OrchardCore.Application.Cms.Targets

Orchard Core CMS is a Web Content Management System (CMS) built on top of the Orchard Core Framework. Converts the application into a modular OrchardCore CMS application with following themes. - TheAdmin Theme - SafeMode Theme - TheAgency Theme - TheBlog Theme - TheComingSoon Theme - TheTheme theme

FileCurator

FileCurator is a simple manager for your files. It tries to give them a common interface to deal with files whether on your system or other locations.

GitHub repositories (23)

Showing the top 20 popular GitHub repositories that depend on PdfPig:

Repository Stars
microsoft/semantic-kernel
Integrate cutting-edge LLM technology quickly and easily into your apps
OrchardCMS/OrchardCore
Orchard Core is an open-source modular and multi-tenant application framework built with ASP.NET Core, and a content management system (CMS) built on top of that framework.
dotnet/docfx
Static site generator for .NET API documentation.
SciSharp/BotSharp
AI Multi-Agent Framework in .NET
microsoft/kernel-memory
RAG architecture: index and query any data using LLM and natural language, track sources, show citations, asynchronous memory patterns.
microsoft/ai-dev-gallery
An open-source project for Windows developers to learn how to add AI with local models and APIs to Windows apps.
tryAGI/LangChain
C# implementation of LangChain. We try to be as close to the original as possible in terms of abstractions, but are open to new entities.
getcellm/cellm
Use LLMs in Excel formulas
dotnet/ai-samples
revenz/FileFlows
FileFlows is a file processing application that can execute actions against a file in a tree flow structure.
paillave/Etl.Net
Mass processing data with a complete ETL for .net developers
BobLd/DocumentLayoutAnalysis
Document Layout Analysis resources repos for development with PdfPig.
majorsilence/My-FyiReporting
Majorsilence Reporting, .NET report designer, viewer, and pdf creation. Fork of fyireporting,
KrystynaSlusarczykLearning/UltimateCSharpMasterclass
axzxs2001/Asp.NetCoreExperiment
原来所有项目都移动到**OleVersion**目录下进行保留。新的案例装以.net 5.0为主,一部分对以前案例进行升级,一部分将以前的工作经验总结出来,以供大家参考!
microsoft/project-oagents
Experimental AI Agents Framework
SaboZhang/EasyTidy
EasyTidy A simple file auto-classification tool makes it easy to create automatic workflows with files. / EasyTidy 一个简单的文件自动分类整理工具 轻松创建文件的自动工作流程
microsoft/hidtools
Human Interface Device (HID) Tools for Windows and Devices
SteveSandersonMS/dotnet-ai-workshop
BobLd/tabula-sharp
Extract tables from PDF files (port of tabula-java)
Version Downloads Last Updated
0.1.11-alpha-20250630-bf664 0 6/30/2025
0.1.11-alpha-20250629-bf664 10 6/29/2025
0.1.11-alpha-20250629-73ce5 13 6/29/2025
0.1.11-alpha-20250628-73ce5 16 6/28/2025
0.1.11-alpha-20250626-d1d79 109 6/26/2025
0.1.11-alpha-20250602-89abf 1,889 6/2/2025
0.1.11-alpha-20250601-8f919 190 6/1/2025
0.1.11-alpha-20250531-fe3d1 87 5/31/2025
0.1.11-alpha-20250530-4bdb8 280 5/30/2025
0.1.11-alpha-20250529-2b54a 206 5/29/2025
0.1.11-alpha-20250528-5b566 188 5/28/2025
0.1.11-alpha-20250519-67d3d 2,475 5/19/2025
0.1.11-alpha-20250518-67d3d 615 5/18/2025
0.1.11-alpha-20250514-bf7c3 706 5/14/2025
0.1.11-alpha-20250513-bf7c3 288 5/13/2025
0.1.11-alpha-20250512-4dab2 271 5/12/2025
0.1.11-alpha-20250511-4dab2 180 5/11/2025
0.1.11-alpha-20250425-47584 1,157 4/25/2025
0.1.11-alpha-20250424-47584 197 4/24/2025
0.1.11-alpha-20250421-afdd1 1,688 4/21/2025
0.1.11-alpha-20250413-58085 929 4/13/2025
0.1.11-alpha-20250407-24902 1,428 4/7/2025
0.1.11-alpha-20250331-4fbcc 1,444 3/31/2025
0.1.11-alpha-20250330-5fb36 215 3/30/2025
0.1.11-alpha-20250330-4fbcc 733 3/30/2025
0.1.11-alpha-20250327-74d61 985 3/27/2025
0.1.11-alpha-20250324-0754e 638 3/24/2025
0.1.11-alpha-20250310-204f4 5,353 3/10/2025
0.1.11-alpha-20250309-a4a0f 201 3/9/2025
0.1.10 538,291 3/8/2025
0.1.10-alpha-20250303-1b3c7 1,521 3/3/2025
0.1.10-alpha-20250224-f26e7 989 2/24/2025
0.1.10-alpha-20250223-f26e7 364 2/23/2025
0.1.10-alpha-20250223-d973e 129 2/23/2025
0.1.10-alpha-20250222-d973e 184 2/22/2025
0.1.10-alpha-20250222-c4a23 273 2/22/2025
0.1.10-alpha-20250220-5a06e 959 2/20/2025
0.1.10-alpha-20250209-1660c 1,942 2/9/2025
0.1.10-alpha-20250208-1660c 298 2/8/2025
0.1.10-alpha-20250203-fdb88 5,477 2/3/2025
0.1.10-alpha-20250122-52098 2,373 1/22/2025
0.1.10-alpha-20250120-b7e22 561 1/20/2025
0.1.10-alpha-20250115-92d34 966 1/15/2025
0.1.10-alpha-20250106-f86cc 960 1/6/2025
0.1.10-alpha-20250105-d1779 178 1/5/2025
0.1.10-alpha-20250101-2b14a 609 1/1/2025
0.1.10-alpha-20241229-50dca 594 12/29/2024
0.1.10-alpha-20241216-7ec4e 2,372 12/16/2024
0.1.10-alpha-20241215-7ec4e 188 12/15/2024
0.1.10-alpha-20241121-7db34 10,955 11/21/2024
0.1.10-alpha-20241114-8ca53 3,566 11/14/2024
0.1.10-alpha-20241103-132ad 1,120 11/3/2024
0.1.10-alpha-20241031-d3bf6 246 10/31/2024
0.1.10-alpha-20241026-40af4 2,964 10/26/2024
0.1.10-alpha-20241019-e1060 1,944 10/19/2024
0.1.10-alpha-20241018-ea95a 272 10/18/2024
0.1.10-alpha-20241016-e903b 329 10/16/2024
0.1.10-alpha-20241013-f4054 296 10/13/2024
0.1.10-alpha-20241008-a2580 1,694 10/8/2024
0.1.10-alpha-20241007-c4672 860 10/7/2024
0.1.9 1,412,016 10/6/2024
0.1.9-alpha-20240930-eb9a1 5,630 9/30/2024
0.1.9-alpha-20240910-4845f 264,371 9/10/2024
0.1.9-alpha-20240909-09bdd 1,143 9/9/2024
0.1.9-alpha-20240904-cd2a8 1,574 9/4/2024
0.1.9-alpha-20240903-f4d14 770 9/3/2024
0.1.9-alpha-20240902-cf45d 646 9/2/2024
0.1.9-alpha-20240901-b824f 173 9/1/2024
0.1.9-alpha-20240821-b4649 6,375 8/21/2024
0.1.9-alpha-20240721-a99c0 47,304 7/21/2024
0.1.9-alpha-20240702-65c64 11,590 7/2/2024
0.1.9-alpha-20240628-bac00 13,262 6/28/2024
0.1.9-alpha-20240626-14e70 981 6/26/2024
0.1.9-alpha-20240625-dc933 834 6/25/2024
0.1.9-alpha-20240612-d2cae 4,573 6/12/2024
0.1.9-alpha-20240609-affc1 1,141 6/9/2024
0.1.9-alpha-20240601-65a18 2,607 6/1/2024
0.1.9-alpha-20240530-d7e43 799 5/30/2024
0.1.9-alpha-20240510-d86c2 12,575 5/10/2024
0.1.9-alpha-20240509-5a8e6 229 5/9/2024
0.1.9-alpha-20240508-995f2 306 5/8/2024
0.1.9-alpha-20240507-93779 339 5/7/2024
0.1.9-alpha-20240506-b6e03 257 5/6/2024
0.1.9-alpha-20240504-da44e 193 5/4/2024
0.1.9-alpha-20240429-7f42a 4,140 4/29/2024
0.1.9-alpha-20240419-1ef2e 7,698 4/19/2024
0.1.9-alpha-20240413-0f707 12,318 4/13/2024
0.1.9-alpha-20240406-2d6cb 3,878 4/6/2024
0.1.9-alpha-20240402-f6292 9,713 4/2/2024
0.1.9-alpha-20240324-e7896 5,299 3/24/2024
0.1.9-alpha-20240318-69e2b 14,049 3/18/2024
0.1.9-alpha-20240312-845e3 3,223 3/12/2024
0.1.9-alpha-20240307-ac027 1,875 3/7/2024
0.1.9-alpha-20240219-c2536 36,681 2/19/2024
0.1.9-alpha-20240217-f4e75 488 2/17/2024
0.1.9-alpha-20240216-f78b1 387 2/16/2024
0.1.9-alpha-20240215-3bdc9 2,021 2/15/2024
0.1.9-alpha-20240208-19734 4,709 2/8/2024
0.1.9-alpha-20240207-23445 1,414 2/7/2024
0.1.9-alpha-20240128-f886e 8,590 1/28/2024
0.1.9-alpha-20240121-04fc8 14,617 1/21/2024
0.1.9-alpha-20240117-096eb 7,016 1/17/2024
0.1.9-alpha-20240116-4e63e 884 1/16/2024
0.1.9-alpha-20240115-0da7b 905 1/15/2024
0.1.9-alpha-20240114-5953c 524 1/14/2024
0.1.9-alpha-20240112-83519 1,751 1/12/2024
0.1.9-alpha-20240111-88a14 878 1/11/2024
0.1.9-alpha-20240109-8cfaa 12,811 1/9/2024
0.1.9-alpha-20240108-18144 641 1/8/2024
0.1.9-alpha-20231119-4537e 18,488 11/19/2023
0.1.9-alpha-20231113-1bc0e 12,539 11/13/2023
0.1.9-alpha-20231029-17d50 5,983 10/29/2023
0.1.9-alpha-20231026-63096 6,918 10/26/2023
0.1.9-alpha-20231023-ba865 2,073 10/23/2023
0.1.9-alpha-20231019-c6e2d 4,622 10/19/2023
0.1.9-alpha-20230930-06ac8 7,951 9/30/2023
0.1.9-alpha-20230914-d59d2 8,949 9/14/2023
0.1.9-alpha-20230827-ee756 12,556 8/27/2023
0.1.9-alpha-20230806-4a480 9,405 8/6/2023
0.1.8 4,219,221 6/5/2023
0.1.8-alpha-20230605-7fe5f 1,048 6/5/2023
0.1.8-alpha-20230529-6daa2 6,830 5/29/2023
0.1.8-alpha-20230528-5126d 989 5/28/2023
0.1.8-alpha-20230524-20d3c 5,946 5/24/2023
0.1.8-alpha-20230523-11df5 995 5/23/2023
0.1.8-alpha-20230522-c3dd6 1,430 5/22/2023
0.1.8-alpha-20230423-3898f 39,837 4/23/2023
0.1.8-alpha-20230420-147b8 1,208 4/20/2023
0.1.8-alpha-20230419-2d72d 1,330 4/19/2023
0.1.8-alpha-20230417-cdc3d 1,416 4/17/2023
0.1.8-alpha-20230415-9eb79 1,167 4/15/2023
0.1.8-alpha-20230414-42e41 1,032 4/14/2023
0.1.8-alpha-20230413-46a04 1,125 4/13/2023
0.1.8-alpha-20230412-db058 1,804 4/12/2023
0.1.8-alpha-20230411-0e39b 1,150 4/11/2023
0.1.8-alpha-20230403-2e062 14,593 4/3/2023
0.1.8-alpha-20230331-bd4ee 18,922 3/31/2023
0.1.8-alpha-20230327-2daba 8,518 3/27/2023
0.1.8-alpha-20230326-58b33 1,159 3/26/2023
0.1.8-alpha-20230324-a3a9d 1,416 3/24/2023
0.1.8-alpha-20230323-a4861 1,211 3/23/2023
0.1.8-alpha-20230320-c024e 1,551 3/20/2023
0.1.8-alpha-20230318-a5c91 1,136 3/18/2023
0.1.8-alpha-20230219-999f9 2,894 2/19/2023
0.1.8-alpha-20230117-88aad 6,097 1/17/2023
0.1.8-alpha-20230109-65bc7 1,578 1/9/2023
0.1.7 926,909 12/13/2022
0.1.7-alpha-20221212-c8874 72,510 12/12/2022
0.1.7-alpha-20221210-2aed9 1,091 12/10/2022
0.1.7-alpha-20220814-2f9a9 6,752 8/14/2022
0.1.7-alpha-20220703-545d1 3,733 7/3/2022
0.1.7-alpha-20220622-fc71a 1,277 6/22/2022
0.1.7-alpha-20220618-f2188 1,118 6/18/2022
0.1.7-alpha-20220525-559f3 6,010 5/25/2022
0.1.7-alpha-20220511-ddab5 2,405 5/11/2022
0.1.7-alpha-20220503-4e490 1,957 5/3/2022
0.1.7-alpha-20220426-03692 1,281 4/26/2022
0.1.6 1,326,922 4/25/2022
0.1.6-alpha-20220425-2576c 1,191 4/25/2022
0.1.6-alpha-20220423-801a3 1,158 4/23/2022
0.1.6-alpha-20220415-cbd02 1,807 4/15/2022
0.1.6-alpha-20220411-09a62 1,277 4/11/2022
0.1.6-alpha-20220405-c2ecb 1,865 4/5/2022
0.1.6-alpha-20220404-6b085 1,144 4/4/2022
0.1.6-alpha-20220315-9c83e 6,582 3/15/2022
0.1.6-alpha-20220220-b0a5f 3,759 2/20/2022
0.1.6-alpha-20220116-e54cd 2,509 1/16/2022
0.1.6-alpha-20220113-5b66e 1,124 1/13/2022
0.1.6-alpha-20220112-b89c8 1,178 1/12/2022
0.1.6-alpha-20220111-41bfa 2,344 1/11/2022
0.1.5 1,094,877 9/17/2021
0.1.5-alpha002 5,819 5/9/2021
0.1.5-alpha001 27,727 2/28/2021
0.1.5-alpha-20211231-a57e5 3,077 12/31/2021
0.1.5-alpha-20211026-55244 1,186 10/26/2021
0.1.5-alpha-20210929-615e8 1,232 9/29/2021
0.1.5-alpha-20210918-4c36f 1,199 9/18/2021
0.1.5-alpha-20210828-e8f91 1,196 8/28/2021
0.1.5-alpha-20210827-e8f91 1,216 8/27/2021
0.1.5-alpha-20210817-b1f88 1,253 8/17/2021
0.1.4 682,629 11/29/2020
0.1.3 57,889 11/15/2020
0.1.3-alpha001 2,913 9/4/2020
0.1.2 269,588 7/4/2020
0.1.2-alpha003 1,418 6/20/2020
0.1.2-alpha002 3,693 5/10/2020
0.1.2-alpha001 1,459 4/25/2020
0.1.1 143,093 3/18/2020
0.1.1-alpha001 1,466 3/15/2020
0.1.0 209,474 1/13/2020
0.1.0-beta002 1,340 1/8/2020
0.1.0-beta001 1,342 1/6/2020
0.0.11 2,276 12/17/2019
0.0.10 1,961 12/9/2019
0.0.9 109,820 8/13/2019
0.0.7 1,832 8/3/2019
0.0.6 2,884 5/19/2019
0.0.5 24,859 12/30/2018
0.0.3 1,679 11/27/2018
0.0.1 13,762 2/26/2018
0.0.1-alpha-002 1,929 1/21/2018
0.0.1-alpha-001 1,908 1/10/2018