Soenneker.Utils.String.Trie 3.0.479

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Soenneker.Utils.String.Trie --version 3.0.479
                    
NuGet\Install-Package Soenneker.Utils.String.Trie -Version 3.0.479
                    
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.String.Trie" Version="3.0.479" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Soenneker.Utils.String.Trie" Version="3.0.479" />
                    
Directory.Packages.props
<PackageReference Include="Soenneker.Utils.String.Trie" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Soenneker.Utils.String.Trie --version 3.0.479
                    
#r "nuget: Soenneker.Utils.String.Trie, 3.0.479"
                    
#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.
#:package Soenneker.Utils.String.Trie@3.0.479
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Soenneker.Utils.String.Trie&version=3.0.479
                    
Install as a Cake Addin
#tool nuget:?package=Soenneker.Utils.String.Trie&version=3.0.479
                    
Install as a Cake Tool

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

A utility library for comparing strings via trie (prefix tree) similarity

Installation

dotnet add package Soenneker.Utils.String.Trie

Why?

Imagine you have two strings. Trie-based matching helps you figure out how similar they are by looking at the prefixes they share. Here's why it's handy:

Easy to Understand:

Trie-based matching is straightforward. It helps identify common prefixes between two strings, providing an intuitive measure of similarity.

Not Bothered by Length:

Whether a string is long or short doesn't throw off trie-based matching. It cares more about the common prefixes than the total length of the strings.

Efficient for Big Tasks:

When you're dealing with lots of strings or large texts, trie-based matching is efficient. It quickly identifies common prefixes without getting bogged down by complicated calculations, making it a practical choice for large datasets.

Usage

string str1 = "hello";
string str2 = "hell";

