System.IO.Abstractions 21.0.29

dotnet add package System.IO.Abstractions --version 21.0.29                
NuGet\Install-Package System.IO.Abstractions -Version 21.0.29                
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="System.IO.Abstractions" Version="21.0.29" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add System.IO.Abstractions --version 21.0.29                
#r "nuget: System.IO.Abstractions, 21.0.29"                
#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 System.IO.Abstractions as a Cake Addin
#addin nuget:?package=System.IO.Abstractions&version=21.0.29

// Install System.IO.Abstractions as a Cake Tool
#tool nuget:?package=System.IO.Abstractions&version=21.0.29                

System.IO.Abstractions NuGet Continuous Integration Codacy Badge Renovate enabled FOSSA Status

At the core of the library is IFileSystem and FileSystem. Instead of calling methods like File.ReadAllText directly, use IFileSystem.File.ReadAllText. We have exactly the same API, except that ours is injectable and testable.

Usage

dotnet add package TestableIO.System.IO.Abstractions.Wrappers

Note: This NuGet package is also published as System.IO.Abstractions but we suggest to use the prefix to make clear that this is not an official .NET package.

public class MyComponent
{
    readonly IFileSystem fileSystem;

    // <summary>Create MyComponent with the given fileSystem implementation</summary>
    public MyComponent(IFileSystem fileSystem)
    {
        this.fileSystem = fileSystem;
    }
    /// <summary>Create MyComponent</summary>
    public MyComponent() : this(
        fileSystem: new FileSystem() //use default implementation which calls System.IO
    )
    {
    }

    public void Validate()
    {
        foreach (var textFile in fileSystem.Directory.GetFiles(@"c:\", "*.txt", SearchOption.TopDirectoryOnly))
        {
            var text = fileSystem.File.ReadAllText(textFile);
            if (text != "Testing is awesome.")
                throw new NotSupportedException("We can't go on together. It's not me, it's you.");
        }
    }
}

Test helpers

The library also ships with a series of test helpers to save you from having to mock out every call, for basic scenarios. They are not a complete copy of a real-life file system, but they'll get you most of the way there.

dotnet add package TestableIO.System.IO.Abstractions.TestingHelpers

Note: This NuGet package is also published as System.IO.Abstractions.TestingHelpers but we suggest to use the prefix to make clear that this is not an official .NET package.

[Test]
public void MyComponent_Validate_ShouldThrowNotSupportedExceptionIfTestingIsNotAwesome()
{
    // Arrange
    var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData>
    {
        { @"c:\myfile.txt", new MockFileData("Testing is meh.") },
        { @"c:\demo\jQuery.js", new MockFileData("some js") },
        { @"c:\demo\image.gif", new MockFileData(new byte[] { 0x12, 0x34, 0x56, 0xd2 }) }
    });
    var component = new MyComponent(fileSystem);

    try
    {
        // Act
        component.Validate();
    }
    catch (NotSupportedException ex)
    {
        // Assert
        Assert.That(ex.Message, Is.EqualTo("We can't go on together. It's not me, it's you."));
        return;
    }

    Assert.Fail("The expected exception was not thrown.");
}

We even support casting from the .NET Framework's untestable types to our testable wrappers:

FileInfo SomeApiMethodThatReturnsFileInfo()
{
    return new FileInfo("a");
}

void MyFancyMethod()
{
    var testableFileInfo = (FileInfoBase)SomeApiMethodThatReturnsFileInfo();
    ...
}

Mock support

Since version 4.0 the top-level APIs expose interfaces instead of abstract base classes (these still exist, though), allowing you to completely mock the file system. Here's a small example, using Moq:

[Test]
public void Test1()
{
    var watcher = Mock.Of<IFileSystemWatcher>();
    var file = Mock.Of<IFile>();

    Mock.Get(file).Setup(f => f.Exists(It.IsAny<string>())).Returns(true);
    Mock.Get(file).Setup(f => f.ReadAllText(It.IsAny<string>())).Throws<OutOfMemoryException>();

    var unitUnderTest = new SomeClassUsingFileSystemWatcher(watcher, file);

    Assert.Throws<OutOfMemoryException>(() => {
        Mock.Get(watcher).Raise(w => w.Created += null, new System.IO.FileSystemEventArgs(System.IO.WatcherChangeTypes.Created, @"C:\Some\Directory", "Some.File"));
    });

    Mock.Get(file).Verify(f => f.Exists(It.IsAny<string>()), Times.Once);

    Assert.True(unitUnderTest.FileWasCreated);
}

public class SomeClassUsingFileSystemWatcher
{
    private readonly IFileSystemWatcher _watcher;
    private readonly IFile _file;

