qrcoder - QRCoder 1.3.3-CI00023

QRCoder is a simple library, written in C#.NET, which enables you to create QR Codes. It's licensed under the MIT-license.

PM> Install-Package QRCoder -Version 1.3.3-CI00023 -Source https://www.myget.org/F/qrcoder/api/v3/index.json

Copy to clipboard

> nuget.exe install QRCoder -Version 1.3.3-CI00023 -Source https://www.myget.org/F/qrcoder/api/v3/index.json

Copy to clipboard

> dotnet add package QRCoder --version 1.3.3-CI00023 --source https://www.myget.org/F/qrcoder/api/v3/index.json

Copy to clipboard
<PackageReference Include="QRCoder" Version="1.3.3-CI00023" />
Copy to clipboard
source https://www.myget.org/F/qrcoder/api/v3/index.json

nuget QRCoder  ~> 1.3.3-CI00023
Copy to clipboard

> choco install QRCoder --version 1.3.3-CI00023 --source https://www.myget.org/F/qrcoder/api/v2

Copy to clipboard
Import-Module PowerShellGet
Register-PSRepository -Name "qrcoder" -SourceLocation "https://www.myget.org/F/qrcoder/api/v2"
Install-Module -Name "QRCoder" -RequiredVersion "1.3.3-CI00023" -Repository "qrcoder" -AllowPreRelease
Copy to clipboard

QRCoder

License NuGet Nuget Coverage GitHub contributors

QRCoder is a simple C# library originally created by Raffael Herrmann for generating QR codes and Micro QR codes.

✨ Features

  • 🚀 Zero dependencies - No external libraries required (framework dependencies only)
  • Fast performance - Optimized QR code generation with low memory footprint
  • 🎨 Multiple output formats - PNG, SVG, PDF, ASCII, Bitmap, PostScript, and more
  • 📱 23+ payload generators - WiFi, vCard, URLs, payments, and many more
  • 🔧 Highly configurable - Error correction levels, custom colors, logos, and styling
  • 🌐 Cross-platform - Supports .NET 5+, .NET Framework 3.5+, .NET Core 1.0+, and .NET Standard 1.3+
  • 📦 Micro QR codes - Smaller QR codes for space-constrained applications

📦 Installation

Install via NuGet Package Manager:

PM> Install-Package QRCoder

🚀 Quick Start

Generate a QR code with just a few lines of code, either using a renderer's static helper method, or by creating a QR code first and then passing it to a renderer:

using QRCoder;

// Generate a simple black and white PNG QR code
byte[] qrCodeImage = PngByteQRCodeHelper.GetQRCode("Hello World", QRCodeGenerator.ECCLevel.Q, 20);

// Generate a scalable black and white SVG QR code
using var qrCodeData = QRCodeGenerator.GenerateQrCode("Hello World", QRCodeGenerator.ECCLevel.Q);
using var svgRenderer = new SvgQRCode(qrCodeData);
string svg = svgRenderer.GetGraphic();

For more examples and detailed usage instructions, see: Wiki: How to use QRCoder

📱 Payload Generators

QR codes can encode structured data that triggers specific actions when scanned (e.g., WiFi credentials, contact information, URLs). QRCoder includes payload generators that create properly formatted strings for these common use cases.

Usage Example

using QRCoder;

// Create a bookmark payload
var bookmarkPayload = new PayloadGenerator.Bookmark("https://github.com/Shane32/QRCoder", "QRCoder Repository");

// Generate the QR code data from the payload
using var qrCodeData = QRCodeGenerator.GenerateQrCode(bookmarkPayload);

// Or override the ECC level
using var qrCodeData2 = QRCodeGenerator.GenerateQrCode(bookmarkPayload, QRCodeGenerator.ECCLevel.H);

// Render the QR code
using var pngRenderer = new PngByteQRCode(qrCodeData);
byte[] qrCodeImage = pngRenderer.GetGraphic(20);

Available Payload Types

