Soenneker.Utils.MemoryStream 2.1.60

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

// Install Soenneker.Utils.MemoryStream as a Cake Tool
#tool nuget:?package=Soenneker.Utils.MemoryStream&version=2.1.60                

alternate text is missing from this package README image alternate text is missing from this package README image alternate text is missing from this package README image

alternate text is missing from this package README image Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

A library for management and simple access of RecyclableMemoryStreamManager

Installation

Install-Package Soenneker.Utils.MemoryStream

Usage

  1. Register the interop within DI (Program.cs).
public static async Task Main(string[] args)
{
    ...
    builder.Services.AddMemoryStreamUtil();
}
  1. Inject IMemoryStreamUtil wherever you need MemoryStream services

  2. Retrieve a fresh MemoryStream from

Example:

public class TestClass{

    IMemoryStreamUtil _memoryStreamUtil;

    public TestClass(IMemoryStreamUtil memoryStreamUtil)
    {
        _memoryStreamUtil = memoryStreamUtil;
    }

    public async ValueTask<MemoryStream> ReadFileIntoMemoryStream(string path)
    {
        MemoryStream memoryStream = await _memoryStreamUtil.Get(); // .GetSync() is also available

        FileStream fileStream = File.OpenRead(path);

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

NuGet packages (4)

Showing the top 4 NuGet packages that depend on Soenneker.Utils.MemoryStream:

Package Downloads
Soenneker.Utils.File

A utility library encapsulating asynchronous file IO operations

Soenneker.Cosmos.Serializer

A fast, lightweight JSON (de)serializer for Azure Cosmos DB

Soenneker.Blob.Download

A utility library for Azure Blob download operations

Soenneker.Blob.Upload

A utility library for Azure Blob upload operations

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.1056 0 1/18/2025
3.0.1055 73 1/18/2025
3.0.1054 56 1/18/2025
3.0.1053 203 1/18/2025
3.0.1052 266 1/17/2025
3.0.1051 237 1/17/2025
3.0.1050 331 1/17/2025
3.0.1049 149 1/17/2025
3.0.1048 68 1/16/2025
3.0.1047 2,105 1/16/2025
3.0.1046 572 1/16/2025
3.0.1045 868 1/16/2025
3.0.1044 732 1/16/2025
3.0.1043 165 1/16/2025
3.0.1042 123 1/15/2025
3.0.1041 1,245 1/15/2025
3.0.1040 174 1/15/2025
3.0.1039 320 1/15/2025
3.0.1038 1,177 1/15/2025
3.0.1037 30 1/15/2025
3.0.1036 125 1/15/2025
3.0.1035 394 1/15/2025
3.0.1034 309 1/15/2025
3.0.1033 18 1/15/2025
3.0.1032 649 1/15/2025
3.0.1031 13 1/15/2025
3.0.1030 209 1/14/2025
3.0.1029 27 1/14/2025
3.0.1028 11 1/14/2025
3.0.1027 768 1/14/2025
3.0.1026 3,581 1/13/2025
3.0.1025 2,360 1/13/2025
3.0.1024 139 1/12/2025
3.0.1023 3,927 1/11/2025
3.0.1022 848 1/11/2025
3.0.1021 618 1/11/2025
3.0.1020 121 1/10/2025
3.0.1019 46 1/10/2025
3.0.1018 2,132 1/10/2025
3.0.1017 193 1/10/2025
3.0.1016 44 1/10/2025
3.0.1015 1,455 1/10/2025
3.0.1014 46 1/10/2025
3.0.1013 3,975 1/8/2025
3.0.1012 1,664 1/3/2025
3.0.1011 938 1/3/2025
3.0.1010 2,308 1/2/2025
3.0.1009 95 1/2/2025
3.0.1008 102 1/2/2025
3.0.1007 1,221 1/2/2025
3.0.1006 93 1/2/2025
3.0.1005 93 1/2/2025
3.0.1004 653 1/1/2025
3.0.1003 179 1/1/2025
3.0.1002 176 1/1/2025
3.0.1001 187 1/1/2025
3.0.1000 94 1/1/2025
3.0.999 4,685 12/31/2024
3.0.998 88 12/31/2024
3.0.997 627 12/31/2024
3.0.995 3,557 12/31/2024
3.0.994 900 12/31/2024
3.0.993 3,728 12/31/2024
3.0.992 258 12/31/2024
3.0.991 451 12/31/2024
3.0.990 3,580 12/31/2024
3.0.989 77 12/31/2024
3.0.988 86 12/31/2024
3.0.987 85 12/31/2024
3.0.986 2,677 12/31/2024
3.0.985 6,681 12/28/2024
3.0.984 1,572 12/27/2024
3.0.983 6,441 12/24/2024
3.0.982 335 12/24/2024
3.0.981 319 12/24/2024
3.0.980 599 12/24/2024
3.0.979 1,383 12/24/2024
3.0.978 78 12/24/2024
3.0.977 322 12/24/2024
3.0.976 161 12/24/2024
3.0.975 389 12/23/2024
3.0.974 398 12/23/2024
3.0.973 155 12/23/2024
3.0.972 322 12/23/2024
3.0.971 320 12/23/2024
3.0.970 471 12/22/2024
3.0.969 8,953 12/22/2024
3.0.968 5,379 12/22/2024
3.0.967 1,046 12/22/2024
3.0.966 80 12/22/2024
3.0.965 4,639 12/22/2024
3.0.964 80 12/22/2024
3.0.963 507 12/21/2024
3.0.962 85 12/21/2024
3.0.961 79 12/21/2024
3.0.960 1,512 12/21/2024
3.0.959 78 12/21/2024
3.0.958 2,650 12/21/2024
3.0.957 1,583 12/21/2024
3.0.956 86 12/21/2024
3.0.955 1,222 12/21/2024
3.0.954 1,750 12/21/2024
3.0.953 82 12/21/2024
3.0.952 217 12/21/2024
3.0.951 532 12/20/2024
3.0.950 81 12/20/2024
3.0.949 129 12/20/2024
3.0.948 78 12/20/2024
3.0.947 1,990 12/20/2024
3.0.946 1,480 12/20/2024
3.0.945 1,128 12/20/2024
3.0.944 4,306 12/20/2024
3.0.943 144 12/19/2024
3.0.942 81 12/19/2024
3.0.941 82 12/19/2024
3.0.939 6,511 12/17/2024
3.0.937 235 12/17/2024
3.0.936 94 12/17/2024
3.0.935 860 12/17/2024
3.0.934 261 12/17/2024
3.0.933 75 12/17/2024
3.0.932 116 12/16/2024
3.0.931 86 12/16/2024
3.0.930 864 12/16/2024
3.0.929 5,073 12/10/2024
3.0.928 81 12/10/2024
3.0.927 1,212 12/9/2024
3.0.926 84 12/9/2024
3.0.925 2,369 12/9/2024
3.0.924 322 12/9/2024
3.0.923 373 12/9/2024
3.0.922 83 12/9/2024
3.0.921 5,794 12/6/2024
3.0.920 85 12/6/2024
3.0.919 726 12/6/2024
3.0.918 2,033 12/6/2024
3.0.917 2,586 12/6/2024
3.0.916 1,061 12/6/2024
3.0.914 1,903 12/6/2024
3.0.913 88 12/6/2024
3.0.912 87 12/6/2024
3.0.911 4,664 12/5/2024
3.0.910 91 12/5/2024
3.0.909 200 12/5/2024
3.0.908 89 12/5/2024
3.0.907 3,669 12/5/2024
3.0.906 1,781 12/5/2024
3.0.905 175 12/5/2024
3.0.904 90 12/5/2024
3.0.903 878 12/5/2024
3.0.902 88 12/5/2024
3.0.901 2,405 12/4/2024
3.0.900 85 12/4/2024
3.0.899 86 12/4/2024
3.0.898 1,764 12/4/2024
3.0.897 88 12/4/2024
3.0.896 92 12/4/2024
3.0.895 1,402 12/4/2024
3.0.894 86 12/4/2024
3.0.893 85 12/4/2024
3.0.892 826 12/4/2024
3.0.891 1,880 12/4/2024
3.0.890 2,176 12/3/2024
3.0.889 91 12/3/2024
3.0.888 90 12/3/2024
3.0.887 970 12/3/2024
3.0.886 91 12/3/2024
3.0.885 1,429 12/3/2024
3.0.884 94 12/3/2024
3.0.883 2,540 12/3/2024
3.0.882 271 12/3/2024
3.0.881 81 12/3/2024
3.0.880 1,127 12/3/2024
3.0.879 81 12/3/2024
3.0.878 79 12/3/2024
3.0.877 2,337 12/2/2024
3.0.876 774 12/2/2024
3.0.875 88 12/2/2024
3.0.874 2,694 12/2/2024
3.0.873 86 12/2/2024
3.0.872 449 12/1/2024
3.0.871 88 12/1/2024
3.0.870 98 12/1/2024
3.0.869 2,516 12/1/2024
3.0.868 103 12/1/2024
3.0.867 83 12/1/2024
3.0.866 3,954 12/1/2024
3.0.865 723 12/1/2024
3.0.864 2,719 11/29/2024
3.0.863 328 11/29/2024
3.0.862 4,285 11/20/2024
3.0.861 86 11/20/2024
3.0.860 3,815 11/20/2024
3.0.859 262 11/20/2024
3.0.858 99 11/20/2024
3.0.857 89 11/20/2024
3.0.856 333 11/20/2024
3.0.855 282 11/20/2024
3.0.854 342 11/20/2024
3.0.853 332 11/19/2024
3.0.852 82 11/19/2024
3.0.851 84 11/19/2024
3.0.850 739 11/19/2024
3.0.849 80 11/19/2024
3.0.848 2,778 11/19/2024
3.0.847 549 11/19/2024
3.0.846 76 11/19/2024
3.0.845 2,455 11/19/2024
3.0.844 79 11/19/2024
3.0.843 76 11/19/2024
3.0.842 7,212 11/14/2024
3.0.841 139 11/14/2024
3.0.840 954 11/14/2024
3.0.839 883 11/14/2024
3.0.838 86 11/14/2024
3.0.837 800 11/14/2024
3.0.836 85 11/14/2024
3.0.835 2,589 11/14/2024
3.0.834 89 11/14/2024
3.0.833 88 11/14/2024
3.0.832 655 11/14/2024
3.0.831 86 11/14/2024
3.0.830 89 11/14/2024
3.0.829 94 11/14/2024
3.0.828 93 11/14/2024
3.0.827 92 11/14/2024
2.1.826 1,892 11/13/2024
2.1.825 8,592 11/13/2024
2.1.824 83 11/13/2024
2.1.823 1,079 11/13/2024
2.1.822 90 11/13/2024
2.1.821 1,149 11/12/2024
2.1.820 91 11/12/2024
2.1.819 940 11/12/2024
2.1.818 6,928 11/9/2024
2.1.817 401 11/9/2024
2.1.816 102 11/9/2024
2.1.815 93 11/9/2024
2.1.814 1,258 11/9/2024
2.1.813 690 11/8/2024
2.1.812 84 11/8/2024
2.1.811 1,102 11/8/2024
2.1.810 88 11/8/2024
2.1.809 127 11/8/2024
2.1.808 88 11/8/2024
2.1.807 241 11/8/2024
2.1.806 3,062 11/8/2024
2.1.805 82 11/8/2024
2.1.804 3,496 11/8/2024
2.1.803 87 11/8/2024
2.1.802 11,398 11/1/2024
2.1.801 567 10/31/2024
2.1.800 4,496 10/29/2024
2.1.799 370 10/29/2024
2.1.798 868 10/29/2024
2.1.797 127 10/29/2024
2.1.796 1,619 10/29/2024
2.1.795 81 10/29/2024
2.1.794 6,095 10/28/2024
2.1.793 86 10/28/2024
2.1.792 2,113 10/28/2024
2.1.791 4,276 10/26/2024
2.1.790 87 10/26/2024
2.1.789 4,352 10/22/2024
2.1.788 888 10/22/2024
2.1.787 605 10/22/2024
2.1.786 94 10/22/2024
2.1.785 84 10/22/2024
2.1.784 2,519 10/22/2024
2.1.783 5,256 10/17/2024
2.1.782 2,009 10/17/2024
2.1.781 3,268 10/15/2024
2.1.780 457 10/14/2024
2.1.779 87 10/14/2024
2.1.778 5,253 10/11/2024
2.1.777 1,961 10/11/2024
2.1.776 85 10/11/2024
2.1.775 1,540 10/11/2024
2.1.774 5,552 10/9/2024
2.1.773 1,740 10/9/2024
2.1.772 427 10/8/2024
2.1.771 92 10/8/2024
2.1.770 1,487 10/8/2024
2.1.769 99 10/8/2024
2.1.768 4,340 10/8/2024
2.1.767 397 10/8/2024
2.1.766 7,230 10/3/2024
2.1.765 83 10/3/2024
2.1.764 1,506 10/3/2024
2.1.763 602 10/3/2024
2.1.762 88 10/3/2024
2.1.761 5,950 10/2/2024
2.1.760 453 10/2/2024
2.1.759 1,648 10/2/2024
2.1.758 101 10/2/2024
2.1.757 3,730 10/1/2024
2.1.756 3,816 10/1/2024
2.1.755 81 10/1/2024
2.1.754 544 10/1/2024
2.1.753 3,252 10/1/2024
2.1.752 257 10/1/2024
2.1.751 405 9/30/2024
2.1.750 2,614 9/30/2024
2.1.749 2,876 9/29/2024
2.1.748 1,733 9/29/2024
2.1.747 84 9/29/2024
2.1.746 480 9/29/2024
2.1.745 1,057 9/29/2024
2.1.744 91 9/29/2024
2.1.743 4,527 9/27/2024
2.1.742 519 9/27/2024
2.1.741 2,243 9/27/2024
2.1.740 88 9/27/2024
2.1.739 322 9/27/2024
2.1.738 528 9/27/2024
2.1.737 110 9/27/2024
2.1.736 87 9/27/2024
2.1.735 4,482 9/27/2024
2.1.734 3,630 9/26/2024
2.1.733 362 9/26/2024
2.1.732 5,929 9/26/2024
2.1.731 131 9/26/2024
2.1.730 1,382 9/26/2024
2.1.729 2,114 9/26/2024
2.1.728 6,881 9/23/2024
2.1.727 462 9/23/2024
2.1.726 765 9/23/2024
2.1.725 942 9/23/2024
2.1.724 1,044 9/23/2024
2.1.723 98 9/23/2024
2.1.722 3,505 9/23/2024
2.1.721 90 9/23/2024
2.1.720 3,044 9/23/2024
2.1.719 97 9/23/2024
2.1.718 736 9/23/2024
2.1.717 94 9/23/2024
2.1.716 91 9/23/2024
2.1.715 853 9/23/2024
2.1.714 85 9/23/2024
2.1.713 93 9/23/2024
2.1.712 2,728 9/23/2024
2.1.711 88 9/23/2024
2.1.710 6,450 9/18/2024
2.1.709 958 9/17/2024
2.1.708 758 9/17/2024
2.1.707 99 9/17/2024
2.1.706 417 9/17/2024
2.1.705 989 9/17/2024
2.1.704 223 9/17/2024
2.1.703 1,984 9/17/2024
2.1.702 105 9/17/2024
2.1.701 2,742 9/17/2024
2.1.700 1,944 9/17/2024
2.1.699 1,134 9/17/2024
2.1.698 1,879 9/17/2024
2.1.697 10,046 9/16/2024
2.1.696 101 9/16/2024
2.1.695 4,107 9/12/2024
2.1.694 107 9/12/2024
2.1.693 993 9/11/2024
2.1.692 182 9/11/2024
2.1.690 5,369 9/11/2024
2.1.689 314 9/11/2024
2.1.688 1,667 9/11/2024
2.1.687 3,271 9/11/2024
2.1.686 7,869 9/10/2024
2.1.685 374 9/10/2024
2.1.684 617 9/10/2024
2.1.683 418 9/10/2024
2.1.682 105 9/10/2024
2.1.681 600 9/9/2024
2.1.680 105 9/9/2024
2.1.679 325 9/9/2024
2.1.678 3,382 9/9/2024
2.1.677 91 9/9/2024
2.1.676 756 9/9/2024
2.1.675 132 9/9/2024
2.1.674 535 9/9/2024
2.1.673 3,619 9/9/2024
2.1.672 105 9/9/2024
2.1.671 225 9/9/2024
2.1.670 105 9/9/2024
2.1.669 96 9/9/2024
2.1.668 10,523 9/7/2024
2.1.667 1,806 9/6/2024
2.1.666 4,670 9/6/2024
2.1.665 101 9/6/2024
2.1.664 1,820 9/5/2024
2.1.663 1,093 9/5/2024
2.1.662 88 9/5/2024
2.1.661 99 9/5/2024
2.1.660 2,072 9/5/2024
2.1.659 2,345 9/5/2024
2.1.658 113 9/5/2024
2.1.657 103 9/5/2024
2.1.656 561 9/5/2024
2.1.655 109 9/5/2024
2.1.654 111 9/5/2024
2.1.653 4,467 9/5/2024
2.1.652 110 9/5/2024
2.1.651 3,571 9/4/2024
2.1.650 3,773 9/4/2024
2.1.649 4,066 9/3/2024
2.1.648 108 9/3/2024
2.1.647 2,994 9/3/2024
2.1.646 95 9/3/2024
2.1.645 2,154 9/3/2024
2.1.644 1,413 9/3/2024
2.1.643 82 9/3/2024
2.1.642 4,668 8/29/2024
2.1.641 95 8/29/2024
2.1.640 4,519 8/26/2024
2.1.639 1,130 8/26/2024
2.1.638 4,191 8/21/2024
2.1.637 231 8/21/2024
2.1.636 1,458 8/21/2024
2.1.635 127 8/21/2024
2.1.634 986 8/20/2024
2.1.633 116 8/20/2024
2.1.632 132 8/20/2024
2.1.631 2,064 8/20/2024
2.1.630 1,127 8/20/2024
2.1.629 112 8/20/2024
2.1.628 96 8/20/2024
2.1.627 107 8/20/2024
2.1.626 2,364 8/20/2024
2.1.625 112 8/20/2024
2.1.624 4,353 8/20/2024
2.1.623 2,146 8/19/2024
2.1.622 4,714 8/15/2024
2.1.621 646 8/15/2024
2.1.620 5,945 8/13/2024
2.1.619 582 8/13/2024
2.1.618 4,794 8/7/2024
2.1.617 395 8/6/2024
2.1.616 2,880 8/6/2024
2.1.615 81 8/6/2024
2.1.614 3,550 8/1/2024
2.1.613 482 8/1/2024
2.1.611 311 8/1/2024
2.1.610 274 8/1/2024
2.1.609 6,623 7/25/2024
2.1.608 262 7/25/2024
2.1.607 490 7/25/2024
2.1.606 94 7/25/2024
2.1.605 669 7/25/2024
2.1.604 77 7/25/2024
2.1.603 146 7/24/2024
2.1.602 389 7/24/2024
2.1.601 202 7/24/2024
2.1.600 1,032 7/24/2024
2.1.599 2,469 7/24/2024
2.1.598 1,816 7/20/2024
2.1.597 4,009 7/20/2024
2.1.596 5,270 7/14/2024
2.1.595 94 7/14/2024
2.1.594 2,849 7/14/2024
2.1.593 78 7/14/2024
2.1.592 458 7/14/2024
2.1.591 3,822 7/10/2024
2.1.590 262 7/10/2024
2.1.589 615 7/10/2024
2.1.588 78 7/10/2024
2.1.587 2,104 7/10/2024
2.1.586 74 7/10/2024
2.1.585 69 7/10/2024
2.1.584 68 7/10/2024
2.1.583 1,011 7/10/2024
2.1.582 68 7/10/2024
2.1.581 140 7/10/2024
2.1.580 82 7/10/2024
2.1.579 78 7/10/2024
2.1.578 923 7/10/2024
2.1.577 84 7/10/2024
2.1.576 847 7/10/2024
2.1.575 91 7/10/2024
2.1.574 83 7/10/2024
2.1.573 518 7/9/2024
2.1.572 92 7/9/2024
2.1.569 790 7/9/2024
2.1.568 73 7/9/2024
2.1.567 695 7/9/2024
2.1.566 84 7/9/2024
2.1.565 4,733 7/9/2024
2.1.564 88 7/9/2024
2.1.563 94 7/9/2024
2.1.562 4,835 7/9/2024
2.1.561 80 7/9/2024
2.1.560 86 7/9/2024
2.1.559 1,395 7/9/2024
2.1.558 369 7/9/2024
2.1.557 91 7/9/2024
2.1.556 2,611 7/8/2024
2.1.555 88 7/8/2024
2.1.554 87 7/8/2024
2.1.553 508 7/8/2024
2.1.552 87 7/8/2024
2.1.551 78 7/8/2024
2.1.550 5,271 7/8/2024
2.1.549 91 7/8/2024
2.1.548 166 7/8/2024
2.1.547 2,217 7/7/2024
2.1.546 1,695 7/7/2024
2.1.545 90 7/7/2024
2.1.544 527 7/7/2024
2.1.543 83 7/7/2024
2.1.542 1,023 7/7/2024
2.1.541 269 7/7/2024
2.1.540 91 7/7/2024
2.1.539 86 7/7/2024
2.1.538 1,536 7/7/2024
2.1.537 5,861 7/4/2024
2.1.536 939 7/3/2024
2.1.535 1,670 7/3/2024
2.1.534 2,032 7/3/2024
2.1.533 89 7/3/2024
2.1.532 647 7/3/2024
2.1.531 2,498 7/3/2024
2.1.530 662 7/3/2024
2.1.529 2,222 6/30/2024
2.1.528 1,496 6/28/2024
2.1.527 5,006 6/22/2024
2.1.526 98 6/22/2024
2.1.525 5,852 6/15/2024
2.1.524 91 6/15/2024
2.1.523 2,114 6/15/2024
2.1.522 3,474 6/14/2024
2.1.521 101 6/14/2024
2.1.520 1,667 6/14/2024
2.1.519 2,199 6/12/2024
2.1.518 4,319 6/1/2024
2.1.517 507 6/1/2024
2.1.516 857 6/1/2024
2.1.515 456 6/1/2024
2.1.514 102 6/1/2024
2.1.513 1,617 6/1/2024
2.1.512 4,344 5/31/2024
2.1.511 104 5/31/2024
2.1.510 3,852 5/29/2024
2.1.509 93 5/29/2024
2.1.508 4,612 5/28/2024
2.1.507 79 5/28/2024
2.1.506 2,714 5/27/2024
2.1.505 79 5/27/2024
2.1.504 78 5/27/2024
2.1.503 1,233 5/27/2024
2.1.502 3,206 5/26/2024
2.1.501 83 5/26/2024
2.1.500 4,629 5/26/2024
2.1.499 86 5/26/2024
2.1.498 1,188 5/26/2024
2.1.497 208 5/25/2024
2.1.496 87 5/25/2024
2.1.495 1,244 5/25/2024
2.1.494 93 5/25/2024
2.1.493 91 5/25/2024
2.1.492 87 5/25/2024
2.1.491 1,889 5/25/2024
2.1.490 87 5/25/2024
2.1.489 93 5/25/2024
2.1.488 1,103 5/25/2024
2.1.487 82 5/25/2024
2.1.486 96 5/25/2024
2.1.485 979 5/25/2024
2.1.484 90 5/25/2024
2.1.483 88 5/25/2024
2.1.482 6,180 5/23/2024
2.1.481 465 5/23/2024
2.1.480 1,653 5/23/2024
2.1.479 90 5/23/2024
2.1.478 1,230 5/23/2024
2.1.477 83 5/23/2024
2.1.476 99 5/22/2024
2.1.475 93 5/22/2024
2.1.474 88 5/22/2024
2.1.473 1,717 5/22/2024
2.1.472 88 5/22/2024
2.1.471 85 5/22/2024
2.1.470 978 5/22/2024
2.1.469 91 5/22/2024
2.1.468 3,967 5/22/2024
2.1.467 3,560 5/18/2024
2.1.466 138 5/18/2024
2.1.465 986 5/17/2024
2.1.464 109 5/17/2024
2.1.463 1,699 5/17/2024
2.1.462 113 5/17/2024
2.1.461 111 5/17/2024
2.1.460 3,232 5/16/2024
2.1.459 199 5/16/2024
2.1.458 109 5/16/2024
2.1.457 1,544 5/15/2024
2.1.456 1,194 5/15/2024
2.1.455 115 5/15/2024
2.1.454 5,131 5/13/2024
2.1.453 82 5/13/2024
2.1.452 3,239 5/3/2024
2.1.451 2,917 4/30/2024
2.1.450 376 4/29/2024
2.1.449 1,584 4/29/2024
2.1.448 112 4/29/2024
2.1.447 3,297 4/29/2024
2.1.446 109 4/28/2024
2.1.445 107 4/28/2024
2.1.444 483 4/28/2024
2.1.443 118 4/28/2024
2.1.442 1,640 4/28/2024
2.1.441 108 4/28/2024
2.1.440 99 4/28/2024
2.1.439 3,239 4/28/2024
2.1.438 106 4/28/2024
2.1.437 1,665 4/28/2024
2.1.436 115 4/28/2024
2.1.435 113 4/28/2024
2.1.434 453 4/28/2024
2.1.433 106 4/28/2024
2.1.432 103 4/28/2024
2.1.431 2,572 4/27/2024
2.1.430 114 4/27/2024
2.1.429 6,219 4/19/2024
2.1.428 110 4/19/2024
2.1.427 3,494 4/19/2024
2.1.426 865 4/18/2024
2.1.425 3,722 4/15/2024
2.1.424 2,404 4/12/2024
2.1.423 1,780 4/12/2024
2.1.422 1,485 4/12/2024
2.1.421 102 4/12/2024
2.1.420 1,939 4/12/2024
2.1.419 124 4/12/2024
2.1.418 702 4/12/2024
2.1.417 591 4/11/2024
2.1.416 7,714 4/10/2024
2.1.415 108 4/10/2024
2.1.414 2,140 4/9/2024
2.1.413 3,529 4/2/2024
2.1.412 118 4/2/2024
2.1.411 330 4/1/2024
2.1.410 107 4/1/2024
2.1.409 230 4/1/2024
2.1.408 5,653 3/29/2024
2.1.407 1,196 3/29/2024
2.1.406 3,012 3/25/2024
2.1.405 112 3/25/2024
2.1.404 809 3/25/2024
2.1.403 1,443 3/25/2024
2.1.402 3,696 3/20/2024
2.1.401 120 3/20/2024
2.1.400 3,644 3/19/2024
2.1.399 126 3/19/2024
2.1.398 1,664 3/19/2024
2.1.397 128 3/19/2024
2.1.396 1,319 3/19/2024
2.1.395 1,410 3/18/2024
2.1.394 944 3/18/2024
2.1.393 4,112 3/15/2024
2.1.392 122 3/15/2024
2.1.391 3,590 3/13/2024
2.1.390 553 3/13/2024
2.1.389 426 3/13/2024
2.1.388 121 3/13/2024
2.1.387 1,543 3/13/2024
2.1.386 334 3/13/2024
2.1.385 128 3/13/2024
2.1.384 127 3/13/2024
2.1.383 2,798 3/13/2024
2.1.382 122 3/13/2024
2.1.381 207 3/12/2024
2.1.380 116 3/12/2024
2.1.379 2,755 3/12/2024
2.1.378 118 3/12/2024
2.1.377 3,999 3/11/2024
2.1.376 350 3/11/2024
2.1.375 3,308 3/11/2024
2.1.374 201 3/11/2024
2.1.373 2,834 3/10/2024
2.1.372 1,372 3/10/2024
2.1.371 3,246 3/8/2024
2.1.370 130 3/8/2024
2.1.369 1,814 3/8/2024
2.1.368 1,307 3/8/2024
2.1.367 112 3/8/2024
2.1.366 2,024 3/8/2024
2.1.365 2,033 3/6/2024
2.1.364 388 3/6/2024
2.1.363 3,533 3/4/2024
2.1.362 123 3/4/2024
2.1.361 1,718 3/4/2024
2.1.360 122 3/4/2024
2.1.359 2,271 3/3/2024
2.1.358 2,149 3/3/2024
2.1.357 200 3/2/2024
2.1.356 126 3/2/2024
2.1.355 1,890 3/2/2024
2.1.354 124 3/2/2024
2.1.353 14,022 2/25/2024
2.1.352 1,219 2/25/2024
2.1.351 118 2/25/2024
2.1.350 436 2/25/2024
2.1.349 1,811 2/25/2024
2.1.348 1,695 2/23/2024
2.1.347 533 2/23/2024
2.1.346 3,701 2/22/2024
2.1.345 108 2/22/2024
2.1.344 778 2/22/2024
2.1.343 190 2/22/2024
2.1.342 115 2/22/2024
2.1.341 2,173 2/21/2024
2.1.340 115 2/21/2024
2.1.339 1,952 2/21/2024
2.1.338 120 2/21/2024
2.1.337 112 2/21/2024
2.1.336 113 2/21/2024
2.1.335 1,903 2/21/2024
2.1.334 706 2/21/2024
2.1.333 105 2/21/2024
2.1.332 103 2/21/2024
2.1.331 1,716 2/21/2024
2.1.330 1,902 2/21/2024
2.1.329 111 2/21/2024
2.1.328 110 2/21/2024
2.1.327 126 2/21/2024
2.1.326 2,527 2/20/2024
2.1.325 113 2/20/2024
2.1.324 2,117 2/20/2024
2.1.323 113 2/20/2024
2.1.322 1,974 2/20/2024
2.1.321 110 2/20/2024
2.1.320 110 2/20/2024
2.1.319 873 2/20/2024
2.1.318 286 2/19/2024
2.1.317 3,288 2/19/2024
2.1.316 115 2/19/2024
2.1.315 2,205 2/19/2024
2.1.314 2,465 2/17/2024
2.1.313 111 2/17/2024
2.1.312 1,427 2/17/2024
2.1.311 107 2/17/2024
2.1.310 284 2/17/2024
2.1.309 840 2/16/2024
2.1.308 103 2/16/2024
2.1.307 106 2/16/2024
2.1.306 156 2/16/2024
2.1.305 111 2/16/2024
2.1.304 2,078 2/16/2024
2.1.303 111 2/16/2024
2.1.302 2,615 2/16/2024
2.1.301 112 2/16/2024
2.1.300 117 2/16/2024
2.1.299 246 2/16/2024
2.1.298 114 2/16/2024
2.1.297 1,267 2/16/2024
2.1.296 109 2/16/2024
2.1.295 3,642 2/14/2024
2.1.294 1,524 2/13/2024
2.1.293 112 2/13/2024
2.1.292 1,434 2/13/2024
2.1.291 1,719 2/13/2024
2.1.290 963 2/13/2024
2.1.289 119 2/13/2024
2.1.288 1,875 2/13/2024
2.1.287 1,183 2/13/2024
2.1.286 124 2/13/2024
2.1.285 3,170 2/12/2024
2.1.284 119 2/12/2024
2.1.283 1,800 2/11/2024
2.1.282 2,064 2/11/2024
2.1.281 119 2/11/2024
2.1.280 1,958 2/11/2024
2.1.279 1,330 2/11/2024
2.1.278 3,523 2/10/2024
2.1.277 347 2/10/2024
2.1.276 120 2/10/2024
2.1.275 1,158 2/9/2024
2.1.274 2,937 2/9/2024
2.1.273 118 2/9/2024
2.1.272 2,307 2/9/2024
2.1.271 629 2/9/2024
2.1.270 139 2/8/2024
2.1.269 115 2/8/2024
2.1.268 3,293 2/8/2024
2.1.267 125 2/8/2024
2.1.266 583 2/8/2024
2.1.265 7,698 2/8/2024
2.1.264 1,390 2/8/2024
2.1.263 122 2/8/2024
2.1.262 4,088 2/7/2024
2.1.261 127 2/7/2024
2.1.260 865 2/7/2024
2.1.259 1,981 2/7/2024
2.1.258 590 2/7/2024
2.1.257 125 2/7/2024
2.1.256 129 2/7/2024
2.1.255 232 2/7/2024
2.1.254 116 2/7/2024
2.1.253 118 2/7/2024
2.1.252 629 2/6/2024
2.1.251 119 2/6/2024
2.1.250 978 2/6/2024
2.1.249 122 2/6/2024
2.1.248 124 2/6/2024
2.1.247 134 2/6/2024
2.1.246 6,163 2/5/2024
2.1.245 211 2/5/2024
2.1.244 1,593 2/4/2024
2.1.243 1,853 2/4/2024
2.1.242 681 2/4/2024
2.1.241 3,350 2/2/2024
2.1.240 118 2/2/2024
2.1.239 4,385 1/31/2024
2.1.238 113 1/31/2024
2.1.237 4,543 1/29/2024
2.1.236 107 1/29/2024
2.1.235 1,999 1/29/2024
2.1.234 108 1/29/2024
2.1.233 1,029 1/29/2024
2.1.232 110 1/29/2024
2.1.231 1,698 1/28/2024
2.1.230 1,917 1/28/2024
2.1.229 115 1/28/2024
2.1.228 1,218 1/28/2024
2.1.227 1,950 1/28/2024
2.1.226 115 1/28/2024
2.1.225 2,004 1/28/2024
2.1.224 113 1/28/2024
2.1.223 435 1/28/2024
2.1.222 1,797 1/27/2024
2.1.221 111 1/27/2024
2.1.220 374 1/27/2024
2.1.219 3,173 1/27/2024
2.1.218 972 1/27/2024
2.1.217 108 1/27/2024
2.1.216 631 1/27/2024
2.1.215 110 1/27/2024
2.1.214 3,968 1/27/2024
2.1.213 1,916 1/27/2024
2.1.212 119 1/27/2024
2.1.211 1,134 1/26/2024
2.1.210 108 1/26/2024
2.1.209 1,085 1/26/2024
2.1.208 107 1/26/2024
2.1.207 800 1/26/2024
2.1.206 487 1/26/2024
2.1.205 3,261 1/26/2024
2.1.204 107 1/26/2024
2.1.203 2,063 1/26/2024
2.1.202 105 1/26/2024
2.1.201 2,445 1/25/2024
2.1.200 102 1/25/2024
2.1.199 1,846 1/25/2024
2.1.198 278 1/25/2024
2.1.197 108 1/25/2024
2.1.196 4,616 1/25/2024
2.1.195 107 1/25/2024
2.1.194 4,704 1/19/2024
2.1.193 116 1/19/2024
2.1.192 4,018 1/16/2024
2.1.191 1,741 1/15/2024
2.1.190 121 1/15/2024
2.1.189 342 1/15/2024
2.1.188 115 1/15/2024
2.1.187 118 1/15/2024
2.1.186 2,152 1/15/2024
2.1.185 125 1/15/2024
2.1.184 1,916 1/15/2024
2.1.183 120 1/15/2024
2.1.182 119 1/15/2024
2.1.181 3,591 1/15/2024
2.1.180 129 1/15/2024
2.1.179 3,456 1/14/2024
2.1.178 126 1/14/2024
2.1.177 4,649 1/13/2024
2.1.176 140 1/13/2024
2.1.175 3,291 1/12/2024
2.1.174 116 1/12/2024
2.1.173 3,851 1/11/2024
2.1.172 518 1/11/2024
2.1.171 4,896 1/7/2024
2.1.170 129 1/7/2024
2.1.169 1,239 1/7/2024
2.1.168 3,100 1/5/2024
2.1.167 1,548 1/5/2024
2.1.166 123 1/5/2024
2.1.165 101 1/5/2024
2.1.164 115 1/5/2024
2.1.163 1,807 1/5/2024
2.1.162 118 1/5/2024
2.1.161 121 1/5/2024
2.1.160 118 1/5/2024
2.1.159 5,224 1/3/2024
2.1.158 2,905 1/1/2024
2.1.157 137 1/1/2024
2.1.156 1,574 1/1/2024
2.1.155 2,361 12/28/2023
2.1.154 717 12/28/2023
2.1.153 146 12/28/2023
2.1.152 220 12/28/2023
2.1.151 133 12/28/2023
2.1.150 138 12/28/2023
2.1.149 2,899 12/28/2023
2.1.148 140 12/28/2023
2.1.147 844 12/28/2023
2.1.146 130 12/28/2023
2.1.145 132 12/28/2023
2.1.144 820 12/27/2023
2.1.143 143 12/27/2023
2.1.142 2,287 12/27/2023
2.1.141 143 12/27/2023
2.1.140 4,619 12/25/2023
2.1.139 137 12/25/2023
2.1.138 1,635 12/25/2023
2.1.137 2,169 12/25/2023
2.1.136 123 12/25/2023
2.1.135 127 12/25/2023
2.1.134 1,637 12/25/2023
2.1.133 137 12/25/2023
2.1.132 129 12/25/2023
2.1.131 228 12/25/2023
2.1.130 142 12/25/2023
2.1.129 4,989 12/24/2023
2.1.128 1,549 12/24/2023
2.1.127 509 12/24/2023
2.1.126 2,183 12/23/2023
2.1.125 1,525 12/23/2023
2.1.124 615 12/23/2023
2.1.123 131 12/23/2023
2.1.122 113 12/23/2023
2.1.121 347 12/23/2023
2.1.120 129 12/23/2023
2.1.119 127 12/23/2023
2.1.118 125 12/23/2023
2.1.117 930 12/23/2023
2.1.116 130 12/23/2023
2.1.115 1,475 12/23/2023
2.1.114 134 12/23/2023
2.1.113 6,840 12/19/2023
2.1.112 110 12/19/2023
2.1.111 864 12/19/2023
2.1.110 121 12/19/2023
2.1.109 1,466 12/19/2023
2.1.108 351 12/18/2023
2.1.107 2,514 12/13/2023
2.1.106 928 12/12/2023
2.1.105 1,116 12/11/2023
2.1.104 1,289 12/11/2023
2.1.103 338 12/11/2023
2.1.102 488 12/11/2023
2.1.101 285 12/10/2023
2.1.100 121 12/10/2023
2.1.99 141 12/10/2023
2.1.98 147 12/10/2023
2.1.97 4,654 12/10/2023
2.1.96 3,259 12/10/2023
2.1.95 1,031 12/9/2023
2.1.94 1,027 12/9/2023
2.1.93 1,566 12/9/2023
2.1.92 152 12/9/2023
2.1.91 145 12/9/2023
2.1.90 123 12/9/2023
2.1.89 131 12/9/2023
2.1.88 1,263 12/9/2023
2.1.87 131 12/9/2023
2.1.86 3,375 12/9/2023
2.1.85 137 12/9/2023
2.1.84 5,184 12/6/2023
2.1.83 657 12/6/2023
2.1.82 947 12/6/2023
2.1.81 142 12/6/2023
2.1.80 2,255 12/6/2023
2.1.79 662 12/5/2023
2.1.78 1,239 12/5/2023
2.1.77 730 12/5/2023
2.1.76 1,236 12/5/2023
2.1.75 1,371 12/5/2023
2.1.74 374 12/5/2023
2.1.73 243 12/4/2023
2.1.72 157 12/4/2023
2.1.71 140 12/4/2023
2.1.70 3,733 12/4/2023
2.1.69 159 12/4/2023
2.1.68 830 12/4/2023
2.1.67 145 12/4/2023
2.1.66 3,925 12/4/2023
2.1.65 2,252 11/27/2023
2.1.64 584 11/27/2023
2.1.63 2,472 11/23/2023
2.1.62 145 11/23/2023
2.1.61 616 11/23/2023
2.1.60 689 11/23/2023
2.1.59 143 11/23/2023
2.1.58 1,539 11/23/2023
2.1.57 150 11/23/2023
2.1.56 147 11/23/2023
2.1.55 131 11/23/2023
2.1.54 1,565 11/23/2023
2.1.53 152 11/23/2023
2.1.52 4,285 11/20/2023
2.1.51 146 11/20/2023
2.1.50 2,731 11/20/2023
2.1.49 138 11/20/2023
2.1.48 135 11/20/2023
2.1.47 1,950 11/20/2023
2.1.46 2,141 11/19/2023
2.1.45 128 11/19/2023
2.1.44 1,834 11/19/2023
2.1.43 271 11/19/2023
2.1.42 133 11/19/2023
2.1.41 144 11/19/2023
2.1.40 143 11/19/2023
2.1.39 3,351 11/19/2023
2.1.38 121 11/19/2023
2.1.37 3,621 11/18/2023
2.1.36 139 11/18/2023
2.1.35 148 11/18/2023
2.1.34 2,906 11/18/2023
2.1.33 145 11/18/2023
2.1.32 147 11/18/2023
2.1.31 517 11/18/2023
2.1.30 137 11/18/2023
2.1.29 119 11/18/2023
2.1.28 141 11/18/2023
2.1.27 1,404 11/17/2023
2.1.26 121 11/17/2023
2.1.25 1,674 11/17/2023
2.1.24 140 11/17/2023
2.1.23 147 11/17/2023
2.1.22 310 11/17/2023
2.1.21 143 11/17/2023
2.1.20 141 11/17/2023
2.1.19 3,180 11/17/2023
2.1.18 137 11/17/2023
2.1.17 1,351 11/17/2023
2.1.16 146 11/17/2023
2.1.15 1,328 11/17/2023
2.1.14 140 11/17/2023
2.1.13 132 11/17/2023
2.1.12 857 11/17/2023
2.1.11 132 11/17/2023
2.1.10 110 11/17/2023
2.1.9 2,528 11/17/2023
2.1.8 549 11/17/2023
2.1.7 142 11/17/2023
2.1.6 1,133 11/16/2023
2.1.5 138 11/16/2023
2.0.196 2,284 11/15/2023
2.0.195 142 11/15/2023
2.0.194 142 11/15/2023
2.0.193 147 11/15/2023
2.0.4 129 11/16/2023
2.0.3 128 11/16/2023
2.0.2 137 11/16/2023
2.0.1 133 11/16/2023
1.0.192 1,737 11/14/2023
1.0.191 144 11/14/2023
1.0.190 4,653 11/13/2023
1.0.189 136 11/13/2023
1.0.188 1,113 11/10/2023
1.0.187 121 11/10/2023
1.0.186 107 11/10/2023
1.0.185 2,319 11/9/2023
1.0.184 140 11/9/2023
1.0.183 123 11/9/2023
1.0.182 146 11/9/2023
1.0.181 3,892 11/8/2023
1.0.180 1,372 11/7/2023
1.0.179 144 11/7/2023
1.0.178 2,147 11/6/2023
1.0.177 124 11/6/2023
1.0.176 136 11/6/2023
1.0.175 2,056 11/3/2023
1.0.174 133 11/3/2023
1.0.173 145 11/3/2023
1.0.172 2,560 11/2/2023
1.0.171 143 11/2/2023
1.0.170 154 11/2/2023
1.0.169 1,920 11/1/2023
1.0.168 135 11/1/2023
1.0.167 7,856 10/27/2023
1.0.166 1,968 10/26/2023
1.0.165 3,869 10/20/2023
1.0.164 2,326 10/19/2023
1.0.163 132 10/19/2023
1.0.162 1,818 10/18/2023
1.0.161 154 10/18/2023
1.0.160 145 10/18/2023
1.0.159 2,224 10/17/2023
1.0.158 150 10/17/2023
1.0.157 158 10/17/2023
1.0.156 3,032 10/16/2023
1.0.155 153 10/16/2023
1.0.154 158 10/16/2023
1.0.153 3,020 10/13/2023
1.0.152 163 10/13/2023
1.0.151 147 10/13/2023
1.0.150 1,941 10/12/2023
1.0.149 6,500 9/20/2023
1.0.148 1,611 9/19/2023
1.0.147 144 9/19/2023
1.0.146 143 9/19/2023
1.0.145 4,310 9/18/2023
1.0.144 155 9/18/2023
1.0.143 129 9/18/2023
1.0.142 2,223 9/15/2023
1.0.141 2,197 9/14/2023
1.0.140 3,756 9/1/2023
1.0.139 2,775 8/31/2023
1.0.138 154 8/31/2023
1.0.137 2,066 8/30/2023
1.0.136 176 8/30/2023
1.0.135 173 8/30/2023
1.0.134 1,724 8/29/2023
1.0.133 181 8/29/2023
1.0.132 3,863 8/28/2023
1.0.131 170 8/28/2023
1.0.130 2,542 8/25/2023
1.0.129 173 8/25/2023
1.0.128 156 8/25/2023
1.0.127 3,548 8/24/2023
1.0.126 180 8/24/2023
1.0.125 3,793 8/22/2023
1.0.124 1,731 8/21/2023
1.0.123 177 8/21/2023
1.0.122 1,945 8/18/2023
1.0.121 169 8/18/2023
1.0.120 153 8/18/2023
1.0.119 2,661 8/17/2023
1.0.118 146 8/17/2023
1.0.117 171 8/17/2023
1.0.116 139 8/17/2023
1.0.115 7,750 8/11/2023
1.0.114 2,390 8/10/2023
1.0.113 171 8/10/2023
1.0.112 3,222 8/9/2023
1.0.111 197 8/9/2023
1.0.110 1,468 8/8/2023
1.0.109 206 8/8/2023
1.0.108 175 8/8/2023
1.0.107 3,737 8/7/2023
1.0.106 190 8/7/2023
1.0.105 175 8/7/2023
1.0.104 193 8/7/2023
1.0.103 7,314 7/14/2023
1.0.102 2,459 7/13/2023
1.0.101 2,443 7/12/2023
1.0.100 2,211 7/11/2023
1.0.99 188 7/11/2023
1.0.98 3,099 7/10/2023
1.0.97 195 7/10/2023
1.0.96 185 7/10/2023
1.0.95 2,650 7/7/2023
1.0.94 188 7/7/2023
1.0.93 197 7/7/2023
1.0.92 6,302 7/3/2023
1.0.91 2,720 6/30/2023
1.0.90 2,774 6/29/2023
1.0.89 206 6/29/2023
1.0.88 197 6/29/2023
1.0.87 2,357 6/28/2023
1.0.86 192 6/28/2023
1.0.85 199 6/28/2023
1.0.84 4,626 6/27/2023
1.0.83 189 6/27/2023
1.0.82 3,343 6/26/2023
1.0.81 194 6/26/2023
1.0.80 4,330 6/23/2023
1.0.79 3,030 6/22/2023
1.0.78 2,302 6/21/2023
1.0.77 3,792 6/19/2023
1.0.76 3,524 6/15/2023
1.0.75 180 6/15/2023
1.0.74 2,104 6/14/2023
1.0.73 6,233 6/12/2023
1.0.72 2,094 6/9/2023
1.0.71 199 6/9/2023
1.0.70 3,528 6/8/2023
1.0.69 185 6/8/2023
1.0.68 185 6/8/2023
1.0.67 4,559 6/7/2023
1.0.66 196 6/7/2023
1.0.65 185 6/7/2023
1.0.64 185 6/7/2023
1.0.63 2,630 6/6/2023
1.0.62 203 6/6/2023
1.0.61 195 6/6/2023
1.0.60 20,482 5/30/2023
1.0.59 195 5/30/2023
1.0.58 197 5/30/2023
1.0.57 4,780 5/29/2023
1.0.56 193 5/29/2023
1.0.55 200 5/29/2023
1.0.54 3,982 5/26/2023
1.0.53 197 5/26/2023
1.0.52 215 5/26/2023
1.0.51 6,417 5/25/2023
1.0.50 197 5/25/2023
1.0.49 198 5/25/2023
1.0.48 2,870 5/24/2023
1.0.46 202 5/24/2023
1.0.45 202 5/24/2023
1.0.43 3,579 5/23/2023
1.0.42 5,574 5/22/2023
1.0.41 213 5/22/2023
1.0.40 5,593 5/18/2023
1.0.39 3,742 5/17/2023
1.0.38 176 5/17/2023
1.0.37 254 5/17/2023
1.0.36 10,703 4/25/2023
1.0.35 1,336 4/24/2023
1.0.34 1,940 4/21/2023
1.0.33 229 4/21/2023
1.0.32 1,751 4/20/2023
1.0.31 2,362 4/19/2023
1.0.30 1,068 4/18/2023
1.0.29 1,699 4/17/2023
1.0.28 1,234 4/14/2023
1.0.27 1,223 4/13/2023
1.0.26 1,241 4/12/2023
1.0.25 1,545 4/11/2023
1.0.24 302 4/11/2023
1.0.23 1,706 4/10/2023
1.0.22 2,478 4/4/2023
1.0.21 216 4/4/2023
1.0.20 1,000 4/3/2023
1.0.19 249 4/3/2023
1.0.18 262 4/3/2023
1.0.17 253 4/3/2023
1.0.16 239 4/3/2023
1.0.15 246 4/3/2023
1.0.14 249 4/3/2023
1.0.13 240 4/3/2023
1.0.12 238 4/3/2023
1.0.11 2,087 3/23/2023
1.0.10 574 3/13/2023
1.0.9 330 3/12/2023
1.0.8 265 3/11/2023
1.0.7 257 3/10/2023
1.0.5 440 2/22/2023
1.0.4 487 2/19/2023
1.0.3 471 2/18/2023
1.0.1 399 2/12/2023