Soenneker.Extensions.String 3.0.448

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

// Install Soenneker.Extensions.String as a Cake Tool
#tool nuget:?package=Soenneker.Extensions.String&version=3.0.448                

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.Extensions.String

A highly optimized library of string extension methods designed to improve performance, readability, and efficiency in .NET applications. This library is ideal for developers looking to streamline common string operations while adhering to best practices and achieving maximum performance.

Features

  • High Performance: All methods are optimized for speed and low memory usage, ensuring top-notch performance in critical applications.
  • Comprehensive Functionality: Includes a wide range of utility methods for common string operations, such as trimming, splitting, joining, and formatting.
  • Readability-First: Enhances code clarity with intuitive method names and streamlined syntax.
  • Error-Resilient: Methods are built to handle edge cases gracefully, minimizing potential bugs and exceptions.
  • Lightweight: Minimal overhead and dependencies, making it perfect for high-performance applications.

Installation

dotnet add package Soenneker.Extensions.String

Usage

Truncate()

string longString = "This is a long string that needs to be truncated";
string truncatedString = longString.Truncate(10);
// truncatedString = "This is a ..."

IsAlphaNumeric()

string alphanumeric = "abc123";
bool isAlphanumeric = alphanumeric.IsAlphaNumeric();
// isAlphanumeric = true

string nonAlphanumeric = "abc123!";
bool isNonAlphanumeric = nonAlphanumeric.IsAlphaNumeric();
// isNonAlphanumeric = false

Slugify()

string test = "this string&is%bad#for\\urls"

test.Slugify() // "this-string-is-bad-for-urls"

ToDouble()

string numericString = "3.14";
double? doubleValue = numericString.ToDouble();
// doubleValue = 3.14

string nonNumericString = "abc";
double? nonDoubleValue = nonNumericString.ToDouble();
// nonDoubleValue = null

RemoveNonDigits()

string stringWithNonDigits = "abc123xyz456";
string digitsOnly = stringWithNonDigits.RemoveNonDigits();
// digitsOnly = "123456"

Shuffle()

string originalString = "hello";
string shuffledString = originalString.Shuffle();
// shuffledString = "olhel"

... and more

Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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 (32)

Showing the top 5 NuGet packages that depend on Soenneker.Extensions.String:

Package Downloads
Soenneker.Extensions.Configuration

A collection of helpful IConfiguration extension methods

Soenneker.Utils.MemoryStream

An easy modern MemoryStream utility

Soenneker.Utils.Logger

A useful utility library dealing with Serilog logging

Soenneker.Extensions.Enumerable.String

A collection of helpful enumerable string extension methods

Soenneker.Documents.Document

