HomagGroup.HomagConnect.MmrMobile.Client 1.2.2-alpha.0.2

Prefix Reserved
This is a prerelease version of HomagGroup.HomagConnect.MmrMobile.Client.
There is a newer version of this package available.
See the version list below for details.
dotnet add package HomagGroup.HomagConnect.MmrMobile.Client --version 1.2.2-alpha.0.2
                    
NuGet\Install-Package HomagGroup.HomagConnect.MmrMobile.Client -Version 1.2.2-alpha.0.2
                    
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="HomagGroup.HomagConnect.MmrMobile.Client" Version="1.2.2-alpha.0.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="HomagGroup.HomagConnect.MmrMobile.Client" Version="1.2.2-alpha.0.2" />
                    
Directory.Packages.props
<PackageReference Include="HomagGroup.HomagConnect.MmrMobile.Client" />
                    
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 HomagGroup.HomagConnect.MmrMobile.Client --version 1.2.2-alpha.0.2
                    
#r "nuget: HomagGroup.HomagConnect.MmrMobile.Client, 1.2.2-alpha.0.2"
                    
#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 HomagGroup.HomagConnect.MmrMobile.Client@1.2.2-alpha.0.2
                    
#: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=HomagGroup.HomagConnect.MmrMobile.Client&version=1.2.2-alpha.0.2&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=HomagGroup.HomagConnect.MmrMobile.Client&version=1.2.2-alpha.0.2&prerelease
                    
Install as a Cake Tool

<span style="color:red">[This is preliminary documentation and is subject to change.] </span>

HOMAG MMR Mobile Client

HOMAG Connect MMR Mobile gives you direct access to your machine data (counters, states) from MMR Mobile. You can then conveniently integrate this into your applications. To help you get started, we have prepared a few examples that you can find below.

Version history

Version Date Comment
1.0.0 07.09.2023 First Draft
1.1.0 27.10.2023 Add granularity for getting the data and updating the technical documentation

Content table

  1. TL;DR
  2. Homag Connect MMR Mobile interface overview
  3. Details

Authorization

TL;DR

mkdir test-homag-connect-mmr-client
dotnet new console
dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
dotnet add package HomagGroup.HomagConnect.MmrMobile.Client
using System.Net.Http.Headers;
using System.Text;

using HomagConnect.MmrMobile.Client.Services;

Console.WriteLine("Hello at the HOMAG MMR Mobile Client");

var client = new HttpClient();
client.BaseAddress = new Uri("https://connect.homag.cloud");
Console.WriteLine("Please insert your subscription Id:");
var subscriptionId = Console.ReadLine();
Console.WriteLine("Please insert your token:");
var token = Console.ReadLine();
var credentials = Convert.ToBase64String(Encoding.UTF8.GetBytes($"{subscriptionId}:{token}"));
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Basic", credentials);
var states = await mmrMobileService.GetStateData();
var counters = await mmrMobileService.GetCounterData();
Console.WriteLine($"You got {states.Count()} states and {counters.Count()} counter for the last 14 days")
dotnet run

Homag Connect MMR Mobile interface overview

Name Method API Usage
GetStateData GET api/mmr/<br/>states?from={from}&to={to}<br/>&machineNumber={machineNumber}<br/>&instanceId={instanceId}<br/>&machineType={machineType}<br/>&stateId={stateId}<br/>&detailedStateId={detailedStateId}<br/>&granularity={granularity} Returns all state data for the asked time window (default: 14 days) for all machines assigned to the subscription, if not asked specifically.
GetCounterData GET api/mmr/<br/>counter?from={from}&to={to}<br/>&machineNumber={machineNumber}<br/>&instanceId={instanceId}<br/>&machineType={machineType}<br/>&counterId={counterId}<br/>&granularity={granularity} Returns all counter data for the asked time window (default: 14 days) for all machines assigned to the subscription, if not asked specifically.

Details

Rate Limiting

As mentioned in the base documentation, each application has a different rate limitation. For the following endpoints this limit is currently set to 6 requests in a minute.

GetStateData