Payload Type Usage Example Description
WiFi new PayloadGenerator.WiFi(ssid, password, auth) WiFi network credentials
URL new PayloadGenerator.Url("https://example.com") Website URL
Bookmark new PayloadGenerator.Bookmark(url, title) Browser bookmark
Mail new PayloadGenerator.Mail(email, subject, body) Email with pre-filled fields
SMS new PayloadGenerator.SMS(number, message) SMS message
MMS new PayloadGenerator.MMS(number, subject) MMS message
Geolocation new PayloadGenerator.Geolocation(lat, lng) GPS coordinates
PhoneNumber new PayloadGenerator.PhoneNumber(number) Phone number for calling
SkypeCall new PayloadGenerator.SkypeCall(username) Skype call
WhatsAppMessage new PayloadGenerator.WhatsAppMessage(number, msg) WhatsApp message
ContactData new PayloadGenerator.ContactData(...) vCard/MeCard contact
CalendarEvent new PayloadGenerator.CalendarEvent(...) iCal/vEvent
OneTimePassword new PayloadGenerator.OneTimePassword(...) TOTP/HOTP for 2FA
BitcoinAddress new PayloadGenerator.BitcoinAddress(address) Bitcoin payment
BitcoinCashAddress new PayloadGenerator.BitcoinCashAddress(address) Bitcoin Cash payment
LitecoinAddress new PayloadGenerator.LitecoinAddress(address) Litecoin payment
MoneroTransaction new PayloadGenerator.MoneroTransaction(...) Monero payment
SwissQrCode new PayloadGenerator.SwissQrCode(...) Swiss QR bill (ISO-20022)
Girocode new PayloadGenerator.Girocode(...) SEPA payment (EPC QR)
BezahlCode new PayloadGenerator.BezahlCode(...) German payment code
RussiaPaymentOrder new PayloadGenerator.RussiaPaymentOrder(...) Russian payment (ГОСТ Р 56042-2014)
SlovenianUpnQr new PayloadGenerator.SlovenianUpnQr(...) Slovenian UPN payment
ShadowSocksConfig new PayloadGenerator.ShadowSocksConfig(...) Shadowsocks proxy config

For detailed information about payload generators, see: Wiki: Advanced usage - Payload generators

🎨 QR Code Renderers

QRCoder provides multiple renderers for different output formats and use cases. Each renderer has specific capabilities and framework requirements.

Renderer Output Format Requires Usage Example
PngByteQRCode PNG byte array new PngByteQRCode(data).GetGraphic(20)
SvgQRCode SVG string new SvgQRCode(data).GetGraphic(20)
QRCode System.Drawing.Bitmap Windows¹ new QRCode(data).GetGraphic(20)
ArtQRCode Artistic bitmap with custom images Windows¹ new ArtQRCode(data).GetGraphic(20)
AsciiQRCode ASCII art string new AsciiQRCode(data).GetGraphic(1) or new AsciiQRCode(data).GetGraphicSmall()
Base64QRCode Base64 encoded image new Base64QRCode(data).GetGraphic(20)
BitmapByteQRCode BMP byte array new BitmapByteQRCode(data).GetGraphic(20)
PdfByteQRCode PDF byte array new PdfByteQRCode(data).GetGraphic(20)
PostscriptQRCode PostScript/EPS string new PostscriptQRCode(data).GetGraphic(20)
XamlQRCode XAML DrawingImage XAML² new XamlQRCode(data).GetGraphic(20)
UnityQRCode Unity Texture2D Unity³ new UnityQRCode(data).GetGraphic(20)

Notes:

  • ¹ Requires Windows or System.Drawing.Common package (uses GDI+)
  • ² Requires the QRCoder.Xaml package
  • ³ Requires the QRCoder.Unity package

Framework Compatibility: Not all renderers are available on all target frameworks. Check the compatibility table for details.

For comprehensive information about renderers, see: Wiki: Advanced usage - QR Code renderers

🔧 Advanced Features

Micro QR Codes

QRCoder supports Micro QR codes, which are smaller versions of standard QR codes suitable for applications with limited space. Micro QR codes have significantly limited storage capacity—as few as 5 numeric digits (M1) or as many as 35 numeric digits (M4), with alphanumeric and byte data storing considerably less.

using QRCoder;

// Generate a Micro QR code (versions M1-M4, represented as -1 to -4)
using var qrCodeData = QRCodeGenerator.GenerateMicroQrCode("Hello", QRCodeGenerator.ECCLevel.L, requestedVersion: -2);
using var qrCode = new PngByteQRCode(qrCodeData);
byte[] qrCodeImage = qrCode.GetGraphic(20);

Note: Micro QR codes have limitations on data capacity and error correction levels. They support versions M1 through M4 (specified as -1 to -4), and not all ECC levels are available for all versions. M1 only supports detection (no ECC), M2 and M3 support L and M levels, and M4 supports L, M, and Q levels. For detailed capacity tables, see the Micro QR Code specification.

Working with QRCodeData

QRCodeData is the core data structure that represents a QR code's module matrix. It contains a List<BitArray> called ModuleMatrix, where each BitArray represents a row of modules in the QR code. A module is set to true for dark/black modules and false for light/white modules.

You can access the ModuleMatrix directly to read or manipulate the QR code data at the module level. This is useful for custom rendering implementations or analyzing QR code structure.

using QRCoder;

// Generate QR code data
using var qrCodeData = QRCodeGenerator.GenerateQrCode("Hello World", QRCodeGenerator.ECCLevel.Q);

// Access the module matrix
var moduleMatrix = qrCodeData.ModuleMatrix;
int size = moduleMatrix.Count; // Size of the QR code (includes quiet zone)