    public bool FileWasCreated { get; private set; }

    public SomeClassUsingFileSystemWatcher(IFileSystemWatcher watcher, IFile file)
    {
        this._file = file;
        this._watcher = watcher;
        this._watcher.Created += Watcher_Created;
    }

    private void Watcher_Created(object sender, System.IO.FileSystemEventArgs e)
    {
        FileWasCreated = true;

        if(_file.Exists(e.FullPath))
        {
            var text = _file.ReadAllText(e.FullPath);
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  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. 
.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 is compatible. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  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 (285)

Showing the top 5 NuGet packages that depend on System.IO.Abstractions:

Package Downloads
Reo.Core.Hosting

Package Description

VirtoCommerce.Platform.Core

Virto Commerce is a flexible B2B ecommerce solution that offers powerful tools for enterprise business users. https://virtocommerce.com

Reo.Core.Database

Package Description

Hopex.ApplicationServer.Extensions.Package

Hopex Application Server Packager

Noggog.CSharpExt

Generic reusable classes and extension methods that apply to no specific project and flavored to taste

GitHub repositories (62)

Showing the top 5 popular GitHub repositories that depend on System.IO.Abstractions:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
gui-cs/Terminal.Gui
Cross Platform Terminal UI toolkit for .NET
JosefNemec/Playnite
Video game library manager with support for wide range of 3rd party libraries and game emulation support, providing one unified interface for your games.
gitextensions/gitextensions
Git Extensions is a standalone UI tool for managing git repositories. It also integrates with Windows Explorer and Microsoft Visual Studio (2015/2017/2019).
Kareadita/Kavita
Kavita is a fast, feature rich, cross platform reading server. Built with the goal of being a full solution for all your reading needs. Setup your own server and share your reading collection with your friends and family.
Version Downloads Last updated
21.0.29 286,127 7/25/2024
21.0.26 124,852 7/13/2024
21.0.22 173,023 6/22/2024
21.0.2 1,194,402 3/17/2024
20.0.34 45,168 3/15/2024
20.0.28 106,223 3/9/2024
20.0.15 961,686 1/22/2024
20.0.4 502,824 12/5/2023
20.0.1 1,509 12/5/2023
19.2.91 242,715 12/5/2023
19.2.87 573,911 11/16/2023
19.2.69 1,470,967 8/29/2023
19.2.67 36,874 8/25/2023
19.2.66 1,895 8/25/2023
19.2.64 82,538 8/22/2023
19.2.63 2,266 8/22/2023
19.2.61 12,862 8/21/2023
19.2.51 234,524 7/31/2023
19.2.50 4,421 7/31/2023
19.2.29 1,510,970 5/17/2023
19.2.26 39,058 5/12/2023
19.2.25 2,507 5/12/2023
19.2.22 163,074 5/4/2023
19.2.18 141,962 4/24/2023
19.2.17 10,678 4/23/2023
19.2.16 108,523 4/19/2023
19.2.15 357,507 4/18/2023
19.2.13 2,225 4/18/2023
19.2.12 2,535 4/18/2023
19.2.11 69,501 4/13/2023
19.2.9 42,443 4/11/2023
19.2.8 6,192 4/11/2023
19.2.4 1,074,868 3/13/2023
19.2.1 323,027 3/2/2023
19.1.18 370,921 2/14/2023
19.1.14 154,559 1/31/2023
19.1.13 329,372 1/24/2023
19.1.5 1,648,537 12/19/2022
19.1.1 76,149 12/13/2022
19.0.1 173,928 12/8/2022
18.0.1 424,010 11/28/2022
17.2.26 271,564 11/18/2022 17.2.26 is deprecated.
17.2.3 3,796,156 9/16/2022
17.2.1 222,906 9/10/2022
17.1.1 1,138,269 8/15/2022
17.0.28 14,825 8/15/2022
17.0.24 1,120,407 7/19/2022
17.0.23 281,164 7/15/2022
17.0.21 384,809 7/4/2022
17.0.18 806,457 6/9/2022
17.0.15 433,821 5/20/2022
17.0.14 57,557 5/18/2022
17.0.13 132,122 5/17/2022
17.0.12 67,816 5/16/2022
17.0.11 13,965 5/15/2022
17.0.10 247,872 5/12/2022
17.0.9 3,901 5/11/2022
17.0.8 4,483 5/11/2022
17.0.7 3,222 5/11/2022
17.0.6 3,238 5/11/2022
17.0.5 3,170 5/11/2022
17.0.4 20,185 5/11/2022
17.0.3 565,275 4/26/2022
17.0.2 3,329 4/26/2022
17.0.1 17,691 4/25/2022
16.1.26 109,490 4/24/2022
16.1.25 1,058,736 3/23/2022
16.1.24 49,106 3/22/2022
16.1.23 178,901 3/14/2022
16.1.22 7,106 3/11/2022
16.1.21 3,161 3/11/2022
16.1.20 191,953 3/8/2022
16.1.19 3,282 3/8/2022
16.1.18 3,291 3/8/2022
16.1.17 3,199 3/8/2022
16.1.16 50,084 3/3/2022
16.1.15 323,080 2/19/2022
16.1.14 3,277 2/19/2022
16.1.13 3,862 2/19/2022
16.1.12 3,237 2/19/2022
16.1.11 32,978 2/17/2022
16.1.10 560,120 2/4/2022
16.1.9 40,687 2/2/2022
16.1.8 4,753 2/2/2022
16.1.7 27,549 1/31/2022
16.1.6 3,548 1/31/2022
16.1.5 6,620 1/31/2022
16.1.4 730,451 1/12/2022
16.1.2 4,141 1/12/2022
16.1.1 41,028 1/11/2022
16.0.8 158,833 1/9/2022
16.0.7 48,526 1/8/2022
16.0.6 2,889 1/8/2022
16.0.5 2,867 1/8/2022
16.0.4 2,917 1/8/2022
16.0.3 44,042 1/6/2022
16.0.2 5,692 1/6/2022
16.0.1 747,740 12/22/2021
15.0.1 4,415 12/22/2021
14.0.13 325,061 12/11/2021
14.0.12 3,048 12/11/2021
14.0.11 3,231 12/11/2021
14.0.10 3,056 12/11/2021
14.0.9 3,145 12/11/2021
14.0.8 3,175 12/11/2021
14.0.7 3,002 12/10/2021
14.0.6 2,869 12/10/2021
14.0.5 2,875 12/10/2021
14.0.4 3,137 12/10/2021
14.0.3 975,011 11/27/2021
14.0.2 5,049 11/26/2021
14.0.1 16,644 11/26/2021
13.2.47 9,390,056 8/25/2021
13.2.46 3,247 8/25/2021
13.2.45 3,003 8/25/2021
13.2.43 633,310 7/27/2021
13.2.42 1,080,230 7/23/2021
13.2.41 136,957 7/15/2021
13.2.40 5,137 7/14/2021
13.2.39 4,732 7/14/2021
13.2.38 382,507 6/15/2021
13.2.37 23,276 6/10/2021
13.2.36 3,045 6/10/2021
13.2.35 2,986 6/10/2021
13.2.34 3,050 6/10/2021
13.2.33 3,925,789 5/15/2021
13.2.32 3,148 5/15/2021
13.2.31 136,381 5/2/2021
13.2.30 3,248 5/2/2021
13.2.29 611,502 4/14/2021
13.2.28 680,350 3/25/2021
13.2.27 4,254 3/25/2021
13.2.25 3,003,061 3/9/2021
13.2.24 43,222 3/6/2021
13.2.23 264,812 2/24/2021
13.2.22 3,407 2/24/2021
13.2.20 17,037 2/23/2021
13.2.19 3,211 2/23/2021
13.2.18 4,096 2/23/2021
13.2.17 6,614 2/23/2021
13.2.16 3,361 2/22/2021
13.2.15 21,444 2/18/2021
13.2.14 3,275 2/18/2021
13.2.13 3,376 2/18/2021
13.2.12 3,260 2/18/2021
13.2.11 44,477 2/16/2021
13.2.10 267,316 2/10/2021
13.2.9 673,912 1/14/2021
13.2.8 272,192 12/22/2020
13.2.7 23,914 12/20/2020
13.2.6 126,260 12/16/2020
13.2.5 112,264 12/9/2020
13.2.4 92,490 12/5/2020
13.2.3 3,693 12/4/2020
13.2.2 196,988 11/26/2020
13.2.1 17,469 11/26/2020
13.1.2 3,390 11/25/2020
13.1.1 3,328 11/25/2020
13.0.1 223,927 11/21/2020
12.2.27 32,468 11/21/2020
12.2.26 6,004 11/20/2020
12.2.25 134,918 11/17/2020
12.2.24 83,705 11/15/2020
12.2.23 3,327 11/15/2020
12.2.22 3,540 11/14/2020
12.2.21 9,452 11/12/2020
12.2.20 7,176 11/12/2020
12.2.19 98,511 11/5/2020
12.2.7 859,407 10/15/2020
12.2.6 39,567 10/15/2020
12.2.5 109,983 10/12/2020
12.2.4 3,342 10/12/2020
12.2.3 51,819 10/12/2020
12.2.2 47,906 10/7/2020
12.2.1 254,896 9/28/2020
12.1.11 5,679 9/28/2020
12.1.10 93,302 9/24/2020
12.1.9 400,569 9/11/2020
12.1.2 3,315 9/11/2020
12.1.1 789,589 8/3/2020
12.0.13 17,006 8/2/2020
12.0.10 101,869 7/25/2020
12.0.9 75,205 7/21/2020
12.0.8 54,822 7/19/2020
12.0.7 2,761 7/19/2020
12.0.6 2,851 7/19/2020
12.0.5 98,878 7/11/2020
12.0.4 91,612 7/2/2020
12.0.3 39,478 6/29/2020
12.0.2 98,954 6/23/2020
12.0.1 51,551 6/20/2020
11.0.18 1,578,308 6/20/2020
11.0.17 33,718 6/19/2020
11.0.16 3,533 6/18/2020
11.0.15 27,508 6/18/2020
11.0.14 3,858 6/17/2020
11.0.13 4,034 6/17/2020
11.0.12 3,330 6/17/2020
11.0.11 3,507 6/17/2020
11.0.10 8,169 6/16/2020
11.0.9 2,725 6/16/2020
11.0.8 2,847 6/16/2020
11.0.7 684,741 5/28/2020
11.0.6 1,337,691 5/8/2020
11.0.5 49,134 5/6/2020
11.0.4 63,464 5/1/2020
11.0.3 6,491 4/30/2020
11.0.2 86,339 4/26/2020
11.0.1 3,545 4/26/2020
10.0.10 36,797 4/20/2020
10.0.9 24,206 4/17/2020
10.0.8 171,371 4/7/2020
10.0.7 23,544 4/3/2020
10.0.6 23,808 4/1/2020
10.0.5 3,373 4/1/2020
10.0.4 3,388 4/1/2020
10.0.1 199,353 3/21/2020
9.0.6 39,814 3/19/2020
9.0.5 77,741 3/16/2020
9.0.4 451,793 2/18/2020
9.0.3 4,104 2/18/2020
9.0.2 28,439 2/11/2020
9.0.1 3,616 2/11/2020
8.1.1 104,403 2/11/2020
8.0.6 3,611 2/11/2020
8.0.5 119,306 1/29/2020
8.0.4 7,276 1/27/2020
8.0.3 194,795 1/19/2020
7.1.10 270,923 1/17/2020
7.1.8 4,158 1/17/2020
7.1.4 91,437 1/13/2020
7.1.3 263,445 1/6/2020
7.1.1 670,161 12/21/2019
7.0.16 20,234 12/19/2019
7.0.15 107,988 12/5/2019
7.0.7 1,223,851 10/21/2019
7.0.5 40,741 10/11/2019
7.0.4 998,961 9/29/2019
6.0.38 120,859 9/26/2019
6.0.36 24,440 9/24/2019
6.0.34 11,512 9/24/2019
6.0.32 94,803 9/9/2019
6.0.27 154,498 9/3/2019
6.0.25 3,898 9/2/2019
6.0.23 74,361 8/26/2019
6.0.21 105,388 8/12/2019
6.0.19 52,256 8/9/2019
6.0.17 50,182 8/5/2019
6.0.15 176,953 7/9/2019
6.0.14 183,020 6/29/2019
6.0.13 4,012 6/28/2019
6.0.11 50,019 6/21/2019
6.0.9 3,810 6/21/2019
6.0.7 37,038 6/16/2019
6.0.6 3,550 6/16/2019
6.0.5 18,804 6/13/2019
6.0.3 37,434 6/13/2019
6.0.1 187,177 6/7/2019
5.0.1 115,107 6/3/2019
4.2.17 20,857 5/30/2019
4.2.15 21,165 5/28/2019
4.2.13 108,954 5/15/2019
4.2.12 6,838 5/15/2019
4.2.10 64,222 5/10/2019
4.2.9 122,140 5/10/2019
4.2.8 142,280 4/28/2019
4.2.4 86,150 4/19/2019
4.1.6 196,752 4/9/2019
4.0.11 195,420 3/30/2019
3.1.1 235,516 3/10/2019
3.0.10 1,384,695 1/5/2019
3.0.2 322,011 12/7/2018
2.2.18-beta 3,096 12/3/2018
2.2.17-beta 2,371 12/2/2018
2.2.16-beta 2,210 12/1/2018
2.2.15-beta 2,316 12/1/2018
2.2.14-beta 2,260 12/1/2018
2.2.13-beta 2,320 12/1/2018
2.2.12-beta 2,383 12/1/2018
2.2.11-beta 2,226 12/1/2018
2.2.10-beta 2,289 11/28/2018
2.2.9-beta 2,522 11/16/2018
2.2.8-beta 13,163 11/9/2018
2.2.7-beta 2,433 11/5/2018
2.2.6-beta 2,411 10/30/2018
2.2.5-beta 2,320 10/30/2018
2.2.4-beta 2,319 10/30/2018
2.2.3-beta 2,269 10/29/2018
2.2.2-beta 2,351 10/25/2018
2.1.0.256 402,021 10/20/2018
2.1.0.247 92,881 10/15/2018
2.1.0.237 26,038 10/14/2018
2.1.0.236 105,673 10/10/2018
2.1.0.235 45,918 10/8/2018
2.1.0.234 3,991 10/8/2018
2.1.0.233 10,631 10/6/2018
2.1.0.232 8,810 10/4/2018
2.1.0.231 56,747 9/19/2018
2.1.0.230 98,632 9/8/2018
2.1.0.229 6,129 9/6/2018
2.1.0.228 135,137 8/27/2018
2.1.0.227 287,618 8/16/2018
2.1.0.226 27,854 8/14/2018
2.1.0.217 5,882 8/10/2018
2.1.0.216 8,545 8/9/2018
2.1.0.215 15,409 8/6/2018
2.1.0.214 4,298 8/5/2018
2.1.0.213 3,874 8/4/2018
2.1.0.211 35,939 7/25/2018
2.1.0.210 8,195 7/21/2018
2.1.0.209 133,066 7/20/2018
2.1.0.208 7,115 7/17/2018
2.1.0.207 4,007 7/17/2018
2.1.0.206 64,333 7/15/2018
2.1.0.205 4,620 7/12/2018
2.1.0.204 4,418 7/11/2018
2.1.0.203 4,163 7/11/2018
2.1.0.202 12,064 7/10/2018
2.1.0.201 6,433 7/10/2018
2.1.0.200 3,920 7/9/2018
2.1.0.199 3,343 7/9/2018
2.1.0.198 4,711 7/8/2018
2.1.0.197 3,398 7/8/2018
2.1.0.196 3,243 7/8/2018
2.1.0.195 3,293 7/7/2018
2.1.0.194 3,412 7/7/2018
2.1.0.193 3,378 7/7/2018
2.1.0.192 10,934 7/7/2018
2.1.0.191 3,363 7/7/2018
2.1.0.190 3,260 7/7/2018
2.1.0.189 3,320 7/7/2018
2.1.0.188 3,210 7/6/2018
2.1.0.187 15,286 7/6/2018
2.1.0.186 36,839 7/6/2018
2.1.0.185 3,480 7/5/2018
2.1.0.184 11,758 7/4/2018
2.1.0.183 3,374 7/4/2018
2.1.0.182 3,119 7/4/2018
2.1.0.181 3,421 7/4/2018
2.1.0.180 3,467 7/4/2018
2.1.0.179 3,398 7/4/2018
2.1.0.178 781,393 1/11/2018
2.1.0.177 15,684 1/2/2018
2.1.0.176 69,202 12/8/2017
2.1.0.175 73,223 11/16/2017
2.1.0.174 193,583 11/7/2017
2.1.0.173 3,648 11/7/2017
2.1.0.172 3,569 11/7/2017
2.1.0.171 4,176 11/4/2017
2.1.0.170 3,827 11/4/2017
2.1.0.169 3,458 11/4/2017
2.1.0.168 3,474 11/4/2017
2.1.0.166 3,579 11/4/2017
2.1.0.164 3,441 11/4/2017
2.1.0.163 3,427 11/4/2017
2.1.0.159 58,988 10/22/2017
2.0.0.144 416,299 5/3/2017
2.0.0.143 342,543 4/7/2017
2.0.0.142 2,603 4/7/2017
2.0.0.141 19,004 3/2/2017
2.0.0.140 37,877 1/17/2017
2.0.0.139 47,612 1/6/2017
2.0.0.138 46,975 11/17/2016
2.0.0.137 32,193 10/14/2016
2.0.0.136 8,341 10/1/2016
2.0.0.124 763,623 2/8/2016
2.0.0.123 28,393 12/29/2015
2.0.0.122 3,051 12/28/2015
2.0.0.121 2,942 12/28/2015
2.0.0.120 9,327 12/6/2015
2.0.0.119 2,964 12/6/2015
2.0.0.118 19,344 11/4/2015
2.0.0.117 8,822 10/19/2015
2.0.0.116 101,261 7/20/2015
2.0.0.115 36,250 5/18/2015
2.0.0.114 2,994 5/18/2015
2.0.0.113 95,554 3/18/2015
2.0.0.112 4,005 3/11/2015
2.0.0.111 3,177 3/11/2015
2.0.0.110 2,814 3/11/2015
2.0.0.109 3,111 3/11/2015
2.0.0.108 5,976 3/4/2015
2.0.0.107 8,590 2/23/2015
2.0.0.106 5,222 2/20/2015
2.0.0.105 3,198 2/19/2015
2.0.0.104 9,540 2/14/2015
2.0.0.103 7,851 2/7/2015
2.0.0.102 3,295 2/7/2015
2.0.0.101 6,539 1/25/2015
2.0.0.100 3,000 1/25/2015
2.0.0.99 2,922 1/25/2015
2.0.0.98 3,639 1/25/2015
1.4.0.93 191,982 1/25/2015
1.4.0.92 77,218 9/29/2014
1.4.0.89 2,868 9/29/2014
1.4.0.88 2,908 9/29/2014
1.4.0.87 16,514 9/21/2014
1.4.0.86 450,830 5/7/2014
1.4.0.85 6,258 4/23/2014
1.4.0.84 6,602 4/7/2014
1.4.0.83 29,780 3/24/2014
1.4.0.82 2,897 3/24/2014
1.4.0.81 12,693 3/17/2014
1.4.0.80 2,871 3/17/2014
1.4.0.79 8,548 3/10/2014
1.4.0.78 5,677 3/2/2014
1.4.0.77 2,993 3/2/2014
1.4.0.76 6,635 2/21/2014
1.4.0.75 3,303 2/20/2014
1.4.0.74 48,617 1/12/2014
1.4.0.73 10,844 12/22/2013
1.4.0.72 8,796 12/1/2013
1.4.0.71 2,892 12/1/2013
1.4.0.70 3,272 11/21/2013
1.4.0.69 3,220 11/20/2013
1.4.0.68 5,143 10/15/2013
1.4.0.67 2,864 10/15/2013
1.4.0.66 48,803 7/31/2013
1.4.0.65 4,979 7/9/2013
1.4.0.64 6,917 4/26/2013
1.4.0.63 2,851 4/26/2013
1.4.0.62 2,931 4/26/2013
1.4.0.61 2,902 4/25/2013
1.4.0.60 2,778 4/25/2013
1.4.0.59 2,843 4/25/2013
1.4.0.58 2,905 4/25/2013
1.4.0.57 2,813 4/25/2013
1.4.0.56 2,859 4/25/2013
1.4.0.55 2,970 4/25/2013
1.4.0.54 2,942 4/25/2013
1.4.0.53 2,814 4/25/2013
1.4.0.52 2,957 4/25/2013
1.4.0.51 2,902 4/22/2013
1.4.0.50 2,806 4/22/2013
1.4.0.49 4,178 4/11/2013
1.4.0.48 3,909 3/24/2013
1.4.0.47 2,862 3/24/2013
1.4.0.46 2,928 3/24/2013
1.4.0.45 2,942 3/24/2013
1.4.0.44 4,180 3/16/2013
1.4.0.43 2,758 3/16/2013
1.4.0.42 2,894 3/16/2013
1.4.0.41 3,059 3/6/2013
1.4.0.40 6,535 12/24/2012
1.4.0.39 2,826 12/23/2012
1.4.0.38 2,843 12/23/2012
1.4.0.37 4,074 11/29/2012
1.4.0.36 2,908 11/29/2012
1.4.0.35 4,376 9/25/2012
1.4.0.34 2,884 9/25/2012
1.4.0.33 2,931 9/25/2012
1.4.0.32 8,772 7/14/2012
1.4.0.31 2,971 7/14/2012
1.4.0.30 2,851 7/12/2012
1.4.0.29 2,897 7/12/2012
1.4.0.28 2,871 7/12/2012
1.4.0.27 2,858 7/12/2012
1.4.0.26 2,981 7/2/2012
1.4.0.25 2,875 7/2/2012
1.4.0.24 5,070 5/15/2012
1.4.0.23 4,263 4/25/2012
1.4.0.22 2,843 4/25/2012
1.4.0.21 2,821 4/25/2012
1.4.0.20 3,662 4/18/2012
1.4.0.19 2,893 4/18/2012
1.4.0.18 2,957 4/18/2012
1.4.0.17 3,011 4/18/2012
1.4.0.14 2,892 4/4/2012
1.4.0.13 3,337 3/27/2012
1.4.0.12 3,744 9/16/2011
1.4.0.11 3,238 9/16/2011
1.3.0 4,059 5/27/2011
1.2.0 90,072 5/26/2011