diff --git a/Taskfile.yml b/Taskfile.yml index bc23e4cb81..c76aeed303 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -128,7 +128,7 @@ tasks: - '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}}' offline-tests-fast: cmds: - - '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}} -p --num_threads 32 --dump_current_output --fail-on-cmp' + - '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}} --pretty-print --num_threads 32 --dump_current_output --fail-on-cmp' offline-test-file: cmds: - '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}} --file {{.FILE}}' @@ -136,7 +136,7 @@ tasks: update-ref-tests: cmds: - cmd: python ./scripts/tasks/delete-file-or-folder.py --path failures - - cmd: '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}} --num_threads 32 --dump_current_output --fail-on-cmp' + - cmd: '{{.OFFLINETEST_BIN_RELEASE_DIR}}/offline-test --iso_data_path "./iso_data/{{.GAME}}" --game {{.GAME}} --pretty-print --num_threads 32 --dump_current_output --fail-on-cmp' ignore_error: true - python ./scripts/update_decomp_reference.py ./failures ./test/decompiler/reference/ --game {{.GAME}} - task: offline-tests-fast diff --git a/common/type_system/TypeSystem.cpp b/common/type_system/TypeSystem.cpp index 4bb2c0f466..e5559ec2a3 100644 --- a/common/type_system/TypeSystem.cpp +++ b/common/type_system/TypeSystem.cpp @@ -1268,6 +1268,7 @@ int TypeSystem::get_size_in_type(const Field& field) const { "Attempted to use `{}` inline, this probably isn't what you wanted.\n", field_type->get_name()); } + // TODO - crashes LSP ASSERT(field_type->is_reference()); return field.array_size() * align(field_type->get_size_in_memory(), field_type->get_inline_array_stride_alignment()); diff --git a/decompiler/config/jak2/all-types.gc b/decompiler/config/jak2/all-types.gc index 99c59fb9ac..be221b11f7 100644 --- a/decompiler/config/jak2/all-types.gc +++ b/decompiler/config/jak2/all-types.gc @@ -35368,7 +35368,6 @@ ;; hover-enemy-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype hover-enemy-info (structure) ((fly-forward-anim int32 :offset-assert 0) (fly-backward-anim int32 :offset-assert 4) @@ -35386,36 +35385,34 @@ :size-assert #x2c :flag-assert #x90000002c ) -|# -#| (deftype hover-enemy (enemy) - ((hover basic :offset-assert 528) - (hover-info hover-enemy-info :offset-assert 532) - (formation-entity basic :offset-assert 536) - (fly-anim-speed float :offset-assert 540) - (restart-fly-anims basic :offset-assert 544) - (main-joint-acc vector :inline :offset-assert 556) - (main-joint-vel vector :inline :offset-assert 572) - (main-joint-pos vector :inline :offset-assert 588) - (thrust UNKNOWN 2 :offset-assert 604) - (rotation-vec vector :inline :offset-assert 620) - (dest-pos vector :inline :offset-assert 636) - (offset vector :inline :offset-assert 652) - (surface-normal vector :inline :offset-assert 668) - (local-dir vector :inline :offset-assert 684) - (scale float :offset-assert 700) - (scale-timer uint64 :offset-assert 708) - (hit-surface? basic :offset-assert 716) - (knocked-start-level float :offset-assert 720) - (knocked-fall-dist float :offset-assert 724) - (flying-death-anim int32 :offset-assert 728) - (flying-death-transv vector :inline :offset-assert 732) - (flying-death-engine int32 :offset-assert 748) - (flying-death-thrust-rotate float :offset-assert 752) - (flying-death-spin float :offset-assert 756) - (flying-death-spin-dest float :offset-assert 760) - (flying-death-spin-axis vector :inline :offset-assert 764) + ((hover basic :offset-assert 532) + (hover-info hover-enemy-info :offset-assert 536) + (formation-entity basic :offset-assert 540) + (fly-anim-speed float :offset-assert 544) + (restart-fly-anims basic :offset-assert 548) + (main-joint-acc vector :inline :offset-assert 560) + (main-joint-vel vector :inline :offset-assert 576) + (main-joint-pos vector :inline :offset-assert 592) + (thrust int64 2 :offset-assert 608) + (rotation-vec vector :inline :offset-assert 624) + (dest-pos vector :inline :offset-assert 640) + (offset vector :inline :offset-assert 656) + (surface-normal vector :inline :offset-assert 672) + (local-dir vector :inline :offset-assert 688) + (scale float :offset-assert 704) + (scale-timer uint64 :offset-assert 712) + (hit-surface? basic :offset-assert 720) + (knocked-start-level float :offset-assert 724) + (knocked-fall-dist float :offset-assert 728) + (flying-death-anim int32 :offset-assert 732) + (flying-death-transv vector :inline :offset-assert 736) + (flying-death-engine int32 :offset-assert 752) + (flying-death-thrust-rotate float :offset-assert 756) + (flying-death-spin float :offset-assert 760) + (flying-death-spin-dest float :offset-assert 764) + (flying-death-spin-axis vector :inline :offset-assert 768) ) :method-count-assert 156 :size-assert #x310 @@ -35442,7 +35439,6 @@ (hover-enemy-method-155 () none 155) ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -36017,22 +36013,48 @@ ;; predator-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| +;; +++predator-h:predator-node-flag +(defenum predator-node-flag + :type uint32 + :bitfield #t + (taken) + (spawnable) + ) +;; ---predator-h:predator-node-flag + (deftype predator-node (structure) - () + ( + (position vector :inline :offset-assert 0) + (nav-mesh-id uint32 :offset-assert 16) + (edge-index int16 :offset-assert 20) + (edge-count int16 :offset-assert 22) + (radius float :offset-assert 24) + (flags predator-node-flag :offset-assert 28) + (points uint32 :offset-assert 32) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) + ) :method-count-assert 9 :size-assert #x24 :flag-assert #x900000024 - ;; Failed to read fields. ) -|# -;; (deftype predator-edge (structure) -;; () -;; :flag-assert #x900000004 -;; ) +;; +++predator-h:predator-edge-flag +(defenum predator-edge-flag + :type uint16 + :bitfield #t + ) +;; ---predator-h:predator-edge-flag + +(deftype predator-edge (structure) + ( + (dest-node-id uint16 :offset-assert 0) + (flags predator-edge-flag :offset-assert 2) + ) + :flag-assert #x900000004 + ) -#| (deftype predator-graph (structure) ((node-count uint16 :offset-assert 0) (edge-count uint16 :offset-assert 2) @@ -36043,7 +36065,6 @@ :size-assert #xc :flag-assert #x90000000c ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -38499,13 +38520,13 @@ ;; ai-task-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype ai-task (basic) - ((next basic :offset-assert 4) - (prev basic :offset-assert 8) - (pool basic :offset-assert 12) - (unique-id uint32 :offset-assert 16) - (bytes UNKNOWN 16 :offset-assert 32) + ((next basic :offset-assert 4) + (prev basic :offset-assert 8) + (pool basic :offset-assert 12) + (unique-id uint32 :offset-assert 16) + (pad-ik1n231 uint32 3 :offset-assert 20) + (bytes int8 16 :offset-assert 32) ) :method-count-assert 12 :size-assert #x30 @@ -38516,7 +38537,6 @@ (ai-task-method-11 () none 11) ) ) -|# #| (deftype ai-task-pool (basic) @@ -38563,7 +38583,6 @@ ;; bot-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype bot-focus-info (structure) ((max-los-dist float :offset-assert 0) (fproc basic :offset-assert 4) @@ -38582,7 +38601,6 @@ :size-assert #x70 :flag-assert #x900000070 ) -|# #| (deftype bot-turn-info (structure) @@ -38629,20 +38647,18 @@ ) |# -#| (deftype bot-spot (structure) ((center vector :inline :offset-assert 0) - (center-x float :offset-assert 0) - (center-y float :offset-assert 4) - (center-z float :offset-assert 8) - (inside-xz-dist float :offset-assert 12) + (center-x float :offset 0) + (center-y float :offset 4) + (center-z float :offset 8) + (inside-xz-dist float :offset 12) (blocked-xz-dist float :offset-assert 16) ) :method-count-assert 9 :size-assert #x14 :flag-assert #x900000014 ) -|# #| (deftype bot-waypoint (basic) @@ -38663,7 +38679,6 @@ ) |# -#| (deftype bot-course (basic) ((course-id uint8 :offset-assert 4) (speech-count uint16 :offset-assert 6) @@ -38684,62 +38699,60 @@ :flag-assert #x900000030 ;; field default-check-too-far uses ~A with a signed load ) -|# -#| (deftype bot (nav-enemy) - ((bot-flags uint32 :offset-assert 600) - (min-speed float :offset-assert 604) - (max-speed float :offset-assert 608) - (follow-offset float :offset-assert 612) - (too-far-warn-dist float :offset-assert 616) - (too-far-fail-dist-delta float :offset-assert 620) - (too-far-warn-dist-default float :offset-assert 624) - (too-far-fail-dist-delta-default float :offset-assert 628) - (travel-prev-ry float :offset-assert 632) - (travel-prev-ry1 float :offset-assert 636) - (player-blocking float :offset-assert 640) - (ai-ctrl basic :offset-assert 644) - (course basic :offset-assert 648) - (waypoint basic :offset-assert 652) - (waypoint-bits uint32 :offset-assert 656) - (waypoint-int32a int32 :offset-assert 660) - (bot-task-bits uint32 :offset-assert 664) - (hit-invuln-ignore-me-delay uint32 :offset-assert 668) - (hit-invuln-focus-disable-delay uint32 :offset-assert 672) - (warn-to-fail-timeout uint32 :offset-assert 676) - (warn-min-delay uint32 :offset-assert 680) - (warn-max-delay uint32 :offset-assert 684) - (spot-color uint32 :offset-assert 688) - (waypoint-request int16 :offset-assert 692) - (hit-by-enemy-count uint16 :offset-assert 694) - (hit-by-player-count uint16 :offset-assert 696) - (notice-enemy-dist float :offset-assert 700) - (channel uint8 :offset-assert 704) - (focus-mode int8 :offset-assert 705) - (nav-mesh-index int8 :offset-assert 706) - (delay-too-far-check int8 :offset-assert 707) - (slave-id int8 :offset-assert 708) - (vehicle-seat-index int8 :offset-assert 709) - (bot-health-index int8 :offset-assert 710) - (task basic :offset-assert 712) - (swivel-joint-mod basic :offset-assert 716) - (health-handle uint64 :offset-assert 724) - (poi-handle uint64 :offset-assert 732) - (my-simple-focus uint32 :offset-assert 740) - (attacker-handle uint64 :offset-assert 748) - (scene-player-handle uint64 :offset-assert 756) - (master-handle uint64 :offset-assert 764) - (vehicle-handle uint64 :offset-assert 772) - (hit-invuln-starting-time time-frame :offset-assert 780) - (danger-time time-frame :offset-assert 788) - (attacker-time time-frame :offset-assert 796) - (started-warning-time time-frame :offset-assert 804) - (waypoint-time0 uint64 :offset-assert 812) - (next-too-far-warn-time time-frame :offset-assert 820) - (spot bot-spot :inline :offset-assert 828) - (follow-dir vector :inline :offset-assert 860) - (focus-info bot-focus-info :inline :offset-assert 876) + ((bot-flags uint32 :offset-assert 604) + (min-speed float :offset-assert 608) + (max-speed float :offset-assert 612) + (follow-offset float :offset-assert 616) + (too-far-warn-dist float :offset-assert 620) + (too-far-fail-dist-delta float :offset-assert 624) + (too-far-warn-dist-default float :offset-assert 628) + (too-far-fail-dist-delta-default float :offset-assert 632) + (travel-prev-ry float :offset-assert 636) + (travel-prev-ry1 float :offset-assert 640) + (player-blocking float :offset-assert 644) + (ai-ctrl basic :offset-assert 648) + (course basic :offset-assert 652) + (waypoint basic :offset-assert 656) + (waypoint-bits uint32 :offset-assert 660) + (waypoint-int32a int32 :offset-assert 664) + (bot-task-bits uint32 :offset-assert 668) + (hit-invuln-ignore-me-delay uint32 :offset-assert 672) + (hit-invuln-focus-disable-delay uint32 :offset-assert 676) + (warn-to-fail-timeout uint32 :offset-assert 680) + (warn-min-delay uint32 :offset-assert 684) + (warn-max-delay uint32 :offset-assert 688) + (spot-color uint32 :offset-assert 692) + (waypoint-request int16 :offset-assert 696) + (hit-by-enemy-count uint16 :offset-assert 698) + (hit-by-player-count uint16 :offset-assert 700) + (notice-enemy-dist float :offset-assert 704) + (channel uint8 :offset-assert 708) + (focus-mode int8 :offset-assert 709) + (nav-mesh-index int8 :offset-assert 710) + (delay-too-far-check int8 :offset-assert 711) + (slave-id int8 :offset-assert 712) + (vehicle-seat-index int8 :offset-assert 713) + (bot-health-index int8 :offset-assert 714) + (task basic :offset-assert 716) + (swivel-joint-mod basic :offset-assert 720) + (health-handle uint64 :offset-assert 728) + (poi-handle uint64 :offset-assert 736) + (my-simple-focus uint32 :offset-assert 744) + (attacker-handle uint64 :offset-assert 752) + (scene-player-handle uint64 :offset-assert 760) + (master-handle uint64 :offset-assert 768) + (vehicle-handle uint64 :offset-assert 776) + (hit-invuln-starting-time time-frame :offset-assert 784) + (danger-time time-frame :offset-assert 792) + (attacker-time time-frame :offset-assert 800) + (started-warning-time time-frame :offset-assert 808) + (waypoint-time0 uint64 :offset-assert 816) + (next-too-far-warn-time time-frame :offset-assert 824) + (spot bot-spot :inline :offset-assert 832) + (follow-dir vector :inline :offset-assert 864) + (focus-info bot-focus-info :inline :offset-assert 880) ) :method-count-assert 225 :size-assert #x3e0 @@ -38794,7 +38807,6 @@ (bot-method-224 () none 224) ) ) -|# #| (deftype bot-speech-list (basic) @@ -38896,7 +38908,7 @@ (deftype sig-path (basic) ((sample-count int32 :offset-assert 4) - (samples uint32 :offset-assert 8) + (samples (inline-array sig-path-sample) :offset-assert 8) ) :method-count-assert 9 :size-assert #xc @@ -40492,10 +40504,9 @@ ;; hal-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype hal (bot) - ((handle-failed-slave-id int8 :offset-assert 988) - (slave-handle UNKNOWN 3 :offset-assert 996) + ((handle-failed-slave-id int8 :offset-assert 992) + (slave-handle uint64 3 :offset-assert 1000) ) :method-count-assert 227 :size-assert #x400 @@ -40505,14 +40516,12 @@ (hal-method-226 () none 226) ) ) -|# -#| (deftype halt-wait-spot (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (spot-indexes UNKNOWN 6 :offset-assert 38) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) ) :method-count-assert 12 :size-assert #x30 @@ -40520,7 +40529,6 @@ (:methods ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -40541,22 +40549,18 @@ ;; ruf-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype ruffian-course (bot-course) ((ouch-speeches basic :offset-assert 48) ) :method-count-assert 9 :size-assert #x34 :flag-assert #x900000034 - ;; field default-check-too-far uses ~A with a signed load ) -|# -#| (deftype ruffian (bot) - ((travel-anim-interp float :offset-assert 988) - (fired-gun-count uint32 :offset-assert 992) - (next-fire-time time-frame :offset-assert 996) + ((travel-anim-interp float :offset-assert 992) + (fired-gun-count uint32 :offset-assert 996) + (next-fire-time time-frame :offset-assert 1000) ) :method-count-assert 246 :size-assert #x3f0 @@ -40585,30 +40589,24 @@ (ruffian-method-245 () none 245) ) ) -|# -#| (deftype ruft-wait-spot (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (spot-indexes UNKNOWN 6 :offset-assert 38) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) ) :method-count-assert 12 :size-assert #x30 :flag-assert #xc00000030 - (:methods - ) ) -|# -#| (deftype ruft-choose-jump (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (src-spot-indexes UNKNOWN 4 :offset-assert 38) - (dest-spot-indexes UNKNOWN 4 :offset-assert 42) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (src-spot-indexes int8 4 :offset 38) + (dest-spot-indexes int8 4 :offset 42) ) :method-count-assert 14 :size-assert #x30 @@ -40618,34 +40616,25 @@ (ruft-choose-jump-method-13 () none 13) ) ) -|# -#| (deftype ruft-fight-focus (ai-task) () :method-count-assert 12 :size-assert #x30 :flag-assert #xc00000030 - (:methods - ) ) -|# -#| (deftype ruft-plant-bomb (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (stand-spot-indexes UNKNOWN 2 :offset-assert 38) - (face-spot-indexes UNKNOWN 2 :offset-assert 40) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (stand-spot-indexes int8 2 :offset 38) + (face-spot-indexes int8 2 :offset 40) ) :method-count-assert 12 :size-assert #x30 :flag-assert #xc00000030 - (:methods - ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -40667,19 +40656,15 @@ ;; jinx-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype jinx (ruffian) - ((bomb-handle uint64 :offset-assert 1004) - (bomb-func basic :offset-assert 1012) - (bomb-fuse-delay uint32 :offset-assert 1016) + ((bomb-handle uint64 :offset-assert 1008) + (bomb-func basic :offset-assert 1016) + (bomb-fuse-delay uint32 :offset-assert 1020) ) :method-count-assert 246 :size-assert #x400 :flag-assert #xf603800400 - (:methods - ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -40789,16 +40774,12 @@ ;; grim-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype grim (jinx) () :method-count-assert 246 :size-assert #x400 :flag-assert #xf603800400 - (:methods - ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -41894,13 +41875,12 @@ ;; kidesc-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype kid-escort (bot) - ((travel-anim-interp float :offset-assert 988) - (arrest-attempt-time time-frame :offset-assert 996) - (arrestor-handle uint64 :offset-assert 1004) - (crocadog-handle uint64 :offset-assert 1012) - (exit-vehicle-dest vector :inline :offset-assert 364) + ((travel-anim-interp float :offset-assert 992) + (arrest-attempt-time time-frame :offset-assert 1000) + (arrestor-handle handle :offset-assert 1008) + (crocadog-handle handle :offset-assert 1016) + (exit-vehicle-dest vector :inline :offset 368 :score 999) ) :method-count-assert 240 :size-assert #x400 @@ -41923,35 +41903,30 @@ (kid-escort-method-239 () none 239) ) ) -|# -#| (deftype kidesct-wait-spot (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (spot-indexes UNKNOWN 6 :offset-assert 38) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) ) :method-count-assert 12 :size-assert #x30 :flag-assert #xc00000030 - (:methods - ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; crocesc-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype crocadog-escort (bot) - ((travel-anim-interp float :offset-assert 988) - (anim-speed float :offset-assert 992) - (kid-handle uint64 :offset-assert 996) - (local-seat-pos vector :inline :offset-assert 1020) - (exit-vehicle-dest vector :inline :offset-assert 364) + ((travel-anim-interp float :offset-assert 992) + (anim-speed float :offset-assert 996) + (kid-handle handle :offset-assert 1000) + (pad-ki1jn23ikuj1n2 uint32 4 :offset-assert 1008) + (local-seat-pos vector :inline :offset-assert 1024) + (exit-vehicle-dest vector :inline :offset 368 :score 999) ) :method-count-assert 239 :size-assert #x410 @@ -41973,22 +41948,17 @@ (crocadog-escort-method-238 () none 238) ) ) -|# -#| (deftype crocesct-wait-spot (ai-task) - ((check-done basic :offset-assert 32) - (which-spot int8 :offset-assert 36) - (num-spots uint8 :offset-assert 37) - (spot-indexes UNKNOWN 6 :offset-assert 38) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) ) :method-count-assert 12 :size-assert #x30 :flag-assert #xc00000030 - (:methods - ) ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -42926,21 +42896,18 @@ ;; bombbot-h ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -#| (deftype bombbot-node (structure) ((position vector :inline :offset-assert 0) (nav-mesh-id uint32 :offset-assert 16) - (pos-x float :offset-assert 0) - (pos-y float :offset-assert 4) - (pos-z float :offset-assert 8) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) ) :method-count-assert 9 :size-assert #x14 :flag-assert #x900000014 ) -|# -#| (deftype bombbot-path (structure) ((node-count uint16 :offset-assert 0) (node uint32 :offset-assert 4) @@ -42949,7 +42916,6 @@ :size-assert #x8 :flag-assert #x900000008 ) -|# ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -47935,13 +47901,13 @@ ;; sig5-cent1-path0 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; (define-extern *sig5-cent1-path0* sig-path) +(define-extern *sig5-cent1-path0* sig-path) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; sig5-cent2-path0 ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; (define-extern *sig5-cent2-path0* sig-path) +(define-extern *sig5-cent2-path0* sig-path) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; sig5-course ;; diff --git a/decompiler/config/jak2/inputs.jsonc b/decompiler/config/jak2/inputs.jsonc index ecd01bfe58..7ab5495a7b 100644 --- a/decompiler/config/jak2/inputs.jsonc +++ b/decompiler/config/jak2/inputs.jsonc @@ -64,13 +64,13 @@ // "DGO/TBO.DGO", "DGO/THR.DGO", "DGO/PRI.DGO", - // "DGO/LKIDDOGE.DGO", + "DGO/LKIDDOGE.DGO", // "DGO/NESTT.DGO", "DGO/LWIDEC.DGO", // "DGO/SAG.DGO", "DGO/NEB.DGO", "DGO/COB.DGO", - // "DGO/LBOMBBOT.DGO", + "DGO/LBOMBBOT.DGO", // "DGO/DEMO.DGO", // "DGO/LRACEDF.DGO", "DGO/LERLCHAL.DGO", diff --git a/decompiler/util/data_decompile.cpp b/decompiler/util/data_decompile.cpp index c0606199c6..2ac0a4c3c8 100644 --- a/decompiler/util/data_decompile.cpp +++ b/decompiler/util/data_decompile.cpp @@ -733,6 +733,7 @@ const std::unordered_map< {{"init-specs", ArrayFieldDecompMeta(TypeSpec("sp-field-init-spec"), 16)}}}, {"sparticle-launch-group", {{"launcher", ArrayFieldDecompMeta(TypeSpec("sparticle-group-item"), 32)}}}, + {"sig-path", {{"samples", ArrayFieldDecompMeta(TypeSpec("sig-path-sample"), 64)}}}, {"race-info", {{"turbo-pad-array", ArrayFieldDecompMeta(TypeSpec("race-turbo-pad"), 32)}, {"racer-array", ArrayFieldDecompMeta(TypeSpec("race-racer-info"), 16)}, diff --git a/goal_src/jak2/characters/sig/sig-h.gc b/goal_src/jak2/characters/sig/sig-h.gc index 7231f2b2d1..e9d2e062c1 100644 --- a/goal_src/jak2/characters/sig/sig-h.gc +++ b/goal_src/jak2/characters/sig/sig-h.gc @@ -7,3 +7,29 @@ ;; DECOMP BEGINS +(deftype sig-path-sample (structure) + ((bytes uint8 32 :offset-assert 0) + (pos vector :inline :offset-assert 32) + (quat quaternion :inline :offset-assert 48) + (flags uint8 :offset 12) + (pos-x float :offset 32) + (pos-y float :offset 36) + (pos-z float :offset 40) + (quat-x float :offset 48) + (quat-y float :offset 52) + (quat-z float :offset 56) + (quat-w float :offset 60) + ) + :method-count-assert 9 + :size-assert #x40 + :flag-assert #x900000040 + ) + +(deftype sig-path (basic) + ((sample-count int32 :offset-assert 4) + (samples (inline-array sig-path-sample) :offset-assert 8) + ) + :method-count-assert 9 + :size-assert #xc + :flag-assert #x90000000c + ) diff --git a/goal_src/jak2/game.gp b/goal_src/jak2/game.gp index 1c4582f294..2b99a40d7e 100644 --- a/goal_src/jak2/game.gp +++ b/goal_src/jak2/game.gp @@ -2518,22 +2518,22 @@ ;; ;; LBOMBBOT ;; ;;;;;;;;;;;;;;;;;;;;; -;; (cgo "LBOMBBOT.DGO" "lbombbot.gd") +(cgo "LBOMBBOT.DGO" "lbombbot.gd") -;; (goal-src-sequence -;; "" -;; :deps ("$OUT/obj/los-control.o") -;; "levels/common/enemy/bombots/bombbot-h.gc" -;; "levels/common/enemy/bombots/bombbot-path.gc" -;; "levels/common/enemy/bombots/bombbot.gc" -;; ) +(goal-src-sequence + "" + :deps ("$OUT/obj/los-control.o") + "levels/common/enemy/bombots/bombbot-h.gc" + "levels/common/enemy/bombots/bombbot-path.gc" + "levels/common/enemy/bombots/bombbot.gc" + ) -;; (copy-textures 2751) +(copy-textures 2751) -;; (copy-gos -;; "bombbot-ag" -;; "lbombbot" -;; ) +(copy-gos + "bombbot-ag" + "lbombbot" + ) ;; ;;;;;;;;;;;;;;;;;;;;; ;; ;; LBRNERMK @@ -2814,38 +2814,38 @@ ;; ;; LKIDDOGE ;; ;;;;;;;;;;;;;;;;;;;;; -;; (cgo "LKIDDOGE.DGO" "lkiddoge.gd") +(cgo "LKIDDOGE.DGO" "lkiddoge.gd") -;; (goal-src-sequence -;; "" -;; :deps ("$OUT/obj/los-control.o") -;; "levels/common/ai/ai-task-h.gc" -;; "levels/common/ai/bot-h.gc" -;; "levels/common/ai/bot.gc" -;; "levels/common/ai/bot-states.gc" -;; "levels/undefined/hal-h.gc" -;; "levels/undefined/hal-task.gc" -;; "levels/undefined/hal.gc" -;; "levels/city/kid_escort/kidesc-h.gc" -;; "levels/city/kid_escort/crocesc-h.gc" -;; "levels/city/kid_escort/hal4-course.gc" -;; "levels/city/kid_escort/kidesc-task.gc" -;; "levels/city/kid_escort/kidesc.gc" -;; "levels/city/kid_escort/kidesc-states.gc" -;; "levels/city/kid_escort/crocesc-task.gc" -;; "levels/city/kid_escort/crocesc.gc" -;; "levels/city/kid_escort/crocesc-states.gc" -;; "levels/city/kid_escort/kidesc4-course.gc" -;; "levels/city/kid_escort/crocesc4-course.gc" -;; ) +(goal-src-sequence + "" + :deps ("$OUT/obj/los-control.o") + "levels/common/ai/ai-task-h.gc" + "levels/common/ai/bot-h.gc" + "levels/common/ai/bot.gc" + "levels/common/ai/bot-states.gc" + "levels/undefined/hal-h.gc" + "levels/undefined/hal-task.gc" + "levels/undefined/hal.gc" + "levels/city/kid_escort/kidesc-h.gc" + "levels/city/kid_escort/crocesc-h.gc" + "levels/city/kid_escort/hal4-course.gc" + "levels/city/kid_escort/kidesc-task.gc" + "levels/city/kid_escort/kidesc.gc" + "levels/city/kid_escort/kidesc-states.gc" + "levels/city/kid_escort/crocesc-task.gc" + "levels/city/kid_escort/crocesc.gc" + "levels/city/kid_escort/crocesc-states.gc" + "levels/city/kid_escort/kidesc4-course.gc" + "levels/city/kid_escort/crocesc4-course.gc" + ) -;; (copy-textures 2209) +(copy-textures 2209) -;; (copy-gos -;; "crocadog-escort-ag" -;; "kid-escort-ag" -;; "lkiddoge" -;; ) +(copy-gos + "crocadog-escort-ag" + "kid-escort-ag" + "lkiddoge" + ) ;; ;;;;;;;;;;;;;;;;;;;;; ;; ;; LMEETBRT @@ -3987,13 +3987,13 @@ (goal-src-sequence "" :deps ("$OUT/obj/los-control.o") - "levels/common/ai/ai-task-h.gc" - "levels/common/ai/bot-h.gc" - "levels/common/ai/bot.gc" - "levels/common/ai/bot-states.gc" - "levels/undefined/hal-h.gc" - "levels/undefined/hal-task.gc" - "levels/undefined/hal.gc" + ;; "levels/common/ai/ai-task-h.gc" + ;; "levels/common/ai/bot-h.gc" + ;; "levels/common/ai/bot.gc" + ;; "levels/common/ai/bot-states.gc" + ;; "levels/undefined/hal-h.gc" + ;; "levels/undefined/hal-task.gc" + ;; "levels/undefined/hal.gc" "levels/undefined/ruf-h.gc" "levels/undefined/ruf-task.gc" "levels/undefined/ruf.gc" diff --git a/goal_src/jak2/levels/city/kid_escort/crocesc-h.gc b/goal_src/jak2/levels/city/kid_escort/crocesc-h.gc index 52d1c6e573..4f85f5cb12 100644 --- a/goal_src/jak2/levels/city/kid_escort/crocesc-h.gc +++ b/goal_src/jak2/levels/city/kid_escort/crocesc-h.gc @@ -7,3 +7,51 @@ ;; DECOMP BEGINS +(deftype crocadog-escort (bot) + ((travel-anim-interp float :offset-assert 992) + (anim-speed float :offset-assert 996) + (kid-handle handle :offset-assert 1000) + (pad-ki1jn23ikuj1n2 uint32 4 :offset-assert 1008) + (local-seat-pos vector :inline :offset-assert 1024) + (exit-vehicle-dest vector :inline :offset 368) + ) + :heap-base #x390 + :method-count-assert 239 + :size-assert #x410 + :flag-assert #xef03900410 + (:methods + (crocadog-escort-method-225 () none 225) + (crocadog-escort-method-226 () none 226) + (crocadog-escort-method-227 () none 227) + (crocadog-escort-method-228 () none 228) + (crocadog-escort-method-229 () none 229) + (crocadog-escort-method-230 () none 230) + (crocadog-escort-method-231 () none 231) + (crocadog-escort-method-232 () none 232) + (crocadog-escort-method-233 () none 233) + (crocadog-escort-method-234 () none 234) + (crocadog-escort-method-235 () none 235) + (crocadog-escort-method-236 () none 236) + (crocadog-escort-method-237 () none 237) + (crocadog-escort-method-238 () none 238) + ) + ) + + +(defskelgroup skel-crocadog-escort crocadog-escort 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 2) + :shadow 2 + :origin-joint-index 20 + ) + +(deftype crocesct-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) diff --git a/goal_src/jak2/levels/city/kid_escort/kidesc-h.gc b/goal_src/jak2/levels/city/kid_escort/kidesc-h.gc index 15a922e66a..db01e84c87 100644 --- a/goal_src/jak2/levels/city/kid_escort/kidesc-h.gc +++ b/goal_src/jak2/levels/city/kid_escort/kidesc-h.gc @@ -7,3 +7,51 @@ ;; DECOMP BEGINS +(deftype kid-escort (bot) + ((travel-anim-interp float :offset-assert 992) + (arrest-attempt-time time-frame :offset-assert 1000) + (arrestor-handle handle :offset-assert 1008) + (crocadog-handle handle :offset-assert 1016) + (exit-vehicle-dest vector :inline :offset 368) + ) + :heap-base #x380 + :method-count-assert 240 + :size-assert #x400 + :flag-assert #xf003800400 + (:methods + (kid-escort-method-225 () none 225) + (kid-escort-method-226 () none 226) + (kid-escort-method-227 () none 227) + (kid-escort-method-228 () none 228) + (kid-escort-method-229 () none 229) + (kid-escort-method-230 () none 230) + (kid-escort-method-231 () none 231) + (kid-escort-method-232 () none 232) + (kid-escort-method-233 () none 233) + (kid-escort-method-234 () none 234) + (kid-escort-method-235 () none 235) + (kid-escort-method-236 () none 236) + (kid-escort-method-237 () none 237) + (kid-escort-method-238 () none 238) + (kid-escort-method-239 () none 239) + ) + ) + + +(defskelgroup skel-kid-escort kid-escort 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 2) + :shadow 2 + :origin-joint-index 13 + ) + +(deftype kidesct-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) diff --git a/goal_src/jak2/levels/common/ai/ai-task-h.gc b/goal_src/jak2/levels/common/ai/ai-task-h.gc index 7bcd5b4b5a..e932b8014e 100644 --- a/goal_src/jak2/levels/common/ai/ai-task-h.gc +++ b/goal_src/jak2/levels/common/ai/ai-task-h.gc @@ -7,3 +7,20 @@ ;; DECOMP BEGINS +(deftype ai-task (basic) + ((next basic :offset-assert 4) + (prev basic :offset-assert 8) + (pool basic :offset-assert 12) + (unique-id uint32 :offset-assert 16) + (pad-ik1n231 uint32 3 :offset-assert 20) + (bytes int8 16 :offset-assert 32) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + (:methods + (ai-task-method-9 () none 9) + (ai-task-method-10 () none 10) + (ai-task-method-11 () none 11) + ) + ) diff --git a/goal_src/jak2/levels/common/ai/bot-h.gc b/goal_src/jak2/levels/common/ai/bot-h.gc index 838d2dc636..4b3db255a1 100644 --- a/goal_src/jak2/levels/common/ai/bot-h.gc +++ b/goal_src/jak2/levels/common/ai/bot-h.gc @@ -7,3 +7,163 @@ ;; DECOMP BEGINS +(deftype bot-focus-info (structure) + ((max-los-dist float :offset-assert 0) + (fproc basic :offset-assert 4) + (bullseye-xz-dist float :offset-assert 8) + (ry-diff float :offset-assert 12) + (my-facing-ry float :offset-assert 16) + (bullseye-ry float :offset-assert 20) + (los int8 :offset-assert 24) + (update-time time-frame :offset-assert 32) + (bullseye vector :inline :offset-assert 48) + (pos vector :inline :offset-assert 64) + (my-facing-xz-dir vector :inline :offset-assert 80) + (bullseye-xz-dir vector :inline :offset-assert 96) + ) + :method-count-assert 9 + :size-assert #x70 + :flag-assert #x900000070 + ) + +(deftype bot-spot (structure) + ((center vector :inline :offset-assert 0) + (center-x float :offset 0) + (center-y float :offset 4) + (center-z float :offset 8) + (inside-xz-dist float :offset 12) + (blocked-xz-dist float :offset-assert 16) + ) + :method-count-assert 9 + :size-assert #x14 + :flag-assert #x900000014 + ) + +(deftype bot-course (basic) + ((course-id uint8 :offset-assert 4) + (speech-count uint16 :offset-assert 6) + (spot-count uint16 :offset-assert 8) + (retry-cookie uint8 :offset-assert 10) + (too-far-warn-speeches basic :offset-assert 12) + (too-far-fail-speeches basic :offset-assert 16) + (attack-player-speeches basic :offset-assert 20) + (default-check-too-far basic :offset-assert 24) + (waypoints basic :offset-assert 28) + (speeches uint32 :offset-assert 32) + (speech-tunings uint32 :offset-assert 36) + (dirs uint32 :offset-assert 40) + (spots uint32 :offset-assert 44) + ) + :method-count-assert 9 + :size-assert #x30 + :flag-assert #x900000030 + ;; field default-check-too-far uses ~A with a signed load + ) + +(deftype bot (nav-enemy) + ((bot-flags uint32 :offset-assert 604) + (min-speed float :offset-assert 608) + (max-speed float :offset-assert 612) + (follow-offset float :offset-assert 616) + (too-far-warn-dist float :offset-assert 620) + (too-far-fail-dist-delta float :offset-assert 624) + (too-far-warn-dist-default float :offset-assert 628) + (too-far-fail-dist-delta-default float :offset-assert 632) + (travel-prev-ry float :offset-assert 636) + (travel-prev-ry1 float :offset-assert 640) + (player-blocking float :offset-assert 644) + (ai-ctrl basic :offset-assert 648) + (course basic :offset-assert 652) + (waypoint basic :offset-assert 656) + (waypoint-bits uint32 :offset-assert 660) + (waypoint-int32a int32 :offset-assert 664) + (bot-task-bits uint32 :offset-assert 668) + (hit-invuln-ignore-me-delay uint32 :offset-assert 672) + (hit-invuln-focus-disable-delay uint32 :offset-assert 676) + (warn-to-fail-timeout uint32 :offset-assert 680) + (warn-min-delay uint32 :offset-assert 684) + (warn-max-delay uint32 :offset-assert 688) + (spot-color uint32 :offset-assert 692) + (waypoint-request int16 :offset-assert 696) + (hit-by-enemy-count uint16 :offset-assert 698) + (hit-by-player-count uint16 :offset-assert 700) + (notice-enemy-dist float :offset-assert 704) + (channel uint8 :offset-assert 708) + (focus-mode int8 :offset-assert 709) + (nav-mesh-index int8 :offset-assert 710) + (delay-too-far-check int8 :offset-assert 711) + (slave-id int8 :offset-assert 712) + (vehicle-seat-index int8 :offset-assert 713) + (bot-health-index int8 :offset-assert 714) + (task basic :offset-assert 716) + (swivel-joint-mod basic :offset-assert 720) + (health-handle uint64 :offset-assert 728) + (poi-handle uint64 :offset-assert 736) + (my-simple-focus uint32 :offset-assert 744) + (attacker-handle uint64 :offset-assert 752) + (scene-player-handle uint64 :offset-assert 760) + (master-handle uint64 :offset-assert 768) + (vehicle-handle uint64 :offset-assert 776) + (hit-invuln-starting-time time-frame :offset-assert 784) + (danger-time time-frame :offset-assert 792) + (attacker-time time-frame :offset-assert 800) + (started-warning-time time-frame :offset-assert 808) + (waypoint-time0 uint64 :offset-assert 816) + (next-too-far-warn-time time-frame :offset-assert 824) + (spot bot-spot :inline :offset-assert 832) + (follow-dir vector :inline :offset-assert 864) + (focus-info bot-focus-info :inline :offset-assert 880) + ) + :method-count-assert 225 + :size-assert #x3e0 + :flag-assert #xe1036003e0 + (:methods + (bot-method-178 () none 178) + (bot-method-179 () none 179) + (bot-method-180 () none 180) + (bot-method-181 () none 181) + (bot-method-182 () none 182) + (bot-method-183 () none 183) + (bot-method-184 () none 184) + (bot-method-185 () none 185) + (bot-method-186 () none 186) + (bot-method-187 () none 187) + (bot-method-188 () none 188) + (bot-method-189 () none 189) + (bot-method-190 () none 190) + (bot-method-191 () none 191) + (bot-method-192 () none 192) + (bot-method-193 () none 193) + (bot-method-194 () none 194) + (bot-method-195 () none 195) + (bot-method-196 () none 196) + (bot-method-197 () none 197) + (bot-method-198 () none 198) + (bot-method-199 () none 199) + (bot-method-200 () none 200) + (bot-method-201 () none 201) + (bot-method-202 () none 202) + (bot-method-203 () none 203) + (bot-method-204 () none 204) + (bot-method-205 () none 205) + (bot-method-206 () none 206) + (bot-method-207 () none 207) + (bot-method-208 () none 208) + (bot-method-209 () none 209) + (bot-method-210 () none 210) + (bot-method-211 () none 211) + (bot-method-212 () none 212) + (bot-method-213 () none 213) + (bot-method-214 () none 214) + (bot-method-215 () none 215) + (bot-method-216 () none 216) + (bot-method-217 () none 217) + (bot-method-218 () none 218) + (bot-method-219 () none 219) + (bot-method-220 () none 220) + (bot-method-221 () none 221) + (bot-method-222 () none 222) + (bot-method-223 () none 223) + (bot-method-224 () none 224) + ) + ) diff --git a/goal_src/jak2/levels/common/enemy/bombots/bombbot-h.gc b/goal_src/jak2/levels/common/enemy/bombots/bombbot-h.gc index 4902ddbb8b..c97d45d506 100644 --- a/goal_src/jak2/levels/common/enemy/bombots/bombbot-h.gc +++ b/goal_src/jak2/levels/common/enemy/bombots/bombbot-h.gc @@ -7,3 +7,24 @@ ;; DECOMP BEGINS +(deftype bombbot-node (structure) + ((position vector :inline :offset-assert 0) + (nav-mesh-id uint32 :offset-assert 16) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) + ) + :method-count-assert 9 + :size-assert #x14 + :flag-assert #x900000014 + ) + + +(deftype bombbot-path (structure) + ((node-count uint16 :offset-assert 0) + (node uint32 :offset-assert 4) + ) + :method-count-assert 9 + :size-assert #x8 + :flag-assert #x900000008 + ) diff --git a/goal_src/jak2/levels/common/enemy/hover/hover-enemy-h.gc b/goal_src/jak2/levels/common/enemy/hover/hover-enemy-h.gc index 77f8346dc9..f7cdc4adf1 100644 --- a/goal_src/jak2/levels/common/enemy/hover/hover-enemy-h.gc +++ b/goal_src/jak2/levels/common/enemy/hover/hover-enemy-h.gc @@ -7,3 +7,76 @@ ;; DECOMP BEGINS +(deftype hover-enemy-info (structure) + ((fly-forward-anim int32 :offset-assert 0) + (fly-backward-anim int32 :offset-assert 4) + (fly-left-anim int32 :offset-assert 8) + (fly-right-anim int32 :offset-assert 12) + (shoot-anim int32 :offset-assert 16) + (main-joint int32 :offset-assert 20) + (gun-base int32 :offset-assert 24) + (engine-left int32 :offset-assert 28) + (engine-right int32 :offset-assert 32) + (thrust-rotate-left float :offset-assert 36) + (thrust-rotate-right float :offset-assert 40) + ) + :method-count-assert 9 + :size-assert #x2c + :flag-assert #x90000002c + ) + + +(deftype hover-enemy (enemy) + ((hover basic :offset-assert 532) + (hover-info hover-enemy-info :offset-assert 536) + (formation-entity basic :offset-assert 540) + (fly-anim-speed float :offset-assert 544) + (restart-fly-anims basic :offset-assert 548) + (main-joint-acc vector :inline :offset-assert 560) + (main-joint-vel vector :inline :offset-assert 576) + (main-joint-pos vector :inline :offset-assert 592) + (thrust int64 2 :offset-assert 608) + (rotation-vec vector :inline :offset-assert 624) + (dest-pos vector :inline :offset-assert 640) + (offset vector :inline :offset-assert 656) + (surface-normal vector :inline :offset-assert 672) + (local-dir vector :inline :offset-assert 688) + (scale float :offset-assert 704) + (scale-timer uint64 :offset-assert 712) + (hit-surface? basic :offset-assert 720) + (knocked-start-level float :offset-assert 724) + (knocked-fall-dist float :offset-assert 728) + (flying-death-anim int32 :offset-assert 732) + (flying-death-transv vector :inline :offset-assert 736) + (flying-death-engine int32 :offset-assert 752) + (flying-death-thrust-rotate float :offset-assert 756) + (flying-death-spin float :offset-assert 760) + (flying-death-spin-dest float :offset-assert 764) + (flying-death-spin-axis vector :inline :offset-assert 768) + ) + :heap-base #x290 + :method-count-assert 156 + :size-assert #x310 + :flag-assert #x9c02900310 + (:methods + (hover-enemy-method-137 () none 137) + (hover-enemy-method-138 () none 138) + (hover-enemy-method-139 () none 139) + (hover-enemy-method-140 () none 140) + (hover-enemy-method-141 () none 141) + (hover-enemy-method-142 () none 142) + (hover-enemy-method-143 () none 143) + (hover-enemy-method-144 () none 144) + (hover-enemy-method-145 () none 145) + (hover-enemy-method-146 () none 146) + (hover-enemy-method-147 () none 147) + (hover-enemy-method-148 () none 148) + (hover-enemy-method-149 () none 149) + (hover-enemy-method-150 () none 150) + (hover-enemy-method-151 () none 151) + (hover-enemy-method-152 () none 152) + (hover-enemy-method-153 () none 153) + (hover-enemy-method-154 () none 154) + (hover-enemy-method-155 () none 155) + ) + ) diff --git a/goal_src/jak2/levels/forest/predator-h.gc b/goal_src/jak2/levels/forest/predator-h.gc index e917d76d20..64b0a81df4 100644 --- a/goal_src/jak2/levels/forest/predator-h.gc +++ b/goal_src/jak2/levels/forest/predator-h.gc @@ -5,5 +5,61 @@ ;; name in dgo: predator-h ;; dgos: FOR +;; +++predator-node-flag +(defenum predator-node-flag + :type uint32 + :bitfield #t + (taken) + (spawnable) + ) +;; ---predator-node-flag + + +;; +++predator-edge-flag +(defenum predator-edge-flag + :type uint16 + :bitfield #t + ) +;; ---predator-edge-flag + + ;; DECOMP BEGINS +(deftype predator-node (structure) + ((position vector :inline :offset-assert 0) + (nav-mesh-id uint32 :offset-assert 16) + (edge-index int16 :offset-assert 20) + (edge-count int16 :offset-assert 22) + (radius float :offset-assert 24) + (flags predator-node-flag :offset-assert 28) + (points uint32 :offset-assert 32) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) + ) + :method-count-assert 9 + :size-assert #x24 + :flag-assert #x900000024 + ) + + +(deftype predator-edge (structure) + ((dest-node-id uint16 :offset-assert 0) + (flags predator-edge-flag :offset-assert 2) + ) + :method-count-assert 9 + :size-assert #x4 + :flag-assert #x900000004 + ) + + +(deftype predator-graph (structure) + ((node-count uint16 :offset-assert 0) + (edge-count uint16 :offset-assert 2) + (node uint32 :offset-assert 4) + (edge uint32 :offset-assert 8) + ) + :method-count-assert 9 + :size-assert #xc + :flag-assert #x90000000c + ) diff --git a/goal_src/jak2/levels/sewer/escort/grim-h.gc b/goal_src/jak2/levels/sewer/escort/grim-h.gc index bf111b9123..309593c8f2 100644 --- a/goal_src/jak2/levels/sewer/escort/grim-h.gc +++ b/goal_src/jak2/levels/sewer/escort/grim-h.gc @@ -7,3 +7,10 @@ ;; DECOMP BEGINS +(deftype grim (jinx) + () + :heap-base #x380 + :method-count-assert 246 + :size-assert #x400 + :flag-assert #xf603800400 + ) diff --git a/goal_src/jak2/levels/sewer/escort/jinx-h.gc b/goal_src/jak2/levels/sewer/escort/jinx-h.gc index d6022dcbe5..a01e0d3744 100644 --- a/goal_src/jak2/levels/sewer/escort/jinx-h.gc +++ b/goal_src/jak2/levels/sewer/escort/jinx-h.gc @@ -7,3 +7,22 @@ ;; DECOMP BEGINS +(deftype jinx (ruffian) + ((bomb-handle uint64 :offset-assert 1008) + (bomb-func basic :offset-assert 1016) + (bomb-fuse-delay uint32 :offset-assert 1020) + ) + :heap-base #x380 + :method-count-assert 246 + :size-assert #x400 + :flag-assert #xf603800400 + ) + + +(defskelgroup skel-jinx jinx 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 5) + :shadow 2 + :origin-joint-index 15 + :shadow-joint-index 15 + ) diff --git a/goal_src/jak2/levels/undefined/hal-h.gc b/goal_src/jak2/levels/undefined/hal-h.gc index fd6342136f..6d1f64c669 100644 --- a/goal_src/jak2/levels/undefined/hal-h.gc +++ b/goal_src/jak2/levels/undefined/hal-h.gc @@ -7,3 +7,28 @@ ;; DECOMP BEGINS +(deftype hal (bot) + ((handle-failed-slave-id int8 :offset-assert 992) + (slave-handle uint64 3 :offset-assert 1000) + ) + :heap-base #x380 + :method-count-assert 227 + :size-assert #x400 + :flag-assert #xe303800400 + (:methods + (hal-method-225 () none 225) + (hal-method-226 () none 226) + ) + ) + + +(deftype halt-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) diff --git a/goal_src/jak2/levels/undefined/ruf-h.gc b/goal_src/jak2/levels/undefined/ruf-h.gc index ba5c1d55e2..3eb7437693 100644 --- a/goal_src/jak2/levels/undefined/ruf-h.gc +++ b/goal_src/jak2/levels/undefined/ruf-h.gc @@ -7,3 +7,95 @@ ;; DECOMP BEGINS +(deftype ruffian-course (bot-course) + ((ouch-speeches basic :offset-assert 48) + ) + :method-count-assert 9 + :size-assert #x34 + :flag-assert #x900000034 + ) + + +(deftype ruffian (bot) + ((travel-anim-interp float :offset-assert 992) + (fired-gun-count uint32 :offset-assert 996) + (next-fire-time time-frame :offset-assert 1000) + ) + :heap-base #x370 + :method-count-assert 246 + :size-assert #x3f0 + :flag-assert #xf6037003f0 + (:methods + (ruffian-method-225 () none 225) + (ruffian-method-226 () none 226) + (ruffian-method-227 () none 227) + (ruffian-method-228 () none 228) + (ruffian-method-229 () none 229) + (ruffian-method-230 () none 230) + (ruffian-method-231 () none 231) + (ruffian-method-232 () none 232) + (ruffian-method-233 () none 233) + (ruffian-method-234 () none 234) + (ruffian-method-235 () none 235) + (ruffian-method-236 () none 236) + (ruffian-method-237 () none 237) + (ruffian-method-238 () none 238) + (ruffian-method-239 () none 239) + (ruffian-method-240 () none 240) + (ruffian-method-241 () none 241) + (ruffian-method-242 () none 242) + (ruffian-method-243 () none 243) + (ruffian-method-244 () none 244) + (ruffian-method-245 () none 245) + ) + ) + + +(deftype ruft-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + + +(deftype ruft-choose-jump (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (src-spot-indexes int8 4 :offset 38) + (dest-spot-indexes int8 4 :offset 42) + ) + :method-count-assert 14 + :size-assert #x30 + :flag-assert #xe00000030 + (:methods + (ruft-choose-jump-method-12 () none 12) + (ruft-choose-jump-method-13 () none 13) + ) + ) + + +(deftype ruft-fight-focus (ai-task) + () + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + + +(deftype ruft-plant-bomb (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (stand-spot-indexes int8 2 :offset 38) + (face-spot-indexes int8 2 :offset 40) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) diff --git a/goal_src/jak2/levels/underport/sig5-cent1-path0.gc b/goal_src/jak2/levels/underport/sig5-cent1-path0.gc index f4d919df58..08a349ef33 100644 --- a/goal_src/jak2/levels/underport/sig5-cent1-path0.gc +++ b/goal_src/jak2/levels/underport/sig5-cent1-path0.gc @@ -7,3 +7,4957 @@ ;; DECOMP BEGINS +(define *sig5-cent1-path0* (new 'static 'sig-path + :sample-count #xfb + :samples (new 'static 'inline-array sig-path-sample 251 + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x1 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -324352.8 :y -274439.38 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324481.44 :y -274439.78 :z 8362954.5) + :quat (new 'static 'quaternion :y 0.1768 :w -0.9842) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324903.3 :y -274439.78 :z 8363789.0) + :quat (new 'static 'quaternion :y 0.1988 :w -0.98) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -325611.12 :y -274439.78 :z 8365243.5) + :quat (new 'static 'quaternion :y 0.21 :w -0.9776) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -326609.3 :y -274439.78 :z 8367315.0) + :quat (new 'static 'quaternion :y 0.2162 :w -0.9763) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -327800.0 :y -274439.38 :z 8369764.5) + :quat (new 'static 'quaternion :y 0.2203 :w -0.9754) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -329003.0 :y -274439.38 :z 8372209.0) + :quat (new 'static 'quaternion :y 0.2235 :w -0.9746) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -330218.7 :y -274439.78 :z 8374646.5) + :quat (new 'static 'quaternion :y 0.2264 :w -0.974) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -331427.44 :y -274439.38 :z 8377084.5) + :quat (new 'static 'quaternion :y 0.2268 :w -0.9739) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -332588.66 :y -274439.38 :z 8379538.5) + :quat (new 'static 'quaternion :y 0.2235 :w -0.9746) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -333531.12 :y -274439.38 :z 8382077.5) + :quat (new 'static 'quaternion :y 0.2044 :w -0.9788) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -334386.78 :y -275121.34 :z 8384650.5) + :quat (new 'static 'quaternion :y 0.1802 :w -0.9836) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -335159.28 :y -272610.1 :z 8387254.5) + :quat (new 'static 'quaternion :y 0.1611 :w -0.9869) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -335894.12 :y -269008.9 :z 8389873.0) + :quat (new 'static 'quaternion :y 0.1482 :w -0.9889) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -336567.9 :y -265442.9 :z 8392512.0) + :quat (new 'static 'quaternion :y 0.136 :w -0.9907) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -337176.56 :y -262789.94 :z 8395170.0) + :quat (new 'static 'quaternion :y 0.1226 :w -0.9924) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -337687.75 :y -261229.36 :z 8397850.0) + :quat (new 'static 'quaternion :y 0.1075 :w -0.9941) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -338169.03 :y -261196.19 :z 8400536.0) + :quat (new 'static 'quaternion :y 0.0976 :w -0.9952) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -338628.6 :y -263263.84 :z 8403226.0) + :quat (new 'static 'quaternion :y 0.0908 :w -0.9958) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -339066.06 :y -266997.34 :z 8405919.0) + :quat (new 'static 'quaternion :y 0.0853 :w -0.9963) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -339481.0 :y -271822.84 :z 8408616.0) + :quat (new 'static 'quaternion :y 0.0805 :w -0.9967) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -339987.25 :y -274439.78 :z 8411288.0) + :quat (new 'static 'quaternion :y 0.0892 :w -0.996) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -341112.44 :y -273777.88 :z 8413171.0) + :quat (new 'static 'quaternion :y 0.1763 :w -0.9843) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -342586.97 :y -273177.8 :z 8414965.0) + :quat (new 'static 'quaternion :y 0.2488 :w -0.9685) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -344261.84 :y -273670.16 :z 8417119.0) + :quat (new 'static 'quaternion :y 0.2882 :w -0.9575) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -346117.3 :y -273929.0 :z 8419434.0) + :quat (new 'static 'quaternion :y 0.311 :w -0.9503) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -348285.75 :y -274189.1 :z 8422031.0) + :quat (new 'static 'quaternion :y 0.3262 :w -0.9452) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -350332.53 :y -274264.47 :z 8424393.0) + :quat (new 'static 'quaternion :y 0.3384 :w -0.9409) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -352366.2 :y -274296.44 :z 8426635.0) + :quat (new 'static 'quaternion :y 0.35 :w -0.9367) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -354494.06 :y -274527.44 :z 8428632.0) + :quat (new 'static 'quaternion :y 0.3718 :w -0.9282) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -356558.84 :y -275780.4 :z 8430416.0) + :quat (new 'static 'quaternion :y 0.3951 :w -0.9186) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -358678.12 :y -273268.75 :z 8432136.0) + :quat (new 'static 'quaternion :y 0.4133 :w -0.9105) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -360849.4 :y -269667.53 :z 8433789.0) + :quat (new 'static 'quaternion :y 0.4294 :w -0.9031) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -363055.94 :y -266101.56 :z 8435394.0) + :quat (new 'static 'quaternion :y 0.4422 :w -0.8968) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -365302.6 :y -263448.56 :z 8436944.0) + :quat (new 'static 'quaternion :y 0.454 :w -0.8909) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -367577.5 :y -261888.0 :z 8438452.0) + :quat (new 'static 'quaternion :y 0.464 :w -0.8857) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -369885.6 :y -261854.83 :z 8439909.0) + :quat (new 'static 'quaternion :y 0.4738 :w -0.8805) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -372205.97 :y -263922.9 :z 8441347.0) + :quat (new 'static 'quaternion :y 0.4799 :w -0.8772) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -374285.1 :y -267656.0 :z 8443105.0) + :quat (new 'static 'quaternion :y 0.4619 :w -0.8868) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -375903.44 :y -272481.9 :z 8445277.0) + :quat (new 'static 'quaternion :y 0.4262 :w -0.9046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -377183.03 :y -274436.9 :z 8447669.0) + :quat (new 'static 'quaternion :y 0.3426 :w -0.9394) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -377929.3 :y -274436.9 :z 8450288.0) + :quat (new 'static 'quaternion :y 0.2351 :w -0.9719) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -378314.75 :y -274436.9 :z 8452987.0) + :quat (new 'static 'quaternion :y 0.1492 :w -0.9887) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378525.7 :y -274529.9 :z 8455750.0) + :quat (new 'static 'quaternion :y 0.091 :w -0.9958) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378642.03 :y -272946.78 :z 8458476.0) + :quat (new 'static 'quaternion :y 0.0547 :w -0.9985) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378689.94 :y -269456.2 :z 8461204.0) + :quat (new 'static 'quaternion :y 0.0306 :w -0.9995) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378668.66 :y -265834.5 :z 8463932.0) + :quat (new 'static 'quaternion :y 0.0124 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378577.72 :y -262908.72 :z 8466660.0) + :quat (new 'static 'quaternion :y -0.0029 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378458.94 :y -261074.94 :z 8469386.0) + :quat (new 'static 'quaternion :y -0.0112 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378517.9 :y -260551.06 :z 8472112.0) + :quat (new 'static 'quaternion :y 0.0086 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378781.28 :y -262059.22 :z 8474824.0) + :quat (new 'static 'quaternion :y 0.043 :w -0.999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -379300.25 :y -265519.5 :z 8477491.0) + :quat (new 'static 'quaternion :y 0.0875 :w -0.9961) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -380388.56 :y -270071.8 :z 8479971.0) + :quat (new 'static 'quaternion :y 0.1382 :w -0.9903) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -381684.12 :y -274148.97 :z 8482364.0) + :quat (new 'static 'quaternion :y 0.1915 :w -0.9814) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -383049.72 :y -273961.38 :z 8484716.0) + :quat (new 'static 'quaternion :y 0.2258 :w -0.9741) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -384426.4 :y -273963.4 :z 8487070.0) + :quat (new 'static 'quaternion :y 0.2437 :w -0.9698) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -385989.44 :y -274058.84 :z 8489709.0) + :quat (new 'static 'quaternion :y 0.254 :w -0.9671) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -387512.3 :y -274080.56 :z 8492225.0) + :quat (new 'static 'quaternion :y 0.2607 :w -0.9653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -388945.1 :y -274046.16 :z 8494544.0) + :quat (new 'static 'quaternion :y 0.2658 :w -0.964) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -390479.88 :y -273361.3 :z 8495941.0) + :quat (new 'static 'quaternion :y 0.2702 :w -0.9627) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -392015.47 :y -272851.75 :z 8497540.0) + :quat (new 'static 'quaternion :y 0.2755 :w -0.9612) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -393539.2 :y -273000.84 :z 8499791.0) + :quat (new 'static 'quaternion :y 0.2809 :w -0.9597) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -395249.25 :y -273183.53 :z 8502333.0) + :quat (new 'static 'quaternion :y 0.2861 :w -0.9581) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -396747.56 :y -273986.75 :z 8504577.0) + :quat (new 'static 'quaternion :y 0.2879 :w -0.9576) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -398439.62 :y -274468.47 :z 8507078.0) + :quat (new 'static 'quaternion :y 0.2887 :w -0.9574) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -400041.16 :y -274468.88 :z 8509357.0) + :quat (new 'static 'quaternion :y 0.2947 :w -0.9555) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -401625.1 :y -274468.88 :z 8511578.0) + :quat (new 'static 'quaternion :y 0.2993 :w -0.9541) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -403223.75 :y -274468.88 :z 8513787.0) + :quat (new 'static 'quaternion :y 0.3033 :w -0.9528) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -404996.1 :y -274024.03 :z 8515859.0) + :quat (new 'static 'quaternion :y 0.3185 :w -0.9479) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -406854.03 :y -271109.75 :z 8517858.0) + :quat (new 'static 'quaternion :y 0.3428 :w -0.9393) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -408734.1 :y -267496.66 :z 8519837.0) + :quat (new 'static 'quaternion :y 0.3573 :w -0.9339) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -410637.1 :y -264024.47 :z 8521793.0) + :quat (new 'static 'quaternion :y 0.3671 :w -0.9301) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -412556.1 :y -261644.7 :z 8523733.0) + :quat (new 'static 'quaternion :y 0.3736 :w -0.9275) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -414310.0 :y -260357.33 :z 8525822.0) + :quat (new 'static 'quaternion :y 0.3581 :w -0.9336) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -415982.78 :y -260814.84 :z 8527967.0) + :quat (new 'static 'quaternion :y 0.3408 :w -0.9401) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -417660.1 :y -263442.03 :z 8530108.0) + :quat (new 'static 'quaternion :y 0.3332 :w -0.9428) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -419356.7 :y -267448.72 :z 8532235.0) + :quat (new 'static 'quaternion :y 0.332 :w -0.9432) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -421139.66 :y -272260.72 :z 8534301.0) + :quat (new 'static 'quaternion :y 0.3408 :w -0.9401) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -422814.94 :y -274340.25 :z 8536119.0) + :quat (new 'static 'quaternion :y 0.3465 :w -0.938) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -424659.34 :y -273951.94 :z 8538003.0) + :quat (new 'static 'quaternion :y 0.3625 :w -0.9319) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -426810.16 :y -274436.9 :z 8539678.0) + :quat (new 'static 'quaternion :y 0.4043 :w -0.9145) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -429230.9 :y -274436.9 :z 8540927.0) + :quat (new 'static 'quaternion :y 0.4677 :w -0.8838) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -431840.06 :y -274436.9 :z 8541720.0) + :quat (new 'static 'quaternion :y 0.537 :w -0.8435) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -434553.66 :y -274436.9 :z 8541941.0) + :quat (new 'static 'quaternion :y 0.6172 :w -0.7867) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -437278.72 :y -274436.9 :z 8541772.0) + :quat (new 'static 'quaternion :y 0.6772 :w -0.7357) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -439994.38 :y -274436.9 :z 8541488.0) + :quat (new 'static 'quaternion :y 0.7125 :w -0.7016) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -442822.66 :y -274441.84 :z 8541076.0) + :quat (new 'static 'quaternion :y 0.7346 :w -0.6784) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -446057.28 :y -274447.97 :z 8540450.0) + :quat (new 'static 'quaternion :y 0.7523 :w -0.6587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -449295.16 :y -274453.72 :z 8539757.0) + :quat (new 'static 'quaternion :y 0.7654 :w -0.6434) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -452537.12 :y -274589.7 :z 8539009.0) + :quat (new 'static 'quaternion :y 0.7736 :w -0.6335) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -455184.78 :y -273025.84 :z 8538341.0) + :quat (new 'static 'quaternion :y 0.7815 :w -0.6238) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -457814.03 :y -269534.8 :z 8537605.0) + :quat (new 'static 'quaternion :y 0.7897 :w -0.6134) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -460422.34 :y -265913.56 :z 8536797.0) + :quat (new 'static 'quaternion :y 0.7977 :w -0.6029) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -463015.53 :y -262987.38 :z 8535943.0) + :quat (new 'static 'quaternion :y 0.8042 :w -0.5943) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -465648.03 :y -261154.0 :z 8535219.0) + :quat (new 'static 'quaternion :y 0.7991 :w -0.601) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -468280.12 :y -260630.12 :z 8534492.0) + :quat (new 'static 'quaternion :y 0.7976 :w -0.603) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -470887.62 :y -262137.86 :z 8533682.0) + :quat (new 'static 'quaternion :y 0.8017 :w -0.5976) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -473468.94 :y -265598.16 :z 8532792.0) + :quat (new 'static 'quaternion :y 0.8085 :w -0.5884) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -476020.75 :y -270150.88 :z 8531822.0) + :quat (new 'static 'quaternion :y 0.8164 :w -0.5773) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -478541.0 :y -274436.5 :z 8530772.0) + :quat (new 'static 'quaternion :y 0.8248 :w -0.5653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -481030.16 :y -274436.9 :z 8529649.0) + :quat (new 'static 'quaternion :y 0.8329 :w -0.5533) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -483485.28 :y -274436.9 :z 8528454.0) + :quat (new 'static 'quaternion :y 0.8409 :w -0.5411) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -485901.53 :y -274436.9 :z 8527182.0) + :quat (new 'static 'quaternion :y 0.849 :w -0.5282) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -488289.9 :y -274436.9 :z 8525858.0) + :quat (new 'static 'quaternion :y 0.8558 :w -0.5172) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -490644.7 :y -274436.9 :z 8524477.0) + :quat (new 'static 'quaternion :y 0.8621 :w -0.5067) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -493007.25 :y -274480.75 :z 8523027.0) + :quat (new 'static 'quaternion :y 0.8676 :w -0.4971) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -495319.44 :y -274429.53 :z 8521574.0) + :quat (new 'static 'quaternion :y 0.8714 :w -0.4905) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -497611.56 :y -274436.5 :z 8520089.0) + :quat (new 'static 'quaternion :y 0.8749 :w -0.4842) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -499899.6 :y -274436.5 :z 8518599.0) + :quat (new 'static 'quaternion :y 0.8771 :w -0.4803) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -502158.12 :y -274436.5 :z 8517065.0) + :quat (new 'static 'quaternion :y 0.8798 :w -0.4752) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -504420.75 :y -274641.3 :z 8515537.0) + :quat (new 'static 'quaternion :y 0.8823 :w -0.4706) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -506719.84 :y -274083.03 :z 8514064.0) + :quat (new 'static 'quaternion :y 0.8797 :w -0.4754) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -509030.0 :y -270853.75 :z 8512607.0) + :quat (new 'static 'quaternion :y 0.8776 :w -0.4793) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -511331.94 :y -267176.75 :z 8511138.0) + :quat (new 'static 'quaternion :y 0.8772 :w -0.4799) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -513606.44 :y -263977.78 :z 8509628.0) + :quat (new 'static 'quaternion :y 0.8794 :w -0.4759) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -515848.2 :y -261870.8 :z 8508070.0) + :quat (new 'static 'quaternion :y 0.8831 :w -0.4691) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -518055.94 :y -260856.62 :z 8506464.0) + :quat (new 'static 'quaternion :y 0.8874 :w -0.4609) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -520229.28 :y -261804.44 :z 8504810.0) + :quat (new 'static 'quaternion :y 0.8919 :w -0.452) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -522366.97 :y -264991.94 :z 8503112.0) + :quat (new 'static 'quaternion :y 0.8965 :w -0.4428) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -524467.8 :y -269271.44 :z 8501367.0) + :quat (new 'static 'quaternion :y 0.9012 :w -0.4333) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -526530.56 :y -274069.9 :z 8499578.0) + :quat (new 'static 'quaternion :y 0.9057 :w -0.4238) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528554.8 :y -274431.6 :z 8497744.0) + :quat (new 'static 'quaternion :y 0.9102 :w -0.4141) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -530538.06 :y -274431.6 :z 8495865.0) + :quat (new 'static 'quaternion :y 0.9145 :w -0.4043) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -532481.25 :y -274431.6 :z 8493945.0) + :quat (new 'static 'quaternion :y 0.9188 :w -0.3945) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -534383.0 :y -274431.6 :z 8491985.0) + :quat (new 'static 'quaternion :y 0.923 :w -0.3846) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -536242.2 :y -274431.6 :z 8489984.0) + :quat (new 'static 'quaternion :y 0.9271 :w -0.3747) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -538058.3 :y -274431.6 :z 8487943.0) + :quat (new 'static 'quaternion :y 0.931 :w -0.3647) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -539829.9 :y -274431.6 :z 8485864.0) + :quat (new 'static 'quaternion :y 0.9349 :w -0.3547) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -541649.7 :y -274431.6 :z 8483828.0) + :quat (new 'static 'quaternion :y 0.9342 :w -0.3567) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -543530.6 :y -273600.1 :z 8481848.0) + :quat (new 'static 'quaternion :y 0.9313 :w -0.3641) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -545404.5 :y -270370.8 :z 8479860.0) + :quat (new 'static 'quaternion :y 0.9304 :w -0.3665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -547244.9 :y -266693.84 :z 8477843.0) + :quat (new 'static 'quaternion :y 0.9314 :w -0.3637) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -549052.0 :y -263494.88 :z 8475796.0) + :quat (new 'static 'quaternion :y 0.9335 :w -0.3584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -550826.0 :y -261388.28 :z 8473720.0) + :quat (new 'static 'quaternion :y 0.9359 :w -0.352) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -552776.5 :y -260373.7 :z 8471827.0) + :quat (new 'static 'quaternion :y 0.9334 :w -0.3586) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -555121.44 :y -261321.94 :z 8470470.0) + :quat (new 'static 'quaternion :y 0.9209 :w -0.3896) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -557556.94 :y -264509.03 :z 8469297.0) + :quat (new 'static 'quaternion :y 0.9019 :w -0.4318) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -560065.75 :y -268788.53 :z 8468315.0) + :quat (new 'static 'quaternion :y 0.878 :w -0.4785) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -562636.0 :y -273587.0 :z 8467528.0) + :quat (new 'static 'quaternion :y 0.8501 :w -0.5264) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -565932.44 :y -274431.6 :z 8468318.0) + :quat (new 'static 'quaternion :y 0.7923 :w -0.61) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569513.2 :y -274431.6 :z 8470005.0) + :quat (new 'static 'quaternion :y 0.7431 :w -0.6691) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -573085.3 :y -274431.6 :z 8471858.0) + :quat (new 'static 'quaternion :y 0.7073 :w -0.7068) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -576637.3 :y -274431.6 :z 8473878.0) + :quat (new 'static 'quaternion :y 0.6779 :w -0.7351) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580159.9 :y -274431.6 :z 8476055.0) + :quat (new 'static 'quaternion :y 0.6517 :w -0.7584) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -583642.3 :y -274431.6 :z 8478390.0) + :quat (new 'static 'quaternion :y 0.6268 :w -0.7791) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -587085.44 :y -274431.6 :z 8480859.0) + :quat (new 'static 'quaternion :y 0.6043 :w -0.7967) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -590483.06 :y -274636.38 :z 8483448.0) + :quat (new 'static 'quaternion :y 0.5832 :w -0.8122) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -592592.5 :y -275394.56 :z 8484615.0) + :quat (new 'static 'quaternion :y 0.5701 :w -0.8215) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -595137.3 :y -275222.12 :z 8485603.0) + :quat (new 'static 'quaternion :y 0.5677 :w -0.8232) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -597731.75 :y -271992.84 :z 8486451.0) + :quat (new 'static 'quaternion :y 0.5789 :w -0.8153) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -600375.7 :y -268315.84 :z 8487130.0) + :quat (new 'static 'quaternion :y 0.5976 :w -0.8017) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -603048.75 :y -265116.47 :z 8487684.0) + :quat (new 'static 'quaternion :y 0.6152 :w -0.7882) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -605721.8 :y -263009.9 :z 8488240.0) + :quat (new 'static 'quaternion :y 0.623 :w -0.7821) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -608385.8 :y -261995.31 :z 8488836.0) + :quat (new 'static 'quaternion :y 0.623 :w -0.7822) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -611001.1 :y -262943.53 :z 8489596.0) + :quat (new 'static 'quaternion :y 0.6024 :w -0.7981) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -613549.25 :y -266131.03 :z 8490548.0) + :quat (new 'static 'quaternion :y 0.5724 :w -0.8199) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -616017.94 :y -268524.34 :z 8491674.0) + :quat (new 'static 'quaternion :y 0.5532 :w -0.833) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -618316.2 :y -266312.5 :z 8492766.0) + :quat (new 'static 'quaternion :y 0.5422 :w -0.8402) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -620428.9 :y -262918.16 :z 8493789.0) + :quat (new 'static 'quaternion :y 0.5339 :w -0.8455) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -622378.2 :y -260542.05 :z 8494815.0) + :quat (new 'static 'quaternion :y 0.5233 :w -0.8521) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -624294.7 :y -259257.95 :z 8495861.0) + :quat (new 'static 'quaternion :y 0.5165 :w -0.8562) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -626247.25 :y -260021.86 :z 8496836.0) + :quat (new 'static 'quaternion :y 0.5241 :w -0.8516) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -628255.56 :y -263025.06 :z 8497692.0) + :quat (new 'static 'quaternion :y 0.5382 :w -0.8427) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -630255.6 :y -267120.62 :z 8498568.0) + :quat (new 'static 'quaternion :y 0.5425 :w -0.84) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -632263.06 :y -271734.78 :z 8499427.0) + :quat (new 'static 'quaternion :y 0.5469 :w -0.8371) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -633675.4 :y -274657.28 :z 8500297.0) + :quat (new 'static 'quaternion :y 0.5603 :w -0.8282) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -634974.6 :y -274515.97 :z 8501987.0) + :quat (new 'static 'quaternion :y 0.5744 :w -0.8185) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -636984.5 :y -274469.28 :z 8503748.0) + :quat (new 'static 'quaternion :y 0.579 :w -0.8152) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -639507.25 :y -274457.0 :z 8505348.0) + :quat (new 'static 'quaternion :y 0.6004 :w -0.7996) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -642520.7 :y -274444.7 :z 8506523.0) + :quat (new 'static 'quaternion :y 0.6424 :w -0.7663) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -645516.9 :y -274432.4 :z 8506559.0) + :quat (new 'static 'quaternion :y 0.7028 :w -0.7113) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -648128.94 :y -274431.6 :z 8505767.0) + :quat (new 'static 'quaternion :y 0.7577 :w -0.6525) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -650543.5 :y -274431.6 :z 8504566.0) + :quat (new 'static 'quaternion :y 0.7876 :w -0.6161) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -652761.06 :y -274431.6 :z 8502969.0) + :quat (new 'static 'quaternion :y 0.806 :w -0.5918) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -654775.06 :y -274431.6 :z 8500967.0) + :quat (new 'static 'quaternion :y 0.8198 :w -0.5725) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -656581.8 :y -274431.6 :z 8498557.0) + :quat (new 'static 'quaternion :y 0.8315 :w -0.5554) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -658282.5 :y -274431.6 :z 8495943.0) + :quat (new 'static 'quaternion :y 0.8397 :w -0.543) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -659960.6 :y -274431.6 :z 8493285.0) + :quat (new 'static 'quaternion :y 0.8455 :w -0.5338) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661677.7 :y -274431.6 :z 8490707.0) + :quat (new 'static 'quaternion :y 0.8436 :w -0.5369) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -663513.06 :y -274431.6 :z 8488445.0) + :quat (new 'static 'quaternion :y 0.823 :w -0.5679) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -665419.75 :y -274431.6 :z 8486475.0) + :quat (new 'static 'quaternion :y 0.7982 :w -0.6023) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -667319.94 :y -274431.6 :z 8484517.0) + :quat (new 'static 'quaternion :y 0.7854 :w -0.6188) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -669210.2 :y -274431.6 :z 8482516.0) + :quat (new 'static 'quaternion :y 0.7818 :w -0.6234) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -671087.44 :y -274431.6 :z 8480462.0) + :quat (new 'static 'quaternion :y 0.7833 :w -0.6215) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -672944.56 :y -274431.6 :z 8478330.0) + :quat (new 'static 'quaternion :y 0.7888 :w -0.6145) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -674761.1 :y -274431.6 :z 8476054.0) + :quat (new 'static 'quaternion :y 0.8006 :w -0.599) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -676525.25 :y -274431.6 :z 8473616.0) + :quat (new 'static 'quaternion :y 0.8151 :w -0.5792) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -678254.2 :y -274431.6 :z 8471098.0) + :quat (new 'static 'quaternion :y 0.8267 :w -0.5625) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -679946.6 :y -274431.6 :z 8468498.0) + :quat (new 'static 'quaternion :y 0.837 :w -0.5471) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -681597.3 :y -274431.6 :z 8465816.0) + :quat (new 'static 'quaternion :y 0.8466 :w -0.5322) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -683221.0 :y -274431.6 :z 8463087.0) + :quat (new 'static 'quaternion :y 0.8535 :w -0.5209) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -684874.56 :y -274431.6 :z 8460427.0) + :quat (new 'static 'quaternion :y 0.8524 :w -0.5227) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -686642.8 :y -274431.6 :z 8457980.0) + :quat (new 'static 'quaternion :y 0.8398 :w -0.5428) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -688492.1 :y -274431.6 :z 8455747.0) + :quat (new 'static 'quaternion :y 0.8211 :w -0.5707) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -690374.25 :y -274431.6 :z 8453630.0) + :quat (new 'static 'quaternion :y 0.8062 :w -0.5916) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -692247.4 :y -274431.6 :z 8451480.0) + :quat (new 'static 'quaternion :y 0.8005 :w -0.5992) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -694127.44 :y -274431.6 :z 8449355.0) + :quat (new 'static 'quaternion :y 0.7964 :w -0.6046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -695996.8 :y -274431.6 :z 8447192.0) + :quat (new 'static 'quaternion :y 0.7966 :w -0.6043) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -698236.94 :y -275113.97 :z 8445707.0) + :quat (new 'static 'quaternion :y 0.7988 :w -0.6015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -700854.7 :y -272602.3 :z 8444931.0) + :quat (new 'static 'quaternion :y 0.8 :w -0.5999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -703481.06 :y -269001.12 :z 8444184.0) + :quat (new 'static 'quaternion :y 0.7988 :w -0.6015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -706135.25 :y -265435.12 :z 8443545.0) + :quat (new 'static 'quaternion :y 0.7913 :w -0.6113) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -708815.7 :y -262782.16 :z 8443023.0) + :quat (new 'static 'quaternion :y 0.7811 :w -0.6243) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -711504.7 :y -261221.58 :z 8442549.0) + :quat (new 'static 'quaternion :y 0.7732 :w -0.6341) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -714108.1 :y -261188.4 :z 8441763.0) + :quat (new 'static 'quaternion :y 0.7791 :w -0.6268) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -716485.8 :y -263256.47 :z 8440463.0) + :quat (new 'static 'quaternion :y 0.8004 :w -0.5994) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -718630.06 :y -263800.0 :z 8439150.0) + :quat (new 'static 'quaternion :y 0.8275 :w -0.5613) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -720458.94 :y -261165.47 :z 8437982.0) + :quat (new 'static 'quaternion :y 0.8529 :w -0.5219) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -722303.8 :y -258267.14 :z 8436841.0) + :quat (new 'static 'quaternion :y 0.8637 :w -0.5039) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -724146.56 :y -256460.8 :z 8435697.0) + :quat (new 'static 'quaternion :y 0.869 :w -0.4947) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -725987.75 :y -255985.66 :z 8434550.0) + :quat (new 'static 'quaternion :y 0.8716 :w -0.49) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -727827.25 :y -257606.45 :z 8433400.0) + :quat (new 'static 'quaternion :y 0.8731 :w -0.4873) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -729664.7 :y -261179.39 :z 8432248.0) + :quat (new 'static 'quaternion :y 0.8741 :w -0.4856) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -731500.1 :y -265844.75 :z 8431092.0) + :quat (new 'static 'quaternion :y 0.8747 :w -0.4845) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -733333.5 :y -270741.9 :z 8429933.0) + :quat (new 'static 'quaternion :y 0.8752 :w -0.4835) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -735201.7 :y -274436.5 :z 8428749.0) + :quat (new 'static 'quaternion :y 0.8757 :w -0.4828) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -737440.56 :y -274436.5 :z 8427325.0) + :quat (new 'static 'quaternion :y 0.8761 :w -0.482) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -739725.3 :y -274436.5 :z 8425866.0) + :quat (new 'static 'quaternion :y 0.8765 :w -0.4813) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -742007.6 :y -274436.5 :z 8424403.0) + :quat (new 'static 'quaternion :y 0.877 :w -0.4804) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -744287.0 :y -274436.5 :z 8422936.0) + :quat (new 'static 'quaternion :y 0.8774 :w -0.4796) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -746563.56 :y -274436.5 :z 8421464.0) + :quat (new 'static 'quaternion :y 0.8778 :w -0.4788) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -748836.9 :y -274436.5 :z 8419988.0) + :quat (new 'static 'quaternion :y 0.8783 :w -0.478) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -751107.7 :y -274436.5 :z 8418507.0) + :quat (new 'static 'quaternion :y 0.8788 :w -0.4771) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -753375.6 :y -274436.5 :z 8417022.0) + :quat (new 'static 'quaternion :y 0.8792 :w -0.4764) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -755640.75 :y -274436.5 :z 8415532.0) + :quat (new 'static 'quaternion :y 0.8796 :w -0.4756) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -757902.94 :y -274436.5 :z 8414038.0) + :quat (new 'static 'quaternion :y 0.8801 :w -0.4747) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -760162.3 :y -274436.5 :z 8412539.0) + :quat (new 'static 'quaternion :y 0.8805 :w -0.4739) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -762418.8 :y -274436.5 :z 8411037.0) + :quat (new 'static 'quaternion :y 0.881 :w -0.473) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -764672.0 :y -274436.5 :z 8409530.0) + :quat (new 'static 'quaternion :y 0.8814 :w -0.4722) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -766922.3 :y -274436.5 :z 8408019.0) + :quat (new 'static 'quaternion :y 0.8819 :w -0.4713) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -769170.25 :y -274436.5 :z 8406502.0) + :quat (new 'static 'quaternion :y 0.8823 :w -0.4705) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -771414.8 :y -274436.5 :z 8404983.0) + :quat (new 'static 'quaternion :y 0.8828 :w -0.4696) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -773656.2 :y -274436.5 :z 8403458.0) + :quat (new 'static 'quaternion :y 0.8832 :w -0.4688) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -775895.06 :y -274436.5 :z 8401929.0) + :quat (new 'static 'quaternion :y 0.8837 :w -0.4679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -778130.6 :y -274436.5 :z 8400396.0) + :quat (new 'static 'quaternion :y 0.8841 :w -0.4671) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -780363.4 :y -272703.9 :z 8398858.0) + :quat (new 'static 'quaternion :y 0.8846 :w -0.4661) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -782592.8 :y -269213.28 :z 8397315.0) + :quat (new 'static 'quaternion :y 0.8851 :w -0.4652) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -784819.8 :y -265591.6 :z 8395768.0) + :quat (new 'static 'quaternion :y 0.8856 :w -0.4643) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -787055.0 :y -262665.84 :z 8394235.0) + :quat (new 'static 'quaternion :y 0.885 :w -0.4655) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -789298.8 :y -260832.05 :z 8392716.0) + :quat (new 'static 'quaternion :y 0.8842 :w -0.4671) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -791540.94 :y -260308.17 :z 8391194.0) + :quat (new 'static 'quaternion :y 0.8839 :w -0.4675) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -793781.44 :y -261816.31 :z 8389670.0) + :quat (new 'static 'quaternion :y 0.8839 :w -0.4675) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -796019.94 :y -265276.62 :z 8388142.5) + :quat (new 'static 'quaternion :y 0.884 :w -0.4674) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -798256.75 :y -269829.3 :z 8386613.0) + :quat (new 'static 'quaternion :y 0.8842 :w -0.467) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -800491.94 :y -274436.5 :z 8385080.0) + :quat (new 'static 'quaternion :y 0.8844 :w -0.4665) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -802795.5 :y -274436.5 :z 8383496.5) + :quat (new 'static 'quaternion :y 0.8847 :w -0.466) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -805061.8 :y -274436.5 :z 8381934.5) + :quat (new 'static 'quaternion :y 0.885 :w -0.4655) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -807291.3 :y -274436.5 :z 8380393.5) + :quat (new 'static 'quaternion :y 0.8852 :w -0.465) + ) + ) + ) + ) diff --git a/goal_src/jak2/levels/underport/sig5-cent2-path0.gc b/goal_src/jak2/levels/underport/sig5-cent2-path0.gc index 7cf0b055ae..f461eb6eea 100644 --- a/goal_src/jak2/levels/underport/sig5-cent2-path0.gc +++ b/goal_src/jak2/levels/underport/sig5-cent2-path0.gc @@ -7,3 +7,8605 @@ ;; DECOMP BEGINS +(define *sig5-cent2-path0* (new 'static 'sig-path + :sample-count #x16c + :samples (new 'static 'inline-array sig-path-sample 364 + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -855633.94 :y -290815.6 :z 7995028.5) + :quat (new 'static 'quaternion :y 0.6088 :w 0.7933) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -855438.56 :y -290827.88 :z 7995252.5) + :quat (new 'static 'quaternion :y 0.4931 :w 0.8699) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -854752.06 :y -290828.28 :z 7995780.5) + :quat (new 'static 'quaternion :y 0.4934 :w 0.8697) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -853420.06 :y -290828.28 :z 7996632.5) + :quat (new 'static 'quaternion :y 0.4969 :w 0.8677) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -851495.75 :y -290828.28 :z 7997774.5) + :quat (new 'static 'quaternion :y 0.4984 :w 0.8669) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -849135.6 :y -290828.28 :z 7999138.5) + :quat (new 'static 'quaternion :y 0.4991 :w 0.8665) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -846829.2 :y -290828.28 :z 8000468.0) + :quat (new 'static 'quaternion :y 0.4995 :w 0.8662) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -844470.25 :y -290823.38 :z 8001826.5) + :quat (new 'static 'quaternion :y 0.4999 :w 0.866) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -842137.6 :y -290819.7 :z 8003166.0) + :quat (new 'static 'quaternion :y 0.5002 :w 0.8658) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -839737.4 :y -290819.7 :z 8004543.0) + :quat (new 'static 'quaternion :y 0.5005 :w 0.8657) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -837419.8 :y -290819.7 :z 8005869.0) + :quat (new 'static 'quaternion :y 0.5008 :w 0.8655) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -835079.8 :y -290819.7 :z 8007205.5) + :quat (new 'static 'quaternion :y 0.5011 :w 0.8653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -832690.56 :y -290819.7 :z 8008568.5) + :quat (new 'static 'quaternion :y 0.5014 :w 0.8651) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -830359.1 :y -290819.7 :z 8009894.5) + :quat (new 'static 'quaternion :y 0.5018 :w 0.8649) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -828010.06 :y -290819.7 :z 8011229.0) + :quat (new 'static 'quaternion :y 0.502 :w 0.8648) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -825683.94 :y -290819.7 :z 8012549.5) + :quat (new 'static 'quaternion :y 0.5024 :w 0.8646) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -823260.75 :y -290819.7 :z 8013923.0) + :quat (new 'static 'quaternion :y 0.5027 :w 0.8644) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -820925.25 :y -290819.7 :z 8015243.5) + :quat (new 'static 'quaternion :y 0.503 :w 0.8642) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -818589.7 :y -290819.7 :z 8016562.0) + :quat (new 'static 'quaternion :y 0.5033 :w 0.864) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -816202.1 :y -290819.7 :z 8017907.5) + :quat (new 'static 'quaternion :y 0.5036 :w 0.8638) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -813869.06 :y -290555.9 :z 8019219.5) + :quat (new 'static 'quaternion :y 0.504 :w 0.8636) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -811462.6 :y -288029.1 :z 8020572.0) + :quat (new 'static 'quaternion :y 0.5044 :w 0.8634) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -809131.2 :y -284611.38 :z 8021879.0) + :quat (new 'static 'quaternion :y 0.5047 :w 0.8632) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -806730.94 :y -281158.44 :z 8023222.5) + :quat (new 'static 'quaternion :y 0.505 :w 0.863) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -804404.8 :y -278584.94 :z 8024522.5) + :quat (new 'static 'quaternion :y 0.5054 :w 0.8628) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -802004.56 :y -277191.88 :z 8025861.0) + :quat (new 'static 'quaternion :y 0.5057 :w 0.8626) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -799658.4 :y -277495.0 :z 8027166.5) + :quat (new 'static 'quaternion :y 0.5061 :w 0.8624) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -797658.75 :y -275646.88 :z 8028278.5) + :quat (new 'static 'quaternion :y 0.5064 :w 0.8622) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -795729.5 :y -272526.53 :z 8029348.5) + :quat (new 'static 'quaternion :y 0.5067 :w 0.862) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -793871.1 :y -269754.38 :z 8030378.0) + :quat (new 'static 'quaternion :y 0.507 :w 0.8619) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -791934.2 :y -267939.03 :z 8031449.5) + :quat (new 'static 'quaternion :y 0.5073 :w 0.8617) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -790075.4 :y -267824.34 :z 8032476.0) + :quat (new 'static 'quaternion :y 0.5076 :w 0.8615) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -788145.4 :y -270044.38 :z 8033540.0) + :quat (new 'static 'quaternion :y 0.5079 :w 0.8614) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -786266.94 :y -273842.6 :z 8034576.0) + :quat (new 'static 'quaternion :y 0.5082 :w 0.8612) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -784381.56 :y -278505.06 :z 8035612.5) + :quat (new 'static 'quaternion :y 0.5084 :w 0.861) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -782488.75 :y -283301.47 :z 8036652.0) + :quat (new 'static 'quaternion :y 0.5086 :w 0.8609) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -780612.4 :y -288990.0 :z 8037682.0) + :quat (new 'static 'quaternion :y 0.5089 :w 0.8607) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -778453.0 :y -290812.3 :z 8038863.5) + :quat (new 'static 'quaternion :y 0.5092 :w 0.8606) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -776096.56 :y -290819.28 :z 8040151.5) + :quat (new 'static 'quaternion :y 0.5095 :w 0.8604) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -773682.0 :y -290819.7 :z 8041468.0) + :quat (new 'static 'quaternion :y 0.5098 :w 0.8602) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -771337.8 :y -290819.7 :z 8042744.0) + :quat (new 'static 'quaternion :y 0.5102 :w 0.86) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -768940.06 :y -290819.7 :z 8044046.5) + :quat (new 'static 'quaternion :y 0.5105 :w 0.8598) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -766507.44 :y -290819.7 :z 8045365.5) + :quat (new 'static 'quaternion :y 0.5108 :w 0.8596) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -764174.75 :y -290819.7 :z 8046628.5) + :quat (new 'static 'quaternion :y 0.5111 :w 0.8594) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -761741.3 :y -290819.7 :z 8047942.5) + :quat (new 'static 'quaternion :y 0.5114 :w 0.8592) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -759425.8 :y -290819.7 :z 8049191.5) + :quat (new 'static 'quaternion :y 0.5117 :w 0.8591) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -757028.44 :y -290819.7 :z 8050482.5) + :quat (new 'static 'quaternion :y 0.5121 :w 0.8589) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -754620.44 :y -290819.7 :z 8051776.5) + :quat (new 'static 'quaternion :y 0.5124 :w 0.8587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -752204.2 :y -290819.7 :z 8053071.5) + :quat (new 'static 'quaternion :y 0.5127 :w 0.8585) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -749800.6 :y -290819.7 :z 8054357.5) + :quat (new 'static 'quaternion :y 0.5131 :w 0.8583) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -747404.9 :y -290819.7 :z 8055637.0) + :quat (new 'static 'quaternion :y 0.5134 :w 0.8581) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -745014.5 :y -290819.7 :z 8056912.0) + :quat (new 'static 'quaternion :y 0.5137 :w 0.8579) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -742623.25 :y -290819.7 :z 8058184.5) + :quat (new 'static 'quaternion :y 0.514 :w 0.8577) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -740222.56 :y -290819.7 :z 8059460.5) + :quat (new 'static 'quaternion :y 0.5144 :w 0.8575) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -737877.2 :y -290819.7 :z 8060704.0) + :quat (new 'static 'quaternion :y 0.5147 :w 0.8573) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -735518.75 :y -290819.7 :z 8061953.0) + :quat (new 'static 'quaternion :y 0.515 :w 0.8571) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -733123.8 :y -290819.7 :z 8063217.5) + :quat (new 'static 'quaternion :y 0.5153 :w 0.8569) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -730725.56 :y -290373.22 :z 8064483.0) + :quat (new 'static 'quaternion :y 0.5157 :w 0.8567) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -728306.5 :y -287443.34 :z 8065756.5) + :quat (new 'static 'quaternion :y 0.5161 :w 0.8565) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -725927.94 :y -283819.62 :z 8067055.5) + :quat (new 'static 'quaternion :y 0.513 :w 0.8583) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -723540.4 :y -280342.53 :z 8068359.5) + :quat (new 'static 'quaternion :y 0.5115 :w 0.8592) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -721121.7 :y -277916.06 :z 8069680.5) + :quat (new 'static 'quaternion :y 0.5109 :w 0.8596) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -718744.4 :y -276652.84 :z 8070978.5) + :quat (new 'static 'quaternion :y 0.5105 :w 0.8598) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -716414.2 :y -277169.34 :z 8072250.0) + :quat (new 'static 'quaternion :y 0.5104 :w 0.8599) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -713982.75 :y -279874.34 :z 8073577.5) + :quat (new 'static 'quaternion :y 0.5103 :w 0.8599) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -711865.1 :y -279534.78 :z 8074606.0) + :quat (new 'static 'quaternion :y 0.5187 :w 0.8549) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -709781.5 :y -276654.9 :z 8075430.5) + :quat (new 'static 'quaternion :y 0.5402 :w 0.8415) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -707780.2 :y -273814.3 :z 8076148.5) + :quat (new 'static 'quaternion :y 0.5572 :w 0.8303) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -705589.25 :y -271912.97 :z 8076646.5) + :quat (new 'static 'quaternion :y 0.5877 :w 0.809) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -703473.7 :y -271607.0 :z 8076905.0) + :quat (new 'static 'quaternion :y 0.6227 :w 0.7824) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -701273.7 :y -273347.38 :z 8076848.5) + :quat (new 'static 'quaternion :y 0.6618 :w 0.7496) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -699097.94 :y -276987.9 :z 8076461.5) + :quat (new 'static 'quaternion :y 0.7032 :w 0.7109) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -697077.4 :y -281638.5 :z 8075730.0) + :quat (new 'static 'quaternion :y 0.7414 :w 0.6709) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -695090.8 :y -286363.25 :z 8074855.0) + :quat (new 'static 'quaternion :y 0.776 :w 0.6307) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -693097.25 :y -290856.97 :z 8074132.5) + :quat (new 'static 'quaternion :y 0.7825 :w 0.6225) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -690250.56 :y -291426.72 :z 8072914.0) + :quat (new 'static 'quaternion :y 0.7344 :w 0.6786) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -687166.7 :y -290336.78 :z 8072274.5) + :quat (new 'static 'quaternion :y 0.6943 :w 0.7196) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -684086.5 :y -289645.38 :z 8072016.5) + :quat (new 'static 'quaternion :y 0.6697 :w 0.7425) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -681369.6 :y -286400.5 :z 8072493.5) + :quat (new 'static 'quaternion :y 0.6564 :w 0.7544) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -678654.4 :y -282954.56 :z 8072990.5) + :quat (new 'static 'quaternion :y 0.6484 :w 0.7612) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -675963.7 :y -279912.03 :z 8073498.0) + :quat (new 'static 'quaternion :y 0.6432 :w 0.7656) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -673276.3 :y -278004.94 :z 8074011.5) + :quat (new 'static 'quaternion :y 0.6402 :w 0.7682) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -670679.44 :y -277038.28 :z 8074525.5) + :quat (new 'static 'quaternion :y 0.6373 :w 0.7705) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -668414.4 :y -275017.3 :z 8074978.0) + :quat (new 'static 'quaternion :y 0.6355 :w 0.772) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -666320.5 :y -271846.6 :z 8075391.5) + :quat (new 'static 'quaternion :y 0.635 :w 0.7724) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -664138.56 :y -269153.5 :z 8075835.0) + :quat (new 'static 'quaternion :y 0.6335 :w 0.7737) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -662066.0 :y -267642.47 :z 8076497.5) + :quat (new 'static 'quaternion :y 0.6165 :w 0.7873) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -660126.5 :y -267900.1 :z 8077481.0) + :quat (new 'static 'quaternion :y 0.5834 :w 0.8121) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -658266.94 :y -270403.2 :z 8078532.5) + :quat (new 'static 'quaternion :y 0.5469 :w 0.8371) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -656417.56 :y -274181.75 :z 8079592.0) + :quat (new 'static 'quaternion :y 0.5241 :w 0.8516) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -654287.7 :y -274435.7 :z 8080811.0) + :quat (new 'static 'quaternion :y 0.5128 :w 0.8584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -651757.2 :y -274435.7 :z 8081808.0) + :quat (new 'static 'quaternion :y 0.5524 :w 0.8335) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -649046.44 :y -273504.25 :z 8082224.5) + :quat (new 'static 'quaternion :y 0.6212 :w 0.7835) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -646341.44 :y -270322.47 :z 8082386.0) + :quat (new 'static 'quaternion :y 0.6695 :w 0.7427) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -643603.25 :y -266938.38 :z 8082347.5) + :quat (new 'static 'quaternion :y 0.6981 :w 0.7159) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -640862.6 :y -263973.28 :z 8082172.5) + :quat (new 'static 'quaternion :y 0.7147 :w 0.6993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -638185.9 :y -262127.61 :z 8081939.0) + :quat (new 'static 'quaternion :y 0.7261 :w 0.6874) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -635468.2 :y -261681.16 :z 8081628.0) + :quat (new 'static 'quaternion :y 0.7364 :w 0.6764) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -632801.25 :y -263012.75 :z 8081252.0) + :quat (new 'static 'quaternion :y 0.7453 :w 0.6666) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -630097.1 :y -266004.06 :z 8080795.5) + :quat (new 'static 'quaternion :y 0.7546 :w 0.6561) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -627461.75 :y -266057.3 :z 8080231.0) + :quat (new 'static 'quaternion :y 0.7629 :w 0.6464) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -624855.06 :y -265899.62 :z 8079633.0) + :quat (new 'static 'quaternion :y 0.7712 :w 0.6364) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -622270.06 :y -265887.75 :z 8078695.0) + :quat (new 'static 'quaternion :y 0.7942 :w 0.6075) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -619838.25 :y -265062.8 :z 8077417.5) + :quat (new 'static 'quaternion :y 0.8243 :w 0.566) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -617499.06 :y -262095.25 :z 8076041.5) + :quat (new 'static 'quaternion :y 0.8447 :w 0.5352) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -615194.6 :y -258894.23 :z 8074572.0) + :quat (new 'static 'quaternion :y 0.8593 :w 0.5113) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -612949.2 :y -255756.28 :z 8073025.0) + :quat (new 'static 'quaternion :y 0.871 :w 0.4911) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -610698.9 :y -253577.22 :z 8071484.0) + :quat (new 'static 'quaternion :y 0.8767 :w 0.4809) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -608444.0 :y -252794.06 :z 8069941.0) + :quat (new 'static 'quaternion :y 0.8799 :w 0.4749) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -606183.44 :y -254136.31 :z 8068411.5) + :quat (new 'static 'quaternion :y 0.8814 :w 0.4722) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -603984.3 :y -258101.66 :z 8066828.5) + :quat (new 'static 'quaternion :y 0.8848 :w 0.4658) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -601808.06 :y -263374.03 :z 8065157.0) + :quat (new 'static 'quaternion :y 0.8895 :w 0.4567) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -599100.6 :y -266191.25 :z 8063738.5) + :quat (new 'static 'quaternion :y 0.8949 :w 0.446) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -595455.56 :y -266239.2 :z 8062780.0) + :quat (new 'static 'quaternion :y 0.9012 :w 0.4332) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -591868.75 :y -266239.6 :z 8061735.0) + :quat (new 'static 'quaternion :y 0.9095 :w 0.4154) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588673.8 :y -266239.6 :z 8060448.0) + :quat (new 'static 'quaternion :y 0.9185 :w 0.3952) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -587328.7 :y -266239.6 :z 8058119.5) + :quat (new 'static 'quaternion :y 0.9256 :w 0.3782) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -585878.75 :y -266239.6 :z 8055725.0) + :quat (new 'static 'quaternion :y 0.9362 :w 0.3512) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -584347.25 :y -266239.6 :z 8053242.5) + :quat (new 'static 'quaternion :y 0.957 :w 0.29) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -582932.5 :y -266239.6 :z 8050938.5) + :quat (new 'static 'quaternion :y 0.9774 :w 0.2112) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581805.25 :y -265959.84 :z 8048587.0) + :quat (new 'static 'quaternion :y 0.9886 :w 0.1505) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581509.5 :y -263710.72 :z 8045927.5) + :quat (new 'static 'quaternion :y 0.9941 :w 0.108) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581173.7 :y -260199.22 :z 8043224.5) + :quat (new 'static 'quaternion :y 0.9959 :w 0.09) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580901.7 :y -256735.23 :z 8040516.5) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0746) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580748.06 :y -253640.3 :z 8037793.0) + :quat (new 'static 'quaternion :y 0.9984 :w 0.0564) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580728.8 :y -251647.19 :z 8035093.5) + :quat (new 'static 'quaternion :y 0.9993 :w 0.0356) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580827.1 :y -251336.3 :z 8032372.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0128) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580827.94 :y -253310.16 :z 8029559.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0077) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580767.3 :y -257432.78 :z 8026842.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0091) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580715.3 :y -262652.72 :z 8024125.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.009) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580689.94 :y -266181.84 :z 8021410.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0071) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580650.6 :y -266238.78 :z 8018685.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0071) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580166.44 :y -266239.6 :z 8016208.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0009) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -578751.7 :y -266239.6 :z 8014285.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0104) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -577358.6 :y -266239.6 :z 8012421.0) + :quat (new 'static 'quaternion :y 0.9998 :w -0.019) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -575909.06 :y -266239.6 :z 8010551.5) + :quat (new 'static 'quaternion :y 0.9996 :w -0.026) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -574474.25 :y -266239.6 :z 8008680.0) + :quat (new 'static 'quaternion :y 0.9995 :w -0.0306) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -573132.4 :y -266239.6 :z 8006815.5) + :quat (new 'static 'quaternion :y 0.9994 :w -0.0341) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571795.06 :y -266239.6 :z 8004946.5) + :quat (new 'static 'quaternion :y 0.9991 :w -0.0418) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -570528.1 :y -266239.6 :z 8003096.0) + :quat (new 'static 'quaternion :y 0.9986 :w -0.0514) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569254.7 :y -265945.5 :z 8001267.5) + :quat (new 'static 'quaternion :y 0.9982 :w -0.0584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569450.5 :y -263305.62 :z 7998664.5) + :quat (new 'static 'quaternion :y 0.9977 :w -0.0665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569918.25 :y -259987.05 :z 7995963.0) + :quat (new 'static 'quaternion :y 0.997 :w -0.0765) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570484.3 :y -256668.88 :z 7993272.5) + :quat (new 'static 'quaternion :y 0.9958 :w -0.0908) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571110.6 :y -254427.14 :z 7990605.5) + :quat (new 'static 'quaternion :y 0.9946 :w -0.1034) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571645.94 :y -253331.86 :z 7987928.5) + :quat (new 'static 'quaternion :y 0.995 :w -0.0993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571992.06 :y -254224.8 :z 7985207.5) + :quat (new 'static 'quaternion :y 0.9973 :w -0.0721) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -572098.56 :y -254679.86 :z 7982636.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.0374) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571797.5 :y -252205.47 :z 7980572.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0065) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571399.4 :y -249192.45 :z 7978425.0) + :quat (new 'static 'quaternion :y 0.9988 :w 0.0488) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571024.2 :y -247228.0 :z 7976274.0) + :quat (new 'static 'quaternion :y 0.9976 :w 0.0679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570670.7 :y -246530.05 :z 7974118.0) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0745) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570186.1 :y -247887.88 :z 7971989.0) + :quat (new 'static 'quaternion :y 0.9955 :w 0.0937) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569616.8 :y -251270.34 :z 7969880.5) + :quat (new 'static 'quaternion :y 0.9935 :w 0.1131) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569058.5 :y -255777.17 :z 7967768.0) + :quat (new 'static 'quaternion :y 0.9926 :w 0.1211) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568512.5 :y -260623.56 :z 7965653.0) + :quat (new 'static 'quaternion :y 0.9923 :w 0.1234) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568142.6 :y -265719.4 :z 7963503.5) + :quat (new 'static 'quaternion :y 0.9939 :w 0.1094) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567987.8 :y -266373.12 :z 7960967.0) + :quat (new 'static 'quaternion :y 0.9979 :w 0.0633) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567788.3 :y -267300.47 :z 7958309.5) + :quat (new 'static 'quaternion :y 0.9996 :w 0.0253) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567913.25 :y -269229.25 :z 7955593.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568279.44 :y -272249.25 :z 7952888.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.038) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568746.8 :y -274413.56 :z 7950198.0) + :quat (new 'static 'quaternion :y 0.998 :w -0.063) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569339.06 :y -274443.06 :z 7947534.0) + :quat (new 'static 'quaternion :y 0.996 :w -0.0883) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -570209.06 :y -274443.06 :z 7944948.0) + :quat (new 'static 'quaternion :y 0.9917 :w -0.1278) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571268.3 :y -274443.06 :z 7942433.0) + :quat (new 'static 'quaternion :y 0.9862 :w -0.1651) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -572487.7 :y -274443.47 :z 7939990.0) + :quat (new 'static 'quaternion :y 0.9799 :w -0.1992) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -573850.0 :y -274443.47 :z 7937625.0) + :quat (new 'static 'quaternion :y 0.973 :w -0.2307) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -575327.0 :y -272968.5 :z 7935328.5) + :quat (new 'static 'quaternion :y 0.9661 :w -0.2578) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576869.56 :y -269594.62 :z 7933074.5) + :quat (new 'static 'quaternion :y 0.9607 :w -0.2774) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -578454.3 :y -265963.94 :z 7930851.5) + :quat (new 'static 'quaternion :y 0.9564 :w -0.2919) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580091.5 :y -262935.34 :z 7928666.0) + :quat (new 'static 'quaternion :y 0.9524 :w -0.3047) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581702.9 :y -260992.2 :z 7926462.5) + :quat (new 'static 'quaternion :y 0.9516 :w -0.3072) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -583187.7 :y -260297.11 :z 7924171.0) + :quat (new 'static 'quaternion :y 0.9555 :w -0.2948) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584707.7 :y -261646.75 :z 7921856.0) + :quat (new 'static 'quaternion :y 0.9568 :w -0.2906) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -586099.5 :y -265220.9 :z 7919465.5) + :quat (new 'static 'quaternion :y 0.9605 :w -0.2782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587479.9 :y -269938.28 :z 7917088.0) + :quat (new 'static 'quaternion :y 0.9628 :w -0.2699) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588697.2 :y -274794.1 :z 7914692.5) + :quat (new 'static 'quaternion :y 0.9651 :w -0.2617) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -589139.94 :y -280308.12 :z 7912029.0) + :quat (new 'static 'quaternion :y 0.973 :w -0.2306) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -589293.2 :y -286907.6 :z 7909344.5) + :quat (new 'static 'quaternion :y 0.9823 :w -0.1869) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -589197.75 :y -290827.47 :z 7906584.0) + :quat (new 'static 'quaternion :y 0.9962 :w -0.0861) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588918.8 :y -290827.47 :z 7903871.0) + :quat (new 'static 'quaternion :y 0.9998 :w -0.0179) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588752.5 :y -290827.47 :z 7901183.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0047) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588702.1 :y -290827.47 :z 7898426.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0068) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588667.3 :y -290827.47 :z 7895755.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0065) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588648.44 :y -290827.47 :z 7892968.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0049) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588633.3 :y -290827.47 :z 7890339.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0039) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588618.94 :y -290827.47 :z 7887603.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0033) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588605.0 :y -290827.47 :z 7884848.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0029) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588591.94 :y -290827.47 :z 7882143.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0027) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588578.8 :y -288672.16 :z 7879490.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0026) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588553.0 :y -285091.44 :z 7876713.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588364.6 :y -281747.47 :z 7874042.0) + :quat (new 'static 'quaternion :y 0.9996 :w 0.0253) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587981.6 :y -279036.3 :z 7871329.5) + :quat (new 'static 'quaternion :y 0.9987 :w 0.049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587450.75 :y -277469.6 :z 7868650.0) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0739) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -586702.44 :y -277569.53 :z 7865999.0) + :quat (new 'static 'quaternion :y 0.9945 :w 0.1039) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -585607.56 :y -275708.3 :z 7863881.5) + :quat (new 'static 'quaternion :y 0.9894 :w 0.1447) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584317.75 :y -272701.84 :z 7862169.0) + :quat (new 'static 'quaternion :y 0.9812 :w 0.1926) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -582916.94 :y -269946.47 :z 7860548.5) + :quat (new 'static 'quaternion :y 0.9696 :w 0.2445) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581412.06 :y -268192.56 :z 7858967.5) + :quat (new 'static 'quaternion :y 0.9544 :w 0.2984) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -579871.56 :y -268084.03 :z 7857418.0) + :quat (new 'static 'quaternion :y 0.9406 :w 0.3393) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -578342.06 :y -270119.72 :z 7855857.5) + :quat (new 'static 'quaternion :y 0.9331 :w 0.3595) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576748.75 :y -273722.97 :z 7854365.5) + :quat (new 'static 'quaternion :y 0.9256 :w 0.3782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -575032.5 :y -278263.4 :z 7853015.5) + :quat (new 'static 'quaternion :y 0.9132 :w 0.4074) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -573306.06 :y -283045.88 :z 7851659.5) + :quat (new 'static 'quaternion :y 0.9065 :w 0.422) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571713.56 :y -288834.75 :z 7850154.5) + :quat (new 'static 'quaternion :y 0.9126 :w 0.4087) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569835.1 :y -290957.72 :z 7848550.0) + :quat (new 'static 'quaternion :y 0.9597 :w 0.2807) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -568066.44 :y -290262.22 :z 7846672.0) + :quat (new 'static 'quaternion :y 0.9898 :w 0.1421) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567199.3 :y -289271.8 :z 7844376.0) + :quat (new 'static 'quaternion :y 0.9977 :w 0.0667) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567190.75 :y -286378.8 :z 7841691.0) + :quat (new 'static 'quaternion :y 0.9997 :w 0.0234) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567316.06 :y -282765.3 :z 7838965.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.001) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567469.25 :y -279421.75 :z 7836239.5) + :quat (new 'static 'quaternion :y 0.9998 :w -0.015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567631.06 :y -277097.28 :z 7833508.5) + :quat (new 'static 'quaternion :y 0.9997 :w -0.0224) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567765.4 :y -275808.66 :z 7830876.0) + :quat (new 'static 'quaternion :y 0.9997 :w -0.0237) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567802.25 :y -276319.03 :z 7828147.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0136) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567602.0 :y -278965.03 :z 7825442.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0125) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567362.75 :y -279654.8 :z 7822939.5) + :quat (new 'static 'quaternion :y 0.9995 :w 0.0307) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567009.25 :y -277020.25 :z 7820800.5) + :quat (new 'static 'quaternion :y 0.9981 :w 0.0601) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -566455.5 :y -273824.97 :z 7818705.0) + :quat (new 'static 'quaternion :y 0.9945 :w 0.1042) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -565709.6 :y -271721.7 :z 7816658.0) + :quat (new 'static 'quaternion :y 0.9892 :w 0.1459) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -564863.0 :y -270949.6 :z 7814645.0) + :quat (new 'static 'quaternion :y 0.9848 :w 0.1735) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -563800.06 :y -272273.4 :z 7812741.0) + :quat (new 'static 'quaternion :y 0.9783 :w 0.207) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -562525.8 :y -275549.8 :z 7810999.0) + :quat (new 'static 'quaternion :y 0.9676 :w 0.2523) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -561127.44 :y -279918.2 :z 7809420.5) + :quat (new 'static 'quaternion :y 0.953 :w 0.3028) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -559625.8 :y -284518.8 :z 7808017.5) + :quat (new 'static 'quaternion :y 0.9347 :w 0.3551) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -558023.9 :y -289924.72 :z 7806793.5) + :quat (new 'static 'quaternion :y 0.913 :w 0.4077) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -555440.56 :y -291139.6 :z 7806014.0) + :quat (new 'static 'quaternion :y 0.8865 :w 0.4626) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -552571.3 :y -290088.56 :z 7804843.0) + :quat (new 'static 'quaternion :y 0.9093 :w 0.4161) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -549994.5 :y -290143.03 :z 7803175.5) + :quat (new 'static 'quaternion :y 0.93 :w 0.3673) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -547489.8 :y -290367.1 :z 7801440.5) + :quat (new 'static 'quaternion :y 0.9413 :w 0.3374) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -545890.7 :y -287452.78 :z 7799227.0) + :quat (new 'static 'quaternion :y 0.9466 :w 0.3221) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -544311.3 :y -283839.7 :z 7797000.0) + :quat (new 'static 'quaternion :y 0.9499 :w 0.3123) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -542842.5 :y -280367.94 :z 7794698.0) + :quat (new 'static 'quaternion :y 0.9559 :w 0.2936) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -541473.2 :y -277988.16 :z 7792335.5) + :quat (new 'static 'quaternion :y 0.9611 :w 0.2759) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -540117.8 :y -276700.38 :z 7789965.5) + :quat (new 'static 'quaternion :y 0.9639 :w 0.266) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -538780.9 :y -276172.8 :z 7787663.5) + :quat (new 'static 'quaternion :y 0.9647 :w 0.2632) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -537664.3 :y -273960.97 :z 7785778.5) + :quat (new 'static 'quaternion :y 0.9645 :w 0.2638) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -536553.06 :y -270567.0 :z 7783897.5) + :quat (new 'static 'quaternion :y 0.9645 :w 0.2637) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -535432.0 :y -268190.5 :z 7782022.0) + :quat (new 'static 'quaternion :y 0.9642 :w 0.265) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -534303.94 :y -266906.84 :z 7780151.5) + :quat (new 'static 'quaternion :y 0.9638 :w 0.2665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -533171.0 :y -267670.72 :z 7778284.0) + :quat (new 'static 'quaternion :y 0.9634 :w 0.2679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -532064.7 :y -270673.9 :z 7776401.0) + :quat (new 'static 'quaternion :y 0.9642 :w 0.2648) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -531056.25 :y -274769.1 :z 7774464.0) + :quat (new 'static 'quaternion :y 0.9683 :w 0.2495) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -530219.44 :y -279383.66 :z 7772446.5) + :quat (new 'static 'quaternion :y 0.9755 :w 0.2199) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -529501.0 :y -284516.34 :z 7770385.0) + :quat (new 'static 'quaternion :y 0.9813 :w 0.1924) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528778.9 :y -290741.88 :z 7768326.0) + :quat (new 'static 'quaternion :y 0.9836 :w 0.1799) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528033.0 :y -290828.28 :z 7766016.5) + :quat (new 'static 'quaternion :y 0.9863 :w 0.1643) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -527449.7 :y -290828.28 :z 7763370.5) + :quat (new 'static 'quaternion :y 0.9909 :w 0.1342) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -527015.1 :y -290828.28 :z 7760690.0) + :quat (new 'static 'quaternion :y 0.9943 :w 0.106) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526663.7 :y -290383.47 :z 7757989.5) + :quat (new 'static 'quaternion :y 0.9964 :w 0.084) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526406.9 :y -287469.16 :z 7755270.0) + :quat (new 'static 'quaternion :y 0.9979 :w 0.0647) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526293.4 :y -283856.06 :z 7752544.0) + :quat (new 'static 'quaternion :y 0.9994 :w 0.0339) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526384.75 :y -280383.9 :z 7749819.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0055) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526680.5 :y -278004.12 :z 7747107.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.0381) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -527178.94 :y -276716.75 :z 7744423.0) + :quat (new 'static 'quaternion :y 0.9975 :w -0.0696) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -527870.75 :y -277174.28 :z 7741782.5) + :quat (new 'static 'quaternion :y 0.9947 :w -0.102) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -528703.9 :y -279801.44 :z 7739182.0) + :quat (new 'static 'quaternion :y 0.9915 :w -0.13) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -529642.3 :y -283808.16 :z 7736618.0) + :quat (new 'static 'quaternion :y 0.9881 :w -0.1534) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -530479.1 :y -281504.97 :z 7734518.0) + :quat (new 'static 'quaternion :y 0.9849 :w -0.1727) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -531336.8 :y -278252.75 :z 7732508.5) + :quat (new 'static 'quaternion :y 0.9823 :w -0.1872) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -532233.8 :y -275603.47 :z 7730517.0) + :quat (new 'static 'quaternion :y 0.9799 :w -0.1993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -533169.75 :y -274046.56 :z 7728543.0) + :quat (new 'static 'quaternion :y 0.9777 :w -0.2099) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -534118.8 :y -274298.47 :z 7726575.0) + :quat (new 'static 'quaternion :y 0.9762 :w -0.2168) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -535105.56 :y -276741.75 :z 7724626.5) + :quat (new 'static 'quaternion :y 0.9743 :w -0.2249) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -536129.1 :y -280564.12 :z 7722696.5) + :quat (new 'static 'quaternion :y 0.9723 :w -0.2336) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -537188.4 :y -285192.2 :z 7720786.0) + :quat (new 'static 'quaternion :y 0.9701 :w -0.2425) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -538283.2 :y -290052.1 :z 7718895.5) + :quat (new 'static 'quaternion :y 0.9678 :w -0.2515) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -539542.3 :y -290827.47 :z 7716805.5) + :quat (new 'static 'quaternion :y 0.9654 :w -0.2606) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -541002.94 :y -290827.47 :z 7714497.5) + :quat (new 'static 'quaternion :y 0.9628 :w -0.2701) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -542514.4 :y -290827.47 :z 7712223.0) + :quat (new 'static 'quaternion :y 0.9599 :w -0.2802) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -544077.8 :y -290827.47 :z 7709984.5) + :quat (new 'static 'quaternion :y 0.9567 :w -0.2907) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -545712.56 :y -290827.47 :z 7707797.0) + :quat (new 'static 'quaternion :y 0.9526 :w -0.304) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -547411.56 :y -290827.47 :z 7705660.0) + :quat (new 'static 'quaternion :y 0.9481 :w -0.3177) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -549180.6 :y -290827.47 :z 7703579.5) + :quat (new 'static 'quaternion :y 0.9432 :w -0.3321) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -550998.8 :y -290827.47 :z 7701542.0) + :quat (new 'static 'quaternion :y 0.9386 :w -0.345) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -552866.2 :y -290827.47 :z 7699550.0) + :quat (new 'static 'quaternion :y 0.934 :w -0.357) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -554781.5 :y -290827.47 :z 7697603.5) + :quat (new 'static 'quaternion :y 0.9295 :w -0.3687) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -556743.5 :y -290827.47 :z 7695703.0) + :quat (new 'static 'quaternion :y 0.9249 :w -0.3801) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -558750.94 :y -290827.47 :z 7693852.0) + :quat (new 'static 'quaternion :y 0.9202 :w -0.3914) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -560803.0 :y -290827.47 :z 7692049.5) + :quat (new 'static 'quaternion :y 0.9153 :w -0.4026) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -562909.2 :y -290827.47 :z 7690311.5) + :quat (new 'static 'quaternion :y 0.9097 :w -0.4152) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -565057.56 :y -290827.47 :z 7688626.0) + :quat (new 'static 'quaternion :y 0.9042 :w -0.427) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567260.75 :y -290827.47 :z 7687013.0) + :quat (new 'static 'quaternion :y 0.8975 :w -0.4409) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569550.9 :y -290827.47 :z 7685526.0) + :quat (new 'static 'quaternion :y 0.8877 :w -0.4604) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571971.2 :y -290827.47 :z 7684210.5) + :quat (new 'static 'quaternion :y 0.8731 :w -0.4875) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -574435.75 :y -290827.47 :z 7682996.0) + :quat (new 'static 'quaternion :y 0.8607 :w -0.509) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576942.06 :y -289074.38 :z 7681850.0) + :quat (new 'static 'quaternion :y 0.8506 :w -0.5256) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -579457.8 :y -285589.1 :z 7680789.5) + :quat (new 'static 'quaternion :y 0.8415 :w -0.5401) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -582003.5 :y -281958.8 :z 7679802.0) + :quat (new 'static 'quaternion :y 0.8329 :w -0.5534) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584577.0 :y -279042.06 :z 7678889.0) + :quat (new 'static 'quaternion :y 0.8244 :w -0.5659) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587193.94 :y -277205.4 :z 7678047.5) + :quat (new 'static 'quaternion :y 0.8158 :w -0.5782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -589752.3 :y -275850.03 :z 7677303.5) + :quat (new 'static 'quaternion :y 0.8072 :w -0.5902) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -591879.8 :y -273631.22 :z 7676752.0) + :quat (new 'static 'quaternion :y 0.7986 :w -0.6018) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -594007.25 :y -270239.34 :z 7676258.0) + :quat (new 'static 'quaternion :y 0.7904 :w -0.6125) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -596081.9 :y -267918.94 :z 7675828.5) + :quat (new 'static 'quaternion :y 0.7828 :w -0.6221) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -598229.4 :y -266618.06 :z 7675436.5) + :quat (new 'static 'quaternion :y 0.7752 :w -0.6316) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -600433.9 :y -267434.4 :z 7675090.0) + :quat (new 'static 'quaternion :y 0.7678 :w -0.6406) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -602535.1 :y -270273.75 :z 7674808.0) + :quat (new 'static 'quaternion :y 0.7602 :w -0.6496) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -604734.7 :y -274412.34 :z 7674566.0) + :quat (new 'static 'quaternion :y 0.752 :w -0.659) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -606955.94 :y -279135.03 :z 7674375.5) + :quat (new 'static 'quaternion :y 0.7439 :w -0.6681) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -609153.8 :y -284328.75 :z 7674240.0) + :quat (new 'static 'quaternion :y 0.7361 :w -0.6768) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -611309.2 :y -289944.78 :z 7674159.0) + :quat (new 'static 'quaternion :y 0.7287 :w -0.6848) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -613687.7 :y -290815.6 :z 7674041.0) + :quat (new 'static 'quaternion :y 0.7197 :w -0.6941) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -616309.94 :y -290815.6 :z 7673866.0) + :quat (new 'static 'quaternion :y 0.7101 :w -0.704) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -618886.4 :y -290815.6 :z 7673412.5) + :quat (new 'static 'quaternion :y 0.7158 :w -0.6982) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -621245.25 :y -290815.6 :z 7672296.5) + :quat (new 'static 'quaternion :y 0.7519 :w -0.6592) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -623518.1 :y -290815.6 :z 7670765.0) + :quat (new 'static 'quaternion :y 0.7868 :w -0.6171) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -625700.06 :y -290815.6 :z 7669013.5) + :quat (new 'static 'quaternion :y 0.8082 :w -0.5888) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -627746.44 :y -290815.6 :z 7667210.0) + :quat (new 'static 'quaternion :y 0.8188 :w -0.574) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -629875.5 :y -290815.6 :z 7665241.5) + :quat (new 'static 'quaternion :y 0.8259 :w -0.5637) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -631884.2 :y -290815.6 :z 7663284.5) + :quat (new 'static 'quaternion :y 0.8344 :w -0.5511) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -633898.6 :y -290815.6 :z 7661263.5) + :quat (new 'static 'quaternion :y 0.8398 :w -0.5428) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -635901.94 :y -290815.6 :z 7659158.5) + :quat (new 'static 'quaternion :y 0.8441 :w -0.536) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -637892.6 :y -290815.6 :z 7657080.5) + :quat (new 'static 'quaternion :y 0.8477 :w -0.5303) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -639710.8 :y -289927.16 :z 7654797.0) + :quat (new 'static 'quaternion :y 0.8536 :w -0.5208) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -641699.44 :y -286681.1 :z 7652598.0) + :quat (new 'static 'quaternion :y 0.8627 :w -0.5057) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -643639.3 :y -283403.47 :z 7650592.5) + :quat (new 'static 'quaternion :y 0.8685 :w -0.4956) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -645680.3 :y -280434.28 :z 7648618.5) + :quat (new 'static 'quaternion :y 0.8727 :w -0.4882) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -647775.0 :y -278533.75 :z 7646737.0) + :quat (new 'static 'quaternion :y 0.8756 :w -0.4829) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -649857.8 :y -278070.47 :z 7645010.5) + :quat (new 'static 'quaternion :y 0.8776 :w -0.4793) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -651679.3 :y -276311.66 :z 7643544.5) + :quat (new 'static 'quaternion :y 0.8811 :w -0.4727) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -653354.6 :y -273222.03 :z 7642017.5) + :quat (new 'static 'quaternion :y 0.8952 :w -0.4456) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -654858.6 :y -270623.53 :z 7640443.0) + :quat (new 'static 'quaternion :y 0.9143 :w -0.4049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -656205.8 :y -269122.75 :z 7638737.0) + :quat (new 'static 'quaternion :y 0.934 :w -0.3571) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -657349.44 :y -269243.2 :z 7636970.0) + :quat (new 'static 'quaternion :y 0.9515 :w -0.3075) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -658351.3 :y -271560.72 :z 7635045.0) + :quat (new 'static 'quaternion :y 0.9671 :w -0.2541) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -659162.3 :y -275610.4 :z 7633023.0) + :quat (new 'static 'quaternion :y 0.9797 :w -0.2003) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -659771.8 :y -280427.72 :z 7631010.0) + :quat (new 'static 'quaternion :y 0.9878 :w -0.1555) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -660338.7 :y -285360.12 :z 7628882.5) + :quat (new 'static 'quaternion :y 0.9896 :w -0.1437) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661098.5 :y -290815.6 :z 7626816.0) + :quat (new 'static 'quaternion :y 0.9863 :w -0.1645) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661808.3 :y -290815.6 :z 7623775.5) + :quat (new 'static 'quaternion :y 0.9777 :w -0.2095) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -663071.1 :y -290815.6 :z 7620762.5) + :quat (new 'static 'quaternion :y 0.9604 :w -0.2784) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -664739.8 :y -290815.6 :z 7618151.0) + :quat (new 'static 'quaternion :y 0.9334 :w -0.3587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -666538.4 :y -290815.6 :z 7615913.0) + :quat (new 'static 'quaternion :y 0.9074 :w -0.4201) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -668433.6 :y -290815.6 :z 7613640.0) + :quat (new 'static 'quaternion :y 0.8906 :w -0.4547) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -670290.3 :y -290566.56 :z 7611263.0) + :quat (new 'static 'quaternion :y 0.8781 :w -0.4783) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -672281.8 :y -288049.16 :z 7609100.5) + :quat (new 'static 'quaternion :y 0.8664 :w -0.4993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -674386.3 :y -284501.2 :z 7607227.0) + :quat (new 'static 'quaternion :y 0.8581 :w -0.5134) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -676462.2 :y -281063.44 :z 7605568.5) + :quat (new 'static 'quaternion :y 0.8527 :w -0.5222) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -678788.3 :y -278355.97 :z 7603969.5) + :quat (new 'static 'quaternion :y 0.8471 :w -0.5313) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -681173.4 :y -276822.44 :z 7602576.0) + :quat (new 'static 'quaternion :y 0.8414 :w -0.5402) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -683504.0 :y -276876.1 :z 7601411.5) + :quat (new 'static 'quaternion :y 0.8369 :w -0.5472) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -685853.9 :y -276482.06 :z 7600421.5) + :quat (new 'static 'quaternion :y 0.8322 :w -0.5544) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -687903.1 :y -273920.4 :z 7599655.5) + :quat (new 'static 'quaternion :y 0.8266 :w -0.5627) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -689960.1 :y -270697.28 :z 7598919.5) + :quat (new 'static 'quaternion :y 0.8217 :w -0.5697) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -692032.3 :y -268539.5 :z 7598229.0) + :quat (new 'static 'quaternion :y 0.8162 :w -0.5777) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -694116.4 :y -267673.2 :z 7597574.0) + :quat (new 'static 'quaternion :y 0.8109 :w -0.5851) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -696279.06 :y -268978.2 :z 7596936.5) + :quat (new 'static 'quaternion :y 0.8056 :w -0.5923) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -698400.75 :y -272270.53 :z 7596350.5) + :quat (new 'static 'quaternion :y 0.8003 :w -0.5995) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -700443.06 :y -276488.2 :z 7595824.5) + :quat (new 'static 'quaternion :y 0.7953 :w -0.6061) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -702588.1 :y -281141.25 :z 7595308.5) + :quat (new 'static 'quaternion :y 0.7901 :w -0.6129) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -704725.4 :y -286524.62 :z 7594834.5) + :quat (new 'static 'quaternion :y 0.7847 :w -0.6197) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -706895.44 :y -290729.97 :z 7594390.0) + :quat (new 'static 'quaternion :y 0.7794 :w -0.6265) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -709489.44 :y -290828.28 :z 7593910.5) + :quat (new 'static 'quaternion :y 0.7735 :w -0.6337) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -712201.44 :y -290828.7 :z 7593462.0) + :quat (new 'static 'quaternion :y 0.7677 :w -0.6407) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -714913.0 :y -290828.7 :z 7593067.0) + :quat (new 'static 'quaternion :y 0.7617 :w -0.6478) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -717565.94 :y -290828.7 :z 7592561.5) + :quat (new 'static 'quaternion :y 0.7669 :w -0.6417) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -720198.06 :y -290828.7 :z 7591882.0) + :quat (new 'static 'quaternion :y 0.7784 :w -0.6276) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -722876.44 :y -290828.7 :z 7591182.5) + :quat (new 'static 'quaternion :y 0.7848 :w -0.6196) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -725559.3 :y -290828.7 :z 7590521.0) + :quat (new 'static 'quaternion :y 0.7859 :w -0.6182) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -728116.0 :y -290828.7 :z 7589927.0) + :quat (new 'static 'quaternion :y 0.7845 :w -0.6201) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -730785.4 :y -290828.7 :z 7589341.5) + :quat (new 'static 'quaternion :y 0.7816 :w -0.6236) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -733453.1 :y -290797.97 :z 7588783.5) + :quat (new 'static 'quaternion :y 0.779 :w -0.6269) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -736087.6 :y -290822.97 :z 7588069.5) + :quat (new 'static 'quaternion :y 0.7878 :w -0.6158) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -738711.56 :y -290823.38 :z 7587237.5) + :quat (new 'static 'quaternion :y 0.7977 :w -0.6029) + ) + ) + ) + ) diff --git a/test/decompiler/reference/jak2/levels/city/kid_escort/crocesc-h_REF.gc b/test/decompiler/reference/jak2/levels/city/kid_escort/crocesc-h_REF.gc new file mode 100644 index 0000000000..68ad2e14c1 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/city/kid_escort/crocesc-h_REF.gc @@ -0,0 +1,99 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type crocadog-escort +(deftype crocadog-escort (bot) + ((travel-anim-interp float :offset-assert 992) + (anim-speed float :offset-assert 996) + (kid-handle handle :offset-assert 1000) + (pad-ki1jn23ikuj1n2 uint32 4 :offset-assert 1008) + (local-seat-pos vector :inline :offset-assert 1024) + (exit-vehicle-dest vector :inline :offset 368) + ) + :heap-base #x390 + :method-count-assert 239 + :size-assert #x410 + :flag-assert #xef03900410 + (:methods + (crocadog-escort-method-225 () none 225) + (crocadog-escort-method-226 () none 226) + (crocadog-escort-method-227 () none 227) + (crocadog-escort-method-228 () none 228) + (crocadog-escort-method-229 () none 229) + (crocadog-escort-method-230 () none 230) + (crocadog-escort-method-231 () none 231) + (crocadog-escort-method-232 () none 232) + (crocadog-escort-method-233 () none 233) + (crocadog-escort-method-234 () none 234) + (crocadog-escort-method-235 () none 235) + (crocadog-escort-method-236 () none 236) + (crocadog-escort-method-237 () none 237) + (crocadog-escort-method-238 () none 238) + ) + ) + +;; definition for method 3 of type crocadog-escort +(defmethod inspect crocadog-escort ((obj crocadog-escort)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type bot inspect))) + (t9-0 obj) + ) + (format #t "~2Ttravel-anim-interp: ~f~%" (-> obj travel-anim-interp)) + (format #t "~2Tanim-speed: ~f~%" (-> obj anim-speed)) + (format #t "~2Tkid-handle: ~D~%" (-> obj kid-handle)) + (format #t "~2Tvehicle-handle: ~D~%" (-> obj vehicle-handle)) + (format #t "~2Tlocal-seat-pos: #~%" (-> obj local-seat-pos)) + (format #t "~2Texit-vehicle-dest: ~`vector`P~%" (-> obj exit-vehicle-dest)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +(defskelgroup skel-crocadog-escort crocadog-escort 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 2) + :shadow 2 + :origin-joint-index 20 + ) + +;; definition of type crocesct-wait-spot +(deftype crocesct-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type crocesct-wait-spot +(defmethod inspect crocesct-wait-spot ((obj crocesct-wait-spot)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tspot-indexes[6] @ #x~X~%" (-> obj spot-indexes)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/city/kid_escort/kidesc-h_REF.gc b/test/decompiler/reference/jak2/levels/city/kid_escort/kidesc-h_REF.gc new file mode 100644 index 0000000000..366d2378d5 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/city/kid_escort/kidesc-h_REF.gc @@ -0,0 +1,94 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type kid-escort +(deftype kid-escort (bot) + ((travel-anim-interp float :offset-assert 992) + (arrest-attempt-time time-frame :offset-assert 1000) + (arrestor-handle handle :offset-assert 1008) + (crocadog-handle handle :offset-assert 1016) + (exit-vehicle-dest vector :inline :offset 368) + ) + :heap-base #x380 + :method-count-assert 240 + :size-assert #x400 + :flag-assert #xf003800400 + (:methods + (kid-escort-method-225 () none 225) + (kid-escort-method-226 () none 226) + (kid-escort-method-227 () none 227) + (kid-escort-method-228 () none 228) + (kid-escort-method-229 () none 229) + (kid-escort-method-230 () none 230) + (kid-escort-method-231 () none 231) + (kid-escort-method-232 () none 232) + (kid-escort-method-233 () none 233) + (kid-escort-method-234 () none 234) + (kid-escort-method-235 () none 235) + (kid-escort-method-236 () none 236) + (kid-escort-method-237 () none 237) + (kid-escort-method-238 () none 238) + (kid-escort-method-239 () none 239) + ) + ) + +;; definition for method 3 of type kid-escort +(defmethod inspect kid-escort ((obj kid-escort)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type bot inspect))) + (t9-0 obj) + ) + (format #t "~2Ttravel-anim-interp: ~f~%" (-> obj travel-anim-interp)) + (format #t "~2Tarrest-attempt-time: ~D~%" (-> obj arrest-attempt-time)) + (format #t "~2Tarrestor-handle: ~D~%" (-> obj arrestor-handle)) + (format #t "~2Tcrocadog-handle: ~D~%" (-> obj crocadog-handle)) + (format #t "~2Texit-vehicle-dest: ~`vector`P~%" (-> obj exit-vehicle-dest)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +(defskelgroup skel-kid-escort kid-escort 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 2) + :shadow 2 + :origin-joint-index 13 + ) + +;; definition of type kidesct-wait-spot +(deftype kidesct-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type kidesct-wait-spot +(defmethod inspect kidesct-wait-spot ((obj kidesct-wait-spot)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tspot-indexes[6] @ #x~X~%" (-> obj spot-indexes)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 diff --git a/test/decompiler/reference/jak2/levels/common/enemy/bombots/bombbot-h_REF.gc b/test/decompiler/reference/jak2/levels/common/enemy/bombots/bombbot-h_REF.gc new file mode 100644 index 0000000000..7e3a6b277b --- /dev/null +++ b/test/decompiler/reference/jak2/levels/common/enemy/bombots/bombbot-h_REF.gc @@ -0,0 +1,61 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type bombbot-node +(deftype bombbot-node (structure) + ((position vector :inline :offset-assert 0) + (nav-mesh-id uint32 :offset-assert 16) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) + ) + :method-count-assert 9 + :size-assert #x14 + :flag-assert #x900000014 + ) + +;; definition for method 3 of type bombbot-node +(defmethod inspect bombbot-node ((obj bombbot-node)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj 'bombbot-node) + (format #t "~1Tposition: ~`vector`P~%" (-> obj position)) + (format #t "~1Tnav-mesh-id: ~D~%" (-> obj nav-mesh-id)) + (format #t "~1Tpos-x: ~f~%" (-> obj position x)) + (format #t "~1Tpos-y: ~f~%" (-> obj position y)) + (format #t "~1Tpos-z: ~f~%" (-> obj position z)) + (label cfg-4) + obj + ) + +;; definition of type bombbot-path +(deftype bombbot-path (structure) + ((node-count uint16 :offset-assert 0) + (node uint32 :offset-assert 4) + ) + :method-count-assert 9 + :size-assert #x8 + :flag-assert #x900000008 + ) + +;; definition for method 3 of type bombbot-path +(defmethod inspect bombbot-path ((obj bombbot-path)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj 'bombbot-path) + (format #t "~1Tnode-count: ~D~%" (-> obj node-count)) + (format #t "~1Tnode: #x~X~%" (-> obj node)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/common/enemy/hover/hover-enemy-h_REF.gc b/test/decompiler/reference/jak2/levels/common/enemy/hover/hover-enemy-h_REF.gc new file mode 100644 index 0000000000..a3dddec6fd --- /dev/null +++ b/test/decompiler/reference/jak2/levels/common/enemy/hover/hover-enemy-h_REF.gc @@ -0,0 +1,145 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type hover-enemy-info +(deftype hover-enemy-info (structure) + ((fly-forward-anim int32 :offset-assert 0) + (fly-backward-anim int32 :offset-assert 4) + (fly-left-anim int32 :offset-assert 8) + (fly-right-anim int32 :offset-assert 12) + (shoot-anim int32 :offset-assert 16) + (main-joint int32 :offset-assert 20) + (gun-base int32 :offset-assert 24) + (engine-left int32 :offset-assert 28) + (engine-right int32 :offset-assert 32) + (thrust-rotate-left float :offset-assert 36) + (thrust-rotate-right float :offset-assert 40) + ) + :method-count-assert 9 + :size-assert #x2c + :flag-assert #x90000002c + ) + +;; definition for method 3 of type hover-enemy-info +(defmethod inspect hover-enemy-info ((obj hover-enemy-info)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj 'hover-enemy-info) + (format #t "~1Tfly-forward-anim: ~D~%" (-> obj fly-forward-anim)) + (format #t "~1Tfly-backward-anim: ~D~%" (-> obj fly-backward-anim)) + (format #t "~1Tfly-left-anim: ~D~%" (-> obj fly-left-anim)) + (format #t "~1Tfly-right-anim: ~D~%" (-> obj fly-right-anim)) + (format #t "~1Tshoot-anim: ~D~%" (-> obj shoot-anim)) + (format #t "~1Tmain-joint: ~D~%" (-> obj main-joint)) + (format #t "~1Tgun-base: ~D~%" (-> obj gun-base)) + (format #t "~1Tengine-left: ~D~%" (-> obj engine-left)) + (format #t "~1Tengine-right: ~D~%" (-> obj engine-right)) + (format #t "~1Tthrust-rotate-left: ~f~%" (-> obj thrust-rotate-left)) + (format #t "~1Tthrust-rotate-right: ~f~%" (-> obj thrust-rotate-right)) + (label cfg-4) + obj + ) + +;; definition of type hover-enemy +(deftype hover-enemy (enemy) + ((hover basic :offset-assert 532) + (hover-info hover-enemy-info :offset-assert 536) + (formation-entity basic :offset-assert 540) + (fly-anim-speed float :offset-assert 544) + (restart-fly-anims basic :offset-assert 548) + (main-joint-acc vector :inline :offset-assert 560) + (main-joint-vel vector :inline :offset-assert 576) + (main-joint-pos vector :inline :offset-assert 592) + (thrust int64 2 :offset-assert 608) + (rotation-vec vector :inline :offset-assert 624) + (dest-pos vector :inline :offset-assert 640) + (offset vector :inline :offset-assert 656) + (surface-normal vector :inline :offset-assert 672) + (local-dir vector :inline :offset-assert 688) + (scale float :offset-assert 704) + (scale-timer uint64 :offset-assert 712) + (hit-surface? basic :offset-assert 720) + (knocked-start-level float :offset-assert 724) + (knocked-fall-dist float :offset-assert 728) + (flying-death-anim int32 :offset-assert 732) + (flying-death-transv vector :inline :offset-assert 736) + (flying-death-engine int32 :offset-assert 752) + (flying-death-thrust-rotate float :offset-assert 756) + (flying-death-spin float :offset-assert 760) + (flying-death-spin-dest float :offset-assert 764) + (flying-death-spin-axis vector :inline :offset-assert 768) + ) + :heap-base #x290 + :method-count-assert 156 + :size-assert #x310 + :flag-assert #x9c02900310 + (:methods + (hover-enemy-method-137 () none 137) + (hover-enemy-method-138 () none 138) + (hover-enemy-method-139 () none 139) + (hover-enemy-method-140 () none 140) + (hover-enemy-method-141 () none 141) + (hover-enemy-method-142 () none 142) + (hover-enemy-method-143 () none 143) + (hover-enemy-method-144 () none 144) + (hover-enemy-method-145 () none 145) + (hover-enemy-method-146 () none 146) + (hover-enemy-method-147 () none 147) + (hover-enemy-method-148 () none 148) + (hover-enemy-method-149 () none 149) + (hover-enemy-method-150 () none 150) + (hover-enemy-method-151 () none 151) + (hover-enemy-method-152 () none 152) + (hover-enemy-method-153 () none 153) + (hover-enemy-method-154 () none 154) + (hover-enemy-method-155 () none 155) + ) + ) + +;; definition for method 3 of type hover-enemy +(defmethod inspect hover-enemy ((obj hover-enemy)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type enemy inspect))) + (t9-0 obj) + ) + (format #t "~2Thover: ~A~%" (-> obj hover)) + (format #t "~2Thover-info: #~%" (-> obj hover-info)) + (format #t "~2Tformation-entity: ~A~%" (-> obj formation-entity)) + (format #t "~2Tfly-anim-speed: ~f~%" (-> obj fly-anim-speed)) + (format #t "~2Trestart-fly-anims: ~A~%" (-> obj restart-fly-anims)) + (format #t "~2Tmain-joint-acc: #~%" (-> obj main-joint-acc)) + (format #t "~2Tmain-joint-vel: #~%" (-> obj main-joint-vel)) + (format #t "~2Tmain-joint-pos: #~%" (-> obj main-joint-pos)) + (format #t "~2Tthrust[2] @ #x~X~%" (-> obj thrust)) + (format #t "~2Trotation-vec: #~%" (-> obj rotation-vec)) + (format #t "~2Tdest-pos: #~%" (-> obj dest-pos)) + (format #t "~2Toffset: #~%" (-> obj offset)) + (format #t "~2Tsurface-normal: #~%" (-> obj surface-normal)) + (format #t "~2Tlocal-dir: #~%" (-> obj local-dir)) + (format #t "~2Tscale: ~f~%" (-> obj scale)) + (format #t "~2Tscale-timer: ~D~%" (-> obj scale-timer)) + (format #t "~2Thit-surface?: ~A~%" (-> obj hit-surface?)) + (format #t "~2Tknocked-start-level: ~f~%" (-> obj knocked-start-level)) + (format #t "~2Tknocked-fall-dist: ~f~%" (-> obj knocked-fall-dist)) + (format #t "~2Tflying-death-anim: ~D~%" (-> obj flying-death-anim)) + (format #t "~2Tflying-death-transv: #~%" (-> obj flying-death-transv)) + (format #t "~2Tflying-death-engine: ~D~%" (-> obj flying-death-engine)) + (format #t "~2Tflying-death-thrust-rotate: ~f~%" (-> obj flying-death-thrust-rotate)) + (format #t "~2Tflying-death-spin: ~f~%" (-> obj flying-death-spin)) + (format #t "~2Tflying-death-spin-dest: ~f~%" (-> obj flying-death-spin-dest)) + (format #t "~2Tflying-death-spin-axis: #~%" (-> obj flying-death-spin-axis)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/forest/predator-h_REF.gc b/test/decompiler/reference/jak2/levels/forest/predator-h_REF.gc new file mode 100644 index 0000000000..f6a12c90a0 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/forest/predator-h_REF.gc @@ -0,0 +1,109 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type predator-node +(deftype predator-node (structure) + ((position vector :inline :offset-assert 0) + (nav-mesh-id uint32 :offset-assert 16) + (edge-index int16 :offset-assert 20) + (edge-count int16 :offset-assert 22) + (radius float :offset-assert 24) + (flags predator-node-flag :offset-assert 28) + (points uint32 :offset-assert 32) + (pos-x float :offset 0) + (pos-y float :offset 4) + (pos-z float :offset 8) + ) + :method-count-assert 9 + :size-assert #x24 + :flag-assert #x900000024 + ) + +;; definition for method 3 of type predator-node +(defmethod inspect predator-node ((obj predator-node)) + (when (not obj) + (set! obj obj) + (goto cfg-8) + ) + (format #t "[~8x] ~A~%" obj 'predator-node) + (format #t "~1Tposition: ~`vector`P~%" (-> obj position)) + (format #t "~1Tnav-mesh-id: ~D~%" (-> obj nav-mesh-id)) + (format #t "~1Tedge-index: ~D~%" (-> obj edge-index)) + (format #t "~1Tedge-count: ~D~%" (-> obj edge-count)) + (format #t "~1Tradius: ~f~%" (-> obj radius)) + (format #t "~1Tflags: #x~X : (predator-node-flag " (-> obj flags)) + (let ((s5-0 (-> obj flags))) + (if (= (logand s5-0 (predator-node-flag spawnable)) (predator-node-flag spawnable)) + (format #t "spawnable ") + ) + (if (= (logand s5-0 (predator-node-flag taken)) (predator-node-flag taken)) + (format #t "taken ") + ) + ) + (format #t ")~%") + (format #t "~1Tpoints: ~D~%" (-> obj points)) + (format #t "~1Tpos-x: ~f~%" (-> obj position x)) + (format #t "~1Tpos-y: ~f~%" (-> obj position y)) + (format #t "~1Tpos-z: ~f~%" (-> obj position z)) + (label cfg-8) + obj + ) + +;; definition of type predator-edge +(deftype predator-edge (structure) + ((dest-node-id uint16 :offset-assert 0) + (flags predator-edge-flag :offset-assert 2) + ) + :method-count-assert 9 + :size-assert #x4 + :flag-assert #x900000004 + ) + +;; definition for method 3 of type predator-edge +(defmethod inspect predator-edge ((obj predator-edge)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj 'predator-edge) + (format #t "~1Tdest-node-id: ~D~%" (-> obj dest-node-id)) + (format #t "~1Tflags: #x~X : (predator-edge-flag " (-> obj flags)) + (-> obj flags) + (format #t ")~%") + (label cfg-4) + obj + ) + +;; definition of type predator-graph +(deftype predator-graph (structure) + ((node-count uint16 :offset-assert 0) + (edge-count uint16 :offset-assert 2) + (node uint32 :offset-assert 4) + (edge uint32 :offset-assert 8) + ) + :method-count-assert 9 + :size-assert #xc + :flag-assert #x90000000c + ) + +;; definition for method 3 of type predator-graph +(defmethod inspect predator-graph ((obj predator-graph)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj 'predator-graph) + (format #t "~1Tnode-count: ~D~%" (-> obj node-count)) + (format #t "~1Tedge-count: ~D~%" (-> obj edge-count)) + (format #t "~1Tnode: #x~X~%" (-> obj node)) + (format #t "~1Tedge: #x~X~%" (-> obj edge)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/sewer/escort/grim-h_REF.gc b/test/decompiler/reference/jak2/levels/sewer/escort/grim-h_REF.gc new file mode 100644 index 0000000000..a84734f956 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/sewer/escort/grim-h_REF.gc @@ -0,0 +1,31 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type grim +(deftype grim (jinx) + () + :heap-base #x380 + :method-count-assert 246 + :size-assert #x400 + :flag-assert #xf603800400 + ) + +;; definition for method 3 of type grim +(defmethod inspect grim ((obj grim)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type jinx inspect))) + (t9-0 obj) + ) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/sewer/escort/jinx-h_REF.gc b/test/decompiler/reference/jak2/levels/sewer/escort/jinx-h_REF.gc new file mode 100644 index 0000000000..db45123235 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/sewer/escort/jinx-h_REF.gc @@ -0,0 +1,46 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type jinx +(deftype jinx (ruffian) + ((bomb-handle uint64 :offset-assert 1008) + (bomb-func basic :offset-assert 1016) + (bomb-fuse-delay uint32 :offset-assert 1020) + ) + :heap-base #x380 + :method-count-assert 246 + :size-assert #x400 + :flag-assert #xf603800400 + ) + +;; definition for method 3 of type jinx +(defmethod inspect jinx ((obj jinx)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type ruffian inspect))) + (t9-0 obj) + ) + (format #t "~2Tbomb-handle: ~D~%" (-> obj bomb-handle)) + (format #t "~2Tbomb-func: ~A~%" (-> obj bomb-func)) + (format #t "~2Tbomb-fuse-delay: ~D~%" (-> obj bomb-fuse-delay)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +(defskelgroup skel-jinx jinx 0 3 + ((1 (meters 999999))) + :bounds (static-spherem 0 0 0 5) + :shadow 2 + :origin-joint-index 15 + :shadow-joint-index 15 + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/undefined/hal-h_REF.gc b/test/decompiler/reference/jak2/levels/undefined/hal-h_REF.gc new file mode 100644 index 0000000000..e205c434ee --- /dev/null +++ b/test/decompiler/reference/jak2/levels/undefined/hal-h_REF.gc @@ -0,0 +1,71 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type hal +(deftype hal (bot) + ((handle-failed-slave-id int8 :offset-assert 992) + (slave-handle uint64 3 :offset-assert 1000) + ) + :heap-base #x380 + :method-count-assert 227 + :size-assert #x400 + :flag-assert #xe303800400 + (:methods + (hal-method-225 () none 225) + (hal-method-226 () none 226) + ) + ) + +;; definition for method 3 of type hal +(defmethod inspect hal ((obj hal)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type bot inspect))) + (t9-0 obj) + ) + (format #t "~2Thandle-failed-slave-id: ~D~%" (-> obj handle-failed-slave-id)) + (format #t "~2Tslave-handle[3] @ #x~X~%" (-> obj slave-handle)) + (label cfg-4) + obj + ) + +;; definition of type halt-wait-spot +(deftype halt-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type halt-wait-spot +(defmethod inspect halt-wait-spot ((obj halt-wait-spot)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tspot-indexes[6] @ #x~X~%" (-> obj spot-indexes)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/undefined/ruf-h_REF.gc b/test/decompiler/reference/jak2/levels/undefined/ruf-h_REF.gc new file mode 100644 index 0000000000..1a6158fbd1 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/undefined/ruf-h_REF.gc @@ -0,0 +1,222 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition of type ruffian-course +(deftype ruffian-course (bot-course) + ((ouch-speeches basic :offset-assert 48) + ) + :method-count-assert 9 + :size-assert #x34 + :flag-assert #x900000034 + ) + +;; definition for method 3 of type ruffian-course +(defmethod inspect ruffian-course ((obj ruffian-course)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tcourse-id: ~D~%" (-> obj course-id)) + (format #t "~1Tspeech-count: ~D~%" (-> obj speech-count)) + (format #t "~1Tspot-count: ~D~%" (-> obj spot-count)) + (format #t "~1Tretry-cookie: ~D~%" (-> obj retry-cookie)) + (format #t "~1Ttoo-far-warn-speeches: ~A~%" (-> obj too-far-warn-speeches)) + (format #t "~1Ttoo-far-fail-speeches: ~A~%" (-> obj too-far-fail-speeches)) + (format #t "~1Tattack-player-speeches: ~A~%" (-> obj attack-player-speeches)) + (format #t "~1Tdefault-check-too-far: ~A~%" (-> obj default-check-too-far)) + (format #t "~1Twaypoints: ~A~%" (-> obj waypoints)) + (format #t "~1Tspeeches: #x~X~%" (-> obj speeches)) + (format #t "~1Tspeech-tunings: #x~X~%" (-> obj speech-tunings)) + (format #t "~1Tdirs: #x~X~%" (-> obj dirs)) + (format #t "~1Tspots: #x~X~%" (-> obj spots)) + (format #t "~1Touch-speeches: ~A~%" (-> obj ouch-speeches)) + (label cfg-4) + obj + ) + +;; definition of type ruffian +(deftype ruffian (bot) + ((travel-anim-interp float :offset-assert 992) + (fired-gun-count uint32 :offset-assert 996) + (next-fire-time time-frame :offset-assert 1000) + ) + :heap-base #x370 + :method-count-assert 246 + :size-assert #x3f0 + :flag-assert #xf6037003f0 + (:methods + (ruffian-method-225 () none 225) + (ruffian-method-226 () none 226) + (ruffian-method-227 () none 227) + (ruffian-method-228 () none 228) + (ruffian-method-229 () none 229) + (ruffian-method-230 () none 230) + (ruffian-method-231 () none 231) + (ruffian-method-232 () none 232) + (ruffian-method-233 () none 233) + (ruffian-method-234 () none 234) + (ruffian-method-235 () none 235) + (ruffian-method-236 () none 236) + (ruffian-method-237 () none 237) + (ruffian-method-238 () none 238) + (ruffian-method-239 () none 239) + (ruffian-method-240 () none 240) + (ruffian-method-241 () none 241) + (ruffian-method-242 () none 242) + (ruffian-method-243 () none 243) + (ruffian-method-244 () none 244) + (ruffian-method-245 () none 245) + ) + ) + +;; definition for method 3 of type ruffian +(defmethod inspect ruffian ((obj ruffian)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (let ((t9-0 (method-of-type bot inspect))) + (t9-0 obj) + ) + (format #t "~2Ttravel-anim-interp: ~f~%" (-> obj travel-anim-interp)) + (format #t "~2Tfired-gun-count: ~D~%" (-> obj fired-gun-count)) + (format #t "~2Tnext-fire-time: ~D~%" (-> obj next-fire-time)) + (label cfg-4) + obj + ) + +;; definition of type ruft-wait-spot +(deftype ruft-wait-spot (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (spot-indexes int8 6 :offset 38) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type ruft-wait-spot +(defmethod inspect ruft-wait-spot ((obj ruft-wait-spot)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tspot-indexes[6] @ #x~X~%" (-> obj spot-indexes)) + (label cfg-4) + obj + ) + +;; definition of type ruft-choose-jump +(deftype ruft-choose-jump (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (src-spot-indexes int8 4 :offset 38) + (dest-spot-indexes int8 4 :offset 42) + ) + :method-count-assert 14 + :size-assert #x30 + :flag-assert #xe00000030 + (:methods + (ruft-choose-jump-method-12 () none 12) + (ruft-choose-jump-method-13 () none 13) + ) + ) + +;; definition for method 3 of type ruft-choose-jump +(defmethod inspect ruft-choose-jump ((obj ruft-choose-jump)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tsrc-spot-indexes[4] @ #x~X~%" (-> obj src-spot-indexes)) + (format #t "~1Tdest-spot-indexes[4] @ #x~X~%" (-> obj dest-spot-indexes)) + (label cfg-4) + obj + ) + +;; definition of type ruft-fight-focus +(deftype ruft-fight-focus (ai-task) + () + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type ruft-fight-focus +(defmethod inspect ruft-fight-focus ((obj ruft-fight-focus)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (label cfg-4) + obj + ) + +;; definition of type ruft-plant-bomb +(deftype ruft-plant-bomb (ai-task) + ((check-done basic :offset 32) + (which-spot int8 :offset 36) + (num-spots uint8 :offset 37) + (stand-spot-indexes int8 2 :offset 38) + (face-spot-indexes int8 2 :offset 40) + ) + :method-count-assert 12 + :size-assert #x30 + :flag-assert #xc00000030 + ) + +;; definition for method 3 of type ruft-plant-bomb +(defmethod inspect ruft-plant-bomb ((obj ruft-plant-bomb)) + (when (not obj) + (set! obj obj) + (goto cfg-4) + ) + (format #t "[~8x] ~A~%" obj (-> obj type)) + (format #t "~1Tnext: ~A~%" (-> obj next)) + (format #t "~1Tprev: ~A~%" (-> obj prev)) + (format #t "~1Tpool: ~A~%" (-> obj pool)) + (format #t "~1Tunique-id: ~D~%" (-> obj unique-id)) + (format #t "~1Tbytes[16] @ #x~X~%" (-> obj bytes)) + (format #t "~1Tcheck-done: ~A~%" (-> obj check-done)) + (format #t "~1Twhich-spot: ~D~%" (-> obj which-spot)) + (format #t "~1Tnum-spots: ~D~%" (-> obj num-spots)) + (format #t "~1Tstand-spot-indexes[2] @ #x~X~%" (-> obj stand-spot-indexes)) + (format #t "~1Tface-spot-indexes[2] @ #x~X~%" (-> obj face-spot-indexes)) + (label cfg-4) + obj + ) + +;; failed to figure out what this is: +0 + + + + diff --git a/test/decompiler/reference/jak2/levels/underport/sig5-cent1-path0_REF.gc b/test/decompiler/reference/jak2/levels/underport/sig5-cent1-path0_REF.gc new file mode 100644 index 0000000000..9eb62395e8 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/underport/sig5-cent1-path0_REF.gc @@ -0,0 +1,4962 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition for symbol *sig5-cent1-path0*, type sig-path +(define *sig5-cent1-path0* (new 'static 'sig-path + :sample-count #xfb + :samples (new 'static 'inline-array sig-path-sample 251 + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x1 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -324352.8 :y -274439.38 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324352.8 :y -274439.78 :z 8362734.5) + :quat (new 'static 'quaternion :y 0.1254 :w -0.9921) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324481.44 :y -274439.78 :z 8362954.5) + :quat (new 'static 'quaternion :y 0.1768 :w -0.9842) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -324903.3 :y -274439.78 :z 8363789.0) + :quat (new 'static 'quaternion :y 0.1988 :w -0.98) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -325611.12 :y -274439.78 :z 8365243.5) + :quat (new 'static 'quaternion :y 0.21 :w -0.9776) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -326609.3 :y -274439.78 :z 8367315.0) + :quat (new 'static 'quaternion :y 0.2162 :w -0.9763) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -327800.0 :y -274439.38 :z 8369764.5) + :quat (new 'static 'quaternion :y 0.2203 :w -0.9754) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -329003.0 :y -274439.38 :z 8372209.0) + :quat (new 'static 'quaternion :y 0.2235 :w -0.9746) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -330218.7 :y -274439.78 :z 8374646.5) + :quat (new 'static 'quaternion :y 0.2264 :w -0.974) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -331427.44 :y -274439.38 :z 8377084.5) + :quat (new 'static 'quaternion :y 0.2268 :w -0.9739) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -332588.66 :y -274439.38 :z 8379538.5) + :quat (new 'static 'quaternion :y 0.2235 :w -0.9746) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -333531.12 :y -274439.38 :z 8382077.5) + :quat (new 'static 'quaternion :y 0.2044 :w -0.9788) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -334386.78 :y -275121.34 :z 8384650.5) + :quat (new 'static 'quaternion :y 0.1802 :w -0.9836) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -335159.28 :y -272610.1 :z 8387254.5) + :quat (new 'static 'quaternion :y 0.1611 :w -0.9869) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -335894.12 :y -269008.9 :z 8389873.0) + :quat (new 'static 'quaternion :y 0.1482 :w -0.9889) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -336567.9 :y -265442.9 :z 8392512.0) + :quat (new 'static 'quaternion :y 0.136 :w -0.9907) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -337176.56 :y -262789.94 :z 8395170.0) + :quat (new 'static 'quaternion :y 0.1226 :w -0.9924) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -337687.75 :y -261229.36 :z 8397850.0) + :quat (new 'static 'quaternion :y 0.1075 :w -0.9941) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -338169.03 :y -261196.19 :z 8400536.0) + :quat (new 'static 'quaternion :y 0.0976 :w -0.9952) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -338628.6 :y -263263.84 :z 8403226.0) + :quat (new 'static 'quaternion :y 0.0908 :w -0.9958) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -339066.06 :y -266997.34 :z 8405919.0) + :quat (new 'static 'quaternion :y 0.0853 :w -0.9963) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -339481.0 :y -271822.84 :z 8408616.0) + :quat (new 'static 'quaternion :y 0.0805 :w -0.9967) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -339987.25 :y -274439.78 :z 8411288.0) + :quat (new 'static 'quaternion :y 0.0892 :w -0.996) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -341112.44 :y -273777.88 :z 8413171.0) + :quat (new 'static 'quaternion :y 0.1763 :w -0.9843) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -342586.97 :y -273177.8 :z 8414965.0) + :quat (new 'static 'quaternion :y 0.2488 :w -0.9685) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -344261.84 :y -273670.16 :z 8417119.0) + :quat (new 'static 'quaternion :y 0.2882 :w -0.9575) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -346117.3 :y -273929.0 :z 8419434.0) + :quat (new 'static 'quaternion :y 0.311 :w -0.9503) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -348285.75 :y -274189.1 :z 8422031.0) + :quat (new 'static 'quaternion :y 0.3262 :w -0.9452) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -350332.53 :y -274264.47 :z 8424393.0) + :quat (new 'static 'quaternion :y 0.3384 :w -0.9409) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -352366.2 :y -274296.44 :z 8426635.0) + :quat (new 'static 'quaternion :y 0.35 :w -0.9367) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -354494.06 :y -274527.44 :z 8428632.0) + :quat (new 'static 'quaternion :y 0.3718 :w -0.9282) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -356558.84 :y -275780.4 :z 8430416.0) + :quat (new 'static 'quaternion :y 0.3951 :w -0.9186) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -358678.12 :y -273268.75 :z 8432136.0) + :quat (new 'static 'quaternion :y 0.4133 :w -0.9105) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -360849.4 :y -269667.53 :z 8433789.0) + :quat (new 'static 'quaternion :y 0.4294 :w -0.9031) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -363055.94 :y -266101.56 :z 8435394.0) + :quat (new 'static 'quaternion :y 0.4422 :w -0.8968) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -365302.6 :y -263448.56 :z 8436944.0) + :quat (new 'static 'quaternion :y 0.454 :w -0.8909) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -367577.5 :y -261888.0 :z 8438452.0) + :quat (new 'static 'quaternion :y 0.464 :w -0.8857) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -369885.6 :y -261854.83 :z 8439909.0) + :quat (new 'static 'quaternion :y 0.4738 :w -0.8805) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -372205.97 :y -263922.9 :z 8441347.0) + :quat (new 'static 'quaternion :y 0.4799 :w -0.8772) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -374285.1 :y -267656.0 :z 8443105.0) + :quat (new 'static 'quaternion :y 0.4619 :w -0.8868) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -375903.44 :y -272481.9 :z 8445277.0) + :quat (new 'static 'quaternion :y 0.4262 :w -0.9046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -377183.03 :y -274436.9 :z 8447669.0) + :quat (new 'static 'quaternion :y 0.3426 :w -0.9394) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -377929.3 :y -274436.9 :z 8450288.0) + :quat (new 'static 'quaternion :y 0.2351 :w -0.9719) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -378314.75 :y -274436.9 :z 8452987.0) + :quat (new 'static 'quaternion :y 0.1492 :w -0.9887) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378525.7 :y -274529.9 :z 8455750.0) + :quat (new 'static 'quaternion :y 0.091 :w -0.9958) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378642.03 :y -272946.78 :z 8458476.0) + :quat (new 'static 'quaternion :y 0.0547 :w -0.9985) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378689.94 :y -269456.2 :z 8461204.0) + :quat (new 'static 'quaternion :y 0.0306 :w -0.9995) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378668.66 :y -265834.5 :z 8463932.0) + :quat (new 'static 'quaternion :y 0.0124 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378577.72 :y -262908.72 :z 8466660.0) + :quat (new 'static 'quaternion :y -0.0029 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378458.94 :y -261074.94 :z 8469386.0) + :quat (new 'static 'quaternion :y -0.0112 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378517.9 :y -260551.06 :z 8472112.0) + :quat (new 'static 'quaternion :y 0.0086 :w -0.9999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -378781.28 :y -262059.22 :z 8474824.0) + :quat (new 'static 'quaternion :y 0.043 :w -0.999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -379300.25 :y -265519.5 :z 8477491.0) + :quat (new 'static 'quaternion :y 0.0875 :w -0.9961) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -380388.56 :y -270071.8 :z 8479971.0) + :quat (new 'static 'quaternion :y 0.1382 :w -0.9903) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -381684.12 :y -274148.97 :z 8482364.0) + :quat (new 'static 'quaternion :y 0.1915 :w -0.9814) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -383049.72 :y -273961.38 :z 8484716.0) + :quat (new 'static 'quaternion :y 0.2258 :w -0.9741) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -384426.4 :y -273963.4 :z 8487070.0) + :quat (new 'static 'quaternion :y 0.2437 :w -0.9698) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -385989.44 :y -274058.84 :z 8489709.0) + :quat (new 'static 'quaternion :y 0.254 :w -0.9671) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -387512.3 :y -274080.56 :z 8492225.0) + :quat (new 'static 'quaternion :y 0.2607 :w -0.9653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -388945.1 :y -274046.16 :z 8494544.0) + :quat (new 'static 'quaternion :y 0.2658 :w -0.964) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -390479.88 :y -273361.3 :z 8495941.0) + :quat (new 'static 'quaternion :y 0.2702 :w -0.9627) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -392015.47 :y -272851.75 :z 8497540.0) + :quat (new 'static 'quaternion :y 0.2755 :w -0.9612) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -393539.2 :y -273000.84 :z 8499791.0) + :quat (new 'static 'quaternion :y 0.2809 :w -0.9597) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -395249.25 :y -273183.53 :z 8502333.0) + :quat (new 'static 'quaternion :y 0.2861 :w -0.9581) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -396747.56 :y -273986.75 :z 8504577.0) + :quat (new 'static 'quaternion :y 0.2879 :w -0.9576) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -398439.62 :y -274468.47 :z 8507078.0) + :quat (new 'static 'quaternion :y 0.2887 :w -0.9574) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -400041.16 :y -274468.88 :z 8509357.0) + :quat (new 'static 'quaternion :y 0.2947 :w -0.9555) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -401625.1 :y -274468.88 :z 8511578.0) + :quat (new 'static 'quaternion :y 0.2993 :w -0.9541) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -403223.75 :y -274468.88 :z 8513787.0) + :quat (new 'static 'quaternion :y 0.3033 :w -0.9528) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -404996.1 :y -274024.03 :z 8515859.0) + :quat (new 'static 'quaternion :y 0.3185 :w -0.9479) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -406854.03 :y -271109.75 :z 8517858.0) + :quat (new 'static 'quaternion :y 0.3428 :w -0.9393) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -408734.1 :y -267496.66 :z 8519837.0) + :quat (new 'static 'quaternion :y 0.3573 :w -0.9339) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -410637.1 :y -264024.47 :z 8521793.0) + :quat (new 'static 'quaternion :y 0.3671 :w -0.9301) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -412556.1 :y -261644.7 :z 8523733.0) + :quat (new 'static 'quaternion :y 0.3736 :w -0.9275) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -414310.0 :y -260357.33 :z 8525822.0) + :quat (new 'static 'quaternion :y 0.3581 :w -0.9336) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -415982.78 :y -260814.84 :z 8527967.0) + :quat (new 'static 'quaternion :y 0.3408 :w -0.9401) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -417660.1 :y -263442.03 :z 8530108.0) + :quat (new 'static 'quaternion :y 0.3332 :w -0.9428) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -419356.7 :y -267448.72 :z 8532235.0) + :quat (new 'static 'quaternion :y 0.332 :w -0.9432) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -421139.66 :y -272260.72 :z 8534301.0) + :quat (new 'static 'quaternion :y 0.3408 :w -0.9401) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -422814.94 :y -274340.25 :z 8536119.0) + :quat (new 'static 'quaternion :y 0.3465 :w -0.938) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -424659.34 :y -273951.94 :z 8538003.0) + :quat (new 'static 'quaternion :y 0.3625 :w -0.9319) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -426810.16 :y -274436.9 :z 8539678.0) + :quat (new 'static 'quaternion :y 0.4043 :w -0.9145) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -429230.9 :y -274436.9 :z 8540927.0) + :quat (new 'static 'quaternion :y 0.4677 :w -0.8838) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -431840.06 :y -274436.9 :z 8541720.0) + :quat (new 'static 'quaternion :y 0.537 :w -0.8435) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -434553.66 :y -274436.9 :z 8541941.0) + :quat (new 'static 'quaternion :y 0.6172 :w -0.7867) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -437278.72 :y -274436.9 :z 8541772.0) + :quat (new 'static 'quaternion :y 0.6772 :w -0.7357) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -439994.38 :y -274436.9 :z 8541488.0) + :quat (new 'static 'quaternion :y 0.7125 :w -0.7016) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -442822.66 :y -274441.84 :z 8541076.0) + :quat (new 'static 'quaternion :y 0.7346 :w -0.6784) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -446057.28 :y -274447.97 :z 8540450.0) + :quat (new 'static 'quaternion :y 0.7523 :w -0.6587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -449295.16 :y -274453.72 :z 8539757.0) + :quat (new 'static 'quaternion :y 0.7654 :w -0.6434) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -452537.12 :y -274589.7 :z 8539009.0) + :quat (new 'static 'quaternion :y 0.7736 :w -0.6335) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -455184.78 :y -273025.84 :z 8538341.0) + :quat (new 'static 'quaternion :y 0.7815 :w -0.6238) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -457814.03 :y -269534.8 :z 8537605.0) + :quat (new 'static 'quaternion :y 0.7897 :w -0.6134) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -460422.34 :y -265913.56 :z 8536797.0) + :quat (new 'static 'quaternion :y 0.7977 :w -0.6029) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -463015.53 :y -262987.38 :z 8535943.0) + :quat (new 'static 'quaternion :y 0.8042 :w -0.5943) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -465648.03 :y -261154.0 :z 8535219.0) + :quat (new 'static 'quaternion :y 0.7991 :w -0.601) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -468280.12 :y -260630.12 :z 8534492.0) + :quat (new 'static 'quaternion :y 0.7976 :w -0.603) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -470887.62 :y -262137.86 :z 8533682.0) + :quat (new 'static 'quaternion :y 0.8017 :w -0.5976) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -473468.94 :y -265598.16 :z 8532792.0) + :quat (new 'static 'quaternion :y 0.8085 :w -0.5884) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -476020.75 :y -270150.88 :z 8531822.0) + :quat (new 'static 'quaternion :y 0.8164 :w -0.5773) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -478541.0 :y -274436.5 :z 8530772.0) + :quat (new 'static 'quaternion :y 0.8248 :w -0.5653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -481030.16 :y -274436.9 :z 8529649.0) + :quat (new 'static 'quaternion :y 0.8329 :w -0.5533) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -483485.28 :y -274436.9 :z 8528454.0) + :quat (new 'static 'quaternion :y 0.8409 :w -0.5411) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -485901.53 :y -274436.9 :z 8527182.0) + :quat (new 'static 'quaternion :y 0.849 :w -0.5282) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -488289.9 :y -274436.9 :z 8525858.0) + :quat (new 'static 'quaternion :y 0.8558 :w -0.5172) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -490644.7 :y -274436.9 :z 8524477.0) + :quat (new 'static 'quaternion :y 0.8621 :w -0.5067) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -493007.25 :y -274480.75 :z 8523027.0) + :quat (new 'static 'quaternion :y 0.8676 :w -0.4971) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -495319.44 :y -274429.53 :z 8521574.0) + :quat (new 'static 'quaternion :y 0.8714 :w -0.4905) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -497611.56 :y -274436.5 :z 8520089.0) + :quat (new 'static 'quaternion :y 0.8749 :w -0.4842) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -499899.6 :y -274436.5 :z 8518599.0) + :quat (new 'static 'quaternion :y 0.8771 :w -0.4803) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -502158.12 :y -274436.5 :z 8517065.0) + :quat (new 'static 'quaternion :y 0.8798 :w -0.4752) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -504420.75 :y -274641.3 :z 8515537.0) + :quat (new 'static 'quaternion :y 0.8823 :w -0.4706) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -506719.84 :y -274083.03 :z 8514064.0) + :quat (new 'static 'quaternion :y 0.8797 :w -0.4754) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -509030.0 :y -270853.75 :z 8512607.0) + :quat (new 'static 'quaternion :y 0.8776 :w -0.4793) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -511331.94 :y -267176.75 :z 8511138.0) + :quat (new 'static 'quaternion :y 0.8772 :w -0.4799) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -513606.44 :y -263977.78 :z 8509628.0) + :quat (new 'static 'quaternion :y 0.8794 :w -0.4759) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -515848.2 :y -261870.8 :z 8508070.0) + :quat (new 'static 'quaternion :y 0.8831 :w -0.4691) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -518055.94 :y -260856.62 :z 8506464.0) + :quat (new 'static 'quaternion :y 0.8874 :w -0.4609) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -520229.28 :y -261804.44 :z 8504810.0) + :quat (new 'static 'quaternion :y 0.8919 :w -0.452) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -522366.97 :y -264991.94 :z 8503112.0) + :quat (new 'static 'quaternion :y 0.8965 :w -0.4428) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -524467.8 :y -269271.44 :z 8501367.0) + :quat (new 'static 'quaternion :y 0.9012 :w -0.4333) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -526530.56 :y -274069.9 :z 8499578.0) + :quat (new 'static 'quaternion :y 0.9057 :w -0.4238) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528554.8 :y -274431.6 :z 8497744.0) + :quat (new 'static 'quaternion :y 0.9102 :w -0.4141) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -530538.06 :y -274431.6 :z 8495865.0) + :quat (new 'static 'quaternion :y 0.9145 :w -0.4043) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -532481.25 :y -274431.6 :z 8493945.0) + :quat (new 'static 'quaternion :y 0.9188 :w -0.3945) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -534383.0 :y -274431.6 :z 8491985.0) + :quat (new 'static 'quaternion :y 0.923 :w -0.3846) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -536242.2 :y -274431.6 :z 8489984.0) + :quat (new 'static 'quaternion :y 0.9271 :w -0.3747) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -538058.3 :y -274431.6 :z 8487943.0) + :quat (new 'static 'quaternion :y 0.931 :w -0.3647) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -539829.9 :y -274431.6 :z 8485864.0) + :quat (new 'static 'quaternion :y 0.9349 :w -0.3547) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -541649.7 :y -274431.6 :z 8483828.0) + :quat (new 'static 'quaternion :y 0.9342 :w -0.3567) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -543530.6 :y -273600.1 :z 8481848.0) + :quat (new 'static 'quaternion :y 0.9313 :w -0.3641) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -545404.5 :y -270370.8 :z 8479860.0) + :quat (new 'static 'quaternion :y 0.9304 :w -0.3665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -547244.9 :y -266693.84 :z 8477843.0) + :quat (new 'static 'quaternion :y 0.9314 :w -0.3637) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -549052.0 :y -263494.88 :z 8475796.0) + :quat (new 'static 'quaternion :y 0.9335 :w -0.3584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -550826.0 :y -261388.28 :z 8473720.0) + :quat (new 'static 'quaternion :y 0.9359 :w -0.352) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -552776.5 :y -260373.7 :z 8471827.0) + :quat (new 'static 'quaternion :y 0.9334 :w -0.3586) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -555121.44 :y -261321.94 :z 8470470.0) + :quat (new 'static 'quaternion :y 0.9209 :w -0.3896) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -557556.94 :y -264509.03 :z 8469297.0) + :quat (new 'static 'quaternion :y 0.9019 :w -0.4318) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -560065.75 :y -268788.53 :z 8468315.0) + :quat (new 'static 'quaternion :y 0.878 :w -0.4785) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -562636.0 :y -273587.0 :z 8467528.0) + :quat (new 'static 'quaternion :y 0.8501 :w -0.5264) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -565932.44 :y -274431.6 :z 8468318.0) + :quat (new 'static 'quaternion :y 0.7923 :w -0.61) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569513.2 :y -274431.6 :z 8470005.0) + :quat (new 'static 'quaternion :y 0.7431 :w -0.6691) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -573085.3 :y -274431.6 :z 8471858.0) + :quat (new 'static 'quaternion :y 0.7073 :w -0.7068) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -576637.3 :y -274431.6 :z 8473878.0) + :quat (new 'static 'quaternion :y 0.6779 :w -0.7351) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580159.9 :y -274431.6 :z 8476055.0) + :quat (new 'static 'quaternion :y 0.6517 :w -0.7584) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -583642.3 :y -274431.6 :z 8478390.0) + :quat (new 'static 'quaternion :y 0.6268 :w -0.7791) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -587085.44 :y -274431.6 :z 8480859.0) + :quat (new 'static 'quaternion :y 0.6043 :w -0.7967) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -590483.06 :y -274636.38 :z 8483448.0) + :quat (new 'static 'quaternion :y 0.5832 :w -0.8122) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -592592.5 :y -275394.56 :z 8484615.0) + :quat (new 'static 'quaternion :y 0.5701 :w -0.8215) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -595137.3 :y -275222.12 :z 8485603.0) + :quat (new 'static 'quaternion :y 0.5677 :w -0.8232) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -597731.75 :y -271992.84 :z 8486451.0) + :quat (new 'static 'quaternion :y 0.5789 :w -0.8153) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -600375.7 :y -268315.84 :z 8487130.0) + :quat (new 'static 'quaternion :y 0.5976 :w -0.8017) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -603048.75 :y -265116.47 :z 8487684.0) + :quat (new 'static 'quaternion :y 0.6152 :w -0.7882) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -605721.8 :y -263009.9 :z 8488240.0) + :quat (new 'static 'quaternion :y 0.623 :w -0.7821) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -608385.8 :y -261995.31 :z 8488836.0) + :quat (new 'static 'quaternion :y 0.623 :w -0.7822) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -611001.1 :y -262943.53 :z 8489596.0) + :quat (new 'static 'quaternion :y 0.6024 :w -0.7981) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -613549.25 :y -266131.03 :z 8490548.0) + :quat (new 'static 'quaternion :y 0.5724 :w -0.8199) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -616017.94 :y -268524.34 :z 8491674.0) + :quat (new 'static 'quaternion :y 0.5532 :w -0.833) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -618316.2 :y -266312.5 :z 8492766.0) + :quat (new 'static 'quaternion :y 0.5422 :w -0.8402) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -620428.9 :y -262918.16 :z 8493789.0) + :quat (new 'static 'quaternion :y 0.5339 :w -0.8455) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -622378.2 :y -260542.05 :z 8494815.0) + :quat (new 'static 'quaternion :y 0.5233 :w -0.8521) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -624294.7 :y -259257.95 :z 8495861.0) + :quat (new 'static 'quaternion :y 0.5165 :w -0.8562) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -626247.25 :y -260021.86 :z 8496836.0) + :quat (new 'static 'quaternion :y 0.5241 :w -0.8516) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -628255.56 :y -263025.06 :z 8497692.0) + :quat (new 'static 'quaternion :y 0.5382 :w -0.8427) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -630255.6 :y -267120.62 :z 8498568.0) + :quat (new 'static 'quaternion :y 0.5425 :w -0.84) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -632263.06 :y -271734.78 :z 8499427.0) + :quat (new 'static 'quaternion :y 0.5469 :w -0.8371) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -633675.4 :y -274657.28 :z 8500297.0) + :quat (new 'static 'quaternion :y 0.5603 :w -0.8282) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -634974.6 :y -274515.97 :z 8501987.0) + :quat (new 'static 'quaternion :y 0.5744 :w -0.8185) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -636984.5 :y -274469.28 :z 8503748.0) + :quat (new 'static 'quaternion :y 0.579 :w -0.8152) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -639507.25 :y -274457.0 :z 8505348.0) + :quat (new 'static 'quaternion :y 0.6004 :w -0.7996) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -642520.7 :y -274444.7 :z 8506523.0) + :quat (new 'static 'quaternion :y 0.6424 :w -0.7663) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -645516.9 :y -274432.4 :z 8506559.0) + :quat (new 'static 'quaternion :y 0.7028 :w -0.7113) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -648128.94 :y -274431.6 :z 8505767.0) + :quat (new 'static 'quaternion :y 0.7577 :w -0.6525) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -650543.5 :y -274431.6 :z 8504566.0) + :quat (new 'static 'quaternion :y 0.7876 :w -0.6161) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -652761.06 :y -274431.6 :z 8502969.0) + :quat (new 'static 'quaternion :y 0.806 :w -0.5918) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -654775.06 :y -274431.6 :z 8500967.0) + :quat (new 'static 'quaternion :y 0.8198 :w -0.5725) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -656581.8 :y -274431.6 :z 8498557.0) + :quat (new 'static 'quaternion :y 0.8315 :w -0.5554) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -658282.5 :y -274431.6 :z 8495943.0) + :quat (new 'static 'quaternion :y 0.8397 :w -0.543) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -659960.6 :y -274431.6 :z 8493285.0) + :quat (new 'static 'quaternion :y 0.8455 :w -0.5338) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661677.7 :y -274431.6 :z 8490707.0) + :quat (new 'static 'quaternion :y 0.8436 :w -0.5369) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -663513.06 :y -274431.6 :z 8488445.0) + :quat (new 'static 'quaternion :y 0.823 :w -0.5679) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -665419.75 :y -274431.6 :z 8486475.0) + :quat (new 'static 'quaternion :y 0.7982 :w -0.6023) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -667319.94 :y -274431.6 :z 8484517.0) + :quat (new 'static 'quaternion :y 0.7854 :w -0.6188) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -669210.2 :y -274431.6 :z 8482516.0) + :quat (new 'static 'quaternion :y 0.7818 :w -0.6234) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -671087.44 :y -274431.6 :z 8480462.0) + :quat (new 'static 'quaternion :y 0.7833 :w -0.6215) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -672944.56 :y -274431.6 :z 8478330.0) + :quat (new 'static 'quaternion :y 0.7888 :w -0.6145) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -674761.1 :y -274431.6 :z 8476054.0) + :quat (new 'static 'quaternion :y 0.8006 :w -0.599) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -676525.25 :y -274431.6 :z 8473616.0) + :quat (new 'static 'quaternion :y 0.8151 :w -0.5792) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -678254.2 :y -274431.6 :z 8471098.0) + :quat (new 'static 'quaternion :y 0.8267 :w -0.5625) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -679946.6 :y -274431.6 :z 8468498.0) + :quat (new 'static 'quaternion :y 0.837 :w -0.5471) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -681597.3 :y -274431.6 :z 8465816.0) + :quat (new 'static 'quaternion :y 0.8466 :w -0.5322) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -683221.0 :y -274431.6 :z 8463087.0) + :quat (new 'static 'quaternion :y 0.8535 :w -0.5209) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -684874.56 :y -274431.6 :z 8460427.0) + :quat (new 'static 'quaternion :y 0.8524 :w -0.5227) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -686642.8 :y -274431.6 :z 8457980.0) + :quat (new 'static 'quaternion :y 0.8398 :w -0.5428) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -688492.1 :y -274431.6 :z 8455747.0) + :quat (new 'static 'quaternion :y 0.8211 :w -0.5707) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -690374.25 :y -274431.6 :z 8453630.0) + :quat (new 'static 'quaternion :y 0.8062 :w -0.5916) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -692247.4 :y -274431.6 :z 8451480.0) + :quat (new 'static 'quaternion :y 0.8005 :w -0.5992) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -694127.44 :y -274431.6 :z 8449355.0) + :quat (new 'static 'quaternion :y 0.7964 :w -0.6046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -695996.8 :y -274431.6 :z 8447192.0) + :quat (new 'static 'quaternion :y 0.7966 :w -0.6043) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -698236.94 :y -275113.97 :z 8445707.0) + :quat (new 'static 'quaternion :y 0.7988 :w -0.6015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -700854.7 :y -272602.3 :z 8444931.0) + :quat (new 'static 'quaternion :y 0.8 :w -0.5999) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -703481.06 :y -269001.12 :z 8444184.0) + :quat (new 'static 'quaternion :y 0.7988 :w -0.6015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -706135.25 :y -265435.12 :z 8443545.0) + :quat (new 'static 'quaternion :y 0.7913 :w -0.6113) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -708815.7 :y -262782.16 :z 8443023.0) + :quat (new 'static 'quaternion :y 0.7811 :w -0.6243) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -711504.7 :y -261221.58 :z 8442549.0) + :quat (new 'static 'quaternion :y 0.7732 :w -0.6341) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -714108.1 :y -261188.4 :z 8441763.0) + :quat (new 'static 'quaternion :y 0.7791 :w -0.6268) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -716485.8 :y -263256.47 :z 8440463.0) + :quat (new 'static 'quaternion :y 0.8004 :w -0.5994) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -718630.06 :y -263800.0 :z 8439150.0) + :quat (new 'static 'quaternion :y 0.8275 :w -0.5613) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -720458.94 :y -261165.47 :z 8437982.0) + :quat (new 'static 'quaternion :y 0.8529 :w -0.5219) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -722303.8 :y -258267.14 :z 8436841.0) + :quat (new 'static 'quaternion :y 0.8637 :w -0.5039) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -724146.56 :y -256460.8 :z 8435697.0) + :quat (new 'static 'quaternion :y 0.869 :w -0.4947) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -725987.75 :y -255985.66 :z 8434550.0) + :quat (new 'static 'quaternion :y 0.8716 :w -0.49) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -727827.25 :y -257606.45 :z 8433400.0) + :quat (new 'static 'quaternion :y 0.8731 :w -0.4873) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -729664.7 :y -261179.39 :z 8432248.0) + :quat (new 'static 'quaternion :y 0.8741 :w -0.4856) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -731500.1 :y -265844.75 :z 8431092.0) + :quat (new 'static 'quaternion :y 0.8747 :w -0.4845) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -733333.5 :y -270741.9 :z 8429933.0) + :quat (new 'static 'quaternion :y 0.8752 :w -0.4835) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -735201.7 :y -274436.5 :z 8428749.0) + :quat (new 'static 'quaternion :y 0.8757 :w -0.4828) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -737440.56 :y -274436.5 :z 8427325.0) + :quat (new 'static 'quaternion :y 0.8761 :w -0.482) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -739725.3 :y -274436.5 :z 8425866.0) + :quat (new 'static 'quaternion :y 0.8765 :w -0.4813) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -742007.6 :y -274436.5 :z 8424403.0) + :quat (new 'static 'quaternion :y 0.877 :w -0.4804) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -744287.0 :y -274436.5 :z 8422936.0) + :quat (new 'static 'quaternion :y 0.8774 :w -0.4796) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -746563.56 :y -274436.5 :z 8421464.0) + :quat (new 'static 'quaternion :y 0.8778 :w -0.4788) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -748836.9 :y -274436.5 :z 8419988.0) + :quat (new 'static 'quaternion :y 0.8783 :w -0.478) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -751107.7 :y -274436.5 :z 8418507.0) + :quat (new 'static 'quaternion :y 0.8788 :w -0.4771) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -753375.6 :y -274436.5 :z 8417022.0) + :quat (new 'static 'quaternion :y 0.8792 :w -0.4764) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -755640.75 :y -274436.5 :z 8415532.0) + :quat (new 'static 'quaternion :y 0.8796 :w -0.4756) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -757902.94 :y -274436.5 :z 8414038.0) + :quat (new 'static 'quaternion :y 0.8801 :w -0.4747) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -760162.3 :y -274436.5 :z 8412539.0) + :quat (new 'static 'quaternion :y 0.8805 :w -0.4739) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -762418.8 :y -274436.5 :z 8411037.0) + :quat (new 'static 'quaternion :y 0.881 :w -0.473) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -764672.0 :y -274436.5 :z 8409530.0) + :quat (new 'static 'quaternion :y 0.8814 :w -0.4722) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -766922.3 :y -274436.5 :z 8408019.0) + :quat (new 'static 'quaternion :y 0.8819 :w -0.4713) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -769170.25 :y -274436.5 :z 8406502.0) + :quat (new 'static 'quaternion :y 0.8823 :w -0.4705) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -771414.8 :y -274436.5 :z 8404983.0) + :quat (new 'static 'quaternion :y 0.8828 :w -0.4696) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -773656.2 :y -274436.5 :z 8403458.0) + :quat (new 'static 'quaternion :y 0.8832 :w -0.4688) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -775895.06 :y -274436.5 :z 8401929.0) + :quat (new 'static 'quaternion :y 0.8837 :w -0.4679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -778130.6 :y -274436.5 :z 8400396.0) + :quat (new 'static 'quaternion :y 0.8841 :w -0.4671) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -780363.4 :y -272703.9 :z 8398858.0) + :quat (new 'static 'quaternion :y 0.8846 :w -0.4661) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -782592.8 :y -269213.28 :z 8397315.0) + :quat (new 'static 'quaternion :y 0.8851 :w -0.4652) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -784819.8 :y -265591.6 :z 8395768.0) + :quat (new 'static 'quaternion :y 0.8856 :w -0.4643) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -787055.0 :y -262665.84 :z 8394235.0) + :quat (new 'static 'quaternion :y 0.885 :w -0.4655) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -789298.8 :y -260832.05 :z 8392716.0) + :quat (new 'static 'quaternion :y 0.8842 :w -0.4671) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -791540.94 :y -260308.17 :z 8391194.0) + :quat (new 'static 'quaternion :y 0.8839 :w -0.4675) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -793781.44 :y -261816.31 :z 8389670.0) + :quat (new 'static 'quaternion :y 0.8839 :w -0.4675) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -796019.94 :y -265276.62 :z 8388142.5) + :quat (new 'static 'quaternion :y 0.884 :w -0.4674) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -798256.75 :y -269829.3 :z 8386613.0) + :quat (new 'static 'quaternion :y 0.8842 :w -0.467) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -800491.94 :y -274436.5 :z 8385080.0) + :quat (new 'static 'quaternion :y 0.8844 :w -0.4665) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -802795.5 :y -274436.5 :z 8383496.5) + :quat (new 'static 'quaternion :y 0.8847 :w -0.466) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -805061.8 :y -274436.5 :z 8381934.5) + :quat (new 'static 'quaternion :y 0.885 :w -0.4655) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -807291.3 :y -274436.5 :z 8380393.5) + :quat (new 'static 'quaternion :y 0.8852 :w -0.465) + ) + ) + ) + ) + + + + diff --git a/test/decompiler/reference/jak2/levels/underport/sig5-cent2-path0_REF.gc b/test/decompiler/reference/jak2/levels/underport/sig5-cent2-path0_REF.gc new file mode 100644 index 0000000000..de43af4de0 --- /dev/null +++ b/test/decompiler/reference/jak2/levels/underport/sig5-cent2-path0_REF.gc @@ -0,0 +1,8610 @@ +;;-*-Lisp-*- +(in-package goal) + +;; definition for symbol *sig5-cent2-path0*, type sig-path +(define *sig5-cent2-path0* (new 'static 'sig-path + :sample-count #x16c + :samples (new 'static 'inline-array sig-path-sample 364 + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -855633.94 :y -290815.6 :z 7995028.5) + :quat (new 'static 'quaternion :y 0.6088 :w 0.7933) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -855438.56 :y -290827.88 :z 7995252.5) + :quat (new 'static 'quaternion :y 0.4931 :w 0.8699) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -854752.06 :y -290828.28 :z 7995780.5) + :quat (new 'static 'quaternion :y 0.4934 :w 0.8697) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -853420.06 :y -290828.28 :z 7996632.5) + :quat (new 'static 'quaternion :y 0.4969 :w 0.8677) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -851495.75 :y -290828.28 :z 7997774.5) + :quat (new 'static 'quaternion :y 0.4984 :w 0.8669) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -849135.6 :y -290828.28 :z 7999138.5) + :quat (new 'static 'quaternion :y 0.4991 :w 0.8665) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -846829.2 :y -290828.28 :z 8000468.0) + :quat (new 'static 'quaternion :y 0.4995 :w 0.8662) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -844470.25 :y -290823.38 :z 8001826.5) + :quat (new 'static 'quaternion :y 0.4999 :w 0.866) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -842137.6 :y -290819.7 :z 8003166.0) + :quat (new 'static 'quaternion :y 0.5002 :w 0.8658) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -839737.4 :y -290819.7 :z 8004543.0) + :quat (new 'static 'quaternion :y 0.5005 :w 0.8657) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -837419.8 :y -290819.7 :z 8005869.0) + :quat (new 'static 'quaternion :y 0.5008 :w 0.8655) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -835079.8 :y -290819.7 :z 8007205.5) + :quat (new 'static 'quaternion :y 0.5011 :w 0.8653) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -832690.56 :y -290819.7 :z 8008568.5) + :quat (new 'static 'quaternion :y 0.5014 :w 0.8651) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -830359.1 :y -290819.7 :z 8009894.5) + :quat (new 'static 'quaternion :y 0.5018 :w 0.8649) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -828010.06 :y -290819.7 :z 8011229.0) + :quat (new 'static 'quaternion :y 0.502 :w 0.8648) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -825683.94 :y -290819.7 :z 8012549.5) + :quat (new 'static 'quaternion :y 0.5024 :w 0.8646) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -823260.75 :y -290819.7 :z 8013923.0) + :quat (new 'static 'quaternion :y 0.5027 :w 0.8644) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -820925.25 :y -290819.7 :z 8015243.5) + :quat (new 'static 'quaternion :y 0.503 :w 0.8642) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -818589.7 :y -290819.7 :z 8016562.0) + :quat (new 'static 'quaternion :y 0.5033 :w 0.864) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -816202.1 :y -290819.7 :z 8017907.5) + :quat (new 'static 'quaternion :y 0.5036 :w 0.8638) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -813869.06 :y -290555.9 :z 8019219.5) + :quat (new 'static 'quaternion :y 0.504 :w 0.8636) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -811462.6 :y -288029.1 :z 8020572.0) + :quat (new 'static 'quaternion :y 0.5044 :w 0.8634) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -809131.2 :y -284611.38 :z 8021879.0) + :quat (new 'static 'quaternion :y 0.5047 :w 0.8632) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -806730.94 :y -281158.44 :z 8023222.5) + :quat (new 'static 'quaternion :y 0.505 :w 0.863) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -804404.8 :y -278584.94 :z 8024522.5) + :quat (new 'static 'quaternion :y 0.5054 :w 0.8628) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -802004.56 :y -277191.88 :z 8025861.0) + :quat (new 'static 'quaternion :y 0.5057 :w 0.8626) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -799658.4 :y -277495.0 :z 8027166.5) + :quat (new 'static 'quaternion :y 0.5061 :w 0.8624) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -797658.75 :y -275646.88 :z 8028278.5) + :quat (new 'static 'quaternion :y 0.5064 :w 0.8622) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -795729.5 :y -272526.53 :z 8029348.5) + :quat (new 'static 'quaternion :y 0.5067 :w 0.862) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -793871.1 :y -269754.38 :z 8030378.0) + :quat (new 'static 'quaternion :y 0.507 :w 0.8619) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -791934.2 :y -267939.03 :z 8031449.5) + :quat (new 'static 'quaternion :y 0.5073 :w 0.8617) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -790075.4 :y -267824.34 :z 8032476.0) + :quat (new 'static 'quaternion :y 0.5076 :w 0.8615) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -788145.4 :y -270044.38 :z 8033540.0) + :quat (new 'static 'quaternion :y 0.5079 :w 0.8614) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -786266.94 :y -273842.6 :z 8034576.0) + :quat (new 'static 'quaternion :y 0.5082 :w 0.8612) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -784381.56 :y -278505.06 :z 8035612.5) + :quat (new 'static 'quaternion :y 0.5084 :w 0.861) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -782488.75 :y -283301.47 :z 8036652.0) + :quat (new 'static 'quaternion :y 0.5086 :w 0.8609) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -780612.4 :y -288990.0 :z 8037682.0) + :quat (new 'static 'quaternion :y 0.5089 :w 0.8607) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -778453.0 :y -290812.3 :z 8038863.5) + :quat (new 'static 'quaternion :y 0.5092 :w 0.8606) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -776096.56 :y -290819.28 :z 8040151.5) + :quat (new 'static 'quaternion :y 0.5095 :w 0.8604) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -773682.0 :y -290819.7 :z 8041468.0) + :quat (new 'static 'quaternion :y 0.5098 :w 0.8602) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -771337.8 :y -290819.7 :z 8042744.0) + :quat (new 'static 'quaternion :y 0.5102 :w 0.86) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -768940.06 :y -290819.7 :z 8044046.5) + :quat (new 'static 'quaternion :y 0.5105 :w 0.8598) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -766507.44 :y -290819.7 :z 8045365.5) + :quat (new 'static 'quaternion :y 0.5108 :w 0.8596) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -764174.75 :y -290819.7 :z 8046628.5) + :quat (new 'static 'quaternion :y 0.5111 :w 0.8594) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -761741.3 :y -290819.7 :z 8047942.5) + :quat (new 'static 'quaternion :y 0.5114 :w 0.8592) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -759425.8 :y -290819.7 :z 8049191.5) + :quat (new 'static 'quaternion :y 0.5117 :w 0.8591) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -757028.44 :y -290819.7 :z 8050482.5) + :quat (new 'static 'quaternion :y 0.5121 :w 0.8589) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -754620.44 :y -290819.7 :z 8051776.5) + :quat (new 'static 'quaternion :y 0.5124 :w 0.8587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -752204.2 :y -290819.7 :z 8053071.5) + :quat (new 'static 'quaternion :y 0.5127 :w 0.8585) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -749800.6 :y -290819.7 :z 8054357.5) + :quat (new 'static 'quaternion :y 0.5131 :w 0.8583) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -747404.9 :y -290819.7 :z 8055637.0) + :quat (new 'static 'quaternion :y 0.5134 :w 0.8581) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -745014.5 :y -290819.7 :z 8056912.0) + :quat (new 'static 'quaternion :y 0.5137 :w 0.8579) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -742623.25 :y -290819.7 :z 8058184.5) + :quat (new 'static 'quaternion :y 0.514 :w 0.8577) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -740222.56 :y -290819.7 :z 8059460.5) + :quat (new 'static 'quaternion :y 0.5144 :w 0.8575) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -737877.2 :y -290819.7 :z 8060704.0) + :quat (new 'static 'quaternion :y 0.5147 :w 0.8573) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -735518.75 :y -290819.7 :z 8061953.0) + :quat (new 'static 'quaternion :y 0.515 :w 0.8571) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -733123.8 :y -290819.7 :z 8063217.5) + :quat (new 'static 'quaternion :y 0.5153 :w 0.8569) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -730725.56 :y -290373.22 :z 8064483.0) + :quat (new 'static 'quaternion :y 0.5157 :w 0.8567) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -728306.5 :y -287443.34 :z 8065756.5) + :quat (new 'static 'quaternion :y 0.5161 :w 0.8565) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -725927.94 :y -283819.62 :z 8067055.5) + :quat (new 'static 'quaternion :y 0.513 :w 0.8583) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -723540.4 :y -280342.53 :z 8068359.5) + :quat (new 'static 'quaternion :y 0.5115 :w 0.8592) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -721121.7 :y -277916.06 :z 8069680.5) + :quat (new 'static 'quaternion :y 0.5109 :w 0.8596) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -718744.4 :y -276652.84 :z 8070978.5) + :quat (new 'static 'quaternion :y 0.5105 :w 0.8598) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -716414.2 :y -277169.34 :z 8072250.0) + :quat (new 'static 'quaternion :y 0.5104 :w 0.8599) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -713982.75 :y -279874.34 :z 8073577.5) + :quat (new 'static 'quaternion :y 0.5103 :w 0.8599) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -711865.1 :y -279534.78 :z 8074606.0) + :quat (new 'static 'quaternion :y 0.5187 :w 0.8549) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -709781.5 :y -276654.9 :z 8075430.5) + :quat (new 'static 'quaternion :y 0.5402 :w 0.8415) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -707780.2 :y -273814.3 :z 8076148.5) + :quat (new 'static 'quaternion :y 0.5572 :w 0.8303) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -705589.25 :y -271912.97 :z 8076646.5) + :quat (new 'static 'quaternion :y 0.5877 :w 0.809) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -703473.7 :y -271607.0 :z 8076905.0) + :quat (new 'static 'quaternion :y 0.6227 :w 0.7824) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -701273.7 :y -273347.38 :z 8076848.5) + :quat (new 'static 'quaternion :y 0.6618 :w 0.7496) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -699097.94 :y -276987.9 :z 8076461.5) + :quat (new 'static 'quaternion :y 0.7032 :w 0.7109) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -697077.4 :y -281638.5 :z 8075730.0) + :quat (new 'static 'quaternion :y 0.7414 :w 0.6709) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -695090.8 :y -286363.25 :z 8074855.0) + :quat (new 'static 'quaternion :y 0.776 :w 0.6307) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -693097.25 :y -290856.97 :z 8074132.5) + :quat (new 'static 'quaternion :y 0.7825 :w 0.6225) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -690250.56 :y -291426.72 :z 8072914.0) + :quat (new 'static 'quaternion :y 0.7344 :w 0.6786) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -687166.7 :y -290336.78 :z 8072274.5) + :quat (new 'static 'quaternion :y 0.6943 :w 0.7196) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -684086.5 :y -289645.38 :z 8072016.5) + :quat (new 'static 'quaternion :y 0.6697 :w 0.7425) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -681369.6 :y -286400.5 :z 8072493.5) + :quat (new 'static 'quaternion :y 0.6564 :w 0.7544) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -678654.4 :y -282954.56 :z 8072990.5) + :quat (new 'static 'quaternion :y 0.6484 :w 0.7612) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -675963.7 :y -279912.03 :z 8073498.0) + :quat (new 'static 'quaternion :y 0.6432 :w 0.7656) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -673276.3 :y -278004.94 :z 8074011.5) + :quat (new 'static 'quaternion :y 0.6402 :w 0.7682) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -670679.44 :y -277038.28 :z 8074525.5) + :quat (new 'static 'quaternion :y 0.6373 :w 0.7705) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -668414.4 :y -275017.3 :z 8074978.0) + :quat (new 'static 'quaternion :y 0.6355 :w 0.772) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -666320.5 :y -271846.6 :z 8075391.5) + :quat (new 'static 'quaternion :y 0.635 :w 0.7724) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -664138.56 :y -269153.5 :z 8075835.0) + :quat (new 'static 'quaternion :y 0.6335 :w 0.7737) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -662066.0 :y -267642.47 :z 8076497.5) + :quat (new 'static 'quaternion :y 0.6165 :w 0.7873) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -660126.5 :y -267900.1 :z 8077481.0) + :quat (new 'static 'quaternion :y 0.5834 :w 0.8121) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -658266.94 :y -270403.2 :z 8078532.5) + :quat (new 'static 'quaternion :y 0.5469 :w 0.8371) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -656417.56 :y -274181.75 :z 8079592.0) + :quat (new 'static 'quaternion :y 0.5241 :w 0.8516) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -654287.7 :y -274435.7 :z 8080811.0) + :quat (new 'static 'quaternion :y 0.5128 :w 0.8584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -651757.2 :y -274435.7 :z 8081808.0) + :quat (new 'static 'quaternion :y 0.5524 :w 0.8335) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -649046.44 :y -273504.25 :z 8082224.5) + :quat (new 'static 'quaternion :y 0.6212 :w 0.7835) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -646341.44 :y -270322.47 :z 8082386.0) + :quat (new 'static 'quaternion :y 0.6695 :w 0.7427) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -643603.25 :y -266938.38 :z 8082347.5) + :quat (new 'static 'quaternion :y 0.6981 :w 0.7159) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -640862.6 :y -263973.28 :z 8082172.5) + :quat (new 'static 'quaternion :y 0.7147 :w 0.6993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -638185.9 :y -262127.61 :z 8081939.0) + :quat (new 'static 'quaternion :y 0.7261 :w 0.6874) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -635468.2 :y -261681.16 :z 8081628.0) + :quat (new 'static 'quaternion :y 0.7364 :w 0.6764) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -632801.25 :y -263012.75 :z 8081252.0) + :quat (new 'static 'quaternion :y 0.7453 :w 0.6666) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -630097.1 :y -266004.06 :z 8080795.5) + :quat (new 'static 'quaternion :y 0.7546 :w 0.6561) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -627461.75 :y -266057.3 :z 8080231.0) + :quat (new 'static 'quaternion :y 0.7629 :w 0.6464) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -624855.06 :y -265899.62 :z 8079633.0) + :quat (new 'static 'quaternion :y 0.7712 :w 0.6364) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -622270.06 :y -265887.75 :z 8078695.0) + :quat (new 'static 'quaternion :y 0.7942 :w 0.6075) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -619838.25 :y -265062.8 :z 8077417.5) + :quat (new 'static 'quaternion :y 0.8243 :w 0.566) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -617499.06 :y -262095.25 :z 8076041.5) + :quat (new 'static 'quaternion :y 0.8447 :w 0.5352) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -615194.6 :y -258894.23 :z 8074572.0) + :quat (new 'static 'quaternion :y 0.8593 :w 0.5113) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -612949.2 :y -255756.28 :z 8073025.0) + :quat (new 'static 'quaternion :y 0.871 :w 0.4911) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -610698.9 :y -253577.22 :z 8071484.0) + :quat (new 'static 'quaternion :y 0.8767 :w 0.4809) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -608444.0 :y -252794.06 :z 8069941.0) + :quat (new 'static 'quaternion :y 0.8799 :w 0.4749) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -606183.44 :y -254136.31 :z 8068411.5) + :quat (new 'static 'quaternion :y 0.8814 :w 0.4722) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -603984.3 :y -258101.66 :z 8066828.5) + :quat (new 'static 'quaternion :y 0.8848 :w 0.4658) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -601808.06 :y -263374.03 :z 8065157.0) + :quat (new 'static 'quaternion :y 0.8895 :w 0.4567) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -599100.6 :y -266191.25 :z 8063738.5) + :quat (new 'static 'quaternion :y 0.8949 :w 0.446) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -595455.56 :y -266239.2 :z 8062780.0) + :quat (new 'static 'quaternion :y 0.9012 :w 0.4332) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -591868.75 :y -266239.6 :z 8061735.0) + :quat (new 'static 'quaternion :y 0.9095 :w 0.4154) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588673.8 :y -266239.6 :z 8060448.0) + :quat (new 'static 'quaternion :y 0.9185 :w 0.3952) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -587328.7 :y -266239.6 :z 8058119.5) + :quat (new 'static 'quaternion :y 0.9256 :w 0.3782) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -585878.75 :y -266239.6 :z 8055725.0) + :quat (new 'static 'quaternion :y 0.9362 :w 0.3512) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -584347.25 :y -266239.6 :z 8053242.5) + :quat (new 'static 'quaternion :y 0.957 :w 0.29) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -582932.5 :y -266239.6 :z 8050938.5) + :quat (new 'static 'quaternion :y 0.9774 :w 0.2112) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581805.25 :y -265959.84 :z 8048587.0) + :quat (new 'static 'quaternion :y 0.9886 :w 0.1505) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581509.5 :y -263710.72 :z 8045927.5) + :quat (new 'static 'quaternion :y 0.9941 :w 0.108) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581173.7 :y -260199.22 :z 8043224.5) + :quat (new 'static 'quaternion :y 0.9959 :w 0.09) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580901.7 :y -256735.23 :z 8040516.5) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0746) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580748.06 :y -253640.3 :z 8037793.0) + :quat (new 'static 'quaternion :y 0.9984 :w 0.0564) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580728.8 :y -251647.19 :z 8035093.5) + :quat (new 'static 'quaternion :y 0.9993 :w 0.0356) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580827.1 :y -251336.3 :z 8032372.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0128) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580827.94 :y -253310.16 :z 8029559.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0077) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580767.3 :y -257432.78 :z 8026842.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0091) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580715.3 :y -262652.72 :z 8024125.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.009) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580689.94 :y -266181.84 :z 8021410.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0071) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580650.6 :y -266238.78 :z 8018685.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0071) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -580166.44 :y -266239.6 :z 8016208.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0009) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -578751.7 :y -266239.6 :z 8014285.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0104) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -577358.6 :y -266239.6 :z 8012421.0) + :quat (new 'static 'quaternion :y 0.9998 :w -0.019) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -575909.06 :y -266239.6 :z 8010551.5) + :quat (new 'static 'quaternion :y 0.9996 :w -0.026) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -574474.25 :y -266239.6 :z 8008680.0) + :quat (new 'static 'quaternion :y 0.9995 :w -0.0306) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -573132.4 :y -266239.6 :z 8006815.5) + :quat (new 'static 'quaternion :y 0.9994 :w -0.0341) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571795.06 :y -266239.6 :z 8004946.5) + :quat (new 'static 'quaternion :y 0.9991 :w -0.0418) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -570528.1 :y -266239.6 :z 8003096.0) + :quat (new 'static 'quaternion :y 0.9986 :w -0.0514) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569254.7 :y -265945.5 :z 8001267.5) + :quat (new 'static 'quaternion :y 0.9982 :w -0.0584) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569450.5 :y -263305.62 :z 7998664.5) + :quat (new 'static 'quaternion :y 0.9977 :w -0.0665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569918.25 :y -259987.05 :z 7995963.0) + :quat (new 'static 'quaternion :y 0.997 :w -0.0765) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570484.3 :y -256668.88 :z 7993272.5) + :quat (new 'static 'quaternion :y 0.9958 :w -0.0908) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571110.6 :y -254427.14 :z 7990605.5) + :quat (new 'static 'quaternion :y 0.9946 :w -0.1034) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571645.94 :y -253331.86 :z 7987928.5) + :quat (new 'static 'quaternion :y 0.995 :w -0.0993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571992.06 :y -254224.8 :z 7985207.5) + :quat (new 'static 'quaternion :y 0.9973 :w -0.0721) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -572098.56 :y -254679.86 :z 7982636.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.0374) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571797.5 :y -252205.47 :z 7980572.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0065) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571399.4 :y -249192.45 :z 7978425.0) + :quat (new 'static 'quaternion :y 0.9988 :w 0.0488) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -571024.2 :y -247228.0 :z 7976274.0) + :quat (new 'static 'quaternion :y 0.9976 :w 0.0679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570670.7 :y -246530.05 :z 7974118.0) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0745) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -570186.1 :y -247887.88 :z 7971989.0) + :quat (new 'static 'quaternion :y 0.9955 :w 0.0937) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569616.8 :y -251270.34 :z 7969880.5) + :quat (new 'static 'quaternion :y 0.9935 :w 0.1131) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -569058.5 :y -255777.17 :z 7967768.0) + :quat (new 'static 'quaternion :y 0.9926 :w 0.1211) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568512.5 :y -260623.56 :z 7965653.0) + :quat (new 'static 'quaternion :y 0.9923 :w 0.1234) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568142.6 :y -265719.4 :z 7963503.5) + :quat (new 'static 'quaternion :y 0.9939 :w 0.1094) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567987.8 :y -266373.12 :z 7960967.0) + :quat (new 'static 'quaternion :y 0.9979 :w 0.0633) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567788.3 :y -267300.47 :z 7958309.5) + :quat (new 'static 'quaternion :y 0.9996 :w 0.0253) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567913.25 :y -269229.25 :z 7955593.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0046) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568279.44 :y -272249.25 :z 7952888.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.038) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -568746.8 :y -274413.56 :z 7950198.0) + :quat (new 'static 'quaternion :y 0.998 :w -0.063) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569339.06 :y -274443.06 :z 7947534.0) + :quat (new 'static 'quaternion :y 0.996 :w -0.0883) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -570209.06 :y -274443.06 :z 7944948.0) + :quat (new 'static 'quaternion :y 0.9917 :w -0.1278) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571268.3 :y -274443.06 :z 7942433.0) + :quat (new 'static 'quaternion :y 0.9862 :w -0.1651) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -572487.7 :y -274443.47 :z 7939990.0) + :quat (new 'static 'quaternion :y 0.9799 :w -0.1992) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -573850.0 :y -274443.47 :z 7937625.0) + :quat (new 'static 'quaternion :y 0.973 :w -0.2307) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -575327.0 :y -272968.5 :z 7935328.5) + :quat (new 'static 'quaternion :y 0.9661 :w -0.2578) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576869.56 :y -269594.62 :z 7933074.5) + :quat (new 'static 'quaternion :y 0.9607 :w -0.2774) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -578454.3 :y -265963.94 :z 7930851.5) + :quat (new 'static 'quaternion :y 0.9564 :w -0.2919) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -580091.5 :y -262935.34 :z 7928666.0) + :quat (new 'static 'quaternion :y 0.9524 :w -0.3047) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581702.9 :y -260992.2 :z 7926462.5) + :quat (new 'static 'quaternion :y 0.9516 :w -0.3072) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -583187.7 :y -260297.11 :z 7924171.0) + :quat (new 'static 'quaternion :y 0.9555 :w -0.2948) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584707.7 :y -261646.75 :z 7921856.0) + :quat (new 'static 'quaternion :y 0.9568 :w -0.2906) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -586099.5 :y -265220.9 :z 7919465.5) + :quat (new 'static 'quaternion :y 0.9605 :w -0.2782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587479.9 :y -269938.28 :z 7917088.0) + :quat (new 'static 'quaternion :y 0.9628 :w -0.2699) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588697.2 :y -274794.1 :z 7914692.5) + :quat (new 'static 'quaternion :y 0.9651 :w -0.2617) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -589139.94 :y -280308.12 :z 7912029.0) + :quat (new 'static 'quaternion :y 0.973 :w -0.2306) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -589293.2 :y -286907.6 :z 7909344.5) + :quat (new 'static 'quaternion :y 0.9823 :w -0.1869) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -589197.75 :y -290827.47 :z 7906584.0) + :quat (new 'static 'quaternion :y 0.9962 :w -0.0861) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588918.8 :y -290827.47 :z 7903871.0) + :quat (new 'static 'quaternion :y 0.9998 :w -0.0179) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588752.5 :y -290827.47 :z 7901183.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0047) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588702.1 :y -290827.47 :z 7898426.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0068) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588667.3 :y -290827.47 :z 7895755.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0065) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588648.44 :y -290827.47 :z 7892968.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0049) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588633.3 :y -290827.47 :z 7890339.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0039) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588618.94 :y -290827.47 :z 7887603.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0033) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -588605.0 :y -290827.47 :z 7884848.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0029) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588591.94 :y -290827.47 :z 7882143.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0027) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588578.8 :y -288672.16 :z 7879490.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0026) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588553.0 :y -285091.44 :z 7876713.5) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -588364.6 :y -281747.47 :z 7874042.0) + :quat (new 'static 'quaternion :y 0.9996 :w 0.0253) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587981.6 :y -279036.3 :z 7871329.5) + :quat (new 'static 'quaternion :y 0.9987 :w 0.049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587450.75 :y -277469.6 :z 7868650.0) + :quat (new 'static 'quaternion :y 0.9972 :w 0.0739) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -586702.44 :y -277569.53 :z 7865999.0) + :quat (new 'static 'quaternion :y 0.9945 :w 0.1039) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -585607.56 :y -275708.3 :z 7863881.5) + :quat (new 'static 'quaternion :y 0.9894 :w 0.1447) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584317.75 :y -272701.84 :z 7862169.0) + :quat (new 'static 'quaternion :y 0.9812 :w 0.1926) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -582916.94 :y -269946.47 :z 7860548.5) + :quat (new 'static 'quaternion :y 0.9696 :w 0.2445) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -581412.06 :y -268192.56 :z 7858967.5) + :quat (new 'static 'quaternion :y 0.9544 :w 0.2984) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -579871.56 :y -268084.03 :z 7857418.0) + :quat (new 'static 'quaternion :y 0.9406 :w 0.3393) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -578342.06 :y -270119.72 :z 7855857.5) + :quat (new 'static 'quaternion :y 0.9331 :w 0.3595) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576748.75 :y -273722.97 :z 7854365.5) + :quat (new 'static 'quaternion :y 0.9256 :w 0.3782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -575032.5 :y -278263.4 :z 7853015.5) + :quat (new 'static 'quaternion :y 0.9132 :w 0.4074) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -573306.06 :y -283045.88 :z 7851659.5) + :quat (new 'static 'quaternion :y 0.9065 :w 0.422) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571713.56 :y -288834.75 :z 7850154.5) + :quat (new 'static 'quaternion :y 0.9126 :w 0.4087) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569835.1 :y -290957.72 :z 7848550.0) + :quat (new 'static 'quaternion :y 0.9597 :w 0.2807) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x6 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -568066.44 :y -290262.22 :z 7846672.0) + :quat (new 'static 'quaternion :y 0.9898 :w 0.1421) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567199.3 :y -289271.8 :z 7844376.0) + :quat (new 'static 'quaternion :y 0.9977 :w 0.0667) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567190.75 :y -286378.8 :z 7841691.0) + :quat (new 'static 'quaternion :y 0.9997 :w 0.0234) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567316.06 :y -282765.3 :z 7838965.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.001) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567469.25 :y -279421.75 :z 7836239.5) + :quat (new 'static 'quaternion :y 0.9998 :w -0.015) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567631.06 :y -277097.28 :z 7833508.5) + :quat (new 'static 'quaternion :y 0.9997 :w -0.0224) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567765.4 :y -275808.66 :z 7830876.0) + :quat (new 'static 'quaternion :y 0.9997 :w -0.0237) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567802.25 :y -276319.03 :z 7828147.5) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0136) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567602.0 :y -278965.03 :z 7825442.0) + :quat (new 'static 'quaternion :y 0.9999 :w 0.0125) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567362.75 :y -279654.8 :z 7822939.5) + :quat (new 'static 'quaternion :y 0.9995 :w 0.0307) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -567009.25 :y -277020.25 :z 7820800.5) + :quat (new 'static 'quaternion :y 0.9981 :w 0.0601) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -566455.5 :y -273824.97 :z 7818705.0) + :quat (new 'static 'quaternion :y 0.9945 :w 0.1042) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -565709.6 :y -271721.7 :z 7816658.0) + :quat (new 'static 'quaternion :y 0.9892 :w 0.1459) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -564863.0 :y -270949.6 :z 7814645.0) + :quat (new 'static 'quaternion :y 0.9848 :w 0.1735) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -563800.06 :y -272273.4 :z 7812741.0) + :quat (new 'static 'quaternion :y 0.9783 :w 0.207) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -562525.8 :y -275549.8 :z 7810999.0) + :quat (new 'static 'quaternion :y 0.9676 :w 0.2523) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -561127.44 :y -279918.2 :z 7809420.5) + :quat (new 'static 'quaternion :y 0.953 :w 0.3028) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -559625.8 :y -284518.8 :z 7808017.5) + :quat (new 'static 'quaternion :y 0.9347 :w 0.3551) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -558023.9 :y -289924.72 :z 7806793.5) + :quat (new 'static 'quaternion :y 0.913 :w 0.4077) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -555440.56 :y -291139.6 :z 7806014.0) + :quat (new 'static 'quaternion :y 0.8865 :w 0.4626) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -552571.3 :y -290088.56 :z 7804843.0) + :quat (new 'static 'quaternion :y 0.9093 :w 0.4161) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -549994.5 :y -290143.03 :z 7803175.5) + :quat (new 'static 'quaternion :y 0.93 :w 0.3673) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -547489.8 :y -290367.1 :z 7801440.5) + :quat (new 'static 'quaternion :y 0.9413 :w 0.3374) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -545890.7 :y -287452.78 :z 7799227.0) + :quat (new 'static 'quaternion :y 0.9466 :w 0.3221) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -544311.3 :y -283839.7 :z 7797000.0) + :quat (new 'static 'quaternion :y 0.9499 :w 0.3123) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -542842.5 :y -280367.94 :z 7794698.0) + :quat (new 'static 'quaternion :y 0.9559 :w 0.2936) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -541473.2 :y -277988.16 :z 7792335.5) + :quat (new 'static 'quaternion :y 0.9611 :w 0.2759) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -540117.8 :y -276700.38 :z 7789965.5) + :quat (new 'static 'quaternion :y 0.9639 :w 0.266) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -538780.9 :y -276172.8 :z 7787663.5) + :quat (new 'static 'quaternion :y 0.9647 :w 0.2632) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -537664.3 :y -273960.97 :z 7785778.5) + :quat (new 'static 'quaternion :y 0.9645 :w 0.2638) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -536553.06 :y -270567.0 :z 7783897.5) + :quat (new 'static 'quaternion :y 0.9645 :w 0.2637) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -535432.0 :y -268190.5 :z 7782022.0) + :quat (new 'static 'quaternion :y 0.9642 :w 0.265) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -534303.94 :y -266906.84 :z 7780151.5) + :quat (new 'static 'quaternion :y 0.9638 :w 0.2665) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -533171.0 :y -267670.72 :z 7778284.0) + :quat (new 'static 'quaternion :y 0.9634 :w 0.2679) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -532064.7 :y -270673.9 :z 7776401.0) + :quat (new 'static 'quaternion :y 0.9642 :w 0.2648) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -531056.25 :y -274769.1 :z 7774464.0) + :quat (new 'static 'quaternion :y 0.9683 :w 0.2495) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -530219.44 :y -279383.66 :z 7772446.5) + :quat (new 'static 'quaternion :y 0.9755 :w 0.2199) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -529501.0 :y -284516.34 :z 7770385.0) + :quat (new 'static 'quaternion :y 0.9813 :w 0.1924) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528778.9 :y -290741.88 :z 7768326.0) + :quat (new 'static 'quaternion :y 0.9836 :w 0.1799) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -528033.0 :y -290828.28 :z 7766016.5) + :quat (new 'static 'quaternion :y 0.9863 :w 0.1643) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -527449.7 :y -290828.28 :z 7763370.5) + :quat (new 'static 'quaternion :y 0.9909 :w 0.1342) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -527015.1 :y -290828.28 :z 7760690.0) + :quat (new 'static 'quaternion :y 0.9943 :w 0.106) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526663.7 :y -290383.47 :z 7757989.5) + :quat (new 'static 'quaternion :y 0.9964 :w 0.084) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526406.9 :y -287469.16 :z 7755270.0) + :quat (new 'static 'quaternion :y 0.9979 :w 0.0647) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526293.4 :y -283856.06 :z 7752544.0) + :quat (new 'static 'quaternion :y 0.9994 :w 0.0339) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526384.75 :y -280383.9 :z 7749819.0) + :quat (new 'static 'quaternion :y 0.9999 :w -0.0055) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -526680.5 :y -278004.12 :z 7747107.0) + :quat (new 'static 'quaternion :y 0.9992 :w -0.0381) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -527178.94 :y -276716.75 :z 7744423.0) + :quat (new 'static 'quaternion :y 0.9975 :w -0.0696) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -527870.75 :y -277174.28 :z 7741782.5) + :quat (new 'static 'quaternion :y 0.9947 :w -0.102) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -528703.9 :y -279801.44 :z 7739182.0) + :quat (new 'static 'quaternion :y 0.9915 :w -0.13) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -529642.3 :y -283808.16 :z 7736618.0) + :quat (new 'static 'quaternion :y 0.9881 :w -0.1534) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -530479.1 :y -281504.97 :z 7734518.0) + :quat (new 'static 'quaternion :y 0.9849 :w -0.1727) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -531336.8 :y -278252.75 :z 7732508.5) + :quat (new 'static 'quaternion :y 0.9823 :w -0.1872) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -532233.8 :y -275603.47 :z 7730517.0) + :quat (new 'static 'quaternion :y 0.9799 :w -0.1993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -533169.75 :y -274046.56 :z 7728543.0) + :quat (new 'static 'quaternion :y 0.9777 :w -0.2099) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -534118.8 :y -274298.47 :z 7726575.0) + :quat (new 'static 'quaternion :y 0.9762 :w -0.2168) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -535105.56 :y -276741.75 :z 7724626.5) + :quat (new 'static 'quaternion :y 0.9743 :w -0.2249) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -536129.1 :y -280564.12 :z 7722696.5) + :quat (new 'static 'quaternion :y 0.9723 :w -0.2336) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -537188.4 :y -285192.2 :z 7720786.0) + :quat (new 'static 'quaternion :y 0.9701 :w -0.2425) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -538283.2 :y -290052.1 :z 7718895.5) + :quat (new 'static 'quaternion :y 0.9678 :w -0.2515) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -539542.3 :y -290827.47 :z 7716805.5) + :quat (new 'static 'quaternion :y 0.9654 :w -0.2606) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -541002.94 :y -290827.47 :z 7714497.5) + :quat (new 'static 'quaternion :y 0.9628 :w -0.2701) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -542514.4 :y -290827.47 :z 7712223.0) + :quat (new 'static 'quaternion :y 0.9599 :w -0.2802) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -544077.8 :y -290827.47 :z 7709984.5) + :quat (new 'static 'quaternion :y 0.9567 :w -0.2907) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -545712.56 :y -290827.47 :z 7707797.0) + :quat (new 'static 'quaternion :y 0.9526 :w -0.304) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -547411.56 :y -290827.47 :z 7705660.0) + :quat (new 'static 'quaternion :y 0.9481 :w -0.3177) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -549180.6 :y -290827.47 :z 7703579.5) + :quat (new 'static 'quaternion :y 0.9432 :w -0.3321) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -550998.8 :y -290827.47 :z 7701542.0) + :quat (new 'static 'quaternion :y 0.9386 :w -0.345) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -552866.2 :y -290827.47 :z 7699550.0) + :quat (new 'static 'quaternion :y 0.934 :w -0.357) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -554781.5 :y -290827.47 :z 7697603.5) + :quat (new 'static 'quaternion :y 0.9295 :w -0.3687) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -556743.5 :y -290827.47 :z 7695703.0) + :quat (new 'static 'quaternion :y 0.9249 :w -0.3801) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -558750.94 :y -290827.47 :z 7693852.0) + :quat (new 'static 'quaternion :y 0.9202 :w -0.3914) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -560803.0 :y -290827.47 :z 7692049.5) + :quat (new 'static 'quaternion :y 0.9153 :w -0.4026) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -562909.2 :y -290827.47 :z 7690311.5) + :quat (new 'static 'quaternion :y 0.9097 :w -0.4152) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -565057.56 :y -290827.47 :z 7688626.0) + :quat (new 'static 'quaternion :y 0.9042 :w -0.427) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -567260.75 :y -290827.47 :z 7687013.0) + :quat (new 'static 'quaternion :y 0.8975 :w -0.4409) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -569550.9 :y -290827.47 :z 7685526.0) + :quat (new 'static 'quaternion :y 0.8877 :w -0.4604) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -571971.2 :y -290827.47 :z 7684210.5) + :quat (new 'static 'quaternion :y 0.8731 :w -0.4875) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -574435.75 :y -290827.47 :z 7682996.0) + :quat (new 'static 'quaternion :y 0.8607 :w -0.509) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -576942.06 :y -289074.38 :z 7681850.0) + :quat (new 'static 'quaternion :y 0.8506 :w -0.5256) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -579457.8 :y -285589.1 :z 7680789.5) + :quat (new 'static 'quaternion :y 0.8415 :w -0.5401) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -582003.5 :y -281958.8 :z 7679802.0) + :quat (new 'static 'quaternion :y 0.8329 :w -0.5534) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -584577.0 :y -279042.06 :z 7678889.0) + :quat (new 'static 'quaternion :y 0.8244 :w -0.5659) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -587193.94 :y -277205.4 :z 7678047.5) + :quat (new 'static 'quaternion :y 0.8158 :w -0.5782) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -589752.3 :y -275850.03 :z 7677303.5) + :quat (new 'static 'quaternion :y 0.8072 :w -0.5902) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -591879.8 :y -273631.22 :z 7676752.0) + :quat (new 'static 'quaternion :y 0.7986 :w -0.6018) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -594007.25 :y -270239.34 :z 7676258.0) + :quat (new 'static 'quaternion :y 0.7904 :w -0.6125) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -596081.9 :y -267918.94 :z 7675828.5) + :quat (new 'static 'quaternion :y 0.7828 :w -0.6221) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -598229.4 :y -266618.06 :z 7675436.5) + :quat (new 'static 'quaternion :y 0.7752 :w -0.6316) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -600433.9 :y -267434.4 :z 7675090.0) + :quat (new 'static 'quaternion :y 0.7678 :w -0.6406) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -602535.1 :y -270273.75 :z 7674808.0) + :quat (new 'static 'quaternion :y 0.7602 :w -0.6496) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -604734.7 :y -274412.34 :z 7674566.0) + :quat (new 'static 'quaternion :y 0.752 :w -0.659) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -606955.94 :y -279135.03 :z 7674375.5) + :quat (new 'static 'quaternion :y 0.7439 :w -0.6681) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -609153.8 :y -284328.75 :z 7674240.0) + :quat (new 'static 'quaternion :y 0.7361 :w -0.6768) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -611309.2 :y -289944.78 :z 7674159.0) + :quat (new 'static 'quaternion :y 0.7287 :w -0.6848) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -613687.7 :y -290815.6 :z 7674041.0) + :quat (new 'static 'quaternion :y 0.7197 :w -0.6941) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -616309.94 :y -290815.6 :z 7673866.0) + :quat (new 'static 'quaternion :y 0.7101 :w -0.704) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -618886.4 :y -290815.6 :z 7673412.5) + :quat (new 'static 'quaternion :y 0.7158 :w -0.6982) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -621245.25 :y -290815.6 :z 7672296.5) + :quat (new 'static 'quaternion :y 0.7519 :w -0.6592) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -623518.1 :y -290815.6 :z 7670765.0) + :quat (new 'static 'quaternion :y 0.7868 :w -0.6171) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -625700.06 :y -290815.6 :z 7669013.5) + :quat (new 'static 'quaternion :y 0.8082 :w -0.5888) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -627746.44 :y -290815.6 :z 7667210.0) + :quat (new 'static 'quaternion :y 0.8188 :w -0.574) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -629875.5 :y -290815.6 :z 7665241.5) + :quat (new 'static 'quaternion :y 0.8259 :w -0.5637) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -631884.2 :y -290815.6 :z 7663284.5) + :quat (new 'static 'quaternion :y 0.8344 :w -0.5511) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -633898.6 :y -290815.6 :z 7661263.5) + :quat (new 'static 'quaternion :y 0.8398 :w -0.5428) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -635901.94 :y -290815.6 :z 7659158.5) + :quat (new 'static 'quaternion :y 0.8441 :w -0.536) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -637892.6 :y -290815.6 :z 7657080.5) + :quat (new 'static 'quaternion :y 0.8477 :w -0.5303) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -639710.8 :y -289927.16 :z 7654797.0) + :quat (new 'static 'quaternion :y 0.8536 :w -0.5208) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -641699.44 :y -286681.1 :z 7652598.0) + :quat (new 'static 'quaternion :y 0.8627 :w -0.5057) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -643639.3 :y -283403.47 :z 7650592.5) + :quat (new 'static 'quaternion :y 0.8685 :w -0.4956) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -645680.3 :y -280434.28 :z 7648618.5) + :quat (new 'static 'quaternion :y 0.8727 :w -0.4882) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -647775.0 :y -278533.75 :z 7646737.0) + :quat (new 'static 'quaternion :y 0.8756 :w -0.4829) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -649857.8 :y -278070.47 :z 7645010.5) + :quat (new 'static 'quaternion :y 0.8776 :w -0.4793) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -651679.3 :y -276311.66 :z 7643544.5) + :quat (new 'static 'quaternion :y 0.8811 :w -0.4727) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -653354.6 :y -273222.03 :z 7642017.5) + :quat (new 'static 'quaternion :y 0.8952 :w -0.4456) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -654858.6 :y -270623.53 :z 7640443.0) + :quat (new 'static 'quaternion :y 0.9143 :w -0.4049) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -656205.8 :y -269122.75 :z 7638737.0) + :quat (new 'static 'quaternion :y 0.934 :w -0.3571) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -657349.44 :y -269243.2 :z 7636970.0) + :quat (new 'static 'quaternion :y 0.9515 :w -0.3075) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -658351.3 :y -271560.72 :z 7635045.0) + :quat (new 'static 'quaternion :y 0.9671 :w -0.2541) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -659162.3 :y -275610.4 :z 7633023.0) + :quat (new 'static 'quaternion :y 0.9797 :w -0.2003) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -659771.8 :y -280427.72 :z 7631010.0) + :quat (new 'static 'quaternion :y 0.9878 :w -0.1555) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -660338.7 :y -285360.12 :z 7628882.5) + :quat (new 'static 'quaternion :y 0.9896 :w -0.1437) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661098.5 :y -290815.6 :z 7626816.0) + :quat (new 'static 'quaternion :y 0.9863 :w -0.1645) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -661808.3 :y -290815.6 :z 7623775.5) + :quat (new 'static 'quaternion :y 0.9777 :w -0.2095) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -663071.1 :y -290815.6 :z 7620762.5) + :quat (new 'static 'quaternion :y 0.9604 :w -0.2784) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -664739.8 :y -290815.6 :z 7618151.0) + :quat (new 'static 'quaternion :y 0.9334 :w -0.3587) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -666538.4 :y -290815.6 :z 7615913.0) + :quat (new 'static 'quaternion :y 0.9074 :w -0.4201) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -668433.6 :y -290815.6 :z 7613640.0) + :quat (new 'static 'quaternion :y 0.8906 :w -0.4547) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -670290.3 :y -290566.56 :z 7611263.0) + :quat (new 'static 'quaternion :y 0.8781 :w -0.4783) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -672281.8 :y -288049.16 :z 7609100.5) + :quat (new 'static 'quaternion :y 0.8664 :w -0.4993) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -674386.3 :y -284501.2 :z 7607227.0) + :quat (new 'static 'quaternion :y 0.8581 :w -0.5134) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -676462.2 :y -281063.44 :z 7605568.5) + :quat (new 'static 'quaternion :y 0.8527 :w -0.5222) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -678788.3 :y -278355.97 :z 7603969.5) + :quat (new 'static 'quaternion :y 0.8471 :w -0.5313) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -681173.4 :y -276822.44 :z 7602576.0) + :quat (new 'static 'quaternion :y 0.8414 :w -0.5402) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x5 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -683504.0 :y -276876.1 :z 7601411.5) + :quat (new 'static 'quaternion :y 0.8369 :w -0.5472) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -685853.9 :y -276482.06 :z 7600421.5) + :quat (new 'static 'quaternion :y 0.8322 :w -0.5544) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -687903.1 :y -273920.4 :z 7599655.5) + :quat (new 'static 'quaternion :y 0.8266 :w -0.5627) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -689960.1 :y -270697.28 :z 7598919.5) + :quat (new 'static 'quaternion :y 0.8217 :w -0.5697) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -692032.3 :y -268539.5 :z 7598229.0) + :quat (new 'static 'quaternion :y 0.8162 :w -0.5777) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -694116.4 :y -267673.2 :z 7597574.0) + :quat (new 'static 'quaternion :y 0.8109 :w -0.5851) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -696279.06 :y -268978.2 :z 7596936.5) + :quat (new 'static 'quaternion :y 0.8056 :w -0.5923) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -698400.75 :y -272270.53 :z 7596350.5) + :quat (new 'static 'quaternion :y 0.8003 :w -0.5995) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -700443.06 :y -276488.2 :z 7595824.5) + :quat (new 'static 'quaternion :y 0.7953 :w -0.6061) + ) + (new 'static 'sig-path-sample + :bytes (new 'static 'array uint8 32 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x4 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + #x0 + ) + :pos (new 'static 'vector :x -702588.1 :y -281141.25 :z 7595308.5) + :quat (new 'static 'quaternion :y 0.7901 :w -0.6129) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -704725.4 :y -286524.62 :z 7594834.5) + :quat (new 'static 'quaternion :y 0.7847 :w -0.6197) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -706895.44 :y -290729.97 :z 7594390.0) + :quat (new 'static 'quaternion :y 0.7794 :w -0.6265) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -709489.44 :y -290828.28 :z 7593910.5) + :quat (new 'static 'quaternion :y 0.7735 :w -0.6337) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -712201.44 :y -290828.7 :z 7593462.0) + :quat (new 'static 'quaternion :y 0.7677 :w -0.6407) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -714913.0 :y -290828.7 :z 7593067.0) + :quat (new 'static 'quaternion :y 0.7617 :w -0.6478) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -717565.94 :y -290828.7 :z 7592561.5) + :quat (new 'static 'quaternion :y 0.7669 :w -0.6417) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -720198.06 :y -290828.7 :z 7591882.0) + :quat (new 'static 'quaternion :y 0.7784 :w -0.6276) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -722876.44 :y -290828.7 :z 7591182.5) + :quat (new 'static 'quaternion :y 0.7848 :w -0.6196) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -725559.3 :y -290828.7 :z 7590521.0) + :quat (new 'static 'quaternion :y 0.7859 :w -0.6182) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -728116.0 :y -290828.7 :z 7589927.0) + :quat (new 'static 'quaternion :y 0.7845 :w -0.6201) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -730785.4 :y -290828.7 :z 7589341.5) + :quat (new 'static 'quaternion :y 0.7816 :w -0.6236) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -733453.1 :y -290797.97 :z 7588783.5) + :quat (new 'static 'quaternion :y 0.779 :w -0.6269) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -736087.6 :y -290822.97 :z 7588069.5) + :quat (new 'static 'quaternion :y 0.7878 :w -0.6158) + ) + (new 'static 'sig-path-sample + :pos (new 'static 'vector :x -738711.56 :y -290823.38 :z 7587237.5) + :quat (new 'static 'quaternion :y 0.7977 :w -0.6029) + ) + ) + ) + ) + + + + diff --git a/test/offline/config/jak2/config.jsonc b/test/offline/config/jak2/config.jsonc index 6094141223..827f5e392b 100644 --- a/test/offline/config/jak2/config.jsonc +++ b/test/offline/config/jak2/config.jsonc @@ -36,7 +36,9 @@ "DGO/HIPHOG.DGO", "DGO/INTROCST.DGO", "DGO/KIOSK.DGO", + "DGO/LBOMBBOT.DGO", "DGO/LERLCHAL.DGO", + "DGO/LKIDDOGE.DGO", "DGO/MCN.DGO", "DGO/MTN.DGO", "DGO/NEB.DGO", @@ -50,6 +52,7 @@ "DGO/PAS.DGO", "DGO/PRI.DGO", "DGO/RUI.DGO", + "DGO/RUI.DGO", "DGO/SEB.DGO", "DGO/SKA.DGO", "DGO/STA.DGO",