The base document type providing a building block for storage objects

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.0.459 18,050 3/1/2025
3.0.458 6,483 3/1/2025
3.0.457 72 3/1/2025
3.0.456 4,237 3/1/2025
3.0.455 70 3/1/2025
3.0.454 67 3/1/2025
3.0.453 2,150 3/1/2025
3.0.452 72 3/1/2025
3.0.451 72 3/1/2025
3.0.450 69 3/1/2025
3.0.449 73 3/1/2025
3.0.448 38,200 2/24/2025
3.0.447 1,690 2/24/2025
3.0.446 36,473 2/21/2025
3.0.445 27,686 2/18/2025
3.0.444 1,572 2/18/2025
3.0.443 86 2/18/2025
3.0.442 91 2/18/2025
3.0.441 27,401 2/13/2025
3.0.440 21,373 2/11/2025
3.0.439 4,106 2/11/2025
3.0.438 7,108 2/11/2025
3.0.437 5,527 2/11/2025
3.0.436 3,355 2/10/2025
3.0.435 100 2/10/2025
3.0.434 2,922 2/10/2025
3.0.433 12,494 2/10/2025
3.0.432 5,904 2/10/2025
3.0.431 290 2/10/2025
3.0.430 84 2/10/2025
3.0.429 18,064 2/10/2025
3.0.428 91 2/10/2025
3.0.427 27,528 2/8/2025
3.0.426 2,406 2/7/2025
3.0.425 87 2/7/2025
3.0.424 8,950 2/7/2025
3.0.423 3,157 2/7/2025
3.0.422 2,384 2/7/2025
3.0.421 94 2/7/2025
3.0.420 87 2/7/2025
3.0.419 2,443 2/7/2025
3.0.418 101 2/7/2025
3.0.417 87 2/7/2025
3.0.416 88 2/7/2025
3.0.415 5,283 2/7/2025
3.0.414 119 2/7/2025
3.0.413 82 2/7/2025
3.0.412 64,564 1/27/2025
3.0.411 2,920 1/27/2025
3.0.410 118 1/27/2025
3.0.409 6,347 1/27/2025
3.0.408 1,402 1/27/2025
3.0.407 87 1/27/2025
3.0.406 86 1/27/2025
3.0.405 24,459 1/25/2025
3.0.404 20,735 1/24/2025
3.0.403 19,226 1/24/2025
3.0.402 470 1/24/2025
3.0.401 6,574 1/23/2025
3.0.400 85 1/23/2025
3.0.398 7,039 1/23/2025
3.0.397 22,222 1/21/2025
3.0.396 89 1/21/2025
3.0.395 123 1/21/2025
3.0.394 19,134 1/20/2025
3.0.393 4,536 1/20/2025
3.0.392 1,804 1/20/2025
3.0.391 98 1/20/2025
3.0.390 10,537 1/20/2025
3.0.389 84 1/20/2025
3.0.388 4,021 1/20/2025
3.0.387 92 1/20/2025
3.0.386 85 1/20/2025
3.0.385 8,794 1/20/2025
3.0.384 85 1/20/2025
3.0.383 87 1/20/2025
3.0.382 84 1/20/2025
3.0.381 27,659 1/19/2025
3.0.380 286 1/19/2025
3.0.379 75 1/19/2025
3.0.378 16,026 1/18/2025
3.0.377 15,059 1/16/2025
3.0.376 17,116 1/16/2025
3.0.375 14,278 1/16/2025
3.0.374 12,792 1/15/2025
3.0.373 5,001 1/15/2025
3.0.372 3,671 1/15/2025
3.0.371 7,044 1/15/2025
3.0.370 5,647 1/15/2025
3.0.369 3,042 1/14/2025
3.0.368 1,193 1/14/2025
3.0.367 670 1/14/2025
3.0.366 222 1/14/2025
3.0.365 76 1/14/2025
3.0.364 3,577 1/14/2025
3.0.363 2,158 1/14/2025
3.0.362 76 1/14/2025
3.0.361 5,201 1/14/2025
3.0.360 22,902 1/12/2025
3.0.359 15,924 1/10/2025
3.0.358 4,539 1/10/2025
3.0.357 88 1/10/2025
3.0.356 91 1/10/2025
3.0.355 3,888 1/10/2025
3.0.354 89 1/10/2025
3.0.353 123 1/10/2025
3.0.352 96 1/10/2025
3.0.351 25,582 1/2/2025
3.0.350 128 1/2/2025
3.0.349 105 1/2/2025
3.0.348 6,563 1/2/2025
3.0.347 117 1/2/2025
3.0.346 112 1/2/2025
3.0.345 1,608 1/2/2025
3.0.344 17,003 1/1/2025
3.0.343 107 1/1/2025
3.0.342 126 1/1/2025
3.0.341 557 12/31/2024
3.0.340 109 12/31/2024
3.0.339 103 12/31/2024
3.0.338 2,111 12/31/2024
3.0.337 128 12/31/2024
3.0.336 115 12/31/2024
3.0.335 143 12/31/2024
3.0.334 8,104 12/31/2024
3.0.333 22,022 12/31/2024
3.0.332 97 12/31/2024
3.0.331 97 12/31/2024
3.0.330 9,767 12/31/2024
3.0.329 110 12/31/2024
3.0.328 106 12/31/2024
3.0.327 4,289 12/31/2024
3.0.326 40,202 12/24/2024
3.0.325 99 12/24/2024
3.0.324 97 12/24/2024
3.0.323 6,796 12/24/2024
3.0.322 105 12/24/2024
3.0.321 101 12/24/2024
3.0.320 1,600 12/24/2024
3.0.319 40,438 12/22/2024
3.0.318 470 12/22/2024
3.0.317 105 12/22/2024
3.0.316 6,691 12/21/2024
3.0.315 94 12/21/2024
3.0.314 1,027 12/21/2024
3.0.313 9,731 12/21/2024
3.0.312 101 12/21/2024
3.0.311 3,382 12/21/2024
3.0.310 5,036 12/21/2024
3.0.309 103 12/21/2024
3.0.308 7,198 12/21/2024
3.0.307 97 12/21/2024
3.0.306 596 12/21/2024
3.0.305 5,086 12/21/2024
3.0.304 96 12/21/2024
3.0.303 7,276 12/20/2024
3.0.302 3,794 12/20/2024
3.0.301 98 12/20/2024
3.0.300 14,573 12/19/2024
3.0.299 1,467 12/19/2024
3.0.298 653 12/18/2024
3.0.297 99 12/18/2024
3.0.296 235 12/18/2024
3.0.295 25,099 12/17/2024
3.0.294 3,875 12/17/2024
3.0.293 119 12/17/2024
3.0.292 359 12/16/2024
3.0.291 110 12/16/2024
3.0.290 103 12/16/2024
3.0.289 109 12/16/2024
3.0.288 56,286 12/5/2024
3.0.287 24,189 12/4/2024
3.0.286 8,564 12/4/2024
3.0.285 5,646 12/4/2024
3.0.284 3,368 12/4/2024
3.0.283 7,030 12/4/2024
3.0.282 206 12/4/2024
3.0.281 14,191 12/3/2024
3.0.280 128 12/3/2024
3.0.279 6,779 12/3/2024
3.0.278 4,100 12/2/2024
3.0.277 108 12/2/2024
3.0.276 6,134 12/2/2024
3.0.275 14,486 12/1/2024
3.0.274 5,881 12/1/2024
3.0.273 117 12/1/2024
3.0.272 124 12/1/2024
3.0.271 40,037 11/19/2024
3.0.270 127 11/19/2024
3.0.269 5,392 11/19/2024
3.0.268 137 11/19/2024
3.0.267 114 11/19/2024
3.0.266 14,275 11/19/2024
3.0.265 3,757 11/19/2024
3.0.264 28,154 11/14/2024
3.0.263 129 11/14/2024
3.0.262 2,991 11/14/2024
3.0.261 122 11/14/2024
3.0.260 120 11/14/2024
3.0.259 1,802 11/13/2024
3.0.258 126 11/13/2024
2.1.257 50,162 11/8/2024
2.1.256 14,273 11/8/2024
2.1.255 91 11/8/2024
2.1.254 88 11/8/2024
2.1.253 48,249 10/28/2024
2.1.252 112,441 10/1/2024
2.1.251 16,869 9/30/2024
2.1.250 29,858 9/27/2024
2.1.249 108 9/27/2024
2.1.248 97 9/27/2024
2.1.247 2,803 9/27/2024
2.1.246 94 9/27/2024
2.1.245 91 9/27/2024
2.1.244 94 9/27/2024
2.1.243 54,054 9/23/2024
2.1.242 789 9/23/2024
2.1.241 3,742 9/23/2024
2.1.240 99 9/23/2024
2.1.239 1,280 9/23/2024
2.1.238 118 9/23/2024
2.1.237 7,342 9/22/2024
2.1.236 28,302 9/17/2024
2.1.235 219 9/17/2024
2.1.234 110 9/17/2024
2.1.233 208 9/17/2024
2.1.232 115 9/17/2024
2.1.231 4,187 9/17/2024
2.1.230 128 9/17/2024
2.1.229 49,973 9/11/2024
2.1.228 17,058 9/11/2024
2.1.227 23,517 9/9/2024
2.1.226 9,674 9/9/2024
2.1.225 5,918 9/9/2024
2.1.224 8,333 9/9/2024
2.1.223 8,967 9/9/2024
2.1.222 107 9/9/2024
2.1.221 115 9/9/2024
2.1.220 36,485 9/5/2024
2.1.219 7,179 9/5/2024
2.1.218 108 9/5/2024
2.1.217 123 9/5/2024
2.1.216 1,195 9/5/2024
2.1.215 110 9/5/2024
2.1.214 3,902 9/5/2024
2.1.213 20,835 9/4/2024
2.1.212 49,722 8/20/2024
2.1.211 5,642 8/20/2024
2.1.210 119 8/20/2024
2.1.209 120 8/20/2024
2.1.208 5,015 8/20/2024
2.1.207 124 8/20/2024
2.1.206 113 8/20/2024
2.1.205 72,881 7/24/2024
2.1.204 5,803 7/24/2024
2.1.203 85 7/24/2024
2.1.202 27,482 7/13/2024
2.1.201 118 7/13/2024
2.1.200 15,721 7/10/2024
2.1.199 4,634 7/10/2024
2.1.198 132 7/10/2024
2.1.196 4,290 7/9/2024
2.1.194 3,356 7/9/2024
2.1.193 19,542 7/9/2024
2.1.192 5,933 7/9/2024
2.1.191 655 7/9/2024
2.1.190 108 7/9/2024
2.1.189 9,208 7/9/2024
2.1.188 2,808 7/8/2024
2.1.187 108 7/8/2024
2.1.186 130 7/8/2024
2.1.185 100 7/8/2024
2.1.184 103 7/8/2024
2.1.183 5,385 7/8/2024
2.1.182 121 7/8/2024
2.1.181 103 7/8/2024
2.1.180 561 7/8/2024
2.1.179 24,868 7/7/2024
2.1.178 3,253 7/7/2024
2.1.177 22,124 7/3/2024
2.1.176 37,293 6/14/2024
2.1.174 43,317 5/27/2024
2.1.173 3,086 5/27/2024
2.1.172 98 5/27/2024
2.1.171 20,242 5/25/2024
2.1.170 7,453 5/25/2024
2.1.169 113 5/25/2024
2.1.168 113 5/25/2024
2.1.167 4,407 5/25/2024
2.1.166 106 5/25/2024
2.1.165 123 5/25/2024
2.1.164 130 5/25/2024
2.1.163 4,103 5/25/2024
2.1.162 106 5/25/2024
2.1.161 18,962 5/22/2024
2.1.160 4,768 5/22/2024
2.1.159 2,401 5/22/2024
2.1.158 115 5/22/2024
2.1.157 115 5/22/2024
2.1.156 121 5/22/2024
2.1.155 9,811 5/22/2024
2.1.154 16,356 5/16/2024
2.1.153 47,191 4/28/2024
2.1.152 101 4/28/2024
2.1.151 7,354 4/28/2024
2.1.150 102 4/28/2024
2.1.149 116 4/28/2024
2.1.148 680 4/28/2024
2.1.147 113 4/28/2024
2.1.146 121 4/28/2024
2.1.145 5,210 4/27/2024
2.1.144 145 4/27/2024
2.1.143 110 4/27/2024
2.1.142 38,020 4/12/2024
2.1.141 144 4/12/2024
2.1.140 4,820 4/12/2024
2.1.139 142 4/12/2024
2.1.138 122 4/12/2024
2.1.137 3,136 4/12/2024
2.1.136 132 4/12/2024
2.1.135 129 4/12/2024
2.1.134 117 4/12/2024
2.1.133 26,563 4/1/2024
2.1.132 18,564 3/25/2024
2.1.131 20,148 3/18/2024
2.1.130 192 3/18/2024
2.1.129 353 3/18/2024
2.1.128 18,878 3/13/2024
2.1.127 180 3/13/2024
2.1.126 178 3/13/2024
2.1.125 1,675 3/13/2024
2.1.124 172 3/13/2024
2.1.123 180 3/13/2024
2.1.122 37,886 3/8/2024
2.1.121 15,886 3/3/2024
2.1.120 13,294 3/2/2024
2.1.119 2,058 3/1/2024
2.1.117 12,087 2/28/2024
2.1.116 22,964 2/25/2024
2.1.115 222 2/25/2024
2.1.114 18,525 2/21/2024
2.1.113 4,709 2/21/2024
2.1.112 2,816 2/21/2024
2.1.111 1,864 2/21/2024
2.1.110 242 2/21/2024
2.1.109 5,991 2/21/2024
2.1.108 238 2/21/2024
2.1.107 253 2/21/2024
2.1.106 14,973 2/20/2024
2.1.105 1,646 2/20/2024
2.1.104 9,991 2/19/2024
2.1.103 10,235 2/16/2024
2.1.102 6,934 2/16/2024
2.1.101 241 2/16/2024
2.1.100 6,589 2/16/2024
2.1.99 40,229 2/9/2024
2.1.98 36,354 2/7/2024
2.1.97 4,574 2/6/2024
2.1.96 2,791 2/6/2024
2.1.95 459 2/6/2024
2.1.94 264 2/6/2024
2.1.93 13,454 2/4/2024
2.1.92 98,722 1/15/2024
2.1.91 5,357 1/15/2024
2.1.90 373 1/15/2024
2.1.89 3,124 1/15/2024
2.1.88 319 1/15/2024
2.1.87 37,422 1/7/2024
2.1.86 7,372 1/5/2024
2.1.85 4,463 1/5/2024
2.1.84 355 1/5/2024
2.1.83 378 1/5/2024
2.1.82 5,062 1/5/2024
2.1.81 12,745 1/1/2024
2.1.80 432 1/1/2024
2.1.79 8,356 12/28/2023
2.1.78 4,238 12/28/2023
2.1.77 4,142 12/27/2023
2.1.76 407 12/27/2023
2.1.75 410 12/27/2023
2.1.74 4,996 12/27/2023
2.1.73 382 12/27/2023
2.1.72 405 12/27/2023
2.1.71 15,693 12/25/2023
2.1.70 867 12/25/2023
2.1.69 421 12/25/2023
2.1.68 421 12/25/2023
2.1.67 4,715 12/25/2023
2.1.66 12,740 12/24/2023
2.1.65 7,693 12/23/2023
2.1.64 2,075 12/23/2023
2.1.63 384 12/23/2023
2.1.62 5,527 12/23/2023
2.1.61 433 12/23/2023
2.1.60 377 12/23/2023
2.1.59 1,828 12/23/2023
2.1.58 386 12/23/2023
2.1.57 13,722 12/19/2023
2.1.56 4,581 12/18/2023
2.1.55 12,868 12/10/2023
2.1.51 6,285 12/10/2023
2.1.50 11,053 12/9/2023
2.1.49 429 12/9/2023
2.1.48 515 12/9/2023
2.1.47 446 12/9/2023
2.1.46 439 12/9/2023
2.1.45 464 12/9/2023
2.1.44 7,469 12/9/2023
2.1.43 11,610 12/6/2023
2.1.42 9,324 12/4/2023
2.1.41 5,956 12/4/2023
2.1.40 492 12/4/2023
2.1.39 893 12/4/2023
2.1.38 529 12/4/2023
2.1.37 15,739 11/23/2023
2.1.36 443 11/23/2023
2.1.35 826 11/23/2023
2.1.34 464 11/23/2023
2.1.33 2,058 11/23/2023
2.1.32 3,219 11/23/2023
2.1.31 9,529 11/20/2023
2.1.30 3,847 11/20/2023
2.1.29 6,811 11/19/2023
2.1.28 1,170 11/19/2023
2.1.27 448 11/19/2023
2.1.26 458 11/19/2023
2.1.25 447 11/19/2023
2.1.24 2,342 11/19/2023
2.1.23 10,033 11/18/2023
2.1.22 489 11/18/2023
2.1.21 3,317 11/18/2023
2.1.20 2,253 11/18/2023
2.1.19 474 11/18/2023
2.1.18 5,818 11/17/2023
2.1.17 1,471 11/17/2023
2.1.16 483 11/17/2023
2.1.15 465 11/17/2023
2.1.14 1,888 11/17/2023
2.1.13 7,983 11/17/2023
2.1.12 2,108 11/17/2023
2.1.11 462 11/17/2023
2.1.10 494 11/17/2023
2.1.9 507 11/17/2023
2.1.8 3,694 11/17/2023
2.1.7 1,671 11/16/2023
2.1.6 420 11/16/2023
2.1.5 916 11/16/2023
2.1.4 456 11/16/2023
2.0.140 5,557 11/15/2023
2.0.139 479 11/15/2023
2.0.138 463 11/15/2023
2.0.137 465 11/15/2023
2.0.136 459 11/15/2023
2.0.3 450 11/16/2023
2.0.2 465 11/16/2023
2.0.1 419 11/16/2023
1.0.135 12,271 11/10/2023
1.0.134 486 11/10/2023
1.0.133 5,840 11/9/2023
1.0.132 436 11/9/2023
1.0.131 481 11/9/2023
1.0.130 2,103 11/8/2023
1.0.129 10,553 11/6/2023
1.0.128 461 11/6/2023
1.0.127 489 11/6/2023
1.0.126 491 11/6/2023
1.0.125 3,931 11/3/2023
1.0.124 7,100 11/2/2023
1.0.123 508 11/2/2023
1.0.122 488 11/2/2023
1.0.121 460 11/2/2023
1.0.120 3,786 11/1/2023
1.0.119 19,749 10/18/2023
1.0.118 523 10/18/2023
1.0.117 527 10/18/2023
1.0.116 501 10/18/2023
1.0.115 4,251 10/17/2023
1.0.114 4,977 10/16/2023
1.0.113 516 10/16/2023
1.0.112 505 10/16/2023
1.0.111 537 10/16/2023
1.0.110 7,388 10/13/2023
1.0.109 558 10/13/2023
1.0.108 13,914 9/19/2023
1.0.107 550 9/19/2023
1.0.106 562 9/19/2023
1.0.105 505 9/19/2023
1.0.104 6,641 9/18/2023
1.0.103 547 9/18/2023
1.0.102 16,265 8/30/2023
1.0.101 622 8/30/2023
1.0.100 567 8/30/2023
1.0.99 567 8/30/2023
1.0.98 586 8/30/2023
1.0.97 12,058 8/25/2023
1.0.96 5,508 8/24/2023
1.0.95 576 8/24/2023
1.0.94 10,715 8/18/2023
1.0.93 599 8/18/2023
1.0.92 4,951 8/17/2023
1.0.91 571 8/17/2023
1.0.90 583 8/17/2023
1.0.89 18,469 8/8/2023
1.0.88 617 8/8/2023
1.0.87 5,986 8/7/2023
1.0.86 633 8/7/2023
1.0.85 618 8/7/2023
1.0.84 22,391 7/10/2023
1.0.83 680 7/10/2023
1.0.82 693 7/10/2023
1.0.81 707 7/10/2023
1.0.80 5,066 7/7/2023
1.0.79 653 7/7/2023
1.0.78 16,620 6/29/2023
1.0.77 4,577 6/28/2023
1.0.76 679 6/28/2023
1.0.75 703 6/28/2023
1.0.74 47,878 6/7/2023
1.0.73 6,124 6/7/2023
1.0.72 707 6/7/2023
1.0.71 699 6/7/2023
1.0.70 7,429 6/6/2023
1.0.69 698 6/6/2023
1.0.68 2,853 6/5/2023
1.0.67 670 6/5/2023
1.0.66 7,226 6/2/2023
1.0.65 722 6/2/2023
1.0.64 703 6/2/2023
1.0.63 28,672 5/30/2023
1.0.62 695 5/30/2023
1.0.61 8,320 5/29/2023
1.0.60 705 5/29/2023
1.0.59 6,640 5/26/2023
1.0.58 12,406 5/25/2023
1.0.57 711 5/25/2023
1.0.56 6,381 5/24/2023
1.0.55 725 5/24/2023
1.0.54 720 5/24/2023
1.0.53 702 5/24/2023
1.0.52 804 5/24/2023
1.0.51 4,253 5/23/2023
1.0.50 706 5/23/2023
1.0.49 713 5/23/2023
1.0.46 13,508 5/22/2023
1.0.45 11,022 5/18/2023
1.0.44 6,590 5/17/2023
1.0.43 693 5/17/2023
1.0.42 680 5/17/2023
1.0.41 677 5/17/2023
1.0.40 17,439 4/24/2023
1.0.39 2,411 4/24/2023
1.0.38 753 4/24/2023
1.0.37 4,078 4/21/2023
1.0.36 702 4/21/2023
1.0.35 706 4/21/2023
1.0.34 4,534 4/20/2023
1.0.33 892 4/20/2023
1.0.32 841 4/20/2023
1.0.31 4,175 4/19/2023
1.0.30 1,911 4/18/2023
1.0.29 739 4/18/2023
1.0.28 1,887 4/18/2023
1.0.27 3,366 4/17/2023
1.0.26 813 4/16/2023
1.0.25 759 4/16/2023
1.0.24 3,514 4/14/2023
1.0.23 2,564 4/13/2023
1.0.22 2,459 4/12/2023
1.0.21 739 4/12/2023
1.0.20 739 4/12/2023
1.0.19 1,765 4/11/2023
1.0.18 809 4/11/2023
1.0.17 2,590 4/11/2023
1.0.16 3,000 4/7/2023
1.0.15 3,816 4/3/2023
1.0.14 787 4/3/2023
1.0.13 774 4/3/2023
1.0.12 735 4/3/2023
1.0.11 2,060 4/1/2023
1.0.10 1,167 3/30/2023
1.0.9 907 3/26/2023
1.0.7 3,979 2/27/2023
1.0.6 801 2/26/2023
1.0.5 796 2/22/2023
1.0.4 988 2/22/2023
1.0.3 831 2/22/2023
1.0.2 1,363 2/12/2023
1.0.1 1,023 2/12/2023