// Manually render as ASCII (versus the included ASCII renderer)
for (int y = 0; y < size; y++)
{
    for (int x = 0; x < size; x++)
    {
        // Check if module is dark (true) or light (false)
        bool isDark = moduleMatrix[y][x];
        Console.Write(isDark ? "██" : "  ");
    }
    Console.WriteLine();
}

⚠️ Troubleshooting

System.Drawing.Common Warnings (QRCode and ArtQRCode renderers)

The QRCode and ArtQRCode renderers depend on System.Drawing.Common, which Microsoft has removed cross-platform support for in .NET 6+. You may encounter one of the following build or runtime errors:

CA1416: This call site is reachable on all platforms. 'QRCode.QRCode(QRCodeData)' is only supported on: 'windows'

System.TypeInitializationException: The type initializer for 'Gdip' threw an exception.

System.PlatformNotSupportedException: System.Drawing.Common is not supported on this platform.

Solutions include:

  1. Use Windows-specific TFMs such as <TargetFramework>net8.0-windows</TargetFramework>
  2. Mark methods with the [SupportedOSPlatform("windows")] attribute
  3. Add platform guards by wrapping code with #if WINDOWS or if (OperatingSystem.IsWindows())
  4. Use cross-platform renderers such as PngByteQRCode, SvgQRCode, or BitmapByteQRCode

ISO-8859-2 Encoding Support (.NET Core and .NET 5+)

ISO-8859-2 encoding is not natively supported on .NET Core and .NET 5+. If you need to use ISO-8859-2 encoding in your code, you must:

  1. Install the System.Text.Encoding.CodePages NuGet package
  2. Register the encoding provider in your application startup code:
using System.Text;

// Register the code pages encoding provider
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);

Note that the RussiaPaymentOrder payload generator already includes this registration internally, so no additional setup is required when using that class.

🚀 CI Builds

The NuGet feed contains only major/stable releases. If you want the latest functions and features, you can use the CI builds via Github packages.

(More information on how to use Github Packages in Nuget Package Manager can be found here.)

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

📄 License

QRCoder is a project originally by Raffael Herrmann and was first released in 10/2013. It's licensed under the MIT license.

Since 2025, QRCoder has been maintained by Shane32 with contributions from the community.

🙏 Credits

Glory to Jehovah, Lord of Lords and King of Kings, creator of Heaven and Earth, who through his Son Jesus Christ, has redeemed me to become a child of God. -Shane32

  • .NETStandard 1.6
    • System.Drawing.Common (>= 4.5.0-preview1-25914-04)
  • .NETStandard 2.0
    • System.Drawing.Common (>= 4.5.0-preview1-25914-04)
  • .NETCore 0.0: 0.0.0.0
  • .NETFramework 3.5: 3.5.0.0
  • .NETFramework 4.0: 4.0.0.0
  • Portable Class Library (.NETFramework 4.5, UAP 0.0, WindowsPhone 8.0, WindowsPhone 8.1, WindowsPhoneApp 8.1): net45+wpa81+wp81+wp8+uap: 0.0.0.0
  • Portable Class Library (.NETFramework 4.5, Windows 8.0, WindowsPhoneApp 8.1): Profile111: 0.0.0.0
  • .NETStandard 1.6: 1.6.0.0
  • .NETStandard 2.0: 2.0.0.0
  • MonoAndroid 0.0: 0.0.0.0
  • MonoTouch 0.0: 0.0.0.0
  • UAP 0.0: 0.0.0.0
  • UAP 10.0: 10.0.0.0
  • Xamarin.iOS 0.0: 0.0.0.0

Owners

Raffael Herrmann

Authors

Raffael Herrmann

Project URL

https://github.com/codebude/QRCoder/

License

MIT

Tags

c# csharp qr qrcoder qrcode qr-generator qr-code-generator

Info

147212 total downloads
201 downloads for version 1.3.3-CI00023
Download (1.31 MB)
Found on the current feed only

Package history