double similarity = TrieStringSimilarityUtil.CalculateSimilarityPercentage(str1, str2); // 80
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.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.678 126 8/11/2025
3.0.677 89 6/27/2025
3.0.676 155 5/27/2025
3.0.674 155 5/7/2025
3.0.673 151 5/5/2025
3.0.672 149 5/5/2025
3.0.670 184 4/8/2025
3.0.669 170 4/8/2025
3.0.668 165 4/8/2025
3.0.667 171 4/8/2025
3.0.666 160 4/8/2025
3.0.665 170 4/8/2025
3.0.664 168 4/8/2025
3.0.663 172 4/7/2025
3.0.662 174 4/7/2025
3.0.661 181 4/7/2025
3.0.660 163 4/7/2025
3.0.659 167 4/7/2025
3.0.658 162 4/7/2025
3.0.657 168 4/7/2025
3.0.656 178 4/6/2025
3.0.655 168 4/6/2025
3.0.654 157 4/6/2025
3.0.653 144 4/6/2025
3.0.652 124 4/6/2025
3.0.651 122 4/6/2025
3.0.650 125 4/6/2025
3.0.649 121 4/6/2025
3.0.648 104 4/5/2025
3.0.647 94 4/5/2025
3.0.646 97 4/5/2025
3.0.645 106 4/5/2025
3.0.644 91 4/5/2025
3.0.643 94 4/5/2025
3.0.642 109 4/5/2025
3.0.641 159 4/4/2025
3.0.640 159 4/1/2025
3.0.639 169 3/31/2025
3.0.638 171 3/31/2025
3.0.637 97 3/29/2025
3.0.636 484 3/25/2025
3.0.635 477 3/25/2025
3.0.634 124 3/21/2025
3.0.633 135 3/21/2025
3.0.632 149 3/18/2025
3.0.631 156 3/18/2025
3.0.630 79 3/15/2025
3.0.629 80 3/15/2025
3.0.628 76 3/15/2025
3.0.627 165 3/12/2025
3.0.626 169 3/12/2025
3.0.625 163 3/12/2025
3.0.624 168 3/11/2025
3.0.623 160 3/11/2025
3.0.622 168 3/11/2025
3.0.621 176 3/11/2025
3.0.620 157 3/11/2025
3.0.619 160 3/11/2025
3.0.618 221 3/7/2025
3.0.617 229 3/7/2025
3.0.616 107 3/2/2025
3.0.615 111 3/2/2025
3.0.614 103 3/2/2025
3.0.613 109 3/2/2025
3.0.612 106 3/1/2025
3.0.611 104 3/1/2025
3.0.610 111 3/1/2025
3.0.609 108 3/1/2025
3.0.608 108 3/1/2025
3.0.607 105 3/1/2025
3.0.606 99 3/1/2025
3.0.605 98 3/1/2025
3.0.604 116 2/25/2025
3.0.603 116 2/25/2025
3.0.602 111 2/25/2025
3.0.601 117 2/25/2025
3.0.600 99 2/24/2025
3.0.599 129 2/23/2025
3.0.598 106 2/23/2025
3.0.597 103 2/22/2025
3.0.596 97 2/22/2025
3.0.595 106 2/22/2025
3.0.594 111 2/22/2025
3.0.593 112 2/22/2025
3.0.592 110 2/21/2025
3.0.591 103 2/21/2025
3.0.590 120 2/21/2025
3.0.589 124 2/19/2025
3.0.588 124 2/19/2025
3.0.587 110 2/19/2025
3.0.586 118 2/18/2025
3.0.585 119 2/18/2025
3.0.584 138 2/18/2025
3.0.583 122 2/14/2025
3.0.582 115 2/13/2025
3.0.581 125 2/12/2025
3.0.580 122 2/12/2025
3.0.579 110 2/12/2025
3.0.578 108 2/12/2025
3.0.577 110 2/12/2025
3.0.576 113 2/11/2025
3.0.575 116 2/11/2025
3.0.574 122 2/11/2025
3.0.573 117 2/11/2025
3.0.572 121 2/11/2025
3.0.571 120 2/11/2025
3.0.570 130 2/10/2025
3.0.569 110 2/10/2025
3.0.568 110 2/10/2025
3.0.567 111 2/10/2025
3.0.566 112 2/9/2025
3.0.565 104 2/8/2025
3.0.564 117 2/8/2025
3.0.563 107 2/8/2025
3.0.562 113 2/8/2025
3.0.561 118 2/8/2025
3.0.560 107 2/7/2025
3.0.559 116 2/7/2025
3.0.558 105 2/7/2025
3.0.557 104 2/7/2025
3.0.556 120 2/7/2025
3.0.555 105 2/6/2025
3.0.554 131 2/5/2025
3.0.553 118 2/5/2025
3.0.552 116 2/5/2025
3.0.551 107 2/5/2025
3.0.550 104 2/5/2025
3.0.549 115 2/5/2025
3.0.548 100 2/5/2025
3.0.547 112 1/28/2025
3.0.546 107 1/28/2025
3.0.545 106 1/28/2025
3.0.544 96 1/27/2025
3.0.543 93 1/27/2025
3.0.542 93 1/27/2025
3.0.541 104 1/27/2025
3.0.540 110 1/26/2025
3.0.539 97 1/26/2025
3.0.538 106 1/25/2025
3.0.537 105 1/25/2025
3.0.536 108 1/25/2025
3.0.535 94 1/25/2025
3.0.534 95 1/24/2025
3.0.533 109 1/24/2025
3.0.532 105 1/24/2025
3.0.531 105 1/24/2025
3.0.530 104 1/24/2025
3.0.529 98 1/24/2025
3.0.528 107 1/23/2025
3.0.527 113 1/23/2025
3.0.526 112 1/21/2025
3.0.525 109 1/21/2025
3.0.524 119 1/21/2025
3.0.523 104 1/21/2025
3.0.522 98 1/21/2025
3.0.521 111 1/21/2025
3.0.520 103 1/21/2025
3.0.519 112 1/21/2025
3.0.518 109 1/21/2025
3.0.517 102 1/21/2025
3.0.516 111 1/21/2025
3.0.515 113 1/21/2025
3.0.514 101 1/20/2025
3.0.513 112 1/20/2025
3.0.512 102 1/20/2025
3.0.511 107 1/20/2025
3.0.510 102 1/20/2025
3.0.509 105 1/20/2025
3.0.508 110 1/20/2025
3.0.507 100 1/20/2025
3.0.506 99 1/20/2025
3.0.505 111 1/19/2025
3.0.504 100 1/19/2025
3.0.503 99 1/19/2025
3.0.502 103 1/19/2025
3.0.501 100 1/19/2025
3.0.500 105 1/19/2025
3.0.499 93 1/19/2025
3.0.498 108 1/18/2025
3.0.497 96 1/18/2025
3.0.496 99 1/17/2025
3.0.495 107 1/17/2025
3.0.494 100 1/17/2025
3.0.493 110 1/17/2025
3.0.492 104 1/16/2025
3.0.491 96 1/16/2025
3.0.490 107 1/16/2025
3.0.489 109 1/16/2025
3.0.488 106 1/16/2025
3.0.487 101 1/16/2025
3.0.486 110 1/15/2025
3.0.485 102 1/15/2025
3.0.484 99 1/15/2025
3.0.483 98 1/15/2025
3.0.482 110 1/15/2025
3.0.481 99 1/15/2025
3.0.480 83 1/15/2025
3.0.479 70 1/15/2025
3.0.478 94 1/14/2025
3.0.477 89 1/14/2025
3.0.476 94 1/14/2025
3.0.475 93 1/14/2025
3.0.474 100 1/14/2025
3.0.473 94 1/13/2025
3.0.472 97 1/13/2025
3.0.471 95 1/13/2025
3.0.470 90 1/13/2025
3.0.469 104 1/11/2025
3.0.468 114 1/11/2025
3.0.467 105 1/11/2025
3.0.466 103 1/11/2025
3.0.465 117 1/10/2025
3.0.464 93 1/10/2025
3.0.463 86 1/10/2025
3.0.462 109 1/10/2025
3.0.461 106 1/10/2025
3.0.460 115 1/10/2025
3.0.459 135 1/3/2025
3.0.458 140 1/3/2025
3.0.457 127 1/3/2025
3.0.456 111 1/3/2025
3.0.455 121 1/2/2025
3.0.454 114 1/2/2025
3.0.453 128 1/2/2025
3.0.452 119 1/2/2025
3.0.451 122 1/1/2025
3.0.450 140 1/1/2025
3.0.449 120 1/1/2025
3.0.448 124 1/1/2025
3.0.447 127 1/1/2025
3.0.446 132 1/1/2025
3.0.445 118 1/1/2025
3.0.444 122 1/1/2025
3.0.443 130 12/31/2024
3.0.442 120 12/31/2024
3.0.441 119 12/31/2024
3.0.440 126 12/31/2024
3.0.439 133 12/31/2024
3.0.438 130 12/31/2024
3.0.437 106 12/31/2024
3.0.436 110 12/31/2024
3.0.435 108 12/31/2024
3.0.434 99 12/31/2024
3.0.433 123 12/31/2024
3.0.432 109 12/30/2024
3.0.431 111 12/28/2024
3.0.430 99 12/28/2024
3.0.429 113 12/27/2024
3.0.428 120 12/27/2024
3.0.427 111 12/24/2024
3.0.426 112 12/24/2024
3.0.425 102 12/24/2024
3.0.424 109 12/23/2024
3.0.423 112 12/23/2024
3.0.422 112 12/23/2024
3.0.421 100 12/23/2024
3.0.420 115 12/23/2024
3.0.419 103 12/23/2024
3.0.418 115 12/22/2024
3.0.417 111 12/22/2024
3.0.416 111 12/22/2024
3.0.415 122 12/22/2024
3.0.414 114 12/22/2024
3.0.413 119 12/22/2024
3.0.412 110 12/21/2024
3.0.411 104 12/21/2024
3.0.410 112 12/21/2024
3.0.409 105 12/21/2024
3.0.408 103 12/21/2024
3.0.407 110 12/21/2024
3.0.406 111 12/20/2024
3.0.405 111 12/20/2024
3.0.404 115 12/20/2024
3.0.403 114 12/20/2024
3.0.402 106 12/20/2024
3.0.401 114 12/19/2024
3.0.400 101 12/19/2024
3.0.399 107 12/19/2024
3.0.398 100 12/19/2024
3.0.397 116 12/18/2024
3.0.396 109 12/18/2024
3.0.395 118 12/16/2024
3.0.394 113 12/16/2024
3.0.393 105 12/10/2024
3.0.392 109 12/10/2024
3.0.391 113 12/10/2024
3.0.390 106 12/9/2024
3.0.389 116 12/9/2024
3.0.388 106 12/9/2024
3.0.387 102 12/9/2024
3.0.386 105 12/9/2024
3.0.385 106 12/7/2024
3.0.384 114 12/6/2024
3.0.383 120 12/6/2024
3.0.382 101 12/6/2024
3.0.381 116 12/6/2024
3.0.380 118 12/6/2024
3.0.379 110 12/6/2024
3.0.377 116 12/6/2024
3.0.376 110 12/5/2024
3.0.375 123 12/5/2024
3.0.374 115 12/5/2024
3.0.373 114 12/5/2024
3.0.372 107 12/5/2024
3.0.371 108 12/5/2024
3.0.370 117 12/5/2024
3.0.369 113 12/4/2024
3.0.368 117 12/4/2024
3.0.367 109 12/4/2024
3.0.366 121 12/4/2024
3.0.365 110 12/4/2024
3.0.364 119 12/3/2024
3.0.363 112 12/3/2024
3.0.362 118 12/3/2024
3.0.361 109 12/3/2024
3.0.360 108 12/3/2024
3.0.359 106 12/3/2024
3.0.358 104 12/3/2024
3.0.357 111 12/2/2024
3.0.356 101 12/2/2024
3.0.355 106 12/2/2024
3.0.354 115 12/2/2024
3.0.353 114 12/1/2024
3.0.352 110 12/1/2024
3.0.351 114 12/1/2024
3.0.350 120 12/1/2024
3.0.349 119 11/29/2024
3.0.348 103 11/29/2024
3.0.347 107 11/21/2024
3.0.346 104 11/21/2024
3.0.345 118 11/20/2024
3.0.344 107 11/20/2024
3.0.343 119 11/20/2024
3.0.342 120 11/20/2024
3.0.341 119 11/20/2024
3.0.340 110 11/19/2024
3.0.339 113 11/19/2024
3.0.338 106 11/19/2024
3.0.337 102 11/19/2024
3.0.336 114 11/19/2024
3.0.335 115 11/19/2024
3.0.334 150 11/15/2024
3.0.333 112 11/14/2024
3.0.332 108 11/14/2024
3.0.331 101 11/14/2024
3.0.330 104 11/14/2024
3.0.329 110 11/14/2024
3.0.328 111 11/14/2024
3.0.327 111 11/14/2024
3.0.326 118 11/14/2024
3.0.325 117 11/14/2024
3.0.324 124 11/14/2024
3.0.323 116 11/14/2024
3.0.322 112 11/14/2024
3.0.321 113 11/14/2024
2.1.320 114 11/13/2024
2.1.319 114 11/13/2024
2.1.318 114 11/13/2024
2.1.317 112 11/13/2024
2.1.316 112 11/13/2024
2.1.315 111 11/12/2024
2.1.314 127 11/9/2024
2.1.313 119 11/9/2024
2.1.312 118 11/9/2024
2.1.311 113 11/8/2024
2.1.310 104 11/8/2024
2.1.309 113 11/8/2024
2.1.308 127 11/8/2024
2.1.307 128 11/8/2024
2.1.306 127 11/6/2024
2.1.305 117 11/1/2024
2.1.304 112 11/1/2024
2.1.303 111 11/1/2024
2.1.302 108 10/31/2024
2.1.301 113 10/29/2024
2.1.300 113 10/29/2024
2.1.299 116 10/29/2024
2.1.298 106 10/29/2024
2.1.297 123 10/29/2024
2.1.296 110 10/29/2024
2.1.295 112 10/28/2024
2.1.294 119 10/26/2024
2.1.293 114 10/26/2024
2.1.292 111 10/22/2024
2.1.291 123 10/22/2024
2.1.290 108 10/22/2024
2.1.289 108 10/22/2024
2.1.288 115 10/22/2024
2.1.287 117 10/18/2024
2.1.286 102 10/17/2024
2.1.285 122 10/17/2024
2.1.284 109 10/15/2024
2.1.283 108 10/15/2024
2.1.282 106 10/14/2024
2.1.281 112 10/12/2024
2.1.280 111 10/12/2024
2.1.279 109 10/12/2024
2.1.278 112 10/11/2024
2.1.277 114 10/9/2024
2.1.276 119 10/9/2024
2.1.275 109 10/9/2024
2.1.274 102 10/9/2024
2.1.273 107 10/9/2024
2.1.272 116 10/8/2024
2.1.271 118 10/8/2024
2.1.270 112 10/8/2024
2.1.269 116 10/8/2024
2.1.268 110 10/3/2024
2.1.267 112 10/3/2024
2.1.266 118 10/3/2024
2.1.265 112 10/3/2024
2.1.264 112 10/3/2024
2.1.263 112 10/2/2024
2.1.262 110 10/2/2024
2.1.261 122 10/2/2024
2.1.260 116 10/2/2024
2.1.259 110 10/2/2024
2.1.258 113 10/1/2024
2.1.257 112 10/1/2024
2.1.256 121 10/1/2024
2.1.255 124 10/1/2024
2.1.254 115 9/29/2024
2.1.253 117 9/29/2024
2.1.252 106 9/29/2024
2.1.251 109 9/29/2024
2.1.250 118 9/29/2024
2.1.249 108 9/27/2024
2.1.248 113 9/27/2024
2.1.247 104 9/27/2024
2.1.246 109 9/27/2024
2.1.245 113 9/27/2024
2.1.244 123 9/27/2024
2.1.243 116 9/27/2024
2.1.242 114 9/26/2024
2.1.241 110 9/26/2024
2.1.240 115 9/26/2024
2.1.239 108 9/26/2024
2.1.238 111 9/26/2024
2.1.237 112 9/26/2024
2.1.236 106 9/26/2024
2.1.235 107 9/26/2024
2.1.234 106 9/23/2024
2.1.233 112 9/23/2024
2.1.232 110 9/23/2024
2.1.231 108 9/23/2024
2.1.230 112 9/23/2024
2.1.229 110 9/23/2024
2.1.228 113 9/23/2024
2.1.227 108 9/23/2024
2.1.226 125 9/18/2024
2.1.225 131 9/18/2024
2.1.224 111 9/18/2024
2.1.223 116 9/18/2024
2.1.222 118 9/18/2024
2.1.221 122 9/17/2024
2.1.220 123 9/17/2024
2.1.218 124 9/17/2024
2.1.217 120 9/17/2024
2.1.216 133 9/17/2024
2.1.215 111 9/17/2024
2.1.214 107 9/17/2024
2.1.213 108 9/16/2024
2.1.212 129 9/16/2024
2.1.211 127 9/12/2024
2.1.210 130 9/12/2024
2.1.209 136 9/11/2024
2.1.208 133 9/11/2024
2.1.207 132 9/11/2024
2.1.206 137 9/11/2024
2.1.205 130 9/11/2024
2.1.204 144 9/10/2024
2.1.203 146 9/10/2024
2.1.202 116 9/10/2024
2.1.201 130 9/10/2024
2.1.200 129 9/10/2024
2.1.199 142 9/10/2024
2.1.198 139 9/10/2024
2.1.197 113 9/9/2024
2.1.195 123 9/9/2024
2.1.194 115 9/9/2024
2.1.193 128 9/9/2024
2.1.192 134 9/9/2024
2.1.191 130 9/7/2024
2.1.190 103 9/7/2024
2.1.189 132 9/7/2024
2.1.188 130 9/6/2024
2.1.187 140 9/6/2024
2.1.186 138 9/6/2024
2.1.185 133 9/5/2024
2.1.184 136 9/5/2024
2.1.183 115 9/5/2024
2.1.182 133 9/5/2024
2.1.181 122 9/5/2024
2.1.180 120 9/5/2024
2.1.179 120 9/5/2024
2.1.178 113 9/5/2024
2.1.177 114 9/4/2024
2.1.176 120 9/4/2024
2.1.175 125 9/3/2024
2.1.174 131 9/3/2024
2.1.173 121 9/3/2024
2.1.172 137 9/3/2024
2.1.171 112 9/3/2024
2.1.170 119 9/3/2024
2.1.169 127 8/29/2024
2.1.168 122 8/29/2024
2.1.167 123 8/29/2024
2.1.166 128 8/26/2024
2.1.165 116 8/26/2024
2.1.164 142 8/26/2024
2.1.163 135 8/21/2024
2.1.162 155 8/21/2024
2.1.161 146 8/21/2024
2.1.160 135 8/21/2024
2.1.159 157 8/20/2024
2.1.158 153 8/20/2024
2.1.157 132 8/20/2024
2.1.156 130 8/20/2024
2.1.155 146 8/20/2024
2.1.154 139 8/20/2024
2.1.153 154 8/19/2024
2.1.152 148 8/15/2024
2.1.151 160 8/15/2024
2.1.150 152 8/15/2024
2.1.149 145 8/14/2024
2.1.148 128 8/14/2024
2.1.147 123 8/14/2024
2.1.146 142 8/13/2024
2.1.145 118 8/7/2024
2.1.144 112 8/7/2024
2.1.143 118 8/7/2024
2.1.142 117 8/6/2024
2.1.141 107 8/6/2024
2.1.140 95 8/1/2024
2.1.139 88 8/1/2024
2.1.137 109 7/25/2024
2.1.136 114 7/25/2024
2.1.135 110 7/25/2024
2.1.134 114 7/25/2024
2.1.133 101 7/25/2024
2.1.132 118 7/25/2024
2.1.131 115 7/25/2024
2.1.130 111 7/24/2024
2.1.129 118 7/24/2024
2.1.128 110 7/20/2024
2.1.127 131 7/20/2024
2.1.126 129 7/20/2024
2.1.125 125 7/14/2024
2.1.124 127 7/14/2024
2.1.123 124 7/14/2024
2.1.122 120 7/14/2024
2.1.121 127 7/14/2024
2.1.120 129 7/10/2024
2.1.119 123 7/10/2024
2.1.118 122 7/10/2024
2.1.117 109 7/10/2024
2.1.115 120 7/10/2024
2.1.114 113 7/10/2024
2.1.113 126 7/10/2024
2.1.112 123 7/10/2024
2.1.111 109 7/10/2024
2.1.109 126 7/10/2024
2.1.108 130 7/9/2024
2.1.106 93 7/9/2024
2.1.105 113 7/9/2024
2.1.104 109 7/9/2024
2.1.103 125 7/9/2024
2.1.102 125 7/9/2024
2.1.101 123 7/9/2024
2.1.100 125 7/9/2024
2.1.99 120 7/9/2024
2.1.98 106 7/8/2024
2.1.97 135 7/8/2024
2.1.96 126 7/8/2024
2.1.95 124 7/8/2024
2.1.94 133 7/8/2024
2.1.93 122 7/8/2024
2.1.92 126 7/7/2024
2.1.91 126 7/7/2024
2.1.90 130 7/3/2024
2.1.89 116 7/3/2024
2.1.88 131 7/3/2024
2.1.87 127 7/3/2024
2.1.86 115 7/3/2024
2.1.85 121 6/27/2024
2.1.84 110 6/27/2024
2.1.83 106 6/27/2024
2.1.82 146 6/22/2024
2.1.81 131 6/22/2024
2.1.80 132 6/22/2024
2.1.79 130 6/16/2024
2.1.78 107 6/15/2024
2.1.77 115 6/15/2024
2.1.76 129 6/15/2024
2.1.75 117 6/15/2024
2.1.74 132 6/15/2024
2.1.73 123 6/15/2024
2.1.72 129 6/15/2024
2.1.71 111 6/14/2024
2.1.70 132 6/4/2024
2.1.69 120 6/4/2024
2.1.68 139 6/2/2024
2.1.67 141 6/2/2024
2.1.66 139 6/1/2024
2.1.65 118 6/1/2024
2.1.64 129 6/1/2024
2.1.63 128 6/1/2024
2.1.62 132 6/1/2024
2.1.61 126 6/1/2024
2.1.60 131 6/1/2024
2.1.59 116 5/31/2024
2.1.58 135 5/31/2024
2.1.57 137 5/31/2024
2.1.56 123 5/31/2024
2.1.55 135 5/29/2024
2.1.54 127 5/29/2024
2.1.53 134 5/29/2024
2.1.52 126 5/28/2024
2.1.51 131 5/28/2024
2.1.50 133 5/28/2024
2.1.49 136 5/28/2024
2.1.48 134 5/28/2024
2.1.47 105 5/27/2024
2.1.46 121 5/27/2024
2.1.45 129 5/27/2024
2.1.44 124 5/27/2024
2.1.43 126 5/26/2024
2.1.42 131 5/26/2024
2.1.41 133 5/26/2024
2.1.40 120 5/26/2024
2.1.39 130 5/26/2024
2.1.38 136 5/26/2024
2.1.37 109 5/25/2024
2.1.36 131 5/25/2024
2.1.35 145 5/25/2024
2.1.34 141 5/25/2024
2.1.33 136 5/25/2024
2.1.32 127 5/23/2024
2.1.31 122 5/23/2024
2.1.30 135 5/23/2024
2.1.29 132 5/23/2024
2.1.28 118 5/23/2024
2.1.27 134 5/23/2024
2.1.26 137 5/23/2024
2.1.25 128 5/22/2024
2.1.24 133 5/22/2024
2.1.23 137 5/22/2024
2.1.22 136 5/22/2024
2.1.21 116 5/18/2024
2.1.20 106 5/18/2024
2.1.19 106 5/18/2024
2.1.18 115 5/18/2024
2.1.17 111 5/17/2024
2.1.16 126 5/17/2024
2.1.15 88 5/17/2024
2.1.14 119 5/16/2024
2.1.13 108 5/16/2024
2.1.12 125 5/16/2024
2.1.11 114 5/15/2024
2.1.10 111 5/15/2024
2.1.9 123 5/15/2024
2.1.8 107 5/14/2024
2.1.7 94 5/14/2024
2.1.6 89 5/14/2024
2.1.5 103 5/14/2024
2.1.4 72 5/14/2024
2.1.3 117 5/14/2024
2.1.2 95 5/14/2024
2.1.1 102 5/14/2024