Soenneker.Utils.SingletonDictionary 1.0.26

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

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

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.SingletonDictionary

An externally initializing singleton dictionary that uses double-check asynchronous locking, with optional async and sync disposal

Installation

Install-Package Soenneker.Utils.SingletonDictionary

Example

Below is a long-living HttpClient implementation using SingletonDictionary with different settings. It guarantees only one instance of a particular key is instantiated due to the locking.

public class HttpRequester : IDisposable, IAsyncDisposable
{
    private readonly SingletonDictionary<HttpClient> _clients;

    public HttpRequester()
    {
        // This func will lazily execute once it's retrieved the first time.
        // Other threads calling this at the same moment will asynchronously wait,
        // and then utilize the HttpClient that was created from the first caller.
        _clients = new SingletonDictionary<HttpClient>((args) =>
        {
            var socketsHandler = new SocketsHttpHandler
            {
                PooledConnectionLifetime = TimeSpan.FromMinutes(10),
                MaxConnectionsPerServer = 10
            };

            HttpClient client = new HttpClient(socketsHandler);
            client.Timeout = TimeSpan.FromSeconds((int)args[0]);

            return client;
        });
    }

    public async ValueTask Get()
    {
        // retrieve the singleton async, thus not blocking the calling thread
        await (await _client.Get("100", 100)).GetAsync("https://google.com");
    }

    // Disposal is not necessary for AsyncSingleton unless the type used is IDisposable/IAsyncDisposable
    public ValueTask DisposeAsync()
    {
        GC.SuppressFinalize(false);

        return _client.DisposeAsync();
    }

    public void Dispose()
    {
        GC.SuppressFinalize(false);
        
        _client.Dispose();
    }
}
Product Compatible and additional computed target framework versions.
.NET 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 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (6)

Showing the top 5 NuGet packages that depend on Soenneker.Utils.SingletonDictionary:

Package Downloads
Soenneker.Utils.HttpClientCache

Providing thread-safe singleton HttpClients

Soenneker.Cosmos.Database

A utility library for storing Azure Cosmos databases

Soenneker.ServiceBus.Sender

A utility library that holds Azure Service senders

Soenneker.Google.Credentials

An async thread-safe singleton for Google OAuth credentials

Soenneker.Blazor.Utils.ModuleImport