Version Size Last updated Downloads Mirrored?
1.4.2-CI00008 210.23 KB Mon, 03 May 2021 16:44:42 GMT 8321
1.4.2-CI00007 208.71 KB Sun, 02 May 2021 11:07:31 GMT 170
1.4.2-CI00006 208.62 KB Sun, 02 May 2021 09:36:12 GMT 158
1.4.2-CI00005 208.52 KB Fri, 30 Apr 2021 14:26:33 GMT 169
1.4.2-CI00004 208.52 KB Wed, 28 Apr 2021 05:18:27 GMT 152
1.4.2-CI00003 208.13 KB Wed, 28 Apr 2021 03:24:57 GMT 162
1.4.2-CI00002 207.97 KB Tue, 27 Apr 2021 13:35:28 GMT 155
1.4.2-CI00001 207.98 KB Tue, 24 Nov 2020 15:45:20 GMT 7665
1.4.2-CI00000 207.14 KB Tue, 17 Nov 2020 18:33:29 GMT 129
1.4.1-CI00010 207.13 KB Tue, 17 Nov 2020 16:58:15 GMT 163
1.4.1-CI00009 207.13 KB Tue, 17 Nov 2020 16:54:36 GMT 157
1.4.1-CI00008 207.13 KB Tue, 17 Nov 2020 13:35:29 GMT 173
1.4.1-CI00007 202.4 KB Mon, 16 Nov 2020 09:45:58 GMT 146
1.4.1-CI00001 201.58 KB Mon, 16 Nov 2020 05:58:38 GMT 175
1.4.1-CI00000 201.78 KB Fri, 13 Nov 2020 16:47:08 GMT 166
1.4.0 201.69 KB Thu, 12 Nov 2020 05:59:32 GMT 90560
1.4.0-CI00008 201.76 KB Fri, 13 Nov 2020 13:55:52 GMT 142
1.4.0-CI00007 201.78 KB Fri, 13 Nov 2020 13:22:16 GMT 134
1.3.9-CI00002 199.75 KB Wed, 08 Apr 2020 05:12:01 GMT 164
1.3.9-CI00001 199.75 KB Wed, 08 Apr 2020 04:59:43 GMT 179
1.3.9-CI00000 199.45 KB Tue, 07 Apr 2020 05:54:11 GMT 161
1.3.7-CI00021 199.45 KB Tue, 07 Apr 2020 05:17:45 GMT 161
1.3.7-CI00020 198.61 KB Tue, 31 Mar 2020 05:58:56 GMT 155
1.3.7-CI00019 198.57 KB Tue, 31 Mar 2020 05:31:05 GMT 118
1.3.7-CI00018 191.45 KB Fri, 27 Mar 2020 05:46:07 GMT 152
1.3.7-CI00017 194.76 KB Thu, 26 Mar 2020 18:30:46 GMT 169
1.3.7-CI00015 194.26 KB Thu, 26 Mar 2020 17:28:29 GMT 128
1.3.7-CI00013 194.26 KB Thu, 26 Mar 2020 16:53:29 GMT 178
1.3.7-CI00012 190.19 KB Thu, 26 Mar 2020 16:48:03 GMT 155
1.3.7-CI00009 190.18 KB Thu, 26 Mar 2020 14:22:30 GMT 174
1.3.7-CI00008 190.36 KB Thu, 26 Mar 2020 13:36:02 GMT 150
1.3.7-CI00002 190.83 KB Thu, 26 Mar 2020 05:44:44 GMT 175
1.3.7-CI00000 535.16 KB Tue, 25 Jun 2019 19:48:34 GMT 217
1.3.6-CI00021 535.21 KB Tue, 25 Jun 2019 19:37:01 GMT 159
1.3.6-CI00009 512.77 KB Mon, 24 Jun 2019 06:23:47 GMT 172
1.3.6-CI00008 512.64 KB Mon, 24 Jun 2019 06:10:19 GMT 181
1.3.6-CI00007 512.65 KB Mon, 11 Mar 2019 10:18:54 GMT 184
1.3.6-CI00006 511.49 KB Sun, 10 Mar 2019 14:11:00 GMT 175
1.3.6-CI00005 511.53 KB Sun, 03 Mar 2019 10:49:05 GMT 167
1.3.6-CI00004 511.51 KB Sun, 27 Jan 2019 21:21:25 GMT 193
1.3.6-CI00003 512.81 KB Sat, 26 Jan 2019 14:43:17 GMT 179
1.3.6-CI00002 511.55 KB Sat, 26 Jan 2019 14:42:46 GMT 177
1.3.6-CI00001 510.95 KB Fri, 23 Nov 2018 10:00:20 GMT 173
1.3.6-CI00000 510.95 KB Fri, 23 Nov 2018 09:59:54 GMT 189
1.3.5-CI00008 510.91 KB Fri, 23 Nov 2018 09:54:58 GMT 189
1.3.5-CI00007 510.95 KB Tue, 20 Nov 2018 07:23:05 GMT 198
1.3.5-CI00006 510.94 KB Tue, 20 Nov 2018 07:22:43 GMT 168
1.3.5-CI00005 510.93 KB Sun, 18 Nov 2018 19:24:01 GMT 175
1.3.5-CI00004 510.91 KB Sun, 18 Nov 2018 12:43:21 GMT 159
1.3.5-CI00003 510.91 KB Sun, 18 Nov 2018 12:43:14 GMT 139
1.3.5-CI00002 510.91 KB Sun, 18 Nov 2018 10:07:13 GMT 183
1.3.4-CI00029 510.96 KB Sat, 17 Nov 2018 18:53:25 GMT 191
1.3.4-CI00028 510.96 KB Sat, 17 Nov 2018 18:53:18 GMT 178
1.3.4-CI00026 1.31 MB Sat, 17 Nov 2018 17:55:22 GMT 195
1.3.4-CI00025 1.31 MB Sat, 17 Nov 2018 17:55:20 GMT 157
1.3.4-CI00024 1.31 MB Sat, 17 Nov 2018 17:24:23 GMT 197
1.3.4-CI00023 1.31 MB Sat, 17 Nov 2018 17:24:01 GMT 184
1.3.4-CI00022 1.32 MB Sat, 17 Nov 2018 17:15:35 GMT 215
1.3.4-CI00021 1.32 MB Sat, 17 Nov 2018 17:15:38 GMT 196
1.3.4-CI00020 1.32 MB Sat, 17 Nov 2018 16:48:36 GMT 178
1.3.4-CI00019 1.32 MB Sat, 17 Nov 2018 16:48:13 GMT 202
1.3.4-CI00018 1.32 MB Sat, 17 Nov 2018 14:18:35 GMT 186
1.3.4-CI00017 1.32 MB Mon, 12 Nov 2018 08:48:23 GMT 198
1.3.4-CI00016 1.32 MB Mon, 12 Nov 2018 08:47:57 GMT 186
1.3.4-CI00015 1.31 MB Fri, 02 Nov 2018 08:50:37 GMT 161
1.3.4-CI00014 1.31 MB Fri, 02 Nov 2018 08:50:14 GMT 219
1.3.4-CI00013 1.31 MB Fri, 02 Nov 2018 08:35:13 GMT 208
1.3.4-CI00012 1.31 MB Fri, 02 Nov 2018 08:34:44 GMT 206
1.3.4-CI00011 1.31 MB Wed, 10 Oct 2018 14:17:43 GMT 211
1.3.4-CI00010 1.31 MB Wed, 10 Oct 2018 14:17:42 GMT 201
1.3.4-CI00009 1.31 MB Tue, 29 May 2018 04:44:44 GMT 223
1.3.4-CI00007 1.31 MB Tue, 29 May 2018 04:40:47 GMT 190
1.3.4-CI00006 1.31 MB Tue, 29 May 2018 04:37:19 GMT 148
1.3.4-CI00005 1.31 MB Fri, 25 May 2018 05:44:11 GMT 199
1.3.4-CI00004 1.31 MB Wed, 23 May 2018 15:43:16 GMT 196
1.3.4-CI00003 1.31 MB Tue, 22 May 2018 05:02:48 GMT 157
1.3.4-CI00002 1.31 MB Tue, 24 Apr 2018 07:20:33 GMT 202
1.3.4-CI00001 510.97 KB Sat, 17 Nov 2018 19:07:43 GMT 181
1.3.4-CI00000 510.98 KB Sat, 17 Nov 2018 19:07:21 GMT 194
1.3.3-CI00027 1.31 MB Sun, 22 Apr 2018 09:30:31 GMT 148
1.3.3-CI00026 1.31 MB Sun, 22 Apr 2018 08:59:53 GMT 161
1.3.3-CI00025 1.31 MB Sun, 22 Apr 2018 08:59:50 GMT 153
1.3.3-CI00024 1.31 MB Sun, 22 Apr 2018 08:53:01 GMT 195
1.3.3-CI00023 1.31 MB Sun, 22 Apr 2018 08:15:22 GMT 201
1.3.3-CI00022 1.31 MB Sun, 22 Apr 2018 08:15:21 GMT 174
1.3.3-CI00018 1.29 MB Sat, 21 Apr 2018 13:40:34 GMT 197
1.3.3-CI00017 1.29 MB Sat, 21 Apr 2018 13:40:35 GMT 182
1.3.3-CI00016 1.29 MB Sat, 21 Apr 2018 13:21:44 GMT 202
1.3.3-CI00015 1.29 MB Sat, 21 Apr 2018 13:21:42 GMT 183
1.3.3-CI00014 1.29 MB Mon, 26 Mar 2018 06:05:22 GMT 195
1.3.3-CI00013 1.29 MB Sat, 10 Mar 2018 17:31:08 GMT 167
1.3.3-CI00012 1.29 MB Sat, 10 Mar 2018 17:31:08 GMT 188
1.3.3-CI00011 1.29 MB Sat, 10 Mar 2018 16:46:23 GMT 141
1.3.3-CI00010 1.29 MB Sat, 10 Mar 2018 16:46:24 GMT 188
1.3.3-CI00009 1.29 MB Sat, 10 Mar 2018 16:36:31 GMT 184
1.3.3-CI00008 1.29 MB Sat, 10 Mar 2018 16:36:33 GMT 186
1.3.3-CI00007 1.29 MB Sat, 24 Feb 2018 11:08:48 GMT 176
1.3.3-CI00006 1.29 MB Fri, 09 Feb 2018 15:08:18 GMT 199
1.3.3-CI00005 1.29 MB Fri, 09 Feb 2018 14:58:07 GMT 204
1.3.3-CI00004 1.29 MB Fri, 09 Feb 2018 14:57:58 GMT 198
1.3.3-CI00002 1.29 MB Sat, 13 Jan 2018 14:20:55 GMT 203
1.3.3-CI00001 1.29 MB Sat, 13 Jan 2018 14:20:53 GMT 196
1.3.3-CI00000 1.29 MB Sat, 21 Oct 2017 09:55:32 GMT 218
1.3.2-CI00016 1.29 MB Sat, 21 Oct 2017 09:47:35 GMT 210
1.3.2-CI00015 1.29 MB Sat, 21 Oct 2017 09:40:28 GMT 202
1.3.2-CI00014 1.29 MB Tue, 17 Oct 2017 20:08:37 GMT 203
1.3.2-CI00012 1.29 MB Tue, 17 Oct 2017 17:45:02 GMT 210
1.3.2-CI00011 1.29 MB Tue, 17 Oct 2017 17:44:49 GMT 195
1.3.2-CI00010 1.29 MB Tue, 17 Oct 2017 17:34:17 GMT 202
1.3.2-CI00009 1.29 MB Tue, 17 Oct 2017 17:25:30 GMT 199
1.3.2-CI00008 1.29 MB Sat, 14 Oct 2017 19:41:36 GMT 157
1.3.2-CI00007 1.29 MB Sat, 14 Oct 2017 19:41:19 GMT 164
1.3.2-CI00006 1.28 MB Sun, 08 Oct 2017 13:50:05 GMT 194
1.3.2-CI00005 1.28 MB Sun, 08 Oct 2017 13:50:00 GMT 150
1.3.2-CI00004 1.28 MB Sun, 08 Oct 2017 13:28:08 GMT 164
1.3.2-CI00003 1.28 MB Sun, 08 Oct 2017 13:27:53 GMT 192
1.3.2-CI00001 1.27 MB Sun, 08 Oct 2017 12:36:24 GMT 207
1.3.2-CI00000 1.24 MB Tue, 03 Oct 2017 13:46:33 GMT 150
1.3.1-CI00001 1.24 MB Tue, 03 Oct 2017 13:39:39 GMT 158
1.3.1-CI00000 1.24 MB Sat, 23 Sep 2017 23:17:20 GMT 149
1.3.0-CI00022 1.24 MB Sat, 23 Sep 2017 22:59:38 GMT 193
1.3.0-CI00021 1.24 MB Fri, 22 Sep 2017 15:21:08 GMT 201
1.3.0-CI00020 1.24 MB Fri, 22 Sep 2017 11:27:20 GMT 185
1.3.0-CI00019 1.24 MB Fri, 22 Sep 2017 11:18:41 GMT 218
1.3.0-CI00018 1.24 MB Fri, 22 Sep 2017 10:57:30 GMT 196
1.3.0-CI00017 1.24 MB Fri, 22 Sep 2017 06:34:23 GMT 191
1.3.0-CI00016 1.24 MB Fri, 22 Sep 2017 06:21:34 GMT 181
1.3.0-CI00015 1.69 MB Fri, 22 Sep 2017 05:58:31 GMT 201
1.3.0-CI00014 1.69 MB Fri, 22 Sep 2017 05:49:07 GMT 161
1.3.0-CI00013 1.65 MB Fri, 22 Sep 2017 05:28:25 GMT 196
1.3.0-CI00012 1.86 MB Fri, 22 Sep 2017 05:22:35 GMT 220
1.3.0-CI00011 1.86 MB Thu, 21 Sep 2017 15:16:36 GMT 191
1.3.0-CI00010 1.86 MB Thu, 21 Sep 2017 15:16:34 GMT 196
1.3.0-CI00008 707.76 KB Mon, 26 Jun 2017 20:36:16 GMT 165
1.3.0-CI00007 707.74 KB Mon, 26 Jun 2017 20:36:12 GMT 179
1.3.0-CI00006 705.85 KB Mon, 26 Jun 2017 20:29:27 GMT 147
1.3.0-CI00005 705.85 KB Mon, 26 Jun 2017 20:29:25 GMT 166
1.3.0-CI00004 705.84 KB Mon, 26 Jun 2017 20:09:41 GMT 183
1.3.0-CI00003 705.85 KB Mon, 26 Jun 2017 20:09:44 GMT 194
1.3.0-CI00002 705.88 KB Mon, 26 Jun 2017 19:26:05 GMT 165
1.3.0-CI00001 705.53 KB Thu, 15 Jun 2017 10:41:20 GMT 190
1.3.0-CI00000 705.54 KB Thu, 15 Jun 2017 10:41:32 GMT 150
1.2.9-CI00003 705.61 KB Thu, 15 Jun 2017 10:35:35 GMT 191
1.2.9-CI00002 705.58 KB Wed, 24 May 2017 06:17:47 GMT 183
1.2.9-CI00001 703.88 KB Thu, 18 May 2017 10:38:35 GMT 188
1.2.9-CI00000 703.88 KB Thu, 18 May 2017 10:38:22 GMT 181
1.2.8-CI00024 703.91 KB Thu, 18 May 2017 10:32:46 GMT 195
1.2.8-CI00023 703.91 KB Thu, 18 May 2017 08:18:08 GMT 166
1.2.8-CI00022 703.92 KB Thu, 18 May 2017 08:18:07 GMT 163
1.2.8-CI00021 703.92 KB Mon, 15 May 2017 17:59:22 GMT 164
1.2.8-CI00020 703.89 KB Mon, 15 May 2017 07:53:26 GMT 178
1.2.8-CI00019 703.92 KB Mon, 15 May 2017 07:53:39 GMT 187
1.2.8-CI00018 703.89 KB Mon, 15 May 2017 07:17:00 GMT 180
1.2.8-CI00017 703.92 KB Mon, 15 May 2017 07:16:41 GMT 185
1.2.8-CI00016 703.9 KB Sun, 14 May 2017 18:55:33 GMT 192
1.2.8-CI00015 703.89 KB Sun, 14 May 2017 18:43:20 GMT 181
1.2.8-CI00014 703.93 KB Sun, 14 May 2017 18:43:20 GMT 150
1.2.8-CI00013 695.6 KB Sat, 13 May 2017 12:03:59 GMT 195
1.2.8-CI00012 695.6 KB Sat, 13 May 2017 12:03:48 GMT 142
1.2.8-CI00011 695.61 KB Sat, 13 May 2017 11:55:15 GMT 176
1.2.8-CI00010 695.09 KB Fri, 12 May 2017 13:51:49 GMT 179
1.2.8-CI00009 694.86 KB Wed, 10 May 2017 09:45:19 GMT 169
1.2.8-CI00008 694.86 KB Wed, 10 May 2017 09:45:07 GMT 191
1.2.8-CI00007 694.83 KB Wed, 10 May 2017 09:29:45 GMT 190
1.2.8-CI00006 694.81 KB Wed, 10 May 2017 09:03:22 GMT 185
1.2.8-CI00005 694.83 KB Mon, 08 May 2017 12:46:59 GMT 183
1.2.8-CI00004 695.71 KB Mon, 08 May 2017 06:19:40 GMT 150
1.2.8-CI00001 675.78 KB Sun, 07 May 2017 16:24:52 GMT 177
1.2.8-CI00000 675.77 KB Sun, 30 Apr 2017 13:02:56 GMT 173
1.2.7-CI00009 675.81 KB Sun, 30 Apr 2017 12:54:09 GMT 207
1.2.7-CI00008 675.79 KB Thu, 27 Apr 2017 21:23:24 GMT 184
1.2.7-CI00007 644.12 KB Thu, 27 Apr 2017 16:04:00 GMT 154
1.2.7-CI00006 644.11 KB Thu, 27 Apr 2017 15:56:35 GMT 149
1.2.7-CI00005 644.13 KB Thu, 27 Apr 2017 15:56:35 GMT 165
1.2.7-CI00004 612.37 KB Mon, 17 Apr 2017 13:53:57 GMT 189
1.2.7-CI00003 612.39 KB Mon, 17 Apr 2017 13:53:48 GMT 183
1.2.7-CI00002 612.38 KB Tue, 21 Mar 2017 16:24:36 GMT 189
1.2.7-CI00001 609.24 KB Tue, 21 Mar 2017 07:48:10 GMT 169
1.2.7-CI00000 600.7 KB Thu, 16 Mar 2017 06:50:33 GMT 143
1.2.6-CI00010 600.71 KB Thu, 16 Mar 2017 06:45:22 GMT 183
1.2.6-CI00003 591.47 KB Wed, 15 Mar 2017 09:20:53 GMT 181
1.2.6-CI00002 591.37 KB Wed, 01 Feb 2017 11:51:38 GMT 158
1.2.6-CI00001 591.35 KB Sat, 28 Jan 2017 10:06:50 GMT 176
1.2.6-CI00000 591.33 KB Sat, 28 Jan 2017 10:06:49 GMT 132
1.2.5-CI00013 591.35 KB Sat, 28 Jan 2017 09:51:34 GMT 165
1.2.5-CI00012 605.25 KB Fri, 27 Jan 2017 15:07:21 GMT 185
1.2.5-CI00011 605.26 KB Fri, 27 Jan 2017 14:53:56 GMT 143
1.2.5-CI00010 605.25 KB Fri, 27 Jan 2017 14:53:46 GMT 164
1.2.5-CI00009 605.24 KB Fri, 27 Jan 2017 14:22:02 GMT 140
1.2.5-CI00008 591.31 KB Fri, 27 Jan 2017 14:21:52 GMT 156
1.2.5-CI00007 605.26 KB Fri, 27 Jan 2017 14:07:23 GMT 179
1.2.5-CI00006 605.24 KB Fri, 27 Jan 2017 14:07:10 GMT 170
1.2.5-CI00005 605.49 KB Fri, 27 Jan 2017 12:54:33 GMT 183
1.2.5-CI00004 591.34 KB Thu, 26 Jan 2017 15:09:15 GMT 179
1.2.5-CI00003 605.28 KB Thu, 26 Jan 2017 15:03:08 GMT 169
1.2.5-CI00001 591.34 KB Thu, 26 Jan 2017 14:39:46 GMT 186
1.2.5-CI00000 578.36 KB Thu, 26 Jan 2017 14:24:41 GMT 130
1.2.4-CI00001 578.59 KB Thu, 26 Jan 2017 12:20:54 GMT 157
1.2.4-CI00000 578.39 KB Sat, 10 Dec 2016 00:14:32 GMT 146
1.2.3-CI00017 578.59 KB Sat, 10 Dec 2016 00:09:12 GMT 210
1.2.3-CI00002 325.46 KB Wed, 21 Sep 2016 16:20:20 GMT 168
1.2.3-CI00001 322.68 KB Wed, 21 Sep 2016 16:20:08 GMT 169
1.2.3-CI00000 322.66 KB Tue, 13 Sep 2016 09:30:04 GMT 140
1.2.2-CI00005 325.53 KB Tue, 13 Sep 2016 09:24:45 GMT 182
1.2.2-CI00004 325.53 KB Tue, 13 Sep 2016 09:24:35 GMT 172
1.2.2-CI00003 322.56 KB Sat, 10 Sep 2016 17:31:07 GMT 175
1.2.2-CI00001 336.98 KB Sat, 10 Sep 2016 17:02:23 GMT 171
1.2.1-CI00011 325.47 KB Sat, 10 Sep 2016 16:49:41 GMT 151
1.2.1-CI00010 260.63 KB Sat, 10 Sep 2016 16:35:24 GMT 164
1.2.1-CI00009 257.75 KB Sat, 10 Sep 2016 16:26:42 GMT 158
1.2.1-CI00008 257.62 KB Sat, 10 Sep 2016 16:07:58 GMT 172
1.2.1-CI00007 257.62 KB Sat, 10 Sep 2016 16:08:12 GMT 183
1.2.1-CI00006 260.5 KB Sat, 10 Sep 2016 15:49:43 GMT 165
1.2.1-CI00005 260.5 KB Sat, 10 Sep 2016 15:49:33 GMT 163
1.2.1-CI00002 235.03 KB Sat, 10 Sep 2016 15:36:44 GMT 151
1.2.1-CI00000 234.73 KB Thu, 08 Sep 2016 07:58:31 GMT 169
1.2.0-CI00001 234.73 KB Thu, 08 Sep 2016 07:51:00 GMT 168
1.2.0-CI00000 234.73 KB Thu, 07 Jul 2016 12:59:03 GMT 146
1.1.9-CI00003 234.75 KB Thu, 07 Jul 2016 12:38:47 GMT 167
1.1.9-CI00002 234.74 KB Thu, 07 Jul 2016 12:38:32 GMT 177
1.1.9-CI00001 234.73 KB Thu, 07 Jul 2016 12:24:44 GMT 148
1.1.9-CI00000 234.68 KB Mon, 27 Jun 2016 13:50:20 GMT 182
1.1.8-CI00007 234.67 KB Mon, 27 Jun 2016 13:44:32 GMT 161
1.1.8-CI00006 234.2 KB Mon, 13 Jun 2016 08:34:41 GMT 172
1.1.8-CI00005 234.2 KB Sun, 22 May 2016 17:42:17 GMT 158
1.1.8-CI00004 234.2 KB Sun, 22 May 2016 11:40:24 GMT 142
1.1.8-CI00003 234.17 KB Fri, 20 May 2016 13:43:20 GMT 154
1.1.8-CI00002 234.18 KB Fri, 20 May 2016 13:43:01 GMT 149
1.1.8-CI00001 234.18 KB Fri, 20 May 2016 06:38:56 GMT 166
1.1.8-CI00000 234.17 KB Thu, 19 May 2016 06:16:30 GMT 181
1.1.7-CI00003 234.19 KB Thu, 19 May 2016 06:11:10 GMT 177
1.1.7-CI00002 233.64 KB Wed, 18 May 2016 18:46:18 GMT 125
1.1.7-CI00000 233.63 KB Wed, 18 May 2016 07:05:29 GMT 160
1.1.6-CI00001 233.64 KB Wed, 18 May 2016 07:00:07 GMT 169
1.0.0-CI00008 234.48 KB Mon, 16 May 2016 15:29:54 GMT 173