Compare commits
10 Commits
3fa723c3cc
...
83cf10495e
| Author | SHA1 | Date | |
|---|---|---|---|
| 83cf10495e | |||
| c725e7ebc3 | |||
| 186fc303e5 | |||
| d288b9fa6b | |||
| e064a49c37 | |||
| 12fb5d3b55 | |||
| 7ee09de73f | |||
| 835d339829 | |||
| a29f77eb5e | |||
| 92287bd8e1 |
@@ -4,5 +4,6 @@ __pycache__/
|
|||||||
/work/
|
/work/
|
||||||
/work-*.txt
|
/work-*.txt
|
||||||
/build/
|
/build/
|
||||||
|
/dist/
|
||||||
/vendor/
|
/vendor/
|
||||||
/scratch/
|
/scratch/
|
||||||
|
|||||||
@@ -1,108 +1,137 @@
|
|||||||
# 2077 Edge Weight Mod
|
# EdgeWeightGPS
|
||||||
|
|
||||||
Experimental Cyberpunk 2077 GPS route-weighting mod tooling.
|
Cyberpunk 2077 RED4ext plugin that improves player GPS routing by penalizing
|
||||||
|
short-segment churn in the native GPS solver. The current validated default
|
||||||
|
pushes the GPS toward smoother, higher-momentum driving corridors without
|
||||||
|
globally forcing every route onto highways.
|
||||||
|
|
||||||
## Feasibility
|
## Current Status
|
||||||
|
|
||||||
Cyberpunk exposes a native `gamegpsGPSSystem`, but the current public RTTI dump does
|
Working prototype, validated in-game.
|
||||||
not expose script-callable methods for replacing or overriding the GPS planner. The
|
|
||||||
useful surfaces are generated traffic resources:
|
|
||||||
|
|
||||||
- `worldTrafficPersistentResource.data.lanes`
|
- Route scoring patch: enabled.
|
||||||
- `worldTrafficLanePersistent.length`
|
- Live tuning file: enabled.
|
||||||
- `worldTrafficLanePersistent.maxSpeed`
|
- Current default fixed-edge penalty: `80.0`.
|
||||||
- `worldTrafficLanePersistent.flags`
|
- Highway multiplier: neutral `1.0`; the earlier highway-speed/class
|
||||||
- `worldTrafficLanePersistent.playerGPSInfo`
|
experiments are not part of the playable default.
|
||||||
- `worldTrafficPersistentLaneConnectionsResource.data`
|
|
||||||
- `worldTrafficConnectivityOutLane.exitProbabilityCompressed`
|
|
||||||
- `worldTrafficConnectivityOutLane.isSharpAngle`
|
|
||||||
- `worldTrafficLanePersistentFlags.Highway`
|
|
||||||
- `worldTrafficLanePersistentFlags.GPSOnly`
|
|
||||||
|
|
||||||
The in-game GPS path is computed natively over generated traffic graph data. A
|
The active package is a RED4ext plugin only:
|
||||||
full replacement planner would require native hooks or patching the game
|
|
||||||
executable. A feasible REDmod-style mod has to patch generated graph resources
|
|
||||||
and test which fields the native planner actually consumes.
|
|
||||||
|
|
||||||
## Current Implementation
|
|
||||||
|
|
||||||
Current active work is a RED4ext shim under `red4ext/EdgeWeightGPS`. It has
|
|
||||||
confirmed the world-map GPS route path runs through the native async traffic
|
|
||||||
route pipeline, not the script-facing `RunGPSQuery`/`UpdateGPSQuery` helpers.
|
|
||||||
The shim can log the query lifecycle, async traffic result handoff, and route
|
|
||||||
postprocess stages.
|
|
||||||
|
|
||||||
A later spatial edge-cost prototype hooked the native local GPS edge-cost
|
|
||||||
callback at `0x44f838` and successfully changed thousands of candidate edge
|
|
||||||
costs in live route-producer calls. A controlled in-game inversion test still
|
|
||||||
produced byte-identical final `GPSQueryResultFetch` route records before and
|
|
||||||
after flipping highway weights from nearly free to extremely expensive. Treat
|
|
||||||
that hook as a useful local-search diagnostic, not the final player GPS
|
|
||||||
weighting surface.
|
|
||||||
|
|
||||||
An experimental traffic candidate scorer hook at RVA `0x8d46cc` proved the game
|
|
||||||
does consult traffic lane flags while selecting route/projection candidates:
|
|
||||||
highway, road, and pavement flags were visible live and the hook changed their
|
|
||||||
scores. That detour currently crashes during load, so it is disabled by default
|
|
||||||
in source and disabled in the local game install as `EdgeWeightGPS.dll.disabled`.
|
|
||||||
It should be treated as evidence and an RE lead, not a playable mod.
|
|
||||||
|
|
||||||
The older data-only tooling remains in the repo for reference:
|
|
||||||
|
|
||||||
This repo currently contains WolvenKit-export patchers:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
python3 tools/patch_traffic_lanes.py exported-json-dir patched-json-dir
|
|
||||||
python3 tools/patch_lane_connections.py all.traffic_persistent.json all.lane_connections.json patched.lane_connections.json
|
|
||||||
```
|
|
||||||
|
|
||||||
`patch_traffic_lanes.py` recursively scans WolvenKit JSON exports for `lanes`
|
|
||||||
arrays that look like `worldTrafficLanePersistent` data and applies configurable
|
|
||||||
speed weighting:
|
|
||||||
|
|
||||||
- highways get boosted toward a preferred GPS speed in the game's lane scale
|
|
||||||
- regular roads keep a moderate speed floor
|
|
||||||
- pavement, crosswalk, and disabled traffic lanes are left alone
|
|
||||||
- optional non-highway speed caps can make highways more attractive
|
|
||||||
|
|
||||||
In-game testing disproved `maxSpeed` as the main GPS routing lever: even highway
|
|
||||||
speed `120` did not change GPS routes, although freeway traffic visibly moved
|
|
||||||
faster. Treat speed patches as traffic simulation experiments, not route
|
|
||||||
weighting.
|
|
||||||
|
|
||||||
`patch_lane_connections.py` patches `all.lane_connections` by raising
|
|
||||||
highway-enter/stay edge probabilities and lowering competing non-highway exits.
|
|
||||||
That candidate loaded in game, but live testing did not show a GPS routing
|
|
||||||
change.
|
|
||||||
|
|
||||||
After patching, deserialize the JSON back into CR2W and pack the resulting
|
|
||||||
resources into an archive.
|
|
||||||
|
|
||||||
The toolbox now has WolvenKit CLI installed:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
toolbox run --container 2077 bash -lc '$HOME/.dotnet/tools/cp77tools --help'
|
|
||||||
```
|
|
||||||
|
|
||||||
See [docs/tooling.md](docs/tooling.md) for the end-to-end archive build flow.
|
|
||||||
See [docs/traffic-system-debrief.md](docs/traffic-system-debrief.md) for the
|
|
||||||
detailed feasibility and traffic graph notes.
|
|
||||||
|
|
||||||
## Status
|
|
||||||
|
|
||||||
A conservative speed archive, an aggressive speed archive, and a connection
|
|
||||||
probability archive were built from the local Flatpak Steam Phantom Liberty
|
|
||||||
install. All `zz_edge` archives are currently disabled in the game folder.
|
|
||||||
|
|
||||||
The RED4ext plugin is also currently disabled for normal play:
|
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled
|
red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll
|
||||||
|
red4ext/plugins/EdgeWeightGPS/momentum_weights.bin
|
||||||
|
red4ext/plugins/EdgeWeightGPS/solver_weights.bin
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## What It Patches
|
||||||
|
|
||||||
|
Reverse engineering found the player GPS route search loop around the native
|
||||||
|
solver relaxation cluster. The useful patch surface is not the script-facing
|
||||||
|
`RunGPSQuery`/`UpdateGPSQuery` helpers and not the generated traffic
|
||||||
|
`maxSpeed` fields. The playable hook patches the two ordinary adjacency
|
||||||
|
expansion sites feeding the native relax/update routine at `0x40ba58`.
|
||||||
|
|
||||||
|
The plugin adds a nonnegative fixed cost to ordinary edge expansion. In
|
||||||
|
practice, this makes many tiny street segments and repeated 90-degree
|
||||||
|
stair-steps less attractive, while still allowing local roads when they are the
|
||||||
|
right path.
|
||||||
|
|
||||||
|
## Validation Summary
|
||||||
|
|
||||||
|
The default `80.0` penalty was selected after live A/B testing:
|
||||||
|
|
||||||
|
- `0.0`: vanilla behavior; visibly stair-stepped in highlighted routes.
|
||||||
|
- `40.0`: partial improvement, but still missed useful smoother corridors.
|
||||||
|
- `80.0`: best observed result; selected smoother high-speed corridors and
|
||||||
|
passed drive testing.
|
||||||
|
- `160.0`: too high; caused bad hairpins/local access and one fallback-style
|
||||||
|
route.
|
||||||
|
|
||||||
|
Drive validation at `80.0`:
|
||||||
|
|
||||||
|
- The Dogtown route used a smoother highway corridor and drove cleanly at high
|
||||||
|
speed.
|
||||||
|
- Live minimap recalculation still worked after a deliberate detour.
|
||||||
|
- Claire/Westbrook route also drove cleanly; one blind hill/ramp surprise was
|
||||||
|
driver unfamiliarity, not a route failure.
|
||||||
|
|
||||||
|
See [docs/gps-momentum-field-tests.md](docs/gps-momentum-field-tests.md) for
|
||||||
|
the detailed test notes, screenshots, and log references.
|
||||||
|
|
||||||
|
## Build
|
||||||
|
|
||||||
|
Build in the Fedora toolbox:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/build_red4ext_shim.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
This writes:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Cyberpunk 2077/archive/pc/mod/zz_edge_weight_gps_highway_probability.archive.disabled
|
build/red4ext/EdgeWeightGPS-mingw64/EdgeWeightGPS.dll
|
||||||
```
|
```
|
||||||
|
|
||||||
Build outputs are ignored by git. Experimental archives and RED4ext DLL builds
|
## Install Locally
|
||||||
should be enabled one at a time and tested from a cold boot.
|
|
||||||
|
Only install while the game is cold.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/install_red4ext_shim.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
The install script builds the DLL, installs it into the Flatpak Steam Cyberpunk
|
||||||
|
2077 folder, and writes the validated defaults:
|
||||||
|
|
||||||
|
- `momentum_weights.bin = 80.0`
|
||||||
|
- `solver_weights.bin = 1.0`
|
||||||
|
|
||||||
|
Override the game directory with `CYBERPUNK2077_GAME_DIR` if needed.
|
||||||
|
|
||||||
|
## Package
|
||||||
|
|
||||||
|
Create a redistributable RED4ext zip:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
toolbox run -c 2077 ./tools/package_red4ext_mod.sh
|
||||||
|
```
|
||||||
|
|
||||||
|
The package is written under `dist/` and contains the `red4ext/` folder layout
|
||||||
|
expected by the game.
|
||||||
|
|
||||||
|
## Live Tuning
|
||||||
|
|
||||||
|
`momentum_weights.bin` is a single little-endian float32 and is hot-reloaded
|
||||||
|
every 500 ms while the game is running.
|
||||||
|
|
||||||
|
Useful presets:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python3 tools/write_momentum_weights.py vanilla # 0.0
|
||||||
|
python3 tools/write_momentum_weights.py default # 80.0
|
||||||
|
python3 tools/write_momentum_weights.py overstrong # 160.0, known too high
|
||||||
|
```
|
||||||
|
|
||||||
|
`solver_weights.bin` is still present for older highway multiplier experiments,
|
||||||
|
but the playable default keeps it neutral:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python3 tools/write_solver_weights.py vanilla # 1.0
|
||||||
|
```
|
||||||
|
|
||||||
|
## Repository Notes
|
||||||
|
|
||||||
|
This repository also contains older experiments and reverse-engineering tools:
|
||||||
|
|
||||||
|
- REDmod/archive traffic resource patchers.
|
||||||
|
- Traffic lane and connection probability patchers.
|
||||||
|
- Static disassembly helpers.
|
||||||
|
- RED4ext logging probes.
|
||||||
|
|
||||||
|
Those tools are retained because they explain the route-finding system and
|
||||||
|
document failed approaches, but they are not part of the current playable
|
||||||
|
package. The important debriefs are:
|
||||||
|
|
||||||
|
- [docs/traffic-system-debrief.md](docs/traffic-system-debrief.md)
|
||||||
|
- [docs/red4ext-logging-shim.md](docs/red4ext-logging-shim.md)
|
||||||
|
- [docs/gps-routing-research.md](docs/gps-routing-research.md)
|
||||||
|
|||||||
+291
-12
@@ -1,6 +1,285 @@
|
|||||||
# Compaction Handoff
|
# Compaction Handoff
|
||||||
|
|
||||||
Current date/time context: 2026-06-26, local timezone America/Chicago.
|
Current date/time context: 2026-06-27, local timezone America/Chicago.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Default Chosen
|
||||||
|
|
||||||
|
- After live A/B testing and two drive validations, `80.0` is the working
|
||||||
|
default for `momentum_weights.bin`.
|
||||||
|
- Source fallback was changed to
|
||||||
|
`kGpsMomentumFixedEdgePenaltyDefault = 80.0f`.
|
||||||
|
- `tools/write_momentum_weights.py default` now writes `80.0`.
|
||||||
|
The old `8.0` value is preserved as `legacy-default`.
|
||||||
|
- Current preset meanings:
|
||||||
|
`vanilla=0.0`, `mild=4.0`, `legacy-default=8.0`, `strong=16.0`,
|
||||||
|
`default=80.0`, `silly=80.0`, `overstrong=160.0`,
|
||||||
|
`pathological=250.0`.
|
||||||
|
- `160.0` was tested and is too high: The Damned can fall back to a straight
|
||||||
|
line, and local access can develop bad hairpins/backtracking.
|
||||||
|
- Drive validation at `80.0`:
|
||||||
|
The Damned/Dogtown route drove cleanly at high speed, live minimap
|
||||||
|
recalculation worked after a detour, and the Claire route drove cleanly aside
|
||||||
|
from a driver-unfamiliarity ramp/hill surprise.
|
||||||
|
- Updated detailed notes in `docs/gps-momentum-field-tests.md`.
|
||||||
|
- The rebuilt source-default-80 DLL was installed while the game was cold at
|
||||||
|
about `04:17` local. Installed defaults were rewritten:
|
||||||
|
`momentum_weights.bin = 80.0`, `solver_weights.bin = 1.0`.
|
||||||
|
- Added release packaging:
|
||||||
|
`toolbox run -c 2077 ./tools/package_red4ext_mod.sh`.
|
||||||
|
Verified package:
|
||||||
|
`dist/EdgeWeightGPS-red4ext-20260627-041942.zip`, containing
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`,
|
||||||
|
`momentum_weights.bin = 80.0`, and `solver_weights.bin = 1.0`.
|
||||||
|
|
||||||
|
## 2026-06-27 Live Momentum Knob Installed
|
||||||
|
|
||||||
|
- Installed a new telemetry/control DLL at about `03:21` local while the game was
|
||||||
|
cold. Installed size: `16899519` bytes.
|
||||||
|
- Active installed config:
|
||||||
|
`solver_weights.bin = 1.0` and `momentum_weights.bin = 8.0`.
|
||||||
|
- The plugin log beside the DLL was truncated to zero after install:
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.log`.
|
||||||
|
- `momentum_weights.bin` is one little-endian `float32`, hot-polled every
|
||||||
|
500 ms. `0.0` disables the fixed ordinary-edge penalty; `8.0` is the current
|
||||||
|
prototype; larger values are stress tests. Presets are in
|
||||||
|
`presets/momentum/` and can be written live with
|
||||||
|
`python3 tools/write_momentum_weights.py <preset>`.
|
||||||
|
- New presets:
|
||||||
|
`vanilla=0.0`, `mild=4.0`, `default=8.0`, `strong=16.0`,
|
||||||
|
`silly=80.0`, `pathological=250.0`.
|
||||||
|
- The `gps-momentum-summary` line now waits for a nonzero result route-record
|
||||||
|
count before marking a query as summarized. It should report
|
||||||
|
`gpsResultRouteCount` directly instead of showing `0` from the staging fetch.
|
||||||
|
- Build verification passed:
|
||||||
|
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
|
||||||
|
- Next test should start with current `momentum=8.0`, then while the game is
|
||||||
|
open switch to `vanilla` and `silly` on one or two fixed routes to confirm
|
||||||
|
live A/B behavior. Good candidates from the last run: The Damned/Dogtown
|
||||||
|
pathological route and the SW Badlands fuel station route.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Telemetry Test Installed
|
||||||
|
|
||||||
|
- Installed telemetry DLL at about `03:04` local while the game was cold.
|
||||||
|
Installed size: `16792931` bytes.
|
||||||
|
- Source flags for the installed test:
|
||||||
|
`kEnableGpsNodeMultiplierInlinePatch = true`,
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = true`,
|
||||||
|
`kEnableGpsQueryResultTraceHooks = true`, and
|
||||||
|
`kEnableGpsQueryResultRecordDump = false`.
|
||||||
|
- `solver_weights.bin` is vanilla `1.0`, so the highway multiplier hook should
|
||||||
|
be neutral. The behavioral change remains the fixed ordinary-edge additive
|
||||||
|
penalty only: `kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- New telemetry is a compact `gps-momentum-summary` line emitted once per
|
||||||
|
completed tracked map-route query. It logs `callsA`, `callsB`, `callsTotal`,
|
||||||
|
`penaltyTotal`, global call counters, plus light route/result counts. The
|
||||||
|
counters are incremented directly in the two patched ordinary expansion caves.
|
||||||
|
- The raw route-record dump is disabled for this run to keep logs readable.
|
||||||
|
- The installed RED4ext log was truncated to zero before handing the game back.
|
||||||
|
- Next test routine: launch, load the fixed car save, open the map, plot the
|
||||||
|
usual sequence with a few seconds between each: side job, Sinnerman, Claire,
|
||||||
|
custom pin. More destinations are useful only after verifying the summary
|
||||||
|
lines are present.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum Penalty Test Installed
|
||||||
|
|
||||||
|
- The game was cold, so an enabled momentum-penalty test DLL was installed to
|
||||||
|
the Cyberpunk RED4ext plugin directory.
|
||||||
|
- Source flag for the installed test:
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = true`.
|
||||||
|
- The old highway multiplier hook is still compiled in, but
|
||||||
|
`solver_weights.bin` was written to `vanilla` (`1.0`) so highway preference is
|
||||||
|
neutral for this A/B. The active behavioral change should be only the fixed
|
||||||
|
ordinary-edge additive penalty.
|
||||||
|
- Active fixed penalty:
|
||||||
|
`kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- Expected log lines on launch:
|
||||||
|
`momentum fixed-edge penalty active value=8 sites=ordinary-expansion` plus
|
||||||
|
`gps-momentum-penalty-inline-patch applied site=expand-list-a` and
|
||||||
|
`site=expand-list-b`.
|
||||||
|
- First test routine should be the fixed car save and usual route sequence:
|
||||||
|
side job, Sinnerman, Claire, custom pin. If stable, also test Violence,
|
||||||
|
The Gig/Cassius Rider, Aldecaldo/Badlands, and unfinished-highway
|
||||||
|
cyberpsycho route.
|
||||||
|
|
||||||
|
## 2026-06-27 Disabled Momentum Penalty Prototype
|
||||||
|
|
||||||
|
- Static disassembly of the full async solver relaxation cluster is updated.
|
||||||
|
`0x40ba58` has exactly four direct callers:
|
||||||
|
`0x40b175`, `0x40b4ac`, `0x40b6d5`, and `0x40bca7`.
|
||||||
|
- The ordinary adjacency walkers are still the clean first patch surface:
|
||||||
|
`0x40b304` reaches relax at `0x40b4ac`, and `0x40b540` reaches relax at
|
||||||
|
`0x40b6d5`. Both compute vanilla tentative `g` in `xmm6`, copy it to
|
||||||
|
`xmm3`, write `f = g + h` at `[rsp+0x20]`, and then call `0x40ba58`.
|
||||||
|
- Patch starts are `0x40b49a` for list A and `0x40b6c3` for list B. Each
|
||||||
|
replaces 23 bytes ending at the vanilla `0x40ba58` call and jumps to a
|
||||||
|
private executable cave. The cave reproduces the overwritten vanilla math,
|
||||||
|
adds a fixed nonnegative cost to `xmm6`, recomputes `f` from the penalized
|
||||||
|
`g`, calls vanilla `0x40ba58`, and jumps back after the overwritten block.
|
||||||
|
- Added a disabled-by-default RED4ext prototype in
|
||||||
|
`red4ext/EdgeWeightGPS/src/Main.cpp`:
|
||||||
|
`kEnableGpsMomentumPenaltyInlinePatch = false`,
|
||||||
|
`kGpsMomentumFixedEdgePenalty = 8.0f`.
|
||||||
|
- This first prototype is only a short-segment/churn lever. It adds a fixed
|
||||||
|
per-edge penalty on ordinary neighbor expansion, so routes that stair-step
|
||||||
|
through many small pieces become more expensive without making highways
|
||||||
|
cheaper. It does not yet compute turn angle, ramp transition cost, or
|
||||||
|
predecessor/current/neighbor geometry.
|
||||||
|
- The first prototype intentionally leaves the two non-ordinary relax paths
|
||||||
|
vanilla:
|
||||||
|
`0x40b175` appears to be a target/terminal candidate path, and `0x40bca7`
|
||||||
|
appears to be a special continuation/end-candidate path from `0x40bbbc`.
|
||||||
|
Patch them only after the ordinary expansion test proves stable.
|
||||||
|
- Build verification passed in toolbox:
|
||||||
|
`toolbox run -c 2077 ./tools/build_red4ext_shim.sh`.
|
||||||
|
- The prototype was not installed into the live game directory. To test later,
|
||||||
|
flip `kEnableGpsMomentumPenaltyInlinePatch` to `true`, rebuild, install only
|
||||||
|
after the game is cold, and compare against the fixed El Coyote route set.
|
||||||
|
|
||||||
|
## 2026-06-27 Routing Literature And Engine Research
|
||||||
|
|
||||||
|
- Added `docs/gps-routing-research.md` as the durable summary of the GPS
|
||||||
|
routing research pass.
|
||||||
|
- Main conclusion: stop treating "prefer highways" as the objective. It is a
|
||||||
|
useful proxy, especially for AutoDrive, but manual player GPS should optimize
|
||||||
|
momentum/corridor quality: low turn count, low short-segment churn, good
|
||||||
|
continuity, fewer awkward ramps/intersections, and later slope/airtime risk.
|
||||||
|
- Production engines split edge cost from transition/turn cost. Mirror that at
|
||||||
|
the native solver relaxation surface instead of using another broad highway
|
||||||
|
multiplier. Prefer nonnegative additive penalties first so the vanilla
|
||||||
|
A*/Dijkstra-like assumptions stay sane.
|
||||||
|
- The user explicitly allows external dependencies if they are justified.
|
||||||
|
Recommendation after research: do not link a full production engine yet.
|
||||||
|
Borrow OSRM/Valhalla/GraphHopper cost-model ideas now, and consider
|
||||||
|
RoutingKit or a tiny custom A* runner offline for graph/cost experiments.
|
||||||
|
- Full in-game engine replacement remains feasible but expensive. It requires
|
||||||
|
extracting/owning the full drivable graph, mapping live start/target points,
|
||||||
|
computing the path, and converting the result back into Cyberpunk route
|
||||||
|
handles/records. Revisit only if native relaxation cannot support the desired
|
||||||
|
model.
|
||||||
|
|
||||||
|
## 2026-06-27 Momentum/Corridor Direction
|
||||||
|
|
||||||
|
- The user reframed the target objective: player GPS should optimize for
|
||||||
|
keeping speed and momentum, not for legal driving or traffic-sim behavior.
|
||||||
|
The player often ignores speed limits, stop signs, and normal traffic flow;
|
||||||
|
in a fast car, any long clean corridor can be a high-speed corridor.
|
||||||
|
- Highway preference is still a useful proxy, and likely valuable for
|
||||||
|
AutoDrive, but it is not the true goal for manual player routing. Short
|
||||||
|
highway hops can lose time on ramps, deceleration, awkward merges, and
|
||||||
|
airtime. Some side streets, especially long straight corridors around
|
||||||
|
Heywood, can be better than nearby highways.
|
||||||
|
- Real bad-route signatures to target:
|
||||||
|
stairstepping, repeated 90-degree turns, stop-start intersection chains,
|
||||||
|
short-segment churn, unnecessary ramp/on-off transitions, high-conflict
|
||||||
|
traffic areas, and airborne or steep offramp/hill segments where the car loses
|
||||||
|
acceleration.
|
||||||
|
- This means the next model should be a momentum/corridor cost model, not a
|
||||||
|
pure road-class model:
|
||||||
|
distance plus turn penalties, intersection/conflict penalties, short-edge
|
||||||
|
churn penalties, ramp transition penalties, grade/airtime risk penalties,
|
||||||
|
with bonuses for long straight corridor continuity and modest
|
||||||
|
highway/arterial continuity.
|
||||||
|
- The proven inline patch at `0x40bb98` only sees the current node flags. It can
|
||||||
|
prove and tune `Highway` preference, but it cannot distinguish staying
|
||||||
|
straight through a corridor from diving through a ramp, hairpin, or
|
||||||
|
intersection chain. That limitation explains why highway-only tuning has a
|
||||||
|
narrow useful range and can become pathological.
|
||||||
|
- Next RE target should be the edge expansion/relaxation cluster, especially
|
||||||
|
`0x40b304`, `0x40b540`, and `0x40ba58`, where the solver has current and
|
||||||
|
neighbor handles and assembles the tentative `g` cost. Identify live registers
|
||||||
|
and struct fields for current state, neighbor state, positions, predecessor or
|
||||||
|
inbound direction, node flags, and degree/intersection hints.
|
||||||
|
- Feasibility tiers:
|
||||||
|
- Proven/easy: road-class multiplier at `0x40bb98`.
|
||||||
|
- Very feasible next: additive penalties at edge relaxation for short edges,
|
||||||
|
intersections, highway/non-highway churn, and slope if endpoint positions
|
||||||
|
are visible.
|
||||||
|
- Biggest likely win: turn-angle or corridor-continuity penalties if
|
||||||
|
predecessor/current/neighbor positions or equivalent direction vectors are
|
||||||
|
accessible.
|
||||||
|
- Possible but harder: airtime/grade risk based on vertical deltas and road
|
||||||
|
curvature.
|
||||||
|
- Probably not worth first: true velocity/acceleration state in A*/Dijkstra,
|
||||||
|
because that expands solver state and risks breaking assumptions.
|
||||||
|
- Keep the traffic-sim/spatial road-class work as supplemental data. It can
|
||||||
|
still label highway, arterial, road, pavement, and unknown areas, but it
|
||||||
|
should feed a broader cost function rather than act as the whole objective.
|
||||||
|
- Suggested prototype order after compaction:
|
||||||
|
1. Static analyze the edge relaxation cluster around `0x40b304` and
|
||||||
|
`0x40ba58`.
|
||||||
|
2. Build a low-noise trace or inline probe around route-windowed calls only;
|
||||||
|
do not reintroduce pathological hot-loop logging.
|
||||||
|
3. First patch nonnegative additive costs only, so vanilla A*/Dijkstra
|
||||||
|
ordering remains sane.
|
||||||
|
4. Start with short-edge and turn/continuity penalties, then add ramp churn
|
||||||
|
and slope/airtime penalties if the required fields are available.
|
||||||
|
5. Validate on the fixed El Coyote city-center set plus long cross-town
|
||||||
|
routes: Violence, No-Tell Motel, The Gig/Cassius Rider, Aldecaldo/Badlands,
|
||||||
|
and the unfinished-highway cyberpsycho route. Also verify AutoDrive is not
|
||||||
|
accidentally given a different cost surface from manual driving.
|
||||||
|
|
||||||
|
## 2026-06-27 Tuning Status And Safe Installed State
|
||||||
|
|
||||||
|
- The mod is disabled on disk for the next game launch. Active
|
||||||
|
`EdgeWeightGPS.dll` was renamed to
|
||||||
|
`EdgeWeightGPS.live-tunable-92287bd.dll.disabled` in the Cyberpunk RED4ext
|
||||||
|
plugin directory. `solver_weights.bin` was reset to vanilla `1.0`.
|
||||||
|
- This does not unload the DLL from a currently running game process; it only
|
||||||
|
guarantees the next cold start has no active EdgeWeightGPS plugin.
|
||||||
|
- Latest committed live-tunable solver patch before this note:
|
||||||
|
`92287bd Add live-tunable GPS solver highway weight`.
|
||||||
|
- Live tuning results from the El Coyote / city-center route set:
|
||||||
|
- `0.80`: plugin loaded and patched, but route handles were identical to
|
||||||
|
vanilla for side job and Claire; Sinnerman/custom changed only packed
|
||||||
|
metadata on the same handles.
|
||||||
|
- `0.70`: still effectively identical at the handle level. Side and Claire
|
||||||
|
matched vanilla/0.80; Sinnerman and custom were metadata-only changes.
|
||||||
|
- `0.55`: visibly crossed the threshold. User reported the custom pin did the
|
||||||
|
funky city-center hairpin again. Archived log shows post-reload route
|
||||||
|
records changing into 37-49 record alternatives, not just metadata tweaks.
|
||||||
|
- Interpretation: the useful tuning threshold for this start/target set is
|
||||||
|
between `0.70` and `0.55`, but `0.55` is already too aggressive for at least
|
||||||
|
the custom pin. Next candidate should be around `0.62` or `0.65`, then test a
|
||||||
|
wider set of long routes before choosing a default.
|
||||||
|
- New evidence logs:
|
||||||
|
`logs/EdgeWeightGPS_solver080_3548.log`,
|
||||||
|
`logs/EdgeWeightGPS_solver070_3900.log`,
|
||||||
|
`logs/EdgeWeightGPS_solver055_hairpin_4156.log`.
|
||||||
|
|
||||||
|
## 2026-06-26 Confirmed Solver-Cost Patch
|
||||||
|
|
||||||
|
- We have unequivocally found the player GPS route-cost lever.
|
||||||
|
- The crashing RED4ext detour on `0x40bb40` has been replaced by an inline
|
||||||
|
patch at the road-tail block `0x40bb98`. The patch preserves vanilla
|
||||||
|
`node+0x93` behavior, checks `node+0x88 & 0x4000` for `Highway`, and then
|
||||||
|
multiplies highway lane cost by a tunable float.
|
||||||
|
- This inline patch avoids the register-clobber crash from the C++ detour.
|
||||||
|
Static disassembly showed the optimized caller reusing volatile state after
|
||||||
|
calling the tiny vanilla multiplier helper.
|
||||||
|
- The proof build used highway multiplier `0.35` and visibly changed player
|
||||||
|
map routes. It also caused over-aggressive behavior, including a bad custom
|
||||||
|
pin hairpin around the city-center roundabout, proving the hook is real but
|
||||||
|
that `0.35` is too low.
|
||||||
|
- The vanilla A/B build disabled only the inline multiplier patch and restored
|
||||||
|
obviously different route choices. User confirmed the custom pin returned to
|
||||||
|
the straight city-center roundabout route, while the `0.35` build took the
|
||||||
|
wrong hairpin.
|
||||||
|
- The live-tunable build enables the inline patch with default highway
|
||||||
|
multiplier `0.80` and polls
|
||||||
|
`red4ext/plugins/EdgeWeightGPS/solver_weights.bin` every 500 ms. The file is
|
||||||
|
exactly one little-endian float32 highway multiplier.
|
||||||
|
- The inline patch is deliberately broad across the vanilla road-tail branch:
|
||||||
|
reaching `0x40bb98` already means vanilla selected road-style modes `0/2/4`,
|
||||||
|
so we do not hard-gate on `solver+0xc4 == 2`. This avoids creating a manual
|
||||||
|
drive/autodrive disparity. Pedestrian mode `1` uses a different vanilla
|
||||||
|
branch and is not changed by this road-tail patch.
|
||||||
|
- Preset writer:
|
||||||
|
`tools/write_solver_weights.py`. Preset binaries live in
|
||||||
|
`presets/solver_weights/`: `vanilla`, `mild`, `default`, `strong`,
|
||||||
|
`proof-highway-cheap`, and `highway-expensive`.
|
||||||
|
- Evidence logs:
|
||||||
|
`logs/EdgeWeightGPS_inline_highway035_changed_routes_1449.log` and
|
||||||
|
`logs/EdgeWeightGPS_vanilla_ab_2120.log`.
|
||||||
|
|
||||||
## 2026-06-26 Static Update
|
## 2026-06-26 Static Update
|
||||||
|
|
||||||
@@ -110,19 +389,19 @@ Important caveat:
|
|||||||
- Older DLLs are preserved disabled as:
|
- Older DLLs are preserved disabled as:
|
||||||
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled`
|
`Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll.disabled`
|
||||||
and `EdgeWeightGPS.dd1423b.dll.disabled`.
|
and `EdgeWeightGPS.dd1423b.dll.disabled`.
|
||||||
- Source defaults now enable the full async solver multiplier hook:
|
- Source defaults enable the inline road-tail patch:
|
||||||
`kEnableGpsMultiplierHooks = true`.
|
`kEnableGpsNodeMultiplierInlinePatch = true`.
|
||||||
- The current behavior patch is deliberately narrow and diagnostic:
|
- Source defaults do not enable the old full-function detour:
|
||||||
`DetourGpsNodeMultiplier` hooks native `0x40bb40`, applies only when
|
`kEnableGpsMultiplierHooks = false`.
|
||||||
`job+0xc4 == 2` (driving route mode), reads lane/node flags from
|
- Current behavior patch is the inline `0x40bb98` code-cave patch. It preserves
|
||||||
`node+0x88`, and multiplies vanilla node edge cost by highway `0.35`,
|
vanilla road cost except for highway lanes, whose cost is multiplied by the
|
||||||
GPSOnly `1.10`, pavement `1.25`, and all other flags `1.0`.
|
current `solver_weights.bin` float. Installed default is `0.80`.
|
||||||
- `0x40bb00` auxiliary/reverse multiplier is hooked only for signature logging;
|
- `solver_weights.bin` lives beside the DLL and is hot-polled every 500 ms.
|
||||||
it is not patched yet.
|
|
||||||
- The plugin log was truncated immediately before installing this build.
|
- The plugin log was truncated immediately before installing this build.
|
||||||
- Latest archived test log:
|
- Latest archived test log:
|
||||||
`logs/EdgeWeightGPS_spatial_inversion_no_route_change_1845.log`.
|
`logs/EdgeWeightGPS_vanilla_ab_2120.log`.
|
||||||
- Game is cold as of the latest user message.
|
- A cold restart is required after installing a new DLL; changing
|
||||||
|
`solver_weights.bin` after that is hot-reloaded.
|
||||||
|
|
||||||
## 2026-06-26 Full Async Solver Findings
|
## 2026-06-26 Full Async Solver Findings
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
# GPS Momentum Field Tests
|
||||||
|
|
||||||
|
Current patch surface: fixed additive penalty on ordinary GPS solver edge
|
||||||
|
expansion, patched at the two ordinary relaxation callsites feeding
|
||||||
|
`0x40ba58`. Live tuning is through `momentum_weights.bin`.
|
||||||
|
|
||||||
|
## 2026-06-27 North Watson To Dogtown/Badlands
|
||||||
|
|
||||||
|
Starting context: player in North Watson near the motel/Cassius area. The two
|
||||||
|
main comparison routes fit in the same map viewport:
|
||||||
|
|
||||||
|
- The Damned / Dogtown, south into Pacifica.
|
||||||
|
- Fuel Station fast travel point in the southwest Badlands/Biotechnica flats.
|
||||||
|
|
||||||
|
Screenshots:
|
||||||
|
|
||||||
|
- `logs/screenshots/the-damned-and-fuel-station-0.webp`
|
||||||
|
- `logs/screenshots/the-damned-and-fuel-station-8.webp`
|
||||||
|
- `logs/screenshots/the-damned-and-fuel-station-80.webp`
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `logs/EdgeWeightGPS_live_momentum_ab_8_0_80.log`
|
||||||
|
|
||||||
|
Results:
|
||||||
|
|
||||||
|
| Route | Penalty | Expansion calls | Route records | Observed route |
|
||||||
|
| --- | ---: | ---: | ---: | --- |
|
||||||
|
| The Damned | 8 | 1,057,410 | 78 | Similar to vanilla; threads city blocks and a side highway. |
|
||||||
|
| The Damned | 0 | 1,110,243 | 87 | Similar visible corridor, slightly more route-record churn. |
|
||||||
|
| The Damned | 80 | 1,010,035 | 70 | Visibly smoother highway corridor, avoids City Center stair-stepping. |
|
||||||
|
| Fuel Station | 8 | 296,976 | 89 | Uses City Center roundabout/city threading. |
|
||||||
|
| Fuel Station | 0 | about 308k-314k | 90-92 | Similar visible corridor to 8. |
|
||||||
|
| Fuel Station | 80 | about 345k-347k | 77-78 | Converges onto the smoother highway corridor before splitting south. |
|
||||||
|
|
||||||
|
Interpretation:
|
||||||
|
|
||||||
|
- `0` and `8` are close visually in this location, despite small telemetry
|
||||||
|
changes.
|
||||||
|
- `80` is a strong proof value: it changes the coarse corridor and reduces
|
||||||
|
route-record count for the tested long routes.
|
||||||
|
- This supports the main hypothesis that a fixed per-segment additive penalty
|
||||||
|
can optimize for smoother player-driving corridors, not merely highway class.
|
||||||
|
|
||||||
|
## 2026-06-27 Broad 80 Smoke
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `logs/EdgeWeightGPS_momentum80_broad_smoke.log`
|
||||||
|
- `logs/EdgeWeightGPS_momentum80_drive_validation.log`
|
||||||
|
|
||||||
|
User reported no bad routes after probing:
|
||||||
|
|
||||||
|
- Claire routes differently than nearby Sinnerman, choosing a smooth Japantown
|
||||||
|
highway leg.
|
||||||
|
- Sinnerman still cuts through City Center, plausibly because that corridor is
|
||||||
|
appropriate for that destination.
|
||||||
|
- Short local routing to Cassius remains fine.
|
||||||
|
- Heywood routes remain fine and may avoid some stair-stepping.
|
||||||
|
- Routes near highways but not traffic-feasible still detour appropriately.
|
||||||
|
- One NCPD bounty used a road the user had not previously seen GPS select, and
|
||||||
|
it looked like a good fit.
|
||||||
|
|
||||||
|
Interpretation:
|
||||||
|
|
||||||
|
- No obvious local-route breakage was found at `80`.
|
||||||
|
- `80` was not immediately pathological in the sampled routes and later became
|
||||||
|
the working default after drive validation.
|
||||||
|
- Higher values still need caution; `160` later proved too high.
|
||||||
|
|
||||||
|
Drive validation at `80`:
|
||||||
|
|
||||||
|
- The Damned / Dogtown route drove cleanly in the Outlaw at sustained high
|
||||||
|
speed.
|
||||||
|
- The route surfaced a back/elevated highway through Japantown/Westbrook that
|
||||||
|
the user had not seen vanilla GPS select before.
|
||||||
|
- Live minimap recalculation after a deliberate detour still worked.
|
||||||
|
- Claire route also drove cleanly. One ramp/hill surprised the driver, but the
|
||||||
|
issue was road unfamiliarity at full speed, not bad routing.
|
||||||
|
|
||||||
|
Conclusion after the drive test: `80` is the working default.
|
||||||
|
|
||||||
|
## 2026-06-27 40/160 Bounds
|
||||||
|
|
||||||
|
Telemetry log:
|
||||||
|
|
||||||
|
- `logs/EdgeWeightGPS_momentum40_160_tuning.log`
|
||||||
|
|
||||||
|
At `40`, the highlighted routes improved only partially:
|
||||||
|
|
||||||
|
- Claire still used the Sinnerman/City Center path instead of the smoother outer
|
||||||
|
road.
|
||||||
|
- Sinnerman remained sensible.
|
||||||
|
- The near-highway case remained acceptable.
|
||||||
|
- The NCPD bounty took the smoother outer City Center road, but retained a
|
||||||
|
Watson stair-step that `80` avoided.
|
||||||
|
|
||||||
|
At `160`, overcorrection appeared:
|
||||||
|
|
||||||
|
- Claire showed a questionable hairpin.
|
||||||
|
- The Damned produced a fallback/straight-line style route instead of a usable
|
||||||
|
road route.
|
||||||
|
- The Gig/Cassius local access got worse, asking for a backtrack and hairpin
|
||||||
|
instead of a simple nearby approach.
|
||||||
|
- NCPD bounty regressed to stair-stepping.
|
||||||
|
|
||||||
|
Conclusion: `160` is too high. The useful bracket is roughly `40 < default <
|
||||||
|
160`, with `80` currently best validated by map inspection and driving.
|
||||||
@@ -0,0 +1,435 @@
|
|||||||
|
# GPS Routing Research Notes
|
||||||
|
|
||||||
|
Current date: 2026-06-27.
|
||||||
|
|
||||||
|
This note summarizes the research pass prompted by the realization that "prefer
|
||||||
|
highways" is a proxy, not the goal. The actual player-facing goal is a route
|
||||||
|
that feels fast and drivable in Cyberpunk 2077, especially when the player is
|
||||||
|
driving aggressively and ignoring normal traffic rules.
|
||||||
|
|
||||||
|
The conclusion is that the next patch should not be another broad highway
|
||||||
|
multiplier. Production route engines and routing papers treat route quality as
|
||||||
|
multi-criteria: edge traversal cost, transition/turn cost, road hierarchy,
|
||||||
|
intersection delay, and user preferences are separate signals. For manual
|
||||||
|
Cyberpunk driving, the best analogue is a momentum/corridor model: prefer
|
||||||
|
routes that preserve speed and minimize decision points, sharp turns,
|
||||||
|
short-segment churn, and awkward ramp transitions.
|
||||||
|
|
||||||
|
## Sources Reviewed
|
||||||
|
|
||||||
|
- Bast et al., "Route Planning in Transportation Networks":
|
||||||
|
https://arxiv.org/abs/1504.05140
|
||||||
|
- Jiang and Liu, "Computing the Fewest-turn Map Directions based on the
|
||||||
|
Connectivity of Natural Roads": https://arxiv.org/abs/1003.3536
|
||||||
|
- Sacharidis and Bouros, "Routing Directions: Keeping it Fast and Simple":
|
||||||
|
https://arxiv.org/abs/1309.4396
|
||||||
|
- Hlineny and Moris, "Generalized Maneuvers in Route Planning":
|
||||||
|
https://arxiv.org/abs/1107.0798
|
||||||
|
- Dibbelt, Strasser, and Wagner, "Fast Exact Shortest Path and Distance Queries
|
||||||
|
on Road Networks with Parametrized Costs": https://arxiv.org/abs/1509.03165
|
||||||
|
- OSRM profile docs:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/docs/profiles.md
|
||||||
|
- OSRM car profile:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/profiles/car.lua
|
||||||
|
- GraphHopper profile docs:
|
||||||
|
https://github.com/graphhopper/graphhopper/blob/master/docs/core/profiles.md
|
||||||
|
- Valhalla turn-by-turn API costing docs:
|
||||||
|
https://valhalla.github.io/valhalla/api/turn-by-turn/api-reference/
|
||||||
|
- Valhalla auto costing implementation:
|
||||||
|
https://github.com/valhalla/valhalla/blob/master/src/sif/autocost.cc
|
||||||
|
- RoutingKit README:
|
||||||
|
https://github.com/RoutingKit/RoutingKit
|
||||||
|
- OSRM license:
|
||||||
|
https://github.com/Project-OSRM/osrm-backend/blob/master/LICENSE.TXT
|
||||||
|
- Valhalla license:
|
||||||
|
https://github.com/valhalla/valhalla/blob/master/COPYING
|
||||||
|
- GraphHopper license:
|
||||||
|
https://github.com/graphhopper/graphhopper/blob/master/LICENSE.txt
|
||||||
|
|
||||||
|
## High-Level Findings
|
||||||
|
|
||||||
|
### There Is No Single "Good GPS" Objective
|
||||||
|
|
||||||
|
The route-planning survey by Bast et al. frames road routing as shortest-path
|
||||||
|
search over nonnegative edge weights, then shows that most practical complexity
|
||||||
|
comes from speed, preprocessing, traffic, and multiple criteria. It explicitly
|
||||||
|
notes there is no single best route-planning method because systems are judged
|
||||||
|
by different tradeoffs: query time, preprocessing effort, space, robustness to
|
||||||
|
changing inputs, and model quality.
|
||||||
|
|
||||||
|
For our mod, that means "shortest distance" and "prefer highways" are both too
|
||||||
|
thin. A better route is the minimum of a cost function we choose. The game
|
||||||
|
already appears to run an A*/Dijkstra-style solver with a geometric heuristic
|
||||||
|
and nonnegative edge costs. Our task is not to replace that algorithm; it is to
|
||||||
|
feed it a better cost surface.
|
||||||
|
|
||||||
|
### Production Engines Separate Edge Cost From Transition Cost
|
||||||
|
|
||||||
|
OSRM profiles define way speed/rate/weight separately from turn processing.
|
||||||
|
The docs say speed should estimate actual travel time, while `rate` or `weight`
|
||||||
|
should encode preference; changing speed to express preference skews duration
|
||||||
|
estimates. OSRM also has a `process_turn` stage that can assign turn penalties
|
||||||
|
by angle, traffic signals, obstacles, U-turns, road classes, and intersection
|
||||||
|
context.
|
||||||
|
|
||||||
|
Valhalla does the same separation. Its auto costing computes edge cost from
|
||||||
|
time, distance preference, density, surface, tolls, alley/service/track factors,
|
||||||
|
and highway preference. Transition cost then adds turn/intersection behavior:
|
||||||
|
OSRM-style turn duration, stop impact, turn type, ramp transition cost,
|
||||||
|
roundabout cost, and U-turn penalties. This is exactly the split we should
|
||||||
|
mirror: road class is only one part of the edge cost; turn and transition costs
|
||||||
|
are a separate part of the route's feel.
|
||||||
|
|
||||||
|
GraphHopper's profile model reinforces this. It exposes road prioritization,
|
||||||
|
turn costs, speed, priority, and `distance_influence` as separate tuning
|
||||||
|
surfaces. Its docs also warn that reusing preprocessed heuristic data can
|
||||||
|
require new weights to be greater than or equal to base weights to preserve
|
||||||
|
correctness. That maps to our A* concern: negative bonuses and broad discounts
|
||||||
|
can make a geometric heuristic less trustworthy. Nonnegative additive penalties
|
||||||
|
are safer than "make good edges cheaper" as a first serious patch.
|
||||||
|
|
||||||
|
### Human-Friendly Routes Minimize Turns And Decision Points
|
||||||
|
|
||||||
|
Jiang and Liu's fewest-turn paper is directly relevant even though Cyberpunk is
|
||||||
|
not normal driving. The paper argues that people often choose routes by road
|
||||||
|
continuity rather than segment-by-segment geometric distance. It highlights
|
||||||
|
fewer turns as lower cognitive burden and explicitly connects fewer turns to
|
||||||
|
fewer slow-down/speed-up events.
|
||||||
|
|
||||||
|
The important concept is "natural roads": sequences of segments joined by good
|
||||||
|
continuity. A curve along a ring road is not necessarily a "turn" in the human
|
||||||
|
navigation sense; changing from one road/corridor to another is the turn. The
|
||||||
|
paper used a 45-degree deflection threshold when generating natural roads, but
|
||||||
|
the exact threshold is less important than the idea: penalize route changes and
|
||||||
|
poor continuity, not curvature by itself.
|
||||||
|
|
||||||
|
Sacharidis and Bouros extend this into a useful tradeoff model. They define
|
||||||
|
route length and route complexity separately, with complexity as turn/road-change
|
||||||
|
cost. They then discuss near-fastest routes that are as simple as possible and
|
||||||
|
near-simplest routes that are as fast as possible. This is a good conceptual
|
||||||
|
target for us: do not minimize turns at all costs, and do not minimize distance
|
||||||
|
at all costs. Prefer a near-fast route that is much simpler and smoother.
|
||||||
|
|
||||||
|
### Maneuvers Are State-Dependent
|
||||||
|
|
||||||
|
Hlineny and Moris model maneuvers such as turn prohibitions, traffic light
|
||||||
|
delays, roundabouts, and multi-edge restrictions. Their important point for us
|
||||||
|
is that a maneuver depends on how a vertex was reached, not only the current
|
||||||
|
vertex. A plain Dijkstra state of "best cost to node" is insufficient when
|
||||||
|
cost depends on a sequence of prior edges. Their M-Dijkstra expands state to
|
||||||
|
vertex-plus-context.
|
||||||
|
|
||||||
|
We probably should not implement a full context-expanded solver inside a game
|
||||||
|
binary patch. But the paper explains why our next hook needs predecessor or
|
||||||
|
incoming-direction information. A turn penalty computed only from the current
|
||||||
|
node flags is inadequate. The local RE already found the game keeps predecessor
|
||||||
|
state at solver-state `+0x1e`, and the relax call receives current state,
|
||||||
|
neighbor state, and candidate state. That is enough for a practical one-step
|
||||||
|
turn/corridor approximation without redesigning the whole solver.
|
||||||
|
|
||||||
|
### Speedups Are Mostly Not The Problem Here
|
||||||
|
|
||||||
|
Modern routing engines use A*, bidirectional search, contraction hierarchies,
|
||||||
|
landmarks, arc flags, and related preprocessing to answer large road-network
|
||||||
|
queries quickly. This matters academically, but not as the primary mod target.
|
||||||
|
Night City's graph is small enough that the game already computes paths during
|
||||||
|
play. The player's complaint is not "the route takes too long to compute"; it is
|
||||||
|
"the route is dumb."
|
||||||
|
|
||||||
|
That said, we should respect solver assumptions. The game uses a straight-line
|
||||||
|
heuristic in the full async solver. If we add only nonnegative penalties to `g`
|
||||||
|
and to the candidate `f = g + h`, the heuristic remains conservative relative
|
||||||
|
to the original distance-like base. If we add negative bonuses or deep highway
|
||||||
|
discounts, we may make the heuristic too optimistic or otherwise distort
|
||||||
|
ordering. The proof highway multiplier worked, but the 0.55/0.35 tests already
|
||||||
|
showed how quickly discounts become pathological.
|
||||||
|
|
||||||
|
## Open-Source Routing Engines
|
||||||
|
|
||||||
|
It is viable to use open-source routing software, but there are three different
|
||||||
|
levels of "use":
|
||||||
|
|
||||||
|
- Use an engine's ideas and cost model.
|
||||||
|
- Use an engine offline to preprocess or classify Night City.
|
||||||
|
- Link or run an engine as the actual in-game route planner.
|
||||||
|
|
||||||
|
The first two are practical. The last one is possible, but much more invasive
|
||||||
|
than patching the native solver.
|
||||||
|
|
||||||
|
### Candidate Engines And Libraries
|
||||||
|
|
||||||
|
RoutingKit is the most interesting native-library candidate. It is a C++ route
|
||||||
|
planning library under a BSD-2-Clause license. Its README emphasizes
|
||||||
|
customizable contraction hierarchy support, flexible arc weights, and
|
||||||
|
millisecond-or-better queries on continental-scale data. It exposes direct
|
||||||
|
graph, index, and query APIs. If we wanted a true replacement solver inside a
|
||||||
|
RED4ext DLL, RoutingKit is the most plausible starting point.
|
||||||
|
|
||||||
|
OSRM is a high-performance C++ routing engine and service under a permissive
|
||||||
|
BSD-style license. It has excellent production lessons: profile-based cost
|
||||||
|
modeling, turn processing, road classes, and CH/MLD preprocessing. However, it
|
||||||
|
is built around its own extraction/preprocessing pipeline and OpenStreetMap-like
|
||||||
|
data. Embedding OSRM directly would likely mean generating OSRM-compatible data
|
||||||
|
from Cyberpunk resources, running preprocessing, shipping those artifacts, then
|
||||||
|
calling libosrm or a local service.
|
||||||
|
|
||||||
|
Valhalla is a C++ routing engine under the MIT license. Its costing model is
|
||||||
|
especially useful because auto routing separates edge cost from transition cost,
|
||||||
|
includes highway preference as a mild factor, and explicitly handles ramps,
|
||||||
|
U-turns, stop impact, density, alleys, service roads, surfaces, and closures.
|
||||||
|
Direct embedding has the same issue as OSRM: Valhalla expects its own graph
|
||||||
|
tiles and attribution model.
|
||||||
|
|
||||||
|
GraphHopper is Apache-2.0 and has a strong custom model/profile system, but it
|
||||||
|
is Java. It is useful as a design reference and potentially as an offline
|
||||||
|
analysis tool, but bundling a JVM or running a Java service beside Cyberpunk is
|
||||||
|
not a good first mod architecture.
|
||||||
|
|
||||||
|
Generic graph libraries such as Boost.Graph or LEMON are options if we only
|
||||||
|
need Dijkstra/A* and want to own the data model ourselves. They are lighter than
|
||||||
|
OSRM/Valhalla but do not bring road-routing domain logic; we would still write
|
||||||
|
the road/corridor cost model.
|
||||||
|
|
||||||
|
### Integration Problem
|
||||||
|
|
||||||
|
External engines need a graph they own. Cyberpunk's GPS solver operates on
|
||||||
|
internal route/node records, packed handles, and final route records. Linking an
|
||||||
|
engine does not solve either boundary.
|
||||||
|
|
||||||
|
To replace the solver, we need:
|
||||||
|
|
||||||
|
- Extract or observe the full drivable graph: directed edges, coordinates,
|
||||||
|
flags/classes, turn/intersection topology.
|
||||||
|
- Convert that graph into the engine or custom graph format.
|
||||||
|
- Map live start and target positions to graph nodes.
|
||||||
|
- Compute a route.
|
||||||
|
- Convert the chosen path back into handles/records the game expects, or hook
|
||||||
|
late enough to draw and consume a custom route.
|
||||||
|
- Keep manual GPS, AutoDrive, pedestrian, quest-pin, and custom-pin behavior
|
||||||
|
sane.
|
||||||
|
|
||||||
|
This is a bigger RE surface than modifying native edge relaxation. It may be
|
||||||
|
worth it if the native solver proves too rigid, but it is not the cheapest next
|
||||||
|
step.
|
||||||
|
|
||||||
|
### Practical Ways To Use Engines
|
||||||
|
|
||||||
|
Best near-term:
|
||||||
|
|
||||||
|
- Use Valhalla, OSRM, and GraphHopper as cost-model references.
|
||||||
|
- Implement their proven split inside the native solver hook: edge cost plus
|
||||||
|
transition cost plus mode/user preference.
|
||||||
|
- Use additive nonnegative penalties first.
|
||||||
|
|
||||||
|
Best offline/precompute:
|
||||||
|
|
||||||
|
- Extract VAND/navigation and traffic companion data.
|
||||||
|
- Build a standalone graph in the repo.
|
||||||
|
- Use RoutingKit or a small custom A* to experiment rapidly outside the game.
|
||||||
|
- Generate baked labels: corridor id, natural-road id, intersection complexity,
|
||||||
|
ramp/connector classification, slope/airtime risk, and road-class
|
||||||
|
confidence.
|
||||||
|
- Feed those labels back into the RED4ext patch as compact lookup tables.
|
||||||
|
|
||||||
|
Possible long-term replacement:
|
||||||
|
|
||||||
|
- Use RoutingKit or a custom solver in-game.
|
||||||
|
- Hook full solver output building around `0x818ba8` or later result
|
||||||
|
materialization.
|
||||||
|
- Emit game-native route records from our computed node/handle path.
|
||||||
|
|
||||||
|
This replacement path is feasible only after we can round-trip a native route:
|
||||||
|
decode a vanilla route into graph handles, reproduce it externally, then inject
|
||||||
|
the same route back without changing behavior.
|
||||||
|
|
||||||
|
### Recommendation
|
||||||
|
|
||||||
|
Do not link a full production engine yet. Use RoutingKit or a small custom graph
|
||||||
|
runner offline to prototype and validate the cost function, then patch the
|
||||||
|
native solver relaxation/cost surface. The native patch has hard game
|
||||||
|
integration for free: target selection, start projection, route output,
|
||||||
|
minimap/world-map drawing, and AutoDrive consumers.
|
||||||
|
|
||||||
|
Revisit full engine integration if:
|
||||||
|
|
||||||
|
- Predecessor/current/neighbor geometry is inaccessible.
|
||||||
|
- Native route output cannot express the desired route.
|
||||||
|
- The cost model requires expanded solver state that the game's one-label node
|
||||||
|
state cannot support.
|
||||||
|
|
||||||
|
## Implications For Cyberpunk 2077
|
||||||
|
|
||||||
|
### Manual Player GPS Should Optimize Momentum
|
||||||
|
|
||||||
|
A real GPS assumes legal speed, stop signs, lights, congestion, safety, and
|
||||||
|
human compliance. A Cyberpunk player in a Caliburn does not. The manual-driving
|
||||||
|
cost model should assume:
|
||||||
|
|
||||||
|
- Posted speed is weak evidence. The player can exceed it.
|
||||||
|
- Traffic simulation metadata is useful but secondary. The player often cuts
|
||||||
|
through or around traffic.
|
||||||
|
- Highway classification is useful but not decisive. Short freeway hops can be
|
||||||
|
worse than a straight arterial or side-street corridor.
|
||||||
|
- Route smoothness matters because every hard turn, ramp dive, or intersection
|
||||||
|
chain costs player speed and control.
|
||||||
|
- Roads with good continuity should be preferred even if they are not highways.
|
||||||
|
|
||||||
|
### AutoDrive Should Remain More Traffic-Like
|
||||||
|
|
||||||
|
AutoDrive behaves more like an NPC/legal driver than the player does. It should
|
||||||
|
benefit more from road hierarchy, speed limits, traffic-sim classes, and
|
||||||
|
avoiding odd local shortcuts. Manual drive and AutoDrive probably should share
|
||||||
|
the same hook site if possible, but they may need different parameter presets.
|
||||||
|
|
||||||
|
The previous warning still stands: do not accidentally apply a manual-only
|
||||||
|
surface to AutoDrive while leaving manual GPS on another surface, or vice versa,
|
||||||
|
unless the mode split is deliberate and documented.
|
||||||
|
|
||||||
|
## Recommended Cost Model
|
||||||
|
|
||||||
|
The next prototype should use additive penalties at the solver edge-relaxation
|
||||||
|
site rather than more highway discounts.
|
||||||
|
|
||||||
|
Base:
|
||||||
|
|
||||||
|
```text
|
||||||
|
candidate_g =
|
||||||
|
vanilla_g
|
||||||
|
+ short_segment_penalty
|
||||||
|
+ turn_or_continuity_penalty
|
||||||
|
+ intersection_complexity_penalty
|
||||||
|
+ ramp_transition_penalty
|
||||||
|
+ grade_or_airtime_risk_penalty
|
||||||
|
+ optional_road_class_penalty
|
||||||
|
```
|
||||||
|
|
||||||
|
Where:
|
||||||
|
|
||||||
|
- `vanilla_g` is the game's current `current.g + delta * nodeMultiplier *
|
||||||
|
directionMultiplier`.
|
||||||
|
- `short_segment_penalty` discourages stair-stepping through many tiny edges.
|
||||||
|
- `turn_or_continuity_penalty` is based on predecessor/current/neighbor angle,
|
||||||
|
not on road class alone.
|
||||||
|
- `intersection_complexity_penalty` approximates stop-start risk and decision
|
||||||
|
points, probably from node degree, flags, or short connector density.
|
||||||
|
- `ramp_transition_penalty` applies when moving highway <-> non-highway through
|
||||||
|
a short/angled connector.
|
||||||
|
- `grade_or_airtime_risk_penalty` applies when vertical delta or local shape
|
||||||
|
indicates a steep launch/drop. This is lower priority until we prove the
|
||||||
|
height fields are stable.
|
||||||
|
- `optional_road_class_penalty` can still mildly prefer highways/arterials, but
|
||||||
|
should be subordinate to continuity.
|
||||||
|
|
||||||
|
Avoid negative "bonuses" in the first real version. If a road is desirable, make
|
||||||
|
its alternatives pay an added cost. This preserves a safer A*/Dijkstra-style
|
||||||
|
cost surface and avoids the pathological over-attraction seen with highway
|
||||||
|
discounts.
|
||||||
|
|
||||||
|
## Candidate Patch Sites
|
||||||
|
|
||||||
|
The proven but blunt hook:
|
||||||
|
|
||||||
|
- `0x40bb98`: road-tail multiplier block in `0x40bb40`.
|
||||||
|
- It sees `solver` and `node` and can inspect flags such as `Highway`.
|
||||||
|
- It cannot see predecessor/current/neighbor geometry, so it cannot distinguish
|
||||||
|
a good corridor from a bad ramp hairpin.
|
||||||
|
|
||||||
|
The better next hook:
|
||||||
|
|
||||||
|
- `0x40b304` and `0x40b540`: neighbor expansion helpers.
|
||||||
|
- They compute vanilla tentative `g`, straight-line heuristic `h`, and then
|
||||||
|
call `0x40ba58`.
|
||||||
|
- At the `0x40ba58` callsites, the live context includes solver pointer,
|
||||||
|
current state, neighbor state, current node, neighbor node, candidate state,
|
||||||
|
route mode, progress/delta, and enough vector data for one-step geometry.
|
||||||
|
|
||||||
|
The likely patch shape:
|
||||||
|
|
||||||
|
- Inline patch at the relax path, not a C detour on a tiny helper.
|
||||||
|
- Adjust candidate `g` and candidate `f` by the same nonnegative penalty before
|
||||||
|
vanilla `0x40ba58` compares against `neighbor_state+0x14` and writes
|
||||||
|
`neighbor_state+0x10`.
|
||||||
|
- Keep the first build low-noise. Logging every edge expansion is pathological;
|
||||||
|
route-window sampling or aggregate counters are enough.
|
||||||
|
|
||||||
|
## First Prototype Parameters
|
||||||
|
|
||||||
|
Start conservative. The goal is to prove the model changes routes in the right
|
||||||
|
direction without causing highway hairpins or search blowups.
|
||||||
|
|
||||||
|
Suggested first-pass terms:
|
||||||
|
|
||||||
|
- Short segment churn:
|
||||||
|
- If edge distance/progress delta is under roughly 25-40 meters, add a small
|
||||||
|
fixed penalty or a penalty proportional to the missing length.
|
||||||
|
- Turn continuity:
|
||||||
|
- If predecessor position is available, compute normalized vectors
|
||||||
|
`prev -> current` and `current -> neighbor`.
|
||||||
|
- No penalty for very straight movement.
|
||||||
|
- Mild penalty for shallow deflection.
|
||||||
|
- Stronger penalty for 60-120 degree turns.
|
||||||
|
- Very strong penalty for U-turn-like reversals unless near origin/destination.
|
||||||
|
- Corridor continuation:
|
||||||
|
- Treat same-road or good-continuity transitions as neutral, not discounted.
|
||||||
|
- A curved ring/highway should stay cheap if it is continuous.
|
||||||
|
- Ramp churn:
|
||||||
|
- Penalize highway/non-highway transitions when the connector is short and the
|
||||||
|
turn angle is high.
|
||||||
|
- Do not penalize a long smooth ramp the same way.
|
||||||
|
- Intersection complexity:
|
||||||
|
- Penalize nodes with many outgoing options or multiple short connectors if
|
||||||
|
the relevant fields can be identified.
|
||||||
|
- Slope/airtime:
|
||||||
|
- Start as logging-only unless height deltas clearly correlate with known bad
|
||||||
|
places. Add as a later penalty.
|
||||||
|
|
||||||
|
## Testing Plan
|
||||||
|
|
||||||
|
Keep the route set from previous testing:
|
||||||
|
|
||||||
|
- El Coyote / city-center custom pin, because it exposed the bad hairpin.
|
||||||
|
- Side job, Sinnerman, and Claire from the fixed car save.
|
||||||
|
- Violence / No-Tell Motel cross-city routes.
|
||||||
|
- The Gig / Cassius Rider long Watson route.
|
||||||
|
- Aldecaldo / Badlands routes.
|
||||||
|
- Cyberpsycho sighting on the unfinished highway.
|
||||||
|
|
||||||
|
Add tests targeted at the new model:
|
||||||
|
|
||||||
|
- A straight long side-street corridor in Heywood vs a short freeway hop.
|
||||||
|
- A route with several 90-degree stair-step alternatives.
|
||||||
|
- A known suspended-highway offramp or hilly road that causes airtime at speed.
|
||||||
|
- AutoDrive on the same destination, to check whether its behavior remains sane.
|
||||||
|
|
||||||
|
## Practical Next Step
|
||||||
|
|
||||||
|
The static pass around `0x40b304`, `0x40b540`, and `0x40ba58` is complete
|
||||||
|
enough for the first prototype:
|
||||||
|
|
||||||
|
- `0x40ba58` has four direct callers: `0x40b175`, `0x40b4ac`, `0x40b6d5`,
|
||||||
|
and `0x40bca7`.
|
||||||
|
- The ordinary adjacency walkers are the two clean first patch sites:
|
||||||
|
`0x40b4ac` from `0x40b304`, and `0x40b6d5` from `0x40b540`.
|
||||||
|
- At both ordinary sites, the live context contains solver, current state,
|
||||||
|
neighbor state, current node, neighbor node, current progress, neighbor
|
||||||
|
progress, vanilla `g`, and vanilla `f`.
|
||||||
|
- A disabled-by-default RED4ext prototype now patches the two ordinary sites by
|
||||||
|
adding a fixed nonnegative per-edge penalty before calling vanilla
|
||||||
|
`0x40ba58`.
|
||||||
|
|
||||||
|
Remaining static work before the full momentum model:
|
||||||
|
|
||||||
|
- Confirm candidate vector layout at `0x40b8f0`/state allocation.
|
||||||
|
- Confirm route-mode values at `solver+0xc4` for manual driving vs AutoDrive.
|
||||||
|
- Identify a cheap way to detect road-class transition from current/neighbor
|
||||||
|
node flags.
|
||||||
|
- Decode predecessor geometry from `state+0x1e` well enough to compute
|
||||||
|
predecessor/current/neighbor turn angle.
|
||||||
|
- Decide whether the later turn/ramp model should also patch the special/helper
|
||||||
|
relax paths (`0x40b175`, `0x40bca7`) or keep them vanilla.
|
||||||
|
|
||||||
|
Next implementation step is to enable and test the smallest additive prototype
|
||||||
|
with route-result comparisons. If the fixed per-edge penalty moves paths in the
|
||||||
|
right direction and remains stable, extend it into a live-tunable cost file and
|
||||||
|
then add turn/continuity penalties. Keep highway multiplier support available as
|
||||||
|
a diagnostic knob, but do not use it as the primary default behavior.
|
||||||
@@ -66,12 +66,22 @@ Current behavior:
|
|||||||
|
|
||||||
Active build note:
|
Active build note:
|
||||||
|
|
||||||
- The currently installed build is disabled on disk:
|
- The currently installed build is active as
|
||||||
`EdgeWeightGPS.dll.disabled`. There is no active `EdgeWeightGPS.dll` in the
|
`red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll`.
|
||||||
game plugin directory.
|
- Source defaults enable the stable inline solver-cost patch at `0x40bb98`
|
||||||
- Source defaults are still read-only for route behavior. They disable provider
|
(`kEnableGpsNodeMultiplierInlinePatch = true`) and keep the old full-function
|
||||||
class multiplier overrides and the spatial edge-cost patch, while keeping GPS
|
`0x40bb40` C++ detour disabled (`kEnableGpsMultiplierHooks = false`).
|
||||||
query lifecycle tracing available for probe builds.
|
- The inline patch preserves vanilla road cost except for highway lanes in the
|
||||||
|
road-tail branch. Highway lanes are multiplied by the live value in
|
||||||
|
`solver_weights.bin`, defaulting to `0.80`.
|
||||||
|
- The patch is intentionally not hard-gated on `solver+0xc4 == 2`; the vanilla
|
||||||
|
branch already limits it to road-style modes `0/2/4`, which keeps manual
|
||||||
|
drive and autodrive-like callers from diverging while leaving pedestrian mode
|
||||||
|
`1` alone.
|
||||||
|
- `solver_weights.bin` lives beside the DLL and is exactly one little-endian
|
||||||
|
float32. The plugin polls it every 500 ms from the Running game-state update.
|
||||||
|
`tools/write_solver_weights.py` writes the installed file or generates preset
|
||||||
|
binaries under `presets/solver_weights/`.
|
||||||
- The async route-job hooks are split behind `kEnableGpsRouteJobLifecycleHooks`
|
- The async route-job hooks are split behind `kEnableGpsRouteJobLifecycleHooks`
|
||||||
and are disabled in the active probe; this keeps the log focused on
|
and are disabled in the active probe; this keeps the log focused on
|
||||||
`0x70a42c` submissions, `0x7094b8` result records, and local
|
`0x70a42c` submissions, `0x7094b8` result records, and local
|
||||||
|
|||||||
@@ -980,32 +980,62 @@ the original symptom: the solver is weighted enough to avoid obviously invalid
|
|||||||
surfaces, but it has no strong reason to stay on highway corridors for long
|
surfaces, but it has no strong reason to stay on highway corridors for long
|
||||||
vehicle trips.
|
vehicle trips.
|
||||||
|
|
||||||
The current RED4ext prototype therefore hooks `0x40bb40` and only changes
|
The first RED4ext prototype tried to hook `0x40bb40` as a normal C++ detour.
|
||||||
driving-mode calls (`solver/job + 0xc4 == 2`). It reads flags from
|
That found the correct function but crashed during load-time GPS warmup because
|
||||||
`node+0x88`, leaves vanilla results intact for ordinary roads and unknown
|
the optimized caller expects the tiny vanilla helper not to disturb volatile
|
||||||
surfaces, and applies this diagnostic multiplier set:
|
register state used immediately afterward.
|
||||||
|
|
||||||
|
The stable prototype now patches inline at the road-tail block `0x40bb98`
|
||||||
|
instead. Reaching that block already means the vanilla function selected one of
|
||||||
|
the road-style modes `0/2/4`; pedestrian mode `1` uses a different branch. The
|
||||||
|
patch preserves vanilla `node+0x93` behavior, checks `node+0x88 & 0x4000`, and
|
||||||
|
applies an extra multiplier only for highway lanes.
|
||||||
|
|
||||||
|
The proof multiplier was:
|
||||||
|
|
||||||
```text
|
```text
|
||||||
Highway 0.35
|
Highway 0.35
|
||||||
GPSOnly 1.10
|
|
||||||
Pavement 1.25
|
|
||||||
Other 1.00
|
|
||||||
```
|
```
|
||||||
|
|
||||||
`0x40bb00` is currently hooked only for signature logging. If the node
|
Live A/B testing confirmed this is the decisive world-map route-cost lever.
|
||||||
multiplier test moves routes but produces weird reverse/turnaround behavior,
|
With `0.35`, routes visibly changed and a custom pin around the city-center
|
||||||
the next step is to tune or gate the auxiliary multiplier as well.
|
roundabout took an obviously bad highway/ramp hairpin. With the inline patch
|
||||||
|
disabled, the same route returned to the straight vanilla path through the
|
||||||
|
roundabout.
|
||||||
|
|
||||||
|
The current installed build uses a default highway multiplier of `0.80` and
|
||||||
|
hot-reloads `solver_weights.bin` from the plugin directory. The file is exactly
|
||||||
|
one little-endian float32. `tools/write_solver_weights.py` writes the installed
|
||||||
|
file and can generate named presets:
|
||||||
|
|
||||||
|
```text
|
||||||
|
vanilla 1.00
|
||||||
|
mild 0.90
|
||||||
|
default 0.80
|
||||||
|
strong 0.70
|
||||||
|
proof-highway-cheap 0.35
|
||||||
|
highway-expensive 3.00
|
||||||
|
```
|
||||||
|
|
||||||
|
The patch intentionally does not hard-gate on `solver+0xc4 == 2`, because
|
||||||
|
autodrive-like local vehicle navigation may use another road-style mode. Since
|
||||||
|
the patch lives in the vanilla road-tail branch, it applies to road-style modes
|
||||||
|
`0/2/4` and still leaves pedestrian mode `1` alone.
|
||||||
|
|
||||||
|
`0x40bb00` is not patched yet. If tuned highway weights still produce
|
||||||
|
reverse/turnaround artifacts, inspect or patch that auxiliary multiplier so
|
||||||
|
reverse/special progress branches receive a compatible policy.
|
||||||
|
|
||||||
## Future Improvements
|
## Future Improvements
|
||||||
|
|
||||||
Better versions of this mod could:
|
Better versions of this mod could:
|
||||||
|
|
||||||
- tune the `0x40bb40` solver multiplier after live A/B testing confirms visible
|
- tune the `0x40bb98` inline highway multiplier from the current `0.80` default
|
||||||
route changes
|
using live `solver_weights.bin` presets
|
||||||
- inspect and, if needed, patch `0x40bb00` so reverse/special progress branches
|
- inspect and, if needed, patch `0x40bb00` so reverse/special progress branches
|
||||||
receive the same road-class policy as forward expansion
|
receive the same road-class policy as forward expansion
|
||||||
- add a tiny live-tuning file for the solver multipliers, similar to the earlier
|
- extend `solver_weights.bin` beyond one highway float only if GPSOnly/pavement
|
||||||
`spatial_weights.bin`, once the hook is confirmed stable
|
tuning becomes necessary
|
||||||
- replace the crashing `0x8d46cc` detour with a narrower inline patch or a
|
- replace the crashing `0x8d46cc` detour with a narrower inline patch or a
|
||||||
safer caller-side hook
|
safer caller-side hook
|
||||||
- decode enough of the `VAND` graph to join navigation points to traffic lane
|
- decode enough of the `VAND` graph to join navigation points to traffic lane
|
||||||
|
|||||||
@@ -0,0 +1,105 @@
|
|||||||
|
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
|
||||||
|
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
|
||||||
|
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
|
||||||
|
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
|
||||||
|
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
|
||||||
|
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
|
||||||
|
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
|
||||||
|
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
|
||||||
|
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
|
||||||
|
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
|
||||||
|
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
|
||||||
|
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
|
||||||
|
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,906 @@
|
|||||||
|
2026-06-27 09:23:17.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff04d0000 sdk=0x7f3aef68 runtime=2.3.1
|
||||||
|
2026-06-27 09:23:17.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 09:23:17.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms solver weights active highway=1
|
||||||
|
2026-06-27 09:23:17.002 +2ms momentum weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms momentum fixed-edge penalty active fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.003 +3ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x72a40000 highwayMultiplier=1 modes=road-tail
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-a target_rva=0x40b49a cave=0x72a50000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.004 +4ms gps-momentum-penalty-inline-patch applied site=expand-list-b target_rva=0x40b6c3 cave=0x72a60000 fixedEdgePenalty=8
|
||||||
|
2026-06-27 09:23:17.016 +16ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 09:23:17.026 +26ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 09:23:34.838 +16838ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 09:23:34.869 +16869ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 09:23:34.876 +16876ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 09:23:34.883 +16883ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 09:23:34.890 +16890ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 09:23:34.897 +16897ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit 0x70a42c call=1 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:25.617 +67617ms hook GPSQuerySubmit result call=1 queryId=1 manager_nextIdD4=2/0x2
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=119 queryId=1 tracked=1 perQueryCall=90 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms gps-momentum-summary queryId=1 resultFetchCall=91 submitCall=1 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=511540 globalCallsB=545870 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5be0b0160 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:26.069 +69069ms hook GPSQueryResultFetch 0x7094b8 call=120 queryId=1 tracked=1 perQueryCall=91 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:26.070 +69070ms hook GPSQueryResultFetch 0x7094b8 call=121 queryId=1 tracked=1 perQueryCall=92 value=1 submitCall=1 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:24:43.701 +85701ms hook GPSQuerySubmit 0x70a42c call=2 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:43.702 +85702ms hook GPSQuerySubmit result call=2 queryId=2 manager_nextIdD4=3/0x3
|
||||||
|
2026-06-27 09:24:43.842 +85842ms hook GPSQueryResultFetch 0x7094b8 call=1804 queryId=2 tracked=1 perQueryCall=13 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms gps-momentum-summary queryId=2 resultFetchCall=14 submitCall=2 submitRetRva=0x8d20d4 callsA=56728 callsB=59667 callsTotal=116395 fixedPenalty=8 penaltyTotal=931160 globalCallsA=568268 globalCallsB=605537 gpsResultRouteCount=63 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5af547200 gpsResult_routeCapacity=63 gpsResult_routeCount=63 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1805 queryId=2 tracked=1 perQueryCall=14 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f0000003f
|
||||||
|
2026-06-27 09:24:43.843 +85843ms hook GPSQueryResultFetch 0x7094b8 call=1806 queryId=2 tracked=1 perQueryCall=15 value=1 submitCall=2 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3f
|
||||||
|
2026-06-27 09:24:48.288 +90288ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:24:48.289 +90289ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 09:24:49.612 +91612ms hook GPSQueryResultFetch 0x7094b8 call=2435 queryId=3 tracked=1 perQueryCall=112 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:24:49.612 +91612ms gps-momentum-summary queryId=3 resultFetchCall=113 submitCall=3 submitRetRva=0x8d20d4 callsA=511540 callsB=545870 callsTotal=1057410 fixedPenalty=8 penaltyTotal=8.45928e+06 globalCallsA=1079808 globalCallsB=1151407 gpsResultRouteCount=78 gpsResult=0x7983fbb0 gpsResult_routeData=0x5cdd61280 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2436 queryId=3 tracked=1 perQueryCall=113 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:24:49.613 +91613ms hook GPSQueryResultFetch 0x7094b8 call=2437 queryId=3 tracked=1 perQueryCall=114 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:25:02.331 +104331ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3916 queryId=4 tracked=1 perQueryCall=31 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms gps-momentum-summary queryId=4 resultFetchCall=32 submitCall=4 submitRetRva=0x8d20d4 callsA=145158 callsB=151818 callsTotal=296976 fixedPenalty=8 penaltyTotal=2.37581e+06 globalCallsA=1224966 globalCallsB=1303225 gpsResultRouteCount=89 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3743600 gpsResult_routeCapacity=89 gpsResult_routeCount=89 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:25:02.651 +104651ms hook GPSQueryResultFetch 0x7094b8 call=3917 queryId=4 tracked=1 perQueryCall=32 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5900000059
|
||||||
|
2026-06-27 09:25:02.652 +104652ms hook GPSQueryResultFetch 0x7094b8 call=3918 queryId=4 tracked=1 perQueryCall=33 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x59
|
||||||
|
2026-06-27 09:26:07.426 +169426ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=0
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit 0x70a42c call=5 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077086212/0x40330804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:23.406 +185406ms hook GPSQuerySubmit result call=5 queryId=5 manager_nextIdD4=6/0x6
|
||||||
|
2026-06-27 09:26:23.650 +185650ms hook GPSQueryResultFetch 0x7094b8 call=20018 queryId=5 tracked=1 perQueryCall=20 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms gps-momentum-summary queryId=5 resultFetchCall=21 submitCall=5 submitRetRva=0x8d20d4 callsA=87946 callsB=92476 callsTotal=180422 fixedPenalty=0 penaltyTotal=0 globalCallsA=1312912 globalCallsB=1395701 gpsResultRouteCount=67 gpsResult=0x793efbb0 gpsResult_routeData=0x594b46630 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20019 queryId=5 tracked=1 perQueryCall=21 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:26:23.651 +185651ms hook GPSQueryResultFetch 0x7094b8 call=20020 queryId=5 tracked=1 perQueryCall=22 value=1 submitCall=5 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:26:27.217 +189217ms hook GPSQuerySubmit 0x70a42c call=6 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:27.218 +189218ms hook GPSQuerySubmit result call=6 queryId=6 manager_nextIdD4=7/0x7
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20901 queryId=6 tracked=1 perQueryCall=118 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms gps-momentum-summary queryId=6 resultFetchCall=119 submitCall=6 submitRetRva=0x8d20d4 callsA=537384 callsB=572859 callsTotal=1110243 fixedPenalty=0 penaltyTotal=0 globalCallsA=1850296 globalCallsB=1968560 gpsResultRouteCount=87 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5acc04370 gpsResult_routeCapacity=87 gpsResult_routeCount=87 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20902 queryId=6 tracked=1 perQueryCall=119 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x5700000057
|
||||||
|
2026-06-27 09:26:28.766 +190766ms hook GPSQueryResultFetch 0x7094b8 call=20903 queryId=6 tracked=1 perQueryCall=120 value=1 submitCall=6 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x57
|
||||||
|
2026-06-27 09:26:37.007 +200007ms hook GPSQuerySubmit 0x70a42c call=7 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:37.008 +200008ms hook GPSQuerySubmit result call=7 queryId=7 manager_nextIdD4=8/0x8
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22715 queryId=7 tracked=1 perQueryCall=33 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms gps-momentum-summary queryId=7 resultFetchCall=34 submitCall=7 submitRetRva=0x8d20d4 callsA=153240 callsB=161070 callsTotal=314310 fixedPenalty=0 penaltyTotal=0 globalCallsA=2003536 globalCallsB=2129630 gpsResultRouteCount=92 gpsResult=0x7993fbb0 gpsResult_routeData=0x5ac61b5f0 gpsResult_routeCapacity=92 gpsResult_routeCount=92 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:38.363 +200363ms hook GPSQueryResultFetch 0x7094b8 call=22716 queryId=7 tracked=1 perQueryCall=34 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c0000005c
|
||||||
|
2026-06-27 09:26:38.364 +200364ms hook GPSQueryResultFetch 0x7094b8 call=22717 queryId=7 tracked=1 perQueryCall=35 value=1 submitCall=7 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x5c
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit 0x70a42c call=8 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2411071492/0x8fb60804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:26:40.188 +202188ms hook GPSQuerySubmit result call=8 queryId=8 manager_nextIdD4=9/0x9
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23214 queryId=8 tracked=1 perQueryCall=32 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms gps-momentum-summary queryId=8 resultFetchCall=33 submitCall=8 submitRetRva=0x8d20d4 callsA=150288 callsB=158376 callsTotal=308664 fixedPenalty=0 penaltyTotal=0 globalCallsA=2153824 globalCallsB=2288006 gpsResultRouteCount=90 gpsResult=0x793efbb0 gpsResult_routeData=0x5c626ad20 gpsResult_routeCapacity=90 gpsResult_routeCount=90 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23215 queryId=8 tracked=1 perQueryCall=33 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a0000005a
|
||||||
|
2026-06-27 09:26:40.522 +202522ms hook GPSQueryResultFetch 0x7094b8 call=23216 queryId=8 tracked=1 perQueryCall=34 value=1 submitCall=8 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x5a
|
||||||
|
2026-06-27 09:27:59.019 +282019ms momentum weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\momentum_weights.bin fixedEdgePenalty=80
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit 0x70a42c call=9 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:14.074 +297074ms hook GPSQuerySubmit result call=9 queryId=9 manager_nextIdD4=10/0xa
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41556 queryId=9 tracked=1 perQueryCall=21 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms gps-momentum-summary queryId=9 resultFetchCall=22 submitCall=9 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2265717 globalCallsB=2404991 gpsResultRouteCount=59 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59a6d9590 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:15.317 +297317ms hook GPSQueryResultFetch 0x7094b8 call=41557 queryId=9 tracked=1 perQueryCall=22 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:15.318 +297318ms hook GPSQueryResultFetch 0x7094b8 call=41558 queryId=9 tracked=1 perQueryCall=23 value=1 submitCall=9 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit 0x70a42c call=10 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:16.511 +298511ms hook GPSQuerySubmit result call=10 queryId=10 manager_nextIdD4=11/0xb
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41985 queryId=10 tracked=1 perQueryCall=95 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms gps-momentum-summary queryId=10 resultFetchCall=96 submitCall=10 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=2753430 globalCallsB=2927313 gpsResultRouteCount=70 gpsResult=0x795efbb0 gpsResult_routeData=0x5a170b6e0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41986 queryId=10 tracked=1 perQueryCall=96 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:17.691 +299691ms hook GPSQueryResultFetch 0x7094b8 call=41987 queryId=10 tracked=1 perQueryCall=97 value=1 submitCall=10 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit 0x70a42c call=11 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:20.077 +303077ms hook GPSQuerySubmit result call=11 queryId=11 manager_nextIdD4=12/0xc
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42682 queryId=11 tracked=1 perQueryCall=26 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms gps-momentum-summary queryId=11 resultFetchCall=27 submitCall=11 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=2865323 globalCallsB=3044298 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c4793970 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:21.413 +303413ms hook GPSQueryResultFetch 0x7094b8 call=42683 queryId=11 tracked=1 perQueryCall=27 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:28:21.414 +303414ms hook GPSQueryResultFetch 0x7094b8 call=42684 queryId=11 tracked=1 perQueryCall=28 value=1 submitCall=11 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit 0x70a42c call=12 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:21.089 +304089ms hook GPSQuerySubmit result call=12 queryId=12 manager_nextIdD4=13/0xd
|
||||||
|
2026-06-27 09:28:23.204 +305204ms hook GPSQueryResultFetch 0x7094b8 call=42981 queryId=12 tracked=1 perQueryCall=91 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms gps-momentum-summary queryId=12 resultFetchCall=92 submitCall=12 submitRetRva=0x8d20d4 callsA=487713 callsB=522322 callsTotal=1010035 fixedPenalty=80 penaltyTotal=8.08028e+07 globalCallsA=3353036 globalCallsB=3566620 gpsResultRouteCount=70 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5af57a4c0 gpsResult_routeCapacity=70 gpsResult_routeCount=70 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42982 queryId=12 tracked=1 perQueryCall=92 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x4600000046
|
||||||
|
2026-06-27 09:28:23.205 +305205ms hook GPSQueryResultFetch 0x7094b8 call=42983 queryId=12 tracked=1 perQueryCall=93 value=1 submitCall=12 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x46
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit 0x70a42c call=13 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:32.189 +314189ms hook GPSQuerySubmit result call=13 queryId=13 manager_nextIdD4=14/0xe
|
||||||
|
2026-06-27 09:28:32.495 +314495ms hook GPSQueryResultFetch 0x7094b8 call=44835 queryId=13 tracked=1 perQueryCall=30 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms gps-momentum-summary queryId=13 resultFetchCall=31 submitCall=13 submitRetRva=0x8d20d4 callsA=166725 callsB=180387 callsTotal=347112 fixedPenalty=80 penaltyTotal=2.7769e+07 globalCallsA=3519761 globalCallsB=3747007 gpsResultRouteCount=78 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=78 gpsResult_routeCount=78 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44836 queryId=13 tracked=1 perQueryCall=31 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e0000004e
|
||||||
|
2026-06-27 09:28:32.496 +314496ms hook GPSQueryResultFetch 0x7094b8 call=44837 queryId=13 tracked=1 perQueryCall=32 value=1 submitCall=13 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x4e
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit 0x70a42c call=14 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:28:33.526 +315526ms hook GPSQuerySubmit result call=14 queryId=14 manager_nextIdD4=15/0xf
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45154 queryId=14 tracked=1 perQueryCall=35 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms gps-momentum-summary queryId=14 resultFetchCall=36 submitCall=14 submitRetRva=0x8d20d4 callsA=165879 callsB=179387 callsTotal=345266 fixedPenalty=80 penaltyTotal=2.76213e+07 globalCallsA=3685640 globalCallsB=3926394 gpsResultRouteCount=77 gpsResult=0x795efbb0 gpsResult_routeData=0x5b44a1e40 gpsResult_routeCapacity=77 gpsResult_routeCount=77 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:28:33.920 +315920ms hook GPSQueryResultFetch 0x7094b8 call=45155 queryId=14 tracked=1 perQueryCall=36 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d0000004d
|
||||||
|
2026-06-27 09:28:33.921 +315921ms hook GPSQueryResultFetch 0x7094b8 call=45156 queryId=14 tracked=1 perQueryCall=37 value=1 submitCall=14 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x4d
|
||||||
|
2026-06-27 09:35:22.127 +725127ms hook GPSQuerySubmit 0x70a42c call=15 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:22.133 +725133ms hook GPSQuerySubmit result call=15 queryId=15 manager_nextIdD4=16/0x10
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124845 queryId=15 tracked=1 perQueryCall=4 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:23.178 +725178ms gps-momentum-summary queryId=15 resultFetchCall=5 submitCall=15 submitRetRva=0x8d20d4 callsA=14348 callsB=15057 callsTotal=29405 fixedPenalty=80 penaltyTotal=2.3524e+06 globalCallsA=3699988 globalCallsB=3941451 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124846 queryId=15 tracked=1 perQueryCall=5 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:35:23.178 +725178ms hook GPSQueryResultFetch 0x7094b8 call=124847 queryId=15 tracked=1 perQueryCall=6 value=1 submitCall=15 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit 0x70a42c call=16 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:24.497 +726497ms hook GPSQuerySubmit result call=16 queryId=16 manager_nextIdD4=17/0x11
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125111 queryId=16 tracked=1 perQueryCall=4 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:24.540 +726540ms gps-momentum-summary queryId=16 resultFetchCall=5 submitCall=16 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3712712 globalCallsB=3954874 gpsResultRouteCount=12 gpsResult=0x7993fbb0 gpsResult_routeData=0x196a5cdb0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125112 queryId=16 tracked=1 perQueryCall=5 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:24.540 +726540ms hook GPSQueryResultFetch 0x7094b8 call=125113 queryId=16 tracked=1 perQueryCall=6 value=1 submitCall=16 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:24.120 +727120ms hook GPSQuerySubmit 0x70a42c call=17 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:24.121 +727121ms hook GPSQuerySubmit result call=17 queryId=17 manager_nextIdD4=18/0x12
|
||||||
|
2026-06-27 09:35:25.174 +727174ms hook GPSQueryResultFetch 0x7094b8 call=125242 queryId=17 tracked=1 perQueryCall=5 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:25.175 +727175ms gps-momentum-summary queryId=17 resultFetchCall=6 submitCall=17 submitRetRva=0x8d20d4 callsA=13285 callsB=13963 callsTotal=27248 fixedPenalty=80 penaltyTotal=2.17984e+06 globalCallsA=3725997 globalCallsB=3968837 gpsResultRouteCount=14 gpsResult=0x31db50 gpsResult_routeData=0x5a3705e80 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125243 queryId=17 tracked=1 perQueryCall=6 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:35:25.175 +727175ms hook GPSQueryResultFetch 0x7094b8 call=125244 queryId=17 tracked=1 perQueryCall=7 value=1 submitCall=17 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit 0x70a42c call=18 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:25.830 +727830ms hook GPSQuerySubmit result call=18 queryId=18 manager_nextIdD4=19/0x13
|
||||||
|
2026-06-27 09:35:25.859 +727859ms hook GPSQueryResultFetch 0x7094b8 call=125388 queryId=18 tracked=1 perQueryCall=3 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:25.860 +727860ms gps-momentum-summary queryId=18 resultFetchCall=4 submitCall=18 submitRetRva=0x8d20d4 callsA=3731 callsB=3872 callsTotal=7603 fixedPenalty=80 penaltyTotal=608240 globalCallsA=3729728 globalCallsB=3972709 gpsResultRouteCount=11 gpsResult=0x79d3fbb0 gpsResult_routeData=0x185de6d00 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125389 queryId=18 tracked=1 perQueryCall=4 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb0000000b
|
||||||
|
2026-06-27 09:35:25.860 +727860ms hook GPSQueryResultFetch 0x7094b8 call=125390 queryId=18 tracked=1 perQueryCall=5 value=1 submitCall=18 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xb
|
||||||
|
2026-06-27 09:35:26.267 +728267ms hook GPSQuerySubmit 0x70a42c call=19 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:26.268 +728268ms hook GPSQuerySubmit result call=19 queryId=19 manager_nextIdD4=20/0x14
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125483 queryId=19 tracked=1 perQueryCall=3 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:26.297 +728297ms gps-momentum-summary queryId=19 resultFetchCall=4 submitCall=19 submitRetRva=0x8d20d4 callsA=2922 callsB=3076 callsTotal=5998 fixedPenalty=80 penaltyTotal=479840 globalCallsA=3732650 globalCallsB=3975785 gpsResultRouteCount=10 gpsResult=0x79b3fbb0 gpsResult_routeData=0x18eebaaf0 gpsResult_routeCapacity=10 gpsResult_routeCount=10 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125484 queryId=19 tracked=1 perQueryCall=4 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa0000000a
|
||||||
|
2026-06-27 09:35:26.297 +728297ms hook GPSQueryResultFetch 0x7094b8 call=125485 queryId=19 tracked=1 perQueryCall=5 value=1 submitCall=19 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xa
|
||||||
|
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit 0x70a42c call=20 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2920286212/0xae100804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:26.024 +729024ms hook GPSQuerySubmit result call=20 queryId=20 manager_nextIdD4=21/0x15
|
||||||
|
2026-06-27 09:35:26.054 +729054ms hook GPSQueryResultFetch 0x7094b8 call=125642 queryId=20 tracked=1 perQueryCall=3 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:26.054 +729054ms gps-momentum-summary queryId=20 resultFetchCall=4 submitCall=20 submitRetRva=0x8d20d4 callsA=7698 callsB=8002 callsTotal=15700 fixedPenalty=80 penaltyTotal=1.256e+06 globalCallsA=3740348 globalCallsB=3983787 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a5d03570 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125643 queryId=20 tracked=1 perQueryCall=4 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:35:26.055 +729055ms hook GPSQueryResultFetch 0x7094b8 call=125644 queryId=20 tracked=1 perQueryCall=5 value=1 submitCall=20 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:35:27.937 +729937ms hook GPSQuerySubmit 0x70a42c call=21 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276198404/0x87ac0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:27.938 +729938ms hook GPSQuerySubmit result call=21 queryId=21 manager_nextIdD4=22/0x16
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125824 queryId=21 tracked=1 perQueryCall=3 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:27.969 +729969ms gps-momentum-summary queryId=21 resultFetchCall=4 submitCall=21 submitRetRva=0x8d20d4 callsA=3713 callsB=3882 callsTotal=7595 fixedPenalty=80 penaltyTotal=607600 globalCallsA=3744061 globalCallsB=3987669 gpsResultRouteCount=12 gpsResult=0x795efbb0 gpsResult_routeData=0x1a6925b60 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125825 queryId=21 tracked=1 perQueryCall=4 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:27.969 +729969ms hook GPSQueryResultFetch 0x7094b8 call=125826 queryId=21 tracked=1 perQueryCall=5 value=1 submitCall=21 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit 0x70a42c call=22 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:28.969 +730969ms hook GPSQuerySubmit result call=22 queryId=22 manager_nextIdD4=23/0x17
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126042 queryId=22 tracked=1 perQueryCall=3 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:28.003 +731003ms gps-momentum-summary queryId=22 resultFetchCall=4 submitCall=22 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3746004 globalCallsB=3989703 gpsResultRouteCount=7 gpsResult=0x31db50 gpsResult_routeData=0x1ac9cc650 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126043 queryId=22 tracked=1 perQueryCall=4 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x700000007
|
||||||
|
2026-06-27 09:35:28.003 +731003ms hook GPSQueryResultFetch 0x7094b8 call=126044 queryId=22 tracked=1 perQueryCall=5 value=1 submitCall=22 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x7
|
||||||
|
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit 0x70a42c call=23 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:30.865 +732865ms hook GPSQuerySubmit result call=23 queryId=23 manager_nextIdD4=24/0x18
|
||||||
|
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126449 queryId=23 tracked=1 perQueryCall=4 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:30.908 +732908ms gps-momentum-summary queryId=23 resultFetchCall=5 submitCall=23 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=3746503 globalCallsB=3990225 gpsResultRouteCount=5 gpsResult=0x794efbb0 gpsResult_routeData=0x19681caa0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:30.908 +732908ms hook GPSQueryResultFetch 0x7094b8 call=126450 queryId=23 tracked=1 perQueryCall=5 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x500000005
|
||||||
|
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126451 queryId=23 tracked=1 perQueryCall=6 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:35:30.909 +732909ms hook GPSQueryResultFetch 0x7094b8 call=126452 queryId=23 tracked=1 perQueryCall=7 value=1 submitCall=23 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:35:33.123 +736123ms hook GPSQuerySubmit 0x70a42c call=24 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:33.124 +736124ms hook GPSQuerySubmit result call=24 queryId=24 manager_nextIdD4=25/0x19
|
||||||
|
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127149 queryId=24 tracked=1 perQueryCall=3 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:34.156 +736156ms gps-momentum-summary queryId=24 resultFetchCall=4 submitCall=24 submitRetRva=0x8d20d4 callsA=1943 callsB=2034 callsTotal=3977 fixedPenalty=80 penaltyTotal=318160 globalCallsA=3748446 globalCallsB=3992259 gpsResultRouteCount=7 gpsResult=0x795efbb0 gpsResult_routeData=0x1809282d0 gpsResult_routeCapacity=7 gpsResult_routeCount=7 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:34.156 +736156ms hook GPSQueryResultFetch 0x7094b8 call=127150 queryId=24 tracked=1 perQueryCall=4 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x700000007
|
||||||
|
2026-06-27 09:35:34.157 +736157ms hook GPSQueryResultFetch 0x7094b8 call=127151 queryId=24 tracked=1 perQueryCall=5 value=1 submitCall=24 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x7
|
||||||
|
2026-06-27 09:35:42.127 +745127ms hook GPSQuerySubmit 0x70a42c call=25 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:42.128 +745128ms hook GPSQuerySubmit result call=25 queryId=25 manager_nextIdD4=26/0x1a
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129108 queryId=25 tracked=1 perQueryCall=4 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:43.167 +745167ms gps-momentum-summary queryId=25 resultFetchCall=5 submitCall=25 submitRetRva=0x8d20d4 callsA=10197 callsB=10643 callsTotal=20840 fixedPenalty=80 penaltyTotal=1.6672e+06 globalCallsA=3758643 globalCallsB=4002902 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5bd3033e0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129109 queryId=25 tracked=1 perQueryCall=5 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:35:43.167 +745167ms hook GPSQueryResultFetch 0x7094b8 call=129110 queryId=25 tracked=1 perQueryCall=6 value=1 submitCall=25 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit 0x70a42c call=26 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2276067332/0x87aa0804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:43.570 +745570ms hook GPSQuerySubmit result call=26 queryId=26 manager_nextIdD4=27/0x1b
|
||||||
|
2026-06-27 09:35:43.609 +745609ms hook GPSQueryResultFetch 0x7094b8 call=129205 queryId=26 tracked=1 perQueryCall=4 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:43.610 +745610ms gps-momentum-summary queryId=26 resultFetchCall=5 submitCall=26 submitRetRva=0x8d20d4 callsA=9943 callsB=10437 callsTotal=20380 fixedPenalty=80 penaltyTotal=1.6304e+06 globalCallsA=3768586 globalCallsB=4013339 gpsResultRouteCount=20 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bdf2c270 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129206 queryId=26 tracked=1 perQueryCall=5 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:35:43.610 +745610ms hook GPSQueryResultFetch 0x7094b8 call=129207 queryId=26 tracked=1 perQueryCall=6 value=1 submitCall=26 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:35:44.021 +747021ms hook GPSQuerySubmit 0x70a42c call=27 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:44.022 +747022ms hook GPSQuerySubmit result call=27 queryId=27 manager_nextIdD4=28/0x1c
|
||||||
|
2026-06-27 09:35:44.113 +747113ms hook GPSQueryResultFetch 0x7094b8 call=129515 queryId=27 tracked=1 perQueryCall=8 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:44.114 +747114ms gps-momentum-summary queryId=27 resultFetchCall=9 submitCall=27 submitRetRva=0x8d20d4 callsA=44200 callsB=46781 callsTotal=90981 fixedPenalty=80 penaltyTotal=7.27848e+06 globalCallsA=3812786 globalCallsB=4060120 gpsResultRouteCount=31 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a985f330 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129516 queryId=27 tracked=1 perQueryCall=9 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:35:44.114 +747114ms hook GPSQueryResultFetch 0x7094b8 call=129517 queryId=27 tracked=1 perQueryCall=10 value=1 submitCall=27 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:35:45.656 +747656ms hook GPSQuerySubmit 0x70a42c call=28 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:45.657 +747657ms hook GPSQuerySubmit result call=28 queryId=28 manager_nextIdD4=29/0x1d
|
||||||
|
2026-06-27 09:35:45.772 +747772ms hook GPSQueryResultFetch 0x7094b8 call=129649 queryId=28 tracked=1 perQueryCall=10 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:45.773 +747773ms gps-momentum-summary queryId=28 resultFetchCall=11 submitCall=28 submitRetRva=0x8d20d4 callsA=50704 callsB=53499 callsTotal=104203 fixedPenalty=80 penaltyTotal=8.33624e+06 globalCallsA=3863490 globalCallsB=4113619 gpsResultRouteCount=33 gpsResult=0x79b3fbb0 gpsResult_routeData=0x59e138ee0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129650 queryId=28 tracked=1 perQueryCall=11 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:35:45.773 +747773ms hook GPSQueryResultFetch 0x7094b8 call=129651 queryId=28 tracked=1 perQueryCall=12 value=1 submitCall=28 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit 0x70a42c call=29 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.159 +748159ms hook GPSQuerySubmit result call=29 queryId=29 manager_nextIdD4=30/0x1e
|
||||||
|
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129738 queryId=29 tracked=1 perQueryCall=6 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:46.226 +748226ms gps-momentum-summary queryId=29 resultFetchCall=7 submitCall=29 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=3886344 globalCallsB=4137637 gpsResultRouteCount=27 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd51c020 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:46.226 +748226ms hook GPSQueryResultFetch 0x7094b8 call=129739 queryId=29 tracked=1 perQueryCall=7 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b0000001b
|
||||||
|
2026-06-27 09:35:46.227 +748227ms hook GPSQueryResultFetch 0x7094b8 call=129740 queryId=29 tracked=1 perQueryCall=8 value=1 submitCall=29 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1b
|
||||||
|
2026-06-27 09:35:46.662 +748662ms hook GPSQuerySubmit 0x70a42c call=30 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.663 +748663ms hook GPSQuerySubmit result call=30 queryId=30 manager_nextIdD4=31/0x1f
|
||||||
|
2026-06-27 09:35:46.718 +748718ms hook GPSQueryResultFetch 0x7094b8 call=129831 queryId=30 tracked=1 perQueryCall=5 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:46.719 +748719ms gps-momentum-summary queryId=30 resultFetchCall=6 submitCall=30 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3905083 globalCallsB=4157274 gpsResultRouteCount=23 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bd77a1d0 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129832 queryId=30 tracked=1 perQueryCall=6 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:35:46.719 +748719ms hook GPSQueryResultFetch 0x7094b8 call=129833 queryId=30 tracked=1 perQueryCall=7 value=1 submitCall=30 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit 0x70a42c call=31 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:46.145 +749145ms hook GPSQuerySubmit result call=31 queryId=31 manager_nextIdD4=32/0x20
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129930 queryId=31 tracked=1 perQueryCall=5 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:47.205 +749205ms gps-momentum-summary queryId=31 resultFetchCall=6 submitCall=31 submitRetRva=0x8d20d4 callsA=17164 callsB=17971 callsTotal=35135 fixedPenalty=80 penaltyTotal=2.8108e+06 globalCallsA=3922247 globalCallsB=4175245 gpsResultRouteCount=24 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ca92f0c0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129931 queryId=31 tracked=1 perQueryCall=6 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1800000018
|
||||||
|
2026-06-27 09:35:47.205 +749205ms hook GPSQueryResultFetch 0x7094b8 call=129932 queryId=31 tracked=1 perQueryCall=7 value=1 submitCall=31 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x18
|
||||||
|
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit 0x70a42c call=32 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:47.961 +749961ms hook GPSQuerySubmit result call=32 queryId=32 manager_nextIdD4=33/0x21
|
||||||
|
2026-06-27 09:35:47.016 +750016ms hook GPSQueryResultFetch 0x7094b8 call=130101 queryId=32 tracked=1 perQueryCall=5 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:47.016 +750016ms gps-momentum-summary queryId=32 resultFetchCall=6 submitCall=32 submitRetRva=0x8d20d4 callsA=18739 callsB=19637 callsTotal=38376 fixedPenalty=80 penaltyTotal=3.07008e+06 globalCallsA=3940986 globalCallsB=4194882 gpsResultRouteCount=23 gpsResult=0x79d3fbb0 gpsResult_routeData=0x596a4d890 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130102 queryId=32 tracked=1 perQueryCall=6 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:35:47.017 +750017ms hook GPSQueryResultFetch 0x7094b8 call=130103 queryId=32 tracked=1 perQueryCall=7 value=1 submitCall=32 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:35:57.400 +759400ms hook GPSQuerySubmit 0x70a42c call=33 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:57.401 +759401ms hook GPSQuerySubmit result call=33 queryId=33 manager_nextIdD4=34/0x22
|
||||||
|
2026-06-27 09:35:57.442 +759442ms hook GPSQueryResultFetch 0x7094b8 call=132081 queryId=33 tracked=1 perQueryCall=4 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:57.442 +759442ms gps-momentum-summary queryId=33 resultFetchCall=5 submitCall=33 submitRetRva=0x8d20d4 callsA=12724 callsB=13423 callsTotal=26147 fixedPenalty=80 penaltyTotal=2.09176e+06 globalCallsA=3953710 globalCallsB=4208305 gpsResultRouteCount=12 gpsResult=0x7983fbb0 gpsResult_routeData=0x193232ce0 gpsResult_routeCapacity=12 gpsResult_routeCount=12 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132082 queryId=33 tracked=1 perQueryCall=5 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc0000000c
|
||||||
|
2026-06-27 09:35:57.443 +759443ms hook GPSQueryResultFetch 0x7094b8 call=132083 queryId=33 tracked=1 perQueryCall=6 value=1 submitCall=33 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xc
|
||||||
|
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit 0x70a42c call=34 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:57.860 +759860ms hook GPSQuerySubmit result call=34 queryId=34 manager_nextIdD4=35/0x23
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132178 queryId=34 tracked=1 perQueryCall=6 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:57.925 +759925ms gps-momentum-summary queryId=34 resultFetchCall=7 submitCall=34 submitRetRva=0x8d20d4 callsA=24072 callsB=25316 callsTotal=49388 fixedPenalty=80 penaltyTotal=3.95104e+06 globalCallsA=3977782 globalCallsB=4233621 gpsResultRouteCount=19 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5be008000 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132179 queryId=34 tracked=1 perQueryCall=7 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:35:57.925 +759925ms hook GPSQueryResultFetch 0x7094b8 call=132180 queryId=34 tracked=1 perQueryCall=8 value=1 submitCall=34 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit 0x70a42c call=35 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2226456580/0x84b50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:35:58.091 +761091ms hook GPSQuerySubmit result call=35 queryId=35 manager_nextIdD4=36/0x24
|
||||||
|
2026-06-27 09:35:59.155 +761155ms hook GPSQueryResultFetch 0x7094b8 call=132428 queryId=35 tracked=1 perQueryCall=6 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:35:59.156 +761156ms gps-momentum-summary queryId=35 resultFetchCall=7 submitCall=35 submitRetRva=0x8d20d4 callsA=22854 callsB=24018 callsTotal=46872 fixedPenalty=80 penaltyTotal=3.74976e+06 globalCallsA=4000636 globalCallsB=4257639 gpsResultRouteCount=27 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5ca177560 gpsResult_routeCapacity=27 gpsResult_routeCount=27 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132429 queryId=35 tracked=1 perQueryCall=7 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b0000001b
|
||||||
|
2026-06-27 09:35:59.156 +761156ms hook GPSQueryResultFetch 0x7094b8 call=132430 queryId=35 tracked=1 perQueryCall=8 value=1 submitCall=35 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1b
|
||||||
|
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:00.586 +762586ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 09:36:00.664 +762664ms hook GPSQueryResultFetch 0x7094b8 call=132742 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:00.665 +762665ms gps-momentum-summary queryId=36 resultFetchCall=8 submitCall=36 submitRetRva=0x8d20d4 callsA=28252 callsB=29593 callsTotal=57845 fixedPenalty=80 penaltyTotal=4.6276e+06 globalCallsA=4028888 globalCallsB=4287232 gpsResultRouteCount=28 gpsResult=0x7993fbb0 gpsResult_routeData=0x59aad5c20 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132743 queryId=36 tracked=1 perQueryCall=8 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:00.665 +762665ms hook GPSQueryResultFetch 0x7094b8 call=132744 queryId=36 tracked=1 perQueryCall=9 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit 0x70a42c call=37 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2555971588/0x98590804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:02.303 +764303ms hook GPSQuerySubmit result call=37 queryId=37 manager_nextIdD4=38/0x26
|
||||||
|
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133096 queryId=37 tracked=1 perQueryCall=4 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:02.343 +764343ms gps-momentum-summary queryId=37 resultFetchCall=5 submitCall=37 submitRetRva=0x8d20d4 callsA=15129 callsB=15752 callsTotal=30881 fixedPenalty=80 penaltyTotal=2.47048e+06 globalCallsA=4044017 globalCallsB=4302984 gpsResultRouteCount=21 gpsResult=0x7983fbb0 gpsResult_routeData=0x594917790 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:02.343 +764343ms hook GPSQueryResultFetch 0x7094b8 call=133097 queryId=37 tracked=1 perQueryCall=5 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:02.344 +764344ms hook GPSQueryResultFetch 0x7094b8 call=133098 queryId=37 tracked=1 perQueryCall=6 value=1 submitCall=37 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit 0x70a42c call=38 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:03.495 +765495ms hook GPSQuerySubmit result call=38 queryId=38 manager_nextIdD4=39/0x27
|
||||||
|
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133352 queryId=38 tracked=1 perQueryCall=6 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:03.560 +765560ms gps-momentum-summary queryId=38 resultFetchCall=7 submitCall=38 submitRetRva=0x8d20d4 callsA=29965 callsB=31504 callsTotal=61469 fixedPenalty=80 penaltyTotal=4.91752e+06 globalCallsA=4073982 globalCallsB=4334488 gpsResultRouteCount=22 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5ae33c650 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:03.560 +765560ms hook GPSQueryResultFetch 0x7094b8 call=133353 queryId=38 tracked=1 perQueryCall=7 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1600000016
|
||||||
|
2026-06-27 09:36:03.561 +765561ms hook GPSQueryResultFetch 0x7094b8 call=133354 queryId=38 tracked=1 perQueryCall=8 value=1 submitCall=38 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x16
|
||||||
|
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit 0x70a42c call=39 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:04.277 +766277ms hook GPSQuerySubmit result call=39 queryId=39 manager_nextIdD4=40/0x28
|
||||||
|
2026-06-27 09:36:04.366 +766366ms hook GPSQueryResultFetch 0x7094b8 call=133521 queryId=39 tracked=1 perQueryCall=8 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:04.366 +766366ms gps-momentum-summary queryId=39 resultFetchCall=9 submitCall=39 submitRetRva=0x8d20d4 callsA=31930 callsB=33528 callsTotal=65458 fixedPenalty=80 penaltyTotal=5.23664e+06 globalCallsA=4105912 globalCallsB=4368016 gpsResultRouteCount=24 gpsResult=0x795efbb0 gpsResult_routeData=0x595e1bbe0 gpsResult_routeCapacity=24 gpsResult_routeCount=24 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133522 queryId=39 tracked=1 perQueryCall=9 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1800000018
|
||||||
|
2026-06-27 09:36:04.367 +766367ms hook GPSQueryResultFetch 0x7094b8 call=133523 queryId=39 tracked=1 perQueryCall=10 value=1 submitCall=39 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x18
|
||||||
|
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit 0x70a42c call=40 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:04.810 +766810ms hook GPSQuerySubmit result call=40 queryId=40 manager_nextIdD4=41/0x29
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133625 queryId=40 tracked=1 perQueryCall=6 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:04.874 +766874ms gps-momentum-summary queryId=40 resultFetchCall=7 submitCall=40 submitRetRva=0x8d20d4 callsA=23316 callsB=24499 callsTotal=47815 fixedPenalty=80 penaltyTotal=3.8252e+06 globalCallsA=4129228 globalCallsB=4392515 gpsResultRouteCount=25 gpsResult=0x795efbb0 gpsResult_routeData=0x5c634ddd0 gpsResult_routeCapacity=25 gpsResult_routeCount=25 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133626 queryId=40 tracked=1 perQueryCall=7 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1900000019
|
||||||
|
2026-06-27 09:36:04.874 +766874ms hook GPSQueryResultFetch 0x7094b8 call=133627 queryId=40 tracked=1 perQueryCall=8 value=1 submitCall=40 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x19
|
||||||
|
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit 0x70a42c call=41 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:05.432 +767432ms hook GPSQuerySubmit result call=41 queryId=41 manager_nextIdD4=42/0x2a
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133754 queryId=41 tracked=1 perQueryCall=7 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:05.514 +767514ms gps-momentum-summary queryId=41 resultFetchCall=8 submitCall=41 submitRetRva=0x8d20d4 callsA=28141 callsB=29493 callsTotal=57634 fixedPenalty=80 penaltyTotal=4.61072e+06 globalCallsA=4157369 globalCallsB=4422008 gpsResultRouteCount=29 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c557e970 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133755 queryId=41 tracked=1 perQueryCall=8 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:05.514 +767514ms hook GPSQueryResultFetch 0x7094b8 call=133756 queryId=41 tracked=1 perQueryCall=9 value=1 submitCall=41 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:36:05.074 +768074ms hook GPSQuerySubmit 0x70a42c call=42 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:05.075 +768075ms hook GPSQuerySubmit result call=42 queryId=42 manager_nextIdD4=43/0x2b
|
||||||
|
2026-06-27 09:36:05.104 +768104ms hook GPSQueryResultFetch 0x7094b8 call=133871 queryId=42 tracked=1 perQueryCall=3 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:05.105 +768105ms gps-momentum-summary queryId=42 resultFetchCall=4 submitCall=42 submitRetRva=0x8d20d4 callsA=8784 callsB=9145 callsTotal=17929 fixedPenalty=80 penaltyTotal=1.43432e+06 globalCallsA=4166153 globalCallsB=4431153 gpsResultRouteCount=17 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa16a190 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133872 queryId=42 tracked=1 perQueryCall=4 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:05.105 +768105ms hook GPSQueryResultFetch 0x7094b8 call=133873 queryId=42 tracked=1 perQueryCall=5 value=1 submitCall=42 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit 0x70a42c call=43 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:06.741 +768741ms hook GPSQuerySubmit result call=43 queryId=43 manager_nextIdD4=44/0x2c
|
||||||
|
2026-06-27 09:36:06.775 +768775ms hook GPSQueryResultFetch 0x7094b8 call=134008 queryId=43 tracked=1 perQueryCall=3 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:06.776 +768776ms gps-momentum-summary queryId=43 resultFetchCall=4 submitCall=43 submitRetRva=0x8d20d4 callsA=4614 callsB=4803 callsTotal=9417 fixedPenalty=80 penaltyTotal=753360 globalCallsA=4170767 globalCallsB=4435956 gpsResultRouteCount=13 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134009 queryId=43 tracked=1 perQueryCall=4 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:06.776 +768776ms hook GPSQueryResultFetch 0x7094b8 call=134010 queryId=43 tracked=1 perQueryCall=5 value=1 submitCall=43 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:06.117 +769117ms hook GPSQuerySubmit 0x70a42c call=44 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:06.118 +769118ms hook GPSQuerySubmit result call=44 queryId=44 manager_nextIdD4=45/0x2d
|
||||||
|
2026-06-27 09:36:07.148 +769148ms hook GPSQueryResultFetch 0x7094b8 call=134085 queryId=44 tracked=1 perQueryCall=3 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:07.149 +769149ms gps-momentum-summary queryId=44 resultFetchCall=4 submitCall=44 submitRetRva=0x8d20d4 callsA=5274 callsB=5528 callsTotal=10802 fixedPenalty=80 penaltyTotal=864160 globalCallsA=4176041 globalCallsB=4441484 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcee7f50 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134086 queryId=44 tracked=1 perQueryCall=4 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:07.149 +769149ms hook GPSQueryResultFetch 0x7094b8 call=134087 queryId=44 tracked=1 perQueryCall=5 value=1 submitCall=44 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:07.009 +770009ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134270 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:07.052 +770052ms gps-momentum-summary queryId=45 resultFetchCall=5 submitCall=45 submitRetRva=0x8d20d4 callsA=13737 callsB=14397 callsTotal=28134 fixedPenalty=80 penaltyTotal=2.25072e+06 globalCallsA=4189778 globalCallsB=4455881 gpsResultRouteCount=16 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcb66880 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134271 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1000000010
|
||||||
|
2026-06-27 09:36:07.052 +770052ms hook GPSQueryResultFetch 0x7094b8 call=134272 queryId=45 tracked=1 perQueryCall=6 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x10
|
||||||
|
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit 0x70a42c call=46 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:08.920 +770920ms hook GPSQuerySubmit result call=46 queryId=46 manager_nextIdD4=47/0x2f
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134457 queryId=46 tracked=1 perQueryCall=4 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:08.960 +770960ms gps-momentum-summary queryId=46 resultFetchCall=5 submitCall=46 submitRetRva=0x8d20d4 callsA=499 callsB=522 callsTotal=1021 fixedPenalty=80 penaltyTotal=81680 globalCallsA=4190277 globalCallsB=4456403 gpsResultRouteCount=5 gpsResult=0x79e7fbb0 gpsResult_routeData=0x192926ac0 gpsResult_routeCapacity=5 gpsResult_routeCount=5 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134458 queryId=46 tracked=1 perQueryCall=5 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x500000005
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134459 queryId=46 tracked=1 perQueryCall=6 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:36:08.960 +770960ms hook GPSQueryResultFetch 0x7094b8 call=134460 queryId=46 tracked=1 perQueryCall=7 value=1 submitCall=46 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x5
|
||||||
|
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit 0x70a42c call=47 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:09.372 +771372ms hook GPSQuerySubmit result call=47 queryId=47 manager_nextIdD4=48/0x30
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134553 queryId=47 tracked=1 perQueryCall=4 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:09.414 +771414ms gps-momentum-summary queryId=47 resultFetchCall=5 submitCall=47 submitRetRva=0x8d20d4 callsA=5894 callsB=6155 callsTotal=12049 fixedPenalty=80 penaltyTotal=963920 globalCallsA=4196171 globalCallsB=4462558 gpsResultRouteCount=14 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b191ce90 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134554 queryId=47 tracked=1 perQueryCall=5 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:36:09.414 +771414ms hook GPSQueryResultFetch 0x7094b8 call=134555 queryId=47 tracked=1 perQueryCall=6 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:09.415 +771415ms hook GPSQueryResultFetch 0x7094b8 call=134556 queryId=47 tracked=1 perQueryCall=7 value=1 submitCall=47 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit 0x70a42c call=48 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:09.741 +771741ms hook GPSQuerySubmit result call=48 queryId=48 manager_nextIdD4=49/0x31
|
||||||
|
2026-06-27 09:36:09.769 +771769ms hook GPSQueryResultFetch 0x7094b8 call=134631 queryId=48 tracked=1 perQueryCall=3 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:09.770 +771770ms gps-momentum-summary queryId=48 resultFetchCall=4 submitCall=48 submitRetRva=0x8d20d4 callsA=4751 callsB=4983 callsTotal=9734 fixedPenalty=80 penaltyTotal=778720 globalCallsA=4200922 globalCallsB=4467541 gpsResultRouteCount=13 gpsResult=0x7993fbb0 gpsResult_routeData=0x5c2ee3ce0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134632 queryId=48 tracked=1 perQueryCall=4 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:09.770 +771770ms hook GPSQueryResultFetch 0x7094b8 call=134633 queryId=48 tracked=1 perQueryCall=5 value=1 submitCall=48 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit 0x70a42c call=49 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:10.592 +772592ms hook GPSQuerySubmit result call=49 queryId=49 manager_nextIdD4=50/0x32
|
||||||
|
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134806 queryId=49 tracked=1 perQueryCall=3 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:10.624 +772624ms gps-momentum-summary queryId=49 resultFetchCall=4 submitCall=49 submitRetRva=0x8d20d4 callsA=6693 callsB=6937 callsTotal=13630 fixedPenalty=80 penaltyTotal=1.0904e+06 globalCallsA=4207615 globalCallsB=4474478 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:10.624 +772624ms hook GPSQueryResultFetch 0x7094b8 call=134807 queryId=49 tracked=1 perQueryCall=4 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:10.625 +772625ms hook GPSQueryResultFetch 0x7094b8 call=134808 queryId=49 tracked=1 perQueryCall=5 value=1 submitCall=49 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit 0x70a42c call=50 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:11.957 +773957ms hook GPSQuerySubmit result call=50 queryId=50 manager_nextIdD4=51/0x33
|
||||||
|
2026-06-27 09:36:11.989 +773989ms hook GPSQueryResultFetch 0x7094b8 call=135093 queryId=50 tracked=1 perQueryCall=3 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:11.990 +773990ms gps-momentum-summary queryId=50 resultFetchCall=4 submitCall=50 submitRetRva=0x8d20d4 callsA=7996 callsB=8328 callsTotal=16324 fixedPenalty=80 penaltyTotal=1.30592e+06 globalCallsA=4215611 globalCallsB=4482806 gpsResultRouteCount=15 gpsResult=0x793efbb0 gpsResult_routeData=0x595d8d1c0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135094 queryId=50 tracked=1 perQueryCall=4 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:11.990 +773990ms hook GPSQueryResultFetch 0x7094b8 call=135095 queryId=50 tracked=1 perQueryCall=5 value=1 submitCall=50 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1059260420/0x3f230804 query_f0c=1050273191/0x3e99e5a7 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:12.382 +774382ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135185 queryId=51 tracked=1 perQueryCall=4 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:12.422 +774422ms gps-momentum-summary queryId=51 resultFetchCall=5 submitCall=51 submitRetRva=0x8d20d4 callsA=8063 callsB=8392 callsTotal=16455 fixedPenalty=80 penaltyTotal=1.3164e+06 globalCallsA=4223674 globalCallsB=4491198 gpsResultRouteCount=15 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3edcc90 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135186 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:12.422 +774422ms hook GPSQueryResultFetch 0x7094b8 call=135187 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit 0x70a42c call=52 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.152 +775152ms hook GPSQuerySubmit result call=52 queryId=52 manager_nextIdD4=53/0x35
|
||||||
|
2026-06-27 09:36:13.193 +775193ms hook GPSQueryResultFetch 0x7094b8 call=135347 queryId=52 tracked=1 perQueryCall=4 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.194 +775194ms gps-momentum-summary queryId=52 resultFetchCall=5 submitCall=52 submitRetRva=0x8d20d4 callsA=13309 callsB=13875 callsTotal=27184 fixedPenalty=80 penaltyTotal=2.17472e+06 globalCallsA=4236983 globalCallsB=4505073 gpsResultRouteCount=21 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c2b0cf50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135348 queryId=52 tracked=1 perQueryCall=5 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:13.194 +775194ms hook GPSQueryResultFetch 0x7094b8 call=135349 queryId=52 tracked=1 perQueryCall=6 value=1 submitCall=52 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit 0x70a42c call=53 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.427 +775427ms hook GPSQuerySubmit result call=53 queryId=53 manager_nextIdD4=54/0x36
|
||||||
|
2026-06-27 09:36:13.456 +775456ms hook GPSQueryResultFetch 0x7094b8 call=135402 queryId=53 tracked=1 perQueryCall=3 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.457 +775457ms gps-momentum-summary queryId=53 resultFetchCall=4 submitCall=53 submitRetRva=0x8d20d4 callsA=9412 callsB=9760 callsTotal=19172 fixedPenalty=80 penaltyTotal=1.53376e+06 globalCallsA=4246395 globalCallsB=4514833 gpsResultRouteCount=18 gpsResult=0x796efbb0 gpsResult_routeData=0x5b7ed2350 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135403 queryId=53 tracked=1 perQueryCall=4 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:13.457 +775457ms hook GPSQueryResultFetch 0x7094b8 call=135404 queryId=53 tracked=1 perQueryCall=5 value=1 submitCall=53 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit 0x70a42c call=54 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:13.932 +775932ms hook GPSQuerySubmit result call=54 queryId=54 manager_nextIdD4=55/0x37
|
||||||
|
2026-06-27 09:36:13.971 +775971ms hook GPSQueryResultFetch 0x7094b8 call=135513 queryId=54 tracked=1 perQueryCall=4 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:13.972 +775972ms gps-momentum-summary queryId=54 resultFetchCall=5 submitCall=54 submitRetRva=0x8d20d4 callsA=10685 callsB=11156 callsTotal=21841 fixedPenalty=80 penaltyTotal=1.74728e+06 globalCallsA=4257080 globalCallsB=4525989 gpsResultRouteCount=18 gpsResult=0x794efbb0 gpsResult_routeData=0x5a3e3bdc0 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135514 queryId=54 tracked=1 perQueryCall=5 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:13.972 +775972ms hook GPSQueryResultFetch 0x7094b8 call=135515 queryId=54 tracked=1 perQueryCall=6 value=1 submitCall=54 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit 0x70a42c call=55 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:14.498 +776498ms hook GPSQuerySubmit result call=55 queryId=55 manager_nextIdD4=56/0x38
|
||||||
|
2026-06-27 09:36:14.538 +776538ms hook GPSQueryResultFetch 0x7094b8 call=135630 queryId=55 tracked=1 perQueryCall=4 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:14.538 +776538ms gps-momentum-summary queryId=55 resultFetchCall=5 submitCall=55 submitRetRva=0x8d20d4 callsA=11831 callsB=12293 callsTotal=24124 fixedPenalty=80 penaltyTotal=1.92992e+06 globalCallsA=4268911 globalCallsB=4538282 gpsResultRouteCount=20 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5974151f0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135631 queryId=55 tracked=1 perQueryCall=5 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:36:14.539 +776539ms hook GPSQueryResultFetch 0x7094b8 call=135632 queryId=55 tracked=1 perQueryCall=6 value=1 submitCall=55 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit 0x70a42c call=56 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:14.829 +776829ms hook GPSQuerySubmit result call=56 queryId=56 manager_nextIdD4=57/0x39
|
||||||
|
2026-06-27 09:36:14.869 +776869ms hook GPSQueryResultFetch 0x7094b8 call=135703 queryId=56 tracked=1 perQueryCall=4 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:14.870 +776870ms gps-momentum-summary queryId=56 resultFetchCall=5 submitCall=56 submitRetRva=0x8d20d4 callsA=13900 callsB=14543 callsTotal=28443 fixedPenalty=80 penaltyTotal=2.27544e+06 globalCallsA=4282811 globalCallsB=4552825 gpsResultRouteCount=22 gpsResult=0x31db50 gpsResult_routeData=0x597dc10d0 gpsResult_routeCapacity=22 gpsResult_routeCount=22 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135704 queryId=56 tracked=1 perQueryCall=5 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1600000016
|
||||||
|
2026-06-27 09:36:14.870 +776870ms hook GPSQueryResultFetch 0x7094b8 call=135705 queryId=56 tracked=1 perQueryCall=6 value=1 submitCall=56 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x16
|
||||||
|
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit 0x70a42c call=57 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:15.408 +777408ms hook GPSQuerySubmit result call=57 queryId=57 manager_nextIdD4=58/0x3a
|
||||||
|
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135824 queryId=57 tracked=1 perQueryCall=4 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:15.454 +777454ms gps-momentum-summary queryId=57 resultFetchCall=5 submitCall=57 submitRetRva=0x8d20d4 callsA=13497 callsB=14017 callsTotal=27514 fixedPenalty=80 penaltyTotal=2.20112e+06 globalCallsA=4296308 globalCallsB=4566842 gpsResultRouteCount=17 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a871b490 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:15.454 +777454ms hook GPSQueryResultFetch 0x7094b8 call=135825 queryId=57 tracked=1 perQueryCall=5 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:15.455 +777455ms hook GPSQueryResultFetch 0x7094b8 call=135826 queryId=57 tracked=1 perQueryCall=6 value=1 submitCall=57 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:16.639 +778639ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:16.640 +778640ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136089 queryId=58 tracked=1 perQueryCall=4 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:16.678 +778678ms gps-momentum-summary queryId=58 resultFetchCall=5 submitCall=58 submitRetRva=0x8d20d4 callsA=17440 callsB=18251 callsTotal=35691 fixedPenalty=80 penaltyTotal=2.85528e+06 globalCallsA=4313748 globalCallsB=4585093 gpsResultRouteCount=26 gpsResult=0x31db50 gpsResult_routeData=0x594b46d20 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136090 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:16.678 +778678ms hook GPSQueryResultFetch 0x7094b8 call=136091 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit 0x70a42c call=59 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:17.182 +779182ms hook GPSQuerySubmit result call=59 queryId=59 manager_nextIdD4=60/0x3c
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136214 queryId=59 tracked=1 perQueryCall=5 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:17.233 +779233ms gps-momentum-summary queryId=59 resultFetchCall=6 submitCall=59 submitRetRva=0x8d20d4 callsA=22976 callsB=24139 callsTotal=47115 fixedPenalty=80 penaltyTotal=3.7692e+06 globalCallsA=4336724 globalCallsB=4609232 gpsResultRouteCount=31 gpsResult=0x31db50 gpsResult_routeData=0x5b18a4340 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136215 queryId=59 tracked=1 perQueryCall=6 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:17.233 +779233ms hook GPSQueryResultFetch 0x7094b8 call=136216 queryId=59 tracked=1 perQueryCall=7 value=1 submitCall=59 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit 0x70a42c call=60 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:17.714 +779714ms hook GPSQuerySubmit result call=60 queryId=60 manager_nextIdD4=61/0x3d
|
||||||
|
2026-06-27 09:36:17.764 +779764ms hook GPSQueryResultFetch 0x7094b8 call=136333 queryId=60 tracked=1 perQueryCall=5 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:17.765 +779765ms gps-momentum-summary queryId=60 resultFetchCall=6 submitCall=60 submitRetRva=0x8d20d4 callsA=24008 callsB=25228 callsTotal=49236 fixedPenalty=80 penaltyTotal=3.93888e+06 globalCallsA=4360732 globalCallsB=4634460 gpsResultRouteCount=31 gpsResult=0x795efbb0 gpsResult_routeData=0x5cccdc980 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136334 queryId=60 tracked=1 perQueryCall=6 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:17.765 +779765ms hook GPSQueryResultFetch 0x7094b8 call=136335 queryId=60 tracked=1 perQueryCall=7 value=1 submitCall=60 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit 0x70a42c call=61 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.153 +780153ms hook GPSQuerySubmit result call=61 queryId=61 manager_nextIdD4=62/0x3e
|
||||||
|
2026-06-27 09:36:18.215 +780215ms hook GPSQueryResultFetch 0x7094b8 call=136434 queryId=61 tracked=1 perQueryCall=6 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:18.215 +780215ms gps-momentum-summary queryId=61 resultFetchCall=7 submitCall=61 submitRetRva=0x8d20d4 callsA=25501 callsB=26881 callsTotal=52382 fixedPenalty=80 penaltyTotal=4.19056e+06 globalCallsA=4386233 globalCallsB=4661341 gpsResultRouteCount=33 gpsResult=0x796efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136435 queryId=61 tracked=1 perQueryCall=7 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:18.216 +780216ms hook GPSQueryResultFetch 0x7094b8 call=136436 queryId=61 tracked=1 perQueryCall=8 value=1 submitCall=61 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit 0x70a42c call=62 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.664 +780664ms hook GPSQuerySubmit result call=62 queryId=62 manager_nextIdD4=63/0x3f
|
||||||
|
2026-06-27 09:36:18.737 +780737ms hook GPSQueryResultFetch 0x7094b8 call=136549 queryId=62 tracked=1 perQueryCall=7 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:18.738 +780738ms gps-momentum-summary queryId=62 resultFetchCall=8 submitCall=62 submitRetRva=0x8d20d4 callsA=26661 callsB=28128 callsTotal=54789 fixedPenalty=80 penaltyTotal=4.38312e+06 globalCallsA=4412894 globalCallsB=4689469 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5a35a7400 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136550 queryId=62 tracked=1 perQueryCall=8 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:18.738 +780738ms hook GPSQueryResultFetch 0x7094b8 call=136551 queryId=62 tracked=1 perQueryCall=9 value=1 submitCall=62 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit 0x70a42c call=63 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:18.106 +781106ms hook GPSQuerySubmit result call=63 queryId=63 manager_nextIdD4=64/0x40
|
||||||
|
2026-06-27 09:36:19.168 +781168ms hook GPSQueryResultFetch 0x7094b8 call=136642 queryId=63 tracked=1 perQueryCall=6 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:19.169 +781169ms gps-momentum-summary queryId=63 resultFetchCall=7 submitCall=63 submitRetRva=0x8d20d4 callsA=30138 callsB=31587 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4443032 globalCallsB=4721056 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5ab288920 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136643 queryId=63 tracked=1 perQueryCall=7 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:19.169 +781169ms hook GPSQueryResultFetch 0x7094b8 call=136644 queryId=63 tracked=1 perQueryCall=8 value=1 submitCall=63 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit 0x70a42c call=64 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:19.604 +781604ms hook GPSQuerySubmit result call=64 queryId=64 manager_nextIdD4=65/0x41
|
||||||
|
2026-06-27 09:36:19.665 +781665ms hook GPSQueryResultFetch 0x7094b8 call=136753 queryId=64 tracked=1 perQueryCall=6 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:19.665 +781665ms gps-momentum-summary queryId=64 resultFetchCall=7 submitCall=64 submitRetRva=0x8d20d4 callsA=30088 callsB=31637 callsTotal=61725 fixedPenalty=80 penaltyTotal=4.938e+06 globalCallsA=4473120 globalCallsB=4752693 gpsResultRouteCount=35 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a90c1400 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136754 queryId=64 tracked=1 perQueryCall=7 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:19.666 +781666ms hook GPSQueryResultFetch 0x7094b8 call=136755 queryId=64 tracked=1 perQueryCall=8 value=1 submitCall=64 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit 0x70a42c call=65 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:20.426 +782426ms hook GPSQuerySubmit result call=65 queryId=65 manager_nextIdD4=66/0x42
|
||||||
|
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136934 queryId=65 tracked=1 perQueryCall=6 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:20.484 +782484ms gps-momentum-summary queryId=65 resultFetchCall=7 submitCall=65 submitRetRva=0x8d20d4 callsA=26129 callsB=27536 callsTotal=53665 fixedPenalty=80 penaltyTotal=4.2932e+06 globalCallsA=4499249 globalCallsB=4780229 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:20.484 +782484ms hook GPSQueryResultFetch 0x7094b8 call=136935 queryId=65 tracked=1 perQueryCall=7 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:20.485 +782485ms hook GPSQueryResultFetch 0x7094b8 call=136936 queryId=65 tracked=1 perQueryCall=8 value=1 submitCall=65 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit 0x70a42c call=66 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:20.030 +783030ms hook GPSQuerySubmit result call=66 queryId=66 manager_nextIdD4=67/0x43
|
||||||
|
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137071 queryId=66 tracked=1 perQueryCall=6 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:20.091 +783091ms gps-momentum-summary queryId=66 resultFetchCall=7 submitCall=66 submitRetRva=0x8d20d4 callsA=25647 callsB=27040 callsTotal=52687 fixedPenalty=80 penaltyTotal=4.21496e+06 globalCallsA=4524896 globalCallsB=4807269 gpsResultRouteCount=28 gpsResult=0x7983fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:20.091 +783091ms hook GPSQueryResultFetch 0x7094b8 call=137072 queryId=66 tracked=1 perQueryCall=7 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:20.092 +783092ms hook GPSQueryResultFetch 0x7094b8 call=137073 queryId=66 tracked=1 perQueryCall=8 value=1 submitCall=66 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit 0x70a42c call=67 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:21.587 +783587ms hook GPSQuerySubmit result call=67 queryId=67 manager_nextIdD4=68/0x44
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137194 queryId=67 tracked=1 perQueryCall=6 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:21.648 +783648ms gps-momentum-summary queryId=67 resultFetchCall=7 submitCall=67 submitRetRva=0x8d20d4 callsA=31448 callsB=32942 callsTotal=64390 fixedPenalty=80 penaltyTotal=5.1512e+06 globalCallsA=4556344 globalCallsB=4840211 gpsResultRouteCount=29 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bddf5e00 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137195 queryId=67 tracked=1 perQueryCall=7 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:21.648 +783648ms hook GPSQueryResultFetch 0x7094b8 call=137196 queryId=67 tracked=1 perQueryCall=8 value=1 submitCall=67 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit 0x70a42c call=68 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:21.049 +784049ms hook GPSQuerySubmit result call=68 queryId=68 manager_nextIdD4=69/0x45
|
||||||
|
2026-06-27 09:36:21.079 +784079ms hook GPSQueryResultFetch 0x7094b8 call=137291 queryId=68 tracked=1 perQueryCall=3 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:21.079 +784079ms gps-momentum-summary queryId=68 resultFetchCall=4 submitCall=68 submitRetRva=0x8d20d4 callsA=6959 callsB=7250 callsTotal=14209 fixedPenalty=80 penaltyTotal=1.13672e+06 globalCallsA=4563303 globalCallsB=4847461 gpsResultRouteCount=15 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a0edc0f0 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137292 queryId=68 tracked=1 perQueryCall=4 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:21.080 +784080ms hook GPSQueryResultFetch 0x7094b8 call=137293 queryId=68 tracked=1 perQueryCall=5 value=1 submitCall=68 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:22.450 +784450ms hook GPSQuerySubmit 0x70a42c call=69 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:22.451 +784451ms hook GPSQuerySubmit result call=69 queryId=69 manager_nextIdD4=70/0x46
|
||||||
|
2026-06-27 09:36:22.479 +784479ms hook GPSQueryResultFetch 0x7094b8 call=137382 queryId=69 tracked=1 perQueryCall=3 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:22.479 +784479ms gps-momentum-summary queryId=69 resultFetchCall=4 submitCall=69 submitRetRva=0x8d20d4 callsA=7268 callsB=7580 callsTotal=14848 fixedPenalty=80 penaltyTotal=1.18784e+06 globalCallsA=4570571 globalCallsB=4855041 gpsResultRouteCount=15 gpsResult=0x31db50 gpsResult_routeData=0x5aa16c540 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137383 queryId=69 tracked=1 perQueryCall=4 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:22.480 +784480ms hook GPSQueryResultFetch 0x7094b8 call=137384 queryId=69 tracked=1 perQueryCall=5 value=1 submitCall=69 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit 0x70a42c call=70 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:22.864 +784864ms hook GPSQuerySubmit result call=70 queryId=70 manager_nextIdD4=71/0x47
|
||||||
|
2026-06-27 09:36:22.894 +784894ms hook GPSQueryResultFetch 0x7094b8 call=137477 queryId=70 tracked=1 perQueryCall=3 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:22.895 +784895ms gps-momentum-summary queryId=70 resultFetchCall=4 submitCall=70 submitRetRva=0x8d20d4 callsA=9187 callsB=9551 callsTotal=18738 fixedPenalty=80 penaltyTotal=1.49904e+06 globalCallsA=4579758 globalCallsB=4864592 gpsResultRouteCount=16 gpsResult=0x793efbb0 gpsResult_routeData=0x5968fc3b0 gpsResult_routeCapacity=16 gpsResult_routeCount=16 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137478 queryId=70 tracked=1 perQueryCall=4 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1000000010
|
||||||
|
2026-06-27 09:36:22.895 +784895ms hook GPSQueryResultFetch 0x7094b8 call=137479 queryId=70 tracked=1 perQueryCall=5 value=1 submitCall=70 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x10
|
||||||
|
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit 0x70a42c call=71 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.156 +785156ms hook GPSQuerySubmit result call=71 queryId=71 manager_nextIdD4=72/0x48
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137546 queryId=71 tracked=1 perQueryCall=4 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.194 +785194ms gps-momentum-summary queryId=71 resultFetchCall=5 submitCall=71 submitRetRva=0x8d20d4 callsA=15072 callsB=15677 callsTotal=30749 fixedPenalty=80 penaltyTotal=2.45992e+06 globalCallsA=4594830 globalCallsB=4880269 gpsResultRouteCount=17 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c3ccfb30 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137547 queryId=71 tracked=1 perQueryCall=5 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:23.194 +785194ms hook GPSQueryResultFetch 0x7094b8 call=137548 queryId=71 tracked=1 perQueryCall=6 value=1 submitCall=71 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit 0x70a42c call=72 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.489 +785489ms hook GPSQuerySubmit result call=72 queryId=72 manager_nextIdD4=73/0x49
|
||||||
|
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137623 queryId=72 tracked=1 perQueryCall=4 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.528 +785528ms gps-momentum-summary queryId=72 resultFetchCall=5 submitCall=72 submitRetRva=0x8d20d4 callsA=14828 callsB=15534 callsTotal=30362 fixedPenalty=80 penaltyTotal=2.42896e+06 globalCallsA=4609658 globalCallsB=4895803 gpsResultRouteCount=23 gpsResult=0x793efbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=23 gpsResult_routeCount=23 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.528 +785528ms hook GPSQueryResultFetch 0x7094b8 call=137624 queryId=72 tracked=1 perQueryCall=5 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1700000017
|
||||||
|
2026-06-27 09:36:23.529 +785529ms hook GPSQueryResultFetch 0x7094b8 call=137625 queryId=72 tracked=1 perQueryCall=6 value=1 submitCall=72 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x17
|
||||||
|
2026-06-27 09:36:23.046 +786046ms hook GPSQuerySubmit 0x70a42c call=73 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:23.047 +786047ms hook GPSQuerySubmit result call=73 queryId=73 manager_nextIdD4=74/0x4a
|
||||||
|
2026-06-27 09:36:23.108 +786108ms hook GPSQueryResultFetch 0x7094b8 call=137752 queryId=73 tracked=1 perQueryCall=6 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:23.108 +786108ms gps-momentum-summary queryId=73 resultFetchCall=7 submitCall=73 submitRetRva=0x8d20d4 callsA=26099 callsB=27478 callsTotal=53577 fixedPenalty=80 penaltyTotal=4.28616e+06 globalCallsA=4635757 globalCallsB=4923281 gpsResultRouteCount=15 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137753 queryId=73 tracked=1 perQueryCall=7 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:23.109 +786109ms hook GPSQueryResultFetch 0x7094b8 call=137754 queryId=73 tracked=1 perQueryCall=8 value=1 submitCall=73 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:25.550 +787550ms hook GPSQuerySubmit 0x70a42c call=74 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:25.551 +787551ms hook GPSQuerySubmit result call=74 queryId=74 manager_nextIdD4=75/0x4b
|
||||||
|
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138071 queryId=74 tracked=1 perQueryCall=3 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:25.579 +787579ms gps-momentum-summary queryId=74 resultFetchCall=4 submitCall=74 submitRetRva=0x8d20d4 callsA=3601 callsB=3712 callsTotal=7313 fixedPenalty=80 penaltyTotal=585040 globalCallsA=4639358 globalCallsB=4926993 gpsResultRouteCount=11 gpsResult=0x796efbb0 gpsResult_routeData=0x187bf4680 gpsResult_routeCapacity=11 gpsResult_routeCount=11 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:25.579 +787579ms hook GPSQueryResultFetch 0x7094b8 call=138072 queryId=74 tracked=1 perQueryCall=4 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb0000000b
|
||||||
|
2026-06-27 09:36:25.580 +787580ms hook GPSQueryResultFetch 0x7094b8 call=138073 queryId=74 tracked=1 perQueryCall=5 value=1 submitCall=74 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0xb
|
||||||
|
2026-06-27 09:36:26.166 +788166ms hook GPSQuerySubmit 0x70a42c call=75 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2963343364/0xb0a10804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:26.167 +788167ms hook GPSQuerySubmit result call=75 queryId=75 manager_nextIdD4=76/0x4c
|
||||||
|
2026-06-27 09:36:26.205 +788205ms hook GPSQueryResultFetch 0x7094b8 call=138210 queryId=75 tracked=1 perQueryCall=4 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:26.206 +788206ms gps-momentum-summary queryId=75 resultFetchCall=5 submitCall=75 submitRetRva=0x8d20d4 callsA=13756 callsB=14447 callsTotal=28203 fixedPenalty=80 penaltyTotal=2.25624e+06 globalCallsA=4653114 globalCallsB=4941440 gpsResultRouteCount=20 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5bd31f3a0 gpsResult_routeCapacity=20 gpsResult_routeCount=20 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138211 queryId=75 tracked=1 perQueryCall=5 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1400000014
|
||||||
|
2026-06-27 09:36:26.206 +788206ms hook GPSQueryResultFetch 0x7094b8 call=138212 queryId=75 tracked=1 perQueryCall=6 value=1 submitCall=75 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x14
|
||||||
|
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit 0x70a42c call=76 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:26.959 +788959ms hook GPSQuerySubmit result call=76 queryId=76 manager_nextIdD4=77/0x4d
|
||||||
|
2026-06-27 09:36:26.988 +788988ms hook GPSQueryResultFetch 0x7094b8 call=138373 queryId=76 tracked=1 perQueryCall=3 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:26.989 +788989ms gps-momentum-summary queryId=76 resultFetchCall=4 submitCall=76 submitRetRva=0x8d20d4 callsA=8469 callsB=8836 callsTotal=17305 fixedPenalty=80 penaltyTotal=1.3844e+06 globalCallsA=4661583 globalCallsB=4950276 gpsResultRouteCount=15 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a5b42140 gpsResult_routeCapacity=15 gpsResult_routeCount=15 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138374 queryId=76 tracked=1 perQueryCall=4 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf0000000f
|
||||||
|
2026-06-27 09:36:26.989 +788989ms hook GPSQueryResultFetch 0x7094b8 call=138375 queryId=76 tracked=1 perQueryCall=5 value=1 submitCall=76 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0xf
|
||||||
|
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit 0x70a42c call=77 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:28.195 +790195ms hook GPSQuerySubmit result call=77 queryId=77 manager_nextIdD4=78/0x4e
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138518 queryId=77 tracked=1 perQueryCall=4 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:28.237 +790237ms gps-momentum-summary queryId=77 resultFetchCall=5 submitCall=77 submitRetRva=0x8d20d4 callsA=15470 callsB=16205 callsTotal=31675 fixedPenalty=80 penaltyTotal=2.534e+06 globalCallsA=4677053 globalCallsB=4966481 gpsResultRouteCount=21 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a1a70d50 gpsResult_routeCapacity=21 gpsResult_routeCount=21 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138519 queryId=77 tracked=1 perQueryCall=5 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1500000015
|
||||||
|
2026-06-27 09:36:28.237 +790237ms hook GPSQueryResultFetch 0x7094b8 call=138520 queryId=77 tracked=1 perQueryCall=6 value=1 submitCall=77 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x15
|
||||||
|
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit 0x70a42c call=78 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:28.945 +790945ms hook GPSQuerySubmit result call=78 queryId=78 manager_nextIdD4=79/0x4f
|
||||||
|
2026-06-27 09:36:28.985 +790985ms hook GPSQueryResultFetch 0x7094b8 call=138683 queryId=78 tracked=1 perQueryCall=4 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:28.985 +790985ms gps-momentum-summary queryId=78 resultFetchCall=5 submitCall=78 submitRetRva=0x8d20d4 callsA=12146 callsB=12706 callsTotal=24852 fixedPenalty=80 penaltyTotal=1.98816e+06 globalCallsA=4689199 globalCallsB=4979187 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138684 queryId=78 tracked=1 perQueryCall=5 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:28.986 +790986ms hook GPSQueryResultFetch 0x7094b8 call=138685 queryId=78 tracked=1 perQueryCall=6 value=1 submitCall=78 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit 0x70a42c call=79 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:29.662 +791662ms hook GPSQuerySubmit result call=79 queryId=79 manager_nextIdD4=80/0x50
|
||||||
|
2026-06-27 09:36:29.703 +791703ms hook GPSQueryResultFetch 0x7094b8 call=138834 queryId=79 tracked=1 perQueryCall=4 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:29.704 +791704ms gps-momentum-summary queryId=79 resultFetchCall=5 submitCall=79 submitRetRva=0x8d20d4 callsA=12393 callsB=12965 callsTotal=25358 fixedPenalty=80 penaltyTotal=2.02864e+06 globalCallsA=4701592 globalCallsB=4992152 gpsResultRouteCount=19 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5d0928e40 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138835 queryId=79 tracked=1 perQueryCall=5 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:29.704 +791704ms hook GPSQueryResultFetch 0x7094b8 call=138836 queryId=79 tracked=1 perQueryCall=6 value=1 submitCall=79 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit 0x70a42c call=80 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:29.096 +792096ms hook GPSQuerySubmit result call=80 queryId=80 manager_nextIdD4=81/0x51
|
||||||
|
2026-06-27 09:36:29.126 +792126ms hook GPSQueryResultFetch 0x7094b8 call=138925 queryId=80 tracked=1 perQueryCall=3 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:29.127 +792127ms gps-momentum-summary queryId=80 resultFetchCall=4 submitCall=80 submitRetRva=0x8d20d4 callsA=5700 callsB=5908 callsTotal=11608 fixedPenalty=80 penaltyTotal=928640 globalCallsA=4707292 globalCallsB=4998060 gpsResultRouteCount=13 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c1754160 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138926 queryId=80 tracked=1 perQueryCall=4 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:29.127 +792127ms hook GPSQueryResultFetch 0x7094b8 call=138927 queryId=80 tracked=1 perQueryCall=5 value=1 submitCall=80 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit 0x70a42c call=81 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:30.531 +792531ms hook GPSQuerySubmit result call=81 queryId=81 manager_nextIdD4=82/0x52
|
||||||
|
2026-06-27 09:36:30.560 +792560ms hook GPSQueryResultFetch 0x7094b8 call=139018 queryId=81 tracked=1 perQueryCall=3 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:30.561 +792561ms gps-momentum-summary queryId=81 resultFetchCall=4 submitCall=81 submitRetRva=0x8d20d4 callsA=9347 callsB=9727 callsTotal=19074 fixedPenalty=80 penaltyTotal=1.52592e+06 globalCallsA=4716639 globalCallsB=5007787 gpsResultRouteCount=17 gpsResult=0x794efbb0 gpsResult_routeData=0x5c7fff360 gpsResult_routeCapacity=17 gpsResult_routeCount=17 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139019 queryId=81 tracked=1 perQueryCall=4 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1100000011
|
||||||
|
2026-06-27 09:36:30.561 +792561ms hook GPSQueryResultFetch 0x7094b8 call=139020 queryId=81 tracked=1 perQueryCall=5 value=1 submitCall=81 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x11
|
||||||
|
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit 0x70a42c call=82 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:30.903 +792903ms hook GPSQuerySubmit result call=82 queryId=82 manager_nextIdD4=83/0x53
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139099 queryId=82 tracked=1 perQueryCall=3 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:30.933 +792933ms gps-momentum-summary queryId=82 resultFetchCall=4 submitCall=82 submitRetRva=0x8d20d4 callsA=4498 callsB=4706 callsTotal=9204 fixedPenalty=80 penaltyTotal=736320 globalCallsA=4721137 globalCallsB=5012493 gpsResultRouteCount=13 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c4882660 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139100 queryId=82 tracked=1 perQueryCall=4 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:30.933 +792933ms hook GPSQueryResultFetch 0x7094b8 call=139101 queryId=82 tracked=1 perQueryCall=5 value=1 submitCall=82 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit 0x70a42c call=83 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.194 +794194ms hook GPSQuerySubmit result call=83 queryId=83 manager_nextIdD4=84/0x54
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139372 queryId=83 tracked=1 perQueryCall=3 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.223 +794223ms gps-momentum-summary queryId=83 resultFetchCall=4 submitCall=83 submitRetRva=0x8d20d4 callsA=4642 callsB=4819 callsTotal=9461 fixedPenalty=80 penaltyTotal=756880 globalCallsA=4725779 globalCallsB=5017312 gpsResultRouteCount=13 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5b3bd50b0 gpsResult_routeCapacity=13 gpsResult_routeCount=13 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139373 queryId=83 tracked=1 perQueryCall=4 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd0000000d
|
||||||
|
2026-06-27 09:36:32.223 +794223ms hook GPSQueryResultFetch 0x7094b8 call=139374 queryId=83 tracked=1 perQueryCall=5 value=1 submitCall=83 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0xd
|
||||||
|
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit 0x70a42c call=84 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.509 +794509ms hook GPSQuerySubmit result call=84 queryId=84 manager_nextIdD4=85/0x55
|
||||||
|
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139443 queryId=84 tracked=1 perQueryCall=4 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.551 +794551ms gps-momentum-summary queryId=84 resultFetchCall=5 submitCall=84 submitRetRva=0x8d20d4 callsA=10870 callsB=11417 callsTotal=22287 fixedPenalty=80 penaltyTotal=1.78296e+06 globalCallsA=4736649 globalCallsB=5028729 gpsResultRouteCount=14 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a6c189f0 gpsResult_routeCapacity=14 gpsResult_routeCount=14 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.551 +794551ms hook GPSQueryResultFetch 0x7094b8 call=139444 queryId=84 tracked=1 perQueryCall=5 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe0000000e
|
||||||
|
2026-06-27 09:36:32.552 +794552ms hook GPSQueryResultFetch 0x7094b8 call=139445 queryId=84 tracked=1 perQueryCall=6 value=1 submitCall=84 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0xe
|
||||||
|
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit 0x70a42c call=85 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:32.926 +794926ms hook GPSQuerySubmit result call=85 queryId=85 manager_nextIdD4=86/0x56
|
||||||
|
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139538 queryId=85 tracked=1 perQueryCall=7 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:32.003 +795003ms gps-momentum-summary queryId=85 resultFetchCall=8 submitCall=85 submitRetRva=0x8d20d4 callsA=36538 callsB=38503 callsTotal=75041 fixedPenalty=80 penaltyTotal=6.00328e+06 globalCallsA=4773187 globalCallsB=5067232 gpsResultRouteCount=31 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b3065b50 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:32.003 +795003ms hook GPSQueryResultFetch 0x7094b8 call=139539 queryId=85 tracked=1 perQueryCall=8 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:32.004 +795004ms hook GPSQueryResultFetch 0x7094b8 call=139540 queryId=85 tracked=1 perQueryCall=9 value=1 submitCall=85 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit 0x70a42c call=86 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:40.688 +802688ms hook GPSQuerySubmit result call=86 queryId=86 manager_nextIdD4=87/0x57
|
||||||
|
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141145 queryId=86 tracked=1 perQueryCall=8 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:40.776 +802776ms gps-momentum-summary queryId=86 resultFetchCall=9 submitCall=86 submitRetRva=0x8d20d4 callsA=36418 callsB=38286 callsTotal=74704 fixedPenalty=80 penaltyTotal=5.97632e+06 globalCallsA=4809605 globalCallsB=5105518 gpsResultRouteCount=31 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a3f5d390 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:40.776 +802776ms hook GPSQueryResultFetch 0x7094b8 call=141146 queryId=86 tracked=1 perQueryCall=9 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:40.777 +802777ms hook GPSQueryResultFetch 0x7094b8 call=141147 queryId=86 tracked=1 perQueryCall=10 value=1 submitCall=86 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:41.468 +803468ms hook GPSQuerySubmit 0x70a42c call=87 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:41.469 +803469ms hook GPSQuerySubmit result call=87 queryId=87 manager_nextIdD4=88/0x58
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141312 queryId=87 tracked=1 perQueryCall=8 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:41.553 +803553ms gps-momentum-summary queryId=87 resultFetchCall=9 submitCall=87 submitRetRva=0x8d20d4 callsA=36423 callsB=38263 callsTotal=74686 fixedPenalty=80 penaltyTotal=5.97488e+06 globalCallsA=4846028 globalCallsB=5143781 gpsResultRouteCount=31 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5ba81f5b0 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141313 queryId=87 tracked=1 perQueryCall=9 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:41.553 +803553ms hook GPSQueryResultFetch 0x7094b8 call=141314 queryId=87 tracked=1 perQueryCall=10 value=1 submitCall=87 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit 0x70a42c call=88 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:41.809 +803809ms hook GPSQuerySubmit result call=88 queryId=88 manager_nextIdD4=89/0x59
|
||||||
|
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141377 queryId=88 tracked=1 perQueryCall=4 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:41.847 +803847ms gps-momentum-summary queryId=88 resultFetchCall=5 submitCall=88 submitRetRva=0x8d20d4 callsA=9952 callsB=10393 callsTotal=20345 fixedPenalty=80 penaltyTotal=1.6276e+06 globalCallsA=4855980 globalCallsB=5154174 gpsResultRouteCount=18 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c445b880 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:41.847 +803847ms hook GPSQueryResultFetch 0x7094b8 call=141378 queryId=88 tracked=1 perQueryCall=5 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:41.848 +803848ms hook GPSQueryResultFetch 0x7094b8 call=141379 queryId=88 tracked=1 perQueryCall=6 value=1 submitCall=88 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit 0x70a42c call=89 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:43.436 +805436ms hook GPSQuerySubmit result call=89 queryId=89 manager_nextIdD4=90/0x5a
|
||||||
|
2026-06-27 09:36:43.476 +805476ms hook GPSQueryResultFetch 0x7094b8 call=141688 queryId=89 tracked=1 perQueryCall=4 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:43.477 +805477ms gps-momentum-summary queryId=89 resultFetchCall=5 submitCall=89 submitRetRva=0x8d20d4 callsA=11662 callsB=12176 callsTotal=23838 fixedPenalty=80 penaltyTotal=1.90704e+06 globalCallsA=4867642 globalCallsB=5166350 gpsResultRouteCount=19 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5b41fb0 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141689 queryId=89 tracked=1 perQueryCall=5 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:43.477 +805477ms hook GPSQueryResultFetch 0x7094b8 call=141690 queryId=89 tracked=1 perQueryCall=6 value=1 submitCall=89 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit 0x70a42c call=90 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:43.783 +805783ms hook GPSQuerySubmit result call=90 queryId=90 manager_nextIdD4=91/0x5b
|
||||||
|
2026-06-27 09:36:43.821 +805821ms hook GPSQueryResultFetch 0x7094b8 call=141767 queryId=90 tracked=1 perQueryCall=4 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:43.822 +805822ms gps-momentum-summary queryId=90 resultFetchCall=5 submitCall=90 submitRetRva=0x8d20d4 callsA=11631 callsB=12119 callsTotal=23750 fixedPenalty=80 penaltyTotal=1.9e+06 globalCallsA=4879273 globalCallsB=5178469 gpsResultRouteCount=18 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5ae26da30 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141768 queryId=90 tracked=1 perQueryCall=5 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:43.822 +805822ms hook GPSQueryResultFetch 0x7094b8 call=141769 queryId=90 tracked=1 perQueryCall=6 value=1 submitCall=90 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit 0x70a42c call=91 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:44.760 +806760ms hook GPSQuerySubmit result call=91 queryId=91 manager_nextIdD4=92/0x5c
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141918 queryId=91 tracked=1 perQueryCall=4 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:44.799 +806799ms gps-momentum-summary queryId=91 resultFetchCall=5 submitCall=91 submitRetRva=0x8d20d4 callsA=14641 callsB=15349 callsTotal=29990 fixedPenalty=80 penaltyTotal=2.3992e+06 globalCallsA=4893914 globalCallsB=5193818 gpsResultRouteCount=19 gpsResult=0x795efbb0 gpsResult_routeData=0x5c09c9370 gpsResult_routeCapacity=19 gpsResult_routeCount=19 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141919 queryId=91 tracked=1 perQueryCall=5 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1300000013
|
||||||
|
2026-06-27 09:36:44.799 +806799ms hook GPSQueryResultFetch 0x7094b8 call=141920 queryId=91 tracked=1 perQueryCall=6 value=1 submitCall=91 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x13
|
||||||
|
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit 0x70a42c call=92 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:47.361 +809361ms hook GPSQuerySubmit result call=92 queryId=92 manager_nextIdD4=93/0x5d
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142395 queryId=92 tracked=1 perQueryCall=5 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:47.411 +809411ms gps-momentum-summary queryId=92 resultFetchCall=6 submitCall=92 submitRetRva=0x8d20d4 callsA=17199 callsB=17953 callsTotal=35152 fixedPenalty=80 penaltyTotal=2.81216e+06 globalCallsA=4911113 globalCallsB=5211771 gpsResultRouteCount=18 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5b7ed2050 gpsResult_routeCapacity=18 gpsResult_routeCount=18 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142396 queryId=92 tracked=1 perQueryCall=6 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1200000012
|
||||||
|
2026-06-27 09:36:47.411 +809411ms hook GPSQueryResultFetch 0x7094b8 call=142397 queryId=92 tracked=1 perQueryCall=7 value=1 submitCall=92 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x12
|
||||||
|
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit 0x70a42c call=93 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:51.624 +813624ms hook GPSQuerySubmit result call=93 queryId=93 manager_nextIdD4=94/0x5e
|
||||||
|
2026-06-27 09:36:51.711 +813711ms hook GPSQueryResultFetch 0x7094b8 call=143014 queryId=93 tracked=1 perQueryCall=8 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:51.711 +813711ms gps-momentum-summary queryId=93 resultFetchCall=9 submitCall=93 submitRetRva=0x8d20d4 callsA=41693 callsB=43935 callsTotal=85628 fixedPenalty=80 penaltyTotal=6.85024e+06 globalCallsA=4952806 globalCallsB=5255706 gpsResultRouteCount=35 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143015 queryId=93 tracked=1 perQueryCall=9 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:36:51.712 +813712ms hook GPSQueryResultFetch 0x7094b8 call=143016 queryId=93 tracked=1 perQueryCall=10 value=1 submitCall=93 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit 0x70a42c call=94 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:52.026 +815026ms hook GPSQuerySubmit result call=94 queryId=94 manager_nextIdD4=95/0x5f
|
||||||
|
2026-06-27 09:36:52.091 +815091ms hook GPSQueryResultFetch 0x7094b8 call=143295 queryId=94 tracked=1 perQueryCall=6 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:52.092 +815092ms gps-momentum-summary queryId=94 resultFetchCall=7 submitCall=94 submitRetRva=0x8d20d4 callsA=26199 callsB=27533 callsTotal=53732 fixedPenalty=80 penaltyTotal=4.29856e+06 globalCallsA=4979005 globalCallsB=5283239 gpsResultRouteCount=28 gpsResult=0x796efbb0 gpsResult_routeData=0x5a04660c0 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143296 queryId=94 tracked=1 perQueryCall=7 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:52.092 +815092ms hook GPSQueryResultFetch 0x7094b8 call=143297 queryId=94 tracked=1 perQueryCall=8 value=1 submitCall=94 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit 0x70a42c call=95 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:53.396 +815396ms hook GPSQuerySubmit result call=95 queryId=95 manager_nextIdD4=96/0x60
|
||||||
|
2026-06-27 09:36:53.473 +815473ms hook GPSQueryResultFetch 0x7094b8 call=143374 queryId=95 tracked=1 perQueryCall=7 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:53.474 +815474ms gps-momentum-summary queryId=95 resultFetchCall=8 submitCall=95 submitRetRva=0x8d20d4 callsA=38434 callsB=40520 callsTotal=78954 fixedPenalty=80 penaltyTotal=6.31632e+06 globalCallsA=5017439 globalCallsB=5323759 gpsResultRouteCount=32 gpsResult=0x31db50 gpsResult_routeData=0x5ce6fc650 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143375 queryId=95 tracked=1 perQueryCall=8 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2000000020
|
||||||
|
2026-06-27 09:36:53.474 +815474ms hook GPSQueryResultFetch 0x7094b8 call=143376 queryId=95 tracked=1 perQueryCall=9 value=1 submitCall=95 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x20
|
||||||
|
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit 0x70a42c call=96 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:53.014 +816014ms hook GPSQuerySubmit result call=96 queryId=96 manager_nextIdD4=97/0x61
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143493 queryId=96 tracked=1 perQueryCall=6 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:53.083 +816083ms gps-momentum-summary queryId=96 resultFetchCall=7 submitCall=96 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5042704 globalCallsB=5350295 gpsResultRouteCount=26 gpsResult=0x796efbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143494 queryId=96 tracked=1 perQueryCall=7 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:53.083 +816083ms hook GPSQueryResultFetch 0x7094b8 call=143495 queryId=96 tracked=1 perQueryCall=8 value=1 submitCall=96 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit 0x70a42c call=97 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:54.608 +816608ms hook GPSQuerySubmit result call=97 queryId=97 manager_nextIdD4=98/0x62
|
||||||
|
2026-06-27 09:36:54.672 +816672ms hook GPSQueryResultFetch 0x7094b8 call=143614 queryId=97 tracked=1 perQueryCall=6 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:54.673 +816673ms gps-momentum-summary queryId=97 resultFetchCall=7 submitCall=97 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5073584 globalCallsB=5382758 gpsResultRouteCount=28 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5b69dac60 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143615 queryId=97 tracked=1 perQueryCall=7 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:54.673 +816673ms hook GPSQueryResultFetch 0x7094b8 call=143616 queryId=97 tracked=1 perQueryCall=8 value=1 submitCall=97 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit 0x70a42c call=98 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:55.378 +817378ms hook GPSQuerySubmit result call=98 queryId=98 manager_nextIdD4=99/0x63
|
||||||
|
2026-06-27 09:36:55.442 +817442ms hook GPSQueryResultFetch 0x7094b8 call=143773 queryId=98 tracked=1 perQueryCall=6 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:55.442 +817442ms gps-momentum-summary queryId=98 resultFetchCall=7 submitCall=98 submitRetRva=0x8d20d4 callsA=25265 callsB=26536 callsTotal=51801 fixedPenalty=80 penaltyTotal=4.14408e+06 globalCallsA=5098849 globalCallsB=5409294 gpsResultRouteCount=26 gpsResult=0x795efbb0 gpsResult_routeData=0x5ccd75ed0 gpsResult_routeCapacity=26 gpsResult_routeCount=26 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143774 queryId=98 tracked=1 perQueryCall=7 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a0000001a
|
||||||
|
2026-06-27 09:36:55.443 +817443ms hook GPSQueryResultFetch 0x7094b8 call=143775 queryId=98 tracked=1 perQueryCall=8 value=1 submitCall=98 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x1a
|
||||||
|
2026-06-27 09:36:56.226 +818226ms hook GPSQuerySubmit 0x70a42c call=99 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:56.227 +818227ms hook GPSQuerySubmit result call=99 queryId=99 manager_nextIdD4=100/0x64
|
||||||
|
2026-06-27 09:36:56.307 +818307ms hook GPSQueryResultFetch 0x7094b8 call=143946 queryId=99 tracked=1 perQueryCall=7 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:56.307 +818307ms gps-momentum-summary queryId=99 resultFetchCall=8 submitCall=99 submitRetRva=0x8d20d4 callsA=30880 callsB=32463 callsTotal=63343 fixedPenalty=80 penaltyTotal=5.06744e+06 globalCallsA=5129729 globalCallsB=5441757 gpsResultRouteCount=28 gpsResult=0x793efbb0 gpsResult_routeData=0x5ca901790 gpsResult_routeCapacity=28 gpsResult_routeCount=28 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143947 queryId=99 tracked=1 perQueryCall=8 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c0000001c
|
||||||
|
2026-06-27 09:36:56.308 +818308ms hook GPSQueryResultFetch 0x7094b8 call=143948 queryId=99 tracked=1 perQueryCall=9 value=1 submitCall=99 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1c
|
||||||
|
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit 0x70a42c call=100 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:57.334 +819334ms hook GPSQuerySubmit result call=100 queryId=100 manager_nextIdD4=101/0x65
|
||||||
|
2026-06-27 09:36:57.426 +819426ms hook GPSQueryResultFetch 0x7094b8 call=144171 queryId=100 tracked=1 perQueryCall=8 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:57.427 +819427ms gps-momentum-summary queryId=100 resultFetchCall=9 submitCall=100 submitRetRva=0x8d20d4 callsA=39101 callsB=41128 callsTotal=80229 fixedPenalty=80 penaltyTotal=6.41832e+06 globalCallsA=5168830 globalCallsB=5482885 gpsResultRouteCount=34 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144172 queryId=100 tracked=1 perQueryCall=9 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:36:57.427 +819427ms hook GPSQueryResultFetch 0x7094b8 call=144173 queryId=100 tracked=1 perQueryCall=10 value=1 submitCall=100 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit 0x70a42c call=101 manager=0x1a1500d70 query=0x7983fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:57.073 +820073ms hook GPSQuerySubmit result call=101 queryId=101 manager_nextIdD4=102/0x66
|
||||||
|
2026-06-27 09:36:58.175 +820175ms hook GPSQueryResultFetch 0x7094b8 call=144305 queryId=101 tracked=1 perQueryCall=8 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.175 +820175ms gps-momentum-summary queryId=101 resultFetchCall=9 submitCall=101 submitRetRva=0x8d20d4 callsA=34992 callsB=36769 callsTotal=71761 fixedPenalty=80 penaltyTotal=5.74088e+06 globalCallsA=5203822 globalCallsB=5519654 gpsResultRouteCount=32 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=32 gpsResult_routeCount=32 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144306 queryId=101 tracked=1 perQueryCall=9 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2000000020
|
||||||
|
2026-06-27 09:36:58.176 +820176ms hook GPSQueryResultFetch 0x7094b8 call=144307 queryId=101 tracked=1 perQueryCall=10 value=1 submitCall=101 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x20
|
||||||
|
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit 0x70a42c call=102 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2300839940/0x89240804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:58.501 +820501ms hook GPSQuerySubmit result call=102 queryId=102 manager_nextIdD4=103/0x67
|
||||||
|
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144383 queryId=102 tracked=1 perQueryCall=9 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.614 +820614ms gps-momentum-summary queryId=102 resultFetchCall=10 submitCall=102 submitRetRva=0x8d20d4 callsA=33228 callsB=34950 callsTotal=68178 fixedPenalty=80 penaltyTotal=5.45424e+06 globalCallsA=5237050 globalCallsB=5554604 gpsResultRouteCount=31 gpsResult=0x793efbb0 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=31 gpsResult_routeCount=31 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.614 +820614ms hook GPSQueryResultFetch 0x7094b8 call=144384 queryId=102 tracked=1 perQueryCall=10 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f0000001f
|
||||||
|
2026-06-27 09:36:58.615 +820615ms hook GPSQueryResultFetch 0x7094b8 call=144385 queryId=102 tracked=1 perQueryCall=11 value=1 submitCall=102 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x1f
|
||||||
|
2026-06-27 09:36:58.950 +820950ms hook GPSQuerySubmit 0x70a42c call=103 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:58.951 +820951ms hook GPSQuerySubmit result call=103 queryId=103 manager_nextIdD4=104/0x68
|
||||||
|
2026-06-27 09:36:58.044 +821044ms hook GPSQueryResultFetch 0x7094b8 call=144463 queryId=103 tracked=1 perQueryCall=8 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:58.044 +821044ms gps-momentum-summary queryId=103 resultFetchCall=9 submitCall=103 submitRetRva=0x8d20d4 callsA=39621 callsB=41790 callsTotal=81411 fixedPenalty=80 penaltyTotal=6.51288e+06 globalCallsA=5276671 globalCallsB=5596394 gpsResultRouteCount=33 gpsResult=0x795efbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=33 gpsResult_routeCount=33 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144464 queryId=103 tracked=1 perQueryCall=9 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2100000021
|
||||||
|
2026-06-27 09:36:58.045 +821045ms hook GPSQueryResultFetch 0x7094b8 call=144465 queryId=103 tracked=1 perQueryCall=10 value=1 submitCall=103 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x21
|
||||||
|
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit 0x70a42c call=104 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:36:59.716 +821716ms hook GPSQuerySubmit result call=104 queryId=104 manager_nextIdD4=105/0x69
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144609 queryId=104 tracked=1 perQueryCall=11 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:36:59.859 +821859ms gps-momentum-summary queryId=104 resultFetchCall=12 submitCall=104 submitRetRva=0x8d20d4 callsA=42054 callsB=44392 callsTotal=86446 fixedPenalty=80 penaltyTotal=6.91568e+06 globalCallsA=5318725 globalCallsB=5640786 gpsResultRouteCount=29 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=29 gpsResult_routeCount=29 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144610 queryId=104 tracked=1 perQueryCall=12 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d0000001d
|
||||||
|
2026-06-27 09:36:59.859 +821859ms hook GPSQueryResultFetch 0x7094b8 call=144611 queryId=104 tracked=1 perQueryCall=13 value=1 submitCall=104 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x1d
|
||||||
|
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit 0x70a42c call=105 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:05.732 +827732ms hook GPSQuerySubmit result call=105 queryId=105 manager_nextIdD4=106/0x6a
|
||||||
|
2026-06-27 09:37:05.845 +827845ms hook GPSQueryResultFetch 0x7094b8 call=145756 queryId=105 tracked=1 perQueryCall=10 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:05.846 +827846ms gps-momentum-summary queryId=105 resultFetchCall=11 submitCall=105 submitRetRva=0x8d20d4 callsA=48522 callsB=51160 callsTotal=99682 fixedPenalty=80 penaltyTotal=7.97456e+06 globalCallsA=5367247 globalCallsB=5691946 gpsResultRouteCount=35 gpsResult=0x31db50 gpsResult_routeData=0x5a5082510 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145757 queryId=105 tracked=1 perQueryCall=11 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:05.846 +827846ms hook GPSQueryResultFetch 0x7094b8 call=145758 queryId=105 tracked=1 perQueryCall=12 value=1 submitCall=105 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit 0x70a42c call=106 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:07.993 +829993ms hook GPSQuerySubmit result call=106 queryId=106 manager_nextIdD4=107/0x6b
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146195 queryId=106 tracked=1 perQueryCall=9 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:07.101 +830101ms gps-momentum-summary queryId=106 resultFetchCall=10 submitCall=106 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5411424 globalCallsB=5738424 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146196 queryId=106 tracked=1 perQueryCall=10 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:07.101 +830101ms hook GPSQueryResultFetch 0x7094b8 call=146197 queryId=106 tracked=1 perQueryCall=11 value=1 submitCall=106 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:08.559 +830559ms hook GPSQuerySubmit 0x70a42c call=107 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:08.560 +830560ms hook GPSQuerySubmit result call=107 queryId=107 manager_nextIdD4=108/0x6c
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146308 queryId=107 tracked=1 perQueryCall=12 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:08.701 +830701ms gps-momentum-summary queryId=107 resultFetchCall=13 submitCall=107 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5467641 globalCallsB=5797706 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146309 queryId=107 tracked=1 perQueryCall=13 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:08.701 +830701ms hook GPSQueryResultFetch 0x7094b8 call=146310 queryId=107 tracked=1 perQueryCall=14 value=1 submitCall=107 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit 0x70a42c call=108 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:09.316 +831316ms hook GPSQuerySubmit result call=108 queryId=108 manager_nextIdD4=109/0x6d
|
||||||
|
2026-06-27 09:37:09.451 +831451ms hook GPSQueryResultFetch 0x7094b8 call=146443 queryId=108 tracked=1 perQueryCall=11 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:09.452 +831452ms gps-momentum-summary queryId=108 resultFetchCall=12 submitCall=108 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5511818 globalCallsB=5844184 gpsResultRouteCount=34 gpsResult=0x794efbb0 gpsResult_routeData=0x5ad0abaa0 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146444 queryId=108 tracked=1 perQueryCall=12 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:09.452 +831452ms hook GPSQueryResultFetch 0x7094b8 call=146445 queryId=108 tracked=1 perQueryCall=13 value=1 submitCall=108 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:14.818 +836818ms hook GPSQuerySubmit 0x70a42c call=109 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:14.819 +836819ms hook GPSQuerySubmit result call=109 queryId=109 manager_nextIdD4=110/0x6e
|
||||||
|
2026-06-27 09:37:14.930 +836930ms hook GPSQueryResultFetch 0x7094b8 call=147584 queryId=109 tracked=1 perQueryCall=10 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:14.930 +836930ms gps-momentum-summary queryId=109 resultFetchCall=11 submitCall=109 submitRetRva=0x8d20d4 callsA=46110 callsB=48659 callsTotal=94769 fixedPenalty=80 penaltyTotal=7.58152e+06 globalCallsA=5557928 globalCallsB=5892843 gpsResultRouteCount=40 gpsResult=0x794efbb0 gpsResult_routeData=0x5a5494560 gpsResult_routeCapacity=40 gpsResult_routeCount=40 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147585 queryId=109 tracked=1 perQueryCall=11 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2800000028
|
||||||
|
2026-06-27 09:37:14.931 +836931ms hook GPSQueryResultFetch 0x7094b8 call=147586 queryId=109 tracked=1 perQueryCall=12 value=1 submitCall=109 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x28
|
||||||
|
2026-06-27 09:37:15.269 +837269ms hook GPSQuerySubmit 0x70a42c call=110 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:15.270 +837270ms hook GPSQuerySubmit result call=110 queryId=110 manager_nextIdD4=111/0x6f
|
||||||
|
2026-06-27 09:37:15.391 +837391ms hook GPSQueryResultFetch 0x7094b8 call=147679 queryId=110 tracked=1 perQueryCall=11 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:15.392 +837392ms gps-momentum-summary queryId=110 resultFetchCall=12 submitCall=110 submitRetRva=0x8d20d4 callsA=51620 callsB=54419 callsTotal=106039 fixedPenalty=80 penaltyTotal=8.48312e+06 globalCallsA=5609548 globalCallsB=5947262 gpsResultRouteCount=43 gpsResult=0x7983fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147680 queryId=110 tracked=1 perQueryCall=12 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:15.392 +837392ms hook GPSQueryResultFetch 0x7094b8 call=147681 queryId=110 tracked=1 perQueryCall=13 value=1 submitCall=110 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit 0x70a42c call=111 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:15.740 +837740ms hook GPSQuerySubmit result call=111 queryId=111 manager_nextIdD4=112/0x70
|
||||||
|
2026-06-27 09:37:15.846 +837846ms hook GPSQueryResultFetch 0x7094b8 call=147776 queryId=111 tracked=1 perQueryCall=10 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:15.847 +837847ms gps-momentum-summary queryId=111 resultFetchCall=11 submitCall=111 submitRetRva=0x8d20d4 callsA=51247 callsB=53977 callsTotal=105224 fixedPenalty=80 penaltyTotal=8.41792e+06 globalCallsA=5660795 globalCallsB=6001239 gpsResultRouteCount=43 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147777 queryId=111 tracked=1 perQueryCall=11 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:15.847 +837847ms hook GPSQueryResultFetch 0x7094b8 call=147778 queryId=111 tracked=1 perQueryCall=12 value=1 submitCall=111 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit 0x70a42c call=112 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:16.335 +838335ms hook GPSQuerySubmit result call=112 queryId=112 manager_nextIdD4=113/0x71
|
||||||
|
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147901 queryId=112 tracked=1 perQueryCall=12 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:16.477 +838477ms gps-momentum-summary queryId=112 resultFetchCall=13 submitCall=112 submitRetRva=0x8d20d4 callsA=52115 callsB=55090 callsTotal=107205 fixedPenalty=80 penaltyTotal=8.5764e+06 globalCallsA=5712910 globalCallsB=6056329 gpsResultRouteCount=43 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5aa0d5640 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:16.477 +838477ms hook GPSQueryResultFetch 0x7094b8 call=147902 queryId=112 tracked=1 perQueryCall=13 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:16.478 +838478ms hook GPSQueryResultFetch 0x7094b8 call=147903 queryId=112 tracked=1 perQueryCall=14 value=1 submitCall=112 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit 0x70a42c call=113 manager=0x1a1500d70 query=0x79e7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:16.844 +838844ms hook GPSQuerySubmit result call=113 queryId=113 manager_nextIdD4=114/0x72
|
||||||
|
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147996 queryId=113 tracked=1 perQueryCall=13 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:16.998 +838998ms gps-momentum-summary queryId=113 resultFetchCall=14 submitCall=113 submitRetRva=0x8d20d4 callsA=57012 callsB=60319 callsTotal=117331 fixedPenalty=80 penaltyTotal=9.38648e+06 globalCallsA=5769922 globalCallsB=6116648 gpsResultRouteCount=44 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:16.998 +838998ms hook GPSQueryResultFetch 0x7094b8 call=147997 queryId=113 tracked=1 perQueryCall=14 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:16.999 +838999ms hook GPSQueryResultFetch 0x7094b8 call=147998 queryId=113 tracked=1 perQueryCall=15 value=1 submitCall=113 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit 0x70a42c call=114 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:17.062 +840062ms hook GPSQuerySubmit result call=114 queryId=114 manager_nextIdD4=115/0x73
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148243 queryId=114 tracked=1 perQueryCall=9 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:18.155 +840155ms gps-momentum-summary queryId=114 resultFetchCall=10 submitCall=114 submitRetRva=0x8d20d4 callsA=44177 callsB=46478 callsTotal=90655 fixedPenalty=80 penaltyTotal=7.2524e+06 globalCallsA=5814099 globalCallsB=6163126 gpsResultRouteCount=34 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a433c830 gpsResult_routeCapacity=34 gpsResult_routeCount=34 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148244 queryId=114 tracked=1 perQueryCall=10 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x2200000022
|
||||||
|
2026-06-27 09:37:18.155 +840155ms hook GPSQueryResultFetch 0x7094b8 call=148245 queryId=114 tracked=1 perQueryCall=11 value=1 submitCall=114 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x22
|
||||||
|
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit 0x70a42c call=115 manager=0x1a1500d70 query=0x7993fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:18.739 +840739ms hook GPSQuerySubmit result call=115 queryId=115 manager_nextIdD4=116/0x74
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148392 queryId=115 tracked=1 perQueryCall=10 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:18.846 +840846ms gps-momentum-summary queryId=115 resultFetchCall=11 submitCall=115 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5859769 globalCallsB=6211149 gpsResultRouteCount=35 gpsResult=0x794efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148393 queryId=115 tracked=1 perQueryCall=11 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:18.846 +840846ms hook GPSQueryResultFetch 0x7094b8 call=148394 queryId=115 tracked=1 perQueryCall=12 value=1 submitCall=115 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:19.305 +841305ms hook GPSQuerySubmit 0x70a42c call=116 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:19.306 +841306ms hook GPSQuerySubmit result call=116 queryId=116 manager_nextIdD4=117/0x75
|
||||||
|
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148513 queryId=116 tracked=1 perQueryCall=12 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:19.451 +841451ms gps-momentum-summary queryId=116 resultFetchCall=13 submitCall=116 submitRetRva=0x8d20d4 callsA=56217 callsB=59282 callsTotal=115499 fixedPenalty=80 penaltyTotal=9.23992e+06 globalCallsA=5915986 globalCallsB=6270431 gpsResultRouteCount=44 gpsResult=0x793efbb0 gpsResult_routeData=0x5a19c3590 gpsResult_routeCapacity=44 gpsResult_routeCount=44 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:19.451 +841451ms hook GPSQueryResultFetch 0x7094b8 call=148514 queryId=116 tracked=1 perQueryCall=13 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c0000002c
|
||||||
|
2026-06-27 09:37:19.452 +841452ms hook GPSQueryResultFetch 0x7094b8 call=148515 queryId=116 tracked=1 perQueryCall=14 value=1 submitCall=116 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2c
|
||||||
|
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit 0x70a42c call=117 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:20.995 +842995ms hook GPSQuerySubmit result call=117 queryId=117 manager_nextIdD4=118/0x76
|
||||||
|
2026-06-27 09:37:20.115 +843115ms hook GPSQueryResultFetch 0x7094b8 call=148846 queryId=117 tracked=1 perQueryCall=10 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:20.116 +843116ms gps-momentum-summary queryId=117 resultFetchCall=11 submitCall=117 submitRetRva=0x8d20d4 callsA=45670 callsB=48023 callsTotal=93693 fixedPenalty=80 penaltyTotal=7.49544e+06 globalCallsA=5961656 globalCallsB=6318454 gpsResultRouteCount=35 gpsResult=0x795efbb0 gpsResult_routeData=0x5d0932d80 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148847 queryId=117 tracked=1 perQueryCall=11 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:20.116 +843116ms hook GPSQueryResultFetch 0x7094b8 call=148848 queryId=117 tracked=1 perQueryCall=12 value=1 submitCall=117 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:22.792 +844792ms hook GPSQuerySubmit 0x70a42c call=118 manager=0x1a1500d70 query=0x793efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2816673796/0xa7e30804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:22.793 +844793ms hook GPSQuerySubmit result call=118 queryId=118 manager_nextIdD4=119/0x77
|
||||||
|
2026-06-27 09:37:22.898 +844898ms hook GPSQueryResultFetch 0x7094b8 call=149189 queryId=118 tracked=1 perQueryCall=9 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:22.899 +844899ms gps-momentum-summary queryId=118 resultFetchCall=10 submitCall=118 submitRetRva=0x8d20d4 callsA=46889 callsB=49406 callsTotal=96295 fixedPenalty=80 penaltyTotal=7.7036e+06 globalCallsA=6008545 globalCallsB=6367860 gpsResultRouteCount=36 gpsResult=0x793efbb0 gpsResult_routeData=0x5a344e040 gpsResult_routeCapacity=36 gpsResult_routeCount=36 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149190 queryId=118 tracked=1 perQueryCall=10 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x2400000024
|
||||||
|
2026-06-27 09:37:22.899 +844899ms hook GPSQueryResultFetch 0x7094b8 call=149191 queryId=118 tracked=1 perQueryCall=11 value=1 submitCall=118 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x24
|
||||||
|
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit 0x70a42c call=119 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2037254148/0x796e0804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:23.427 +845427ms hook GPSQuerySubmit result call=119 queryId=119 manager_nextIdD4=120/0x78
|
||||||
|
2026-06-27 09:37:23.553 +845553ms hook GPSQueryResultFetch 0x7094b8 call=149311 queryId=119 tracked=1 perQueryCall=11 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:23.554 +845554ms gps-momentum-summary queryId=119 resultFetchCall=12 submitCall=119 submitRetRva=0x8d20d4 callsA=53474 callsB=56500 callsTotal=109974 fixedPenalty=80 penaltyTotal=8.79792e+06 globalCallsA=6062019 globalCallsB=6424360 gpsResultRouteCount=35 gpsResult=0x796efbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=35 gpsResult_routeCount=35 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149312 queryId=119 tracked=1 perQueryCall=12 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2300000023
|
||||||
|
2026-06-27 09:37:23.554 +845554ms hook GPSQueryResultFetch 0x7094b8 call=149313 queryId=119 tracked=1 perQueryCall=13 value=1 submitCall=119 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x23
|
||||||
|
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit 0x70a42c call=120 manager=0x1a1500d70 query=0x31da00 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2432239620/0x90f90804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:24.099 +847099ms hook GPSQuerySubmit result call=120 queryId=120 manager_nextIdD4=121/0x79
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149633 queryId=120 tracked=1 perQueryCall=11 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:25.230 +847230ms gps-momentum-summary queryId=120 resultFetchCall=12 submitCall=120 submitRetRva=0x8d20d4 callsA=51261 callsB=53921 callsTotal=105182 fixedPenalty=80 penaltyTotal=8.41456e+06 globalCallsA=6113280 globalCallsB=6478281 gpsResultRouteCount=39 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0edbd50 gpsResult_routeCapacity=39 gpsResult_routeCount=39 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149634 queryId=120 tracked=1 perQueryCall=12 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x2700000027
|
||||||
|
2026-06-27 09:37:25.230 +847230ms hook GPSQueryResultFetch 0x7094b8 call=149635 queryId=120 tracked=1 perQueryCall=13 value=1 submitCall=120 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x27
|
||||||
|
2026-06-27 09:37:28.494 +850494ms hook GPSQuerySubmit 0x70a42c call=121 manager=0x1a1500d70 query=0x79c3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:28.495 +850495ms hook GPSQuerySubmit result call=121 queryId=121 manager_nextIdD4=122/0x7a
|
||||||
|
2026-06-27 09:37:28.692 +850692ms hook GPSQueryResultFetch 0x7094b8 call=150259 queryId=121 tracked=1 perQueryCall=15 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:28.693 +850693ms gps-momentum-summary queryId=121 resultFetchCall=16 submitCall=121 submitRetRva=0x8d20d4 callsA=74269 callsB=78375 callsTotal=152644 fixedPenalty=80 penaltyTotal=1.22115e+07 globalCallsA=6187549 globalCallsB=6556656 gpsResultRouteCount=43 gpsResult=0x796efbb0 gpsResult_routeData=0x5aa0d2a90 gpsResult_routeCapacity=43 gpsResult_routeCount=43 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150260 queryId=121 tracked=1 perQueryCall=16 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b0000002b
|
||||||
|
2026-06-27 09:37:28.693 +850693ms hook GPSQueryResultFetch 0x7094b8 call=150261 queryId=121 tracked=1 perQueryCall=17 value=1 submitCall=121 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x2b
|
||||||
|
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit 0x70a42c call=122 manager=0x1a1500d70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:29.526 +851526ms hook GPSQuerySubmit result call=122 queryId=122 manager_nextIdD4=123/0x7b
|
||||||
|
2026-06-27 09:37:29.744 +851744ms hook GPSQueryResultFetch 0x7094b8 call=150445 queryId=122 tracked=1 perQueryCall=17 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:29.744 +851744ms gps-momentum-summary queryId=122 resultFetchCall=18 submitCall=122 submitRetRva=0x8d20d4 callsA=86743 callsB=91281 callsTotal=178024 fixedPenalty=80 penaltyTotal=1.42419e+07 globalCallsA=6274292 globalCallsB=6647937 gpsResultRouteCount=56 gpsResult=0x794efbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150446 queryId=122 tracked=1 perQueryCall=18 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:37:29.745 +851745ms hook GPSQueryResultFetch 0x7094b8 call=150447 queryId=122 tracked=1 perQueryCall=19 value=1 submitCall=122 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit 0x70a42c call=123 manager=0x1a1500d70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:31.742 +853742ms hook GPSQuerySubmit result call=123 queryId=123 manager_nextIdD4=124/0x7c
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150838 queryId=123 tracked=1 perQueryCall=23 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:31.058 +854058ms gps-momentum-summary queryId=123 resultFetchCall=24 submitCall=123 submitRetRva=0x8d20d4 callsA=107532 callsB=112808 callsTotal=220340 fixedPenalty=80 penaltyTotal=1.76272e+07 globalCallsA=6381824 globalCallsB=6760745 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x595ff6a30 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150839 queryId=123 tracked=1 perQueryCall=24 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:31.058 +854058ms hook GPSQueryResultFetch 0x7094b8 call=150840 queryId=123 tracked=1 perQueryCall=25 value=1 submitCall=123 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit 0x70a42c call=124 manager=0x1a1500d70 query=0x796efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:32.820 +854820ms hook GPSQuerySubmit result call=124 queryId=124 manager_nextIdD4=125/0x7d
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151013 queryId=124 tracked=1 perQueryCall=19 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:32.072 +855072ms gps-momentum-summary queryId=124 resultFetchCall=20 submitCall=124 submitRetRva=0x8d20d4 callsA=81331 callsB=85498 callsTotal=166829 fixedPenalty=80 penaltyTotal=1.33463e+07 globalCallsA=6463155 globalCallsB=6846243 gpsResultRouteCount=52 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5cdd46d00 gpsResult_routeCapacity=52 gpsResult_routeCount=52 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151014 queryId=124 tracked=1 perQueryCall=20 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3400000034
|
||||||
|
2026-06-27 09:37:32.072 +855072ms hook GPSQueryResultFetch 0x7094b8 call=151015 queryId=124 tracked=1 perQueryCall=21 value=1 submitCall=124 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x34
|
||||||
|
2026-06-27 09:37:35.062 +858062ms hook GPSQuerySubmit 0x70a42c call=125 manager=0x1a1500d70 query=0x79d3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:35.063 +858063ms hook GPSQuerySubmit result call=125 queryId=125 manager_nextIdD4=126/0x7e
|
||||||
|
2026-06-27 09:37:36.242 +858242ms hook GPSQueryResultFetch 0x7094b8 call=151572 queryId=125 tracked=1 perQueryCall=15 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:36.242 +858242ms gps-momentum-summary queryId=125 resultFetchCall=16 submitCall=125 submitRetRva=0x8d20d4 callsA=78601 callsB=82908 callsTotal=161509 fixedPenalty=80 penaltyTotal=1.29207e+07 globalCallsA=6541756 globalCallsB=6929151 gpsResultRouteCount=50 gpsResult=0x7993fbb0 gpsResult_routeData=0x59bcc2d90 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151573 queryId=125 tracked=1 perQueryCall=16 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3200000032
|
||||||
|
2026-06-27 09:37:36.243 +858243ms hook GPSQueryResultFetch 0x7094b8 call=151574 queryId=125 tracked=1 perQueryCall=17 value=1 submitCall=125 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x32
|
||||||
|
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit 0x70a42c call=126 manager=0x1a1500d70 query=0x794efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:39.559 +861559ms hook GPSQuerySubmit result call=126 queryId=126 manager_nextIdD4=127/0x7f
|
||||||
|
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152209 queryId=126 tracked=1 perQueryCall=12 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:39.701 +861701ms gps-momentum-summary queryId=126 resultFetchCall=13 submitCall=126 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6609704 globalCallsB=7000803 gpsResultRouteCount=45 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:39.701 +861701ms hook GPSQueryResultFetch 0x7094b8 call=152210 queryId=126 tracked=1 perQueryCall=13 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:39.702 +861702ms hook GPSQueryResultFetch 0x7094b8 call=152211 queryId=126 tracked=1 perQueryCall=14 value=1 submitCall=126 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:39.082 +862082ms hook GPSQuerySubmit 0x70a42c call=127 manager=0x1a1500d70 query=0x795efa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2801076228/0xa6f50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1466.47,2180.07,18.3744,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 09:37:39.083 +862083ms hook GPSQuerySubmit result call=127 queryId=127 manager_nextIdD4=128/0x80
|
||||||
|
2026-06-27 09:37:40.263 +862263ms hook GPSQueryResultFetch 0x7094b8 call=152316 queryId=127 tracked=1 perQueryCall=15 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:40.263 +862263ms gps-momentum-summary queryId=127 resultFetchCall=16 submitCall=127 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6685805 globalCallsB=7080894 gpsResultRouteCount=49 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152317 queryId=127 tracked=1 perQueryCall=16 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:40.264 +862264ms hook GPSQueryResultFetch 0x7094b8 call=152318 queryId=127 tracked=1 perQueryCall=17 value=1 submitCall=127 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152479 queryId=128 tracked=1 perQueryCall=18 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x52069c outPath=0x79e7fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:41.177 +863177ms gps-momentum-summary queryId=128 resultFetchCall=19 submitCall=128 submitRetRva=0x8d20d4 callsA=67948 callsB=71652 callsTotal=139600 fixedPenalty=80 penaltyTotal=1.1168e+07 globalCallsA=6753753 globalCallsB=7152546 gpsResultRouteCount=45 gpsResult=0x79e7fbb0 gpsResult_routeData=0x5ba8297a0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152480 queryId=128 tracked=1 perQueryCall=19 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:41.177 +863177ms hook GPSQueryResultFetch 0x7094b8 call=152481 queryId=128 tracked=1 perQueryCall=20 value=1 submitCall=128 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79e7fbb0 ret_rva=0x520783 outPath=0x79e7fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152894 queryId=129 tracked=1 perQueryCall=15 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:43.285 +865285ms gps-momentum-summary queryId=129 resultFetchCall=16 submitCall=129 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=6829854 globalCallsB=7232637 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x59708dcb0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:43.285 +865285ms hook GPSQueryResultFetch 0x7094b8 call=152895 queryId=129 tracked=1 perQueryCall=16 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:43.286 +865286ms hook GPSQueryResultFetch 0x7094b8 call=152896 queryId=129 tracked=1 perQueryCall=17 value=1 submitCall=129 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:37:44.431 +866431ms hook GPSQueryResultFetch 0x7094b8 call=153122 queryId=130 tracked=1 perQueryCall=12 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:44.432 +866432ms gps-momentum-summary queryId=130 resultFetchCall=13 submitCall=130 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=6886895 globalCallsB=7292596 gpsResultRouteCount=45 gpsResult=0x795efbb0 gpsResult_routeData=0x5bcca0880 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153123 queryId=130 tracked=1 perQueryCall=13 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:37:44.432 +866432ms hook GPSQueryResultFetch 0x7094b8 call=153124 queryId=130 tracked=1 perQueryCall=14 value=1 submitCall=130 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153476 queryId=131 tracked=1 perQueryCall=25 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:46.226 +868226ms gps-momentum-summary queryId=131 resultFetchCall=26 submitCall=131 submitRetRva=0x8d20d4 callsA=114176 callsB=119881 callsTotal=234057 fixedPenalty=80 penaltyTotal=1.87246e+07 globalCallsA=7001071 globalCallsB=7412477 gpsResultRouteCount=53 gpsResult=0x796efbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:46.226 +868226ms hook GPSQueryResultFetch 0x7094b8 call=153477 queryId=131 tracked=1 perQueryCall=26 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:46.227 +868227ms hook GPSQueryResultFetch 0x7094b8 call=153478 queryId=131 tracked=1 perQueryCall=27 value=1 submitCall=131 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:47.788 +869788ms hook GPSQueryResultFetch 0x7094b8 call=153767 queryId=132 tracked=1 perQueryCall=15 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:47.789 +869789ms gps-momentum-summary queryId=132 resultFetchCall=16 submitCall=132 submitRetRva=0x8d20d4 callsA=79074 callsB=83000 callsTotal=162074 fixedPenalty=80 penaltyTotal=1.29659e+07 globalCallsA=7080145 globalCallsB=7495477 gpsResultRouteCount=53 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c7029c50 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153768 queryId=132 tracked=1 perQueryCall=16 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:47.789 +869789ms hook GPSQueryResultFetch 0x7094b8 call=153769 queryId=132 tracked=1 perQueryCall=17 value=1 submitCall=132 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:48.911 +870911ms hook GPSQueryResultFetch 0x7094b8 call=153955 queryId=133 tracked=1 perQueryCall=18 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x52069c outPath=0x793efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:48.912 +870912ms gps-momentum-summary queryId=133 resultFetchCall=19 submitCall=133 submitRetRva=0x8d20d4 callsA=78657 callsB=83056 callsTotal=161713 fixedPenalty=80 penaltyTotal=1.2937e+07 globalCallsA=7158802 globalCallsB=7578533 gpsResultRouteCount=50 gpsResult=0x793efbb0 gpsResult_routeData=0x5c09c2f50 gpsResult_routeCapacity=50 gpsResult_routeCount=50 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153956 queryId=133 tracked=1 perQueryCall=19 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x3200000032
|
||||||
|
2026-06-27 09:37:48.912 +870912ms hook GPSQueryResultFetch 0x7094b8 call=153957 queryId=133 tracked=1 perQueryCall=20 value=1 submitCall=133 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x793efbb0 ret_rva=0x520783 outPath=0x793efbb0 outPath_count=0 outPath_data=0x32
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154205 queryId=134 tracked=1 perQueryCall=24 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:50.356 +872356ms gps-momentum-summary queryId=134 resultFetchCall=25 submitCall=134 submitRetRva=0x8d20d4 callsA=114064 callsB=119718 callsTotal=233782 fixedPenalty=80 penaltyTotal=1.87026e+07 globalCallsA=7272866 globalCallsB=7698251 gpsResultRouteCount=53 gpsResult=0x31db50 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154206 queryId=134 tracked=1 perQueryCall=25 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:37:50.356 +872356ms hook GPSQueryResultFetch 0x7094b8 call=154207 queryId=134 tracked=1 perQueryCall=26 value=1 submitCall=134 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154594 queryId=135 tracked=1 perQueryCall=21 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:52.619 +874619ms gps-momentum-summary queryId=135 resultFetchCall=22 submitCall=135 submitRetRva=0x8d20d4 callsA=86232 callsB=90519 callsTotal=176751 fixedPenalty=80 penaltyTotal=1.41401e+07 globalCallsA=7359098 globalCallsB=7788770 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c21f9bc0 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154595 queryId=135 tracked=1 perQueryCall=22 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
|
||||||
|
2026-06-27 09:37:52.619 +874619ms hook GPSQueryResultFetch 0x7094b8 call=154596 queryId=135 tracked=1 perQueryCall=23 value=1 submitCall=135 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
|
||||||
|
2026-06-27 09:37:58.016 +881016ms hook GPSQueryResultFetch 0x7094b8 call=155730 queryId=136 tracked=1 perQueryCall=21 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:37:58.017 +881017ms gps-momentum-summary queryId=136 resultFetchCall=22 submitCall=136 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7460653 globalCallsB=7895580 gpsResultRouteCount=49 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a9ef29a0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155731 queryId=136 tracked=1 perQueryCall=22 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:37:58.017 +881017ms hook GPSQueryResultFetch 0x7094b8 call=155732 queryId=136 tracked=1 perQueryCall=23 value=1 submitCall=136 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157003 queryId=137 tracked=1 perQueryCall=13 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:07.682 +889682ms gps-momentum-summary queryId=137 resultFetchCall=14 submitCall=137 submitRetRva=0x8d20d4 callsA=71709 callsB=75945 callsTotal=147654 fixedPenalty=80 penaltyTotal=1.18123e+07 globalCallsA=7532362 globalCallsB=7971525 gpsResultRouteCount=48 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5c8239930 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:07.682 +889682ms hook GPSQueryResultFetch 0x7094b8 call=157004 queryId=137 tracked=1 perQueryCall=14 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:38:07.683 +889683ms hook GPSQueryResultFetch 0x7094b8 call=157005 queryId=137 tracked=1 perQueryCall=15 value=1 submitCall=137 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157214 queryId=138 tracked=1 perQueryCall=16 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x52069c outPath=0x79c3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:08.832 +890832ms gps-momentum-summary queryId=138 resultFetchCall=17 submitCall=138 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7613319 globalCallsB=8056663 gpsResultRouteCount=53 gpsResult=0x79c3fbb0 gpsResult_routeData=0x5a300ad90 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:08.832 +890832ms hook GPSQueryResultFetch 0x7094b8 call=157215 queryId=138 tracked=1 perQueryCall=17 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:38:08.833 +890833ms hook GPSQueryResultFetch 0x7094b8 call=157216 queryId=138 tracked=1 perQueryCall=18 value=1 submitCall=138 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79c3fbb0 ret_rva=0x520783 outPath=0x79c3fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157429 queryId=139 tracked=1 perQueryCall=17 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x52069c outPath=0x795efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:09.074 +892074ms gps-momentum-summary queryId=139 resultFetchCall=18 submitCall=139 submitRetRva=0x8d20d4 callsA=81871 callsB=86147 callsTotal=168018 fixedPenalty=80 penaltyTotal=1.34414e+07 globalCallsA=7695190 globalCallsB=8142810 gpsResultRouteCount=54 gpsResult=0x795efbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=54 gpsResult_routeCount=54 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:09.074 +892074ms hook GPSQueryResultFetch 0x7094b8 call=157430 queryId=139 tracked=1 perQueryCall=18 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x3600000036
|
||||||
|
2026-06-27 09:38:09.075 +892075ms hook GPSQueryResultFetch 0x7094b8 call=157431 queryId=139 tracked=1 perQueryCall=19 value=1 submitCall=139 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x795efbb0 ret_rva=0x520783 outPath=0x795efbb0 outPath_count=0 outPath_data=0x36
|
||||||
|
2026-06-27 09:38:11.305 +893305ms hook GPSQueryResultFetch 0x7094b8 call=157640 queryId=140 tracked=1 perQueryCall=23 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:38:11.306 +893306ms gps-momentum-summary queryId=140 resultFetchCall=24 submitCall=140 submitRetRva=0x8d20d4 callsA=101555 callsB=106810 callsTotal=208365 fixedPenalty=80 penaltyTotal=1.66692e+07 globalCallsA=7796745 globalCallsB=8249620 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5b9b2abf0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157641 queryId=140 tracked=1 perQueryCall=24 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:38:11.306 +893306ms hook GPSQueryResultFetch 0x7094b8 call=157642 queryId=140 tracked=1 perQueryCall=25 value=1 submitCall=140 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:39:19.409 +961409ms hook GPSQueryResultFetch 0x7094b8 call=169463 queryId=141 tracked=1 perQueryCall=15 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:19.409 +961409ms gps-momentum-summary queryId=141 resultFetchCall=16 submitCall=141 submitRetRva=0x8d20d4 callsA=80957 callsB=85138 callsTotal=166095 fixedPenalty=80 penaltyTotal=1.32876e+07 globalCallsA=7877702 globalCallsB=8334758 gpsResultRouteCount=53 gpsResult=0x7983fbb0 gpsResult_routeData=0x5a30883a0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169464 queryId=141 tracked=1 perQueryCall=16 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:39:19.410 +961410ms hook GPSQueryResultFetch 0x7094b8 call=169465 queryId=141 tracked=1 perQueryCall=17 value=1 submitCall=141 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175046 queryId=142 tracked=1 perQueryCall=11 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:51.138 +994138ms gps-momentum-summary queryId=142 resultFetchCall=12 submitCall=142 submitRetRva=0x8d20d4 callsA=57041 callsB=59959 callsTotal=117000 fixedPenalty=80 penaltyTotal=9.36e+06 globalCallsA=7934743 globalCallsB=8394717 gpsResultRouteCount=45 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5c3253ff0 gpsResult_routeCapacity=45 gpsResult_routeCount=45 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175047 queryId=142 tracked=1 perQueryCall=12 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d0000002d
|
||||||
|
2026-06-27 09:39:51.138 +994138ms hook GPSQueryResultFetch 0x7094b8 call=175048 queryId=142 tracked=1 perQueryCall=13 value=1 submitCall=142 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2d
|
||||||
|
2026-06-27 09:39:55.778 +997778ms hook GPSQueryResultFetch 0x7094b8 call=175832 queryId=143 tracked=1 perQueryCall=17 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:55.778 +997778ms gps-momentum-summary queryId=143 resultFetchCall=18 submitCall=143 submitRetRva=0x8d20d4 callsA=64588 callsB=67941 callsTotal=132529 fixedPenalty=80 penaltyTotal=1.06023e+07 globalCallsA=7999331 globalCallsB=8462658 gpsResultRouteCount=48 gpsResult=0x7993fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175833 queryId=143 tracked=1 perQueryCall=18 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:39:55.779 +997779ms hook GPSQueryResultFetch 0x7094b8 call=175834 queryId=143 tracked=1 perQueryCall=19 value=1 submitCall=143 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:39:56.349 +998349ms hook GPSQueryResultFetch 0x7094b8 call=175939 queryId=144 tracked=1 perQueryCall=13 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:56.349 +998349ms gps-momentum-summary queryId=144 resultFetchCall=14 submitCall=144 submitRetRva=0x8d20d4 callsA=76101 callsB=80091 callsTotal=156192 fixedPenalty=80 penaltyTotal=1.24954e+07 globalCallsA=8075432 globalCallsB=8542749 gpsResultRouteCount=49 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=49 gpsResult_routeCount=49 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175940 queryId=144 tracked=1 perQueryCall=14 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3100000031
|
||||||
|
2026-06-27 09:39:56.350 +998350ms hook GPSQueryResultFetch 0x7094b8 call=175941 queryId=144 tracked=1 perQueryCall=15 value=1 submitCall=144 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x31
|
||||||
|
2026-06-27 09:39:58.783 +1000783ms hook GPSQueryResultFetch 0x7094b8 call=176418 queryId=145 tracked=1 perQueryCall=12 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:39:58.783 +1000783ms gps-momentum-summary queryId=145 resultFetchCall=13 submitCall=145 submitRetRva=0x8d20d4 callsA=60857 callsB=64111 callsTotal=124968 fixedPenalty=80 penaltyTotal=9.99744e+06 globalCallsA=8136289 globalCallsB=8606860 gpsResultRouteCount=48 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5a0465fa0 gpsResult_routeCapacity=48 gpsResult_routeCount=48 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176419 queryId=145 tracked=1 perQueryCall=13 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3000000030
|
||||||
|
2026-06-27 09:39:58.784 +1000784ms hook GPSQueryResultFetch 0x7094b8 call=176420 queryId=145 tracked=1 perQueryCall=14 value=1 submitCall=145 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x30
|
||||||
|
2026-06-27 09:40:22.522 +1024522ms hook GPSQueryResultFetch 0x7094b8 call=181029 queryId=146 tracked=1 perQueryCall=19 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:22.522 +1024522ms gps-momentum-summary queryId=146 resultFetchCall=20 submitCall=146 submitRetRva=0x8d20d4 callsA=94645 callsB=99283 callsTotal=193928 fixedPenalty=80 penaltyTotal=1.55142e+07 globalCallsA=8230934 globalCallsB=8706143 gpsResultRouteCount=53 gpsResult=0x794efbb0 gpsResult_routeData=0x5b8d26bf0 gpsResult_routeCapacity=53 gpsResult_routeCount=53 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181030 queryId=146 tracked=1 perQueryCall=20 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3500000035
|
||||||
|
2026-06-27 09:40:22.523 +1024523ms hook GPSQueryResultFetch 0x7094b8 call=181031 queryId=146 tracked=1 perQueryCall=21 value=1 submitCall=146 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x35
|
||||||
|
2026-06-27 09:40:25.583 +1027583ms hook GPSQueryResultFetch 0x7094b8 call=181630 queryId=147 tracked=1 perQueryCall=17 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x52069c outPath=0x31db50 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:25.583 +1027583ms gps-momentum-summary queryId=147 resultFetchCall=18 submitCall=147 submitRetRva=0x8d20d4 callsA=94662 callsB=99361 callsTotal=194023 fixedPenalty=80 penaltyTotal=1.55218e+07 globalCallsA=8325596 globalCallsB=8805504 gpsResultRouteCount=51 gpsResult=0x31db50 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181631 queryId=147 tracked=1 perQueryCall=18 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x3300000033
|
||||||
|
2026-06-27 09:40:25.584 +1027584ms hook GPSQueryResultFetch 0x7094b8 call=181632 queryId=147 tracked=1 perQueryCall=19 value=1 submitCall=147 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x31db50 ret_rva=0x520783 outPath=0x31db50 outPath_count=0 outPath_data=0x33
|
||||||
|
2026-06-27 09:40:26.249 +1028249ms hook GPSQueryResultFetch 0x7094b8 call=181771 queryId=148 tracked=1 perQueryCall=18 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms gps-momentum-summary queryId=148 resultFetchCall=19 submitCall=148 submitRetRva=0x8d20d4 callsA=96443 callsB=101123 callsTotal=197566 fixedPenalty=80 penaltyTotal=1.58053e+07 globalCallsA=8422039 globalCallsB=8906627 gpsResultRouteCount=51 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5a4478d70 gpsResult_routeCapacity=51 gpsResult_routeCount=51 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181772 queryId=148 tracked=1 perQueryCall=19 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3300000033
|
||||||
|
2026-06-27 09:40:26.250 +1028250ms hook GPSQueryResultFetch 0x7094b8 call=181773 queryId=148 tracked=1 perQueryCall=20 value=1 submitCall=148 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x33
|
||||||
|
2026-06-27 09:40:26.947 +1028947ms hook GPSQueryResultFetch 0x7094b8 call=181918 queryId=149 tracked=1 perQueryCall=19 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:26.947 +1028947ms gps-momentum-summary queryId=149 resultFetchCall=20 submitCall=149 submitRetRva=0x8d20d4 callsA=96421 callsB=101149 callsTotal=197570 fixedPenalty=80 penaltyTotal=1.58056e+07 globalCallsA=8518460 globalCallsB=9007776 gpsResultRouteCount=56 gpsResult=0x7983fbb0 gpsResult_routeData=0x5c4251580 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181919 queryId=149 tracked=1 perQueryCall=20 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:40:26.948 +1028948ms hook GPSQueryResultFetch 0x7094b8 call=181920 queryId=149 tracked=1 perQueryCall=21 value=1 submitCall=149 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:40:51.330 +1053330ms hook GPSQueryResultFetch 0x7094b8 call=187131 queryId=150 tracked=1 perQueryCall=23 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x52069c outPath=0x794efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms gps-momentum-summary queryId=150 resultFetchCall=24 submitCall=150 submitRetRva=0x8d20d4 callsA=111893 callsB=116985 callsTotal=228878 fixedPenalty=80 penaltyTotal=1.83102e+07 globalCallsA=8630353 globalCallsB=9124761 gpsResultRouteCount=59 gpsResult=0x794efbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187132 queryId=150 tracked=1 perQueryCall=24 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:40:51.331 +1053331ms hook GPSQueryResultFetch 0x7094b8 call=187133 queryId=150 tracked=1 perQueryCall=25 value=1 submitCall=150 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x794efbb0 ret_rva=0x520783 outPath=0x794efbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187469 queryId=151 tracked=1 perQueryCall=26 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms gps-momentum-summary queryId=151 resultFetchCall=27 submitCall=151 submitRetRva=0x8d20d4 callsA=139362 callsB=146130 callsTotal=285492 fixedPenalty=80 penaltyTotal=2.28394e+07 globalCallsA=8769715 globalCallsB=9270891 gpsResultRouteCount=68 gpsResult=0x796efbb0 gpsResult_routeData=0x5ac786db0 gpsResult_routeCapacity=68 gpsResult_routeCount=68 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:54.481 +1056481ms hook GPSQueryResultFetch 0x7094b8 call=187470 queryId=151 tracked=1 perQueryCall=27 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x4400000044
|
||||||
|
2026-06-27 09:40:54.482 +1056482ms hook GPSQueryResultFetch 0x7094b8 call=187471 queryId=151 tracked=1 perQueryCall=28 value=1 submitCall=151 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x44
|
||||||
|
2026-06-27 09:40:55.901 +1057901ms hook GPSQueryResultFetch 0x7094b8 call=187734 queryId=152 tracked=1 perQueryCall=30 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms gps-momentum-summary queryId=152 resultFetchCall=31 submitCall=152 submitRetRva=0x8d20d4 callsA=131009 callsB=137351 callsTotal=268360 fixedPenalty=80 penaltyTotal=2.14688e+07 globalCallsA=8900724 globalCallsB=9408242 gpsResultRouteCount=67 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=67 gpsResult_routeCount=67 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187735 queryId=152 tracked=1 perQueryCall=31 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x4300000043
|
||||||
|
2026-06-27 09:40:55.902 +1057902ms hook GPSQueryResultFetch 0x7094b8 call=187736 queryId=152 tracked=1 perQueryCall=32 value=1 submitCall=152 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x43
|
||||||
|
2026-06-27 09:40:56.761 +1058761ms hook GPSQueryResultFetch 0x7094b8 call=187884 queryId=153 tracked=1 perQueryCall=23 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x52069c outPath=0x796efbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms gps-momentum-summary queryId=153 resultFetchCall=24 submitCall=153 submitRetRva=0x8d20d4 callsA=90608 callsB=95127 callsTotal=185735 fixedPenalty=80 penaltyTotal=1.48588e+07 globalCallsA=8991332 globalCallsB=9503369 gpsResultRouteCount=55 gpsResult=0x796efbb0 gpsResult_routeData=0x5b65c6510 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187885 queryId=153 tracked=1 perQueryCall=24 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:40:56.762 +1058762ms hook GPSQueryResultFetch 0x7094b8 call=187886 queryId=153 tracked=1 perQueryCall=25 value=1 submitCall=153 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x796efbb0 ret_rva=0x520783 outPath=0x796efbb0 outPath_count=0 outPath_data=0x37
|
||||||
|
2026-06-27 09:40:57.587 +1059587ms hook GPSQueryResultFetch 0x7094b8 call=188032 queryId=154 tracked=1 perQueryCall=22 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms gps-momentum-summary queryId=154 resultFetchCall=23 submitCall=154 submitRetRva=0x8d20d4 callsA=92730 callsB=97388 callsTotal=190118 fixedPenalty=80 penaltyTotal=1.52094e+07 globalCallsA=9084062 globalCallsB=9600757 gpsResultRouteCount=55 gpsResult=0x79a3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188033 queryId=154 tracked=1 perQueryCall=23 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:40:57.588 +1059588ms hook GPSQueryResultFetch 0x7094b8 call=188034 queryId=154 tracked=1 perQueryCall=24 value=1 submitCall=154 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x37
|
||||||
|
2026-06-27 09:40:58.638 +1060638ms hook GPSQueryResultFetch 0x7094b8 call=188224 queryId=155 tracked=1 perQueryCall=24 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x52069c outPath=0x79d3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:58.638 +1060638ms gps-momentum-summary queryId=155 resultFetchCall=25 submitCall=155 submitRetRva=0x8d20d4 callsA=125813 callsB=131448 callsTotal=257261 fixedPenalty=80 penaltyTotal=2.05809e+07 globalCallsA=9209875 globalCallsB=9732205 gpsResultRouteCount=56 gpsResult=0x79d3fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=56 gpsResult_routeCount=56 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188225 queryId=155 tracked=1 perQueryCall=25 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x3800000038
|
||||||
|
2026-06-27 09:40:58.639 +1060639ms hook GPSQueryResultFetch 0x7094b8 call=188226 queryId=155 tracked=1 perQueryCall=26 value=1 submitCall=155 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79d3fbb0 ret_rva=0x520783 outPath=0x79d3fbb0 outPath_count=0 outPath_data=0x38
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188410 queryId=156 tracked=1 perQueryCall=21 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x52069c outPath=0x7993fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms gps-momentum-summary queryId=156 resultFetchCall=22 submitCall=156 submitRetRva=0x8d20d4 callsA=116627 callsB=122251 callsTotal=238878 fixedPenalty=80 penaltyTotal=1.91102e+07 globalCallsA=9326502 globalCallsB=9854456 gpsResultRouteCount=59 gpsResult=0x7993fbb0 gpsResult_routeData=0x5bcffa5f0 gpsResult_routeCapacity=59 gpsResult_routeCount=59 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:40:59.668 +1061668ms hook GPSQueryResultFetch 0x7094b8 call=188411 queryId=156 tracked=1 perQueryCall=22 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b0000003b
|
||||||
|
2026-06-27 09:40:59.669 +1061669ms hook GPSQueryResultFetch 0x7094b8 call=188412 queryId=156 tracked=1 perQueryCall=23 value=1 submitCall=156 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x7993fbb0 ret_rva=0x520783 outPath=0x7993fbb0 outPath_count=0 outPath_data=0x3b
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188737 queryId=157 tracked=1 perQueryCall=19 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms gps-momentum-summary queryId=157 resultFetchCall=20 submitCall=157 submitRetRva=0x8d20d4 callsA=77630 callsB=81730 callsTotal=159360 fixedPenalty=80 penaltyTotal=1.27488e+07 globalCallsA=9404132 globalCallsB=9936186 gpsResultRouteCount=55 gpsResult=0x79b3fbb0 gpsResult_routeData=0x5bbec04f0 gpsResult_routeCapacity=55 gpsResult_routeCount=55 gpsResult_pointData=0 gpsResult_pointCount=0
|
||||||
|
2026-06-27 09:41:01.490 +1063490ms hook GPSQueryResultFetch 0x7094b8 call=188738 queryId=157 tracked=1 perQueryCall=20 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x3700000037
|
||||||
|
2026-06-27 09:41:01.491 +1063491ms hook GPSQueryResultFetch 0x7094b8 call=188739 queryId=157 tracked=1 perQueryCall=21 value=1 submitCall=157 submitRetRva=0x8d20d4 manager=0x1a1500d70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x37
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
@@ -0,0 +1,57 @@
|
|||||||
|
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
|
||||||
|
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
|
||||||
|
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
|
||||||
|
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
|
||||||
|
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:38:02.012 +216012ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.7
|
||||||
|
2026-06-27 05:39:00.783 +273783ms hook GPSQueryResultFetch 0x7094b8 call=40714 queryId=232 tracked=1 perQueryCall=4 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x52069c outPath=0x7983fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000f05e16af0100000000000000000000000001000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=0/0x0 gpsResult_u50=256/0x100
|
||||||
|
2026-06-27 05:39:00.787 +273787ms hook GPSQueryResultFetch 0x7094b8 call=40715 queryId=232 tracked=1 perQueryCall=5 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a9000000003295980500000022000000220000000000000000000000f05e16af0100000001000000010000000001000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=256/0x100
|
||||||
|
2026-06-27 05:39:00.788 +273788ms hook GPSQueryResultFetch 0x7094b8 call=40716 queryId=232 tracked=1 perQueryCall=6 value=1 submitCall=232 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x7983fbb0 ret_rva=0x520783 outPath=0x7983fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a900000000000000003295980500000022000000000000000000000000000000f05e16af0100000001000000020000000101000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x598953200 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=24304/0x5ef0 gpsResult_state42=22 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=257/0x101
|
||||||
|
2026-06-27 05:39:06.837 +279837ms hook GPSQueryResultFetch 0x7094b8 call=41405 queryId=239 tracked=1 perQueryCall=3 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x52069c outPath=0x66a7fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fda76600000000008e0e4401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=1722285312/0x66a7fd00 gpsResult_u50=5436771840/0x1440e8e00
|
||||||
|
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41406 queryId=239 tracked=1 perQueryCall=4 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000d0684fbf0500000027000000270000000000000000000000c0b434a20100000001fda76601000000008e0e4401000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6017252609/0x166a7fd01 gpsResult_u50=5436771840/0x1440e8e00
|
||||||
|
2026-06-27 05:39:06.839 +279839ms hook GPSQueryResultFetch 0x7094b8 call=41407 queryId=239 tracked=1 perQueryCall=5 value=1 submitCall=239 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x66a7fbb0 ret_rva=0x520783 outPath=0x66a7fbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000d0684fbf0500000027000000000000000000000000000000c0b434a20100000001fda76602000000018e0e4401000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf4f68d0 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10312219905/0x266a7fd01 gpsResult_u50=5436771841/0x1440e8e01
|
||||||
|
2026-06-27 05:39:12.400 +285400ms hook GPSQueryResultFetch 0x7094b8 call=42032 queryId=245 tracked=1 perQueryCall=5 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x52069c outPath=0x79a3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:39:12.402 +285402ms hook GPSQueryResultFetch 0x7094b8 call=42033 queryId=245 tracked=1 perQueryCall=6 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb00000030c93abf050000002e0000002e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f400000000,0,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d300000000,0,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c00000000,0,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a7118700000000,0,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:39:12.403 +285403ms hook GPSQueryResultFetch 0x7094b8 call=42034 queryId=245 tracked=1 perQueryCall=7 value=1 submitCall=245 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79a3fbb0 ret_rva=0x520783 outPath=0x79a3fbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb0000000000000030c93abf050000002e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5bf3ac930 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:39:16.274 +290274ms hook GPSQueryResultFetch 0x7094b8 call=42570 queryId=251 tracked=1 perQueryCall=4 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000c0b434a20100000000fd5f79000000000071114401000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=2036333824/0x795ffd00 gpsResult_u50=5436961024/0x144117100
|
||||||
|
2026-06-27 05:39:16.279 +290279ms hook GPSQueryResultFetch 0x7094b8 call=42571 queryId=251 tracked=1 perQueryCall=5 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d6000000d600000080dae1a2050000001e0000001e0000000000000000000000c0b434a20100000001fd5f79010000000071114401000000983f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=214/0xd6 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6000000d6 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd6000000d6 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0;29:dee961a1ae096b36,0x01030007,0,212,214,41915c8e00000000,0,18.1702,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=6331301121/0x1795ffd01 gpsResult_u50=5436961024/0x144117100
|
||||||
|
2026-06-27 05:39:16.280 +290280ms hook GPSQueryResultFetch 0x7094b8 call=42572 queryId=251 tracked=1 perQueryCall=6 value=1 submitCall=251 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d60000000000000080dae1a2050000001e000000000000000000000000000000c0b434a20100000001fd5f79020000000171114401000000483f084301000000 gpsResult_u20=214/0xd6 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5a2e1da80 gpsResult_vec20_data=0xd6 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd6 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=46272/0xb4c0 gpsResult_state42=52 gpsResult_u48=10626268417/0x2795ffd01 gpsResult_u50=5436961025/0x144117101
|
||||||
@@ -0,0 +1,44 @@
|
|||||||
|
2026-06-27 05:34:26.000 +0ms EdgeWeightGPS Main reason=Load handle=0x6ffff03b0000 sdk=0x7f3ae208 runtime=2.3.1
|
||||||
|
2026-06-27 05:34:26.001 +1ms registered Running game-state callbacks
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights reloaded path=S:\common\Cyberpunk 2077\red4ext\plugins\EdgeWeightGPS\solver_weights.bin highway=0.8
|
||||||
|
2026-06-27 05:34:26.001 +1ms solver weights active highway=0.8
|
||||||
|
2026-06-27 05:34:26.002 +2ms gps-node-multiplier-inline-patch applied target_rva=0x40bb98 cave=0x65ae0000 highwayMultiplier=0.8 modes=road-tail
|
||||||
|
2026-06-27 05:34:26.010 +10ms hook attach GPSQuerySubmit 0x70a42c target=0x14070a42c rva=0x70a42c result=ok original=0x1018c0480
|
||||||
|
2026-06-27 05:34:26.019 +19ms hook attach GPSQueryResultFetch 0x7094b8 target=0x1407094b8 rva=0x7094b8 result=ok original=0x1018c04e0
|
||||||
|
2026-06-27 05:34:44.742 +17742ms GameState Running OnEnter app=0x31fb80
|
||||||
|
2026-06-27 05:34:44.769 +17769ms GameState Running OnUpdate app=0x31fb80 count=0
|
||||||
|
2026-06-27 05:34:44.775 +17775ms GameState Running OnUpdate app=0x31fb80 count=1
|
||||||
|
2026-06-27 05:34:44.783 +17783ms GameState Running OnUpdate app=0x31fb80 count=2
|
||||||
|
2026-06-27 05:34:44.789 +17789ms GameState Running OnUpdate app=0x31fb80 count=3
|
||||||
|
2026-06-27 05:34:44.796 +17796ms GameState Running OnUpdate app=0x31fb80 count=4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit 0x70a42c call=3 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1075054596/0x40140804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.614 +50614ms hook GPSQuerySubmit result call=3 queryId=3 manager_nextIdD4=4/0x4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit 0x70a42c call=4 manager=0x1a38fbc70 query=0x66b7fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.374,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:17.615 +50615ms hook GPSQuerySubmit result call=4 queryId=4 manager_nextIdD4=5/0x5
|
||||||
|
2026-06-27 05:35:17.709 +50709ms hook GPSQueryResultFetch 0x7094b8 call=15 queryId=3 tracked=1 perQueryCall=5 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000189e97b101000000005d3040000000000030ac4201000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=1076911360/0x40305d00 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=16 queryId=3 tracked=1 perQueryCall=6 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000f0e52dab050000002e0000002e0000000000000000000000189e97b101000000015d3040010000000030ac4201000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=5371878657/0x140305d01 gpsResult_u50=5413548032/0x142ac3000
|
||||||
|
2026-06-27 05:35:17.713 +50713ms hook GPSQueryResultFetch 0x7094b8 call=17 queryId=3 tracked=1 perQueryCall=7 value=1 submitCall=3 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000f0e52dab050000002e000000000000000000000000000000189e97b101000000015d3040020000000130ac4201000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5ab2de5f0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=40472/0x9e18 gpsResult_state42=151 gpsResult_u48=9666845953/0x240305d01 gpsResult_u50=5413548033/0x142ac3001
|
||||||
|
2026-06-27 05:35:17.729 +50729ms hook GPSQueryResultFetch 0x7094b8 call=21 queryId=4 tracked=1 perQueryCall=6 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=22 queryId=4 tracked=1 perQueryCall=7 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d0000001d gpsResult_bytes20=d4000000d4000000c07f479f050000001d0000001d0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=124554051613/0x1d0000001d gpsResult_u30lo=29/0x1d gpsResult_u34hi=29/0x1d gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=29 gpsResult_ptr28_rec40raw=8120b8b1928f77bc02010200000000000000000002000000a6696140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a4406169a6,3.52207,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01020003,0,190,199,42828c7600000000,0,65.2743,0;27:76766688538bbec7,0x00000002,1,199,210,442df92638532584,5.03413e-05,695.893,0;28:15a96b64f46d74f1,0x00000002,1,210,212,42c4fe27391c074f,0.0001488,98.4964,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:35:17.733 +50733ms hook GPSQueryResultFetch 0x7094b8 call=23 queryId=4 tracked=1 perQueryCall=8 value=1 submitCall=4 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x1d gpsResult_bytes20=d400000000000000c07f479f050000001d000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x59f477fc0 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=29/0x1d gpsResult_u30lo=29/0x1d gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=29 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit 0x70a42c call=36 manager=0x1a38fbc70 query=0x79b3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=1065353216/0x3f800000 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:48.693 +81693ms hook GPSQuerySubmit result call=36 queryId=36 manager_nextIdD4=37/0x25
|
||||||
|
2026-06-27 05:35:48.753 +81753ms hook GPSQueryResultFetch 0x7094b8 call=5572 queryId=36 tracked=1 perQueryCall=5 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x52069c outPath=0x79b3fbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb942010000000000000000000000000000000000000080d4eab20100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.755 +81755ms hook GPSQueryResultFetch 0x7094b8 call=5573 queryId=36 tracked=1 perQueryCall=6 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x2200000022 gpsResult_bytes20=a9000000a900000020a4f8ba050000002200000022000000000000000000000080d4eab20100000001000000010000000000000000000000983f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=169/0xa9 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9000000a9 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xa9000000a9 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=146028888098/0x2200000022 gpsResult_u30lo=34/0x22 gpsResult_u34hi=34/0x22 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=34 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0002010b,0,127,129,423000ac00000000,0,44.0007,0;27:8400cb68d457ee70,0x0000000a,0,129,135,438560a937945cbd,1.76862e-05,266.755,0;28:7f6a7e8858b300b3,0x0002010a,0,135,145,41e854e100000000,0,29.0414,0;29:7f6a8b8858b316ca,0x00000002,1,145,147,430929e439b23736,0.000339919,137.164,0;30:7f90028858d2fd3c,0x00020303,0,147,156,420aa5b000000000,0,34.6618,0;31:767d53885391bd2c,0x00000003,0,156,158,41fd9ee9389608f8,7.15423e-05,31.7026,0;32:e1757f45b301d064,0x00020102,0,158,167,41ec76ec,29.5581,0,0;33:d4e1d9dbfbc5c18,0x00000002,1,167,169,429cf29243168f79,150.56,78.4738,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:35:48.756 +81756ms hook GPSQueryResultFetch 0x7094b8 call=5574 queryId=36 tracked=1 perQueryCall=7 value=1 submitCall=36 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79b3fbb0 ret_rva=0x520783 outPath=0x79b3fbb0 outPath_count=0 outPath_data=0x22 gpsResult_bytes20=a90000000000000020a4f8ba050000002200000000000000000000000000000080d4eab20100000001000000020000000100000000000000483f084301000000 gpsResult_u20=169/0xa9 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5baf8a420 gpsResult_vec20_data=0xa9 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xa9 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=34/0x22 gpsResult_u30lo=34/0x22 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=34 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=54400/0xd480 gpsResult_state42=234 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit 0x70a42c call=45 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2052/0x804 query_f0c=0/0x0 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:35:56.665 +89665ms hook GPSQuerySubmit result call=45 queryId=45 manager_nextIdD4=46/0x2e
|
||||||
|
2026-06-27 05:35:56.703 +89703ms hook GPSQueryResultFetch 0x7094b8 call=6341 queryId=45 tracked=1 perQueryCall=3 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x52069c outPath=0x795ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb94201000000000000000000000000000000000000009088638f01000000002814400000000000029aaf01000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=1075062784/0x40142800 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6342 queryId=45 tracked=1 perQueryCall=4 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x2700000027 gpsResult_bytes20=be000000be000000309512cd05000000270000002700000000000000000000009088638f01000000012814400100000000029aaf01000000983f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=190/0xbe gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe000000be gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xbe000000be gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=167503724583/0x2700000027 gpsResult_u30lo=39/0x27 gpsResult_u34hi=39/0x27 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=39 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03030004,0,106,108,424e28183a13406f,0.000561721,51.5392,0;19:ffa6984fc3782cce,0x00000003,1,108,110,416bc10300000000,0,14.7346,0;20:dda97c10537d41d,0x0102000b,0,110,112,427400a23a3dab78,0.000723533,61.0006,0;21:85f43b6a86254467,0x0000000a,0,112,116,42803a673eeff29c,0.468648,64.1141,0;22:85f4386a86253f4e,0x0000000a,0,116,118,40cbfbef00000000,0,6.3745,0;23:85f0b36a86222778,0x0000000a,0,118,123,43a2d3de3aaea2d4,0.00133237,325.655,0;24:dde14c1053ade5b,0x0003010a,0,123,125,4299ffb139cfad24,0.000396111,76.9994,0;25:5db97b1b99d86a7b,0x0000000b,0,125,127,4295d97c00000000,0,74.9248,0;26:dde16c1053ae1c1,0x0003010b,0,127,129,423122ae397f5d95,0.000243536,44.2839,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f100000000,0,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4200000000,0,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,42e597c700000000,0,114.796,0;38:3c25141b1b4f12dc,0x00000000,0,166,190,427a926f00000000,0,62.643,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=5370030081/0x140142801 gpsResult_u50=7241073152/0x1af9a0200
|
||||||
|
2026-06-27 05:35:56.704 +89704ms hook GPSQueryResultFetch 0x7094b8 call=6343 queryId=45 tracked=1 perQueryCall=5 value=1 submitCall=45 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x795ffbb0 ret_rva=0x520783 outPath=0x795ffbb0 outPath_count=0 outPath_data=0x27 gpsResult_bytes20=be00000000000000309512cd05000000270000000000000000000000000000009088638f01000000012814400200000001029aaf01000000483f084301000000 gpsResult_u20=190/0xbe gpsResult_u24=0/0x0 gpsResult_ptr28=0x5cd129530 gpsResult_vec20_data=0xbe gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xbe gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=39/0x27 gpsResult_u30lo=39/0x27 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=39 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=34960/0x8890 gpsResult_state42=99 gpsResult_u48=9664997377/0x240142801 gpsResult_u50=7241073153/0x1af9a0201
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit 0x70a42c call=51 manager=0x1a38fbc70 query=0x79a3fa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=1077413892/0x40380804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:01.200 +95200ms hook GPSQuerySubmit result call=51 queryId=51 manager_nextIdD4=52/0x34
|
||||||
|
2026-06-27 05:36:01.257 +95257ms hook GPSQueryResultFetch 0x7094b8 call=6888 queryId=51 tracked=1 perQueryCall=5 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x52069c outPath=0x79cbfbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000e894e7af0100000000000000000000000000000000000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=0/0x0 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.261 +95261ms hook GPSQueryResultFetch 0x7094b8 call=6889 queryId=51 tracked=1 perQueryCall=6 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e0000002e gpsResult_bytes20=cb000000cb000000c0e3d0b0050000002e0000002e0000000000000000000000e894e7af0100000001000000010000000000000000000000983f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=203/0xcb gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb000000cb gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xcb000000cb gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=197568495662/0x2e0000002e gpsResult_u30lo=46/0x2e gpsResult_u34hi=46/0x2e gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=46 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010002000000000e0000001700000000000000dcafeb410000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x02000102,0,14,23,41ebafdc00000000,0,29.4609,0;4:46427ff3547b0b21,0x00000000,1,23,25,420124203aadc6f0,0.00132581,32.2853,0;5:4f44a1f359ae9b67,0x00030101,0,25,27,41798131397f10bc,0.000243249,15.594,0;6:4f44a1f359ae9b67,0x02020005,0,27,29,417ef14b00000000,0,15.9339,0;7:4634f0f3546f8dc8,0x00000002,0,29,45,433311c900000000,0,179.069,0;8:460f6ff3544f9658,0x04020202,0,45,47,424b279039be0111,0.000362404,50.7886,0;9:464279f3547b00ef,0x00000003,0,47,51,4395eda800000000,0,299.857,0;10:dc35e51ba9166914,0x01020002,0,51,54,41b8c7a000000000,0,23.0975,0;11:5b21ea90943036bd,0x00000003,0,54,57,42682b74395293e7,0.000200823,58.0424,0;12:dc35da1ba9165663,0x00030103,0,57,59,424f54de393600b5,0.000173571,51.8329,0;13:5b21e39094302ad8,0x00000004,0,59,74,4366a1f438ac59b9,8.21831e-05,230.633,0;14:8b9130427f341426,0x00030304,0,74,76,423e265e00000000,0,47.5375,0;15:5b1b5690942acf93,0x00000004,0,76,92,42ea74d338d9be32,0.000103828,117.228,0;16:a88d9c857d49083e,0x02030004,0,92,104,4231f0c500000000,0,44.4851,0;17:5271bc908f429c3b,0x00000004,0,104,106,42aa457c3867ae8f,5.52373e-05,85.1357,0;18:a88d9d857d4909f1,0x03050004,0,106,108,424840003a28f1fd,0.000644475,50.0625,0;19:ffa6984fc3782cce,0x00000005,1,108,110,4169c5c300000000,0,14.6108,0;20:dda97c10537d41d,0x01040009,0,110,112,427400a239244fca,0.0001567,61.0006,0;21:85f43b6a86254467,0x00000008,0,112,116,427fe7cf3e2067bc,0.156646,63.9764,0;22:85f4386a86253f4e,0x00000008,0,116,118,40cbf84700000000,0,6.37406,0;23:85f0b36a86222778,0x00000008,0,118,123,43a2d2f400000000,0,325.648,0;24:dde14c1053ade5b,0x00040108,0,123,125,429a52c939aea707,0.000333123,77.1617,0;25:5db97b1b99d86a7b,0x0000000a,0,125,127,4295d94c00000000,0,74.9244,0;26:dde16c1053ae1c1,0x0003010a,0,127,129,423000b9397639bc,0.000234819,44.0007,0;27:8400cb68d457ee70,0x00000009,0,129,135,4385543e00000000,0,266.658,0;28:7f6a7e8858b300b3,0x02030109,0,135,137,4223122000000000,0,40.7677,0;29:8400cc68d457f023,0x00000009,0,137,139,41ed790500000000,0,29.6841,0;30:86ecb4885ca0780e,0x02030109,0,139,141,41f318de390a164c,0.00013169,30.3871,0;31:8400da68d45807ed,0x00000009,0,141,143,422ba2f1391c36ba,0.000148977,42.9091,0;32:86ecb9885ca0808d,0x02030109,0,143,145,421ea10738b27df0,8.51116e-05,39.6573,0;33:84045768d45b122b,0x00000009,0,145,147,43205b4238e191bc,0.00010756,160.356,0;34:1d9aea811c5dd71a,0x03020109,0,147,149,41facdd900000000,0,31.3505,0;35:14a33781173357f6,0x00000005,0,149,151,42a3d39600000000,0,81.9133,0;36:1db266811c7188af,0x00020205,0,151,160,41f57f3337cfa022,2.47509e-05,30.6871,0;37:4274deac90c47d21,0x00000003,0,160,166,4314ced600000000,0,148.808,0;38:42674bac90b8f8fc,0x02020303,0,166,178,41fcbf5c38b1ee76,8.48443e-05,31.5934,0;39:426749ac90b8f596,0x00000003,0,178,180,42e25c3c3995521f,0.000284807,113.18,0;40:42715bac90c168b1,0x02020303,0,180,190,41b5e42100000000,0,22.7364,0;41:426accac90bc0a06,0x00000003,0,190,192,41a711873905bc13,0.000127539,20.8836,0;42:4274ddac90c47b6e,0x02020103,0,192,194,4200002c3a0049b5,0.00048938,32.0002,0;43:3a0cb1e7cc68dd9d,0x00000003,0,194,196,42e1c7af394fa31a,0.000198018,112.89,0;44:83a58c7fb0df2223,0x03020203,0,196,198,41d9b4a000000000,0,27.2132,0;45:83af9d7fb0e7938b,0x00000003,0,198,203,42f72a7500000000,0,123.583,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=0/0x0
|
||||||
|
2026-06-27 05:36:01.262 +95262ms hook GPSQueryResultFetch 0x7094b8 call=6890 queryId=51 tracked=1 perQueryCall=7 value=1 submitCall=51 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x79cbfbb0 ret_rva=0x520783 outPath=0x79cbfbb0 outPath_count=0 outPath_data=0x2e gpsResult_bytes20=cb00000000000000c0e3d0b0050000002e000000000000000000000000000000e894e7af0100000001000000020000000100000000000000483f084301000000 gpsResult_u20=203/0xcb gpsResult_u24=0/0x0 gpsResult_ptr28=0x5b0d0e3c0 gpsResult_vec20_data=0xcb gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xcb gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=46/0x2e gpsResult_u30lo=46/0x2e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=46 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=38120/0x94e8 gpsResult_state42=231 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=1/0x1
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit 0x70a42c call=58 manager=0x1a38fbc70 query=0x79dbfa60 query_f00=0/0x0 query_f04=65535/0xffff query_f08=2896496644/0xaca50804 query_f0c=1/0x1 query_fcc=5/0x5 query_pos58=(-1569.68,1213.26,17.3722,0) resolveTraceWindowMs=1200 ret_rva=0x8d20d4
|
||||||
|
2026-06-27 05:36:07.165 +101165ms hook GPSQuerySubmit result call=58 queryId=58 manager_nextIdD4=59/0x3b
|
||||||
|
2026-06-27 05:36:07.221 +101221ms hook GPSQueryResultFetch 0x7094b8 call=7462 queryId=58 tracked=1 perQueryCall=5 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x52069c outPath=0x796ffbb0 outPath_count=0 outPath_data=0 gpsResult_bytes20=000000000000000000cdb9420100000000000000000000000000000000000000880a3ba201000000000000000000000000ee1e9205000000003f084301000000 gpsResult_u20=0/0x0 gpsResult_u24=0/0x0 gpsResult_ptr28=0x142b9cd00 gpsResult_ptr28_rva=0x2b9cd00 gpsResult_vec20_data=0 gpsResult_vec20_count=1 gpsResult_vec20s16_data=0 gpsResult_vec20s16_count=1 gpsResult_u2c=1/0x1 gpsResult_u30=0/0x0 gpsResult_u30lo=0/0x0 gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=0 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=0/0x0 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7463 queryId=58 tracked=1 perQueryCall=6 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e0000001e gpsResult_bytes20=d4000000d40000005069bdc7050000001e0000001e0000000000000000000000880a3ba201000000010000000100000000ee1e9205000000983f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=212/0xd4 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4000000d4 gpsResult_vec20_count=5 gpsResult_vec20_first=<unreadable> gpsResult_vec20_last=<unreadable> gpsResult_vec20s16_data=0xd4000000d4 gpsResult_vec20s16_count=5 gpsResult_vec20s16_first=<unreadable> gpsResult_vec20s16_last=<unreadable> gpsResult_u2c=5/0x5 gpsResult_u30=128849018910/0x1e0000001e gpsResult_u30lo=30/0x1e gpsResult_u34hi=30/0x1e gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=30 gpsResult_ptr28_rec40raw=8120b8b1928f77bc020102000000000000000000020000006b726140a47411410000000000000000b499ae59f3a0444f02000000000000000200000009000000098af13929ac53420000000000000000b688ae59f396444f0200000000000000090000000e00000000000000d415fd4100000000000000000b984f54f3700f4602010300000000000e00000019000000000000004d2407420000000000000000 gpsResult_ptr28_rec40=[0:bc778f92b1b82081,0x00020102,0,0,2,411174a44061726b,3.52261,9.09098,0;1:4f44a0f359ae99b4,0x00000002,0,2,9,4253ac2939f18a09,0.000460699,52.9181,0;2:4f4496f359ae88b6,0x00000002,0,9,14,41fd15d400000000,0,31.6357,0;3:460f70f3544f980b,0x00030102,0,14,25,4207244d00000000,0,33.7854,0;4:4612f4f35452ae2e,0x00000004,0,25,27,414c15a400000000,0,12.7553,0;5:2c72e2b25759a141,0x02030104,0,27,29,4200005300000000,0,32.0003,0;6:4f4112f359ab7293,0x00000004,0,29,41,43026f2439bf49c1,0.000364853,130.434,0;7:46386ef3547299b9,0x00020104,0,41,51,4233b78400000000,0,44.9292,0;8:5853c7f35eecbcd5,0x00000002,1,51,54,42d112673928616a,0.00016058,104.536,0;9:46427ef3547b096e,0x02020108,0,54,64,419c78e738fcfac5,0.00012063,19.559,0;10:585040f35ee9a199,0x00000002,1,64,82,42edb546399e3c17,0.000301809,118.854,0;11:58574df35eefd65e,0x00020202,0,82,84,424e963d3826cfaa,3.97709e-05,51.6467,0;12:dc46e41ba924da94,0x00000002,1,84,113,43d6681a00000000,0,428.813,0;13:44aecf6a4a053a22,0x04020205,0,113,115,421cd19c00000000,0,39.2047,0;14:526e3f908f3f91fd,0x00000003,0,115,117,426d5279387ed573,6.07571e-05,59.3305,0;15:198a739cb695e652,0x00020203,0,117,130,42508e7100000000,0,52.1391,0;16:7e9e916a825df5db,0x00000002,1,130,135,42353aee39682c6c,0.000221418,45.3075,0;17:7e9e906a825df428,0x00000002,1,135,148,43345cae39c76877,0.000380341,180.362,0;18:6b629392cdab54bc,0x02020103,0,148,150,420c006f00000000,0,35.0004,0;19:7e9e946a825dfaf4,0x00000002,1,150,155,426e6f2e39198edb,0.000146444,59.6086,0;20:6b629592cdab5822,0x00020303,0,155,157,4207394000000000,0,33.8059,0;21:7e9e976a825e000d,0x00000002,1,157,161,423926183a44500e,0.000748874,46.2872,0;22:6b629492cdab566f,0x01020203,0,161,163,4233ffb500000000,0,44.9997,0;23:7e9e966a825dfe5a,0x00000002,1,163,170,42ff5c4800000000,0,127.68,0;24:6b629692cdab59d5,0x00020303,0,170,173,42494ce238b48c61,8.60922e-05,50.3251,0;25:7e9b126a825ae837,0x00000002,1,173,190,434fcf833856ec39,5.12416e-05,207.811,0;26:6b409192cd8e6af0,0x01030003,0,190,197,427e51d800000000,0,63.5799,0;27:76766688538bbec7,0x00000003,1,197,208,442dbcd300000000,0,694.95,0;28:15a96b64f46d74f1,0x00000003,1,208,210,42c4b6a8397a14d0,0.000238496,98.3568,0;29:dee961a1ae096b36,0x01020007,0,210,212,41e9d9ba00000000,0,29.2313,0] gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=4294967297/0x100000001 gpsResult_u50=23926337024/0x5921eee00
|
||||||
|
2026-06-27 05:36:07.222 +101222ms hook GPSQueryResultFetch 0x7094b8 call=7464 queryId=58 tracked=1 perQueryCall=7 value=1 submitCall=58 submitRetRva=0x8d20d4 manager=0x1a38fbc70 outPath=0x796ffbb0 ret_rva=0x520783 outPath=0x796ffbb0 outPath_count=0 outPath_data=0x1e gpsResult_bytes20=d4000000000000005069bdc7050000001e000000000000000000000000000000880a3ba201000000010000000200000001ee1e9205000000483f084301000000 gpsResult_u20=212/0xd4 gpsResult_u24=0/0x0 gpsResult_ptr28=0x5c7bd6950 gpsResult_vec20_data=0xd4 gpsResult_vec20_count=5 gpsResult_vec20s16_data=0xd4 gpsResult_vec20s16_count=5 gpsResult_u2c=5/0x5 gpsResult_u30=30/0x1e gpsResult_u30lo=30/0x1e gpsResult_u34hi=0/0x0 gpsResult_ptr28_capacity30=30 gpsResult_ptr28_count34=0 gpsResult_vec38_data=0 gpsResult_vec38_count=0 gpsResult_flags40=2696/0xa88 gpsResult_state42=59 gpsResult_u48=8589934593/0x200000001 gpsResult_u50=23926337025/0x5921eee01
|
||||||
File diff suppressed because one or more lines are too long
Binary file not shown.
|
After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 983 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.3 MiB |
@@ -0,0 +1,25 @@
|
|||||||
|
EdgeWeightGPS RED4ext package
|
||||||
|
|
||||||
|
Install:
|
||||||
|
Copy the red4ext folder from this package into the Cyberpunk 2077 game folder.
|
||||||
|
The final layout should include:
|
||||||
|
|
||||||
|
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/EdgeWeightGPS.dll
|
||||||
|
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/momentum_weights.bin
|
||||||
|
Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/solver_weights.bin
|
||||||
|
|
||||||
|
Default tuning:
|
||||||
|
momentum_weights.bin = 80.0 fixed ordinary-edge penalty
|
||||||
|
solver_weights.bin = 1.0 neutral highway multiplier
|
||||||
|
|
||||||
|
Notes:
|
||||||
|
The plugin changes player GPS route scoring by adding a fixed cost to ordinary
|
||||||
|
edge expansion in the native GPS solver. This favors smoother routes with fewer
|
||||||
|
short-segment stair-steps and was validated in-game on long highway routes,
|
||||||
|
City Center routes, and local Watson/Westbrook routes.
|
||||||
|
|
||||||
|
Tuning:
|
||||||
|
momentum_weights.bin is a single little-endian float32 and is hot-reloaded while
|
||||||
|
the game is running. Set it to 0.0 to disable the fixed-edge penalty. Values
|
||||||
|
around 80.0 are the current validated default. 160.0 was tested and is too high:
|
||||||
|
it can trigger bad hairpins or fallback-style routing.
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
ヘフL?
|
||||||
Binary file not shown.
@@ -0,0 +1 @@
|
|||||||
|
fff?
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
33�>
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
333?
|
||||||
Binary file not shown.
@@ -102,13 +102,15 @@ constexpr bool kEnableVerboseMappinRouteState = false;
|
|||||||
constexpr bool kEnableGpsMultiplierHooks = false;
|
constexpr bool kEnableGpsMultiplierHooks = false;
|
||||||
constexpr bool kEnableGpsAuxMultiplierHook = false;
|
constexpr bool kEnableGpsAuxMultiplierHook = false;
|
||||||
constexpr bool kEnableGpsMultiplierSignatureTrace = false;
|
constexpr bool kEnableGpsMultiplierSignatureTrace = false;
|
||||||
constexpr bool kEnableGpsNodeMultiplierInlinePatch = false;
|
constexpr bool kEnableGpsNodeMultiplierInlinePatch = true;
|
||||||
|
constexpr bool kEnableGpsMomentumPenaltyInlinePatch = true;
|
||||||
constexpr bool kEnableGpsCostTablePatch = false;
|
constexpr bool kEnableGpsCostTablePatch = false;
|
||||||
constexpr bool kEnableGpsProviderClassPatch = false;
|
constexpr bool kEnableGpsProviderClassPatch = false;
|
||||||
constexpr bool kEnableGpsProviderClassPatchTrace = false;
|
constexpr bool kEnableGpsProviderClassPatchTrace = false;
|
||||||
constexpr bool kEnableGpsTraceHooks = true;
|
constexpr bool kEnableGpsTraceHooks = true;
|
||||||
constexpr bool kEnableGpsQueryLifecycleHooks = false;
|
constexpr bool kEnableGpsQueryLifecycleHooks = false;
|
||||||
constexpr bool kEnableGpsQueryResultTraceHooks = true;
|
constexpr bool kEnableGpsQueryResultTraceHooks = true;
|
||||||
|
constexpr bool kEnableGpsQueryResultRecordDump = false;
|
||||||
constexpr bool kEnableGpsAsyncTrafficProbe = false;
|
constexpr bool kEnableGpsAsyncTrafficProbe = false;
|
||||||
constexpr bool kEnableGpsTrafficEdgeWeightPatch = false;
|
constexpr bool kEnableGpsTrafficEdgeWeightPatch = false;
|
||||||
constexpr bool kEnableGpsSpatialEdgeWeightPatch = false;
|
constexpr bool kEnableGpsSpatialEdgeWeightPatch = false;
|
||||||
@@ -197,6 +199,9 @@ constexpr uintptr_t kGpsFilteredCostProviderVtableRva = 0x2AE60F8;
|
|||||||
constexpr uintptr_t kGpsAuxMultiplierRva = 0x040BB00;
|
constexpr uintptr_t kGpsAuxMultiplierRva = 0x040BB00;
|
||||||
constexpr uintptr_t kGpsNodeMultiplierRva = 0x040BB40;
|
constexpr uintptr_t kGpsNodeMultiplierRva = 0x040BB40;
|
||||||
constexpr uintptr_t kGpsNodeMultiplierRoadTailRva = 0x040BB98;
|
constexpr uintptr_t kGpsNodeMultiplierRoadTailRva = 0x040BB98;
|
||||||
|
constexpr uintptr_t kGpsRelaxUpdateRva = 0x040BA58;
|
||||||
|
constexpr uintptr_t kGpsExpandListARelaxPatchRva = 0x040B49A;
|
||||||
|
constexpr uintptr_t kGpsExpandListBRelaxPatchRva = 0x040B6C3;
|
||||||
constexpr uintptr_t kGpsCostMultiplierTableRva = 0x3154D28;
|
constexpr uintptr_t kGpsCostMultiplierTableRva = 0x3154D28;
|
||||||
constexpr uint64_t kGpsResolveTraceWindowMs = 1200;
|
constexpr uint64_t kGpsResolveTraceWindowMs = 1200;
|
||||||
constexpr uint32_t kGpsResolveSelectedRetLogLimit = 24;
|
constexpr uint32_t kGpsResolveSelectedRetLogLimit = 24;
|
||||||
@@ -213,10 +218,14 @@ constexpr uint16_t kTrafficLaneFlagNoAiDriving = 0x2000;
|
|||||||
constexpr uint16_t kTrafficLaneFlagHighway = 0x4000;
|
constexpr uint16_t kTrafficLaneFlagHighway = 0x4000;
|
||||||
constexpr uint16_t kTrafficLaneFlagNoAutodrive = 0x8000;
|
constexpr uint16_t kTrafficLaneFlagNoAutodrive = 0x8000;
|
||||||
constexpr uintptr_t kMinimumReadableAddress = 0x10000;
|
constexpr uintptr_t kMinimumReadableAddress = 0x10000;
|
||||||
constexpr float kGpsSolverHighwayMultiplier = 0.35f;
|
constexpr float kGpsSolverHighwayMultiplierDefault = 0.80f;
|
||||||
constexpr float kGpsSolverGpsOnlyMultiplier = 1.10f;
|
constexpr float kGpsSolverGpsOnlyMultiplier = 1.10f;
|
||||||
constexpr float kGpsSolverPavementMultiplier = 1.25f;
|
constexpr float kGpsSolverPavementMultiplier = 1.25f;
|
||||||
constexpr size_t kGpsNodeMultiplierRoadTailPatchSize = 14;
|
constexpr size_t kGpsNodeMultiplierRoadTailPatchSize = 14;
|
||||||
|
constexpr size_t kGpsMomentumRelaxPatchSize = 23;
|
||||||
|
constexpr size_t kGpsMomentumPenaltyCaveSize = 96;
|
||||||
|
constexpr float kGpsMomentumFixedEdgePenaltyDefault = 80.0f;
|
||||||
|
constexpr float kGpsMomentumFixedEdgePenaltyMax = 1000.0f;
|
||||||
constexpr std::array<float, 8> kGpsSolverNonRoadMultipliers = {
|
constexpr std::array<float, 8> kGpsSolverNonRoadMultipliers = {
|
||||||
10.0f, 6.0f, 2.0f, 0.0f, 4.0f, 2.5f, 1.5f, 0.0f,
|
10.0f, 6.0f, 2.0f, 0.0f, 4.0f, 2.5f, 1.5f, 0.0f,
|
||||||
};
|
};
|
||||||
@@ -226,7 +235,9 @@ constexpr float kGpsSpatialRoadMultiplier = 1.0f;
|
|||||||
constexpr float kGpsSpatialGpsOnlyMultiplier = 1.20f;
|
constexpr float kGpsSpatialGpsOnlyMultiplier = 1.20f;
|
||||||
constexpr float kGpsSpatialPavementMultiplier = 1.35f;
|
constexpr float kGpsSpatialPavementMultiplier = 1.35f;
|
||||||
constexpr float kGpsSpatialUnknownMultiplier = 1.05f;
|
constexpr float kGpsSpatialUnknownMultiplier = 1.05f;
|
||||||
|
constexpr uint64_t kGpsSolverWeightsReloadIntervalMs = 500;
|
||||||
constexpr uint64_t kGpsSpatialWeightsReloadIntervalMs = 500;
|
constexpr uint64_t kGpsSpatialWeightsReloadIntervalMs = 500;
|
||||||
|
constexpr uint64_t kGpsMomentumWeightsReloadIntervalMs = 500;
|
||||||
|
|
||||||
struct GpsProviderClassOverride
|
struct GpsProviderClassOverride
|
||||||
{
|
{
|
||||||
@@ -244,6 +255,17 @@ constexpr std::array<GpsProviderClassOverride, 5> kGpsProviderClassOverrides = {
|
|||||||
|
|
||||||
constexpr std::array<size_t, 6> kGpsProviderClassProbeIds = {1, 3, 4, 5, 14, 15};
|
constexpr std::array<size_t, 6> kGpsProviderClassProbeIds = {1, 3, 4, 5, 14, 15};
|
||||||
|
|
||||||
|
struct GpsMomentumPenaltyPatchSite
|
||||||
|
{
|
||||||
|
const char* name;
|
||||||
|
uintptr_t targetRva;
|
||||||
|
std::atomic<uint64_t>* counter = nullptr;
|
||||||
|
std::array<uint8_t, kGpsMomentumRelaxPatchSize> original{};
|
||||||
|
void* cave = nullptr;
|
||||||
|
uint8_t* penaltyConstant = nullptr;
|
||||||
|
bool applied = false;
|
||||||
|
};
|
||||||
|
|
||||||
HMODULE gModule = nullptr;
|
HMODULE gModule = nullptr;
|
||||||
std::mutex gLogMutex;
|
std::mutex gLogMutex;
|
||||||
RED4ext::v1::PluginHandle gHandle = nullptr;
|
RED4ext::v1::PluginHandle gHandle = nullptr;
|
||||||
@@ -327,10 +349,18 @@ uint32_t gGpsResolveTraceWindowSerial = 0;
|
|||||||
std::array<uint32_t, 64> gGpsEdgeCostClassLogCounts{};
|
std::array<uint32_t, 64> gGpsEdgeCostClassLogCounts{};
|
||||||
std::array<uint8_t, kGpsNodeMultiplierRoadTailPatchSize> gGpsNodeMultiplierRoadTailOriginal{};
|
std::array<uint8_t, kGpsNodeMultiplierRoadTailPatchSize> gGpsNodeMultiplierRoadTailOriginal{};
|
||||||
void* gGpsNodeMultiplierRoadTailCave = nullptr;
|
void* gGpsNodeMultiplierRoadTailCave = nullptr;
|
||||||
|
uint8_t* gGpsNodeMultiplierRoadTailHighwayConstant = nullptr;
|
||||||
bool gGpsNodeMultiplierRoadTailPatchApplied = false;
|
bool gGpsNodeMultiplierRoadTailPatchApplied = false;
|
||||||
|
alignas(8) std::atomic<uint64_t> gGpsMomentumPenaltyCallsA{0};
|
||||||
|
alignas(8) std::atomic<uint64_t> gGpsMomentumPenaltyCallsB{0};
|
||||||
|
std::array<GpsMomentumPenaltyPatchSite, 2> gGpsMomentumPenaltyPatchSites = {{
|
||||||
|
{"expand-list-a", kGpsExpandListARelaxPatchRva, &gGpsMomentumPenaltyCallsA},
|
||||||
|
{"expand-list-b", kGpsExpandListBRelaxPatchRva, &gGpsMomentumPenaltyCallsB},
|
||||||
|
}};
|
||||||
std::mutex gGpsCostLogMutex;
|
std::mutex gGpsCostLogMutex;
|
||||||
std::mutex gGpsAsyncLogMutex;
|
std::mutex gGpsAsyncLogMutex;
|
||||||
std::mutex gGpsCostTablePatchMutex;
|
std::mutex gGpsCostTablePatchMutex;
|
||||||
|
std::mutex gGpsSolverWeightsMutex;
|
||||||
uint64_t gLogStartTick = 0;
|
uint64_t gLogStartTick = 0;
|
||||||
uint64_t gLogFrequency = 0;
|
uint64_t gLogFrequency = 0;
|
||||||
void* gMappinSetTrackedTarget = nullptr;
|
void* gMappinSetTrackedTarget = nullptr;
|
||||||
@@ -354,10 +384,13 @@ struct TrackedGpsQuery
|
|||||||
uint32_t submitCall = 0;
|
uint32_t submitCall = 0;
|
||||||
uint32_t resultFetchCalls = 0;
|
uint32_t resultFetchCalls = 0;
|
||||||
uint32_t statusCalls = 0;
|
uint32_t statusCalls = 0;
|
||||||
|
uint64_t momentumCallsAStart = 0;
|
||||||
|
uint64_t momentumCallsBStart = 0;
|
||||||
|
bool momentumSummaryLogged = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
std::mutex gTrackedGpsQueryMutex;
|
std::mutex gTrackedGpsQueryMutex;
|
||||||
std::array<TrackedGpsQuery, 32> gTrackedGpsQueries{};
|
std::array<TrackedGpsQuery, 128> gTrackedGpsQueries{};
|
||||||
uint32_t gTrackedGpsQueryNext = 0;
|
uint32_t gTrackedGpsQueryNext = 0;
|
||||||
|
|
||||||
struct GpsEdgeCostSample
|
struct GpsEdgeCostSample
|
||||||
@@ -569,10 +602,19 @@ std::array<std::atomic<float>, 5> gGpsSpatialMultipliers = {
|
|||||||
kGpsSpatialPavementMultiplier,
|
kGpsSpatialPavementMultiplier,
|
||||||
kGpsSpatialUnknownMultiplier,
|
kGpsSpatialUnknownMultiplier,
|
||||||
};
|
};
|
||||||
|
std::atomic<float> gGpsSolverHighwayMultiplier{kGpsSolverHighwayMultiplierDefault};
|
||||||
|
std::atomic<float> gGpsMomentumFixedEdgePenalty{kGpsMomentumFixedEdgePenaltyDefault};
|
||||||
std::mutex gGpsSpatialWeightsMutex;
|
std::mutex gGpsSpatialWeightsMutex;
|
||||||
|
std::mutex gGpsMomentumWeightsMutex;
|
||||||
|
std::atomic<uint64_t> gGpsSolverWeightsNextReloadCheckMs = 0;
|
||||||
std::atomic<uint64_t> gGpsSpatialWeightsNextReloadCheckMs = 0;
|
std::atomic<uint64_t> gGpsSpatialWeightsNextReloadCheckMs = 0;
|
||||||
|
std::atomic<uint64_t> gGpsMomentumWeightsNextReloadCheckMs = 0;
|
||||||
|
std::filesystem::file_time_type gGpsSolverWeightsLastWriteTime{};
|
||||||
std::filesystem::file_time_type gGpsSpatialWeightsLastWriteTime{};
|
std::filesystem::file_time_type gGpsSpatialWeightsLastWriteTime{};
|
||||||
|
std::filesystem::file_time_type gGpsMomentumWeightsLastWriteTime{};
|
||||||
|
bool gGpsSolverWeightsFileKnown = false;
|
||||||
bool gGpsSpatialWeightsFileKnown = false;
|
bool gGpsSpatialWeightsFileKnown = false;
|
||||||
|
bool gGpsMomentumWeightsFileKnown = false;
|
||||||
|
|
||||||
uintptr_t GetImageBase();
|
uintptr_t GetImageBase();
|
||||||
|
|
||||||
@@ -598,6 +640,16 @@ std::filesystem::path GetSpatialWeightsPath()
|
|||||||
return GetPluginDirectory() / L"spatial_weights.bin";
|
return GetPluginDirectory() / L"spatial_weights.bin";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::filesystem::path GetSolverWeightsPath()
|
||||||
|
{
|
||||||
|
return GetPluginDirectory() / L"solver_weights.bin";
|
||||||
|
}
|
||||||
|
|
||||||
|
std::filesystem::path GetMomentumWeightsPath()
|
||||||
|
{
|
||||||
|
return GetPluginDirectory() / L"momentum_weights.bin";
|
||||||
|
}
|
||||||
|
|
||||||
uint64_t GetElapsedMs()
|
uint64_t GetElapsedMs()
|
||||||
{
|
{
|
||||||
if (!gLogStartTick || !gLogFrequency)
|
if (!gLogStartTick || !gLogFrequency)
|
||||||
@@ -652,6 +704,413 @@ void WriteFloat(uint8_t* aTarget, float aValue)
|
|||||||
std::memcpy(aTarget, &aValue, sizeof(aValue));
|
std::memcpy(aTarget, &aValue, sizeof(aValue));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool IsUsableSolverMultiplier(float aValue)
|
||||||
|
{
|
||||||
|
return std::isfinite(aValue) && aValue > 0.0f && aValue < 20.0f;
|
||||||
|
}
|
||||||
|
|
||||||
|
void StoreGpsSolverHighwayMultiplier(float aValue)
|
||||||
|
{
|
||||||
|
gGpsSolverHighwayMultiplier.store(aValue, std::memory_order_relaxed);
|
||||||
|
|
||||||
|
if (gGpsNodeMultiplierRoadTailHighwayConstant)
|
||||||
|
{
|
||||||
|
WriteFloat(gGpsNodeMultiplierRoadTailHighwayConstant, aValue);
|
||||||
|
FlushInstructionCache(GetCurrentProcess(), gGpsNodeMultiplierRoadTailHighwayConstant, sizeof(aValue));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LogGpsSolverHighwayMultiplier(std::string_view aPrefix, float aValue)
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << aPrefix << " highway=" << aValue;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsUsableMomentumPenalty(float aValue)
|
||||||
|
{
|
||||||
|
return std::isfinite(aValue) && aValue >= 0.0f && aValue <= kGpsMomentumFixedEdgePenaltyMax;
|
||||||
|
}
|
||||||
|
|
||||||
|
void StoreGpsMomentumFixedEdgePenalty(float aValue)
|
||||||
|
{
|
||||||
|
gGpsMomentumFixedEdgePenalty.store(aValue, std::memory_order_relaxed);
|
||||||
|
|
||||||
|
for (auto& site : gGpsMomentumPenaltyPatchSites)
|
||||||
|
{
|
||||||
|
if (!site.penaltyConstant)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
WriteFloat(site.penaltyConstant, aValue);
|
||||||
|
FlushInstructionCache(GetCurrentProcess(), site.penaltyConstant, sizeof(aValue));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void LogGpsMomentumFixedEdgePenalty(std::string_view aPrefix, float aValue)
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << aPrefix << " fixedEdgePenalty=" << aValue;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
void EmitAbsoluteRaxCall(uint8_t* aCave, size_t& aOffset, uintptr_t aTarget)
|
||||||
|
{
|
||||||
|
aCave[aOffset++] = 0x48; // mov rax, imm64
|
||||||
|
aCave[aOffset++] = 0xB8;
|
||||||
|
std::memcpy(aCave + aOffset, &aTarget, sizeof(aTarget));
|
||||||
|
aOffset += sizeof(aTarget);
|
||||||
|
aCave[aOffset++] = 0xFF; // call rax
|
||||||
|
aCave[aOffset++] = 0xD0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void EmitAbsoluteRaxJump(uint8_t* aCave, size_t& aOffset, uintptr_t aTarget)
|
||||||
|
{
|
||||||
|
aCave[aOffset++] = 0x48; // mov rax, imm64
|
||||||
|
aCave[aOffset++] = 0xB8;
|
||||||
|
std::memcpy(aCave + aOffset, &aTarget, sizeof(aTarget));
|
||||||
|
aOffset += sizeof(aTarget);
|
||||||
|
aCave[aOffset++] = 0xFF; // jmp rax
|
||||||
|
aCave[aOffset++] = 0xE0;
|
||||||
|
}
|
||||||
|
|
||||||
|
void EmitAbsoluteLockedIncrement(uint8_t* aCave, size_t& aOffset, uintptr_t aTarget)
|
||||||
|
{
|
||||||
|
aCave[aOffset++] = 0x48; // mov rax, imm64
|
||||||
|
aCave[aOffset++] = 0xB8;
|
||||||
|
std::memcpy(aCave + aOffset, &aTarget, sizeof(aTarget));
|
||||||
|
aOffset += sizeof(aTarget);
|
||||||
|
aCave[aOffset++] = 0xF0; // lock inc qword ptr [rax]
|
||||||
|
aCave[aOffset++] = 0x48;
|
||||||
|
aCave[aOffset++] = 0xFF;
|
||||||
|
aCave[aOffset++] = 0x00;
|
||||||
|
}
|
||||||
|
|
||||||
|
void BuildAbsoluteJumpPatch(uint8_t* aPatch, size_t aPatchSize, uintptr_t aTarget)
|
||||||
|
{
|
||||||
|
size_t offset = 0;
|
||||||
|
aPatch[offset++] = 0xFF; // jmp qword ptr [rip+0]
|
||||||
|
aPatch[offset++] = 0x25;
|
||||||
|
aPatch[offset++] = 0x00;
|
||||||
|
aPatch[offset++] = 0x00;
|
||||||
|
aPatch[offset++] = 0x00;
|
||||||
|
aPatch[offset++] = 0x00;
|
||||||
|
std::memcpy(aPatch + offset, &aTarget, sizeof(aTarget));
|
||||||
|
offset += sizeof(aTarget);
|
||||||
|
while (offset < aPatchSize)
|
||||||
|
{
|
||||||
|
aPatch[offset++] = 0x90;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MaybeReloadGpsSolverWeights(bool aForce = false)
|
||||||
|
{
|
||||||
|
if (!kEnableGpsNodeMultiplierInlinePatch)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto nowMs = GetElapsedMs();
|
||||||
|
if (!aForce && nowMs < gGpsSolverWeightsNextReloadCheckMs.load(std::memory_order_relaxed))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::lock_guard lock(gGpsSolverWeightsMutex);
|
||||||
|
if (!aForce && nowMs < gGpsSolverWeightsNextReloadCheckMs.load(std::memory_order_relaxed))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
gGpsSolverWeightsNextReloadCheckMs.store(nowMs + kGpsSolverWeightsReloadIntervalMs, std::memory_order_relaxed);
|
||||||
|
|
||||||
|
const auto path = GetSolverWeightsPath();
|
||||||
|
std::error_code error;
|
||||||
|
const auto writeTime = std::filesystem::last_write_time(path, error);
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
if (aForce || gGpsSolverWeightsFileKnown)
|
||||||
|
{
|
||||||
|
gGpsSolverWeightsFileKnown = false;
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "solver weights file unavailable path=" << path.string()
|
||||||
|
<< " using highway=" << gGpsSolverHighwayMultiplier.load(std::memory_order_relaxed);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!aForce && gGpsSolverWeightsFileKnown && writeTime == gGpsSolverWeightsLastWriteTime)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
float highwayMultiplier = 0.0f;
|
||||||
|
std::ifstream input(path, std::ios::binary);
|
||||||
|
input.read(reinterpret_cast<char*>(&highwayMultiplier), static_cast<std::streamsize>(sizeof(highwayMultiplier)));
|
||||||
|
if (input.gcount() != static_cast<std::streamsize>(sizeof(highwayMultiplier)))
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "solver weights reload skipped path=" << path.string() << " bytes=" << input.gcount()
|
||||||
|
<< " expected=" << sizeof(highwayMultiplier);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
gGpsSolverWeightsFileKnown = true;
|
||||||
|
gGpsSolverWeightsLastWriteTime = writeTime;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!IsUsableSolverMultiplier(highwayMultiplier))
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "solver weights reload skipped path=" << path.string() << " invalidHighway=" << highwayMultiplier;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
gGpsSolverWeightsFileKnown = true;
|
||||||
|
gGpsSolverWeightsLastWriteTime = writeTime;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StoreGpsSolverHighwayMultiplier(highwayMultiplier);
|
||||||
|
gGpsSolverWeightsFileKnown = true;
|
||||||
|
gGpsSolverWeightsLastWriteTime = writeTime;
|
||||||
|
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "solver weights reloaded path=" << path.string() << " highway=" << highwayMultiplier;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
void MaybeReloadGpsMomentumWeights(bool aForce = false)
|
||||||
|
{
|
||||||
|
if (!kEnableGpsMomentumPenaltyInlinePatch)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto nowMs = GetElapsedMs();
|
||||||
|
if (!aForce && nowMs < gGpsMomentumWeightsNextReloadCheckMs.load(std::memory_order_relaxed))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::lock_guard lock(gGpsMomentumWeightsMutex);
|
||||||
|
if (!aForce && nowMs < gGpsMomentumWeightsNextReloadCheckMs.load(std::memory_order_relaxed))
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
gGpsMomentumWeightsNextReloadCheckMs.store(nowMs + kGpsMomentumWeightsReloadIntervalMs,
|
||||||
|
std::memory_order_relaxed);
|
||||||
|
|
||||||
|
const auto path = GetMomentumWeightsPath();
|
||||||
|
std::error_code error;
|
||||||
|
const auto writeTime = std::filesystem::last_write_time(path, error);
|
||||||
|
if (error)
|
||||||
|
{
|
||||||
|
if (aForce || gGpsMomentumWeightsFileKnown)
|
||||||
|
{
|
||||||
|
gGpsMomentumWeightsFileKnown = false;
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "momentum weights file unavailable path=" << path.string()
|
||||||
|
<< " using fixedEdgePenalty=" << gGpsMomentumFixedEdgePenalty.load(std::memory_order_relaxed);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!aForce && gGpsMomentumWeightsFileKnown && writeTime == gGpsMomentumWeightsLastWriteTime)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
float fixedEdgePenalty = 0.0f;
|
||||||
|
std::ifstream input(path, std::ios::binary);
|
||||||
|
input.read(reinterpret_cast<char*>(&fixedEdgePenalty), static_cast<std::streamsize>(sizeof(fixedEdgePenalty)));
|
||||||
|
if (input.gcount() != static_cast<std::streamsize>(sizeof(fixedEdgePenalty)))
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "momentum weights reload skipped path=" << path.string() << " bytes=" << input.gcount()
|
||||||
|
<< " expected=" << sizeof(fixedEdgePenalty);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
gGpsMomentumWeightsFileKnown = true;
|
||||||
|
gGpsMomentumWeightsLastWriteTime = writeTime;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!IsUsableMomentumPenalty(fixedEdgePenalty))
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "momentum weights reload skipped path=" << path.string()
|
||||||
|
<< " invalidFixedEdgePenalty=" << fixedEdgePenalty;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
gGpsMomentumWeightsFileKnown = true;
|
||||||
|
gGpsMomentumWeightsLastWriteTime = writeTime;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
StoreGpsMomentumFixedEdgePenalty(fixedEdgePenalty);
|
||||||
|
gGpsMomentumWeightsFileKnown = true;
|
||||||
|
gGpsMomentumWeightsLastWriteTime = writeTime;
|
||||||
|
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "momentum weights reloaded path=" << path.string() << " fixedEdgePenalty=" << fixedEdgePenalty;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
void RemoveGpsMomentumPenaltyInlinePatch();
|
||||||
|
|
||||||
|
bool InstallGpsMomentumPenaltyPatchSite(GpsMomentumPenaltyPatchSite& aSite,
|
||||||
|
std::initializer_list<uint8_t> aAddCurrentCostInstruction)
|
||||||
|
{
|
||||||
|
if (aSite.applied)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto* cave = static_cast<uint8_t*>(
|
||||||
|
VirtualAlloc(nullptr, kGpsMomentumPenaltyCaveSize, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE));
|
||||||
|
if (!cave)
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-penalty-inline-patch skipped site=" << aSite.name << " reason=alloc-failed";
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
size_t offset = 0;
|
||||||
|
const auto emit = [&](std::initializer_list<uint8_t> aBytes) {
|
||||||
|
for (auto byte : aBytes)
|
||||||
|
{
|
||||||
|
cave[offset++] = byte;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
// Replaces the final g/f assembly before 0x40ba58. The overwritten
|
||||||
|
// vanilla block differs only in which XMM register stores current.g.
|
||||||
|
emit(aAddCurrentCostInstruction);
|
||||||
|
|
||||||
|
const auto addPenaltyOffset = offset;
|
||||||
|
emit({0xF3, 0x0F, 0x58, 0x35, 0x00, 0x00, 0x00, 0x00}); // addss xmm6, [rip+disp32]
|
||||||
|
if (aSite.counter)
|
||||||
|
{
|
||||||
|
EmitAbsoluteLockedIncrement(cave, offset, reinterpret_cast<uintptr_t>(aSite.counter));
|
||||||
|
}
|
||||||
|
|
||||||
|
emit({0xF3, 0x0F, 0x58, 0xC6}); // addss xmm0, xmm6
|
||||||
|
emit({0x0F, 0x28, 0xDE}); // movaps xmm3, xmm6
|
||||||
|
emit({0xF3, 0x0F, 0x11, 0x44, 0x24, 0x20}); // movss [rsp+0x20], xmm0
|
||||||
|
EmitAbsoluteRaxCall(cave, offset, GetImageBase() + kGpsRelaxUpdateRva);
|
||||||
|
EmitAbsoluteRaxJump(cave, offset, GetImageBase() + aSite.targetRva + kGpsMomentumRelaxPatchSize);
|
||||||
|
|
||||||
|
while ((offset % alignof(float)) != 0)
|
||||||
|
{
|
||||||
|
cave[offset++] = 0x90;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto penaltyConstantOffset = offset;
|
||||||
|
WriteFloat(cave + offset, gGpsMomentumFixedEdgePenalty.load(std::memory_order_relaxed));
|
||||||
|
offset += sizeof(float);
|
||||||
|
|
||||||
|
const auto caveAddress = reinterpret_cast<uintptr_t>(cave);
|
||||||
|
WriteInt32(cave + addPenaltyOffset + 4,
|
||||||
|
static_cast<int32_t>((caveAddress + penaltyConstantOffset) - (caveAddress + addPenaltyOffset + 8)));
|
||||||
|
|
||||||
|
auto* target = reinterpret_cast<uint8_t*>(GetImageBase() + aSite.targetRva);
|
||||||
|
std::memcpy(aSite.original.data(), target, aSite.original.size());
|
||||||
|
|
||||||
|
std::array<uint8_t, kGpsMomentumRelaxPatchSize> patch{};
|
||||||
|
BuildAbsoluteJumpPatch(patch.data(), patch.size(), caveAddress);
|
||||||
|
|
||||||
|
DWORD oldProtect = 0;
|
||||||
|
if (!VirtualProtect(target, patch.size(), PAGE_EXECUTE_READWRITE, &oldProtect))
|
||||||
|
{
|
||||||
|
VirtualFree(cave, 0, MEM_RELEASE);
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-penalty-inline-patch skipped site=" << aSite.name << " reason=protect-failed";
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::memcpy(target, patch.data(), patch.size());
|
||||||
|
FlushInstructionCache(GetCurrentProcess(), target, patch.size());
|
||||||
|
|
||||||
|
DWORD ignoredProtect = 0;
|
||||||
|
VirtualProtect(target, patch.size(), oldProtect, &ignoredProtect);
|
||||||
|
|
||||||
|
aSite.cave = cave;
|
||||||
|
aSite.penaltyConstant = cave + penaltyConstantOffset;
|
||||||
|
aSite.applied = true;
|
||||||
|
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-penalty-inline-patch applied site=" << aSite.name << " target_rva=0x" << std::hex
|
||||||
|
<< aSite.targetRva << " cave=" << static_cast<void*>(cave) << std::dec
|
||||||
|
<< " fixedEdgePenalty=" << gGpsMomentumFixedEdgePenalty.load(std::memory_order_relaxed);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InstallGpsMomentumPenaltyInlinePatch()
|
||||||
|
{
|
||||||
|
if (!kEnableGpsMomentumPenaltyInlinePatch)
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
const bool firstOk =
|
||||||
|
InstallGpsMomentumPenaltyPatchSite(gGpsMomentumPenaltyPatchSites[0],
|
||||||
|
{0xF3, 0x41, 0x0F, 0x58, 0xF6}); // addss xmm6, xmm14
|
||||||
|
const bool secondOk =
|
||||||
|
InstallGpsMomentumPenaltyPatchSite(gGpsMomentumPenaltyPatchSites[1],
|
||||||
|
{0xF3, 0x41, 0x0F, 0x58, 0xF4}); // addss xmm6, xmm12
|
||||||
|
|
||||||
|
if (!firstOk || !secondOk)
|
||||||
|
{
|
||||||
|
RemoveGpsMomentumPenaltyInlinePatch();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
void RemoveGpsMomentumPenaltyInlinePatch()
|
||||||
|
{
|
||||||
|
for (auto& site : gGpsMomentumPenaltyPatchSites)
|
||||||
|
{
|
||||||
|
if (!site.applied)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto* target = reinterpret_cast<uint8_t*>(GetImageBase() + site.targetRva);
|
||||||
|
DWORD oldProtect = 0;
|
||||||
|
if (VirtualProtect(target, site.original.size(), PAGE_EXECUTE_READWRITE, &oldProtect))
|
||||||
|
{
|
||||||
|
std::memcpy(target, site.original.data(), site.original.size());
|
||||||
|
FlushInstructionCache(GetCurrentProcess(), target, site.original.size());
|
||||||
|
|
||||||
|
DWORD ignoredProtect = 0;
|
||||||
|
VirtualProtect(target, site.original.size(), oldProtect, &ignoredProtect);
|
||||||
|
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-penalty-inline-patch restored site=" << site.name;
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-penalty-inline-patch restore-failed site=" << site.name
|
||||||
|
<< " reason=protect-failed";
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
|
||||||
|
if (site.cave)
|
||||||
|
{
|
||||||
|
VirtualFree(site.cave, 0, MEM_RELEASE);
|
||||||
|
site.cave = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
site.penaltyConstant = nullptr;
|
||||||
|
site.applied = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool InstallGpsNodeMultiplierInlinePatch()
|
bool InstallGpsNodeMultiplierInlinePatch()
|
||||||
{
|
{
|
||||||
if (!kEnableGpsNodeMultiplierInlinePatch || gGpsNodeMultiplierRoadTailPatchApplied)
|
if (!kEnableGpsNodeMultiplierInlinePatch || gGpsNodeMultiplierRoadTailPatchApplied)
|
||||||
@@ -659,7 +1118,7 @@ bool InstallGpsNodeMultiplierInlinePatch()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
constexpr size_t kCaveSize = 64;
|
constexpr size_t kCaveSize = 80;
|
||||||
auto* cave = static_cast<uint8_t*>(
|
auto* cave = static_cast<uint8_t*>(
|
||||||
VirtualAlloc(nullptr, kCaveSize, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE));
|
VirtualAlloc(nullptr, kCaveSize, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE));
|
||||||
if (!cave)
|
if (!cave)
|
||||||
@@ -668,8 +1127,9 @@ bool InstallGpsNodeMultiplierInlinePatch()
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Replaces the road-tail at 0x40bb98. This preserves the vanilla node93
|
// Replaces the road-tail at 0x40bb98. Reaching this block already means
|
||||||
// multiplier, then applies the highway multiplier before returning.
|
// vanilla selected one of the road-style solver modes (0/2/4), so keep
|
||||||
|
// the change broad enough for manual GPS and autodrive-like callers.
|
||||||
size_t offset = 0;
|
size_t offset = 0;
|
||||||
const auto emit = [&](std::initializer_list<uint8_t> aBytes) {
|
const auto emit = [&](std::initializer_list<uint8_t> aBytes) {
|
||||||
for (auto byte : aBytes)
|
for (auto byte : aBytes)
|
||||||
@@ -691,7 +1151,7 @@ bool InstallGpsNodeMultiplierInlinePatch()
|
|||||||
emit({0xF3, 0x0F, 0x59, 0x05, 0x00, 0x00, 0x00, 0x00}); // mulss xmm0, [rip+disp32]
|
emit({0xF3, 0x0F, 0x59, 0x05, 0x00, 0x00, 0x00, 0x00}); // mulss xmm0, [rip+disp32]
|
||||||
emit({0xC3}); // ret
|
emit({0xC3}); // ret
|
||||||
|
|
||||||
while (offset < 40)
|
while ((offset % alignof(float)) != 0)
|
||||||
{
|
{
|
||||||
cave[offset++] = 0x90;
|
cave[offset++] = 0x90;
|
||||||
}
|
}
|
||||||
@@ -700,7 +1160,8 @@ bool InstallGpsNodeMultiplierInlinePatch()
|
|||||||
WriteFloat(cave + offset, 1.1f);
|
WriteFloat(cave + offset, 1.1f);
|
||||||
offset += sizeof(float);
|
offset += sizeof(float);
|
||||||
const auto highwayConstantOffset = offset;
|
const auto highwayConstantOffset = offset;
|
||||||
WriteFloat(cave + offset, kGpsSolverHighwayMultiplier);
|
const auto highwayMultiplier = gGpsSolverHighwayMultiplier.load(std::memory_order_relaxed);
|
||||||
|
WriteFloat(cave + offset, highwayMultiplier);
|
||||||
offset += sizeof(float);
|
offset += sizeof(float);
|
||||||
|
|
||||||
const auto caveAddress = reinterpret_cast<uintptr_t>(cave);
|
const auto caveAddress = reinterpret_cast<uintptr_t>(cave);
|
||||||
@@ -743,12 +1204,13 @@ bool InstallGpsNodeMultiplierInlinePatch()
|
|||||||
VirtualProtect(target, sizeof(patch), oldProtect, &ignoredProtect);
|
VirtualProtect(target, sizeof(patch), oldProtect, &ignoredProtect);
|
||||||
|
|
||||||
gGpsNodeMultiplierRoadTailCave = cave;
|
gGpsNodeMultiplierRoadTailCave = cave;
|
||||||
|
gGpsNodeMultiplierRoadTailHighwayConstant = cave + highwayConstantOffset;
|
||||||
gGpsNodeMultiplierRoadTailPatchApplied = true;
|
gGpsNodeMultiplierRoadTailPatchApplied = true;
|
||||||
|
|
||||||
std::ostringstream line;
|
std::ostringstream line;
|
||||||
line << "gps-node-multiplier-inline-patch applied target_rva=0x" << std::hex
|
line << "gps-node-multiplier-inline-patch applied target_rva=0x" << std::hex
|
||||||
<< kGpsNodeMultiplierRoadTailRva << " cave=" << static_cast<void*>(cave)
|
<< kGpsNodeMultiplierRoadTailRva << " cave=" << static_cast<void*>(cave)
|
||||||
<< " highwayMultiplier=" << std::dec << kGpsSolverHighwayMultiplier;
|
<< " highwayMultiplier=" << std::dec << highwayMultiplier << " modes=road-tail";
|
||||||
LogRed4ext(line.str());
|
LogRed4ext(line.str());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -782,6 +1244,7 @@ void RemoveGpsNodeMultiplierInlinePatch()
|
|||||||
gGpsNodeMultiplierRoadTailCave = nullptr;
|
gGpsNodeMultiplierRoadTailCave = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gGpsNodeMultiplierRoadTailHighwayConstant = nullptr;
|
||||||
gGpsNodeMultiplierRoadTailPatchApplied = false;
|
gGpsNodeMultiplierRoadTailPatchApplied = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2232,6 +2695,39 @@ void AppendPathBufferSummary(std::ostringstream& aLine, const char* aPrefix, voi
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AppendGpsResultObjectLightCounts(std::ostringstream& aLine, const char* aPrefix, void* aResultObject)
|
||||||
|
{
|
||||||
|
if (!aResultObject)
|
||||||
|
{
|
||||||
|
aLine << " " << aPrefix << "_result=<null>";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint32_t routeCapacity = 0;
|
||||||
|
uint32_t routeCount = 0;
|
||||||
|
uint32_t pointCount = 0;
|
||||||
|
auto* routeData = ReadPointerField(aResultObject, 0x28);
|
||||||
|
auto* pointData = ReadPointerField(aResultObject, 0x38);
|
||||||
|
TryReadMemory(reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(aResultObject) + 0x30), routeCapacity);
|
||||||
|
TryReadMemory(reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(aResultObject) + 0x34), routeCount);
|
||||||
|
TryReadMemory(reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(aResultObject) + 0x3C), pointCount);
|
||||||
|
|
||||||
|
AppendPointerWithRva(aLine, aPrefix, aResultObject);
|
||||||
|
AppendPointerWithRva(aLine, (std::string(aPrefix) + "_routeData").c_str(), routeData);
|
||||||
|
aLine << " " << aPrefix << "_routeCapacity=" << routeCapacity << " " << aPrefix
|
||||||
|
<< "_routeCount=" << routeCount;
|
||||||
|
AppendPointerWithRva(aLine, (std::string(aPrefix) + "_pointData").c_str(), pointData);
|
||||||
|
aLine << " " << aPrefix << "_pointCount=" << pointCount;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool TryReadGpsResultRouteCount(void* aResultObject, uint32_t& aRouteCount)
|
||||||
|
{
|
||||||
|
aRouteCount = 0;
|
||||||
|
return aResultObject &&
|
||||||
|
TryReadMemory(reinterpret_cast<const void*>(reinterpret_cast<uintptr_t>(aResultObject) + 0x34),
|
||||||
|
aRouteCount);
|
||||||
|
}
|
||||||
|
|
||||||
void AppendGpsResultElementArraySummary(std::ostringstream& aLine, const char* aPrefix, void* aResultObject)
|
void AppendGpsResultElementArraySummary(std::ostringstream& aLine, const char* aPrefix, void* aResultObject)
|
||||||
{
|
{
|
||||||
uint32_t capacity = 0;
|
uint32_t capacity = 0;
|
||||||
@@ -2338,16 +2834,21 @@ bool TryReadUint32FieldValue(void* aObject, uintptr_t aOffset, uint32_t& aValue)
|
|||||||
aValue);
|
aValue);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool IsGpsRoadStyleMode(uint32_t aMode)
|
||||||
|
{
|
||||||
|
return aMode == 0 || aMode == 2 || aMode == 4;
|
||||||
|
}
|
||||||
|
|
||||||
bool IsDrivingRouteJob(void* aRouteSystem, void* aActiveEntry)
|
bool IsDrivingRouteJob(void* aRouteSystem, void* aActiveEntry)
|
||||||
{
|
{
|
||||||
uint32_t mode = 0;
|
uint32_t mode = 0;
|
||||||
if (TryReadUint32FieldValue(aActiveEntry, 0x80, mode) && mode == 2)
|
if (TryReadUint32FieldValue(aActiveEntry, 0x80, mode) && IsGpsRoadStyleMode(mode))
|
||||||
{
|
{
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto* job = ReadPointerField(aRouteSystem, 0x90D0);
|
auto* job = ReadPointerField(aRouteSystem, 0x90D0);
|
||||||
return TryReadUint32FieldValue(job, 0xC4, mode) && mode == 2;
|
return TryReadUint32FieldValue(job, 0xC4, mode) && IsGpsRoadStyleMode(mode);
|
||||||
}
|
}
|
||||||
|
|
||||||
void AppendFloatArray(std::ostringstream& aLine, const char* aLabel, const float* aValues, size_t aCount)
|
void AppendFloatArray(std::ostringstream& aLine, const char* aLabel, const float* aValues, size_t aCount)
|
||||||
@@ -2776,6 +3277,11 @@ void TrackGpsQuery(uint32_t aQueryId, void* aManager, uintptr_t aSubmitReturnRva
|
|||||||
{
|
{
|
||||||
query.submitReturnRva = aSubmitReturnRva;
|
query.submitReturnRva = aSubmitReturnRva;
|
||||||
query.submitCall = aSubmitCall;
|
query.submitCall = aSubmitCall;
|
||||||
|
query.resultFetchCalls = 0;
|
||||||
|
query.statusCalls = 0;
|
||||||
|
query.momentumCallsAStart = gGpsMomentumPenaltyCallsA.load(std::memory_order_relaxed);
|
||||||
|
query.momentumCallsBStart = gGpsMomentumPenaltyCallsB.load(std::memory_order_relaxed);
|
||||||
|
query.momentumSummaryLogged = false;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -2788,6 +3294,9 @@ void TrackGpsQuery(uint32_t aQueryId, void* aManager, uintptr_t aSubmitReturnRva
|
|||||||
query.submitCall = aSubmitCall;
|
query.submitCall = aSubmitCall;
|
||||||
query.resultFetchCalls = 0;
|
query.resultFetchCalls = 0;
|
||||||
query.statusCalls = 0;
|
query.statusCalls = 0;
|
||||||
|
query.momentumCallsAStart = gGpsMomentumPenaltyCallsA.load(std::memory_order_relaxed);
|
||||||
|
query.momentumCallsBStart = gGpsMomentumPenaltyCallsB.load(std::memory_order_relaxed);
|
||||||
|
query.momentumSummaryLogged = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool NoteTrackedGpsQueryResultFetch(uint32_t aQueryId, void* aManager, TrackedGpsQuery& aSnapshot,
|
bool NoteTrackedGpsQueryResultFetch(uint32_t aQueryId, void* aManager, TrackedGpsQuery& aSnapshot,
|
||||||
@@ -2810,6 +3319,31 @@ bool NoteTrackedGpsQueryResultFetch(uint32_t aQueryId, void* aManager, TrackedGp
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool TryMarkTrackedGpsQueryMomentumSummary(uint32_t aQueryId, void* aManager, TrackedGpsQuery& aSnapshot,
|
||||||
|
uint64_t& aCallsA, uint64_t& aCallsB, uint64_t& aGlobalCallsA,
|
||||||
|
uint64_t& aGlobalCallsB)
|
||||||
|
{
|
||||||
|
std::lock_guard lock(gTrackedGpsQueryMutex);
|
||||||
|
|
||||||
|
for (auto& query : gTrackedGpsQueries)
|
||||||
|
{
|
||||||
|
if (!query.active || query.id != aQueryId || query.manager != aManager || query.momentumSummaryLogged)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
aGlobalCallsA = gGpsMomentumPenaltyCallsA.load(std::memory_order_relaxed);
|
||||||
|
aGlobalCallsB = gGpsMomentumPenaltyCallsB.load(std::memory_order_relaxed);
|
||||||
|
aCallsA = aGlobalCallsA - query.momentumCallsAStart;
|
||||||
|
aCallsB = aGlobalCallsB - query.momentumCallsBStart;
|
||||||
|
aSnapshot = query;
|
||||||
|
query.momentumSummaryLogged = true;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
bool NoteTrackedGpsQueryStatus(uint32_t aQueryId, void* aManager, TrackedGpsQuery& aSnapshot,
|
bool NoteTrackedGpsQueryStatus(uint32_t aQueryId, void* aManager, TrackedGpsQuery& aSnapshot,
|
||||||
uint32_t& aPerQueryCall)
|
uint32_t& aPerQueryCall)
|
||||||
{
|
{
|
||||||
@@ -4145,6 +4679,33 @@ bool DetourGpsQueryResultFetch(void* aManager, uint32_t aQueryId, void* aOutPath
|
|||||||
(!isTracked && callCount < kMaxUntrackedSamples && aQueryId < 2))
|
(!isTracked && callCount < kMaxUntrackedSamples && aQueryId < 2))
|
||||||
: (result && isMapRouteQuery);
|
: (result && isMapRouteQuery);
|
||||||
|
|
||||||
|
uint32_t gpsResultRouteCount = 0;
|
||||||
|
const auto hasGpsResultRouteCount = TryReadGpsResultRouteCount(aOutPath, gpsResultRouteCount);
|
||||||
|
if (result && isMapRouteQuery && hasGpsResultRouteCount && gpsResultRouteCount > 0)
|
||||||
|
{
|
||||||
|
TrackedGpsQuery summaryQuery{};
|
||||||
|
uint64_t callsA = 0;
|
||||||
|
uint64_t callsB = 0;
|
||||||
|
uint64_t globalCallsA = 0;
|
||||||
|
uint64_t globalCallsB = 0;
|
||||||
|
if (TryMarkTrackedGpsQueryMomentumSummary(aQueryId, aManager, summaryQuery, callsA, callsB, globalCallsA,
|
||||||
|
globalCallsB))
|
||||||
|
{
|
||||||
|
const auto totalCalls = callsA + callsB;
|
||||||
|
const auto fixedPenalty = gGpsMomentumFixedEdgePenalty.load(std::memory_order_relaxed);
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "gps-momentum-summary queryId=" << aQueryId << " resultFetchCall=" << perQueryCall;
|
||||||
|
AppendTrackedGpsQuery(line, summaryQuery);
|
||||||
|
line << " callsA=" << callsA << " callsB=" << callsB << " callsTotal=" << totalCalls
|
||||||
|
<< " fixedPenalty=" << fixedPenalty
|
||||||
|
<< " penaltyTotal=" << static_cast<double>(totalCalls) * static_cast<double>(fixedPenalty)
|
||||||
|
<< " globalCallsA=" << globalCallsA << " globalCallsB=" << globalCallsB
|
||||||
|
<< " gpsResultRouteCount=" << gpsResultRouteCount;
|
||||||
|
AppendGpsResultObjectLightCounts(line, "gpsResult", aOutPath);
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (shouldLog)
|
if (shouldLog)
|
||||||
{
|
{
|
||||||
std::ostringstream line;
|
std::ostringstream line;
|
||||||
@@ -4159,7 +4720,7 @@ bool DetourGpsQueryResultFetch(void* aManager, uint32_t aQueryId, void* aOutPath
|
|||||||
AppendPointerWithRva(line, "outPath", aOutPath);
|
AppendPointerWithRva(line, "outPath", aOutPath);
|
||||||
AppendReturnRva(line, returnAddress);
|
AppendReturnRva(line, returnAddress);
|
||||||
AppendPathBufferSummary(line, "outPath", aOutPath);
|
AppendPathBufferSummary(line, "outPath", aOutPath);
|
||||||
if (result && isMapRouteQuery)
|
if (kEnableGpsQueryResultRecordDump && result && isMapRouteQuery)
|
||||||
{
|
{
|
||||||
AppendGpsResultObjectSummary(line, "gpsResult", aOutPath);
|
AppendGpsResultObjectSummary(line, "gpsResult", aOutPath);
|
||||||
}
|
}
|
||||||
@@ -4339,7 +4900,7 @@ float GpsSolverNodeWeightMultiplier(uint16_t aFlags)
|
|||||||
{
|
{
|
||||||
if ((aFlags & kTrafficLaneFlagHighway) != 0)
|
if ((aFlags & kTrafficLaneFlagHighway) != 0)
|
||||||
{
|
{
|
||||||
return kGpsSolverHighwayMultiplier;
|
return gGpsSolverHighwayMultiplier.load(std::memory_order_relaxed);
|
||||||
}
|
}
|
||||||
if ((aFlags & kTrafficLaneFlagGpsOnly) != 0)
|
if ((aFlags & kTrafficLaneFlagGpsOnly) != 0)
|
||||||
{
|
{
|
||||||
@@ -5084,7 +5645,7 @@ float DetourGpsNodeMultiplier(void* aJob, void* aNode)
|
|||||||
result = ReadGpsSolverNonRoadMultiplier(retry);
|
result = ReadGpsSolverNonRoadMultiplier(retry);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mode == 2 && std::isfinite(result))
|
if (IsGpsRoadStyleMode(mode) && std::isfinite(result))
|
||||||
{
|
{
|
||||||
result *= GpsSolverNodeWeightMultiplier(nodeFlags);
|
result *= GpsSolverNodeWeightMultiplier(nodeFlags);
|
||||||
}
|
}
|
||||||
@@ -5352,6 +5913,9 @@ bool OnRunningUpdate(void* aApp)
|
|||||||
++gUpdateLogCount;
|
++gUpdateLogCount;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MaybeReloadGpsSolverWeights();
|
||||||
|
MaybeReloadGpsMomentumWeights();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -5420,7 +5984,28 @@ RED4EXT_C_EXPORT bool RED4EXT_CALL Main(RED4ext::v1::PluginHandle aHandle, RED4e
|
|||||||
LogGpsSpatialMultipliers("spatial weights defaults", values);
|
LogGpsSpatialMultipliers("spatial weights defaults", values);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (kEnableGpsNodeMultiplierInlinePatch)
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "solver weights path=" << GetSolverWeightsPath().string();
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
MaybeReloadGpsSolverWeights(true);
|
||||||
|
LogGpsSolverHighwayMultiplier("solver weights active",
|
||||||
|
gGpsSolverHighwayMultiplier.load(std::memory_order_relaxed));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (kEnableGpsMomentumPenaltyInlinePatch)
|
||||||
|
{
|
||||||
|
std::ostringstream line;
|
||||||
|
line << "momentum weights path=" << GetMomentumWeightsPath().string();
|
||||||
|
LogRed4ext(line.str());
|
||||||
|
MaybeReloadGpsMomentumWeights(true);
|
||||||
|
LogGpsMomentumFixedEdgePenalty("momentum fixed-edge penalty active",
|
||||||
|
gGpsMomentumFixedEdgePenalty.load(std::memory_order_relaxed));
|
||||||
|
}
|
||||||
|
|
||||||
InstallGpsNodeMultiplierInlinePatch();
|
InstallGpsNodeMultiplierInlinePatch();
|
||||||
|
InstallGpsMomentumPenaltyInlinePatch();
|
||||||
|
|
||||||
if (kEnableGpsQueryLifecycleHooks)
|
if (kEnableGpsQueryLifecycleHooks)
|
||||||
{
|
{
|
||||||
@@ -5651,6 +6236,7 @@ RED4EXT_C_EXPORT bool RED4EXT_CALL Main(RED4ext::v1::PluginHandle aHandle, RED4e
|
|||||||
if (aReason == RED4ext::v1::EMainReason::Unload)
|
if (aReason == RED4ext::v1::EMainReason::Unload)
|
||||||
{
|
{
|
||||||
RemoveGpsNodeMultiplierInlinePatch();
|
RemoveGpsNodeMultiplierInlinePatch();
|
||||||
|
RemoveGpsMomentumPenaltyInlinePatch();
|
||||||
|
|
||||||
if (kEnableGpsQueryLifecycleHooks)
|
if (kEnableGpsQueryLifecycleHooks)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -8,5 +8,9 @@ plugin_out="$game_dir/red4ext/plugins/EdgeWeightGPS"
|
|||||||
dll_path="$("$repo_root/tools/build_red4ext_shim.sh" | tail -n 1)"
|
dll_path="$("$repo_root/tools/build_red4ext_shim.sh" | tail -n 1)"
|
||||||
mkdir -p "$plugin_out"
|
mkdir -p "$plugin_out"
|
||||||
install -m 0644 "$dll_path" "$plugin_out/EdgeWeightGPS.dll"
|
install -m 0644 "$dll_path" "$plugin_out/EdgeWeightGPS.dll"
|
||||||
|
install -m 0644 "$repo_root/presets/momentum/default.bin" "$plugin_out/momentum_weights.bin"
|
||||||
|
install -m 0644 "$repo_root/presets/solver_weights/vanilla.bin" "$plugin_out/solver_weights.bin"
|
||||||
|
|
||||||
printf 'Installed %s\n' "$plugin_out/EdgeWeightGPS.dll"
|
printf 'Installed %s\n' "$plugin_out/EdgeWeightGPS.dll"
|
||||||
|
printf 'Installed %s\n' "$plugin_out/momentum_weights.bin"
|
||||||
|
printf 'Installed %s\n' "$plugin_out/solver_weights.bin"
|
||||||
|
|||||||
Executable
+24
@@ -0,0 +1,24 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
|
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||||||
|
timestamp="$(date +%Y%m%d-%H%M%S)"
|
||||||
|
staging="$repo_root/build/package/EdgeWeightGPS-$timestamp"
|
||||||
|
dist_dir="$repo_root/dist"
|
||||||
|
zip_path="$dist_dir/EdgeWeightGPS-red4ext-$timestamp.zip"
|
||||||
|
|
||||||
|
dll_path="$("$repo_root/tools/build_red4ext_shim.sh" | tail -n 1)"
|
||||||
|
plugin_out="$staging/red4ext/plugins/EdgeWeightGPS"
|
||||||
|
|
||||||
|
mkdir -p "$plugin_out" "$dist_dir"
|
||||||
|
install -m 0644 "$dll_path" "$plugin_out/EdgeWeightGPS.dll"
|
||||||
|
install -m 0644 "$repo_root/presets/momentum/default.bin" "$plugin_out/momentum_weights.bin"
|
||||||
|
install -m 0644 "$repo_root/presets/solver_weights/vanilla.bin" "$plugin_out/solver_weights.bin"
|
||||||
|
install -m 0644 "$repo_root/packaging/EdgeWeightGPS-README.txt" "$plugin_out/README.txt"
|
||||||
|
|
||||||
|
(
|
||||||
|
cd "$staging"
|
||||||
|
python3 -m zipfile -c "$zip_path" red4ext
|
||||||
|
)
|
||||||
|
|
||||||
|
printf '%s\n' "$zip_path"
|
||||||
Executable
+62
@@ -0,0 +1,62 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Write EdgeWeightGPS momentum penalty presets as one raw float32 value."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import struct
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
DEFAULT_INSTALL_PATH = Path(
|
||||||
|
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
|
||||||
|
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/momentum_weights.bin"
|
||||||
|
)
|
||||||
|
|
||||||
|
PRESETS: dict[str, float] = {
|
||||||
|
"vanilla": 0.0,
|
||||||
|
"legacy-default": 8.0,
|
||||||
|
"mild": 4.0,
|
||||||
|
"strong": 16.0,
|
||||||
|
"default": 80.0,
|
||||||
|
"silly": 80.0,
|
||||||
|
"overstrong": 160.0,
|
||||||
|
"pathological": 250.0,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def parse_penalty(text: str) -> float:
|
||||||
|
value = float(text)
|
||||||
|
if not 0.0 <= value <= 1000.0:
|
||||||
|
raise argparse.ArgumentTypeError("penalty must be between 0 and 1000")
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def write_weight(path: Path, value: float) -> None:
|
||||||
|
path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
path.write_bytes(struct.pack("<f", value))
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="default")
|
||||||
|
parser.add_argument("--value", type=parse_penalty, help="explicit fixed edge penalty")
|
||||||
|
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
|
||||||
|
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.preset_dir:
|
||||||
|
for name, value in PRESETS.items():
|
||||||
|
path = args.preset_dir / f"{name}.bin"
|
||||||
|
write_weight(path, value)
|
||||||
|
print(f"{path}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
value = args.value if args.value is not None else PRESETS[args.preset]
|
||||||
|
write_weight(args.output, value)
|
||||||
|
print(f"{args.output}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
Executable
+60
@@ -0,0 +1,60 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
"""Write EdgeWeightGPS solver highway presets as one raw float32 value."""
|
||||||
|
|
||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
import argparse
|
||||||
|
import struct
|
||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
|
||||||
|
DEFAULT_INSTALL_PATH = Path(
|
||||||
|
"/var/home/salt/.var/app/com.valvesoftware.Steam/.local/share/Steam/steamapps/common/"
|
||||||
|
"Cyberpunk 2077/red4ext/plugins/EdgeWeightGPS/solver_weights.bin"
|
||||||
|
)
|
||||||
|
|
||||||
|
PRESETS: dict[str, float] = {
|
||||||
|
"vanilla": 1.00,
|
||||||
|
"default": 0.80,
|
||||||
|
"mild": 0.90,
|
||||||
|
"strong": 0.70,
|
||||||
|
"proof-highway-cheap": 0.35,
|
||||||
|
"highway-expensive": 3.00,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def parse_multiplier(text: str) -> float:
|
||||||
|
value = float(text)
|
||||||
|
if not 0.0 < value < 20.0:
|
||||||
|
raise argparse.ArgumentTypeError("multiplier must be greater than 0 and less than 20")
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
|
def write_weight(path: Path, value: float) -> None:
|
||||||
|
path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
path.write_bytes(struct.pack("<f", value))
|
||||||
|
|
||||||
|
|
||||||
|
def main() -> int:
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("preset", nargs="?", choices=sorted(PRESETS), default="default")
|
||||||
|
parser.add_argument("--value", type=parse_multiplier, help="explicit highway multiplier")
|
||||||
|
parser.add_argument("--output", type=Path, default=DEFAULT_INSTALL_PATH)
|
||||||
|
parser.add_argument("--preset-dir", type=Path, help="write every named preset into this directory")
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if args.preset_dir:
|
||||||
|
for name, value in PRESETS.items():
|
||||||
|
path = args.preset_dir / f"{name}.bin"
|
||||||
|
write_weight(path, value)
|
||||||
|
print(f"{path}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
value = args.value if args.value is not None else PRESETS[args.preset]
|
||||||
|
write_weight(args.output, value)
|
||||||
|
print(f"{args.output}: {value}")
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
raise SystemExit(main())
|
||||||
Reference in New Issue
Block a user