A Blazor utility library assisting with asynchronous module loading

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.1.495 0 10/1/2024
2.1.494 0 10/1/2024
2.1.493 0 10/1/2024
2.1.492 549 9/29/2024
2.1.491 581 9/29/2024
2.1.490 29 9/29/2024
2.1.489 514 9/29/2024
2.1.488 31 9/29/2024
2.1.487 1,182 9/29/2024
2.1.486 2,117 9/27/2024
2.1.485 338 9/27/2024
2.1.484 1,558 9/27/2024
2.1.483 30 9/27/2024
2.1.482 209 9/27/2024
2.1.481 971 9/27/2024
2.1.480 1,471 9/26/2024
2.1.479 1,619 9/26/2024
2.1.478 1,060 9/26/2024
2.1.477 1,005 9/26/2024
2.1.476 1,881 9/26/2024
2.1.475 44 9/26/2024
2.1.474 3,523 9/23/2024
2.1.473 1,213 9/23/2024
2.1.472 884 9/23/2024
2.1.471 1,083 9/23/2024
2.1.470 55 9/23/2024
2.1.469 1,492 9/23/2024
2.1.468 59 9/23/2024
2.1.467 4,540 9/23/2024
2.1.466 66 9/23/2024
2.1.465 646 9/23/2024
2.1.464 73 9/23/2024
2.1.463 63 9/23/2024
2.1.462 834 9/23/2024
2.1.461 8,795 9/18/2024
2.1.460 211 9/17/2024
2.1.459 1,156 9/17/2024
2.1.458 1,652 9/17/2024
2.1.457 65 9/17/2024
2.1.456 1,748 9/17/2024
2.1.455 417 9/17/2024
2.1.454 3,198 9/17/2024
2.1.453 476 9/17/2024
2.1.452 158 9/17/2024
2.1.451 2,595 9/17/2024
2.1.450 7,341 9/16/2024
2.1.449 664 9/16/2024
2.1.448 4,797 9/12/2024
2.1.447 2,843 9/12/2024
2.1.446 1,269 9/11/2024
2.1.445 1,494 9/11/2024
2.1.443 3,673 9/11/2024
2.1.442 951 9/11/2024
2.1.441 921 9/11/2024
2.1.440 2,226 9/11/2024
2.1.439 7,972 9/10/2024
2.1.438 90 9/10/2024
2.1.437 1,110 9/10/2024
2.1.436 82 9/10/2024
2.1.434 2,862 9/10/2024
2.1.433 562 9/9/2024
2.1.432 1,952 9/9/2024
2.1.430 1,495 9/9/2024
2.1.428 88 9/9/2024
2.1.427 418 9/9/2024
2.1.426 13,159 9/7/2024
2.1.425 95 9/7/2024
2.1.424 4,912 9/6/2024
2.1.423 329 9/6/2024
2.1.422 2,157 9/6/2024
2.1.421 83 9/5/2024
2.1.420 94 9/5/2024
2.1.419 2,339 9/5/2024
2.1.418 1,103 9/5/2024
2.1.417 83 9/5/2024
2.1.416 1,101 9/5/2024
2.1.415 395 9/5/2024
2.1.414 83 9/5/2024
2.1.413 4,984 9/5/2024
2.1.412 162 9/5/2024
2.1.411 86 9/5/2024
2.1.410 2,191 9/4/2024
2.1.409 7,909 9/3/2024
2.1.408 76 9/3/2024
2.1.407 69 9/3/2024
2.1.406 3,951 9/3/2024
2.1.405 120 9/3/2024
2.1.404 2,435 9/3/2024
2.1.403 5,219 8/29/2024
2.1.402 2,489 8/29/2024
2.1.401 2,823 8/26/2024
2.1.400 79 8/26/2024
2.1.399 4,866 8/21/2024
2.1.398 579 8/21/2024
2.1.397 100 8/21/2024
2.1.396 2,516 8/21/2024
2.1.395 117 8/20/2024
2.1.394 105 8/20/2024
2.1.393 429 8/20/2024
2.1.392 2,916 8/20/2024
2.1.391 386 8/20/2024
2.1.390 91 8/20/2024
2.1.389 2,591 8/20/2024
2.1.388 94 8/20/2024
2.1.387 1,133 8/20/2024
2.1.386 2,848 8/19/2024
2.1.385 4,693 8/15/2024
2.1.384 2,073 8/15/2024
2.1.383 4,748 8/14/2024
2.1.382 127 8/13/2024
2.1.381 5,535 8/7/2024
2.1.380 248 8/6/2024
2.1.379 2,632 8/6/2024
2.1.378 4,853 8/1/2024
2.1.377 301 8/1/2024
2.1.376 74 8/1/2024
2.1.374 1,105 8/1/2024
2.1.373 5,706 7/25/2024
2.1.372 71 7/25/2024
2.1.371 690 7/25/2024
2.1.370 264 7/25/2024
2.1.369 324 7/25/2024
2.1.368 157 7/25/2024
2.1.367 353 7/24/2024
2.1.366 114 7/24/2024
2.1.365 176 7/24/2024
2.1.364 286 7/24/2024
2.1.363 7,664 7/20/2024
2.1.362 1,415 7/20/2024
2.1.361 4,925 7/14/2024
2.1.360 1,503 7/14/2024
2.1.359 81 7/14/2024
2.1.358 1,456 7/14/2024
2.1.357 4,243 7/10/2024
2.1.355 763 7/10/2024
2.1.354 1,152 7/10/2024
2.1.353 98 7/10/2024
2.1.352 1,877 7/10/2024
2.1.351 100 7/10/2024
2.1.350 77 7/10/2024
2.1.349 139 7/10/2024
2.1.348 83 7/10/2024
2.1.347 2,009 7/10/2024
2.1.346 97 7/10/2024
2.1.345 781 7/10/2024
2.1.344 86 7/10/2024
2.1.343 184 7/9/2024
2.1.342 76 7/9/2024
2.1.339 1,932 7/9/2024
2.1.338 463 7/9/2024
2.1.337 3,962 7/9/2024
2.1.336 1,045 7/9/2024
2.1.335 88 7/9/2024
2.1.334 2,539 7/9/2024
2.1.333 94 7/9/2024
2.1.332 1,847 7/9/2024
2.1.331 83 7/9/2024
2.1.330 2,470 7/9/2024
2.1.329 71 7/9/2024
2.1.328 1,038 7/9/2024
2.1.327 686 7/8/2024
2.1.326 931 7/8/2024
2.1.325 100 7/8/2024
2.1.324 93 7/8/2024
2.1.323 4,745 7/8/2024
2.1.322 1,585 7/8/2024
2.1.321 99 7/8/2024
2.1.320 2,238 7/7/2024
2.1.319 94 7/7/2024
2.1.318 104 7/7/2024
2.1.317 84 7/7/2024
2.1.316 1,079 7/7/2024
2.1.315 2,117 7/7/2024
2.1.314 1,791 7/7/2024
2.1.313 188 7/7/2024
2.1.312 3,322 7/5/2024
2.1.311 3,818 7/3/2024
2.1.310 2,974 7/3/2024
2.1.309 331 7/3/2024
2.1.308 3,835 7/2/2024
2.1.307 1,807 6/30/2024
2.1.306 2,199 6/28/2024
2.1.305 5,306 6/22/2024
2.1.304 4,787 6/15/2024
2.1.303 4,019 6/14/2024
2.1.302 5,783 6/1/2024
2.1.301 1,541 6/1/2024
2.1.300 558 6/1/2024
2.1.299 5,734 5/31/2024
2.1.298 3,630 5/29/2024
2.1.297 2,951 5/28/2024
2.1.296 2,370 5/27/2024
2.1.295 4,730 5/26/2024
2.1.294 1,946 5/26/2024
2.1.293 442 5/26/2024
2.1.292 2,465 5/25/2024
2.1.291 1,312 5/25/2024
2.1.290 104 5/25/2024
2.1.289 97 5/25/2024
2.1.288 632 5/25/2024
2.1.287 98 5/25/2024
2.1.286 372 5/25/2024
2.1.285 108 5/25/2024
2.1.284 98 5/25/2024
2.1.283 7,289 5/23/2024
2.1.282 491 5/23/2024
2.1.281 233 5/22/2024
2.1.280 3,549 5/22/2024
2.1.279 92 5/22/2024
2.1.278 104 5/22/2024
2.1.277 107 5/22/2024
2.1.276 2,056 5/22/2024
2.1.275 3,307 5/18/2024
2.1.274 1,843 5/18/2024
2.1.273 1,745 5/17/2024
2.1.272 87 5/17/2024
2.1.271 2,669 5/16/2024
2.1.270 388 5/15/2024
2.1.269 2,682 5/15/2024
2.1.268 4,372 5/12/2024
2.1.267 2,662 5/3/2024
2.1.266 1,101 4/30/2024
2.1.265 1,685 4/29/2024
2.1.264 1,853 4/29/2024
2.1.263 2,560 4/28/2024
2.1.262 1,425 4/28/2024
2.1.261 1,051 4/28/2024
2.1.260 1,699 4/28/2024
2.1.259 833 4/28/2024
2.1.258 88 4/28/2024
2.1.257 4,082 4/27/2024
2.1.256 97 4/27/2024
2.1.255 4,270 4/19/2024
2.1.254 3,952 4/18/2024
2.1.253 3,349 4/12/2024
2.1.252 1,095 4/12/2024
2.1.251 685 4/12/2024
2.1.250 821 4/12/2024
2.1.249 155 4/12/2024
2.1.248 85 4/12/2024
2.1.247 955 4/12/2024
2.1.246 267 4/12/2024
2.1.245 1,598 4/11/2024
2.1.244 3,555 4/10/2024
2.1.243 1,081 4/9/2024
2.1.242 3,074 4/2/2024
2.1.241 856 4/1/2024
2.1.240 2,018 3/29/2024
2.1.239 1,764 3/25/2024
2.1.238 264 3/25/2024
2.1.237 3,199 3/20/2024
2.1.236 2,087 3/19/2024
2.1.235 485 3/19/2024
2.1.234 2,232 3/18/2024
2.1.233 1,341 3/18/2024
2.1.232 1,338 3/15/2024
2.1.231 2,265 3/13/2024
2.1.230 1,056 3/13/2024
2.1.229 612 3/13/2024
2.1.228 720 3/13/2024
2.1.227 103 3/13/2024
2.1.226 511 3/13/2024
2.1.225 115 3/13/2024
2.1.224 107 3/13/2024
2.1.223 1,606 3/12/2024
2.1.222 2,751 3/11/2024
2.1.221 2,371 3/11/2024
2.1.220 1,555 3/10/2024
2.1.219 1,827 3/8/2024
2.1.218 1,006 3/8/2024
2.1.217 1,489 3/8/2024
2.1.216 2,035 3/6/2024
2.1.215 1,931 3/4/2024
2.1.214 1,343 3/4/2024
2.1.213 2,473 3/2/2024
2.1.212 1,149 3/2/2024
2.1.211 373 3/2/2024
2.1.210 322 3/2/2024
2.1.209 408 3/2/2024
2.1.208 3,338 2/29/2024
2.1.207 599 2/29/2024
2.1.206 309 2/29/2024
2.1.205 3,212 2/26/2024
2.1.204 1,435 2/25/2024
2.1.203 2,525 2/23/2024
2.1.202 1,830 2/22/2024
2.1.201 901 2/22/2024
2.1.200 385 2/21/2024
2.1.199 1,148 2/21/2024
2.1.198 249 2/21/2024
2.1.197 718 2/21/2024
2.1.196 102 2/21/2024
2.1.195 1,186 2/21/2024
2.1.194 372 2/21/2024
2.1.193 109 2/21/2024
2.1.192 102 2/21/2024
2.1.191 557 2/21/2024
2.1.190 85 2/21/2024
2.1.189 2,526 2/20/2024
2.1.188 669 2/20/2024
2.1.187 598 2/20/2024
2.1.186 717 2/20/2024
2.1.185 2,036 2/19/2024
2.1.184 1,810 2/17/2024
2.1.183 849 2/16/2024
2.1.182 812 2/16/2024
2.1.181 1,276 2/16/2024
2.1.180 92 2/16/2024
2.1.179 590 2/16/2024
2.1.178 99 2/16/2024
2.1.177 102 2/16/2024
2.1.176 506 2/16/2024
2.1.175 89 2/16/2024
2.1.174 3,212 2/13/2024
2.1.173 1,321 2/13/2024
2.1.172 1,035 2/13/2024
2.1.171 423 2/13/2024
2.1.170 594 2/13/2024
2.1.169 1,868 2/12/2024
2.1.168 468 2/11/2024
2.1.167 1,463 2/11/2024
2.1.166 807 2/11/2024
2.1.165 2,639 2/10/2024
2.1.164 515 2/9/2024
2.1.163 113 2/9/2024
2.1.162 1,491 2/9/2024
2.1.161 1,609 2/9/2024
2.1.160 356 2/8/2024
2.1.159 1,142 2/8/2024
2.1.158 802 2/8/2024
2.1.157 1,390 2/8/2024
2.1.156 99 2/8/2024
2.1.155 1,788 2/7/2024
2.1.154 418 2/7/2024
2.1.153 572 2/7/2024
2.1.152 1,212 2/7/2024
2.1.151 346 2/6/2024
2.1.150 108 2/6/2024
2.1.149 102 2/6/2024
2.1.148 2,698 2/5/2024
2.1.147 1,476 2/4/2024
2.1.146 2,014 2/2/2024
2.1.145 1,856 1/31/2024
2.1.144 2,085 1/29/2024
2.1.143 1,313 1/29/2024
2.1.142 323 1/29/2024
2.1.141 1,432 1/28/2024
2.1.140 420 1/28/2024
2.1.139 279 1/28/2024
2.1.138 506 1/28/2024
2.1.137 1,861 1/28/2024
2.1.136 895 1/28/2024
2.1.135 260 1/27/2024
2.1.134 882 1/27/2024
2.1.133 1,129 1/27/2024
2.1.132 1,134 1/27/2024
2.1.131 132 1/27/2024
2.1.130 673 1/27/2024
2.1.129 1,016 1/26/2024
2.1.128 192 1/26/2024
2.1.127 841 1/26/2024
2.1.126 1,084 1/26/2024
2.1.125 1,580 1/26/2024
2.1.124 838 1/25/2024
2.1.123 1,056 1/25/2024
2.1.122 423 1/25/2024
2.1.121 881 1/25/2024
2.1.120 492 1/25/2024
2.1.119 2,477 1/19/2024
2.1.118 2,159 1/15/2024
2.1.117 472 1/15/2024
2.1.116 1,182 1/15/2024
2.1.115 107 1/15/2024
2.1.114 537 1/15/2024
2.1.113 1,322 1/15/2024
2.1.112 2,466 1/14/2024
2.1.111 1,564 1/13/2024
2.1.110 1,785 1/12/2024
2.1.109 1,987 1/11/2024
2.1.108 2,578 1/7/2024
2.1.107 2,038 1/5/2024
2.1.106 457 1/5/2024
2.1.105 118 1/5/2024
2.1.104 124 1/5/2024
2.1.103 1,439 1/5/2024
2.1.102 124 1/5/2024
2.1.101 2,644 1/1/2024
2.1.100 2,165 12/28/2023
2.1.99 712 12/28/2023
2.1.98 476 12/28/2023
2.1.97 114 12/28/2023
2.1.96 112 12/28/2023
2.1.95 692 12/27/2023
2.1.94 122 12/27/2023
2.1.93 447 12/27/2023
2.1.92 115 12/27/2023
2.1.91 118 12/27/2023
2.1.90 2,163 12/25/2023
2.1.89 332 12/25/2023
2.1.88 751 12/25/2023
2.1.87 119 12/25/2023
2.1.86 595 12/25/2023
2.1.85 112 12/25/2023
2.1.84 545 12/25/2023
2.1.83 118 12/25/2023
2.1.82 1,596 12/24/2023
2.1.81 1,038 12/23/2023
2.1.80 835 12/23/2023
2.1.79 288 12/23/2023
2.1.78 523 12/23/2023
2.1.77 111 12/23/2023
2.1.76 101 12/23/2023
2.1.75 1,042 12/23/2023
2.1.74 103 12/23/2023
2.1.73 1,347 12/19/2023
2.1.72 194 12/19/2023
2.1.71 2,983 12/11/2023
2.1.70 697 12/10/2023
2.1.69 100 12/10/2023
2.1.68 457 12/10/2023
2.1.67 1,376 12/10/2023
2.1.66 352 12/9/2023
2.1.65 343 12/9/2023
2.1.64 274 12/9/2023
2.1.63 107 12/9/2023
2.1.62 243 12/9/2023
2.1.61 180 12/9/2023
2.1.60 112 12/9/2023
2.1.59 1,049 12/9/2023
2.1.58 108 12/9/2023
2.1.57 1,472 12/6/2023
2.1.56 373 12/6/2023
2.1.55 221 12/6/2023
2.1.54 254 12/6/2023
2.1.53 891 12/5/2023
2.1.52 360 12/5/2023
2.1.51 327 12/5/2023
2.1.50 366 12/5/2023
2.1.49 114 12/5/2023
2.1.48 320 12/5/2023
2.1.47 262 12/5/2023
2.1.46 114 12/4/2023
2.1.45 117 12/4/2023
2.1.44 312 12/4/2023
2.1.43 128 12/4/2023
2.1.42 960 12/4/2023
2.1.41 98 12/4/2023
2.1.40 1,128 11/27/2023
2.1.39 485 11/26/2023
2.1.38 194 11/26/2023
2.1.37 586 11/23/2023
2.1.36 663 11/23/2023
2.1.35 615 11/23/2023
2.1.34 116 11/23/2023
2.1.33 375 11/23/2023
2.1.32 122 11/23/2023
2.1.31 1,056 11/20/2023
2.1.30 1,005 11/20/2023
2.1.29 755 11/19/2023
2.1.28 234 11/19/2023
2.1.27 438 11/19/2023
2.1.26 439 11/19/2023
2.1.25 461 11/19/2023
2.1.24 104 11/19/2023
2.1.23 199 11/18/2023
2.1.22 940 11/18/2023
2.1.21 348 11/18/2023
2.1.20 505 11/18/2023
2.1.19 114 11/18/2023
2.1.18 281 11/18/2023
2.1.17 112 11/18/2023
2.1.16 565 11/17/2023
2.1.15 494 11/17/2023
2.1.14 109 11/17/2023
2.1.13 398 11/17/2023
2.1.12 280 11/17/2023
2.1.11 460 11/17/2023
2.1.10 110 11/17/2023
2.1.9 475 11/17/2023
2.1.8 107 11/17/2023
2.1.7 127 11/17/2023
2.1.6 304 11/17/2023
2.1.5 337 11/16/2023
2.0.101 2,029 11/15/2023
2.0.100 105 11/15/2023
2.0.99 111 11/15/2023
2.0.4 109 11/16/2023
2.0.3 119 11/16/2023
2.0.2 108 11/16/2023
2.0.1 106 11/16/2023
1.0.98 593 11/14/2023
1.0.97 730 11/13/2023
1.0.96 101 11/13/2023
1.0.95 552 11/10/2023
1.0.94 103 11/10/2023
1.0.93 899 11/9/2023
1.0.92 110 11/9/2023
1.0.91 979 11/7/2023
1.0.90 102 11/7/2023
1.0.89 487 11/6/2023
1.0.88 110 11/6/2023
1.0.87 578 11/3/2023
1.0.86 116 11/3/2023
1.0.85 852 11/2/2023
1.0.84 107 11/2/2023
1.0.83 583 11/1/2023
1.0.82 1,399 10/26/2023
1.0.81 1,251 10/19/2023
1.0.80 122 10/19/2023
1.0.79 729 10/18/2023
1.0.78 141 10/18/2023
1.0.77 692 10/17/2023
1.0.76 124 10/17/2023
1.0.75 615 10/16/2023
1.0.74 133 10/16/2023
1.0.73 667 10/13/2023
1.0.72 318 10/12/2023
1.0.71 1,679 9/20/2023
1.0.70 629 9/19/2023
1.0.69 656 9/18/2023
1.0.68 122 9/18/2023
1.0.67 863 9/14/2023
1.0.66 1,471 8/31/2023
1.0.65 130 8/31/2023
1.0.64 763 8/30/2023
1.0.63 138 8/30/2023
1.0.62 140 8/30/2023
1.0.61 810 8/28/2023
1.0.60 663 8/25/2023
1.0.59 130 8/25/2023
1.0.58 462 8/24/2023
1.0.57 1,401 8/21/2023
1.0.56 765 8/18/2023
1.0.55 715 8/17/2023
1.0.54 133 8/17/2023
1.0.53 1,873 8/10/2023
1.0.52 544 8/9/2023
1.0.51 646 8/8/2023
1.0.50 617 8/7/2023
1.0.49 157 8/7/2023
1.0.48 2,406 7/13/2023
1.0.47 851 7/11/2023
1.0.46 701 7/10/2023
1.0.45 663 7/7/2023
1.0.44 152 7/7/2023
1.0.43 2,064 6/30/2023
1.0.42 1,025 6/29/2023
1.0.41 576 6/28/2023
1.0.40 1,461 6/26/2023
1.0.39 749 6/23/2023
1.0.38 1,054 6/21/2023
1.0.37 1,385 6/15/2023
1.0.36 451 6/14/2023
1.0.35 1,706 6/9/2023
1.0.34 790 6/8/2023
1.0.33 1,548 6/7/2023
1.0.32 144 6/7/2023
1.0.31 1,179 6/6/2023
1.0.30 1,115 6/5/2023
1.0.29 1,314 6/2/2023
1.0.28 134 6/2/2023
1.0.27 1,198 6/1/2023
1.0.26 577 5/31/2023
1.0.25 463 5/31/2023
1.0.24 142 5/31/2023
1.0.23 1,432 5/30/2023
1.0.22 1,499 5/26/2023
1.0.21 653 5/25/2023
1.0.20 130 5/25/2023
1.0.19 801 5/24/2023
1.0.18 140 5/24/2023
1.0.17 426 5/23/2023
1.0.13 1,433 5/22/2023
1.0.12 1,154 5/18/2023
1.0.11 570 5/17/2023
1.0.10 1,522 5/1/2023
1.0.9 1,005 4/25/2023
1.0.8 453 4/24/2023
1.0.7 976 4/21/2023
1.0.6 1,938 4/13/2023
1.0.5 568 4/12/2023
1.0.4 995 4/8/2023
1.0.3 170 4/8/2023
1.0.2 566 4/8/2023
1.0.1 173 4/8/2023