Input
Parameter Type Description
from (Optional) DateTime DateTime that the search should start from
to (Optional) DateTime DateTime that the search should end
machineNumber (Optional) string Number of the machine (Format: x-xxx-xx-xxxx)
instanceId (Optional) string The id of the instance
machineType (Optional) string Type of machine
stateId (Optional) string Id of the state
detailedStateId (Optional) string Id of the detailed state
granularity (Optional) string Specifies granualrity of the returned data (hour, day, week, month). Default will be like the following: 1 day: hourly, 2-14 days: daily, 15 days - 3 months: weekly, every timespan requested bigger than 3 months: monthly if not asked specifically. The hourly data is only available for the last 14 days.
Output
Property Type Description
Machine Number string Number of the machine
Machine Name string Name of the machine
Machine Type string Type of machine
Timestamp DateTime Day when the data was gathered
Granularity string Granularity of the requested data
Duration [h] double Time that the machine spent in the state in hours
Instance Id string Id of the instance
Detailed State Id string Id of the detailed state
Detailed State string Detailed state translated into the requested language
State Id string Id of the state
State string State translated into the requested language
Example

Request

GET /api/mmr/states
api-version: 2023-09-05
Accept-Language: de-DE
Authorization: Basic NjU1MDFEMDktMkJCOS00M0MyLUI5RDMtMUZCMDAwNkE3NjlFOnNkMDlzaGR1Z985OGffc2ZkZ3pz32Y5ZGhzYWZkaHNmZN92ODlwYmZkOXZiaGFmZGd2
tracestate: someinternaltracedata

Response (200 OK)

Content-Type: application/json; charset=utf-8
[
    {
        "Machine Number": "0-242-92-1234",
        "Machine Name": "Some Machine | 0-242-92-1234",
        "Machine Type": "CNC",
        "Timestamp": "2022-09-27T00:00:00",
        "Granularity": "day",
        "Duration [h]": 4.348055555555556,
        "Instance Id": "M1-C1",
        "Detailed State Id": "S_OMU_MODE1",
        "Detailed State": "Hauptnutzung Tisch links",
        "State Id": "s_mainusage",
        "State": "Hauptnutzung"
    }
]

The default route with no timespan added will always return related data for the last 14 days.

GetCounterData

Input
Parameter Type Description
from (Optional) DateTime DateTime that the search should start from
to (Optional) DateTime DateTime that the search should end
machineNumber (Optional) string Number of the machine (Format: x-xxx-xx-xxxx)
instanceId (Optional) string The id of the instance
machineType (Optional) string Type of machine
counterId (Optional) string Id of the counter
granularity (Optional) string Specifies granualrity of the returned data (hour, day, week, month). Default will be like the following: 1 day: hourly, 2-14 days: daily, 15 days - 3 months: weekly, every timespan requested bigger than 3 months: monthly if not asked specifically. The hourly data is only available for the last 14 days.
Output
Property Type Description
Machine Number string Number of the machine
Machine Name string Name of the machine
Machine Type string Type of machine
Timestamp DateTime Day when the data was gathered
Granularity string Granularity of the requested data
Value double Output value
Instance Id string Id of the instance
Counter Id string Id of the counter
Counter string Counter translated into the requested language
Example

Request

GET /api/mmr/counters
api-version: 2023-09-05
Accept-Language: de-DE
Authorization: Basic NjU1MDFEMDktMkJCOS00M0MyLUI5RDMtMUZCMDAwNkE3NjlFOnNkMDlzaGR1Z985OGffc2ZkZ3pz32Y5ZGhzYWZkaHNmZN92ODlwYmZkOXZiaGFmZGd2
tracestate: someinternaltracedata

Response (200 OK)

Content-Type: application/json; charset=utf-8
[
    {
        "Machine Number": "0-242-92-1234",
        "Machine Name": "Some Machine | 0-242-92-1234",
        "Machine Type": "CNC",
        "Timestamp": "2022-09-05T05:00:00",
        "Granularity": "hour",
        "Value": 62.0,
        "Instance Id": "M1-C1",
        "Counter Id": "S_OUT_CyclesAll",
        "Counter": "Ausbringung Zyklen"
    }
]

The default route with no timespan added will always return related data for the last 14 days.

Contribute

If you find anything, feel free to contribute to this repository. We are happy for every improvement ❤️.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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.  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.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen 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

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
2.0.1-alpha.0.119 71 9/17/2025
2.0.1-alpha.0.118 74 9/16/2025
2.0.1-alpha.0.116 116 9/10/2025
2.0.1-alpha.0.115 116 9/9/2025
2.0.1-alpha.0.113 128 9/4/2025
2.0.1-alpha.0.112 136 9/3/2025
2.0.1-alpha.0.111 127 9/3/2025
2.0.1-alpha.0.110 115 9/2/2025
2.0.1-alpha.0.109 122 9/2/2025
2.0.1-alpha.0.108 125 9/2/2025
2.0.1-alpha.0.107 117 9/2/2025
2.0.1-alpha.0.105 167 8/28/2025
2.0.1-alpha.0.104 164 8/28/2025
2.0.1-alpha.0.102 165 8/27/2025
2.0.1-alpha.0.101 163 8/27/2025
2.0.1-alpha.0.100 169 8/27/2025
2.0.1-alpha.0.99 166 8/27/2025
2.0.1-alpha.0.98 162 8/27/2025
2.0.1-alpha.0.97 167 8/27/2025
2.0.1-alpha.0.96 191 8/26/2025
2.0.1-alpha.0.95 93 8/22/2025
2.0.1-alpha.0.94 142 8/21/2025
2.0.1-alpha.0.93 112 8/21/2025
2.0.1-alpha.0.92 113 8/20/2025
2.0.1-alpha.0.91 115 8/19/2025
2.0.1-alpha.0.90 118 8/19/2025
2.0.1-alpha.0.89 114 8/18/2025
2.0.1-alpha.0.88 122 8/18/2025
2.0.1-alpha.0.87 80 8/15/2025
2.0.1-alpha.0.86 120 8/14/2025
2.0.1-alpha.0.85 123 8/14/2025
2.0.1-alpha.0.84 124 8/13/2025
2.0.1-alpha.0.83 122 8/13/2025
2.0.1-alpha.0.82 122 8/13/2025
2.0.1-alpha.0.81 126 8/12/2025
2.0.1-alpha.0.79 118 8/11/2025
2.0.1-alpha.0.78 118 8/11/2025
2.0.1-alpha.0.77 201 8/6/2025
2.0.1-alpha.0.76 204 8/5/2025
2.0.1-alpha.0.75 201 8/5/2025
2.0.1-alpha.0.74 150 8/4/2025
2.0.1-alpha.0.73 108 8/1/2025
2.0.1-alpha.0.72 77 8/1/2025
2.0.1-alpha.0.71 102 7/31/2025
2.0.1-alpha.0.70 100 7/31/2025
2.0.1-alpha.0.69 96 7/30/2025
2.0.1-alpha.0.68 98 7/30/2025
2.0.1-alpha.0.67 100 7/30/2025
2.0.1-alpha.0.66 95 7/29/2025
2.0.1-alpha.0.64 514 7/23/2025
2.0.1-alpha.0.63 513 7/23/2025
2.0.1-alpha.0.62 513 7/23/2025
2.0.1-alpha.0.61 517 7/22/2025
2.0.1-alpha.0.60 514 7/22/2025
2.0.1-alpha.0.59 396 7/21/2025
2.0.1-alpha.0.58 390 7/21/2025
2.0.1-alpha.0.57 121 7/16/2025
2.0.1-alpha.0.56 123 7/15/2025
2.0.1-alpha.0.55 123 7/15/2025
2.0.1-alpha.0.54 85 7/11/2025
2.0.1-alpha.0.53 129 7/9/2025
2.0.1-alpha.0.52 128 7/7/2025
2.0.1-alpha.0.51 77 7/4/2025
2.0.1-alpha.0.49 102 7/4/2025
2.0.1-alpha.0.46 126 7/2/2025
2.0.1-alpha.0.45 124 7/2/2025
2.0.1-alpha.0.44 128 7/2/2025
2.0.1-alpha.0.38 126 6/25/2025
2.0.1-alpha.0.37 130 6/24/2025
2.0.1-alpha.0.36 124 6/24/2025
2.0.1-alpha.0.35 123 6/18/2025
2.0.1-alpha.0.33 123 6/17/2025
2.0.1-alpha.0.32 121 6/17/2025
2.0.1-alpha.0.31 129 6/17/2025
2.0.1-alpha.0.30 269 6/11/2025
2.0.1-alpha.0.29 274 6/11/2025
2.0.1-alpha.0.27 128 6/5/2025
2.0.1-alpha.0.26 127 6/5/2025
2.0.1-alpha.0.25 127 6/4/2025
2.0.1-alpha.0.24 131 6/4/2025
2.0.1-alpha.0.23 129 6/3/2025
2.0.1-alpha.0.22 124 6/3/2025
2.0.1-alpha.0.21 132 6/2/2025
2.0.1-alpha.0.18 104 5/30/2025
2.0.1-alpha.0.17 131 5/29/2025
2.0.1-alpha.0.16 127 5/27/2025
2.0.1-alpha.0.15 107 5/23/2025
2.0.1-alpha.0.14 127 5/21/2025
2.0.1-alpha.0.13 126 5/21/2025
2.0.1-alpha.0.12 129 5/21/2025
2.0.1-alpha.0.11 213 5/13/2025
2.0.1-alpha.0.10 211 5/13/2025
2.0.1-alpha.0.9 203 5/12/2025
2.0.1-alpha.0.8 203 5/12/2025
2.0.1-alpha.0.6 93 5/2/2025
2.0.1-alpha.0.5 91 5/2/2025
2.0.1-alpha.0.4 137 4/29/2025
2.0.1-alpha.0.3 141 4/29/2025
2.0.1-alpha.0.2 140 4/28/2025
2.0.1-alpha.0.1 135 4/28/2025
2.0.0 181 4/28/2025
1.2.3-alpha.0.286 117 4/25/2025
1.2.3-alpha.0.285 146 4/24/2025
1.2.3-alpha.0.284 145 4/24/2025
1.2.3-alpha.0.283 141 4/23/2025
1.2.3-alpha.0.282 142 4/23/2025
1.2.3-alpha.0.281 146 4/23/2025
1.2.3-alpha.0.280 166 4/17/2025
1.2.3-alpha.0.279 169 4/17/2025
1.2.3-alpha.0.277 165 4/16/2025
1.2.3-alpha.0.276 162 4/16/2025
1.2.3-alpha.0.275 208 4/16/2025
1.2.3-alpha.0.274 173 4/16/2025
1.2.3-alpha.0.273 177 4/14/2025
1.2.3-alpha.0.272 145 4/10/2025
1.2.3-alpha.0.271 147 4/10/2025
1.2.3-alpha.0.270 145 4/9/2025
1.2.3-alpha.0.268 143 4/8/2025
1.2.3-alpha.0.267 150 4/7/2025
1.2.3-alpha.0.266 107 4/4/2025
1.2.3-alpha.0.265 112 4/4/2025
1.2.3-alpha.0.264 113 4/4/2025
1.2.3-alpha.0.263 121 4/4/2025
1.2.3-alpha.0.262 144 4/3/2025
1.2.3-alpha.0.261 139 4/3/2025
1.2.3-alpha.0.260 133 4/2/2025
1.2.3-alpha.0.259 139 4/1/2025
1.2.3-alpha.0.258 141 3/31/2025
1.2.3-alpha.0.257 139 3/31/2025
1.2.3-alpha.0.256 139 3/31/2025
1.2.3-alpha.0.255 114 3/28/2025
1.2.3-alpha.0.254 117 3/27/2025
1.2.3-alpha.0.253 119 3/27/2025
1.2.3-alpha.0.252 120 3/27/2025
1.2.3-alpha.0.251 454 3/26/2025
1.2.3-alpha.0.250 464 3/25/2025
1.2.3-alpha.0.249 150 3/20/2025
1.2.3-alpha.0.248 136 3/20/2025
1.2.3-alpha.0.247 135 3/20/2025
1.2.3-alpha.0.245 138 3/19/2025
1.2.3-alpha.0.244 139 3/19/2025
1.2.3-alpha.0.243 131 3/18/2025
1.2.3-alpha.0.240 105 3/14/2025
1.2.3-alpha.0.239 112 3/14/2025
1.2.3-alpha.0.238 135 3/13/2025
1.2.3-alpha.0.237 139 3/13/2025
1.2.3-alpha.0.235 150 3/11/2025
1.2.3-alpha.0.234 156 3/10/2025
1.2.3-alpha.0.231 189 3/6/2025
1.2.3-alpha.0.229 191 3/6/2025
1.2.3-alpha.0.228 195 3/4/2025
1.2.3-alpha.0.227 185 3/4/2025
1.2.3-alpha.0.226 124 3/3/2025
1.2.3-alpha.0.225 87 2/28/2025
1.2.3-alpha.0.224 79 2/28/2025
1.2.3-alpha.0.223 80 2/27/2025
1.2.3-alpha.0.222 76 2/27/2025
1.2.3-alpha.0.221 80 2/27/2025
1.2.3-alpha.0.220 79 2/27/2025
1.2.3-alpha.0.219 77 2/26/2025
1.2.3-alpha.0.218 79 2/25/2025
1.2.3-alpha.0.217 76 2/24/2025
1.2.3-alpha.0.216 81 2/21/2025
1.2.3-alpha.0.215 76 2/21/2025
1.2.3-alpha.0.214 80 2/21/2025
1.2.3-alpha.0.213 79 2/21/2025
1.2.3-alpha.0.209 81 2/19/2025
1.2.3-alpha.0.208 88 2/17/2025
1.2.3-alpha.0.207 81 2/14/2025
1.2.3-alpha.0.206 91 2/13/2025
1.2.3-alpha.0.205 79 2/12/2025
1.2.3-alpha.0.204 85 2/12/2025
1.2.3-alpha.0.203 81 2/10/2025
1.2.3-alpha.0.202 88 2/10/2025
1.2.3-alpha.0.201 85 2/10/2025
1.2.3-alpha.0.200 91 2/10/2025
1.2.3-alpha.0.199 83 2/7/2025
1.2.3-alpha.0.198 89 2/5/2025
1.2.3-alpha.0.197 77 2/4/2025
1.2.3-alpha.0.196 79 2/4/2025
1.2.3-alpha.0.195 82 2/4/2025
1.2.3-alpha.0.194 80 2/4/2025
1.2.3-alpha.0.193 93 2/3/2025
1.2.3-alpha.0.192 80 2/3/2025
1.2.3-alpha.0.191 82 2/3/2025
1.2.3-alpha.0.190 79 2/3/2025
1.2.3-alpha.0.189 72 1/27/2025
1.2.3-alpha.0.188 66 1/24/2025
1.2.3-alpha.0.187 54 1/9/2025
1.2.3-alpha.0.186 67 1/8/2025
1.2.3-alpha.0.185 68 1/8/2025
1.2.3-alpha.0.184 73 1/7/2025
1.2.3-alpha.0.183 78 12/20/2024
1.2.3-alpha.0.182 75 12/20/2024
1.2.3-alpha.0.181 81 12/19/2024
1.2.3-alpha.0.179 77 12/19/2024
1.2.3-alpha.0.178 72 12/18/2024
1.2.3-alpha.0.177 111 12/13/2024
1.2.3-alpha.0.176 89 12/12/2024
1.2.3-alpha.0.175 83 12/9/2024
1.2.3-alpha.0.174 78 12/9/2024
1.2.3-alpha.0.173 80 12/5/2024
1.2.3-alpha.0.172 75 12/3/2024
1.2.3-alpha.0.171 80 11/22/2024
1.2.3-alpha.0.170 75 11/22/2024
1.2.3-alpha.0.169 80 11/21/2024
1.2.3-alpha.0.168 77 11/19/2024
1.2.3-alpha.0.167 91 11/11/2024
1.2.3-alpha.0.166 87 11/11/2024
1.2.3-alpha.0.164 78 11/5/2024
1.2.3-alpha.0.163 76 10/25/2024
1.2.3-alpha.0.161 75 10/22/2024
1.2.3-alpha.0.160 67 10/22/2024
1.2.3-alpha.0.159 125 10/18/2024
1.2.3-alpha.0.156 81 10/17/2024
1.2.3-alpha.0.155 77 10/16/2024
1.2.3-alpha.0.154 76 10/11/2024
1.2.3-alpha.0.153 82 10/10/2024
1.2.3-alpha.0.151 80 10/9/2024
1.2.3-alpha.0.150 91 9/27/2024
1.2.3-alpha.0.148 84 9/26/2024
1.2.3-alpha.0.147 77 9/25/2024
1.2.3-alpha.0.146 76 9/25/2024
1.2.3-alpha.0.144 79 9/23/2024
1.2.3-alpha.0.143 82 9/20/2024
1.2.3-alpha.0.142 74 9/20/2024
1.2.3-alpha.0.141 80 9/19/2024
1.2.3-alpha.0.140 80 9/19/2024
1.2.3-alpha.0.139 84 9/18/2024
1.2.3-alpha.0.138 71 9/18/2024
1.2.3-alpha.0.137 82 9/18/2024
1.2.3-alpha.0.136 82 9/18/2024
1.2.3-alpha.0.135 83 9/18/2024
1.2.3-alpha.0.134 94 9/16/2024
1.2.3-alpha.0.133 87 9/13/2024
1.2.3-alpha.0.132 83 9/12/2024
1.2.3-alpha.0.131 76 9/12/2024
1.2.3-alpha.0.130 85 9/9/2024
1.2.3-alpha.0.128 82 9/6/2024
1.2.3-alpha.0.127 81 9/6/2024
1.2.3-alpha.0.126 83 9/5/2024
1.2.3-alpha.0.125 82 9/4/2024
1.2.3-alpha.0.124 82 8/30/2024
1.2.3-alpha.0.123 74 8/30/2024
1.2.3-alpha.0.122 84 8/30/2024
1.2.3-alpha.0.121 79 8/30/2024
1.2.3-alpha.0.120 78 8/29/2024
1.2.3-alpha.0.119 77 8/27/2024
1.2.3-alpha.0.118 97 8/23/2024
1.2.3-alpha.0.117 95 8/23/2024
1.2.3-alpha.0.115 109 8/20/2024
1.2.3-alpha.0.114 104 8/16/2024
1.2.3-alpha.0.111 64 8/6/2024
1.2.3-alpha.0.110 64 8/5/2024
1.2.3-alpha.0.109 76 8/2/2024
1.2.3-alpha.0.108 77 8/2/2024
1.2.3-alpha.0.107 66 7/31/2024
1.2.3-alpha.0.106 85 7/30/2024
1.2.3-alpha.0.105 64 7/30/2024
1.2.3-alpha.0.104 70 7/30/2024
1.2.3-alpha.0.103 65 7/30/2024
1.2.3-alpha.0.102 81 7/29/2024
1.2.3-alpha.0.101 85 7/26/2024
1.2.3-alpha.0.100 72 7/25/2024
1.2.3-alpha.0.99 85 7/25/2024
1.2.3-alpha.0.98 87 7/25/2024
1.2.3-alpha.0.97 84 7/25/2024
1.2.3-alpha.0.96 82 7/25/2024
1.2.3-alpha.0.95 87 7/25/2024
1.2.3-alpha.0.94 86 7/24/2024
1.2.3-alpha.0.93 85 7/24/2024
1.2.3-alpha.0.92 81 7/25/2024
1.2.3-alpha.0.91 83 7/23/2024
1.2.3-alpha.0.90 81 7/23/2024
1.2.3-alpha.0.89 92 7/18/2024
1.2.3-alpha.0.88 82 7/17/2024
1.2.3-alpha.0.87 87 7/17/2024
1.2.3-alpha.0.86 85 7/17/2024
1.2.3-alpha.0.85 86 7/17/2024
1.2.3-alpha.0.84 80 7/16/2024
1.2.3-alpha.0.83 80 7/12/2024
1.2.3-alpha.0.82 69 7/10/2024
1.2.3-alpha.0.81 79 7/10/2024
1.2.3-alpha.0.80 84 7/9/2024
1.2.3-alpha.0.79 80 7/9/2024
1.2.3-alpha.0.78 76 7/9/2024
1.2.3-alpha.0.77 83 7/9/2024
1.2.3-alpha.0.76 85 7/9/2024
1.2.3-alpha.0.75 72 7/9/2024
1.2.3-alpha.0.74 87 7/8/2024
1.2.3-alpha.0.73 86 7/8/2024
1.2.3-alpha.0.72 83 7/5/2024
1.2.3-alpha.0.71 89 7/4/2024
1.2.3-alpha.0.70 86 7/4/2024
1.2.3-alpha.0.69 91 7/4/2024
1.2.3-alpha.0.68 81 7/3/2024
1.2.3-alpha.0.67 83 7/3/2024
1.2.3-alpha.0.66 73 7/3/2024
1.2.3-alpha.0.65 80 7/3/2024
1.2.3-alpha.0.64 89 7/2/2024
1.2.3-alpha.0.63 86 7/1/2024
1.2.3-alpha.0.62 84 6/26/2024
1.2.3-alpha.0.61 88 6/26/2024
1.2.3-alpha.0.60 86 6/26/2024
1.2.3-alpha.0.59 86 6/26/2024
1.2.3-alpha.0.58 95 6/24/2024
1.2.3-alpha.0.57 85 6/24/2024
1.2.3-alpha.0.55 83 6/24/2024
1.2.3-alpha.0.54 83 6/18/2024
1.2.3-alpha.0.53 81 6/18/2024
1.2.3-alpha.0.52 82 6/17/2024
1.2.3-alpha.0.51 82 6/17/2024
1.2.3-alpha.0.50 79 6/17/2024
1.2.3-alpha.0.49 80 6/13/2024
1.2.3-alpha.0.48 79 6/12/2024
1.2.3-alpha.0.47 80 6/12/2024
1.2.3-alpha.0.46 81 6/12/2024
1.2.3-alpha.0.45 82 6/12/2024
1.2.3-alpha.0.44 88 6/7/2024
1.2.3-alpha.0.43 76 6/6/2024
1.2.3-alpha.0.42 87 6/6/2024
1.2.3-alpha.0.41 86 5/28/2024
1.2.3-alpha.0.40 82 5/28/2024
1.2.3-alpha.0.38 88 5/27/2024
1.2.3-alpha.0.37 92 5/23/2024
1.2.3-alpha.0.36 86 5/22/2024
1.2.3-alpha.0.35 93 5/22/2024
1.2.3-alpha.0.34 96 5/16/2024
1.2.3-alpha.0.33 102 5/15/2024
1.2.3-alpha.0.32 89 5/15/2024
1.2.3-alpha.0.31 92 4/25/2024
1.2.3-alpha.0.29 92 4/24/2024
1.2.3-alpha.0.28 91 4/23/2024
1.2.3-alpha.0.27 89 4/22/2024
1.2.3-alpha.0.26 93 4/22/2024
1.2.3-alpha.0.25 89 4/22/2024
1.2.3-alpha.0.24 95 4/22/2024
1.2.3-alpha.0.23 95 4/19/2024
1.2.3-alpha.0.22 87 4/19/2024
1.2.3-alpha.0.21 92 4/19/2024
1.2.3-alpha.0.20 90 4/18/2024
1.2.3-alpha.0.19 87 4/18/2024
1.2.3-alpha.0.18 87 4/18/2024
1.2.3-alpha.0.17 91 4/16/2024
1.2.3-alpha.0.16 97 4/16/2024
1.2.3-alpha.0.15 96 4/12/2024
1.2.3-alpha.0.14 89 4/10/2024
1.2.3-alpha.0.13 90 4/10/2024
1.2.3-alpha.0.12 89 4/10/2024
1.2.3-alpha.0.11 94 4/9/2024
1.2.3-alpha.0.10 86 4/9/2024
1.2.3-alpha.0.9 80 4/9/2024
1.2.3-alpha.0.8 94 4/8/2024
1.2.3-alpha.0.7 114 4/5/2024
1.2.3-alpha.0.6 100 4/3/2024
1.2.3-alpha.0.5 89 4/3/2024
1.2.3-alpha.0.4 96 4/3/2024
1.2.3-alpha.0.3 98 3/29/2024
1.2.3-alpha.0.2 98 3/28/2024
1.2.3-alpha.0.1 101 3/28/2024
1.2.2 190 3/28/2024
1.2.2-alpha.0.3 99 3/28/2024
1.2.2-alpha.0.2 96 3/28/2024
1.2.2-alpha.0.1 83 3/27/2024
1.2.1 157 3/26/2024
1.1.2-alpha.0.5 95 3/26/2024
1.1.1 187 1/23/2024
1.1.0 273 10/27/2023
1.0.0 234 9/7/2023